1
no changes to v1, except adding the CVE identifier to one of the commit
1
Squashed in a trivial fix for 32-bit hosts:
2
messages.
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); \
3
14
4
-- PMM
15
-- PMM
5
16
6
The following changes since commit cf7ca7d5b9faca13f1f8e3ea92cfb2f741eb0c0e:
17
The following changes since commit 53f306f316549d20c76886903181413d20842423:
7
18
8
Merge remote-tracking branch 'remotes/stefanha-gitlab/tags/tracing-pull-request' into staging (2021-02-01 16:28:00 +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-20210203
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 fd8f71b95da86f530aae3d02a14b0ccd9e024772:
25
for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee:
15
26
16
hw/arm: Display CPU type in machine description (2021-02-03 10:15:51 +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
* hw/intc/arm_gic: Allow to use QTest without crashing
31
* Don't require 'virt' board to be compiled in for ACPI GHES code
21
* hw/char/exynos4210_uart: Fix buffer size reporting with FIFO disabled
32
* docs: Document which architecture extensions we emulate
22
* hw/char/exynos4210_uart: Fix missing call to report ready for input
33
* Fix bugs in M-profile FPCXT_NS accesses
23
* hw/arm/smmuv3: Fix addr_mask for range-based invalidation
34
* First slice of MVE patches
24
* hw/ssi/imx_spi: Fix various minor bugs
35
* Implement MTE3
25
* hw/intc/arm_gic: Fix interrupt ID in GICD_SGIR register
36
* docs/system: arm: Add nRF boards description
26
* hw/arm: Add missing Kconfig dependencies
27
* hw/arm: Display CPU type in machine description
28
37
29
----------------------------------------------------------------
38
----------------------------------------------------------------
30
Bin Meng (5):
39
Alexandre Iooss (1):
31
hw/ssi: imx_spi: Use a macro for number of chip selects supported
40
docs/system: arm: Add nRF boards description
32
hw/ssi: imx_spi: Remove imx_spi_update_irq() in imx_spi_reset()
33
hw/ssi: imx_spi: Round up the burst length to be multiple of 8
34
hw/ssi: imx_spi: Correct the burst length > 32 bit transfer logic
35
hw/ssi: imx_spi: Correct tx and rx fifo endianness
36
41
37
Iris Johnson (2):
42
Peter Collingbourne (1):
38
hw/char/exynos4210_uart: Fix buffer size reporting with FIFO disabled
43
target/arm: Implement MTE3
39
hw/char/exynos4210_uart: Fix missing call to report ready for input
40
44
41
Philippe Mathieu-Daudé (12):
45
Peter Maydell (55):
42
hw/intc/arm_gic: Allow to use QTest without crashing
46
hw/acpi: Provide stub version of acpi_ghes_record_errors()
43
hw/ssi: imx_spi: Remove pointless variable initialization
47
hw/acpi: Provide function acpi_ghes_present()
44
hw/ssi: imx_spi: Rework imx_spi_reset() to keep CONREG register value
48
target/arm: Use acpi_ghes_present() to see if we report ACPI memory errors
45
hw/ssi: imx_spi: Rework imx_spi_read() to handle block disabled
49
docs/system/arm: Document which architecture extensions we emulate
46
hw/ssi: imx_spi: Rework imx_spi_write() to handle block disabled
50
target/arm/translate-vfp.c: Whitespace fixes
47
hw/intc/arm_gic: Fix interrupt ID in GICD_SGIR register
51
target/arm: Handle FPU being disabled in FPCXT_NS accesses
48
hw/arm/stm32f405_soc: Add missing dependency on OR_IRQ
52
target/arm: Don't NOCP fault for FPCXT_NS accesses
49
hw/arm/exynos4210: Add missing dependency on OR_IRQ
53
target/arm: Handle writeback in VLDR/VSTR sysreg with no memory access
50
hw/arm/xlnx-versal: Versal SoC requires ZDMA
54
target/arm: Factor FP context update code out into helper function
51
hw/arm/xlnx-versal: Versal SoC requires ZynqMP peripherals
55
target/arm: Split vfp_access_check() into A and M versions
52
hw/net/can: ZynqMP CAN device requires PTIMER
56
target/arm: Handle FPU check for FPCXT_NS insns via vfp_access_check_m()
53
hw/arm: Display CPU type in machine description
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
54
101
55
Xuzhou Cheng (1):
102
docs/system/arm/emulation.rst | 103 ++++
56
hw/ssi: imx_spi: Disable chip selects when controller is disabled
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
57
135
58
Zenghui Yu (1):
59
hw/arm/smmuv3: Fix addr_mask for range-based invalidation
60
61
include/hw/ssi/imx_spi.h | 5 +-
62
hw/arm/digic_boards.c | 2 +-
63
hw/arm/microbit.c | 2 +-
64
hw/arm/netduino2.c | 2 +-
65
hw/arm/netduinoplus2.c | 2 +-
66
hw/arm/orangepi.c | 2 +-
67
hw/arm/smmuv3.c | 4 +-
68
hw/arm/stellaris.c | 4 +-
69
hw/char/exynos4210_uart.c | 7 ++-
70
hw/intc/arm_gic.c | 5 +-
71
hw/ssi/imx_spi.c | 153 +++++++++++++++++++++++++++++-----------------
72
hw/Kconfig | 1 +
73
hw/arm/Kconfig | 5 ++
74
hw/dma/Kconfig | 3 +
75
hw/dma/meson.build | 2 +-
76
15 files changed, 130 insertions(+), 69 deletions(-)
77
diff view generated by jsdifflib