1
v2: dropped a couple of cadence_gem changes to ID regs that
1
v1->v2: add system/index to docs/index.rst
2
caused new clang sanitizer warnings.
2
v2->v3: fix format string issues for OSX
3
v3->v4: actually fix format string issues, somehow
4
I failed to actually put the change into git :-(
3
5
4
-- PMM
6
The following changes since commit b7c359c748a2e3ccb97a184b9739feb2cd48de2f:
5
7
6
The following changes since commit dddb37495b844270088e68e3bf30b764d48d863f:
8
Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-5.0-pull-request' into staging (2020-01-23 14:38:43 +0000)
7
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
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20181016-1
12
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20200123-4
13
13
14
for you to fetch changes up to 2ef297af07196c29446556537861f8e7dfeeae7b:
14
for you to fetch changes up to e9d20b55b2e4c8400143554f0e83e4e1fcb9bd0f:
15
15
16
coccinelle: new inplace-byteswaps.cocci to remove inplace-byteswapping calls (2018-10-16 17:14:55 +0100)
16
hw/arm/exynos4210: Connect serial port DMA busy signals with pl330 (2020-01-23 16:34:15 +0000)
17
17
18
----------------------------------------------------------------
18
----------------------------------------------------------------
19
target-arm queue:
19
target-arm queue:
20
* hw/arm/virt: add DT property /secure-chosen/stdout-path indicating secure UART
20
* fix bug in PAuth emulation
21
* target/arm: Fix aarch64_sve_change_el wrt EL0
21
* add PMU to Cortex-R5, Cortex-R5F
22
* target/arm: Define fields of ISAR registers
22
* qemu-nbd: Convert documentation to rST
23
* target/arm: Align cortex-r5 id_isar0
23
* qemu-block-drivers: Convert documentation to rST
24
* target/arm: Fix cortex-a7 id_isar0
24
* Fix Exynos4210 UART DMA support
25
* net/cadence_gem: Fix various bugs, add support for new
25
* Various minor code cleanups
26
features that will be used by the Xilinx Versal board
27
* target-arm: powerctl: Enable HVC when starting CPUs to EL2
28
* target/arm: Add the Cortex-A72
29
* target/arm: Mark PMINTENCLR and PMINTENCLR_EL1 accesses as possibly doing IO
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
33
26
34
----------------------------------------------------------------
27
----------------------------------------------------------------
35
Aaron Lindsay (2):
28
Andrew Jones (1):
36
target/arm: Mark PMINTENCLR and PMINTENCLR_EL1 accesses as possibly doing IO
29
target/arm/arch_dump: Add SVE notes
37
target/arm: Mask PMOVSR writes based on supported counters
38
30
39
Edgar E. Iglesias (8):
31
Clement Deschamps (1):
40
net: cadence_gem: Disable TSU feature bit
32
target/arm: add PMU feature to cortex-r5 and cortex-r5f
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
48
33
49
Jerome Forissier (1):
34
Guenter Roeck (8):
50
hw/arm/virt: add DT property /secure-chosen/stdout-path indicating secure UART
35
dma/pl330: Convert to support tracing
36
hw/core/or-irq: Increase limit of or-lines to 48
37
hw/arm/exynos4210: Fix DMA initialization
38
hw/char/exynos4210_uart: Convert to support tracing
39
hw/char/exynos4210_uart: Implement post_load function
40
hw/char/exynos4210_uart: Implement Rx FIFO level triggers and timeouts
41
hw/char/exynos4210_uart: Add receive DMA support
42
hw/arm/exynos4210: Connect serial port DMA busy signals with pl330
51
43
52
Peter Maydell (2):
44
Keqian Zhu (2):
53
target/arm: Initialize ARMMMUFaultInfo in v7m_stack_read/write
45
hw/acpi: Remove extra indent in ACPI GED hotplug cb
54
coccinelle: new inplace-byteswaps.cocci to remove inplace-byteswapping calls
46
hw/arm: Use helper function to trigger hotplug handler plug
55
47
56
Richard Henderson (4):
48
Peter Maydell (3):
57
target/arm: Fix aarch64_sve_change_el wrt EL0
49
qemu-nbd: Convert invocation documentation to rST
58
target/arm: Define fields of ISAR registers
50
docs: Create stub system manual
59
target/arm: Align cortex-r5 id_isar0
51
qemu-block-drivers: Convert to rST
60
target/arm: Fix cortex-a7 id_isar0
61
52
62
include/hw/net/cadence_gem.h | 7 +-
53
Philippe Mathieu-Daudé (1):
63
target/arm/cpu.h | 95 ++++++++++++++-
54
hw/misc/stm32f4xx_syscfg: Fix copy/paste error
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
74
55
56
Richard Henderson (3):
57
tests/tcg/aarch64: Fix compilation parameters for pauth-%
58
tests/tcg/aarch64: Add pauth-3
59
tests/tcg/aarch64: Add pauth-4
60
61
Vincent Dehors (1):
62
target/arm: Fix PAuth sbox functions
63
64
Makefile | 37 +-
65
tests/tcg/aarch64/Makefile.softmmu-target | 5 +-
66
tests/tcg/aarch64/Makefile.target | 3 +-
67
include/elf.h | 1 +
68
include/hw/arm/exynos4210.h | 4 +
69
include/hw/or-irq.h | 2 +-
70
target/arm/cpu.h | 25 +
71
hw/acpi/generic_event_device.c | 2 +-
72
hw/arm/exynos4210.c | 77 ++-
73
hw/arm/virt.c | 6 +-
74
hw/char/exynos4210_uart.c | 245 +++++---
75
hw/dma/pl330.c | 88 +--
76
hw/misc/stm32f4xx_syscfg.c | 2 +-
77
target/arm/arch_dump.c | 124 +++-
78
target/arm/cpu.c | 1 +
79
target/arm/kvm64.c | 24 -
80
target/arm/pauth_helper.c | 4 +-
81
tests/tcg/aarch64/pauth-1.c | 2 -
82
tests/tcg/aarch64/pauth-2.c | 2 -
83
tests/tcg/aarch64/pauth-4.c | 25 +
84
tests/tcg/aarch64/system/pauth-3.c | 40 ++
85
MAINTAINERS | 1 +
86
docs/index.html.in | 1 +
87
docs/index.rst | 2 +-
88
docs/interop/conf.py | 4 +-
89
docs/interop/index.rst | 1 +
90
docs/interop/qemu-nbd.rst | 263 ++++++++
91
docs/interop/qemu-option-trace.rst.inc | 30 +
92
docs/qemu-block-drivers.texi | 889 ---------------------------
93
docs/system/conf.py | 22 +
94
docs/system/index.rst | 17 +
95
docs/system/qemu-block-drivers.rst | 985 ++++++++++++++++++++++++++++++
96
hw/char/trace-events | 20 +
97
hw/dma/trace-events | 24 +
98
qemu-doc.texi | 18 -
99
qemu-nbd.texi | 214 -------
100
qemu-option-trace.texi | 4 +
101
qemu-options.hx | 2 +-
102
38 files changed, 1898 insertions(+), 1318 deletions(-)
103
create mode 100644 tests/tcg/aarch64/pauth-4.c
104
create mode 100644 tests/tcg/aarch64/system/pauth-3.c
105
create mode 100644 docs/interop/qemu-nbd.rst
106
create mode 100644 docs/interop/qemu-option-trace.rst.inc
107
delete mode 100644 docs/qemu-block-drivers.texi
108
create mode 100644 docs/system/conf.py
109
create mode 100644 docs/system/index.rst
110
create mode 100644 docs/system/qemu-block-drivers.rst
111
delete mode 100644 qemu-nbd.texi
112
diff view generated by jsdifflib