1
v1->v2 changes: drop the sd card-reparenting patch
1
v2: dropped a couple of cadence_gem changes to ID regs that
2
and the 2 raspi2 patches that depend on it.
2
caused new clang sanitizer warnings.
3
3
4
-- PMM
4
-- PMM
5
5
6
The following changes since commit 6181478f6395cdd9d6ffd99623d0c9f39ea53606:
6
The following changes since commit dddb37495b844270088e68e3bf30b764d48d863f:
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/awilliam/tags/vfio-updates-20181015.0' into staging (2018-10-15 18:44:04 +0100)
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-20181016-1
13
13
14
for you to fetch changes up to f3a6339a5bbc160d327299c67bb68c6d07fa4a61:
14
for you to fetch changes up to 2ef297af07196c29446556537861f8e7dfeeae7b:
15
15
16
hw/arm/exynos: Fix proper mapping of CPUs by providing real cluster ID (2017-02-28 12:08:20 +0000)
16
coccinelle: new inplace-byteswaps.cocci to remove inplace-byteswapping calls (2018-10-16 17:14:55 +0100)
17
17
18
----------------------------------------------------------------
18
----------------------------------------------------------------
19
target-arm queue:
19
target-arm queue:
20
* raspi2: implement RNG module
20
* hw/arm/virt: add DT property /secure-chosen/stdout-path indicating secure UART
21
* raspi2: implement new SD card controller (but don't wire it up)
21
* target/arm: Fix aarch64_sve_change_el wrt EL0
22
* sdhci: bugfixes for block transfers
22
* target/arm: Define fields of ISAR registers
23
* virt: fix cpu object reference leak
23
* target/arm: Align cortex-r5 id_isar0
24
* Add missing fp_access_check() to aarch64 crypto instructions
24
* target/arm: Fix cortex-a7 id_isar0
25
* cputlb: Don't assume do_unassigned_access() never returns
25
* net/cadence_gem: Fix various bugs, add support for new
26
* virt: Add a user option to disallow ITS instantiation
26
features that will be used by the Xilinx Versal board
27
* i.MX timers: fix reset handling
27
* target-arm: powerctl: Enable HVC when starting CPUs to EL2
28
* ARMv7M NVIC: rewrite to fix broken priority handling and masking
28
* target/arm: Add the Cortex-A72
29
* exynos: Fix proper mapping of CPUs by providing real cluster ID
29
* target/arm: Mark PMINTENCLR and PMINTENCLR_EL1 accesses as possibly doing IO
30
* exynos: Fix Linux kernel division by zero for PLLs
30
* target/arm: Mask PMOVSR writes based on supported counters
31
* target/arm: Initialize ARMMMUFaultInfo in v7m_stack_read/write
32
* coccinelle: new inplace-byteswaps.cocci to remove inplace-byteswapping calls
31
33
32
----------------------------------------------------------------
34
----------------------------------------------------------------
33
Clement Deschamps (1):
35
Aaron Lindsay (2):
34
bcm2835_sdhost: add bcm2835 sdhost controller
36
target/arm: Mark PMINTENCLR and PMINTENCLR_EL1 accesses as possibly doing IO
37
target/arm: Mask PMOVSR writes based on supported counters
35
38
36
Eric Auger (1):
39
Edgar E. Iglesias (8):
37
hw/arm/virt: Add a user option to disallow ITS instantiation
40
net: cadence_gem: Disable TSU feature bit
41
net: cadence_gem: Use uint32_t for 32bit descriptor words
42
net: cadence_gem: Add macro with max number of descriptor words
43
net: cadence_gem: Add support for extended descriptors
44
net: cadence_gem: Add support for selecting the DMA MemoryRegion
45
net: cadence_gem: Implement support for 64bit descriptor addresses
46
target-arm: powerctl: Enable HVC when starting CPUs to EL2
47
target/arm: Add the Cortex-A72
38
48
39
Igor Mammedov (1):
49
Jerome Forissier (1):
40
hw/arm/virt: fix cpu object reference leak
50
hw/arm/virt: add DT property /secure-chosen/stdout-path indicating secure UART
41
51
42
Krzysztof Kozlowski (2):
52
Peter Maydell (2):
43
hw/arm/exynos: Fix Linux kernel division by zero for PLLs
53
target/arm: Initialize ARMMMUFaultInfo in v7m_stack_read/write
44
hw/arm/exynos: Fix proper mapping of CPUs by providing real cluster ID
54
coccinelle: new inplace-byteswaps.cocci to remove inplace-byteswapping calls
45
55
46
Kurban Mallachiev (1):
56
Richard Henderson (4):
47
ARM i.MX timers: fix reset handling
57
target/arm: Fix aarch64_sve_change_el wrt EL0
58
target/arm: Define fields of ISAR registers
59
target/arm: Align cortex-r5 id_isar0
60
target/arm: Fix cortex-a7 id_isar0
48
61
49
Marcin Chojnacki (1):
62
include/hw/net/cadence_gem.h | 7 +-
50
target-arm: Implement BCM2835 hardware RNG
63
target/arm/cpu.h | 95 ++++++++++++++-
64
hw/arm/virt.c | 4 +
65
hw/net/cadence_gem.c | 185 ++++++++++++++++++++---------
66
target/arm/arm-powerctl.c | 10 ++
67
target/arm/cpu.c | 7 +-
68
target/arm/cpu64.c | 66 +++++++++-
69
target/arm/helper.c | 27 +++--
70
target/arm/op_helper.c | 6 +-
71
scripts/coccinelle/inplace-byteswaps.cocci | 65 ++++++++++
72
10 files changed, 402 insertions(+), 70 deletions(-)
73
create mode 100644 scripts/coccinelle/inplace-byteswaps.cocci
51
74
52
Michael Davidsaver (5):
53
armv7m: Rewrite NVIC to not use any GIC code
54
arm: gic: Remove references to NVIC
55
armv7m: Escalate exceptions to HardFault if necessary
56
armv7m: Simpler and faster exception start
57
armv7m: VECTCLRACTIVE and VECTRESET are UNPREDICTABLE
58
59
Nick Reilly (1):
60
Add missing fp_access_check() to aarch64 crypto instructions
61
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