1
v2: drop pvpanic-pci patches.
1
v2: dropped the npcm7xx ethernet device, whose test case
2
fails weirdly on the 'build-disabled' gitlab CI job:
3
https://gitlab.com/qemu-project/qemu/-/jobs/1034174731#L12
2
4
3
The following changes since commit f1fcb6851aba6dd9838886dc179717a11e344a1c:
5
The following changes since commit 8ba4bca570ace1e60614a0808631a517cf5df67a:
4
6
5
Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2021-01-19' into staging (2021-01-19 11:57:07 +0000)
7
Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2021-02-15 17:13:57 +0000)
6
8
7
are available in the Git repository at:
9
are available in the Git repository at:
8
10
9
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210119-1
11
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210217
10
12
11
for you to fetch changes up to b93f4fbdc48283a39089469c44a5529d79dc40a8:
13
for you to fetch changes up to 59c7a187dd8bd8ef675768dd8af9de11528ea7e2:
12
14
13
docs: Build and install all the docs in a single manual (2021-01-19 15:45:14 +0000)
15
MAINTAINERS: add myself maintainer for the clock framework (2021-02-16 14:16:17 +0000)
14
16
15
----------------------------------------------------------------
17
----------------------------------------------------------------
16
target-arm queue:
18
target-arm queue:
17
* Implement IMPDEF pauth algorithm
19
* Support ARMv8.5-MemTag for linux-user
18
* Support ARMv8.4-SEL2
20
* ncpm7xx: Support SMBus
19
* Fix bug where we were truncating predicate vector lengths in SVE insns
21
* MAINTAINERS: add section for Clock framework
20
* npcm7xx_adc-test: Fix memleak in adc_qom_set
21
* target/arm/m_helper: Silence GCC 10 maybe-uninitialized error
22
* docs: Build and install all the docs in a single manual
23
22
24
----------------------------------------------------------------
23
----------------------------------------------------------------
25
Gan Qixin (1):
24
Hao Wu (5):
26
npcm7xx_adc-test: Fix memleak in adc_qom_set
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
27
30
28
Peter Maydell (1):
31
Luc Michel (1):
29
docs: Build and install all the docs in a single manual
32
MAINTAINERS: add myself maintainer for the clock framework
30
33
31
Philippe Mathieu-Daudé (1):
34
Richard Henderson (31):
32
target/arm/m_helper: Silence GCC 10 maybe-uninitialized error
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
33
66
34
Richard Henderson (7):
67
docs/system/arm/nuvoton.rst | 2 +-
35
target/arm: Implement an IMPDEF pauth algorithm
68
bsd-user/qemu.h | 17 +-
36
target/arm: Add cpu properties to control pauth
69
include/exec/cpu-all.h | 47 +-
37
target/arm: Use object_property_add_bool for "sve" property
70
include/exec/cpu_ldst.h | 39 +-
38
target/arm: Introduce PREDDESC field definitions
71
include/exec/exec-all.h | 2 +-
39
target/arm: Update PFIRST, PNEXT for pred_desc
72
include/hw/arm/npcm7xx.h | 2 +
40
target/arm: Update ZIP, UZP, TRN for pred_desc
73
include/hw/i2c/npcm7xx_smbus.h | 113 ++++
41
target/arm: Update REV, PUNPK for pred_desc
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
42
133
43
Rémi Denis-Courmont (19):
44
target/arm: remove redundant tests
45
target/arm: add arm_is_el2_enabled() helper
46
target/arm: use arm_is_el2_enabled() where applicable
47
target/arm: use arm_hcr_el2_eff() where applicable
48
target/arm: factor MDCR_EL2 common handling
49
target/arm: Define isar_feature function to test for presence of SEL2
50
target/arm: add 64-bit S-EL2 to EL exception table
51
target/arm: add MMU stage 1 for Secure EL2
52
target/arm: add ARMv8.4-SEL2 system registers
53
target/arm: handle VMID change in secure state
54
target/arm: do S1_ptw_translate() before address space lookup
55
target/arm: translate NS bit in page-walks
56
target/arm: generalize 2-stage page-walk condition
57
target/arm: secure stage 2 translation regime
58
target/arm: set HPFAR_EL2.NS on secure stage 2 faults
59
target/arm: revector to run-time pick target EL
60
target/arm: Implement SCR_EL2.EEL2
61
target/arm: enable Secure EL2 in max CPU
62
target/arm: refactor vae1_tlbmask()
63
64
docs/conf.py | 46 ++++-
65
docs/devel/conf.py | 15 --
66
docs/index.html.in | 17 --
67
docs/interop/conf.py | 28 ---
68
docs/meson.build | 64 +++---
69
docs/specs/conf.py | 16 --
70
docs/system/arm/cpu-features.rst | 21 ++
71
docs/system/conf.py | 28 ---
72
docs/tools/conf.py | 37 ----
73
docs/user/conf.py | 15 --
74
include/qemu/xxhash.h | 98 +++++++++
75
target/arm/cpu-param.h | 2 +-
76
target/arm/cpu.h | 107 ++++++++--
77
target/arm/internals.h | 45 +++++
78
target/arm/cpu.c | 23 ++-
79
target/arm/cpu64.c | 65 ++++--
80
target/arm/helper-a64.c | 8 +-
81
target/arm/helper.c | 414 ++++++++++++++++++++++++++-------------
82
target/arm/m_helper.c | 2 +-
83
target/arm/monitor.c | 1 +
84
target/arm/op_helper.c | 4 +-
85
target/arm/pauth_helper.c | 27 ++-
86
target/arm/sve_helper.c | 33 ++--
87
target/arm/tlb_helper.c | 3 +
88
target/arm/translate-a64.c | 4 +
89
target/arm/translate-sve.c | 31 ++-
90
target/arm/translate.c | 36 +++-
91
tests/qtest/arm-cpu-features.c | 13 ++
92
tests/qtest/npcm7xx_adc-test.c | 1 +
93
.gitlab-ci.yml | 4 +-
94
30 files changed, 770 insertions(+), 438 deletions(-)
95
delete mode 100644 docs/devel/conf.py
96
delete mode 100644 docs/index.html.in
97
delete mode 100644 docs/interop/conf.py
98
delete mode 100644 docs/specs/conf.py
99
delete mode 100644 docs/system/conf.py
100
delete mode 100644 docs/tools/conf.py
101
delete mode 100644 docs/user/conf.py
102
diff view generated by jsdifflib