1
For some reason the xilinx can bus patches built in my local config
1
Squashed in a trivial fix for 32-bit hosts:
2
but not in the merge-test ones; dropped those.
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 a68694cd1f3e5448cca814ff39b871f9ebd71ed5:
17
The following changes since commit 53f306f316549d20c76886903181413d20842423:
7
18
8
Merge remote-tracking branch 'remotes/philmd-gitlab/tags/edk2-next-20200914' into staging (2020-09-14 12:18:58 +0100)
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-20200914-1
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 4fe986dd4480308ecf07200cfbd3c3d494a0f639:
25
for you to fetch changes up to 90a76c6316cfe6416fc33814a838fb3928f746ee:
15
26
16
tests/acceptance: console boot tests for quanta-gsj (2020-09-14 14:24:59 +0100)
27
docs/system: arm: Add nRF boards description (2021-06-24 14:58:48 +0100)
17
28
18
----------------------------------------------------------------
29
----------------------------------------------------------------
19
* hw/misc/a9scu: Do not allow invalid CPU count
30
target-arm queue:
20
* hw/misc/a9scu: Minor cleanups
31
* Don't require 'virt' board to be compiled in for ACPI GHES code
21
* hw/timer/armv7m_systick: assert that board code set system_clock_scale
32
* docs: Document which architecture extensions we emulate
22
* decodetree: Improve identifier matching
33
* Fix bugs in M-profile FPCXT_NS accesses
23
* target/arm: Clean up neon fp insn size field decode
34
* First slice of MVE patches
24
* target/arm: Remove KVM support for 32-bit Arm hosts
35
* Implement MTE3
25
* hw/arm/mps2: New board models mps2-an386, mps2-an500
36
* docs/system: arm: Add nRF boards description
26
* Deprecate Unicore32 port
27
* Deprecate lm32 port
28
* target/arm: Count PMU events when MDCR.SPME is set
29
* hw/arm: versal-virt: Correct the tx/rx GEM clocks
30
* New Nuvoton iBMC board models npcm750-evb, quanta-gsj
31
37
32
----------------------------------------------------------------
38
----------------------------------------------------------------
33
Aaron Lindsay (1):
39
Alexandre Iooss (1):
34
target/arm: Count PMU events when MDCR.SPME is set
40
docs/system: arm: Add nRF boards description
35
41
36
Edgar E. Iglesias (1):
42
Peter Collingbourne (1):
37
hw/arm: versal-virt: Correct the tx/rx GEM clocks
43
target/arm: Implement MTE3
38
44
39
Havard Skinnemoen (14):
45
Peter Maydell (55):
40
hw/misc: Add NPCM7xx System Global Control Registers device model
46
hw/acpi: Provide stub version of acpi_ghes_record_errors()
41
hw/misc: Add NPCM7xx Clock Controller device model
47
hw/acpi: Provide function acpi_ghes_present()
42
hw/timer: Add NPCM7xx Timer device model
48
target/arm: Use acpi_ghes_present() to see if we report ACPI memory errors
43
hw/arm: Add NPCM730 and NPCM750 SoC models
49
docs/system/arm: Document which architecture extensions we emulate
44
hw/arm: Add two NPCM7xx-based machines
50
target/arm/translate-vfp.c: Whitespace fixes
45
roms: Add virtual Boot ROM for NPCM7xx SoCs
51
target/arm: Handle FPU being disabled in FPCXT_NS accesses
46
hw/arm: Load -bios image as a boot ROM for npcm7xx
52
target/arm: Don't NOCP fault for FPCXT_NS accesses
47
hw/nvram: NPCM7xx OTP device model
53
target/arm: Handle writeback in VLDR/VSTR sysreg with no memory access
48
hw/mem: Stubbed out NPCM7xx Memory Controller model
54
target/arm: Factor FP context update code out into helper function
49
hw/ssi: NPCM7xx Flash Interface Unit device model
55
target/arm: Split vfp_access_check() into A and M versions
50
hw/arm: Wire up BMC boot flash for npcm750-evb and quanta-gsj
56
target/arm: Handle FPU check for FPCXT_NS insns via vfp_access_check_m()
51
hw/arm/npcm7xx: add board setup stub for CPU and UART clocks
57
target/arm: Implement MVE VLDR/VSTR (non-widening forms)
52
docs/system: Add Nuvoton machine documentation
58
target/arm: Implement widening/narrowing MVE VLDR/VSTR insns
53
tests/acceptance: console boot tests for quanta-gsj
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
Peter Maydell (11):
102
docs/system/arm/emulation.rst | 103 ++++
56
hw/timer/armv7m_systick: assert that board code set system_clock_scale
103
docs/system/arm/nrf.rst | 51 ++
57
target/arm: Convert Neon 3-same-fp size field to MO_* in decode
104
docs/system/target-arm.rst | 7 +
58
target/arm: Convert Neon VCVT fp size field to MO_* in decode
105
include/hw/acpi/ghes.h | 9 +
59
target/arm: Convert VCMLA, VCADD size field to MO_* in decode
106
include/tcg/tcg-op.h | 8 +
60
target/arm: Remove KVM support for 32-bit Arm hosts
107
include/tcg/tcg.h | 1 -
61
target/arm: Remove no-longer-reachable 32-bit KVM code
108
target/arm/helper-mve.h | 357 +++++++++++++
62
hw/arm/mps2: New board model mps2-an386
109
target/arm/helper.h | 2 +
63
hw/arm/mps2: New board model mps2-an500
110
target/arm/internals.h | 11 +
64
docs/system/arm/mps2.rst: Make board list consistent
111
target/arm/translate-a32.h | 3 +
65
Deprecate Unicore32 port
112
target/arm/translate.h | 10 +
66
Deprecate lm32 port
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
67
135
68
Philippe Mathieu-Daudé (4):
69
hw/misc/a9scu: Do not allow invalid CPU count
70
hw/misc/a9scu: Simplify setting MemoryRegionOps::valid fields
71
hw/misc/a9scu: Simplify setting MemoryRegionOps::impl fields
72
hw/misc/a9scu: Report unimplemented accesses with qemu_log_mask(UNIMP)
73
74
Richard Henderson (1):
75
decodetree: Improve identifier matching
76
77
docs/system/arm/mps2.rst | 20 +-
78
docs/system/arm/nuvoton.rst | 92 +++++
79
docs/system/deprecated.rst | 32 +-
80
docs/system/target-arm.rst | 1 +
81
configure | 2 +-
82
default-configs/arm-softmmu.mak | 1 +
83
include/hw/arm/npcm7xx.h | 112 +++++++
84
include/hw/mem/npcm7xx_mc.h | 36 ++
85
include/hw/misc/npcm7xx_clk.h | 48 +++
86
include/hw/misc/npcm7xx_gcr.h | 43 +++
87
include/hw/nvram/npcm7xx_otp.h | 79 +++++
88
include/hw/ssi/npcm7xx_fiu.h | 73 ++++
89
include/hw/timer/npcm7xx_timer.h | 78 +++++
90
target/arm/kvm-consts.h | 7 -
91
target/arm/kvm_arm.h | 6 -
92
target/arm/neon-dp.decode | 18 +-
93
target/arm/neon-shared.decode | 18 +-
94
tests/decode/succ_ident1.decode | 7 +
95
hw/arm/mps2.c | 97 +++++-
96
hw/arm/npcm7xx.c | 532 +++++++++++++++++++++++++++++
97
hw/arm/npcm7xx_boards.c | 197 +++++++++++
98
hw/arm/xlnx-versal-virt.c | 2 +-
99
hw/mem/npcm7xx_mc.c | 84 +++++
100
hw/misc/a9scu.c | 59 ++--
101
hw/misc/npcm7xx_clk.c | 266 +++++++++++++++
102
hw/misc/npcm7xx_gcr.c | 269 +++++++++++++++
103
hw/nvram/npcm7xx_otp.c | 440 ++++++++++++++++++++++++
104
hw/ssi/npcm7xx_fiu.c | 572 +++++++++++++++++++++++++++++++
105
hw/timer/armv7m_systick.c | 8 +
106
hw/timer/npcm7xx_timer.c | 543 ++++++++++++++++++++++++++++++
107
target/arm/cpu.c | 101 +++---
108
target/arm/helper.c | 2 +-
109
target/arm/kvm.c | 7 -
110
target/arm/kvm32.c | 595 ---------------------------------
111
.gitmodules | 3 +
112
MAINTAINERS | 10 +
113
hw/arm/Kconfig | 9 +
114
hw/arm/meson.build | 1 +
115
hw/mem/meson.build | 1 +
116
hw/misc/meson.build | 4 +
117
hw/misc/trace-events | 8 +
118
hw/nvram/meson.build | 1 +
119
hw/ssi/meson.build | 1 +
120
hw/ssi/trace-events | 11 +
121
hw/timer/meson.build | 1 +
122
hw/timer/trace-events | 5 +
123
pc-bios/README | 6 +
124
pc-bios/meson.build | 1 +
125
pc-bios/npcm7xx_bootrom.bin | Bin 0 -> 768 bytes
126
roms/Makefile | 7 +
127
roms/vbootrom | 1 +
128
scripts/decodetree.py | 46 ++-
129
target/arm/meson.build | 5 +-
130
target/arm/translate-neon.c.inc | 42 ++-
131
tests/acceptance/boot_linux_console.py | 83 +++++
132
55 files changed, 3910 insertions(+), 783 deletions(-)
133
create mode 100644 docs/system/arm/nuvoton.rst
134
create mode 100644 include/hw/arm/npcm7xx.h
135
create mode 100644 include/hw/mem/npcm7xx_mc.h
136
create mode 100644 include/hw/misc/npcm7xx_clk.h
137
create mode 100644 include/hw/misc/npcm7xx_gcr.h
138
create mode 100644 include/hw/nvram/npcm7xx_otp.h
139
create mode 100644 include/hw/ssi/npcm7xx_fiu.h
140
create mode 100644 include/hw/timer/npcm7xx_timer.h
141
create mode 100644 tests/decode/succ_ident1.decode
142
create mode 100644 hw/arm/npcm7xx.c
143
create mode 100644 hw/arm/npcm7xx_boards.c
144
create mode 100644 hw/mem/npcm7xx_mc.c
145
create mode 100644 hw/misc/npcm7xx_clk.c
146
create mode 100644 hw/misc/npcm7xx_gcr.c
147
create mode 100644 hw/nvram/npcm7xx_otp.c
148
create mode 100644 hw/ssi/npcm7xx_fiu.c
149
create mode 100644 hw/timer/npcm7xx_timer.c
150
delete mode 100644 target/arm/kvm32.c
151
create mode 100644 pc-bios/npcm7xx_bootrom.bin
152
create mode 160000 roms/vbootrom
153
diff view generated by jsdifflib