1 | target-arm queue. This has the "plumb txattrs through various | 1 | Squashed in a trivial fix for 32-bit hosts: |
---|---|---|---|
2 | bits of exec.c" patches, and a collection of bug fixes from | ||
3 | various people. | ||
4 | 2 | ||
5 | v2: fix compile error on arm hosts... | 3 | --- a/target/arm/mve_helper.c |
4 | +++ b/target/arm/mve_helper.c | ||
5 | @@ -XXX,XX +XXX,XX @@ DO_LDAV(vmlsldavxsw, 4, int32_t, true, +=, -=) | ||
6 | acc = EVENACC(acc, TO128(n[H##ESIZE(e + 1 * XCHG)] * \ | ||
7 | m[H##ESIZE(e)])); \ | ||
8 | } \ | ||
9 | - acc = int128_add(acc, 1 << 7); \ | ||
10 | + acc = int128_add(acc, int128_make64(1 << 7)); \ | ||
11 | } \ | ||
12 | } \ | ||
13 | mve_advance_vpt(env); \ | ||
6 | 14 | ||
7 | thanks | ||
8 | -- PMM | 15 | -- PMM |
9 | 16 | ||
17 | The following changes since commit 53f306f316549d20c76886903181413d20842423: | ||
10 | 18 | ||
11 | The following changes since commit a3ac12fba028df90f7b3dbec924995c126c41022: | 19 | Merge remote-tracking branch 'remotes/ehabkost-gl/tags/x86-next-pull-request' into staging (2021-06-21 11:26:04 +0100) |
12 | |||
13 | Merge remote-tracking branch 'remotes/ehabkost/tags/numa-next-pull-request' into staging (2018-05-31 11:12:36 +0100) | ||
14 | 20 | ||
15 | are available in the Git repository at: | 21 | are available in the Git repository at: |
16 | 22 | ||
17 | git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20180531-1 | 23 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210624 |
18 | 24 | ||
19 | for you to fetch changes up to 2f15b79280cf71b7991dfd3f0312a1797630e376: | 25 | for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee: |
20 | 26 | ||
21 | KVM: GIC: Fix memory leak due to calling kvm_init_irq_routing twice (2018-05-31 16:32:35 +0100) | 27 | docs/system: arm: Add nRF boards description (2021-06-24 14:58:48 +0100) |
22 | 28 | ||
23 | ---------------------------------------------------------------- | 29 | ---------------------------------------------------------------- |
24 | target-arm queue: | 30 | target-arm queue: |
25 | * target/arm: Honour FPCR.FZ in FRECPX | 31 | * Don't require 'virt' board to be compiled in for ACPI GHES code |
26 | * MAINTAINERS: Add entries for newer MPS2 boards and devices | 32 | * docs: Document which architecture extensions we emulate |
27 | * hw/intc/arm_gicv3: Fix APxR<n> register dispatching | 33 | * Fix bugs in M-profile FPCXT_NS accesses |
28 | * arm_gicv3_kvm: fix bug in writing zero bits back to the in-kernel | 34 | * First slice of MVE patches |
29 | GIC state | 35 | * Implement MTE3 |
30 | * tcg: Fix helper function vs host abi for float16 | 36 | * docs/system: arm: Add nRF boards description |
31 | * arm: fix qemu crash on startup with -bios option | ||
32 | * arm: fix malloc type mismatch | ||
33 | * xlnx-zdma: Correct mem leaks and memset to zero on desc unaligned errors | ||
34 | * Correct CPACR reset value for v7 cores | ||
35 | * memory.h: Improve IOMMU related documentation | ||
36 | * exec: Plumb transaction attributes through various functions in | ||
37 | preparation for allowing IOMMUs to see them | ||
38 | * vmstate.h: Provide VMSTATE_BOOL_SUB_ARRAY | ||
39 | * ARM: ACPI: Fix use-after-free due to memory realloc | ||
40 | * KVM: GIC: Fix memory leak due to calling kvm_init_irq_routing twice | ||
41 | 37 | ||
42 | ---------------------------------------------------------------- | 38 | ---------------------------------------------------------------- |
43 | Francisco Iglesias (1): | 39 | Alexandre Iooss (1): |
44 | xlnx-zdma: Correct mem leaks and memset to zero on desc unaligned errors | 40 | docs/system: arm: Add nRF boards description |
45 | 41 | ||
46 | Igor Mammedov (1): | 42 | Peter Collingbourne (1): |
47 | arm: fix qemu crash on startup with -bios option | 43 | target/arm: Implement MTE3 |
48 | 44 | ||
49 | Jan Kiszka (1): | 45 | Peter Maydell (55): |
50 | hw/intc/arm_gicv3: Fix APxR<n> register dispatching | 46 | hw/acpi: Provide stub version of acpi_ghes_record_errors() |
47 | hw/acpi: Provide function acpi_ghes_present() | ||
48 | target/arm: Use acpi_ghes_present() to see if we report ACPI memory errors | ||
49 | docs/system/arm: Document which architecture extensions we emulate | ||
50 | target/arm/translate-vfp.c: Whitespace fixes | ||
51 | target/arm: Handle FPU being disabled in FPCXT_NS accesses | ||
52 | target/arm: Don't NOCP fault for FPCXT_NS accesses | ||
53 | target/arm: Handle writeback in VLDR/VSTR sysreg with no memory access | ||
54 | target/arm: Factor FP context update code out into helper function | ||
55 | target/arm: Split vfp_access_check() into A and M versions | ||
56 | target/arm: Handle FPU check for FPCXT_NS insns via vfp_access_check_m() | ||
57 | target/arm: Implement MVE VLDR/VSTR (non-widening forms) | ||
58 | target/arm: Implement widening/narrowing MVE VLDR/VSTR insns | ||
59 | target/arm: Implement MVE VCLZ | ||
60 | target/arm: Implement MVE VCLS | ||
61 | target/arm: Implement MVE VREV16, VREV32, VREV64 | ||
62 | target/arm: Implement MVE VMVN (register) | ||
63 | target/arm: Implement MVE VABS | ||
64 | target/arm: Implement MVE VNEG | ||
65 | tcg: Make gen_dup_i32/i64() public as tcg_gen_dup_i32/i64 | ||
66 | target/arm: Implement MVE VDUP | ||
67 | target/arm: Implement MVE VAND, VBIC, VORR, VORN, VEOR | ||
68 | target/arm: Implement MVE VADD, VSUB, VMUL | ||
69 | target/arm: Implement MVE VMULH | ||
70 | target/arm: Implement MVE VRMULH | ||
71 | target/arm: Implement MVE VMAX, VMIN | ||
72 | target/arm: Implement MVE VABD | ||
73 | target/arm: Implement MVE VHADD, VHSUB | ||
74 | target/arm: Implement MVE VMULL | ||
75 | target/arm: Implement MVE VMLALDAV | ||
76 | target/arm: Implement MVE VMLSLDAV | ||
77 | target/arm: Implement MVE VRMLALDAVH, VRMLSLDAVH | ||
78 | target/arm: Implement MVE VADD (scalar) | ||
79 | target/arm: Implement MVE VSUB, VMUL (scalar) | ||
80 | target/arm: Implement MVE VHADD, VHSUB (scalar) | ||
81 | target/arm: Implement MVE VBRSR | ||
82 | target/arm: Implement MVE VPST | ||
83 | target/arm: Implement MVE VQADD and VQSUB | ||
84 | target/arm: Implement MVE VQDMULH and VQRDMULH (scalar) | ||
85 | target/arm: Implement MVE VQDMULL scalar | ||
86 | target/arm: Implement MVE VQDMULH, VQRDMULH (vector) | ||
87 | target/arm: Implement MVE VQADD, VQSUB (vector) | ||
88 | target/arm: Implement MVE VQSHL (vector) | ||
89 | target/arm: Implement MVE VQRSHL | ||
90 | target/arm: Implement MVE VSHL insn | ||
91 | target/arm: Implement MVE VRSHL | ||
92 | target/arm: Implement MVE VQDMLADH and VQRDMLADH | ||
93 | target/arm: Implement MVE VQDMLSDH and VQRDMLSDH | ||
94 | target/arm: Implement MVE VQDMULL (vector) | ||
95 | target/arm: Implement MVE VRHADD | ||
96 | target/arm: Implement MVE VADC, VSBC | ||
97 | target/arm: Implement MVE VCADD | ||
98 | target/arm: Implement MVE VHCADD | ||
99 | target/arm: Implement MVE VADDV | ||
100 | target/arm: Make VMOV scalar <-> gpreg beatwise for MVE | ||
51 | 101 | ||
52 | Paolo Bonzini (1): | 102 | docs/system/arm/emulation.rst | 103 ++++ |
53 | arm: fix malloc type mismatch | 103 | docs/system/arm/nrf.rst | 51 ++ |
104 | docs/system/target-arm.rst | 7 + | ||
105 | include/hw/acpi/ghes.h | 9 + | ||
106 | include/tcg/tcg-op.h | 8 + | ||
107 | include/tcg/tcg.h | 1 - | ||
108 | target/arm/helper-mve.h | 357 +++++++++++++ | ||
109 | target/arm/helper.h | 2 + | ||
110 | target/arm/internals.h | 11 + | ||
111 | target/arm/translate-a32.h | 3 + | ||
112 | target/arm/translate.h | 10 + | ||
113 | target/arm/m-nocp.decode | 24 + | ||
114 | target/arm/mve.decode | 240 +++++++++ | ||
115 | target/arm/vfp.decode | 14 - | ||
116 | hw/acpi/ghes-stub.c | 22 + | ||
117 | hw/acpi/ghes.c | 17 + | ||
118 | target/arm/cpu64.c | 2 +- | ||
119 | target/arm/kvm64.c | 6 +- | ||
120 | target/arm/mte_helper.c | 82 +-- | ||
121 | target/arm/mve_helper.c | 1160 +++++++++++++++++++++++++++++++++++++++++ | ||
122 | target/arm/translate-m-nocp.c | 550 +++++++++++++++++++ | ||
123 | target/arm/translate-mve.c | 759 +++++++++++++++++++++++++++ | ||
124 | target/arm/translate-vfp.c | 741 +++++++------------------- | ||
125 | tcg/tcg-op-gvec.c | 20 +- | ||
126 | MAINTAINERS | 1 + | ||
127 | hw/acpi/meson.build | 6 +- | ||
128 | target/arm/meson.build | 1 + | ||
129 | 27 files changed, 3578 insertions(+), 629 deletions(-) | ||
130 | create mode 100644 docs/system/arm/emulation.rst | ||
131 | create mode 100644 docs/system/arm/nrf.rst | ||
132 | create mode 100644 target/arm/helper-mve.h | ||
133 | create mode 100644 hw/acpi/ghes-stub.c | ||
134 | create mode 100644 target/arm/mve_helper.c | ||
54 | 135 | ||
55 | Peter Maydell (17): | ||
56 | target/arm: Honour FPCR.FZ in FRECPX | ||
57 | MAINTAINERS: Add entries for newer MPS2 boards and devices | ||
58 | Correct CPACR reset value for v7 cores | ||
59 | memory.h: Improve IOMMU related documentation | ||
60 | Make tb_invalidate_phys_addr() take a MemTxAttrs argument | ||
61 | Make address_space_translate{, _cached}() take a MemTxAttrs argument | ||
62 | Make address_space_map() take a MemTxAttrs argument | ||
63 | Make address_space_access_valid() take a MemTxAttrs argument | ||
64 | Make flatview_extend_translation() take a MemTxAttrs argument | ||
65 | Make memory_region_access_valid() take a MemTxAttrs argument | ||
66 | Make MemoryRegion valid.accepts callback take a MemTxAttrs argument | ||
67 | Make flatview_access_valid() take a MemTxAttrs argument | ||
68 | Make flatview_translate() take a MemTxAttrs argument | ||
69 | Make address_space_get_iotlb_entry() take a MemTxAttrs argument | ||
70 | Make flatview_do_translate() take a MemTxAttrs argument | ||
71 | Make address_space_translate_iommu take a MemTxAttrs argument | ||
72 | vmstate.h: Provide VMSTATE_BOOL_SUB_ARRAY | ||
73 | |||
74 | Richard Henderson (1): | ||
75 | tcg: Fix helper function vs host abi for float16 | ||
76 | |||
77 | Shannon Zhao (3): | ||
78 | arm_gicv3_kvm: increase clroffset accordingly | ||
79 | ARM: ACPI: Fix use-after-free due to memory realloc | ||
80 | KVM: GIC: Fix memory leak due to calling kvm_init_irq_routing twice | ||
81 | |||
82 | include/exec/exec-all.h | 5 +- | ||
83 | include/exec/helper-head.h | 2 +- | ||
84 | include/exec/memory-internal.h | 3 +- | ||
85 | include/exec/memory.h | 128 +++++++++++++++++++++++++++++++++++------ | ||
86 | include/migration/vmstate.h | 3 + | ||
87 | include/sysemu/dma.h | 6 +- | ||
88 | accel/tcg/translate-all.c | 4 +- | ||
89 | exec.c | 95 ++++++++++++++++++------------ | ||
90 | hw/arm/boot.c | 18 +++--- | ||
91 | hw/arm/virt-acpi-build.c | 20 +++++-- | ||
92 | hw/dma/xlnx-zdma.c | 10 +++- | ||
93 | hw/hppa/dino.c | 3 +- | ||
94 | hw/intc/arm_gic_kvm.c | 1 - | ||
95 | hw/intc/arm_gicv3_cpuif.c | 12 ++-- | ||
96 | hw/intc/arm_gicv3_kvm.c | 2 +- | ||
97 | hw/nvram/fw_cfg.c | 12 ++-- | ||
98 | hw/s390x/s390-pci-inst.c | 3 +- | ||
99 | hw/scsi/esp.c | 3 +- | ||
100 | hw/vfio/common.c | 3 +- | ||
101 | hw/virtio/vhost.c | 3 +- | ||
102 | hw/xen/xen_pt_msi.c | 3 +- | ||
103 | memory.c | 12 ++-- | ||
104 | memory_ldst.inc.c | 18 +++--- | ||
105 | target/arm/gdbstub.c | 3 +- | ||
106 | target/arm/helper-a64.c | 41 +++++++------ | ||
107 | target/arm/helper.c | 90 ++++++++++++++++------------- | ||
108 | target/arm/kvm.c | 3 +- | ||
109 | target/ppc/mmu-hash64.c | 3 +- | ||
110 | target/riscv/helper.c | 2 +- | ||
111 | target/s390x/diag.c | 6 +- | ||
112 | target/s390x/excp_helper.c | 3 +- | ||
113 | target/s390x/mmu_helper.c | 3 +- | ||
114 | target/s390x/sigp.c | 3 +- | ||
115 | target/xtensa/op_helper.c | 3 +- | ||
116 | MAINTAINERS | 9 ++- | ||
117 | 35 files changed, 355 insertions(+), 183 deletions(-) | ||
118 | diff view generated by jsdifflib |