1 | v1->v2 changes: fix a clang warning about bitfields; | 1 | Squashed in a trivial fix for 32-bit hosts: |
---|---|---|---|
2 | drop a patch from Julia that I accidentally included | ||
3 | (it will likely be in a future series). | ||
4 | 2 | ||
5 | The following changes since commit a8d2b0685681e2f291faaa501efbbd76875f8ec8: | 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 | Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20190118' into staging (2019-01-18 16:56:15 +0000) | 15 | -- PMM |
16 | |||
17 | The following changes since commit 53f306f316549d20c76886903181413d20842423: | ||
18 | |||
19 | Merge remote-tracking branch 'remotes/ehabkost-gl/tags/x86-next-pull-request' into staging (2021-06-21 11:26:04 +0100) | ||
8 | 20 | ||
9 | are available in the Git repository at: | 21 | are available in the Git repository at: |
10 | 22 | ||
11 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20190121 | 23 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210624 |
12 | 24 | ||
13 | for you to fetch changes up to 0d4bfd7df809863b1f45fad35229fb9419527d06: | 25 | for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee: |
14 | 26 | ||
15 | target/arm: Implement PMSWINC (2019-01-21 10:38:56 +0000) | 27 | docs/system: arm: Add nRF boards description (2021-06-24 14:58:48 +0100) |
16 | 28 | ||
17 | ---------------------------------------------------------------- | 29 | ---------------------------------------------------------------- |
18 | target-arm queue: | 30 | target-arm queue: |
19 | * hw/char/stm32f2xx_usart: Do not update data register when device is disabled | 31 | * Don't require 'virt' board to be compiled in for ACPI GHES code |
20 | * hw/arm/virt-acpi-build: Set COHACC override flag in IORT SMMUv3 node | 32 | * docs: Document which architecture extensions we emulate |
21 | * target/arm: Allow Aarch32 exception return to switch from Mon->Hyp | 33 | * Fix bugs in M-profile FPCXT_NS accesses |
22 | * ftgmac100: implement the new MDIO interface on Aspeed SoC | 34 | * First slice of MVE patches |
23 | * implement the ARMv8.3-PAuth extension | 35 | * Implement MTE3 |
24 | * improve emulation of the ARM PMU | 36 | * docs/system: arm: Add nRF boards description |
25 | 37 | ||
26 | ---------------------------------------------------------------- | 38 | ---------------------------------------------------------------- |
27 | Aaron Lindsay (13): | 39 | Alexandre Iooss (1): |
28 | migration: Add post_save function to VMStateDescription | 40 | docs/system: arm: Add nRF boards description |
29 | target/arm: Reorganize PMCCNTR accesses | ||
30 | target/arm: Swap PMU values before/after migrations | ||
31 | target/arm: Filter cycle counter based on PMCCFILTR_EL0 | ||
32 | target/arm: Allow AArch32 access for PMCCFILTR | ||
33 | target/arm: Implement PMOVSSET | ||
34 | target/arm: Define FIELDs for ID_DFR0 | ||
35 | target/arm: Make PMCEID[01]_EL0 64 bit registers, add PMCEID[23] | ||
36 | target/arm: Add array for supported PMU events, generate PMCEID[01]_EL0 | ||
37 | target/arm: Finish implementation of PM[X]EVCNTR and PM[X]EVTYPER | ||
38 | target/arm: PMU: Add instruction and cycle events | ||
39 | target/arm: PMU: Set PMCR.N to 4 | ||
40 | target/arm: Implement PMSWINC | ||
41 | 41 | ||
42 | Alexander Graf (1): | 42 | Peter Collingbourne (1): |
43 | target/arm: Allow Aarch32 exception return to switch from Mon->Hyp | 43 | target/arm: Implement MTE3 |
44 | 44 | ||
45 | Cédric Le Goater (1): | 45 | Peter Maydell (55): |
46 | ftgmac100: implement the new MDIO interface on Aspeed SoC | 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 | ||
47 | 101 | ||
48 | Eric Auger (1): | 102 | docs/system/arm/emulation.rst | 103 ++++ |
49 | hw/arm/virt-acpi-build: Set COHACC override flag in IORT SMMUv3 node | 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 | ||
50 | 135 | ||
51 | Philippe Mathieu-Daudé (1): | ||
52 | hw/char/stm32f2xx_usart: Do not update data register when device is disabled | ||
53 | |||
54 | Richard Henderson (31): | ||
55 | target/arm: Add state for the ARMv8.3-PAuth extension | ||
56 | target/arm: Add SCTLR bits through ARMv8.5 | ||
57 | target/arm: Add PAuth active bit to tbflags | ||
58 | target/arm: Introduce raise_exception_ra | ||
59 | target/arm: Add PAuth helpers | ||
60 | target/arm: Decode PAuth within system hint space | ||
61 | target/arm: Rearrange decode in disas_data_proc_1src | ||
62 | target/arm: Decode PAuth within disas_data_proc_1src | ||
63 | target/arm: Decode PAuth within disas_data_proc_2src | ||
64 | target/arm: Move helper_exception_return to helper-a64.c | ||
65 | target/arm: Add new_pc argument to helper_exception_return | ||
66 | target/arm: Rearrange decode in disas_uncond_b_reg | ||
67 | target/arm: Decode PAuth within disas_uncond_b_reg | ||
68 | target/arm: Decode Load/store register (pac) | ||
69 | target/arm: Move cpu_mmu_index out of line | ||
70 | target/arm: Introduce arm_mmu_idx | ||
71 | target/arm: Introduce arm_stage1_mmu_idx | ||
72 | target/arm: Create ARMVAParameters and helpers | ||
73 | target/arm: Merge TBFLAG_AA_TB{0, 1} to TBII | ||
74 | target/arm: Export aa64_va_parameters to internals.h | ||
75 | target/arm: Add aa64_va_parameters_both | ||
76 | target/arm: Decode TBID from TCR | ||
77 | target/arm: Reuse aa64_va_parameters for setting tbflags | ||
78 | target/arm: Implement pauth_strip | ||
79 | target/arm: Implement pauth_auth | ||
80 | target/arm: Implement pauth_addpac | ||
81 | target/arm: Implement pauth_computepac | ||
82 | target/arm: Add PAuth system registers | ||
83 | target/arm: Enable PAuth for -cpu max | ||
84 | target/arm: Enable PAuth for user-only | ||
85 | target/arm: Tidy TBI handling in gen_a64_set_pc | ||
86 | |||
87 | target/arm/Makefile.objs | 1 + | ||
88 | include/hw/acpi/acpi-defs.h | 2 + | ||
89 | include/migration/vmstate.h | 1 + | ||
90 | target/arm/cpu.h | 244 +++++---- | ||
91 | target/arm/helper-a64.h | 14 + | ||
92 | target/arm/helper.h | 1 - | ||
93 | target/arm/internals.h | 77 +++ | ||
94 | target/arm/translate.h | 5 +- | ||
95 | hw/arm/virt-acpi-build.c | 1 + | ||
96 | hw/char/stm32f2xx_usart.c | 3 +- | ||
97 | hw/net/ftgmac100.c | 80 ++- | ||
98 | migration/vmstate.c | 13 +- | ||
99 | target/arm/cpu.c | 19 +- | ||
100 | target/arm/cpu64.c | 68 ++- | ||
101 | target/arm/helper-a64.c | 155 ++++++ | ||
102 | target/arm/helper.c | 1222 +++++++++++++++++++++++++++++++++---------- | ||
103 | target/arm/machine.c | 24 + | ||
104 | target/arm/op_helper.c | 174 +----- | ||
105 | target/arm/pauth_helper.c | 497 ++++++++++++++++++ | ||
106 | target/arm/translate-a64.c | 537 ++++++++++++++++--- | ||
107 | docs/devel/migration.rst | 9 +- | ||
108 | 21 files changed, 2515 insertions(+), 632 deletions(-) | ||
109 | create mode 100644 target/arm/pauth_helper.c | ||
110 | diff view generated by jsdifflib |