1 | v2: added Property array terminator (which caused crashes on | 1 | Squashed in a trivial fix for 32-bit hosts: |
---|---|---|---|
2 | various non-x86 host architectures). | ||
3 | 2 | ||
4 | The following changes since commit ae3aa5da96f4ccf0c2a28851449d92db9fcfad71: | 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); \ | ||
5 | 14 | ||
6 | Merge remote-tracking branch 'remotes/berrange/tags/socket-next-pull-request' into staging (2020-05-21 16:47:28 +0100) | 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) | ||
7 | 20 | ||
8 | are available in the Git repository at: | 21 | are available in the Git repository at: |
9 | 22 | ||
10 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20200521-1 | 23 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210624 |
11 | 24 | ||
12 | for you to fetch changes up to fafe7229272f39500c14845bc7ea60a8504a5a20: | 25 | for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee: |
13 | 26 | ||
14 | linux-user/arm/signal.c: Drop TARGET_CONFIG_CPU_32 (2020-05-21 22:05:27 +0100) | 27 | docs/system: arm: Add nRF boards description (2021-06-24 14:58:48 +0100) |
15 | 28 | ||
16 | ---------------------------------------------------------------- | 29 | ---------------------------------------------------------------- |
17 | target-arm queue: | 30 | target-arm queue: |
18 | * tests/acceptance: Add a test for the canon-a1100 machine | 31 | * Don't require 'virt' board to be compiled in for ACPI GHES code |
19 | * docs/system: Document some of the Arm development boards | 32 | * docs: Document which architecture extensions we emulate |
20 | * linux-user: make BKPT insn cause SIGTRAP, not be a syscall | 33 | * Fix bugs in M-profile FPCXT_NS accesses |
21 | * target/arm: Remove unused GEN_NEON_INTEGER_OP macro | 34 | * First slice of MVE patches |
22 | * fsl-imx25, fsl-imx31, fsl-imx6, fsl-imx6ul, fsl-imx7: implement watchdog | 35 | * Implement MTE3 |
23 | * hw/arm: Use qemu_log_mask() instead of hw_error() in various places | 36 | * docs/system: arm: Add nRF boards description |
24 | * ARM: PL061: Introduce N_GPIOS | ||
25 | * target/arm: Improve clear_vec_high() usage | ||
26 | * target/arm: Allow user-mode code to write CPSR.E via MSR | ||
27 | * linux-user/arm: Reset CPSR_E when entering a signal handler | ||
28 | * linux-user/arm/signal.c: Drop TARGET_CONFIG_CPU_32 | ||
29 | 37 | ||
30 | ---------------------------------------------------------------- | 38 | ---------------------------------------------------------------- |
31 | Amanieu d'Antras (1): | 39 | Alexandre Iooss (1): |
32 | linux-user/arm: Reset CPSR_E when entering a signal handler | 40 | docs/system: arm: Add nRF boards description |
33 | 41 | ||
34 | Geert Uytterhoeven (1): | 42 | Peter Collingbourne (1): |
35 | ARM: PL061: Introduce N_GPIOS | 43 | target/arm: Implement MTE3 |
36 | 44 | ||
37 | Guenter Roeck (8): | 45 | Peter Maydell (55): |
38 | hw: Move i.MX watchdog driver to hw/watchdog | 46 | hw/acpi: Provide stub version of acpi_ghes_record_errors() |
39 | hw/watchdog: Implement full i.MX watchdog support | 47 | hw/acpi: Provide function acpi_ghes_present() |
40 | hw/arm/fsl-imx25: Wire up watchdog | 48 | target/arm: Use acpi_ghes_present() to see if we report ACPI memory errors |
41 | hw/arm/fsl-imx31: Wire up watchdog | 49 | docs/system/arm: Document which architecture extensions we emulate |
42 | hw/arm/fsl-imx6: Connect watchdog interrupts | 50 | target/arm/translate-vfp.c: Whitespace fixes |
43 | hw/arm/fsl-imx6ul: Connect watchdog interrupts | 51 | target/arm: Handle FPU being disabled in FPCXT_NS accesses |
44 | hw/arm/fsl-imx7: Instantiate various unimplemented devices | 52 | target/arm: Don't NOCP fault for FPCXT_NS accesses |
45 | hw/arm/fsl-imx7: Connect watchdog interrupts | 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 | ||
46 | 101 | ||
47 | Peter Maydell (12): | 102 | docs/system/arm/emulation.rst | 103 ++++ |
48 | docs/system: Add 'Arm' to the Integrator/CP document title | 103 | docs/system/arm/nrf.rst | 51 ++ |
49 | docs/system: Sort Arm board index into alphabetical order | 104 | docs/system/target-arm.rst | 7 + |
50 | docs/system: Document Arm Versatile Express boards | 105 | include/hw/acpi/ghes.h | 9 + |
51 | docs/system: Document the various MPS2 models | 106 | include/tcg/tcg-op.h | 8 + |
52 | docs/system: Document Musca boards | 107 | include/tcg/tcg.h | 1 - |
53 | linux-user/arm: BKPT should cause SIGTRAP, not be a syscall | 108 | target/arm/helper-mve.h | 357 +++++++++++++ |
54 | linux-user/arm: Remove bogus SVC 0xf0002 handling | 109 | target/arm/helper.h | 2 + |
55 | linux-user/arm: Handle invalid arm-specific syscalls correctly | 110 | target/arm/internals.h | 11 + |
56 | linux-user/arm: Fix identification of syscall numbers | 111 | target/arm/translate-a32.h | 3 + |
57 | target/arm: Remove unused GEN_NEON_INTEGER_OP macro | 112 | target/arm/translate.h | 10 + |
58 | target/arm: Allow user-mode code to write CPSR.E via MSR | 113 | target/arm/m-nocp.decode | 24 + |
59 | linux-user/arm/signal.c: Drop TARGET_CONFIG_CPU_32 | 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 | ||
60 | 135 | ||
61 | Philippe Mathieu-Daudé (4): | ||
62 | hw/arm/integratorcp: Replace hw_error() by qemu_log_mask() | ||
63 | hw/arm/pxa2xx: Replace hw_error() by qemu_log_mask() | ||
64 | hw/char/xilinx_uartlite: Replace hw_error() by qemu_log_mask() | ||
65 | hw/timer/exynos4210_mct: Replace hw_error() by qemu_log_mask() | ||
66 | |||
67 | Richard Henderson (2): | ||
68 | target/arm: Use tcg_gen_gvec_mov for clear_vec_high | ||
69 | target/arm: Use clear_vec_high more effectively | ||
70 | |||
71 | Thomas Huth (1): | ||
72 | tests/acceptance: Add a test for the canon-a1100 machine | ||
73 | |||
74 | docs/system/arm/integratorcp.rst | 4 +- | ||
75 | docs/system/arm/mps2.rst | 29 +++ | ||
76 | docs/system/arm/musca.rst | 31 +++ | ||
77 | docs/system/arm/vexpress.rst | 60 ++++++ | ||
78 | docs/system/target-arm.rst | 20 +- | ||
79 | include/hw/arm/fsl-imx25.h | 5 + | ||
80 | include/hw/arm/fsl-imx31.h | 4 + | ||
81 | include/hw/arm/fsl-imx6.h | 2 +- | ||
82 | include/hw/arm/fsl-imx6ul.h | 2 +- | ||
83 | include/hw/arm/fsl-imx7.h | 23 ++- | ||
84 | include/hw/misc/imx2_wdt.h | 33 ---- | ||
85 | include/hw/watchdog/wdt_imx2.h | 90 +++++++++ | ||
86 | target/arm/cpu.h | 2 +- | ||
87 | hw/arm/fsl-imx25.c | 10 + | ||
88 | hw/arm/fsl-imx31.c | 6 + | ||
89 | hw/arm/fsl-imx6.c | 9 + | ||
90 | hw/arm/fsl-imx6ul.c | 10 + | ||
91 | hw/arm/fsl-imx7.c | 35 ++++ | ||
92 | hw/arm/integratorcp.c | 23 ++- | ||
93 | hw/arm/pxa2xx_gpio.c | 7 +- | ||
94 | hw/char/xilinx_uartlite.c | 5 +- | ||
95 | hw/display/pxa2xx_lcd.c | 8 +- | ||
96 | hw/dma/pxa2xx_dma.c | 14 +- | ||
97 | hw/gpio/pl061.c | 12 +- | ||
98 | hw/misc/imx2_wdt.c | 90 --------- | ||
99 | hw/timer/exynos4210_mct.c | 12 +- | ||
100 | hw/watchdog/wdt_imx2.c | 304 +++++++++++++++++++++++++++++ | ||
101 | linux-user/arm/cpu_loop.c | 145 ++++++++------ | ||
102 | linux-user/arm/signal.c | 15 +- | ||
103 | target/arm/translate-a64.c | 63 +++--- | ||
104 | target/arm/translate.c | 23 --- | ||
105 | MAINTAINERS | 6 + | ||
106 | hw/arm/Kconfig | 5 + | ||
107 | hw/misc/Makefile.objs | 1 - | ||
108 | hw/watchdog/Kconfig | 3 + | ||
109 | hw/watchdog/Makefile.objs | 1 + | ||
110 | tests/acceptance/machine_arm_canona1100.py | 35 ++++ | ||
111 | 37 files changed, 855 insertions(+), 292 deletions(-) | ||
112 | create mode 100644 docs/system/arm/mps2.rst | ||
113 | create mode 100644 docs/system/arm/musca.rst | ||
114 | create mode 100644 docs/system/arm/vexpress.rst | ||
115 | delete mode 100644 include/hw/misc/imx2_wdt.h | ||
116 | create mode 100644 include/hw/watchdog/wdt_imx2.h | ||
117 | delete mode 100644 hw/misc/imx2_wdt.c | ||
118 | create mode 100644 hw/watchdog/wdt_imx2.c | ||
119 | create mode 100644 tests/acceptance/machine_arm_canona1100.py | ||
120 | diff view generated by jsdifflib |