1
v1->v2 changes: drop the sd card-reparenting patch
1
Massively slimmed down v2: MemTag broke bsd-user, and the npcm7xx
2
and the 2 raspi2 patches that depend on it.
2
ethernet device failed 'make check' on big-endian hosts.
3
3
4
-- PMM
4
-- PMM
5
5
6
The following changes since commit 6181478f6395cdd9d6ffd99623d0c9f39ea53606:
6
The following changes since commit 83339e21d05c824ebc9131d644f25c23d0e41ecf:
7
7
8
Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2017-02-28 08:46:03 +0000)
8
Merge remote-tracking branch 'remotes/stefanha-gitlab/tags/block-pull-request' into staging (2021-02-10 15:42:20 +0000)
9
9
10
are available in the git repository at:
10
are available in the Git repository at:
11
11
12
git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20170228
12
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210211-1
13
13
14
for you to fetch changes up to f3a6339a5bbc160d327299c67bb68c6d07fa4a61:
14
for you to fetch changes up to d3c1183ffeb71ca3a783eae3d7e1c51e71e8a621:
15
15
16
hw/arm/exynos: Fix proper mapping of CPUs by providing real cluster ID (2017-02-28 12:08:20 +0000)
16
target/arm: Correctly initialize MDCR_EL2.HPMN (2021-02-11 19:48:09 +0000)
17
17
18
----------------------------------------------------------------
18
----------------------------------------------------------------
19
target-arm queue:
19
target-arm queue:
20
* raspi2: implement RNG module
20
* Correctly initialize MDCR_EL2.HPMN
21
* raspi2: implement new SD card controller (but don't wire it up)
21
* versal: Use nr_apu_cpus in favor of hard coding 2
22
* sdhci: bugfixes for block transfers
22
* accel/tcg: Add URL of clang bug to comment about our workaround
23
* virt: fix cpu object reference leak
23
* Add support for FEAT_DIT, Data Independent Timing
24
* Add missing fp_access_check() to aarch64 crypto instructions
24
* Remove GPIO from unimplemented NPCM7XX
25
* cputlb: Don't assume do_unassigned_access() never returns
25
* Fix SCR RES1 handling
26
* virt: Add a user option to disallow ITS instantiation
26
* Don't migrate CPUARMState.features
27
* i.MX timers: fix reset handling
28
* ARMv7M NVIC: rewrite to fix broken priority handling and masking
29
* exynos: Fix proper mapping of CPUs by providing real cluster ID
30
* exynos: Fix Linux kernel division by zero for PLLs
31
27
32
----------------------------------------------------------------
28
----------------------------------------------------------------
33
Clement Deschamps (1):
29
Aaron Lindsay (1):
34
bcm2835_sdhost: add bcm2835 sdhost controller
30
target/arm: Don't migrate CPUARMState.features
35
31
36
Eric Auger (1):
32
Daniel Müller (1):
37
hw/arm/virt: Add a user option to disallow ITS instantiation
33
target/arm: Correctly initialize MDCR_EL2.HPMN
38
34
39
Igor Mammedov (1):
35
Edgar E. Iglesias (1):
40
hw/arm/virt: fix cpu object reference leak
36
hw/arm: versal: Use nr_apu_cpus in favor of hard coding 2
41
37
42
Krzysztof Kozlowski (2):
38
Hao Wu (1):
43
hw/arm/exynos: Fix Linux kernel division by zero for PLLs
39
hw/arm: Remove GPIO from unimplemented NPCM7XX
44
hw/arm/exynos: Fix proper mapping of CPUs by providing real cluster ID
45
40
46
Kurban Mallachiev (1):
41
Mike Nawrocki (1):
47
ARM i.MX timers: fix reset handling
42
target/arm: Fix SCR RES1 handling
48
43
49
Marcin Chojnacki (1):
44
Peter Maydell (2):
50
target-arm: Implement BCM2835 hardware RNG
45
arm: Update infocenter.arm.com URLs
46
accel/tcg: Add URL of clang bug to comment about our workaround
51
47
52
Michael Davidsaver (5):
48
Rebecca Cran (4):
53
armv7m: Rewrite NVIC to not use any GIC code
49
target/arm: Add support for FEAT_DIT, Data Independent Timing
54
arm: gic: Remove references to NVIC
50
target/arm: Support AA32 DIT by moving PSTATE_SS from cpsr into env->pstate
55
armv7m: Escalate exceptions to HardFault if necessary
51
target/arm: Set ID_AA64PFR0.DIT and ID_PFR0.DIT to 1 for "max" AA64 CPU
56
armv7m: Simpler and faster exception start
52
target/arm: Set ID_PFR0.DIT to 1 for "max" 32-bit CPU
57
armv7m: VECTCLRACTIVE and VECTRESET are UNPREDICTABLE
58
53
59
Nick Reilly (1):
54
include/hw/dma/pl080.h | 7 ++--
60
Add missing fp_access_check() to aarch64 crypto instructions
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(-)
61
74
62
Peter Maydell (10):
63
bcm2835_rng: Use qcrypto_random_bytes() rather than rand()
64
cputlb: Don't assume do_unassigned_access() never returns
65
armv7m: Rename nvic_state to NVICState
66
armv7m: Implement reading and writing of PRIGROUP
67
armv7m: Fix condition check for taking exceptions
68
armv7m: Remove unused armv7m_nvic_acknowledge_irq() return value
69
armv7m: Extract "exception taken" code into functions
70
armv7m: Check exception return consistency
71
armv7m: Raise correct kind of UsageFault for attempts to execute ARM code
72
armv7m: Allow SHCSR writes to change pending and active bits
73
74
Prasad J Pandit (4):
75
sd: sdhci: mask transfer mode register value
76
sd: sdhci: check transfer mode register in multi block transfer
77
sd: sdhci: conditionally invoke multi block transfer
78
sd: sdhci: Remove block count enable check in single block transfers
79
80
hw/misc/Makefile.objs | 3 +-
81
hw/sd/Makefile.objs | 1 +
82
hw/intc/gic_internal.h | 7 +-
83
include/hw/arm/bcm2835_peripherals.h | 2 +
84
include/hw/arm/virt.h | 1 +
85
include/hw/misc/bcm2835_rng.h | 27 ++
86
include/hw/sd/bcm2835_sdhost.h | 48 ++
87
target/arm/cpu.h | 23 +-
88
cputlb.c | 15 +-
89
hw/arm/bcm2835_peripherals.c | 15 +
90
hw/arm/exynos4210.c | 18 +
91
hw/arm/virt.c | 32 +-
92
hw/intc/arm_gic.c | 31 +-
93
hw/intc/arm_gic_common.c | 23 +-
94
hw/intc/armv7m_nvic.c | 885 ++++++++++++++++++++++++++++-------
95
hw/misc/bcm2835_rng.c | 149 ++++++
96
hw/misc/exynos4210_clk.c | 164 +++++++
97
hw/sd/bcm2835_sdhost.c | 429 +++++++++++++++++
98
hw/sd/sdhci.c | 25 +-
99
hw/timer/imx_gpt.c | 33 +-
100
linux-user/main.c | 1 +
101
target/arm/cpu.c | 16 +-
102
target/arm/helper.c | 245 +++++++---
103
target/arm/translate-a64.c | 12 +
104
target/arm/translate.c | 8 +-
105
hw/intc/trace-events | 15 +
106
26 files changed, 1897 insertions(+), 331 deletions(-)
107
create mode 100644 include/hw/misc/bcm2835_rng.h
108
create mode 100644 include/hw/sd/bcm2835_sdhost.h
109
create mode 100644 hw/misc/bcm2835_rng.c
110
create mode 100644 hw/misc/exynos4210_clk.c
111
create mode 100644 hw/sd/bcm2835_sdhost.c
112
diff view generated by jsdifflib