From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38180) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXsZF-0000Cc-6t for qemu-devel@nongnu.org; Fri, 04 Sep 2015 11:06:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXsZA-0000sT-Vx for qemu-devel@nongnu.org; Fri, 04 Sep 2015 11:06:17 -0400 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:35023) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXsZA-0000iE-OO for qemu-devel@nongnu.org; Fri, 04 Sep 2015 11:06:12 -0400 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1ZXsYu-0006Eb-6U for qemu-devel@nongnu.org; Fri, 04 Sep 2015 16:05:56 +0100 From: Peter Maydell Date: Fri, 4 Sep 2015 16:05:29 +0100 Message-Id: <1441379156-23939-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 00/27] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Another target-arm queue flush. I expect there'll be another lot next week... The following changes since commit b041066421e8dcc7d080dfcfd83551c9c9f24ade: Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2015-09-03 16:17:28 +0100) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20150904 for you to fetch changes up to d9fd6f3874a326033a446a6db8cd113bf4015e6a: arm/virt: Add full-sized CPU affinity handling (2015-09-04 15:49:54 +0100) ---------------------------------------------------------------- target-arm queue: * cleanup to use g_new() and friends * support semihosting in A64 * add SMBIOS support to mach-virt * remove hw_error() usages * fix bug in the AArch32:AArch64 register mapping * add a second PCI memory window in highmem on virt board * fix bug in arm_excp_unmasked() * add i.MX31 SoC * remove restriction on handling affinity values in virt board ---------------------------------------------------------------- Christopher Covington (1): target-arm: Improve semihosting debug prints Jean-Christophe Dubois (8): i.MX: Add SOC support for i.MX31 i.MX: KZM: use standalone i.MX31 SOC support i.MX: Add I2C controller emulator i.MX: Add FEC Ethernet Emulator i.MX: Add SOC support for i.MX25 i.MX: Add the i.MX25 PDK platform i.MX: Add qtest support for I2C device emulator. i.MX: Add i2C devices to i.MX31 SOC Markus Armbruster (1): arm: Use g_new() & friends where that makes obvious sense Pavel Fedin (3): hw/arm/virt: Add high MMIO PCI region, 512G in size target-arm: Refactor CPU affinity handling arm/virt: Add full-sized CPU affinity handling Peter Crosthwaite (2): arm: cpu: assert() on no-EL2 virt IRQ error condition. arm: Remove hw_error() usages. Peter Maydell (8): target-arm/arm-semi.c: Fix broken SYS_WRITE0 via gdb gdbstub: Implement gdb_do_syscallv() target-arm/arm-semi.c: Factor out repeated 'return env->regs[0]' include/exec/softmmu-semi.h: Add support for 64-bit values target-arm/arm-semi.c: Support widening APIs to 64 bits target-arm/arm-semi.c: Implement A64 specific SyncCacheRange call target-arm/arm-semi.c: SYS_EXIT on A64 takes a parameter block target-arm: Wire up HLT 0xf000 as the A64 semihosting instruction Sergey Sorokin (2): target-arm: Fix AArch32:AArch64 general-purpose register mapping target-arm: Fix arm_excp_unmasked() function Wei Huang (2): smbios: add smbios 3.0 support smbios: implement smbios support for mach-virt default-configs/arm-softmmu.mak | 7 + gdbstub.c | 14 +- hw/arm/Makefile.objs | 4 +- hw/arm/fsl-imx25.c | 273 +++++++++++++++ hw/arm/fsl-imx31.c | 246 ++++++++++++++ hw/arm/imx25_pdk.c | 159 +++++++++ hw/arm/kzm.c | 205 ++++++----- hw/arm/omap1.c | 30 +- hw/arm/omap2.c | 15 +- hw/arm/pxa2xx.c | 11 +- hw/arm/stellaris.c | 2 +- hw/arm/strongarm.c | 2 +- hw/arm/virt-acpi-build.c | 17 +- hw/arm/virt.c | 126 ++++++- hw/char/imx_serial.c | 35 -- hw/char/omap_uart.c | 3 +- hw/display/omap_dss.c | 3 +- hw/display/omap_lcdc.c | 3 +- hw/dma/omap_dma.c | 6 +- hw/gpio/omap_gpio.c | 4 +- hw/i2c/Makefile.objs | 1 + hw/i2c/imx_i2c.c | 339 +++++++++++++++++++ hw/i386/pc_piix.c | 3 +- hw/i386/pc_q35.c | 3 +- hw/input/stellaris_input.c | 4 +- hw/misc/omap_clk.c | 2 +- hw/misc/omap_gpmc.c | 3 +- hw/misc/omap_sdrc.c | 3 +- hw/net/Makefile.objs | 1 + hw/net/imx_fec.c | 709 +++++++++++++++++++++++++++++++++++++++ hw/sd/omap_mmc.c | 6 +- hw/smbios/smbios.c | 84 +++-- hw/ssi/omap_spi.c | 3 +- hw/timer/imx_epit.c | 11 - hw/timer/imx_gpt.c | 11 - hw/timer/omap_gptimer.c | 3 +- include/exec/gdbstub.h | 27 ++ include/exec/softmmu-semi.h | 18 + include/hw/arm/fsl-imx25.h | 234 +++++++++++++ include/hw/arm/fsl-imx31.h | 110 ++++++ include/hw/arm/imx.h | 26 -- include/hw/arm/virt-acpi-build.h | 1 + include/hw/arm/virt.h | 1 + include/hw/i2c/imx_i2c.h | 87 +++++ include/hw/net/imx_fec.h | 113 +++++++ include/hw/smbios/smbios.h | 62 +++- linux-user/main.c | 3 + qemu-options.hx | 2 +- target-arm/arm-semi.c | 171 +++++++--- target-arm/cpu-qom.h | 13 + target-arm/cpu.c | 11 +- target-arm/cpu.h | 9 +- target-arm/helper-a64.c | 6 + target-arm/helper.c | 78 +++-- target-arm/internals.h | 2 + target-arm/kvm32.c | 3 +- target-arm/kvm64.c | 3 +- target-arm/translate-a64.c | 24 +- tests/Makefile | 3 + tests/bios-tables-test.c | 6 +- tests/ds1338-test.c | 78 +++++ tests/libqos/i2c-imx.c | 209 ++++++++++++ tests/libqos/i2c.h | 3 + 63 files changed, 3248 insertions(+), 406 deletions(-) create mode 100644 hw/arm/fsl-imx25.c create mode 100644 hw/arm/fsl-imx31.c create mode 100644 hw/arm/imx25_pdk.c create mode 100644 hw/i2c/imx_i2c.c create mode 100644 hw/net/imx_fec.c create mode 100644 include/hw/arm/fsl-imx25.h create mode 100644 include/hw/arm/fsl-imx31.h delete mode 100644 include/hw/arm/imx.h create mode 100644 include/hw/i2c/imx_i2c.h create mode 100644 include/hw/net/imx_fec.h create mode 100644 tests/ds1338-test.c create mode 100644 tests/libqos/i2c-imx.c