This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-aarch64 in repository toolchain/ci/qemu.
from 1d60bb4b14 Merge tag 'pull-request-2022-03-15v2' of https://gitlab.com/ [...] new b17ab4705c target/arm: Fix sve2 ldnt1 and stnt1 new c179d3be7b target/arm: Fix pauth_check_trap vs SEL2 new 39a1fd2528 target/arm: Fix handling of LPAE block descriptors new 9a09273f33 hw/dma/xlnx_csu_dma: Set TYPE_XLNX_CSU_DMA class_size new 75f7ba165c hw/misc/npcm7xx_clk: Don't leak string in npcm7xx_clk_sel_init() new e422d92a23 nsis installer: List emulators in alphabetical order new 6b98e86e87 nsis installer: Suppress "ANSI targets are deprecated" warning new c08796378d nsis installer: Fix mouse-over descriptions for emulators new 16d91e06b3 hw/intc: Rename CONFIG_ARM_GIC_TCG into CONFIG_ARM_GICV3_TCG new 299b4a3ecf hw/arm/virt: Fix gic-version=max when CONFIG_ARM_GICV3_TCG is unset new 8cc2246caa target/arm: Log M-profile vector table accesses new 654abaa783 target/arm: Log fault address for M-profile faults new c28d4b8656 hw/arm/xlnx-zynqmp: Add an unimplemented SERDES area new 4a7319b750 target/arm: Make rvbar settable after realize new 152f0bf0c9 hw/misc: Add a model of the Xilinx ZynqMP CRF new 63320bcaed hw/arm/xlnx-zynqmp: Connect the ZynqMP CRF new b4ecda2dd7 hw/misc: Add a model of the Xilinx ZynqMP APU Control new eb7a38ba66 hw/arm/xlnx-zynqmp: Connect the ZynqMP APU Control new 8900c204df util/osdep: Avoid madvise proto on modern Solaris new 9c2d83f5a0 hw/i386/acpi-build: Avoid 'sun' identifier new 79d54c9eac util/osdep: Remove some early cruft new a09863610a Merge tag 'pull-target-arm-20220318' of https://git.linaro.o [...] new d1e9e64629 hw/pci/pci.c: Fix typos of "Firewire", and of "controller" o [...] new a2d860bb54 virtio/virtio-balloon: Prefer Object* over void* parameter new c9020c8e6c Merge tag 'trivial-branch-for-7.0-pull-request' of https://g [...]
The 25 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: hw/arm/virt.c | 7 +- hw/arm/xlnx-zynqmp.c | 46 +++++- hw/dma/xlnx_csu_dma.c | 1 + hw/i386/acpi-build.c | 4 +- hw/intc/Kconfig | 2 +- hw/intc/meson.build | 4 +- hw/misc/meson.build | 2 + hw/misc/npcm7xx_clk.c | 4 +- hw/misc/xlnx-zynqmp-apu-ctrl.c | 253 +++++++++++++++++++++++++++++++ hw/misc/xlnx-zynqmp-crf.c | 266 +++++++++++++++++++++++++++++++++ hw/pci/pci.c | 2 +- hw/virtio/virtio-balloon.c | 10 +- include/hw/arm/xlnx-zynqmp.h | 4 + include/hw/misc/xlnx-zynqmp-apu-ctrl.h | 93 ++++++++++++ include/hw/misc/xlnx-zynqmp-crf.h | 211 ++++++++++++++++++++++++++ include/qemu/osdep.h | 8 + meson.build | 23 ++- qemu.nsi | 8 +- scripts/nsis.py | 17 ++- target/arm/cpu.c | 17 ++- target/arm/cpu.h | 3 +- target/arm/helper.c | 20 ++- target/arm/m_helper.c | 11 ++ target/arm/pauth_helper.c | 2 +- target/arm/sve.decode | 5 +- target/arm/translate-sve.c | 51 ++++++- tests/tcg/aarch64/Makefile.target | 4 + tests/tcg/aarch64/test-826.c | 50 +++++++ tests/tcg/configure.sh | 4 + util/osdep.c | 10 -- 30 files changed, 1090 insertions(+), 52 deletions(-) create mode 100644 hw/misc/xlnx-zynqmp-apu-ctrl.c create mode 100644 hw/misc/xlnx-zynqmp-crf.c create mode 100644 include/hw/misc/xlnx-zynqmp-apu-ctrl.h create mode 100644 include/hw/misc/xlnx-zynqmp-crf.h create mode 100644 tests/tcg/aarch64/test-826.c