1 | v2 update: fix memory leaks in pvpanic-pci test case spotted by | 1 | Massively slimmed down v2: MemTag broke bsd-user, and the npcm7xx |
---|---|---|---|
2 | oss-fuzz gitlab CI run. | 2 | ethernet device failed 'make check' on big-endian hosts. |
3 | 3 | ||
4 | -- PMM | 4 | -- PMM |
5 | 5 | ||
6 | The following changes since commit 7e7eb9f852a46b51a71ae9d82590b2e4d28827ee: | 6 | The following changes since commit 83339e21d05c824ebc9131d644f25c23d0e41ecf: |
7 | 7 | ||
8 | Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2021-01-28' into staging (2021-01-28 22:43:18 +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 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20210129-1 | 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 14711b6f54708b9583796db02b12ee7bd0331502: | 14 | for you to fetch changes up to d3c1183ffeb71ca3a783eae3d7e1c51e71e8a621: |
15 | 15 | ||
16 | hw/arm/stellaris: Remove board-creation reset of STELLARIS_SYS (2021-01-29 15:54:44 +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 | * Implement ID_PFR2 | 20 | * Correctly initialize MDCR_EL2.HPMN |
21 | * Conditionalize DBGDIDR | 21 | * versal: Use nr_apu_cpus in favor of hard coding 2 |
22 | * rename xlnx-zcu102.canbusN properties | 22 | * accel/tcg: Add URL of clang bug to comment about our workaround |
23 | * provide powerdown/reset mechanism for secure firmware on 'virt' board | 23 | * Add support for FEAT_DIT, Data Independent Timing |
24 | * hw/misc: Fix arith overflow in NPCM7XX PWM module | 24 | * Remove GPIO from unimplemented NPCM7XX |
25 | * target/arm: Replace magic value by MMU_DATA_LOAD definition | 25 | * Fix SCR RES1 handling |
26 | * configure: fix preadv errors on Catalina macOS with new XCode | 26 | * Don't migrate CPUARMState.features |
27 | * Various configure and other cleanups in preparation for iOS support | ||
28 | * hvf: Add hypervisor entitlement to output binaries (needed for Big Sur) | ||
29 | * Implement pvpanic-pci device | ||
30 | * Convert the CMSDK timer devices to the Clock framework | ||
31 | 27 | ||
32 | ---------------------------------------------------------------- | 28 | ---------------------------------------------------------------- |
33 | Alexander Graf (1): | 29 | Aaron Lindsay (1): |
34 | hvf: Add hypervisor entitlement to output binaries | 30 | target/arm: Don't migrate CPUARMState.features |
31 | |||
32 | Daniel Müller (1): | ||
33 | target/arm: Correctly initialize MDCR_EL2.HPMN | ||
34 | |||
35 | Edgar E. Iglesias (1): | ||
36 | hw/arm: versal: Use nr_apu_cpus in favor of hard coding 2 | ||
35 | 37 | ||
36 | Hao Wu (1): | 38 | Hao Wu (1): |
37 | hw/misc: Fix arith overflow in NPCM7XX PWM module | 39 | hw/arm: Remove GPIO from unimplemented NPCM7XX |
38 | 40 | ||
39 | Joelle van Dyne (7): | 41 | Mike Nawrocki (1): |
40 | configure: cross-compiling with empty cross_prefix | 42 | target/arm: Fix SCR RES1 handling |
41 | osdep: build with non-working system() function | ||
42 | darwin: remove redundant dependency declaration | ||
43 | darwin: fix cross-compiling for Darwin | ||
44 | configure: cross compile should use x86_64 cpu_family | ||
45 | darwin: detect CoreAudio for build | ||
46 | darwin: remove 64-bit build detection on 32-bit OS | ||
47 | 43 | ||
48 | Maxim Uvarov (3): | 44 | Peter Maydell (2): |
49 | hw: gpio: implement gpio-pwr driver for qemu reset/poweroff | 45 | arm: Update infocenter.arm.com URLs |
50 | arm-virt: refactor gpios creation | 46 | accel/tcg: Add URL of clang bug to comment about our workaround |
51 | arm-virt: add secure pl061 for reset/power down | ||
52 | 47 | ||
53 | Mihai Carabas (4): | 48 | Rebecca Cran (4): |
54 | hw/misc/pvpanic: split-out generic and bus dependent code | 49 | target/arm: Add support for FEAT_DIT, Data Independent Timing |
55 | hw/misc/pvpanic: add PCI interface support | 50 | target/arm: Support AA32 DIT by moving PSTATE_SS from cpsr into env->pstate |
56 | pvpanic : update pvpanic spec document | 51 | target/arm: Set ID_AA64PFR0.DIT and ID_PFR0.DIT to 1 for "max" AA64 CPU |
57 | tests/qtest: add a test case for pvpanic-pci | 52 | target/arm: Set ID_PFR0.DIT to 1 for "max" 32-bit CPU |
58 | 53 | ||
59 | Paolo Bonzini (1): | 54 | include/hw/dma/pl080.h | 7 ++-- |
60 | arm: rename xlnx-zcu102.canbusN properties | 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 (26): | ||
63 | configure: Move preadv check to meson.build | ||
64 | ptimer: Add new ptimer_set_period_from_clock() function | ||
65 | clock: Add new clock_has_source() function | ||
66 | tests: Add a simple test of the CMSDK APB timer | ||
67 | tests: Add a simple test of the CMSDK APB watchdog | ||
68 | tests: Add a simple test of the CMSDK APB dual timer | ||
69 | hw/timer/cmsdk-apb-timer: Rename CMSDKAPBTIMER struct to CMSDKAPBTimer | ||
70 | hw/timer/cmsdk-apb-timer: Add Clock input | ||
71 | hw/timer/cmsdk-apb-dualtimer: Add Clock input | ||
72 | hw/watchdog/cmsdk-apb-watchdog: Add Clock input | ||
73 | hw/arm/armsse: Rename "MAINCLK" property to "MAINCLK_FRQ" | ||
74 | hw/arm/armsse: Wire up clocks | ||
75 | hw/arm/mps2: Inline CMSDK_APB_TIMER creation | ||
76 | hw/arm/mps2: Create and connect SYSCLK Clock | ||
77 | hw/arm/mps2-tz: Create and connect ARMSSE Clocks | ||
78 | hw/arm/musca: Create and connect ARMSSE Clocks | ||
79 | hw/arm/stellaris: Convert SSYS to QOM device | ||
80 | hw/arm/stellaris: Create Clock input for watchdog | ||
81 | hw/timer/cmsdk-apb-timer: Convert to use Clock input | ||
82 | hw/timer/cmsdk-apb-dualtimer: Convert to use Clock input | ||
83 | hw/watchdog/cmsdk-apb-watchdog: Convert to use Clock input | ||
84 | tests/qtest/cmsdk-apb-watchdog-test: Test clock changes | ||
85 | hw/arm/armsse: Use Clock to set system_clock_scale | ||
86 | arm: Don't set freq properties on CMSDK timer, dualtimer, watchdog, ARMSSE | ||
87 | arm: Remove frq properties on CMSDK timer, dualtimer, watchdog, ARMSSE | ||
88 | hw/arm/stellaris: Remove board-creation reset of STELLARIS_SYS | ||
89 | |||
90 | Philippe Mathieu-Daudé (1): | ||
91 | target/arm: Replace magic value by MMU_DATA_LOAD definition | ||
92 | |||
93 | Richard Henderson (2): | ||
94 | target/arm: Implement ID_PFR2 | ||
95 | target/arm: Conditionalize DBGDIDR | ||
96 | |||
97 | docs/devel/clocks.rst | 16 +++ | ||
98 | docs/specs/pci-ids.txt | 1 + | ||
99 | docs/specs/pvpanic.txt | 13 ++- | ||
100 | docs/system/arm/virt.rst | 2 + | ||
101 | configure | 78 ++++++++------ | ||
102 | meson.build | 34 ++++++- | ||
103 | include/hw/arm/armsse.h | 14 ++- | ||
104 | include/hw/arm/virt.h | 2 + | ||
105 | include/hw/clock.h | 15 +++ | ||
106 | include/hw/misc/pvpanic.h | 24 ++++- | ||
107 | include/hw/pci/pci.h | 1 + | ||
108 | include/hw/ptimer.h | 22 ++++ | ||
109 | include/hw/timer/cmsdk-apb-dualtimer.h | 5 +- | ||
110 | include/hw/timer/cmsdk-apb-timer.h | 34 ++----- | ||
111 | include/hw/watchdog/cmsdk-apb-watchdog.h | 5 +- | ||
112 | include/qemu/osdep.h | 12 +++ | ||
113 | include/qemu/typedefs.h | 1 + | ||
114 | target/arm/cpu.h | 1 + | ||
115 | hw/arm/armsse.c | 48 ++++++--- | ||
116 | hw/arm/mps2-tz.c | 14 ++- | ||
117 | hw/arm/mps2.c | 28 ++++- | ||
118 | hw/arm/musca.c | 13 ++- | ||
119 | hw/arm/stellaris.c | 170 +++++++++++++++++++++++-------- | ||
120 | hw/arm/virt.c | 111 ++++++++++++++++---- | ||
121 | hw/arm/xlnx-zcu102.c | 4 +- | ||
122 | hw/core/ptimer.c | 34 +++++++ | ||
123 | hw/gpio/gpio_pwr.c | 70 +++++++++++++ | ||
124 | hw/misc/npcm7xx_pwm.c | 23 ++++- | ||
125 | hw/misc/pvpanic-isa.c | 94 +++++++++++++++++ | ||
126 | hw/misc/pvpanic-pci.c | 94 +++++++++++++++++ | ||
127 | hw/misc/pvpanic.c | 85 ++-------------- | ||
128 | hw/timer/cmsdk-apb-dualtimer.c | 53 +++++++--- | ||
129 | hw/timer/cmsdk-apb-timer.c | 55 +++++----- | ||
130 | hw/watchdog/cmsdk-apb-watchdog.c | 29 ++++-- | ||
131 | target/arm/helper.c | 27 +++-- | ||
132 | target/arm/kvm64.c | 2 + | ||
133 | tests/qtest/cmsdk-apb-dualtimer-test.c | 130 +++++++++++++++++++++++ | ||
134 | tests/qtest/cmsdk-apb-timer-test.c | 75 ++++++++++++++ | ||
135 | tests/qtest/cmsdk-apb-watchdog-test.c | 131 ++++++++++++++++++++++++ | ||
136 | tests/qtest/npcm7xx_pwm-test.c | 4 +- | ||
137 | tests/qtest/pvpanic-pci-test.c | 98 ++++++++++++++++++ | ||
138 | tests/qtest/xlnx-can-test.c | 30 +++--- | ||
139 | MAINTAINERS | 3 + | ||
140 | accel/hvf/entitlements.plist | 8 ++ | ||
141 | hw/arm/Kconfig | 1 + | ||
142 | hw/gpio/Kconfig | 3 + | ||
143 | hw/gpio/meson.build | 1 + | ||
144 | hw/i386/Kconfig | 2 +- | ||
145 | hw/misc/Kconfig | 12 ++- | ||
146 | hw/misc/meson.build | 4 +- | ||
147 | scripts/entitlement.sh | 13 +++ | ||
148 | tests/qtest/meson.build | 6 +- | ||
149 | 52 files changed, 1436 insertions(+), 319 deletions(-) | ||
150 | create mode 100644 hw/gpio/gpio_pwr.c | ||
151 | create mode 100644 hw/misc/pvpanic-isa.c | ||
152 | create mode 100644 hw/misc/pvpanic-pci.c | ||
153 | create mode 100644 tests/qtest/cmsdk-apb-dualtimer-test.c | ||
154 | create mode 100644 tests/qtest/cmsdk-apb-timer-test.c | ||
155 | create mode 100644 tests/qtest/cmsdk-apb-watchdog-test.c | ||
156 | create mode 100644 tests/qtest/pvpanic-pci-test.c | ||
157 | create mode 100644 accel/hvf/entitlements.plist | ||
158 | create mode 100755 scripts/entitlement.sh | ||
159 | diff view generated by jsdifflib |