1
Massively slimmed down v2: MemTag broke bsd-user, and the npcm7xx
1
v2: dropped the npcm7xx ethernet device, whose test case
2
ethernet device failed 'make check' on big-endian hosts.
2
fails weirdly on the 'build-disabled' gitlab CI job:
3
https://gitlab.com/qemu-project/qemu/-/jobs/1034174731#L12
3
4
4
-- PMM
5
The following changes since commit 8ba4bca570ace1e60614a0808631a517cf5df67a:
5
6
6
The following changes since commit 83339e21d05c824ebc9131d644f25c23d0e41ecf:
7
Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2021-02-15 17:13:57 +0000)
7
8
Merge remote-tracking branch 'remotes/stefanha-gitlab/tags/block-pull-request' into staging (2021-02-10 15:42:20 +0000)
9
8
10
are available in the Git repository at:
9
are available in the Git repository at:
11
10
12
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210211-1
11
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210217
13
12
14
for you to fetch changes up to d3c1183ffeb71ca3a783eae3d7e1c51e71e8a621:
13
for you to fetch changes up to 59c7a187dd8bd8ef675768dd8af9de11528ea7e2:
15
14
16
target/arm: Correctly initialize MDCR_EL2.HPMN (2021-02-11 19:48:09 +0000)
15
MAINTAINERS: add myself maintainer for the clock framework (2021-02-16 14:16:17 +0000)
17
16
18
----------------------------------------------------------------
17
----------------------------------------------------------------
19
target-arm queue:
18
target-arm queue:
20
* Correctly initialize MDCR_EL2.HPMN
19
* Support ARMv8.5-MemTag for linux-user
21
* versal: Use nr_apu_cpus in favor of hard coding 2
20
* ncpm7xx: Support SMBus
22
* accel/tcg: Add URL of clang bug to comment about our workaround
21
* MAINTAINERS: add section for Clock framework
23
* Add support for FEAT_DIT, Data Independent Timing
24
* Remove GPIO from unimplemented NPCM7XX
25
* Fix SCR RES1 handling
26
* Don't migrate CPUARMState.features
27
22
28
----------------------------------------------------------------
23
----------------------------------------------------------------
29
Aaron Lindsay (1):
24
Hao Wu (5):
30
target/arm: Don't migrate CPUARMState.features
25
hw/i2c: Implement NPCM7XX SMBus Module Single Mode
26
hw/arm: Add I2C sensors for NPCM750 eval board
27
hw/arm: Add I2C sensors and EEPROM for GSJ machine
28
hw/i2c: Add a QTest for NPCM7XX SMBus Device
29
hw/i2c: Implement NPCM7XX SMBus Module FIFO Mode
31
30
32
Daniel Müller (1):
31
Luc Michel (1):
33
target/arm: Correctly initialize MDCR_EL2.HPMN
32
MAINTAINERS: add myself maintainer for the clock framework
34
33
35
Edgar E. Iglesias (1):
34
Richard Henderson (31):
36
hw/arm: versal: Use nr_apu_cpus in favor of hard coding 2
35
tcg: Introduce target-specific page data for user-only
36
linux-user: Introduce PAGE_ANON
37
exec: Use uintptr_t for guest_base
38
exec: Use uintptr_t in cpu_ldst.h
39
exec: Improve types for guest_addr_valid
40
linux-user: Check for overflow in access_ok
41
linux-user: Tidy VERIFY_READ/VERIFY_WRITE
42
bsd-user: Tidy VERIFY_READ/VERIFY_WRITE
43
linux-user: Do not use guest_addr_valid for h2g_valid
44
linux-user: Fix guest_addr_valid vs reserved_va
45
exec: Introduce cpu_untagged_addr
46
exec: Use cpu_untagged_addr in g2h; split out g2h_untagged
47
linux-user: Explicitly untag memory management syscalls
48
linux-user: Use guest_range_valid in access_ok
49
exec: Rename guest_{addr,range}_valid to *_untagged
50
linux-user: Use cpu_untagged_addr in access_ok; split out *_untagged
51
linux-user: Move lock_user et al out of line
52
linux-user: Fix types in uaccess.c
53
linux-user: Handle tags in lock_user/unlock_user
54
linux-user/aarch64: Implement PR_TAGGED_ADDR_ENABLE
55
target/arm: Improve gen_top_byte_ignore
56
target/arm: Use the proper TBI settings for linux-user
57
linux-user/aarch64: Implement PR_MTE_TCF and PR_MTE_TAG
58
linux-user/aarch64: Implement PROT_MTE
59
target/arm: Split out syndrome.h from internals.h
60
linux-user/aarch64: Pass syndrome to EXC_*_ABORT
61
linux-user/aarch64: Signal SEGV_MTESERR for sync tag check fault
62
linux-user/aarch64: Signal SEGV_MTEAERR for async tag check error
63
target/arm: Add allocation tag storage for user mode
64
target/arm: Enable MTE for user-only
65
tests/tcg/aarch64: Add mte smoke tests
37
66
38
Hao Wu (1):
67
docs/system/arm/nuvoton.rst | 2 +-
39
hw/arm: Remove GPIO from unimplemented NPCM7XX
68
bsd-user/qemu.h | 17 +-
69
include/exec/cpu-all.h | 47 +-
70
include/exec/cpu_ldst.h | 39 +-
71
include/exec/exec-all.h | 2 +-
72
include/hw/arm/npcm7xx.h | 2 +
73
include/hw/i2c/npcm7xx_smbus.h | 113 ++++
74
linux-user/aarch64/target_signal.h | 3 +
75
linux-user/aarch64/target_syscall.h | 13 +
76
linux-user/qemu.h | 76 +--
77
linux-user/syscall_defs.h | 1 +
78
target/arm/cpu-param.h | 3 +
79
target/arm/cpu.h | 32 +
80
target/arm/internals.h | 249 +-------
81
target/arm/syndrome.h | 273 +++++++++
82
tests/tcg/aarch64/mte.h | 60 ++
83
accel/tcg/translate-all.c | 32 +-
84
accel/tcg/user-exec.c | 51 +-
85
bsd-user/elfload.c | 2 +-
86
bsd-user/main.c | 8 +-
87
bsd-user/mmap.c | 23 +-
88
hw/arm/npcm7xx.c | 68 ++-
89
hw/arm/npcm7xx_boards.c | 46 ++
90
hw/i2c/npcm7xx_smbus.c | 1099 +++++++++++++++++++++++++++++++++++
91
linux-user/aarch64/cpu_loop.c | 38 +-
92
linux-user/elfload.c | 18 +-
93
linux-user/flatload.c | 2 +-
94
linux-user/hppa/cpu_loop.c | 39 +-
95
linux-user/i386/cpu_loop.c | 6 +-
96
linux-user/i386/signal.c | 5 +-
97
linux-user/main.c | 4 +-
98
linux-user/mmap.c | 88 +--
99
linux-user/ppc/signal.c | 4 +-
100
linux-user/syscall.c | 165 ++++--
101
linux-user/uaccess.c | 82 ++-
102
target/arm/cpu.c | 25 +-
103
target/arm/helper-a64.c | 4 +-
104
target/arm/mte_helper.c | 39 +-
105
target/arm/tlb_helper.c | 15 +-
106
target/arm/translate-a64.c | 25 +-
107
target/hppa/op_helper.c | 2 +-
108
target/i386/tcg/mem_helper.c | 2 +-
109
target/s390x/mem_helper.c | 4 +-
110
tests/qtest/npcm7xx_smbus-test.c | 495 ++++++++++++++++
111
tests/tcg/aarch64/mte-1.c | 28 +
112
tests/tcg/aarch64/mte-2.c | 45 ++
113
tests/tcg/aarch64/mte-3.c | 51 ++
114
tests/tcg/aarch64/mte-4.c | 45 ++
115
tests/tcg/aarch64/pauth-2.c | 1 -
116
MAINTAINERS | 11 +
117
hw/arm/Kconfig | 1 +
118
hw/i2c/meson.build | 1 +
119
hw/i2c/trace-events | 12 +
120
tests/qtest/meson.build | 1 +
121
tests/tcg/aarch64/Makefile.target | 6 +
122
tests/tcg/configure.sh | 4 +
123
56 files changed, 2976 insertions(+), 553 deletions(-)
124
create mode 100644 include/hw/i2c/npcm7xx_smbus.h
125
create mode 100644 target/arm/syndrome.h
126
create mode 100644 tests/tcg/aarch64/mte.h
127
create mode 100644 hw/i2c/npcm7xx_smbus.c
128
create mode 100644 tests/qtest/npcm7xx_smbus-test.c
129
create mode 100644 tests/tcg/aarch64/mte-1.c
130
create mode 100644 tests/tcg/aarch64/mte-2.c
131
create mode 100644 tests/tcg/aarch64/mte-3.c
132
create mode 100644 tests/tcg/aarch64/mte-4.c
40
133
41
Mike Nawrocki (1):
42
target/arm: Fix SCR RES1 handling
43
44
Peter Maydell (2):
45
arm: Update infocenter.arm.com URLs
46
accel/tcg: Add URL of clang bug to comment about our workaround
47
48
Rebecca Cran (4):
49
target/arm: Add support for FEAT_DIT, Data Independent Timing
50
target/arm: Support AA32 DIT by moving PSTATE_SS from cpsr into env->pstate
51
target/arm: Set ID_AA64PFR0.DIT and ID_PFR0.DIT to 1 for "max" AA64 CPU
52
target/arm: Set ID_PFR0.DIT to 1 for "max" 32-bit CPU
53
54
include/hw/dma/pl080.h | 7 ++--
55
include/hw/misc/arm_integrator_debug.h | 2 +-
56
include/hw/ssi/pl022.h | 5 ++-
57
target/arm/cpu.h | 17 ++++++++
58
target/arm/internals.h | 6 +++
59
accel/tcg/cpu-exec.c | 25 +++++++++---
60
hw/arm/aspeed_ast2600.c | 2 +-
61
hw/arm/musca.c | 4 +-
62
hw/arm/npcm7xx.c | 8 ----
63
hw/arm/xlnx-versal.c | 4 +-
64
hw/misc/arm_integrator_debug.c | 2 +-
65
hw/timer/arm_timer.c | 7 ++--
66
target/arm/cpu.c | 4 ++
67
target/arm/cpu64.c | 5 +++
68
target/arm/helper-a64.c | 27 +++++++++++--
69
target/arm/helper.c | 71 +++++++++++++++++++++++++++-------
70
target/arm/machine.c | 2 +-
71
target/arm/op_helper.c | 9 +----
72
target/arm/translate-a64.c | 12 ++++++
73
19 files changed, 164 insertions(+), 55 deletions(-)
74
diff view generated by jsdifflib