1
A last collection of patches to squeeze in before rc0.
1
Massively slimmed down v2: MemTag broke bsd-user, and the npcm7xx
2
The patches from me are all bugfixes. Philippe's are just
2
ethernet device failed 'make check' on big-endian hosts.
3
code-movement, but I wanted to get these into 4.1 because
4
that kind of patch is so painful to have to rebase.
5
(The diffstat is huge but it's just code moving from file to file.)
6
3
7
v2: fix up for clash with the qapi refactor which only
8
showed up in a build-from-clean.
9
10
thanks
11
-- PMM
4
-- PMM
12
5
6
The following changes since commit 83339e21d05c824ebc9131d644f25c23d0e41ecf:
13
7
14
The following changes since commit c3e1d838cfa5aac1a6210c8ddf182d0ef7d95dd8:
8
Merge remote-tracking branch 'remotes/stefanha-gitlab/tags/block-pull-request' into staging (2021-02-10 15:42:20 +0000)
15
16
Merge remote-tracking branch 'remotes/kraxel/tags/ui-20190704-pull-request' into staging (2019-07-04 16:43:13 +0100)
17
9
18
are available in the Git repository at:
10
are available in the Git repository at:
19
11
20
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20190704-1
12
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210211-1
21
13
22
for you to fetch changes up to 89a11ff756410aecb87d2c774df6e45dbf4105c1:
14
for you to fetch changes up to d3c1183ffeb71ca3a783eae3d7e1c51e71e8a621:
23
15
24
target/arm: Correct VMOV_imm_dp handling of short vectors (2019-07-04 17:25:30 +0100)
16
target/arm: Correctly initialize MDCR_EL2.HPMN (2021-02-11 19:48:09 +0000)
25
17
26
----------------------------------------------------------------
18
----------------------------------------------------------------
27
target-arm queue:
19
target-arm queue:
28
* more code-movement to separate TCG-only functions into their own files
20
* Correctly initialize MDCR_EL2.HPMN
29
* Correct VMOV_imm_dp handling of short vectors
21
* versal: Use nr_apu_cpus in favor of hard coding 2
30
* Execute Thumb instructions when their condbits are 0xf
22
* accel/tcg: Add URL of clang bug to comment about our workaround
31
* armv7m_systick: Forbid non-privileged accesses
23
* Add support for FEAT_DIT, Data Independent Timing
32
* Use _ra versions of cpu_stl_data() in v7M helpers
24
* Remove GPIO from unimplemented NPCM7XX
33
* v8M: Check state of exception being returned from
25
* Fix SCR RES1 handling
34
* v8M: Forcibly clear negative-priority exceptions on deactivate
26
* Don't migrate CPUARMState.features
35
27
36
----------------------------------------------------------------
28
----------------------------------------------------------------
37
Peter Maydell (6):
29
Aaron Lindsay (1):
38
arm v8M: Forcibly clear negative-priority exceptions on deactivate
30
target/arm: Don't migrate CPUARMState.features
39
target/arm: v8M: Check state of exception being returned from
40
target/arm: Use _ra versions of cpu_stl_data() in v7M helpers
41
hw/timer/armv7m_systick: Forbid non-privileged accesses
42
target/arm: Execute Thumb instructions when their condbits are 0xf
43
target/arm: Correct VMOV_imm_dp handling of short vectors
44
31
45
Philippe Mathieu-Daudé (3):
32
Daniel Müller (1):
46
target/arm: Move debug routines to debug_helper.c
33
target/arm: Correctly initialize MDCR_EL2.HPMN
47
target/arm: Restrict semi-hosting to TCG
48
target/arm/helper: Move M profile routines to m_helper.c
49
34
50
target/arm/Makefile.objs | 5 +-
35
Edgar E. Iglesias (1):
51
target/arm/cpu.h | 7 +
36
hw/arm: versal: Use nr_apu_cpus in favor of hard coding 2
52
hw/intc/armv7m_nvic.c | 54 +-
53
hw/timer/armv7m_systick.c | 26 +-
54
target/arm/cpu.c | 9 +-
55
target/arm/debug_helper.c | 311 +++++
56
target/arm/helper.c | 2646 +--------------------------------------
57
target/arm/m_helper.c | 2679 ++++++++++++++++++++++++++++++++++++++++
58
target/arm/op_helper.c | 295 -----
59
target/arm/translate-vfp.inc.c | 2 +-
60
target/arm/translate.c | 15 +-
61
11 files changed, 3096 insertions(+), 2953 deletions(-)
62
create mode 100644 target/arm/debug_helper.c
63
create mode 100644 target/arm/m_helper.c
64
37
38
Hao Wu (1):
39
hw/arm: Remove GPIO from unimplemented NPCM7XX
40
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