1 | Squashed in a trivial fix for 32-bit hosts: | 1 | v1->v2: fix up format string issues in aspeed_i3c.c |
---|---|---|---|
2 | |||
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); \ | ||
14 | 2 | ||
15 | -- PMM | 3 | -- PMM |
16 | 4 | ||
17 | The following changes since commit 53f306f316549d20c76886903181413d20842423: | 5 | The following changes since commit b10d00d8811fa4eed4862963273d7353ce310c82: |
18 | 6 | ||
19 | Merge remote-tracking branch 'remotes/ehabkost-gl/tags/x86-next-pull-request' into staging (2021-06-21 11:26:04 +0100) | 7 | Merge remote-tracking branch 'remotes/kraxel/tags/seabios-20220118-pull-request' into staging (2022-01-19 18:46:28 +0000) |
20 | 8 | ||
21 | are available in the Git repository at: | 9 | are available in the Git repository at: |
22 | 10 | ||
23 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210624 | 11 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20220120-1 |
24 | 12 | ||
25 | for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee: | 13 | for you to fetch changes up to b9d383ab797f54ae5fa8746117770709921dc529: |
26 | 14 | ||
27 | docs/system: arm: Add nRF boards description (2021-06-24 14:58:48 +0100) | 15 | hw/intc/arm_gicv3: Check for !MEMTX_OK instead of MEMTX_ERROR (2022-01-20 16:04:58 +0000) |
28 | 16 | ||
29 | ---------------------------------------------------------------- | 17 | ---------------------------------------------------------------- |
30 | target-arm queue: | 18 | target-arm: |
31 | * Don't require 'virt' board to be compiled in for ACPI GHES code | 19 | * hw/intc/arm_gicv3_its: Fix various minor bugs |
32 | * docs: Document which architecture extensions we emulate | 20 | * hw/arm/aspeed: Add the i3c device to the AST2600 SoC |
33 | * Fix bugs in M-profile FPCXT_NS accesses | 21 | * hw/arm: kudo: add lm75s behind bus 1 switch at 75 |
34 | * First slice of MVE patches | 22 | * hw/arm/virt: Fix support for running guests on hosts |
35 | * Implement MTE3 | 23 | with restricted IPA ranges |
36 | * docs/system: arm: Add nRF boards description | 24 | * hw/intc/arm_gic: Allow reset of the running priority |
25 | * hw/intc/arm_gic: Implement read of GICC_IIDR | ||
26 | * hw/arm/virt: Support for virtio-mem-pci | ||
27 | * hw/arm/virt: Support CPU cluster on ARM virt machine | ||
28 | * docs/can: convert to restructuredText | ||
29 | * hw/net: Move MV88W8618 network device out of hw/arm/ directory | ||
30 | * hw/arm/virt: KVM: Enable PAuth when supported by the host | ||
37 | 31 | ||
38 | ---------------------------------------------------------------- | 32 | ---------------------------------------------------------------- |
39 | Alexandre Iooss (1): | 33 | Gavin Shan (2): |
40 | docs/system: arm: Add nRF boards description | 34 | virtio-mem: Correct default THP size for ARM64 |
35 | hw/arm/virt: Support for virtio-mem-pci | ||
41 | 36 | ||
42 | Peter Collingbourne (1): | 37 | Lucas Ramage (1): |
43 | target/arm: Implement MTE3 | 38 | docs/can: convert to restructuredText |
44 | 39 | ||
45 | Peter Maydell (55): | 40 | Marc Zyngier (7): |
46 | hw/acpi: Provide stub version of acpi_ghes_record_errors() | 41 | hw/arm/virt: KVM: Enable PAuth when supported by the host |
47 | hw/acpi: Provide function acpi_ghes_present() | 42 | hw/arm/virt: Add a control for the the highmem PCIe MMIO |
48 | target/arm: Use acpi_ghes_present() to see if we report ACPI memory errors | 43 | hw/arm/virt: Add a control for the the highmem redistributors |
49 | docs/system/arm: Document which architecture extensions we emulate | 44 | hw/arm/virt: Honor highmem setting when computing the memory map |
50 | target/arm/translate-vfp.c: Whitespace fixes | 45 | hw/arm/virt: Use the PA range to compute the memory map |
51 | target/arm: Handle FPU being disabled in FPCXT_NS accesses | 46 | hw/arm/virt: Disable highmem devices that don't fit in the PA range |
52 | target/arm: Don't NOCP fault for FPCXT_NS accesses | 47 | hw/arm/virt: Drop superfluous checks against highmem |
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 | ||
101 | 48 | ||
102 | docs/system/arm/emulation.rst | 103 ++++ | 49 | Patrick Venture (1): |
103 | docs/system/arm/nrf.rst | 51 ++ | 50 | hw/arm: kudo add lm75s behind bus 1 switch at 75 |
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 | ||
135 | 51 | ||
52 | Peter Maydell (13): | ||
53 | hw/intc/arm_gicv3_its: Fix event ID bounds checks | ||
54 | hw/intc/arm_gicv3_its: Convert int ID check to num_intids convention | ||
55 | hw/intc/arm_gicv3_its: Fix handling of process_its_cmd() return value | ||
56 | hw/intc/arm_gicv3_its: Don't use data if reading command failed | ||
57 | hw/intc/arm_gicv3_its: Use enum for return value of process_* functions | ||
58 | hw/intc/arm_gicv3_its: Fix return codes in process_its_cmd() | ||
59 | hw/intc/arm_gicv3_its: Refactor process_its_cmd() to reduce nesting | ||
60 | hw/intc/arm_gicv3_its: Fix return codes in process_mapti() | ||
61 | hw/intc/arm_gicv3_its: Fix return codes in process_mapc() | ||
62 | hw/intc/arm_gicv3_its: Fix return codes in process_mapd() | ||
63 | hw/intc/arm_gicv3_its: Factor out "find address of table entry" code | ||
64 | hw/intc/arm_gicv3_its: Check indexes before use, not after | ||
65 | hw/intc/arm_gicv3_its: Range-check ICID before indexing into collection table | ||
66 | |||
67 | Petr Pavlu (2): | ||
68 | hw/intc/arm_gic: Implement read of GICC_IIDR | ||
69 | hw/intc/arm_gic: Allow reset of the running priority | ||
70 | |||
71 | Philippe Mathieu-Daudé (4): | ||
72 | hw: Move MARVELL_88W8618 Kconfig from audio/ to arm/ | ||
73 | hw/arm/musicpal: Fix coding style of code related to MV88W8618 device | ||
74 | hw/net: Move MV88W8618 network device out of hw/arm/ directory | ||
75 | hw/intc/arm_gicv3: Check for !MEMTX_OK instead of MEMTX_ERROR | ||
76 | |||
77 | Troy Lee (2): | ||
78 | hw/misc/aspeed_i3c.c: Introduce a dummy AST2600 I3C model. | ||
79 | hw/arm/aspeed: Add the i3c device to the AST2600 SoC | ||
80 | |||
81 | Yanan Wang (6): | ||
82 | hw/arm/virt: Support CPU cluster on ARM virt machine | ||
83 | hw/arm/virt: Support cluster level in DT cpu-map | ||
84 | hw/acpi/aml-build: Improve scalability of PPTT generation | ||
85 | tests/acpi/bios-tables-test: Allow changes to virt/PPTT file | ||
86 | hw/acpi/aml-build: Support cluster level in PPTT generation | ||
87 | tests/acpi/bios-table-test: Update expected virt/PPTT file | ||
88 | |||
89 | docs/system/arm/cpu-features.rst | 4 - | ||
90 | docs/system/device-emulation.rst | 1 + | ||
91 | docs/{can.txt => system/devices/can.rst} | 90 +++--- | ||
92 | include/hw/arm/aspeed_soc.h | 3 + | ||
93 | include/hw/arm/virt.h | 5 +- | ||
94 | include/hw/misc/aspeed_i3c.h | 48 +++ | ||
95 | include/hw/net/mv88w8618_eth.h | 12 + | ||
96 | target/arm/cpu.h | 1 + | ||
97 | hw/acpi/aml-build.c | 68 +++-- | ||
98 | hw/arm/aspeed_ast2600.c | 16 + | ||
99 | hw/arm/musicpal.c | 381 +----------------------- | ||
100 | hw/arm/npcm7xx_boards.c | 10 +- | ||
101 | hw/arm/virt-acpi-build.c | 10 +- | ||
102 | hw/arm/virt.c | 184 ++++++++++-- | ||
103 | hw/intc/arm_gic.c | 11 + | ||
104 | hw/intc/arm_gicv3_its.c | 492 ++++++++++++++----------------- | ||
105 | hw/intc/arm_gicv3_redist.c | 4 +- | ||
106 | hw/misc/aspeed_i3c.c | 384 ++++++++++++++++++++++++ | ||
107 | hw/net/mv88w8618_eth.c | 403 +++++++++++++++++++++++++ | ||
108 | hw/virtio/virtio-mem.c | 36 ++- | ||
109 | target/arm/cpu.c | 16 +- | ||
110 | target/arm/cpu64.c | 31 +- | ||
111 | target/arm/kvm64.c | 21 ++ | ||
112 | MAINTAINERS | 2 + | ||
113 | hw/arm/Kconfig | 4 + | ||
114 | hw/audio/Kconfig | 3 - | ||
115 | hw/misc/meson.build | 1 + | ||
116 | hw/misc/trace-events | 6 + | ||
117 | hw/net/meson.build | 1 + | ||
118 | qemu-options.hx | 10 + | ||
119 | tests/data/acpi/virt/PPTT | Bin 76 -> 96 bytes | ||
120 | 31 files changed, 1476 insertions(+), 782 deletions(-) | ||
121 | rename docs/{can.txt => system/devices/can.rst} (68%) | ||
122 | create mode 100644 include/hw/misc/aspeed_i3c.h | ||
123 | create mode 100644 include/hw/net/mv88w8618_eth.h | ||
124 | create mode 100644 hw/misc/aspeed_i3c.c | ||
125 | create mode 100644 hw/net/mv88w8618_eth.c | ||
126 | diff view generated by jsdifflib |