First set of arm patches for 6.2. I have a lot more in my to-review queue still...
-- PMM The following changes since commit d42685765653ec155fdf60910662f8830bdb2cef: Open 6.2 development tree (2021-08-25 10:25:12 +0100) are available in the Git repository at: https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210825 for you to fetch changes up to 24b1a6aa43615be22c7ee66bd68ec5675f6a6a9a: docs: Document how to use gdb with unix sockets (2021-08-25 10:48:51 +0100) ---------------------------------------------------------------- target-arm queue: * More MVE emulation work * Implement M-profile trapping on division by zero * kvm: use RCU_READ_LOCK_GUARD() in kvm_arch_fixup_msi_route() * hw/char/pl011: add support for sending break * fsl-imx6ul: Instantiate SAI1/2/3 and ASRC as unimplemented devices * hw/dma/pl330: Add memory region to replace default * sbsa-ref: Rename SBSA_GWDT enum value * fsl-imx7: Instantiate SAI1/2/3 as unimplemented devices * docs: Document how to use gdb with unix sockets ---------------------------------------------------------------- Eduardo Habkost (1): sbsa-ref: Rename SBSA_GWDT enum value Guenter Roeck (2): fsl-imx6ul: Instantiate SAI1/2/3 and ASRC as unimplemented devices fsl-imx7: Instantiate SAI1/2/3 as unimplemented devices Hamza Mahfooz (1): target/arm: kvm: use RCU_READ_LOCK_GUARD() in kvm_arch_fixup_msi_route() Jan Luebbe (1): hw/char/pl011: add support for sending break Peter Maydell (37): target/arm: Note that we handle VMOVL as a special case of VSHLL target/arm: Print MVE VPR in CPU dumps target/arm: Fix MVE VSLI by 0 and VSRI by <dt> target/arm: Fix signed VADDV target/arm: Fix mask handling for MVE narrowing operations target/arm: Fix 48-bit saturating shifts target/arm: Fix MVE 48-bit SQRSHRL for small right shifts target/arm: Fix calculation of LTP mask when LR is 0 target/arm: Factor out mve_eci_mask() target/arm: Fix VPT advance when ECI is non-zero target/arm: Fix VLDRB/H/W for predicated elements target/arm: Implement MVE VMULL (polynomial) target/arm: Implement MVE incrementing/decrementing dup insns target/arm: Factor out gen_vpst() target/arm: Implement MVE integer vector comparisons target/arm: Implement MVE integer vector-vs-scalar comparisons target/arm: Implement MVE VPSEL target/arm: Implement MVE VMLAS target/arm: Implement MVE shift-by-scalar target/arm: Move 'x' and 'a' bit definitions into vmlaldav formats target/arm: Implement MVE integer min/max across vector target/arm: Implement MVE VABAV target/arm: Implement MVE narrowing moves target/arm: Rename MVEGenDualAccOpFn to MVEGenLongDualAccOpFn target/arm: Implement MVE VMLADAV and VMLSLDAV target/arm: Implement MVE VMLA target/arm: Implement MVE saturating doubling multiply accumulates target/arm: Implement MVE VQABS, VQNEG target/arm: Implement MVE VMAXA, VMINA target/arm: Implement MVE VMOV to/from 2 general-purpose registers target/arm: Implement MVE VPNOT target/arm: Implement MVE VCTP target/arm: Implement MVE scatter-gather insns target/arm: Implement MVE scatter-gather immediate forms target/arm: Implement MVE interleaving loads/stores target/arm: Re-indent sdiv and udiv helpers target/arm: Implement M-profile trapping on division by zero Sebastian Meyer (1): docs: Document how to use gdb with unix sockets Wen, Jianxian (1): hw/dma/pl330: Add memory region to replace default docs/system/gdb.rst | 26 +- include/hw/arm/fsl-imx7.h | 5 + target/arm/cpu.h | 1 + target/arm/helper-mve.h | 283 ++++++++++ target/arm/helper.h | 4 +- target/arm/translate-a32.h | 2 + target/arm/vec_internal.h | 11 + target/arm/mve.decode | 226 +++++++- target/arm/t32.decode | 1 + hw/arm/exynos4210.c | 3 + hw/arm/fsl-imx6ul.c | 12 + hw/arm/fsl-imx7.c | 7 + hw/arm/sbsa-ref.c | 6 +- hw/arm/xilinx_zynq.c | 3 + hw/char/pl011.c | 6 + hw/dma/pl330.c | 26 +- target/arm/cpu.c | 3 + target/arm/helper.c | 34 +- target/arm/kvm.c | 17 +- target/arm/m_helper.c | 4 + target/arm/mve_helper.c | 1254 ++++++++++++++++++++++++++++++++++++++++++-- target/arm/translate-mve.c | 877 ++++++++++++++++++++++++++++++- target/arm/translate-vfp.c | 2 +- target/arm/translate.c | 37 +- target/arm/vec_helper.c | 14 +- 25 files changed, 2746 insertions(+), 118 deletions(-)