qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/46] target-arm queue
@ 2019-07-01 16:38 Peter Maydell
  2019-07-01 16:38 ` [Qemu-devel] [PULL 01/46] hw/arm/boot: fix direct kernel boot with initrd Peter Maydell
                   ` (46 more replies)
  0 siblings, 47 replies; 50+ messages in thread
From: Peter Maydell @ 2019-07-01 16:38 UTC (permalink / raw)
  To: qemu-devel

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


^ permalink raw reply	[flat|nested] 50+ messages in thread

end of thread, other threads:[~2019-07-05  9:03 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-01 16:38 [Qemu-devel] [PULL 00/46] target-arm queue Peter Maydell
2019-07-01 16:38 ` [Qemu-devel] [PULL 01/46] hw/arm/boot: fix direct kernel boot with initrd Peter Maydell
2019-07-01 16:38 ` [Qemu-devel] [PULL 02/46] hw/arm/msf2-som: Exit when the cpu is not the expected one Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 03/46] hw/arm/virt: Add support for Cortex-A7 Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 04/46] i.mx7d: Add no-op/unimplemented APBH DMA module Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 05/46] i.mx7d: Add no-op/unimplemented PCIE PHY IP block Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 06/46] pci: designware: Update MSI mapping unconditionally Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 07/46] pci: designware: Update MSI mapping when MSI address changes Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 08/46] i.mx7d: pci: Update PCI IRQ mapping to match HW Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 09/46] aspeed: add a per SoC mapping for the interrupt space Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 10/46] aspeed: add a per SoC mapping for the memory space Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 11/46] hw: timer: Add ASPEED RTC device Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 12/46] hw/arm/aspeed: Add RTC to SoC Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 13/46] aspeed: introduce a configurable number of CPU per machine Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 14/46] aspeed: add support for multiple NICs Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 15/46] aspeed/timer: Fix behaviour running Linux Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 16/46] aspeed/timer: Status register contains reload for stopped timer Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 17/46] aspeed/timer: Fix match calculations Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 18/46] aspeed/timer: Ensure positive muldiv delta Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 19/46] aspeed: remove the "ram" link Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 20/46] aspeed: add a RAM memory region container Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 21/46] aspeed/smc: add a 'sdram_base' property Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 22/46] aspeed: Add support for the swift-bmc board Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 23/46] hw/misc/aspeed_xdma: New device Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 24/46] aspeed: vic: Add support for legacy register interface Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 25/46] aspeed: Link SCU to the watchdog Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 26/46] hw/arm: Add arm SBSA reference machine, skeleton part Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 27/46] hw/arm: Add arm SBSA reference machine, devices part Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 28/46] target/arm: Makefile cleanup (Aarch64) Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 29/46] target/arm: Makefile cleanup (ARM) Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 30/46] target/arm: Makefile cleanup (KVM) Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 31/46] target/arm: Makefile cleanup (softmmu) Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 32/46] target/arm: Add copyright boilerplate Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 33/46] target/arm/helper: Remove unused include Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 34/46] target/arm: Fix multiline comment syntax Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 35/46] target/arm: Fix coding style issues Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 36/46] target/arm: Move the DC ZVA helper into op_helper Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 37/46] target/arm: Move CPU state dumping routines to cpu.c Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 38/46] target/arm: Declare get_phys_addr() function publicly Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 39/46] target/arm: Move TLB related routines to tlb_helper.c Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 40/46] target/arm/vfp_helper: Move code around Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 41/46] target/arm/vfp_helper: Extract vfp_set_fpscr_to_host() Peter Maydell
2019-07-05  7:24   ` Laurent Desnogues
2019-07-05  9:00     ` Philippe Mathieu-Daudé
2019-07-01 16:39 ` [Qemu-devel] [PULL 42/46] target/arm/vfp_helper: Extract vfp_set_fpscr_from_host() Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 43/46] target/arm/vfp_helper: Restrict the SoftFloat use to TCG Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 44/46] target/arm: Restrict PSCI " Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 45/46] target/arm: Declare arm_log_exception() function publicly Peter Maydell
2019-07-01 16:39 ` [Qemu-devel] [PULL 46/46] target/arm: Declare some M-profile functions publicly Peter Maydell
2019-07-02 13:07 ` [Qemu-devel] [PULL 00/46] target-arm queue Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).