qemu-devel
[Top][All Lists]
Advanced

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

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


From: Peter Maydell
Subject: [Qemu-devel] [PULL 00/46] target-arm queue
Date: Mon, 1 Jul 2019 17:38:57 +0100

target-arm queue for softfreeze: this is quite big as I
was on holiday last week, so this is all just sneaking in
under the wire. I particularly wanted to get Philippe's
patches in before freeze as that sort of code-movement
patchset is painful to have to rebase. 

thanks
-- PMM

The following changes since commit ae9108f8f0746ce64d02afb1a216153a50926132:

  Merge remote-tracking branch 
'remotes/vivier2/tags/linux-user-for-4.1-pull-request' into staging (2019-07-01 
15:55:40 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 787a7e76c2e93a48c47b324fea592c9910a70483:

  target/arm: Declare some M-profile functions publicly (2019-07-01 17:29:01 
+0100)

----------------------------------------------------------------
target-arm queue:
 * hw/arm/boot: fix direct kernel boot with initrd
 * hw/arm/msf2-som: Exit when the cpu is not the expected one
 * i.mx7: fix bugs in PCI controller needed to boot recent kernels
 * aspeed: add RTC device
 * aspeed: fix some timer device bugs
 * aspeed: add swift-bmc board
 * aspeed: vic: Add support for legacy register interface
 * aspeed: add aspeed-xdma device
 * Add new sbsa-ref board for aarch64
 * target/arm: code refactoring in preparation for support of
   compilation with TCG disabled

----------------------------------------------------------------
Adriana Kobylak (1):
      aspeed: Add support for the swift-bmc board

Andrew Jeffery (3):
      aspeed/timer: Status register contains reload for stopped timer
      aspeed/timer: Fix match calculations
      aspeed: vic: Add support for legacy register interface

Andrew Jones (1):
      hw/arm/boot: fix direct kernel boot with initrd

Andrey Smirnov (5):
      i.mx7d: Add no-op/unimplemented APBH DMA module
      i.mx7d: Add no-op/unimplemented PCIE PHY IP block
      pci: designware: Update MSI mapping unconditionally
      pci: designware: Update MSI mapping when MSI address changes
      i.mx7d: pci: Update PCI IRQ mapping to match HW

Christian Svensson (1):
      aspeed/timer: Ensure positive muldiv delta

Cédric Le Goater (7):
      aspeed: add a per SoC mapping for the interrupt space
      aspeed: add a per SoC mapping for the memory space
      aspeed: introduce a configurable number of CPU per machine
      aspeed: add support for multiple NICs
      aspeed: remove the "ram" link
      aspeed: add a RAM memory region container
      aspeed/smc: add a 'sdram_base' property

Eddie James (1):
      hw/misc/aspeed_xdma: New device

Hongbo Zhang (2):
      hw/arm: Add arm SBSA reference machine, skeleton part
      hw/arm: Add arm SBSA reference machine, devices part

Jan Kiszka (1):
      hw/arm/virt: Add support for Cortex-A7

Joel Stanley (4):
      hw: timer: Add ASPEED RTC device
      hw/arm/aspeed: Add RTC to SoC
      aspeed/timer: Fix behaviour running Linux
      aspeed: Link SCU to the watchdog

Philippe Mathieu-Daudé (19):
      hw/arm/msf2-som: Exit when the cpu is not the expected one
      target/arm: Makefile cleanup (Aarch64)
      target/arm: Makefile cleanup (ARM)
      target/arm: Makefile cleanup (KVM)
      target/arm: Makefile cleanup (softmmu)
      target/arm: Add copyright boilerplate
      target/arm/helper: Remove unused include
      target/arm: Fix multiline comment syntax
      target/arm: Fix coding style issues
      target/arm: Move CPU state dumping routines to cpu.c
      target/arm: Declare get_phys_addr() function publicly
      target/arm: Move TLB related routines to tlb_helper.c
      target/arm/vfp_helper: Move code around
      target/arm/vfp_helper: Extract vfp_set_fpscr_to_host()
      target/arm/vfp_helper: Extract vfp_set_fpscr_from_host()
      target/arm/vfp_helper: Restrict the SoftFloat use to TCG
      target/arm: Restrict PSCI to TCG
      target/arm: Declare arm_log_exception() function publicly
      target/arm: Declare some M-profile functions publicly

Samuel Ortiz (1):
      target/arm: Move the DC ZVA helper into op_helper

 hw/arm/Makefile.objs                |   1 +
 hw/misc/Makefile.objs               |   1 +
 hw/timer/Makefile.objs              |   2 +-
 target/arm/Makefile.objs            |  24 +-
 include/hw/arm/aspeed_soc.h         |  53 ++-
 include/hw/arm/fsl-imx7.h           |  14 +-
 include/hw/misc/aspeed_xdma.h       |  30 ++
 include/hw/ssi/aspeed_smc.h         |   3 +
 include/hw/timer/aspeed_rtc.h       |  31 ++
 include/hw/watchdog/wdt_aspeed.h    |   1 +
 target/arm/cpu.h                    |   2 -
 target/arm/internals.h              |  69 ++-
 target/arm/translate.h              |   5 -
 hw/arm/aspeed.c                     |  76 +++-
 hw/arm/aspeed_soc.c                 | 262 +++++++++---
 hw/arm/boot.c                       |   3 +-
 hw/arm/fsl-imx7.c                   |  11 +
 hw/arm/msf2-som.c                   |   1 +
 hw/arm/sbsa-ref.c                   | 806 ++++++++++++++++++++++++++++++++++++
 hw/arm/virt.c                       |   1 +
 hw/intc/aspeed_vic.c                | 105 +++--
 hw/misc/aspeed_xdma.c               | 165 ++++++++
 hw/pci-host/designware.c            |  18 +-
 hw/ssi/aspeed_smc.c                 |   1 +
 hw/timer/aspeed_rtc.c               | 180 ++++++++
 hw/timer/aspeed_timer.c             |  76 ++--
 hw/watchdog/wdt_aspeed.c            |  20 +
 target/arm/cpu.c                    | 232 ++++++++++-
 target/arm/helper.c                 | 498 +++++++++-------------
 target/arm/op_helper.c              | 262 ++++++------
 target/arm/tlb_helper.c             | 200 +++++++++
 target/arm/translate-a64.c          | 128 ------
 target/arm/translate.c              |  91 +---
 target/arm/vfp_helper.c             | 199 +++++----
 MAINTAINERS                         |   8 +
 default-configs/aarch64-softmmu.mak |   1 +
 hw/arm/Kconfig                      |  14 +
 hw/misc/trace-events                |   3 +
 hw/timer/trace-events               |   4 +
 39 files changed, 2675 insertions(+), 926 deletions(-)
 create mode 100644 include/hw/misc/aspeed_xdma.h
 create mode 100644 include/hw/timer/aspeed_rtc.h
 create mode 100644 hw/arm/sbsa-ref.c
 create mode 100644 hw/misc/aspeed_xdma.c
 create mode 100644 hw/timer/aspeed_rtc.c
 create mode 100644 target/arm/tlb_helper.c



reply via email to

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