From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38253) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVhTR-0005E3-EA for qemu-devel@nongnu.org; Wed, 11 Mar 2015 10:19:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YVhTL-0002jg-D3 for qemu-devel@nongnu.org; Wed, 11 Mar 2015 10:19:01 -0400 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:55225) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVhTL-0002gl-79 for qemu-devel@nongnu.org; Wed, 11 Mar 2015 10:18:55 -0400 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1YVhTG-0001yv-7l for qemu-devel@nongnu.org; Wed, 11 Mar 2015 14:18:50 +0000 From: Peter Maydell Date: Wed, 11 Mar 2015 14:18:40 +0000 Message-Id: <1426083530-7591-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 00/10] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org target-arm queue: mostly bug fixes, but also the Netduino 2 machine model. I'm letting that in (even though it's nearly hardfreeze) since a new board model isn't going to impact other existing uses, and the patches were posted well before softfreeze deadline. -- PMM The following changes since commit 48412371415a260d00fc7fdcdb400da55f268828: Merge remote-tracking branch 'remotes/ehabkost/tags/x86-pull-request' into staging (2015-03-11 11:12:35 +0000) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20150311 for you to fetch changes up to 4f9950520a115acf9c0a209f0befa45758ad0215: bitops.h: sextract64() return type should be int64_t, not uint64_t (2015-03-11 13:21:06 +0000) ---------------------------------------------------------------- target-arm queue: * fix a bug in bitops.h * implement SD card support on integratorcp * add a missing 'compatible' property for Cortex-A57 * add Netduino 2 machine model * fix command line parsing bug for CPU options with multiple CPUs ---------------------------------------------------------------- Alistair Francis (5): stm32f2xx_timer: Add the stm32f2xx Timer stm32f2xx_USART: Add the stm32f2xx USART Controller stm32f2xx_SYSCFG: Add the stm32f2xx SYSCFG stm32f205: Add the stm32f205 SoC netduino2: Add the Netduino 2 Machine Ard Biesheuvel (1): hw/arm/virt: fix cmdline parsing bug with CPU options and smp > 1 Jan Kiszka (2): integrator/cp: Model CP control registers as sysbus device integrator/cp: Implement CARDIN and WPROT signals Peter Maydell (1): bitops.h: sextract64() return type should be int64_t, not uint64_t Ryota Ozaki (1): target-arm: Add missing compatible property to A57 default-configs/arm-softmmu.mak | 4 + hw/arm/Makefile.objs | 2 + hw/arm/integratorcp.c | 95 +++++++++-- hw/arm/netduino2.c | 57 +++++++ hw/arm/stm32f205_soc.c | 160 ++++++++++++++++++ hw/arm/virt.c | 4 +- hw/char/Makefile.objs | 1 + hw/char/stm32f2xx_usart.c | 229 ++++++++++++++++++++++++++ hw/misc/Makefile.objs | 1 + hw/misc/stm32f2xx_syscfg.c | 160 ++++++++++++++++++ hw/timer/Makefile.objs | 2 + hw/timer/stm32f2xx_timer.c | 328 +++++++++++++++++++++++++++++++++++++ include/hw/arm/stm32f205_soc.h | 57 +++++++ include/hw/char/stm32f2xx_usart.h | 73 +++++++++ include/hw/misc/stm32f2xx_syscfg.h | 61 +++++++ include/hw/timer/stm32f2xx_timer.h | 101 ++++++++++++ include/qemu/bitops.h | 2 +- target-arm/cpu64.c | 1 + 18 files changed, 1323 insertions(+), 15 deletions(-) create mode 100644 hw/arm/netduino2.c create mode 100644 hw/arm/stm32f205_soc.c create mode 100644 hw/char/stm32f2xx_usart.c create mode 100644 hw/misc/stm32f2xx_syscfg.c create mode 100644 hw/timer/stm32f2xx_timer.c create mode 100644 include/hw/arm/stm32f205_soc.h create mode 100644 include/hw/char/stm32f2xx_usart.h create mode 100644 include/hw/misc/stm32f2xx_syscfg.h create mode 100644 include/hw/timer/stm32f2xx_timer.h