qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/18] target-arm queue
@ 2020-10-01 14:47 Peter Maydell
  2020-10-01 14:47 ` [PULL 01/18] target/arm: Replace ARM_FEATURE_PXN with ID_MMFR0.VMSA check Peter Maydell
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Peter Maydell @ 2020-10-01 14:47 UTC (permalink / raw)
  To: qemu-devel

Nothing very exciting this time around...

-- PMM

The following changes since commit 37a712a0f969ca2df7f01182409a6c4825cebfb5:

  Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging (2020-10-01 12:23:19 +0100)

are available in the Git repository at:

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

for you to fetch changes up to cdfaa57dcb53ba012439765a1462247dfda8595d:

  hw/arm/raspi: Remove use of the 'version' value in the board code (2020-10-01 15:31:01 +0100)

----------------------------------------------------------------
target-arm queue:
 * Make isar_feature_aa32_fp16_arith() handle M-profile
 * Fix SVE splice
 * Fix SVE LDR/STR
 * Remove ignore_memory_transaction_failures on the raspi2
 * raspi: Various cleanup/refactoring

----------------------------------------------------------------
Peter Maydell (5):
      target/arm: Replace ARM_FEATURE_PXN with ID_MMFR0.VMSA check
      target/arm: Move id_pfr0, id_pfr1 into ARMISARegisters
      hw/intc/armv7m_nvic: Only show ID register values for Main Extension CPUs
      target/arm: Add ID register values for Cortex-M0
      target/arm: Make isar_feature_aa32_fp16_arith() handle M-profile

Philippe Mathieu-Daudé (11):
      hw/arm/raspi: Define various blocks base addresses
      hw/arm/bcm2835: Add more unimplemented peripherals
      hw/arm/raspi: Remove ignore_memory_transaction_failures on the raspi2
      hw/arm/raspi: Display the board revision in the machine description
      hw/arm/raspi: Load the firmware on the first core
      hw/arm/raspi: Move arm_boot_info structure to RaspiMachineState
      hw/arm/raspi: Avoid using TypeInfo::class_data pointer
      hw/arm/raspi: Use more specific machine names
      hw/arm/raspi: Introduce RaspiProcessorId enum
      hw/arm/raspi: Use RaspiProcessorId to set the firmware load address
      hw/arm/raspi: Remove use of the 'version' value in the board code

Richard Henderson (2):
      target/arm: Fix sve ldr/str
      target/arm: Fix SVE splice

 include/hw/arm/bcm2835_peripherals.h |   2 +
 include/hw/arm/raspi_platform.h      |  51 ++++++++++--
 target/arm/cpu.h                     |  50 +++++++++--
 hw/arm/bcm2835_peripherals.c         |   2 +
 hw/arm/raspi.c                       | 155 +++++++++++++++++++----------------
 hw/intc/armv7m_nvic.c                |  46 ++++++++++-
 target/arm/cpu.c                     |  21 +++--
 target/arm/cpu64.c                   |  12 +--
 target/arm/cpu_tcg.c                 |  60 ++++++++++----
 target/arm/helper.c                  |   9 +-
 target/arm/kvm64.c                   |   4 +
 target/arm/translate-sve.c           |   6 +-
 12 files changed, 286 insertions(+), 132 deletions(-)


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

end of thread, other threads:[~2020-10-01 18:46 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-01 14:47 [PULL 00/18] target-arm queue Peter Maydell
2020-10-01 14:47 ` [PULL 01/18] target/arm: Replace ARM_FEATURE_PXN with ID_MMFR0.VMSA check Peter Maydell
2020-10-01 14:47 ` [PULL 02/18] target/arm: Move id_pfr0, id_pfr1 into ARMISARegisters Peter Maydell
2020-10-01 14:47 ` [PULL 03/18] hw/intc/armv7m_nvic: Only show ID register values for Main Extension CPUs Peter Maydell
2020-10-01 14:47 ` [PULL 04/18] target/arm: Add ID register values for Cortex-M0 Peter Maydell
2020-10-01 14:47 ` [PULL 05/18] target/arm: Make isar_feature_aa32_fp16_arith() handle M-profile Peter Maydell
2020-10-01 14:47 ` [PULL 06/18] target/arm: Fix sve ldr/str Peter Maydell
2020-10-01 14:47 ` [PULL 07/18] target/arm: Fix SVE splice Peter Maydell
2020-10-01 14:47 ` [PULL 08/18] hw/arm/raspi: Define various blocks base addresses Peter Maydell
2020-10-01 14:47 ` [PULL 09/18] hw/arm/bcm2835: Add more unimplemented peripherals Peter Maydell
2020-10-01 14:47 ` [PULL 10/18] hw/arm/raspi: Remove ignore_memory_transaction_failures on the raspi2 Peter Maydell
2020-10-01 14:47 ` [PULL 11/18] hw/arm/raspi: Display the board revision in the machine description Peter Maydell
2020-10-01 14:47 ` [PULL 12/18] hw/arm/raspi: Load the firmware on the first core Peter Maydell
2020-10-01 14:47 ` [PULL 13/18] hw/arm/raspi: Move arm_boot_info structure to RaspiMachineState Peter Maydell
2020-10-01 14:47 ` [PULL 14/18] hw/arm/raspi: Avoid using TypeInfo::class_data pointer Peter Maydell
2020-10-01 14:47 ` [PULL 15/18] hw/arm/raspi: Use more specific machine names Peter Maydell
2020-10-01 14:47 ` [PULL 16/18] hw/arm/raspi: Introduce RaspiProcessorId enum Peter Maydell
2020-10-01 14:47 ` [PULL 17/18] hw/arm/raspi: Use RaspiProcessorId to set the firmware load address Peter Maydell
2020-10-01 14:47 ` [PULL 18/18] hw/arm/raspi: Remove use of the 'version' value in the board code Peter Maydell
2020-10-01 18:45 ` [PULL 00/18] 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).