qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 00/27] target-arm queue


From: Peter Maydell
Subject: [Qemu-devel] [PULL 00/27] target-arm queue
Date: Mon, 7 Sep 2015 10:43:05 +0100

Version 2 of this pullreq, with a trivial fix squashed in to delete
an unused function imx_i2c_direction_is_tx().

thanks
-- PMM


The following changes since commit b597aa037dbd98014c8dec3d69a5e2240f432533:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2015-09-04' 
into staging (2015-09-04 17:37:50 +0100)

are available in the git repository at:


  git://git.linaro.org/people/pmaydell/qemu-arm.git 
tags/pull-target-arm-20150907

for you to fetch changes up to 8d45c54d4fd3612bd616afcc5c278394f312927b:

  arm/virt: Add full-sized CPU affinity handling (2015-09-07 10:39:31 +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                 | 334 ++++++++++++++++++
 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, 3243 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]