1
The following changes since commit e3debd5e7d0ce031356024878a0a18b9d109354a:
1
v2: fix format string error
2
2
3
Merge tag 'pull-request-2023-03-24' of https://gitlab.com/thuth/qemu into staging (2023-03-24 16:08:46 +0000)
3
thanks
4
-- PMM
5
6
The following changes since commit aa9bbd865502ed517624ab6fe7d4b5d89ca95e43:
7
8
Merge tag 'pull-ppc-20230528' of https://gitlab.com/danielhb/qemu into staging (2023-05-29 14:31:52 -0700)
4
9
5
are available in the Git repository at:
10
are available in the Git repository at:
6
11
7
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20230328
12
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20230530-1
8
13
9
for you to fetch changes up to 46e3b237c52e0c48bfd81bce020b51fbe300b23a:
14
for you to fetch changes up to ec683110def96b16be3931ec87baba65a3dc5ad0:
10
15
11
target/arm/gdbstub: Only advertise M-profile features if TCG available (2023-03-28 10:53:40 +0100)
16
docs: sbsa: correct graphics card name (2023-05-30 15:50:17 +0100)
12
17
13
----------------------------------------------------------------
18
----------------------------------------------------------------
14
target-arm queue:
19
target-arm queue:
15
* fix part of the "TCG-disabled builds are broken" issue
20
* fsl-imx6: Add SNVS support for i.MX6 boards
21
* smmuv3: Add support for stage 2 translations
22
* hw/dma/xilinx_axidma: Check DMASR.HALTED to prevent infinite loop
23
* hw/arm/xlnx-zynqmp: fix unsigned error when checking the RPUs number
24
* cleanups for recent Kconfig changes
25
* target/arm: Explicitly select short-format FSR for M-profile
26
* tests/qtest: Run arm-specific tests only if the required machine is available
27
* hw/arm/sbsa-ref: add GIC node into DT
28
* docs: sbsa: correct graphics card name
29
* Update copyright dates to 2023
16
30
17
----------------------------------------------------------------
31
----------------------------------------------------------------
18
Philippe Mathieu-Daudé (1):
32
Clément Chigot (1):
19
target/arm/gdbstub: Only advertise M-profile features if TCG available
33
hw/arm/xlnx-zynqmp: fix unsigned error when checking the RPUs number
20
34
21
target/arm/gdbstub.c | 5 +++--
35
Enze Li (1):
22
1 file changed, 3 insertions(+), 2 deletions(-)
36
Update copyright dates to 2023
23
37
38
Fabiano Rosas (3):
39
target/arm: Explain why we need to select ARM_V7M
40
arm/Kconfig: Keep Kconfig default entries in default.mak as documentation
41
arm/Kconfig: Make TCG dependence explicit
42
43
Marcin Juszkiewicz (2):
44
hw/arm/sbsa-ref: add GIC node into DT
45
docs: sbsa: correct graphics card name
46
47
Mostafa Saleh (10):
48
hw/arm/smmuv3: Add missing fields for IDR0
49
hw/arm/smmuv3: Update translation config to hold stage-2
50
hw/arm/smmuv3: Refactor stage-1 PTW
51
hw/arm/smmuv3: Add page table walk for stage-2
52
hw/arm/smmuv3: Parse STE config for stage-2
53
hw/arm/smmuv3: Make TLB lookup work for stage-2
54
hw/arm/smmuv3: Add VMID to TLB tagging
55
hw/arm/smmuv3: Add CMDs related to stage-2
56
hw/arm/smmuv3: Add stage-2 support in iova notifier
57
hw/arm/smmuv3: Add knob to choose translation stage and enable stage-2
58
59
Peter Maydell (1):
60
target/arm: Explicitly select short-format FSR for M-profile
61
62
Thomas Huth (1):
63
tests/qtest: Run arm-specific tests only if the required machine is available
64
65
Tommy Wu (1):
66
hw/dma/xilinx_axidma: Check DMASR.HALTED to prevent infinite loop.
67
68
Vitaly Cheptsov (1):
69
fsl-imx6: Add SNVS support for i.MX6 boards
70
71
docs/conf.py | 2 +-
72
docs/system/arm/sbsa.rst | 2 +-
73
configs/devices/aarch64-softmmu/default.mak | 6 +
74
configs/devices/arm-softmmu/default.mak | 40 ++++
75
hw/arm/smmu-internal.h | 37 +++
76
hw/arm/smmuv3-internal.h | 12 +-
77
include/hw/arm/fsl-imx6.h | 2 +
78
include/hw/arm/smmu-common.h | 45 +++-
79
include/hw/arm/smmuv3.h | 4 +
80
include/qemu/help-texts.h | 2 +-
81
hw/arm/fsl-imx6.c | 8 +
82
hw/arm/sbsa-ref.c | 19 +-
83
hw/arm/smmu-common.c | 209 ++++++++++++++--
84
hw/arm/smmuv3.c | 358 ++++++++++++++++++++++++----
85
hw/arm/xlnx-zynqmp.c | 2 +-
86
hw/dma/xilinx_axidma.c | 11 +-
87
target/arm/tcg/tlb_helper.c | 13 +-
88
hw/arm/Kconfig | 123 ++++++----
89
hw/arm/trace-events | 14 +-
90
target/arm/Kconfig | 3 +
91
tests/qtest/meson.build | 7 +-
92
21 files changed, 774 insertions(+), 145 deletions(-)
93
diff view generated by jsdifflib
Deleted patch
1
From: Philippe Mathieu-Daudé <philmd@linaro.org>
2
1
3
Cortex-M profile is only emulable from TCG accelerator. Restrict
4
the GDBstub features to its availability in order to avoid a link
5
error when TCG is not enabled:
6
7
Undefined symbols for architecture arm64:
8
"_arm_v7m_get_sp_ptr", referenced from:
9
_m_sysreg_get in target_arm_gdbstub.c.o
10
"_arm_v7m_mrs_control", referenced from:
11
_arm_gdb_get_m_systemreg in target_arm_gdbstub.c.o
12
ld: symbol(s) not found for architecture arm64
13
clang: error: linker command failed with exit code 1 (use -v to see invocation)
14
15
Fixes: 7d8b28b8b5 ("target/arm: Implement gdbstub m-profile systemreg and secext")
16
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
17
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
18
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
19
Message-id: 20230322142902.69511-3-philmd@linaro.org
20
[PMM: add #include since I cherry-picked this patch from the series]
21
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
22
---
23
target/arm/gdbstub.c | 5 +++--
24
1 file changed, 3 insertions(+), 2 deletions(-)
25
26
diff --git a/target/arm/gdbstub.c b/target/arm/gdbstub.c
27
index XXXXXXX..XXXXXXX 100644
28
--- a/target/arm/gdbstub.c
29
+++ b/target/arm/gdbstub.c
30
@@ -XXX,XX +XXX,XX @@
31
#include "cpu.h"
32
#include "exec/gdbstub.h"
33
#include "gdbstub/helpers.h"
34
+#include "sysemu/tcg.h"
35
#include "internals.h"
36
#include "cpregs.h"
37
38
@@ -XXX,XX +XXX,XX @@ void arm_cpu_register_gdb_regs_for_features(ARMCPU *cpu)
39
2, "arm-vfp-sysregs.xml", 0);
40
}
41
}
42
- if (cpu_isar_feature(aa32_mve, cpu)) {
43
+ if (cpu_isar_feature(aa32_mve, cpu) && tcg_enabled()) {
44
gdb_register_coprocessor(cs, mve_gdb_get_reg, mve_gdb_set_reg,
45
1, "arm-m-profile-mve.xml", 0);
46
}
47
@@ -XXX,XX +XXX,XX @@ void arm_cpu_register_gdb_regs_for_features(ARMCPU *cpu)
48
arm_gen_dynamic_sysreg_xml(cs, cs->gdb_num_regs),
49
"system-registers.xml", 0);
50
51
- if (arm_feature(env, ARM_FEATURE_M)) {
52
+ if (arm_feature(env, ARM_FEATURE_M) && tcg_enabled()) {
53
gdb_register_coprocessor(cs,
54
arm_gdb_get_m_systemreg, arm_gdb_set_m_systemreg,
55
arm_gen_dynamic_m_systemreg_xml(cs, cs->gdb_num_regs),
56
--
57
2.34.1
58
59
diff view generated by jsdifflib