:p
atchew
Login
v1->v2: add system/index to docs/index.rst v2->v3: fix format string issues for OSX The following changes since commit b7c359c748a2e3ccb97a184b9739feb2cd48de2f: Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-5.0-pull-request' into staging (2020-01-23 14:38:43 +0000) are available in the Git repository at: https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20200123-3 for you to fetch changes up to 9805a6b7d03a23e16d6499d16882094db490683a: hw/arm/exynos4210: Connect serial port DMA busy signals with pl330 (2020-01-23 15:52:34 +0000) ---------------------------------------------------------------- target-arm queue: * fix bug in PAuth emulation * add PMU to Cortex-R5, Cortex-R5F * qemu-nbd: Convert documentation to rST * qemu-block-drivers: Convert documentation to rST * Fix Exynos4210 UART DMA support * Various minor code cleanups ---------------------------------------------------------------- Andrew Jones (1): target/arm/arch_dump: Add SVE notes Clement Deschamps (1): target/arm: add PMU feature to cortex-r5 and cortex-r5f Guenter Roeck (8): dma/pl330: Convert to support tracing hw/core/or-irq: Increase limit of or-lines to 48 hw/arm/exynos4210: Fix DMA initialization hw/char/exynos4210_uart: Convert to support tracing hw/char/exynos4210_uart: Implement post_load function hw/char/exynos4210_uart: Implement Rx FIFO level triggers and timeouts hw/char/exynos4210_uart: Add receive DMA support hw/arm/exynos4210: Connect serial port DMA busy signals with pl330 Keqian Zhu (2): hw/acpi: Remove extra indent in ACPI GED hotplug cb hw/arm: Use helper function to trigger hotplug handler plug Peter Maydell (3): qemu-nbd: Convert invocation documentation to rST docs: Create stub system manual qemu-block-drivers: Convert to rST Philippe Mathieu-Daudé (1): hw/misc/stm32f4xx_syscfg: Fix copy/paste error Richard Henderson (3): tests/tcg/aarch64: Fix compilation parameters for pauth-% tests/tcg/aarch64: Add pauth-3 tests/tcg/aarch64: Add pauth-4 Vincent Dehors (1): target/arm: Fix PAuth sbox functions Makefile | 37 +- tests/tcg/aarch64/Makefile.softmmu-target | 5 +- tests/tcg/aarch64/Makefile.target | 3 +- include/elf.h | 1 + include/hw/arm/exynos4210.h | 4 + include/hw/or-irq.h | 2 +- target/arm/cpu.h | 25 + hw/acpi/generic_event_device.c | 2 +- hw/arm/exynos4210.c | 77 ++- hw/arm/virt.c | 6 +- hw/char/exynos4210_uart.c | 245 +++++--- hw/dma/pl330.c | 88 +-- hw/misc/stm32f4xx_syscfg.c | 2 +- target/arm/arch_dump.c | 124 +++- target/arm/cpu.c | 1 + target/arm/kvm64.c | 24 - target/arm/pauth_helper.c | 4 +- tests/tcg/aarch64/pauth-1.c | 2 - tests/tcg/aarch64/pauth-2.c | 2 - tests/tcg/aarch64/pauth-4.c | 25 + tests/tcg/aarch64/system/pauth-3.c | 40 ++ MAINTAINERS | 1 + docs/index.html.in | 1 + docs/index.rst | 2 +- docs/interop/conf.py | 4 +- docs/interop/index.rst | 1 + docs/interop/qemu-nbd.rst | 263 ++++++++ docs/interop/qemu-option-trace.rst.inc | 30 + docs/qemu-block-drivers.texi | 889 --------------------------- docs/system/conf.py | 22 + docs/system/index.rst | 17 + docs/system/qemu-block-drivers.rst | 985 ++++++++++++++++++++++++++++++ hw/char/trace-events | 20 + hw/dma/trace-events | 24 + qemu-doc.texi | 18 - qemu-nbd.texi | 214 ------- qemu-option-trace.texi | 4 + qemu-options.hx | 2 +- 38 files changed, 1898 insertions(+), 1318 deletions(-) create mode 100644 tests/tcg/aarch64/pauth-4.c create mode 100644 tests/tcg/aarch64/system/pauth-3.c create mode 100644 docs/interop/qemu-nbd.rst create mode 100644 docs/interop/qemu-option-trace.rst.inc delete mode 100644 docs/qemu-block-drivers.texi create mode 100644 docs/system/conf.py create mode 100644 docs/system/index.rst create mode 100644 docs/system/qemu-block-drivers.rst delete mode 100644 qemu-nbd.texi
v3->v4: Windows headers define an INT type which clashed with an enum value name in arm_gicv3_its.c... The following changes since commit eae587e8e3694b1aceab23239493fb4c7e1a80f5: Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2021-09-13' into staging (2021-09-13 11:00:30 +0100) are available in the Git repository at: https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210913-3 for you to fetch changes up to 28e987a7e7edaa3ca7feeac65edca26145df8814: hw/arm/mps2.c: Mark internal-only I2C buses as 'full' (2021-09-13 21:01:08 +0100) ---------------------------------------------------------------- target-arm queue: * mark MPS2/MPS3 board-internal i2c buses as 'full' so that command line user-created devices are not plugged into them * Take an exception if PSTATE.IL is set * Support an emulated ITS in the virt board * Add support for kudo-bmc board * Probe for KVM_CAP_ARM_VM_IPA_SIZE when creating scratch VM * cadence_uart: Fix clock handling issues that prevented u-boot from running ---------------------------------------------------------------- Bin Meng (6): hw/misc: zynq_slcr: Correctly compute output clocks in the reset exit phase hw/char: cadence_uart: Disable transmit when input clock is disabled hw/char: cadence_uart: Move clock/reset check to uart_can_receive() hw/char: cadence_uart: Convert to memop_with_attrs() ops hw/char: cadence_uart: Ignore access when unclocked or in reset for uart_{read, write}() hw/char: cadence_uart: Log a guest error when device is unclocked or in reset Chris Rauer (1): hw/arm: Add support for kudo-bmc board. Marc Zyngier (1): hw/arm/virt: KVM: Probe for KVM_CAP_ARM_VM_IPA_SIZE when creating scratch VM Peter Maydell (5): target/arm: Take an exception if PSTATE.IL is set qdev: Support marking individual buses as 'full' hw/arm/mps2-tz.c: Add extra data parameter to MakeDevFn hw/arm/mps2-tz.c: Mark internal-only I2C buses as 'full' hw/arm/mps2.c: Mark internal-only I2C buses as 'full' Richard Henderson (1): target/arm: Merge disas_a64_insn into aarch64_tr_translate_insn Shashi Mallela (9): hw/intc: GICv3 ITS initial framework hw/intc: GICv3 ITS register definitions added hw/intc: GICv3 ITS command queue framework hw/intc: GICv3 ITS Command processing hw/intc: GICv3 ITS Feature enablement hw/intc: GICv3 redistributor ITS processing tests/data/acpi/virt: Add IORT files for ITS hw/arm/virt: add ITS support in virt GIC tests/data/acpi/virt: Update IORT files for ITS docs/system/arm/nuvoton.rst | 1 + hw/intc/gicv3_internal.h | 188 ++++- include/hw/arm/virt.h | 2 + include/hw/intc/arm_gicv3_common.h | 13 + include/hw/intc/arm_gicv3_its_common.h | 32 +- include/hw/qdev-core.h | 24 + target/arm/cpu.h | 1 + target/arm/kvm_arm.h | 4 +- target/arm/syndrome.h | 5 + target/arm/translate.h | 2 + hw/arm/mps2-tz.c | 92 ++- hw/arm/mps2.c | 12 +- hw/arm/npcm7xx_boards.c | 34 + hw/arm/virt.c | 29 +- hw/char/cadence_uart.c | 61 +- hw/intc/arm_gicv3.c | 14 + hw/intc/arm_gicv3_common.c | 13 + hw/intc/arm_gicv3_cpuif.c | 7 +- hw/intc/arm_gicv3_dist.c | 5 +- hw/intc/arm_gicv3_its.c | 1322 ++++++++++++++++++++++++++++++++ hw/intc/arm_gicv3_its_common.c | 7 +- hw/intc/arm_gicv3_its_kvm.c | 2 +- hw/intc/arm_gicv3_redist.c | 153 +++- hw/misc/zynq_slcr.c | 31 +- softmmu/qdev-monitor.c | 7 +- target/arm/helper-a64.c | 1 + target/arm/helper.c | 8 + target/arm/kvm.c | 7 +- target/arm/translate-a64.c | 255 +++--- target/arm/translate.c | 21 + hw/intc/meson.build | 1 + tests/data/acpi/virt/IORT | Bin 0 -> 124 bytes tests/data/acpi/virt/IORT.memhp | Bin 0 -> 124 bytes tests/data/acpi/virt/IORT.numamem | Bin 0 -> 124 bytes tests/data/acpi/virt/IORT.pxb | Bin 0 -> 124 bytes 35 files changed, 2144 insertions(+), 210 deletions(-) create mode 100644 hw/intc/arm_gicv3_its.c create mode 100644 tests/data/acpi/virt/IORT create mode 100644 tests/data/acpi/virt/IORT.memhp create mode 100644 tests/data/acpi/virt/IORT.numamem create mode 100644 tests/data/acpi/virt/IORT.pxb