1 | Last arm patches for rc3... | 1 | Squashed in a trivial fix for 32-bit hosts: |
---|---|---|---|
2 | 2 | ||
3 | thanks | 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 | |||
4 | -- PMM | 15 | -- PMM |
5 | 16 | ||
6 | The following changes since commit 72138f9bf5d8c316043b0d2cc7a674f70930cf95: | 17 | The following changes since commit 53f306f316549d20c76886903181413d20842423: |
7 | 18 | ||
8 | Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2018-11-26 11:46:04 +0000) | 19 | Merge remote-tracking branch 'remotes/ehabkost-gl/tags/x86-next-pull-request' into staging (2021-06-21 11:26:04 +0100) |
9 | 20 | ||
10 | are available in the Git repository at: | 21 | are available in the Git repository at: |
11 | 22 | ||
12 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20181126 | 23 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210624 |
13 | 24 | ||
14 | for you to fetch changes up to 58102ce7fbb2362aa53984aabcf684d164da2d9d: | 25 | for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee: |
15 | 26 | ||
16 | net: cadence_gem: Remove incorrect assert() (2018-11-26 13:41:42 +0000) | 27 | docs/system: arm: Add nRF boards description (2021-06-24 14:58:48 +0100) |
17 | 28 | ||
18 | ---------------------------------------------------------------- | 29 | ---------------------------------------------------------------- |
19 | target-arm queue: | 30 | target-arm queue: |
20 | * some updates to MAINTAINERS file entries | 31 | * Don't require 'virt' board to be compiled in for ACPI GHES code |
21 | * cadence_gem: Remove an incorrect assert() | 32 | * docs: Document which architecture extensions we emulate |
33 | * Fix bugs in M-profile FPCXT_NS accesses | ||
34 | * First slice of MVE patches | ||
35 | * Implement MTE3 | ||
36 | * docs/system: arm: Add nRF boards description | ||
22 | 37 | ||
23 | ---------------------------------------------------------------- | 38 | ---------------------------------------------------------------- |
24 | Edgar E. Iglesias (1): | 39 | Alexandre Iooss (1): |
25 | net: cadence_gem: Remove incorrect assert() | 40 | docs/system: arm: Add nRF boards description |
26 | 41 | ||
27 | Eric Auger (1): | 42 | Peter Collingbourne (1): |
28 | MAINTAINERS: Add an ARM SMMU section | 43 | target/arm: Implement MTE3 |
29 | 44 | ||
30 | Thomas Huth (1): | 45 | Peter Maydell (55): |
31 | MAINTAINERS: Assign some more files in the hw/arm/ directory | 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 | ||
32 | 101 | ||
33 | hw/net/cadence_gem.c | 1 - | 102 | docs/system/arm/emulation.rst | 103 ++++ |
34 | MAINTAINERS | 23 +++++++++++++++++++++++ | 103 | docs/system/arm/nrf.rst | 51 ++ |
35 | 2 files changed, 23 insertions(+), 1 deletion(-) | 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 | ||
36 | 135 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Thomas Huth <thuth@redhat.com> | ||
2 | 1 | ||
3 | I apparently missed some more files and even a complete machine (the | ||
4 | "imx25-pdk") in my previous patch... but now we should hopefully have | ||
5 | a completely coverage for all available ARM boards. | ||
6 | |||
7 | Fixes: 95a5db3ae5698b49c63144610ad02913e780c828 | ||
8 | Signed-off-by: Thomas Huth <thuth@redhat.com> | ||
9 | Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> | ||
10 | Message-id: 1542782568-20059-1-git-send-email-thuth@redhat.com | ||
11 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
12 | --- | ||
13 | MAINTAINERS | 16 ++++++++++++++++ | ||
14 | 1 file changed, 16 insertions(+) | ||
15 | |||
16 | diff --git a/MAINTAINERS b/MAINTAINERS | ||
17 | index XXXXXXX..XXXXXXX 100644 | ||
18 | --- a/MAINTAINERS | ||
19 | +++ b/MAINTAINERS | ||
20 | @@ -XXX,XX +XXX,XX @@ L: qemu-arm@nongnu.org | ||
21 | S: Odd Fixes | ||
22 | F: hw/arm/gumstix.c | ||
23 | |||
24 | +i.MX25 PDK | ||
25 | +M: Peter Maydell <peter.maydell@linaro.org> | ||
26 | +R: Jean-Christophe Dubois <jcd@tribudubois.net> | ||
27 | +L: qemu-arm@nongnu.org | ||
28 | +S: Odd Fixes | ||
29 | +F: hw/arm/fsl-imx25.c | ||
30 | +F: hw/arm/imx25_pdk.c | ||
31 | +F: hw/misc/imx25_ccm.c | ||
32 | +F: include/hw/arm/fsl-imx25.h | ||
33 | +F: include/hw/misc/imx25_ccm.h | ||
34 | + | ||
35 | i.MX31 (kzm) | ||
36 | M: Peter Chubb <peter.chubb@nicta.com.au> | ||
37 | M: Peter Maydell <peter.maydell@linaro.org> | ||
38 | @@ -XXX,XX +XXX,XX @@ R: Andrew Baumann <Andrew.Baumann@microsoft.com> | ||
39 | R: Philippe Mathieu-Daudé <f4bug@amsat.org> | ||
40 | L: qemu-arm@nongnu.org | ||
41 | S: Odd Fixes | ||
42 | +F: hw/arm/raspi.c | ||
43 | F: hw/arm/raspi_platform.h | ||
44 | F: hw/*/bcm283* | ||
45 | F: include/hw/arm/raspi* | ||
46 | @@ -XXX,XX +XXX,XX @@ F: hw/arm/spitz.c | ||
47 | F: hw/arm/tosa.c | ||
48 | F: hw/arm/z2.c | ||
49 | F: hw/*/pxa2xx* | ||
50 | +F: hw/display/tc6393xb.c | ||
51 | +F: hw/gpio/max7310.c | ||
52 | +F: hw/gpio/zaurus.c | ||
53 | F: hw/misc/mst_fpga.c | ||
54 | F: include/hw/arm/pxa.h | ||
55 | +F: include/hw/arm/sharpsl.h | ||
56 | |||
57 | SABRELITE / i.MX6 | ||
58 | M: Peter Maydell <peter.maydell@linaro.org> | ||
59 | -- | ||
60 | 2.19.1 | ||
61 | |||
62 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Eric Auger <eric.auger@redhat.com> | ||
2 | 1 | ||
3 | Add a new ARM SMMU section and set Eric Auger as the maintainer | ||
4 | for ARM SMMU emulation sources. | ||
5 | |||
6 | Signed-off-by: Eric Auger <eric.auger@redhat.com> | ||
7 | Message-id: 20181122180143.14237-1-eric.auger@redhat.com | ||
8 | Suggested-by: Peter Maydell <peter.maydell@linaro.org> | ||
9 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
10 | --- | ||
11 | MAINTAINERS | 7 +++++++ | ||
12 | 1 file changed, 7 insertions(+) | ||
13 | |||
14 | diff --git a/MAINTAINERS b/MAINTAINERS | ||
15 | index XXXXXXX..XXXXXXX 100644 | ||
16 | --- a/MAINTAINERS | ||
17 | +++ b/MAINTAINERS | ||
18 | @@ -XXX,XX +XXX,XX @@ F: disas/arm.c | ||
19 | F: disas/arm-a64.cc | ||
20 | F: disas/libvixl/ | ||
21 | |||
22 | +ARM SMMU | ||
23 | +M: Eric Auger <eric.auger@redhat.com> | ||
24 | +L: qemu-arm@nongnu.org | ||
25 | +S: Maintained | ||
26 | +F: hw/arm/smmu* | ||
27 | +F: include/hw/arm/smmu* | ||
28 | + | ||
29 | CRIS | ||
30 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> | ||
31 | S: Maintained | ||
32 | -- | ||
33 | 2.19.1 | ||
34 | |||
35 | diff view generated by jsdifflib |