1
Squashed in a trivial fix for 32-bit hosts:
1
v1->v2: add system/index to docs/index.rst
2
v2->v3: fix format string issues for OSX
3
v3->v4: actually fix format string issues, somehow
4
I failed to actually put the change into git :-(
2
5
3
--- a/target/arm/mve_helper.c
6
The following changes since commit b7c359c748a2e3ccb97a184b9739feb2cd48de2f:
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
7
15
-- PMM
8
Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-5.0-pull-request' into staging (2020-01-23 14:38:43 +0000)
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)
20
9
21
are available in the Git repository at:
10
are available in the Git repository at:
22
11
23
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210624
12
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20200123-4
24
13
25
for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee:
14
for you to fetch changes up to e9d20b55b2e4c8400143554f0e83e4e1fcb9bd0f:
26
15
27
docs/system: arm: Add nRF boards description (2021-06-24 14:58:48 +0100)
16
hw/arm/exynos4210: Connect serial port DMA busy signals with pl330 (2020-01-23 16:34:15 +0000)
28
17
29
----------------------------------------------------------------
18
----------------------------------------------------------------
30
target-arm queue:
19
target-arm queue:
31
* Don't require 'virt' board to be compiled in for ACPI GHES code
20
* fix bug in PAuth emulation
32
* docs: Document which architecture extensions we emulate
21
* add PMU to Cortex-R5, Cortex-R5F
33
* Fix bugs in M-profile FPCXT_NS accesses
22
* qemu-nbd: Convert documentation to rST
34
* First slice of MVE patches
23
* qemu-block-drivers: Convert documentation to rST
35
* Implement MTE3
24
* Fix Exynos4210 UART DMA support
36
* docs/system: arm: Add nRF boards description
25
* Various minor code cleanups
37
26
38
----------------------------------------------------------------
27
----------------------------------------------------------------
39
Alexandre Iooss (1):
28
Andrew Jones (1):
40
docs/system: arm: Add nRF boards description
29
target/arm/arch_dump: Add SVE notes
41
30
42
Peter Collingbourne (1):
31
Clement Deschamps (1):
43
target/arm: Implement MTE3
32
target/arm: add PMU feature to cortex-r5 and cortex-r5f
44
33
45
Peter Maydell (55):
34
Guenter Roeck (8):
46
hw/acpi: Provide stub version of acpi_ghes_record_errors()
35
dma/pl330: Convert to support tracing
47
hw/acpi: Provide function acpi_ghes_present()
36
hw/core/or-irq: Increase limit of or-lines to 48
48
target/arm: Use acpi_ghes_present() to see if we report ACPI memory errors
37
hw/arm/exynos4210: Fix DMA initialization
49
docs/system/arm: Document which architecture extensions we emulate
38
hw/char/exynos4210_uart: Convert to support tracing
50
target/arm/translate-vfp.c: Whitespace fixes
39
hw/char/exynos4210_uart: Implement post_load function
51
target/arm: Handle FPU being disabled in FPCXT_NS accesses
40
hw/char/exynos4210_uart: Implement Rx FIFO level triggers and timeouts
52
target/arm: Don't NOCP fault for FPCXT_NS accesses
41
hw/char/exynos4210_uart: Add receive DMA support
53
target/arm: Handle writeback in VLDR/VSTR sysreg with no memory access
42
hw/arm/exynos4210: Connect serial port DMA busy signals with pl330
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
43
102
docs/system/arm/emulation.rst | 103 ++++
44
Keqian Zhu (2):
103
docs/system/arm/nrf.rst | 51 ++
45
hw/acpi: Remove extra indent in ACPI GED hotplug cb
104
docs/system/target-arm.rst | 7 +
46
hw/arm: Use helper function to trigger hotplug handler plug
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
47
48
Peter Maydell (3):
49
qemu-nbd: Convert invocation documentation to rST
50
docs: Create stub system manual
51
qemu-block-drivers: Convert to rST
52
53
Philippe Mathieu-Daudé (1):
54
hw/misc/stm32f4xx_syscfg: Fix copy/paste error
55
56
Richard Henderson (3):
57
tests/tcg/aarch64: Fix compilation parameters for pauth-%
58
tests/tcg/aarch64: Add pauth-3
59
tests/tcg/aarch64: Add pauth-4
60
61
Vincent Dehors (1):
62
target/arm: Fix PAuth sbox functions
63
64
Makefile | 37 +-
65
tests/tcg/aarch64/Makefile.softmmu-target | 5 +-
66
tests/tcg/aarch64/Makefile.target | 3 +-
67
include/elf.h | 1 +
68
include/hw/arm/exynos4210.h | 4 +
69
include/hw/or-irq.h | 2 +-
70
target/arm/cpu.h | 25 +
71
hw/acpi/generic_event_device.c | 2 +-
72
hw/arm/exynos4210.c | 77 ++-
73
hw/arm/virt.c | 6 +-
74
hw/char/exynos4210_uart.c | 245 +++++---
75
hw/dma/pl330.c | 88 +--
76
hw/misc/stm32f4xx_syscfg.c | 2 +-
77
target/arm/arch_dump.c | 124 +++-
78
target/arm/cpu.c | 1 +
79
target/arm/kvm64.c | 24 -
80
target/arm/pauth_helper.c | 4 +-
81
tests/tcg/aarch64/pauth-1.c | 2 -
82
tests/tcg/aarch64/pauth-2.c | 2 -
83
tests/tcg/aarch64/pauth-4.c | 25 +
84
tests/tcg/aarch64/system/pauth-3.c | 40 ++
85
MAINTAINERS | 1 +
86
docs/index.html.in | 1 +
87
docs/index.rst | 2 +-
88
docs/interop/conf.py | 4 +-
89
docs/interop/index.rst | 1 +
90
docs/interop/qemu-nbd.rst | 263 ++++++++
91
docs/interop/qemu-option-trace.rst.inc | 30 +
92
docs/qemu-block-drivers.texi | 889 ---------------------------
93
docs/system/conf.py | 22 +
94
docs/system/index.rst | 17 +
95
docs/system/qemu-block-drivers.rst | 985 ++++++++++++++++++++++++++++++
96
hw/char/trace-events | 20 +
97
hw/dma/trace-events | 24 +
98
qemu-doc.texi | 18 -
99
qemu-nbd.texi | 214 -------
100
qemu-option-trace.texi | 4 +
101
qemu-options.hx | 2 +-
102
38 files changed, 1898 insertions(+), 1318 deletions(-)
103
create mode 100644 tests/tcg/aarch64/pauth-4.c
104
create mode 100644 tests/tcg/aarch64/system/pauth-3.c
105
create mode 100644 docs/interop/qemu-nbd.rst
106
create mode 100644 docs/interop/qemu-option-trace.rst.inc
107
delete mode 100644 docs/qemu-block-drivers.texi
108
create mode 100644 docs/system/conf.py
109
create mode 100644 docs/system/index.rst
110
create mode 100644 docs/system/qemu-block-drivers.rst
111
delete mode 100644 qemu-nbd.texi
112
diff view generated by jsdifflib