v2: fix format string error thanks -- PMM
The following changes since commit aa9bbd865502ed517624ab6fe7d4b5d89ca95e43: Merge tag 'pull-ppc-20230528' of https://gitlab.com/danielhb/qemu into staging (2023-05-29 14:31:52 -0700) are available in the Git repository at: https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20230530-1 for you to fetch changes up to ec683110def96b16be3931ec87baba65a3dc5ad0: docs: sbsa: correct graphics card name (2023-05-30 15:50:17 +0100) ---------------------------------------------------------------- target-arm queue: * fsl-imx6: Add SNVS support for i.MX6 boards * smmuv3: Add support for stage 2 translations * hw/dma/xilinx_axidma: Check DMASR.HALTED to prevent infinite loop * hw/arm/xlnx-zynqmp: fix unsigned error when checking the RPUs number * cleanups for recent Kconfig changes * target/arm: Explicitly select short-format FSR for M-profile * tests/qtest: Run arm-specific tests only if the required machine is available * hw/arm/sbsa-ref: add GIC node into DT * docs: sbsa: correct graphics card name * Update copyright dates to 2023 ---------------------------------------------------------------- Clément Chigot (1): hw/arm/xlnx-zynqmp: fix unsigned error when checking the RPUs number Enze Li (1): Update copyright dates to 2023 Fabiano Rosas (3): target/arm: Explain why we need to select ARM_V7M arm/Kconfig: Keep Kconfig default entries in default.mak as documentation arm/Kconfig: Make TCG dependence explicit Marcin Juszkiewicz (2): hw/arm/sbsa-ref: add GIC node into DT docs: sbsa: correct graphics card name Mostafa Saleh (10): hw/arm/smmuv3: Add missing fields for IDR0 hw/arm/smmuv3: Update translation config to hold stage-2 hw/arm/smmuv3: Refactor stage-1 PTW hw/arm/smmuv3: Add page table walk for stage-2 hw/arm/smmuv3: Parse STE config for stage-2 hw/arm/smmuv3: Make TLB lookup work for stage-2 hw/arm/smmuv3: Add VMID to TLB tagging hw/arm/smmuv3: Add CMDs related to stage-2 hw/arm/smmuv3: Add stage-2 support in iova notifier hw/arm/smmuv3: Add knob to choose translation stage and enable stage-2 Peter Maydell (1): target/arm: Explicitly select short-format FSR for M-profile Thomas Huth (1): tests/qtest: Run arm-specific tests only if the required machine is available Tommy Wu (1): hw/dma/xilinx_axidma: Check DMASR.HALTED to prevent infinite loop. Vitaly Cheptsov (1): fsl-imx6: Add SNVS support for i.MX6 boards docs/conf.py | 2 +- docs/system/arm/sbsa.rst | 2 +- configs/devices/aarch64-softmmu/default.mak | 6 + configs/devices/arm-softmmu/default.mak | 40 ++++ hw/arm/smmu-internal.h | 37 +++ hw/arm/smmuv3-internal.h | 12 +- include/hw/arm/fsl-imx6.h | 2 + include/hw/arm/smmu-common.h | 45 +++- include/hw/arm/smmuv3.h | 4 + include/qemu/help-texts.h | 2 +- hw/arm/fsl-imx6.c | 8 + hw/arm/sbsa-ref.c | 19 +- hw/arm/smmu-common.c | 209 ++++++++++++++-- hw/arm/smmuv3.c | 358 ++++++++++++++++++++++++---- hw/arm/xlnx-zynqmp.c | 2 +- hw/dma/xilinx_axidma.c | 11 +- target/arm/tcg/tlb_helper.c | 13 +- hw/arm/Kconfig | 123 ++++++---- hw/arm/trace-events | 14 +- target/arm/Kconfig | 3 + tests/qtest/meson.build | 7 +- 21 files changed, 774 insertions(+), 145 deletions(-)