1 | Hi; not so many patches in this one, but notably it includes the | 1 | The following changes since commit 003ba52a8b327180e284630b289c6ece5a3e08b9: |
---|---|---|---|
2 | fix for various Avocado CI tests failing (incorrectly reported by | ||
3 | Avocado as a timeout, but really a QEMU exit-with-error). | ||
4 | 2 | ||
5 | thanks | 3 | Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2023-02-16 11:16:39 +0000) |
6 | -- PMM | ||
7 | |||
8 | The following changes since commit c8de6ec63d766ca1998c5af468483ce912fdc0c2: | ||
9 | |||
10 | Merge tag 'pull-request-2022-09-28' of https://gitlab.com/thuth/qemu into staging (2022-09-28 17:04:11 -0400) | ||
11 | 4 | ||
12 | are available in the Git repository at: | 5 | are available in the Git repository at: |
13 | 6 | ||
14 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20220930 | 7 | https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20230216 |
15 | 8 | ||
16 | for you to fetch changes up to beeec926d24aac28f95cc7694ef3837d7a4cd3bb: | 9 | for you to fetch changes up to caf01d6a435d9f4a95aeae2f9fc6cb8b889b1fb8: |
17 | 10 | ||
18 | target/arm: mark SP_EL1 with ARM_CP_EL3_NO_EL2_KEEP (2022-09-29 18:01:09 +0100) | 11 | tests/qtest: Restrict tpm-tis-devices-{swtpm}-test to CONFIG_TCG (2023-02-16 16:28:53 +0000) |
19 | 12 | ||
20 | ---------------------------------------------------------------- | 13 | ---------------------------------------------------------------- |
21 | target-arm queue: | 14 | target-arm queue: |
22 | * Fix breakage of icount mode when guest touches MDCR_EL3, MDCR_EL2, | 15 | * Some mostly M-profile-related code cleanups |
23 | PMCNTENSET_EL0 or PMCNTENCLR_EL0 | 16 | * avocado: Retire the boot_linux.py AArch64 TCG tests |
24 | * Make writes to MDCR_EL3 use PMU start/finish calls | 17 | * hw/arm/smmuv3: Add GBPA register |
25 | * Let AArch32 write to SDCR.SCCD | 18 | * arm/virt: don't try to spell out the accelerator |
26 | * Rearrange cpu64.c so all the CPU initfns are together | 19 | * hw/arm: Attach PSPI module to NPCM7XX SoC |
27 | * hw/arm/xlnx-zynqmp: Connect ZynqMP's USB controllers | 20 | * Some cleanup/refactoring patches aiming towards |
28 | * hw/arm/virt: fix some minor issues with generated device tree | 21 | allowing building Arm targets without CONFIG_TCG |
29 | * Fix regression where EL3 could not write to SP_EL1 if there is no EL2 | ||
30 | 22 | ||
31 | ---------------------------------------------------------------- | 23 | ---------------------------------------------------------------- |
32 | Francisco Iglesias (1): | 24 | Alex Bennée (1): |
33 | hw/arm/xlnx-zynqmp: Connect ZynqMP's USB controllers | 25 | tests/avocado: retire the Aarch64 TCG tests from boot_linux.py |
34 | 26 | ||
35 | Jean-Philippe Brucker (4): | 27 | Claudio Fontana (3): |
36 | hw/arm/virt: Fix devicetree warning about the root node | 28 | target/arm: rename handle_semihosting to tcg_handle_semihosting |
37 | hw/arm/virt: Fix devicetree warning about the GIC node | 29 | target/arm: wrap psci call with tcg_enabled |
38 | hw/arm/virt: Use "msi-map" devicetree property for PCI | 30 | target/arm: wrap call to aarch64_sve_change_el in tcg_enabled() |
39 | hw/arm/virt: Fix devicetree warning about the SMMU node | ||
40 | 31 | ||
41 | Jerome Forissier (1): | 32 | Cornelia Huck (1): |
42 | target/arm: mark SP_EL1 with ARM_CP_EL3_NO_EL2_KEEP | 33 | arm/virt: don't try to spell out the accelerator |
43 | 34 | ||
44 | Peter Maydell (4): | 35 | Fabiano Rosas (7): |
45 | target/arm: Mark registers which call pmu_op_start() as ARM_CP_IO | 36 | target/arm: Move PC alignment check |
46 | target/arm: Make writes to MDCR_EL3 use PMU start/finish calls | 37 | target/arm: Move cpregs code out of cpu.h |
47 | target/arm: Update SDCR_VALID_MASK to include SCCD | 38 | tests/avocado: Skip tests that require a missing accelerator |
48 | target/arm: Rearrange cpu64.c so all the CPU initfns are together | 39 | tests/avocado: Tag TCG tests with accel:tcg |
40 | target/arm: Use "max" as default cpu for the virt machine with KVM | ||
41 | tests/qtest: arm-cpu-features: Match tests to required accelerators | ||
42 | tests/qtest: Restrict tpm-tis-devices-{swtpm}-test to CONFIG_TCG | ||
49 | 43 | ||
50 | include/hw/arm/xlnx-zynqmp.h | 3 + | 44 | Hao Wu (3): |
51 | target/arm/cpu.h | 8 +- | 45 | MAINTAINERS: Add myself to maintainers and remove Havard |
52 | hw/arm/virt.c | 8 +- | 46 | hw/ssi: Add Nuvoton PSPI Module |
53 | hw/arm/xlnx-zynqmp.c | 36 +++ | 47 | hw/arm: Attach PSPI module to NPCM7XX SoC |
54 | target/arm/cpu64.c | 712 +++++++++++++++++++++---------------------- | 48 | |
55 | target/arm/helper.c | 32 +- | 49 | Jean-Philippe Brucker (2): |
56 | 6 files changed, 427 insertions(+), 372 deletions(-) | 50 | hw/arm/smmu-common: Support 64-bit addresses |
51 | hw/arm/smmu-common: Fix TTB1 handling | ||
52 | |||
53 | Mostafa Saleh (1): | ||
54 | hw/arm/smmuv3: Add GBPA register | ||
55 | |||
56 | Philippe Mathieu-Daudé (12): | ||
57 | hw/intc/armv7m_nvic: Use OBJECT_DECLARE_SIMPLE_TYPE() macro | ||
58 | target/arm: Simplify arm_v7m_mmu_idx_for_secstate() for user emulation | ||
59 | target/arm: Reduce arm_v7m_mmu_idx_[all/for_secstate_and_priv]() scope | ||
60 | target/arm: Constify ID_PFR1 on user emulation | ||
61 | target/arm: Convert CPUARMState::eabi to boolean | ||
62 | target/arm: Avoid resetting CPUARMState::eabi field | ||
63 | target/arm: Restrict CPUARMState::gicv3state to sysemu | ||
64 | target/arm: Restrict CPUARMState::arm_boot_info to sysemu | ||
65 | target/arm: Restrict CPUARMState::nvic to sysemu | ||
66 | target/arm: Store CPUARMState::nvic as NVICState* | ||
67 | target/arm: Declare CPU <-> NVIC helpers in 'hw/intc/armv7m_nvic.h' | ||
68 | hw/arm: Add missing XLNX_ZYNQMP_ARM -> USB_DWC3 Kconfig dependency | ||
69 | |||
70 | MAINTAINERS | 8 +- | ||
71 | docs/system/arm/nuvoton.rst | 2 +- | ||
72 | hw/arm/smmuv3-internal.h | 7 + | ||
73 | include/hw/arm/npcm7xx.h | 2 + | ||
74 | include/hw/arm/smmu-common.h | 2 - | ||
75 | include/hw/arm/smmuv3.h | 1 + | ||
76 | include/hw/intc/armv7m_nvic.h | 128 +++++++++++++++++- | ||
77 | include/hw/ssi/npcm_pspi.h | 53 ++++++++ | ||
78 | linux-user/user-internals.h | 2 +- | ||
79 | target/arm/cpregs.h | 98 ++++++++++++++ | ||
80 | target/arm/cpu.h | 228 ++------------------------------- | ||
81 | target/arm/internals.h | 14 -- | ||
82 | hw/arm/npcm7xx.c | 25 +++- | ||
83 | hw/arm/smmu-common.c | 4 +- | ||
84 | hw/arm/smmuv3.c | 43 ++++++- | ||
85 | hw/arm/virt.c | 10 +- | ||
86 | hw/intc/armv7m_nvic.c | 38 ++---- | ||
87 | hw/ssi/npcm_pspi.c | 221 ++++++++++++++++++++++++++++++++ | ||
88 | linux-user/arm/cpu_loop.c | 4 +- | ||
89 | target/arm/cpu.c | 5 +- | ||
90 | target/arm/cpu_tcg.c | 3 + | ||
91 | target/arm/helper.c | 31 +++-- | ||
92 | target/arm/m_helper.c | 86 +++++++------ | ||
93 | target/arm/machine.c | 18 +-- | ||
94 | tests/qtest/arm-cpu-features.c | 28 ++-- | ||
95 | hw/arm/Kconfig | 1 + | ||
96 | hw/ssi/meson.build | 2 +- | ||
97 | hw/ssi/trace-events | 5 + | ||
98 | tests/avocado/avocado_qemu/__init__.py | 4 + | ||
99 | tests/avocado/boot_linux.py | 48 ++----- | ||
100 | tests/avocado/boot_linux_console.py | 1 + | ||
101 | tests/avocado/machine_aarch64_virt.py | 63 ++++++++- | ||
102 | tests/avocado/reverse_debugging.py | 8 ++ | ||
103 | tests/qtest/meson.build | 4 +- | ||
104 | 34 files changed, 798 insertions(+), 399 deletions(-) | ||
105 | create mode 100644 include/hw/ssi/npcm_pspi.h | ||
106 | create mode 100644 hw/ssi/npcm_pspi.c | ||
107 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
1 | 2 | ||
3 | Manually convert to OBJECT_DECLARE_SIMPLE_TYPE() macro, | ||
4 | similarly to automatic conversion from commit 8063396bf3 | ||
5 | ("Use OBJECT_DECLARE_SIMPLE_TYPE when possible"). | ||
6 | |||
7 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
8 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
9 | Message-id: 20230206223502.25122-2-philmd@linaro.org | ||
10 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
11 | --- | ||
12 | include/hw/intc/armv7m_nvic.h | 5 +---- | ||
13 | 1 file changed, 1 insertion(+), 4 deletions(-) | ||
14 | |||
15 | diff --git a/include/hw/intc/armv7m_nvic.h b/include/hw/intc/armv7m_nvic.h | ||
16 | index XXXXXXX..XXXXXXX 100644 | ||
17 | --- a/include/hw/intc/armv7m_nvic.h | ||
18 | +++ b/include/hw/intc/armv7m_nvic.h | ||
19 | @@ -XXX,XX +XXX,XX @@ | ||
20 | #include "qom/object.h" | ||
21 | |||
22 | #define TYPE_NVIC "armv7m_nvic" | ||
23 | - | ||
24 | -typedef struct NVICState NVICState; | ||
25 | -DECLARE_INSTANCE_CHECKER(NVICState, NVIC, | ||
26 | - TYPE_NVIC) | ||
27 | +OBJECT_DECLARE_SIMPLE_TYPE(NVICState, NVIC) | ||
28 | |||
29 | /* Highest permitted number of exceptions (architectural limit) */ | ||
30 | #define NVIC_MAX_VECTORS 512 | ||
31 | -- | ||
32 | 2.34.1 | ||
33 | |||
34 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
1 | 2 | ||
3 | Suggested-by: Richard Henderson <richard.henderson@linaro.org> | ||
4 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
5 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
6 | Message-id: 20230206223502.25122-3-philmd@linaro.org | ||
7 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
8 | --- | ||
9 | target/arm/m_helper.c | 11 ++++++++--- | ||
10 | 1 file changed, 8 insertions(+), 3 deletions(-) | ||
11 | |||
12 | diff --git a/target/arm/m_helper.c b/target/arm/m_helper.c | ||
13 | index XXXXXXX..XXXXXXX 100644 | ||
14 | --- a/target/arm/m_helper.c | ||
15 | +++ b/target/arm/m_helper.c | ||
16 | @@ -XXX,XX +XXX,XX @@ uint32_t HELPER(v7m_tt)(CPUARMState *env, uint32_t addr, uint32_t op) | ||
17 | return 0; | ||
18 | } | ||
19 | |||
20 | -#else | ||
21 | +ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate) | ||
22 | +{ | ||
23 | + return ARMMMUIdx_MUser; | ||
24 | +} | ||
25 | + | ||
26 | +#else /* !CONFIG_USER_ONLY */ | ||
27 | |||
28 | /* | ||
29 | * What kind of stack write are we doing? This affects how exceptions | ||
30 | @@ -XXX,XX +XXX,XX @@ uint32_t HELPER(v7m_tt)(CPUARMState *env, uint32_t addr, uint32_t op) | ||
31 | return tt_resp; | ||
32 | } | ||
33 | |||
34 | -#endif /* !CONFIG_USER_ONLY */ | ||
35 | - | ||
36 | ARMMMUIdx arm_v7m_mmu_idx_all(CPUARMState *env, | ||
37 | bool secstate, bool priv, bool negpri) | ||
38 | { | ||
39 | @@ -XXX,XX +XXX,XX @@ ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate) | ||
40 | |||
41 | return arm_v7m_mmu_idx_for_secstate_and_priv(env, secstate, priv); | ||
42 | } | ||
43 | + | ||
44 | +#endif /* !CONFIG_USER_ONLY */ | ||
45 | -- | ||
46 | 2.34.1 | ||
47 | |||
48 | diff view generated by jsdifflib |
1 | cpu64.c has ended up in a slightly odd order -- it starts with the | 1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> |
---|---|---|---|
2 | initfns for most of the models-real-hardware CPUs; after that comes a | ||
3 | bunch of support code for SVE, SME, pauth and LPA2 properties. Then | ||
4 | come the initfns for the 'host' and 'max' CPU types, and then after | ||
5 | that one more models-real-hardware CPU initfn, for a64fx. (This | ||
6 | ordering is partly historical and partly required because a64fx needs | ||
7 | the SVE properties.) | ||
8 | 2 | ||
9 | Reorder the file into: | 3 | arm_v7m_mmu_idx_all() and arm_v7m_mmu_idx_for_secstate_and_priv() |
10 | * CPU property support functions | 4 | are only used for system emulation in m_helper.c. |
11 | * initfns for real hardware CPUs | 5 | Move the definitions to avoid prototype forward declarations. |
12 | * initfns for host and max | ||
13 | * class boilerplate | ||
14 | 6 | ||
7 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
8 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
9 | Message-id: 20230206223502.25122-4-philmd@linaro.org | ||
15 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 10 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
16 | Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> | ||
17 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
18 | --- | 11 | --- |
19 | target/arm/cpu64.c | 712 ++++++++++++++++++++++----------------------- | 12 | target/arm/internals.h | 14 -------- |
20 | 1 file changed, 356 insertions(+), 356 deletions(-) | 13 | target/arm/m_helper.c | 74 +++++++++++++++++++++--------------------- |
14 | 2 files changed, 37 insertions(+), 51 deletions(-) | ||
21 | 15 | ||
22 | diff --git a/target/arm/cpu64.c b/target/arm/cpu64.c | 16 | diff --git a/target/arm/internals.h b/target/arm/internals.h |
23 | index XXXXXXX..XXXXXXX 100644 | 17 | index XXXXXXX..XXXXXXX 100644 |
24 | --- a/target/arm/cpu64.c | 18 | --- a/target/arm/internals.h |
25 | +++ b/target/arm/cpu64.c | 19 | +++ b/target/arm/internals.h |
26 | @@ -XXX,XX +XXX,XX @@ static void aarch64_a35_initfn(Object *obj) | 20 | @@ -XXX,XX +XXX,XX @@ static inline ARMMMUIdx core_to_aa64_mmu_idx(int mmu_idx) |
27 | define_cortex_a72_a57_a53_cp_reginfo(cpu); | 21 | |
22 | int arm_mmu_idx_to_el(ARMMMUIdx mmu_idx); | ||
23 | |||
24 | -/* | ||
25 | - * Return the MMU index for a v7M CPU with all relevant information | ||
26 | - * manually specified. | ||
27 | - */ | ||
28 | -ARMMMUIdx arm_v7m_mmu_idx_all(CPUARMState *env, | ||
29 | - bool secstate, bool priv, bool negpri); | ||
30 | - | ||
31 | -/* | ||
32 | - * Return the MMU index for a v7M CPU in the specified security and | ||
33 | - * privilege state. | ||
34 | - */ | ||
35 | -ARMMMUIdx arm_v7m_mmu_idx_for_secstate_and_priv(CPUARMState *env, | ||
36 | - bool secstate, bool priv); | ||
37 | - | ||
38 | /* Return the MMU index for a v7M CPU in the specified security state */ | ||
39 | ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate); | ||
40 | |||
41 | diff --git a/target/arm/m_helper.c b/target/arm/m_helper.c | ||
42 | index XXXXXXX..XXXXXXX 100644 | ||
43 | --- a/target/arm/m_helper.c | ||
44 | +++ b/target/arm/m_helper.c | ||
45 | @@ -XXX,XX +XXX,XX @@ ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate) | ||
46 | |||
47 | #else /* !CONFIG_USER_ONLY */ | ||
48 | |||
49 | +static ARMMMUIdx arm_v7m_mmu_idx_all(CPUARMState *env, | ||
50 | + bool secstate, bool priv, bool negpri) | ||
51 | +{ | ||
52 | + ARMMMUIdx mmu_idx = ARM_MMU_IDX_M; | ||
53 | + | ||
54 | + if (priv) { | ||
55 | + mmu_idx |= ARM_MMU_IDX_M_PRIV; | ||
56 | + } | ||
57 | + | ||
58 | + if (negpri) { | ||
59 | + mmu_idx |= ARM_MMU_IDX_M_NEGPRI; | ||
60 | + } | ||
61 | + | ||
62 | + if (secstate) { | ||
63 | + mmu_idx |= ARM_MMU_IDX_M_S; | ||
64 | + } | ||
65 | + | ||
66 | + return mmu_idx; | ||
67 | +} | ||
68 | + | ||
69 | +static ARMMMUIdx arm_v7m_mmu_idx_for_secstate_and_priv(CPUARMState *env, | ||
70 | + bool secstate, bool priv) | ||
71 | +{ | ||
72 | + bool negpri = armv7m_nvic_neg_prio_requested(env->nvic, secstate); | ||
73 | + | ||
74 | + return arm_v7m_mmu_idx_all(env, secstate, priv, negpri); | ||
75 | +} | ||
76 | + | ||
77 | +/* Return the MMU index for a v7M CPU in the specified security state */ | ||
78 | +ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate) | ||
79 | +{ | ||
80 | + bool priv = arm_v7m_is_handler_mode(env) || | ||
81 | + !(env->v7m.control[secstate] & 1); | ||
82 | + | ||
83 | + return arm_v7m_mmu_idx_for_secstate_and_priv(env, secstate, priv); | ||
84 | +} | ||
85 | + | ||
86 | /* | ||
87 | * What kind of stack write are we doing? This affects how exceptions | ||
88 | * generated during the stacking are treated. | ||
89 | @@ -XXX,XX +XXX,XX @@ uint32_t HELPER(v7m_tt)(CPUARMState *env, uint32_t addr, uint32_t op) | ||
90 | return tt_resp; | ||
28 | } | 91 | } |
29 | 92 | ||
30 | -static void aarch64_a57_initfn(Object *obj) | 93 | -ARMMMUIdx arm_v7m_mmu_idx_all(CPUARMState *env, |
94 | - bool secstate, bool priv, bool negpri) | ||
31 | -{ | 95 | -{ |
32 | - ARMCPU *cpu = ARM_CPU(obj); | 96 | - ARMMMUIdx mmu_idx = ARM_MMU_IDX_M; |
33 | - | 97 | - |
34 | - cpu->dtb_compatible = "arm,cortex-a57"; | 98 | - if (priv) { |
35 | - set_feature(&cpu->env, ARM_FEATURE_V8); | 99 | - mmu_idx |= ARM_MMU_IDX_M_PRIV; |
36 | - set_feature(&cpu->env, ARM_FEATURE_NEON); | 100 | - } |
37 | - set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | 101 | - |
38 | - set_feature(&cpu->env, ARM_FEATURE_AARCH64); | 102 | - if (negpri) { |
39 | - set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | 103 | - mmu_idx |= ARM_MMU_IDX_M_NEGPRI; |
40 | - set_feature(&cpu->env, ARM_FEATURE_EL2); | 104 | - } |
41 | - set_feature(&cpu->env, ARM_FEATURE_EL3); | 105 | - |
42 | - set_feature(&cpu->env, ARM_FEATURE_PMU); | 106 | - if (secstate) { |
43 | - cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A57; | 107 | - mmu_idx |= ARM_MMU_IDX_M_S; |
44 | - cpu->midr = 0x411fd070; | 108 | - } |
45 | - cpu->revidr = 0x00000000; | 109 | - |
46 | - cpu->reset_fpsid = 0x41034070; | 110 | - return mmu_idx; |
47 | - cpu->isar.mvfr0 = 0x10110222; | ||
48 | - cpu->isar.mvfr1 = 0x12111111; | ||
49 | - cpu->isar.mvfr2 = 0x00000043; | ||
50 | - cpu->ctr = 0x8444c004; | ||
51 | - cpu->reset_sctlr = 0x00c50838; | ||
52 | - cpu->isar.id_pfr0 = 0x00000131; | ||
53 | - cpu->isar.id_pfr1 = 0x00011011; | ||
54 | - cpu->isar.id_dfr0 = 0x03010066; | ||
55 | - cpu->id_afr0 = 0x00000000; | ||
56 | - cpu->isar.id_mmfr0 = 0x10101105; | ||
57 | - cpu->isar.id_mmfr1 = 0x40000000; | ||
58 | - cpu->isar.id_mmfr2 = 0x01260000; | ||
59 | - cpu->isar.id_mmfr3 = 0x02102211; | ||
60 | - cpu->isar.id_isar0 = 0x02101110; | ||
61 | - cpu->isar.id_isar1 = 0x13112111; | ||
62 | - cpu->isar.id_isar2 = 0x21232042; | ||
63 | - cpu->isar.id_isar3 = 0x01112131; | ||
64 | - cpu->isar.id_isar4 = 0x00011142; | ||
65 | - cpu->isar.id_isar5 = 0x00011121; | ||
66 | - cpu->isar.id_isar6 = 0; | ||
67 | - cpu->isar.id_aa64pfr0 = 0x00002222; | ||
68 | - cpu->isar.id_aa64dfr0 = 0x10305106; | ||
69 | - cpu->isar.id_aa64isar0 = 0x00011120; | ||
70 | - cpu->isar.id_aa64mmfr0 = 0x00001124; | ||
71 | - cpu->isar.dbgdidr = 0x3516d000; | ||
72 | - cpu->isar.dbgdevid = 0x01110f13; | ||
73 | - cpu->isar.dbgdevid1 = 0x2; | ||
74 | - cpu->isar.reset_pmcr_el0 = 0x41013000; | ||
75 | - cpu->clidr = 0x0a200023; | ||
76 | - cpu->ccsidr[0] = 0x701fe00a; /* 32KB L1 dcache */ | ||
77 | - cpu->ccsidr[1] = 0x201fe012; /* 48KB L1 icache */ | ||
78 | - cpu->ccsidr[2] = 0x70ffe07a; /* 2048KB L2 cache */ | ||
79 | - cpu->dcz_blocksize = 4; /* 64 bytes */ | ||
80 | - cpu->gic_num_lrs = 4; | ||
81 | - cpu->gic_vpribits = 5; | ||
82 | - cpu->gic_vprebits = 5; | ||
83 | - cpu->gic_pribits = 5; | ||
84 | - define_cortex_a72_a57_a53_cp_reginfo(cpu); | ||
85 | -} | 111 | -} |
86 | - | 112 | - |
87 | -static void aarch64_a53_initfn(Object *obj) | 113 | -ARMMMUIdx arm_v7m_mmu_idx_for_secstate_and_priv(CPUARMState *env, |
114 | - bool secstate, bool priv) | ||
88 | -{ | 115 | -{ |
89 | - ARMCPU *cpu = ARM_CPU(obj); | 116 | - bool negpri = armv7m_nvic_neg_prio_requested(env->nvic, secstate); |
90 | - | 117 | - |
91 | - cpu->dtb_compatible = "arm,cortex-a53"; | 118 | - return arm_v7m_mmu_idx_all(env, secstate, priv, negpri); |
92 | - set_feature(&cpu->env, ARM_FEATURE_V8); | ||
93 | - set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
94 | - set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
95 | - set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
96 | - set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
97 | - set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
98 | - set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
99 | - set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
100 | - cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A53; | ||
101 | - cpu->midr = 0x410fd034; | ||
102 | - cpu->revidr = 0x00000000; | ||
103 | - cpu->reset_fpsid = 0x41034070; | ||
104 | - cpu->isar.mvfr0 = 0x10110222; | ||
105 | - cpu->isar.mvfr1 = 0x12111111; | ||
106 | - cpu->isar.mvfr2 = 0x00000043; | ||
107 | - cpu->ctr = 0x84448004; /* L1Ip = VIPT */ | ||
108 | - cpu->reset_sctlr = 0x00c50838; | ||
109 | - cpu->isar.id_pfr0 = 0x00000131; | ||
110 | - cpu->isar.id_pfr1 = 0x00011011; | ||
111 | - cpu->isar.id_dfr0 = 0x03010066; | ||
112 | - cpu->id_afr0 = 0x00000000; | ||
113 | - cpu->isar.id_mmfr0 = 0x10101105; | ||
114 | - cpu->isar.id_mmfr1 = 0x40000000; | ||
115 | - cpu->isar.id_mmfr2 = 0x01260000; | ||
116 | - cpu->isar.id_mmfr3 = 0x02102211; | ||
117 | - cpu->isar.id_isar0 = 0x02101110; | ||
118 | - cpu->isar.id_isar1 = 0x13112111; | ||
119 | - cpu->isar.id_isar2 = 0x21232042; | ||
120 | - cpu->isar.id_isar3 = 0x01112131; | ||
121 | - cpu->isar.id_isar4 = 0x00011142; | ||
122 | - cpu->isar.id_isar5 = 0x00011121; | ||
123 | - cpu->isar.id_isar6 = 0; | ||
124 | - cpu->isar.id_aa64pfr0 = 0x00002222; | ||
125 | - cpu->isar.id_aa64dfr0 = 0x10305106; | ||
126 | - cpu->isar.id_aa64isar0 = 0x00011120; | ||
127 | - cpu->isar.id_aa64mmfr0 = 0x00001122; /* 40 bit physical addr */ | ||
128 | - cpu->isar.dbgdidr = 0x3516d000; | ||
129 | - cpu->isar.dbgdevid = 0x00110f13; | ||
130 | - cpu->isar.dbgdevid1 = 0x1; | ||
131 | - cpu->isar.reset_pmcr_el0 = 0x41033000; | ||
132 | - cpu->clidr = 0x0a200023; | ||
133 | - cpu->ccsidr[0] = 0x700fe01a; /* 32KB L1 dcache */ | ||
134 | - cpu->ccsidr[1] = 0x201fe00a; /* 32KB L1 icache */ | ||
135 | - cpu->ccsidr[2] = 0x707fe07a; /* 1024KB L2 cache */ | ||
136 | - cpu->dcz_blocksize = 4; /* 64 bytes */ | ||
137 | - cpu->gic_num_lrs = 4; | ||
138 | - cpu->gic_vpribits = 5; | ||
139 | - cpu->gic_vprebits = 5; | ||
140 | - cpu->gic_pribits = 5; | ||
141 | - define_cortex_a72_a57_a53_cp_reginfo(cpu); | ||
142 | -} | 119 | -} |
143 | - | 120 | - |
144 | -static void aarch64_a72_initfn(Object *obj) | 121 | -/* Return the MMU index for a v7M CPU in the specified security state */ |
122 | -ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate) | ||
145 | -{ | 123 | -{ |
146 | - ARMCPU *cpu = ARM_CPU(obj); | 124 | - bool priv = arm_v7m_is_handler_mode(env) || |
125 | - !(env->v7m.control[secstate] & 1); | ||
147 | - | 126 | - |
148 | - cpu->dtb_compatible = "arm,cortex-a72"; | 127 | - return arm_v7m_mmu_idx_for_secstate_and_priv(env, secstate, priv); |
149 | - set_feature(&cpu->env, ARM_FEATURE_V8); | ||
150 | - set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
151 | - set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
152 | - set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
153 | - set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
154 | - set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
155 | - set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
156 | - set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
157 | - cpu->midr = 0x410fd083; | ||
158 | - cpu->revidr = 0x00000000; | ||
159 | - cpu->reset_fpsid = 0x41034080; | ||
160 | - cpu->isar.mvfr0 = 0x10110222; | ||
161 | - cpu->isar.mvfr1 = 0x12111111; | ||
162 | - cpu->isar.mvfr2 = 0x00000043; | ||
163 | - cpu->ctr = 0x8444c004; | ||
164 | - cpu->reset_sctlr = 0x00c50838; | ||
165 | - cpu->isar.id_pfr0 = 0x00000131; | ||
166 | - cpu->isar.id_pfr1 = 0x00011011; | ||
167 | - cpu->isar.id_dfr0 = 0x03010066; | ||
168 | - cpu->id_afr0 = 0x00000000; | ||
169 | - cpu->isar.id_mmfr0 = 0x10201105; | ||
170 | - cpu->isar.id_mmfr1 = 0x40000000; | ||
171 | - cpu->isar.id_mmfr2 = 0x01260000; | ||
172 | - cpu->isar.id_mmfr3 = 0x02102211; | ||
173 | - cpu->isar.id_isar0 = 0x02101110; | ||
174 | - cpu->isar.id_isar1 = 0x13112111; | ||
175 | - cpu->isar.id_isar2 = 0x21232042; | ||
176 | - cpu->isar.id_isar3 = 0x01112131; | ||
177 | - cpu->isar.id_isar4 = 0x00011142; | ||
178 | - cpu->isar.id_isar5 = 0x00011121; | ||
179 | - cpu->isar.id_aa64pfr0 = 0x00002222; | ||
180 | - cpu->isar.id_aa64dfr0 = 0x10305106; | ||
181 | - cpu->isar.id_aa64isar0 = 0x00011120; | ||
182 | - cpu->isar.id_aa64mmfr0 = 0x00001124; | ||
183 | - cpu->isar.dbgdidr = 0x3516d000; | ||
184 | - cpu->isar.dbgdevid = 0x01110f13; | ||
185 | - cpu->isar.dbgdevid1 = 0x2; | ||
186 | - cpu->isar.reset_pmcr_el0 = 0x41023000; | ||
187 | - cpu->clidr = 0x0a200023; | ||
188 | - cpu->ccsidr[0] = 0x701fe00a; /* 32KB L1 dcache */ | ||
189 | - cpu->ccsidr[1] = 0x201fe012; /* 48KB L1 icache */ | ||
190 | - cpu->ccsidr[2] = 0x707fe07a; /* 1MB L2 cache */ | ||
191 | - cpu->dcz_blocksize = 4; /* 64 bytes */ | ||
192 | - cpu->gic_num_lrs = 4; | ||
193 | - cpu->gic_vpribits = 5; | ||
194 | - cpu->gic_vprebits = 5; | ||
195 | - cpu->gic_pribits = 5; | ||
196 | - define_cortex_a72_a57_a53_cp_reginfo(cpu); | ||
197 | -} | 128 | -} |
198 | - | 129 | - |
199 | -static void aarch64_a76_initfn(Object *obj) | 130 | #endif /* !CONFIG_USER_ONLY */ |
200 | -{ | ||
201 | - ARMCPU *cpu = ARM_CPU(obj); | ||
202 | - | ||
203 | - cpu->dtb_compatible = "arm,cortex-a76"; | ||
204 | - set_feature(&cpu->env, ARM_FEATURE_V8); | ||
205 | - set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
206 | - set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
207 | - set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
208 | - set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
209 | - set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
210 | - set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
211 | - set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
212 | - | ||
213 | - /* Ordered by B2.4 AArch64 registers by functional group */ | ||
214 | - cpu->clidr = 0x82000023; | ||
215 | - cpu->ctr = 0x8444C004; | ||
216 | - cpu->dcz_blocksize = 4; | ||
217 | - cpu->isar.id_aa64dfr0 = 0x0000000010305408ull; | ||
218 | - cpu->isar.id_aa64isar0 = 0x0000100010211120ull; | ||
219 | - cpu->isar.id_aa64isar1 = 0x0000000000100001ull; | ||
220 | - cpu->isar.id_aa64mmfr0 = 0x0000000000101122ull; | ||
221 | - cpu->isar.id_aa64mmfr1 = 0x0000000010212122ull; | ||
222 | - cpu->isar.id_aa64mmfr2 = 0x0000000000001011ull; | ||
223 | - cpu->isar.id_aa64pfr0 = 0x1100000010111112ull; /* GIC filled in later */ | ||
224 | - cpu->isar.id_aa64pfr1 = 0x0000000000000010ull; | ||
225 | - cpu->id_afr0 = 0x00000000; | ||
226 | - cpu->isar.id_dfr0 = 0x04010088; | ||
227 | - cpu->isar.id_isar0 = 0x02101110; | ||
228 | - cpu->isar.id_isar1 = 0x13112111; | ||
229 | - cpu->isar.id_isar2 = 0x21232042; | ||
230 | - cpu->isar.id_isar3 = 0x01112131; | ||
231 | - cpu->isar.id_isar4 = 0x00010142; | ||
232 | - cpu->isar.id_isar5 = 0x01011121; | ||
233 | - cpu->isar.id_isar6 = 0x00000010; | ||
234 | - cpu->isar.id_mmfr0 = 0x10201105; | ||
235 | - cpu->isar.id_mmfr1 = 0x40000000; | ||
236 | - cpu->isar.id_mmfr2 = 0x01260000; | ||
237 | - cpu->isar.id_mmfr3 = 0x02122211; | ||
238 | - cpu->isar.id_mmfr4 = 0x00021110; | ||
239 | - cpu->isar.id_pfr0 = 0x10010131; | ||
240 | - cpu->isar.id_pfr1 = 0x00010000; /* GIC filled in later */ | ||
241 | - cpu->isar.id_pfr2 = 0x00000011; | ||
242 | - cpu->midr = 0x414fd0b1; /* r4p1 */ | ||
243 | - cpu->revidr = 0; | ||
244 | - | ||
245 | - /* From B2.18 CCSIDR_EL1 */ | ||
246 | - cpu->ccsidr[0] = 0x701fe01a; /* 64KB L1 dcache */ | ||
247 | - cpu->ccsidr[1] = 0x201fe01a; /* 64KB L1 icache */ | ||
248 | - cpu->ccsidr[2] = 0x707fe03a; /* 512KB L2 cache */ | ||
249 | - | ||
250 | - /* From B2.93 SCTLR_EL3 */ | ||
251 | - cpu->reset_sctlr = 0x30c50838; | ||
252 | - | ||
253 | - /* From B4.23 ICH_VTR_EL2 */ | ||
254 | - cpu->gic_num_lrs = 4; | ||
255 | - cpu->gic_vpribits = 5; | ||
256 | - cpu->gic_vprebits = 5; | ||
257 | - cpu->gic_pribits = 5; | ||
258 | - | ||
259 | - /* From B5.1 AdvSIMD AArch64 register summary */ | ||
260 | - cpu->isar.mvfr0 = 0x10110222; | ||
261 | - cpu->isar.mvfr1 = 0x13211111; | ||
262 | - cpu->isar.mvfr2 = 0x00000043; | ||
263 | - | ||
264 | - /* From D5.1 AArch64 PMU register summary */ | ||
265 | - cpu->isar.reset_pmcr_el0 = 0x410b3000; | ||
266 | -} | ||
267 | - | ||
268 | -static void aarch64_neoverse_n1_initfn(Object *obj) | ||
269 | -{ | ||
270 | - ARMCPU *cpu = ARM_CPU(obj); | ||
271 | - | ||
272 | - cpu->dtb_compatible = "arm,neoverse-n1"; | ||
273 | - set_feature(&cpu->env, ARM_FEATURE_V8); | ||
274 | - set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
275 | - set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
276 | - set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
277 | - set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
278 | - set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
279 | - set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
280 | - set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
281 | - | ||
282 | - /* Ordered by B2.4 AArch64 registers by functional group */ | ||
283 | - cpu->clidr = 0x82000023; | ||
284 | - cpu->ctr = 0x8444c004; | ||
285 | - cpu->dcz_blocksize = 4; | ||
286 | - cpu->isar.id_aa64dfr0 = 0x0000000110305408ull; | ||
287 | - cpu->isar.id_aa64isar0 = 0x0000100010211120ull; | ||
288 | - cpu->isar.id_aa64isar1 = 0x0000000000100001ull; | ||
289 | - cpu->isar.id_aa64mmfr0 = 0x0000000000101125ull; | ||
290 | - cpu->isar.id_aa64mmfr1 = 0x0000000010212122ull; | ||
291 | - cpu->isar.id_aa64mmfr2 = 0x0000000000001011ull; | ||
292 | - cpu->isar.id_aa64pfr0 = 0x1100000010111112ull; /* GIC filled in later */ | ||
293 | - cpu->isar.id_aa64pfr1 = 0x0000000000000020ull; | ||
294 | - cpu->id_afr0 = 0x00000000; | ||
295 | - cpu->isar.id_dfr0 = 0x04010088; | ||
296 | - cpu->isar.id_isar0 = 0x02101110; | ||
297 | - cpu->isar.id_isar1 = 0x13112111; | ||
298 | - cpu->isar.id_isar2 = 0x21232042; | ||
299 | - cpu->isar.id_isar3 = 0x01112131; | ||
300 | - cpu->isar.id_isar4 = 0x00010142; | ||
301 | - cpu->isar.id_isar5 = 0x01011121; | ||
302 | - cpu->isar.id_isar6 = 0x00000010; | ||
303 | - cpu->isar.id_mmfr0 = 0x10201105; | ||
304 | - cpu->isar.id_mmfr1 = 0x40000000; | ||
305 | - cpu->isar.id_mmfr2 = 0x01260000; | ||
306 | - cpu->isar.id_mmfr3 = 0x02122211; | ||
307 | - cpu->isar.id_mmfr4 = 0x00021110; | ||
308 | - cpu->isar.id_pfr0 = 0x10010131; | ||
309 | - cpu->isar.id_pfr1 = 0x00010000; /* GIC filled in later */ | ||
310 | - cpu->isar.id_pfr2 = 0x00000011; | ||
311 | - cpu->midr = 0x414fd0c1; /* r4p1 */ | ||
312 | - cpu->revidr = 0; | ||
313 | - | ||
314 | - /* From B2.23 CCSIDR_EL1 */ | ||
315 | - cpu->ccsidr[0] = 0x701fe01a; /* 64KB L1 dcache */ | ||
316 | - cpu->ccsidr[1] = 0x201fe01a; /* 64KB L1 icache */ | ||
317 | - cpu->ccsidr[2] = 0x70ffe03a; /* 1MB L2 cache */ | ||
318 | - | ||
319 | - /* From B2.98 SCTLR_EL3 */ | ||
320 | - cpu->reset_sctlr = 0x30c50838; | ||
321 | - | ||
322 | - /* From B4.23 ICH_VTR_EL2 */ | ||
323 | - cpu->gic_num_lrs = 4; | ||
324 | - cpu->gic_vpribits = 5; | ||
325 | - cpu->gic_vprebits = 5; | ||
326 | - cpu->gic_pribits = 5; | ||
327 | - | ||
328 | - /* From B5.1 AdvSIMD AArch64 register summary */ | ||
329 | - cpu->isar.mvfr0 = 0x10110222; | ||
330 | - cpu->isar.mvfr1 = 0x13211111; | ||
331 | - cpu->isar.mvfr2 = 0x00000043; | ||
332 | - | ||
333 | - /* From D5.1 AArch64 PMU register summary */ | ||
334 | - cpu->isar.reset_pmcr_el0 = 0x410c3000; | ||
335 | -} | ||
336 | - | ||
337 | void arm_cpu_sve_finalize(ARMCPU *cpu, Error **errp) | ||
338 | { | ||
339 | /* | ||
340 | @@ -XXX,XX +XXX,XX @@ void arm_cpu_lpa2_finalize(ARMCPU *cpu, Error **errp) | ||
341 | cpu->isar.id_aa64mmfr0 = t; | ||
342 | } | ||
343 | |||
344 | +static void aarch64_a57_initfn(Object *obj) | ||
345 | +{ | ||
346 | + ARMCPU *cpu = ARM_CPU(obj); | ||
347 | + | ||
348 | + cpu->dtb_compatible = "arm,cortex-a57"; | ||
349 | + set_feature(&cpu->env, ARM_FEATURE_V8); | ||
350 | + set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
351 | + set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
352 | + set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
353 | + set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
354 | + set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
355 | + set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
356 | + set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
357 | + cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A57; | ||
358 | + cpu->midr = 0x411fd070; | ||
359 | + cpu->revidr = 0x00000000; | ||
360 | + cpu->reset_fpsid = 0x41034070; | ||
361 | + cpu->isar.mvfr0 = 0x10110222; | ||
362 | + cpu->isar.mvfr1 = 0x12111111; | ||
363 | + cpu->isar.mvfr2 = 0x00000043; | ||
364 | + cpu->ctr = 0x8444c004; | ||
365 | + cpu->reset_sctlr = 0x00c50838; | ||
366 | + cpu->isar.id_pfr0 = 0x00000131; | ||
367 | + cpu->isar.id_pfr1 = 0x00011011; | ||
368 | + cpu->isar.id_dfr0 = 0x03010066; | ||
369 | + cpu->id_afr0 = 0x00000000; | ||
370 | + cpu->isar.id_mmfr0 = 0x10101105; | ||
371 | + cpu->isar.id_mmfr1 = 0x40000000; | ||
372 | + cpu->isar.id_mmfr2 = 0x01260000; | ||
373 | + cpu->isar.id_mmfr3 = 0x02102211; | ||
374 | + cpu->isar.id_isar0 = 0x02101110; | ||
375 | + cpu->isar.id_isar1 = 0x13112111; | ||
376 | + cpu->isar.id_isar2 = 0x21232042; | ||
377 | + cpu->isar.id_isar3 = 0x01112131; | ||
378 | + cpu->isar.id_isar4 = 0x00011142; | ||
379 | + cpu->isar.id_isar5 = 0x00011121; | ||
380 | + cpu->isar.id_isar6 = 0; | ||
381 | + cpu->isar.id_aa64pfr0 = 0x00002222; | ||
382 | + cpu->isar.id_aa64dfr0 = 0x10305106; | ||
383 | + cpu->isar.id_aa64isar0 = 0x00011120; | ||
384 | + cpu->isar.id_aa64mmfr0 = 0x00001124; | ||
385 | + cpu->isar.dbgdidr = 0x3516d000; | ||
386 | + cpu->isar.dbgdevid = 0x01110f13; | ||
387 | + cpu->isar.dbgdevid1 = 0x2; | ||
388 | + cpu->isar.reset_pmcr_el0 = 0x41013000; | ||
389 | + cpu->clidr = 0x0a200023; | ||
390 | + cpu->ccsidr[0] = 0x701fe00a; /* 32KB L1 dcache */ | ||
391 | + cpu->ccsidr[1] = 0x201fe012; /* 48KB L1 icache */ | ||
392 | + cpu->ccsidr[2] = 0x70ffe07a; /* 2048KB L2 cache */ | ||
393 | + cpu->dcz_blocksize = 4; /* 64 bytes */ | ||
394 | + cpu->gic_num_lrs = 4; | ||
395 | + cpu->gic_vpribits = 5; | ||
396 | + cpu->gic_vprebits = 5; | ||
397 | + cpu->gic_pribits = 5; | ||
398 | + define_cortex_a72_a57_a53_cp_reginfo(cpu); | ||
399 | +} | ||
400 | + | ||
401 | +static void aarch64_a53_initfn(Object *obj) | ||
402 | +{ | ||
403 | + ARMCPU *cpu = ARM_CPU(obj); | ||
404 | + | ||
405 | + cpu->dtb_compatible = "arm,cortex-a53"; | ||
406 | + set_feature(&cpu->env, ARM_FEATURE_V8); | ||
407 | + set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
408 | + set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
409 | + set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
410 | + set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
411 | + set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
412 | + set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
413 | + set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
414 | + cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A53; | ||
415 | + cpu->midr = 0x410fd034; | ||
416 | + cpu->revidr = 0x00000000; | ||
417 | + cpu->reset_fpsid = 0x41034070; | ||
418 | + cpu->isar.mvfr0 = 0x10110222; | ||
419 | + cpu->isar.mvfr1 = 0x12111111; | ||
420 | + cpu->isar.mvfr2 = 0x00000043; | ||
421 | + cpu->ctr = 0x84448004; /* L1Ip = VIPT */ | ||
422 | + cpu->reset_sctlr = 0x00c50838; | ||
423 | + cpu->isar.id_pfr0 = 0x00000131; | ||
424 | + cpu->isar.id_pfr1 = 0x00011011; | ||
425 | + cpu->isar.id_dfr0 = 0x03010066; | ||
426 | + cpu->id_afr0 = 0x00000000; | ||
427 | + cpu->isar.id_mmfr0 = 0x10101105; | ||
428 | + cpu->isar.id_mmfr1 = 0x40000000; | ||
429 | + cpu->isar.id_mmfr2 = 0x01260000; | ||
430 | + cpu->isar.id_mmfr3 = 0x02102211; | ||
431 | + cpu->isar.id_isar0 = 0x02101110; | ||
432 | + cpu->isar.id_isar1 = 0x13112111; | ||
433 | + cpu->isar.id_isar2 = 0x21232042; | ||
434 | + cpu->isar.id_isar3 = 0x01112131; | ||
435 | + cpu->isar.id_isar4 = 0x00011142; | ||
436 | + cpu->isar.id_isar5 = 0x00011121; | ||
437 | + cpu->isar.id_isar6 = 0; | ||
438 | + cpu->isar.id_aa64pfr0 = 0x00002222; | ||
439 | + cpu->isar.id_aa64dfr0 = 0x10305106; | ||
440 | + cpu->isar.id_aa64isar0 = 0x00011120; | ||
441 | + cpu->isar.id_aa64mmfr0 = 0x00001122; /* 40 bit physical addr */ | ||
442 | + cpu->isar.dbgdidr = 0x3516d000; | ||
443 | + cpu->isar.dbgdevid = 0x00110f13; | ||
444 | + cpu->isar.dbgdevid1 = 0x1; | ||
445 | + cpu->isar.reset_pmcr_el0 = 0x41033000; | ||
446 | + cpu->clidr = 0x0a200023; | ||
447 | + cpu->ccsidr[0] = 0x700fe01a; /* 32KB L1 dcache */ | ||
448 | + cpu->ccsidr[1] = 0x201fe00a; /* 32KB L1 icache */ | ||
449 | + cpu->ccsidr[2] = 0x707fe07a; /* 1024KB L2 cache */ | ||
450 | + cpu->dcz_blocksize = 4; /* 64 bytes */ | ||
451 | + cpu->gic_num_lrs = 4; | ||
452 | + cpu->gic_vpribits = 5; | ||
453 | + cpu->gic_vprebits = 5; | ||
454 | + cpu->gic_pribits = 5; | ||
455 | + define_cortex_a72_a57_a53_cp_reginfo(cpu); | ||
456 | +} | ||
457 | + | ||
458 | +static void aarch64_a72_initfn(Object *obj) | ||
459 | +{ | ||
460 | + ARMCPU *cpu = ARM_CPU(obj); | ||
461 | + | ||
462 | + cpu->dtb_compatible = "arm,cortex-a72"; | ||
463 | + set_feature(&cpu->env, ARM_FEATURE_V8); | ||
464 | + set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
465 | + set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
466 | + set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
467 | + set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
468 | + set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
469 | + set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
470 | + set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
471 | + cpu->midr = 0x410fd083; | ||
472 | + cpu->revidr = 0x00000000; | ||
473 | + cpu->reset_fpsid = 0x41034080; | ||
474 | + cpu->isar.mvfr0 = 0x10110222; | ||
475 | + cpu->isar.mvfr1 = 0x12111111; | ||
476 | + cpu->isar.mvfr2 = 0x00000043; | ||
477 | + cpu->ctr = 0x8444c004; | ||
478 | + cpu->reset_sctlr = 0x00c50838; | ||
479 | + cpu->isar.id_pfr0 = 0x00000131; | ||
480 | + cpu->isar.id_pfr1 = 0x00011011; | ||
481 | + cpu->isar.id_dfr0 = 0x03010066; | ||
482 | + cpu->id_afr0 = 0x00000000; | ||
483 | + cpu->isar.id_mmfr0 = 0x10201105; | ||
484 | + cpu->isar.id_mmfr1 = 0x40000000; | ||
485 | + cpu->isar.id_mmfr2 = 0x01260000; | ||
486 | + cpu->isar.id_mmfr3 = 0x02102211; | ||
487 | + cpu->isar.id_isar0 = 0x02101110; | ||
488 | + cpu->isar.id_isar1 = 0x13112111; | ||
489 | + cpu->isar.id_isar2 = 0x21232042; | ||
490 | + cpu->isar.id_isar3 = 0x01112131; | ||
491 | + cpu->isar.id_isar4 = 0x00011142; | ||
492 | + cpu->isar.id_isar5 = 0x00011121; | ||
493 | + cpu->isar.id_aa64pfr0 = 0x00002222; | ||
494 | + cpu->isar.id_aa64dfr0 = 0x10305106; | ||
495 | + cpu->isar.id_aa64isar0 = 0x00011120; | ||
496 | + cpu->isar.id_aa64mmfr0 = 0x00001124; | ||
497 | + cpu->isar.dbgdidr = 0x3516d000; | ||
498 | + cpu->isar.dbgdevid = 0x01110f13; | ||
499 | + cpu->isar.dbgdevid1 = 0x2; | ||
500 | + cpu->isar.reset_pmcr_el0 = 0x41023000; | ||
501 | + cpu->clidr = 0x0a200023; | ||
502 | + cpu->ccsidr[0] = 0x701fe00a; /* 32KB L1 dcache */ | ||
503 | + cpu->ccsidr[1] = 0x201fe012; /* 48KB L1 icache */ | ||
504 | + cpu->ccsidr[2] = 0x707fe07a; /* 1MB L2 cache */ | ||
505 | + cpu->dcz_blocksize = 4; /* 64 bytes */ | ||
506 | + cpu->gic_num_lrs = 4; | ||
507 | + cpu->gic_vpribits = 5; | ||
508 | + cpu->gic_vprebits = 5; | ||
509 | + cpu->gic_pribits = 5; | ||
510 | + define_cortex_a72_a57_a53_cp_reginfo(cpu); | ||
511 | +} | ||
512 | + | ||
513 | +static void aarch64_a76_initfn(Object *obj) | ||
514 | +{ | ||
515 | + ARMCPU *cpu = ARM_CPU(obj); | ||
516 | + | ||
517 | + cpu->dtb_compatible = "arm,cortex-a76"; | ||
518 | + set_feature(&cpu->env, ARM_FEATURE_V8); | ||
519 | + set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
520 | + set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
521 | + set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
522 | + set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
523 | + set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
524 | + set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
525 | + set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
526 | + | ||
527 | + /* Ordered by B2.4 AArch64 registers by functional group */ | ||
528 | + cpu->clidr = 0x82000023; | ||
529 | + cpu->ctr = 0x8444C004; | ||
530 | + cpu->dcz_blocksize = 4; | ||
531 | + cpu->isar.id_aa64dfr0 = 0x0000000010305408ull; | ||
532 | + cpu->isar.id_aa64isar0 = 0x0000100010211120ull; | ||
533 | + cpu->isar.id_aa64isar1 = 0x0000000000100001ull; | ||
534 | + cpu->isar.id_aa64mmfr0 = 0x0000000000101122ull; | ||
535 | + cpu->isar.id_aa64mmfr1 = 0x0000000010212122ull; | ||
536 | + cpu->isar.id_aa64mmfr2 = 0x0000000000001011ull; | ||
537 | + cpu->isar.id_aa64pfr0 = 0x1100000010111112ull; /* GIC filled in later */ | ||
538 | + cpu->isar.id_aa64pfr1 = 0x0000000000000010ull; | ||
539 | + cpu->id_afr0 = 0x00000000; | ||
540 | + cpu->isar.id_dfr0 = 0x04010088; | ||
541 | + cpu->isar.id_isar0 = 0x02101110; | ||
542 | + cpu->isar.id_isar1 = 0x13112111; | ||
543 | + cpu->isar.id_isar2 = 0x21232042; | ||
544 | + cpu->isar.id_isar3 = 0x01112131; | ||
545 | + cpu->isar.id_isar4 = 0x00010142; | ||
546 | + cpu->isar.id_isar5 = 0x01011121; | ||
547 | + cpu->isar.id_isar6 = 0x00000010; | ||
548 | + cpu->isar.id_mmfr0 = 0x10201105; | ||
549 | + cpu->isar.id_mmfr1 = 0x40000000; | ||
550 | + cpu->isar.id_mmfr2 = 0x01260000; | ||
551 | + cpu->isar.id_mmfr3 = 0x02122211; | ||
552 | + cpu->isar.id_mmfr4 = 0x00021110; | ||
553 | + cpu->isar.id_pfr0 = 0x10010131; | ||
554 | + cpu->isar.id_pfr1 = 0x00010000; /* GIC filled in later */ | ||
555 | + cpu->isar.id_pfr2 = 0x00000011; | ||
556 | + cpu->midr = 0x414fd0b1; /* r4p1 */ | ||
557 | + cpu->revidr = 0; | ||
558 | + | ||
559 | + /* From B2.18 CCSIDR_EL1 */ | ||
560 | + cpu->ccsidr[0] = 0x701fe01a; /* 64KB L1 dcache */ | ||
561 | + cpu->ccsidr[1] = 0x201fe01a; /* 64KB L1 icache */ | ||
562 | + cpu->ccsidr[2] = 0x707fe03a; /* 512KB L2 cache */ | ||
563 | + | ||
564 | + /* From B2.93 SCTLR_EL3 */ | ||
565 | + cpu->reset_sctlr = 0x30c50838; | ||
566 | + | ||
567 | + /* From B4.23 ICH_VTR_EL2 */ | ||
568 | + cpu->gic_num_lrs = 4; | ||
569 | + cpu->gic_vpribits = 5; | ||
570 | + cpu->gic_vprebits = 5; | ||
571 | + cpu->gic_pribits = 5; | ||
572 | + | ||
573 | + /* From B5.1 AdvSIMD AArch64 register summary */ | ||
574 | + cpu->isar.mvfr0 = 0x10110222; | ||
575 | + cpu->isar.mvfr1 = 0x13211111; | ||
576 | + cpu->isar.mvfr2 = 0x00000043; | ||
577 | + | ||
578 | + /* From D5.1 AArch64 PMU register summary */ | ||
579 | + cpu->isar.reset_pmcr_el0 = 0x410b3000; | ||
580 | +} | ||
581 | + | ||
582 | +static void aarch64_a64fx_initfn(Object *obj) | ||
583 | +{ | ||
584 | + ARMCPU *cpu = ARM_CPU(obj); | ||
585 | + | ||
586 | + cpu->dtb_compatible = "arm,a64fx"; | ||
587 | + set_feature(&cpu->env, ARM_FEATURE_V8); | ||
588 | + set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
589 | + set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
590 | + set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
591 | + set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
592 | + set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
593 | + set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
594 | + cpu->midr = 0x461f0010; | ||
595 | + cpu->revidr = 0x00000000; | ||
596 | + cpu->ctr = 0x86668006; | ||
597 | + cpu->reset_sctlr = 0x30000180; | ||
598 | + cpu->isar.id_aa64pfr0 = 0x0000000101111111; /* No RAS Extensions */ | ||
599 | + cpu->isar.id_aa64pfr1 = 0x0000000000000000; | ||
600 | + cpu->isar.id_aa64dfr0 = 0x0000000010305408; | ||
601 | + cpu->isar.id_aa64dfr1 = 0x0000000000000000; | ||
602 | + cpu->id_aa64afr0 = 0x0000000000000000; | ||
603 | + cpu->id_aa64afr1 = 0x0000000000000000; | ||
604 | + cpu->isar.id_aa64mmfr0 = 0x0000000000001122; | ||
605 | + cpu->isar.id_aa64mmfr1 = 0x0000000011212100; | ||
606 | + cpu->isar.id_aa64mmfr2 = 0x0000000000001011; | ||
607 | + cpu->isar.id_aa64isar0 = 0x0000000010211120; | ||
608 | + cpu->isar.id_aa64isar1 = 0x0000000000010001; | ||
609 | + cpu->isar.id_aa64zfr0 = 0x0000000000000000; | ||
610 | + cpu->clidr = 0x0000000080000023; | ||
611 | + cpu->ccsidr[0] = 0x7007e01c; /* 64KB L1 dcache */ | ||
612 | + cpu->ccsidr[1] = 0x2007e01c; /* 64KB L1 icache */ | ||
613 | + cpu->ccsidr[2] = 0x70ffe07c; /* 8MB L2 cache */ | ||
614 | + cpu->dcz_blocksize = 6; /* 256 bytes */ | ||
615 | + cpu->gic_num_lrs = 4; | ||
616 | + cpu->gic_vpribits = 5; | ||
617 | + cpu->gic_vprebits = 5; | ||
618 | + cpu->gic_pribits = 5; | ||
619 | + | ||
620 | + /* The A64FX supports only 128, 256 and 512 bit vector lengths */ | ||
621 | + aarch64_add_sve_properties(obj); | ||
622 | + cpu->sve_vq.supported = (1 << 0) /* 128bit */ | ||
623 | + | (1 << 1) /* 256bit */ | ||
624 | + | (1 << 3); /* 512bit */ | ||
625 | + | ||
626 | + cpu->isar.reset_pmcr_el0 = 0x46014040; | ||
627 | + | ||
628 | + /* TODO: Add A64FX specific HPC extension registers */ | ||
629 | +} | ||
630 | + | ||
631 | +static void aarch64_neoverse_n1_initfn(Object *obj) | ||
632 | +{ | ||
633 | + ARMCPU *cpu = ARM_CPU(obj); | ||
634 | + | ||
635 | + cpu->dtb_compatible = "arm,neoverse-n1"; | ||
636 | + set_feature(&cpu->env, ARM_FEATURE_V8); | ||
637 | + set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
638 | + set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
639 | + set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
640 | + set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | ||
641 | + set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
642 | + set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
643 | + set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
644 | + | ||
645 | + /* Ordered by B2.4 AArch64 registers by functional group */ | ||
646 | + cpu->clidr = 0x82000023; | ||
647 | + cpu->ctr = 0x8444c004; | ||
648 | + cpu->dcz_blocksize = 4; | ||
649 | + cpu->isar.id_aa64dfr0 = 0x0000000110305408ull; | ||
650 | + cpu->isar.id_aa64isar0 = 0x0000100010211120ull; | ||
651 | + cpu->isar.id_aa64isar1 = 0x0000000000100001ull; | ||
652 | + cpu->isar.id_aa64mmfr0 = 0x0000000000101125ull; | ||
653 | + cpu->isar.id_aa64mmfr1 = 0x0000000010212122ull; | ||
654 | + cpu->isar.id_aa64mmfr2 = 0x0000000000001011ull; | ||
655 | + cpu->isar.id_aa64pfr0 = 0x1100000010111112ull; /* GIC filled in later */ | ||
656 | + cpu->isar.id_aa64pfr1 = 0x0000000000000020ull; | ||
657 | + cpu->id_afr0 = 0x00000000; | ||
658 | + cpu->isar.id_dfr0 = 0x04010088; | ||
659 | + cpu->isar.id_isar0 = 0x02101110; | ||
660 | + cpu->isar.id_isar1 = 0x13112111; | ||
661 | + cpu->isar.id_isar2 = 0x21232042; | ||
662 | + cpu->isar.id_isar3 = 0x01112131; | ||
663 | + cpu->isar.id_isar4 = 0x00010142; | ||
664 | + cpu->isar.id_isar5 = 0x01011121; | ||
665 | + cpu->isar.id_isar6 = 0x00000010; | ||
666 | + cpu->isar.id_mmfr0 = 0x10201105; | ||
667 | + cpu->isar.id_mmfr1 = 0x40000000; | ||
668 | + cpu->isar.id_mmfr2 = 0x01260000; | ||
669 | + cpu->isar.id_mmfr3 = 0x02122211; | ||
670 | + cpu->isar.id_mmfr4 = 0x00021110; | ||
671 | + cpu->isar.id_pfr0 = 0x10010131; | ||
672 | + cpu->isar.id_pfr1 = 0x00010000; /* GIC filled in later */ | ||
673 | + cpu->isar.id_pfr2 = 0x00000011; | ||
674 | + cpu->midr = 0x414fd0c1; /* r4p1 */ | ||
675 | + cpu->revidr = 0; | ||
676 | + | ||
677 | + /* From B2.23 CCSIDR_EL1 */ | ||
678 | + cpu->ccsidr[0] = 0x701fe01a; /* 64KB L1 dcache */ | ||
679 | + cpu->ccsidr[1] = 0x201fe01a; /* 64KB L1 icache */ | ||
680 | + cpu->ccsidr[2] = 0x70ffe03a; /* 1MB L2 cache */ | ||
681 | + | ||
682 | + /* From B2.98 SCTLR_EL3 */ | ||
683 | + cpu->reset_sctlr = 0x30c50838; | ||
684 | + | ||
685 | + /* From B4.23 ICH_VTR_EL2 */ | ||
686 | + cpu->gic_num_lrs = 4; | ||
687 | + cpu->gic_vpribits = 5; | ||
688 | + cpu->gic_vprebits = 5; | ||
689 | + cpu->gic_pribits = 5; | ||
690 | + | ||
691 | + /* From B5.1 AdvSIMD AArch64 register summary */ | ||
692 | + cpu->isar.mvfr0 = 0x10110222; | ||
693 | + cpu->isar.mvfr1 = 0x13211111; | ||
694 | + cpu->isar.mvfr2 = 0x00000043; | ||
695 | + | ||
696 | + /* From D5.1 AArch64 PMU register summary */ | ||
697 | + cpu->isar.reset_pmcr_el0 = 0x410c3000; | ||
698 | +} | ||
699 | + | ||
700 | static void aarch64_host_initfn(Object *obj) | ||
701 | { | ||
702 | #if defined(CONFIG_KVM) | ||
703 | @@ -XXX,XX +XXX,XX @@ static void aarch64_max_initfn(Object *obj) | ||
704 | qdev_property_add_static(DEVICE(obj), &arm_cpu_lpa2_property); | ||
705 | } | ||
706 | |||
707 | -static void aarch64_a64fx_initfn(Object *obj) | ||
708 | -{ | ||
709 | - ARMCPU *cpu = ARM_CPU(obj); | ||
710 | - | ||
711 | - cpu->dtb_compatible = "arm,a64fx"; | ||
712 | - set_feature(&cpu->env, ARM_FEATURE_V8); | ||
713 | - set_feature(&cpu->env, ARM_FEATURE_NEON); | ||
714 | - set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | ||
715 | - set_feature(&cpu->env, ARM_FEATURE_AARCH64); | ||
716 | - set_feature(&cpu->env, ARM_FEATURE_EL2); | ||
717 | - set_feature(&cpu->env, ARM_FEATURE_EL3); | ||
718 | - set_feature(&cpu->env, ARM_FEATURE_PMU); | ||
719 | - cpu->midr = 0x461f0010; | ||
720 | - cpu->revidr = 0x00000000; | ||
721 | - cpu->ctr = 0x86668006; | ||
722 | - cpu->reset_sctlr = 0x30000180; | ||
723 | - cpu->isar.id_aa64pfr0 = 0x0000000101111111; /* No RAS Extensions */ | ||
724 | - cpu->isar.id_aa64pfr1 = 0x0000000000000000; | ||
725 | - cpu->isar.id_aa64dfr0 = 0x0000000010305408; | ||
726 | - cpu->isar.id_aa64dfr1 = 0x0000000000000000; | ||
727 | - cpu->id_aa64afr0 = 0x0000000000000000; | ||
728 | - cpu->id_aa64afr1 = 0x0000000000000000; | ||
729 | - cpu->isar.id_aa64mmfr0 = 0x0000000000001122; | ||
730 | - cpu->isar.id_aa64mmfr1 = 0x0000000011212100; | ||
731 | - cpu->isar.id_aa64mmfr2 = 0x0000000000001011; | ||
732 | - cpu->isar.id_aa64isar0 = 0x0000000010211120; | ||
733 | - cpu->isar.id_aa64isar1 = 0x0000000000010001; | ||
734 | - cpu->isar.id_aa64zfr0 = 0x0000000000000000; | ||
735 | - cpu->clidr = 0x0000000080000023; | ||
736 | - cpu->ccsidr[0] = 0x7007e01c; /* 64KB L1 dcache */ | ||
737 | - cpu->ccsidr[1] = 0x2007e01c; /* 64KB L1 icache */ | ||
738 | - cpu->ccsidr[2] = 0x70ffe07c; /* 8MB L2 cache */ | ||
739 | - cpu->dcz_blocksize = 6; /* 256 bytes */ | ||
740 | - cpu->gic_num_lrs = 4; | ||
741 | - cpu->gic_vpribits = 5; | ||
742 | - cpu->gic_vprebits = 5; | ||
743 | - cpu->gic_pribits = 5; | ||
744 | - | ||
745 | - /* The A64FX supports only 128, 256 and 512 bit vector lengths */ | ||
746 | - aarch64_add_sve_properties(obj); | ||
747 | - cpu->sve_vq.supported = (1 << 0) /* 128bit */ | ||
748 | - | (1 << 1) /* 256bit */ | ||
749 | - | (1 << 3); /* 512bit */ | ||
750 | - | ||
751 | - cpu->isar.reset_pmcr_el0 = 0x46014040; | ||
752 | - | ||
753 | - /* TODO: Add A64FX specific HPC extension registers */ | ||
754 | -} | ||
755 | - | ||
756 | static const ARMCPUInfo aarch64_cpus[] = { | ||
757 | { .name = "cortex-a35", .initfn = aarch64_a35_initfn }, | ||
758 | { .name = "cortex-a57", .initfn = aarch64_a57_initfn }, | ||
759 | -- | 131 | -- |
760 | 2.25.1 | 132 | 2.34.1 |
761 | 133 | ||
762 | 134 | diff view generated by jsdifflib |
1 | In commit 01765386a88868 we fixed a bug where we weren't correctly | 1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> |
---|---|---|---|
2 | bracketing changes to some registers with pmu_op_start() and | ||
3 | pmu_op_finish() calls for changes which affect whether the PMU | ||
4 | counters might be enabled. However, we missed the case of writes to | ||
5 | the AArch64 MDCR_EL3 register, because (unlike its AArch32 | ||
6 | counterpart) they are currently done directly to the CPU state struct | ||
7 | without going through the sdcr_write() function. | ||
8 | 2 | ||
9 | Give MDCR_EL3 a writefn which handles the PMU start/finish calls. | 3 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> |
10 | The SDCR writefn then simplfies to "call the MDCR_EL3 writefn after | 4 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> |
11 | masking off the bits which don't exist in the AArch32 register". | 5 | Message-id: 20230206223502.25122-5-philmd@linaro.org |
12 | |||
13 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 6 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
14 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
15 | Message-id: 20220923123412.1214041-3-peter.maydell@linaro.org | ||
16 | --- | 7 | --- |
17 | target/arm/helper.c | 18 ++++++++++++++---- | 8 | target/arm/helper.c | 12 ++++++++++-- |
18 | 1 file changed, 14 insertions(+), 4 deletions(-) | 9 | 1 file changed, 10 insertions(+), 2 deletions(-) |
19 | 10 | ||
20 | diff --git a/target/arm/helper.c b/target/arm/helper.c | 11 | diff --git a/target/arm/helper.c b/target/arm/helper.c |
21 | index XXXXXXX..XXXXXXX 100644 | 12 | index XXXXXXX..XXXXXXX 100644 |
22 | --- a/target/arm/helper.c | 13 | --- a/target/arm/helper.c |
23 | +++ b/target/arm/helper.c | 14 | +++ b/target/arm/helper.c |
24 | @@ -XXX,XX +XXX,XX @@ static void sctlr_write(CPUARMState *env, const ARMCPRegInfo *ri, | 15 | @@ -XXX,XX +XXX,XX @@ static void define_pmu_regs(ARMCPU *cpu) |
25 | } | 16 | } |
26 | } | 17 | } |
27 | 18 | ||
28 | -static void sdcr_write(CPUARMState *env, const ARMCPRegInfo *ri, | 19 | +#ifndef CONFIG_USER_ONLY |
29 | - uint64_t value) | 20 | /* |
30 | +static void mdcr_el3_write(CPUARMState *env, const ARMCPRegInfo *ri, | 21 | * We don't know until after realize whether there's a GICv3 |
31 | + uint64_t value) | 22 | * attached, and that is what registers the gicv3 sysregs. |
23 | @@ -XXX,XX +XXX,XX @@ static uint64_t id_pfr1_read(CPUARMState *env, const ARMCPRegInfo *ri) | ||
24 | return pfr1; | ||
25 | } | ||
26 | |||
27 | -#ifndef CONFIG_USER_ONLY | ||
28 | static uint64_t id_aa64pfr0_read(CPUARMState *env, const ARMCPRegInfo *ri) | ||
32 | { | 29 | { |
33 | /* | 30 | ARMCPU *cpu = env_archcpu(env); |
34 | * Some MDCR_EL3 bits affect whether PMU counters are running: | 31 | @@ -XXX,XX +XXX,XX @@ void register_cp_regs_for_features(ARMCPU *cpu) |
35 | @@ -XXX,XX +XXX,XX @@ static void sdcr_write(CPUARMState *env, const ARMCPRegInfo *ri, | 32 | .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 1, |
36 | if (pmu_op) { | 33 | .access = PL1_R, .type = ARM_CP_NO_RAW, |
37 | pmu_op_start(env); | 34 | .accessfn = access_aa32_tid3, |
38 | } | 35 | +#ifdef CONFIG_USER_ONLY |
39 | - env->cp15.mdcr_el3 = value & SDCR_VALID_MASK; | 36 | + .type = ARM_CP_CONST, |
40 | + env->cp15.mdcr_el3 = value; | 37 | + .resetvalue = cpu->isar.id_pfr1, |
41 | if (pmu_op) { | 38 | +#else |
42 | pmu_op_finish(env); | 39 | + .type = ARM_CP_NO_RAW, |
43 | } | 40 | + .accessfn = access_aa32_tid3, |
44 | } | 41 | .readfn = id_pfr1_read, |
45 | 42 | - .writefn = arm_cp_write_ignore }, | |
46 | +static void sdcr_write(CPUARMState *env, const ARMCPRegInfo *ri, | 43 | + .writefn = arm_cp_write_ignore |
47 | + uint64_t value) | 44 | +#endif |
48 | +{ | 45 | + }, |
49 | + /* Not all bits defined for MDCR_EL3 exist in the AArch32 SDCR */ | 46 | { .name = "ID_DFR0", .state = ARM_CP_STATE_BOTH, |
50 | + mdcr_el3_write(env, ri, value & SDCR_VALID_MASK); | 47 | .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 2, |
51 | +} | 48 | .access = PL1_R, .type = ARM_CP_CONST, |
52 | + | ||
53 | static void mdcr_el2_write(CPUARMState *env, const ARMCPRegInfo *ri, | ||
54 | uint64_t value) | ||
55 | { | ||
56 | @@ -XXX,XX +XXX,XX @@ static const ARMCPRegInfo v8_cp_reginfo[] = { | ||
57 | .access = PL2_RW, | ||
58 | .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_FIQ]) }, | ||
59 | { .name = "MDCR_EL3", .state = ARM_CP_STATE_AA64, | ||
60 | + .type = ARM_CP_IO, | ||
61 | .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 3, .opc2 = 1, | ||
62 | .resetvalue = 0, | ||
63 | - .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.mdcr_el3) }, | ||
64 | + .access = PL3_RW, | ||
65 | + .writefn = mdcr_el3_write, | ||
66 | + .fieldoffset = offsetof(CPUARMState, cp15.mdcr_el3) }, | ||
67 | { .name = "SDCR", .type = ARM_CP_ALIAS | ARM_CP_IO, | ||
68 | .cp = 15, .opc1 = 0, .crn = 1, .crm = 3, .opc2 = 1, | ||
69 | .access = PL1_RW, .accessfn = access_trap_aa32s_el1, | ||
70 | -- | 49 | -- |
71 | 2.25.1 | 50 | 2.34.1 |
51 | |||
52 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
1 | 2 | ||
3 | Suggested-by: Richard Henderson <richard.henderson@linaro.org> | ||
4 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
5 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
6 | Message-id: 20230206223502.25122-6-philmd@linaro.org | ||
7 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
8 | --- | ||
9 | linux-user/user-internals.h | 2 +- | ||
10 | target/arm/cpu.h | 2 +- | ||
11 | linux-user/arm/cpu_loop.c | 4 ++-- | ||
12 | 3 files changed, 4 insertions(+), 4 deletions(-) | ||
13 | |||
14 | diff --git a/linux-user/user-internals.h b/linux-user/user-internals.h | ||
15 | index XXXXXXX..XXXXXXX 100644 | ||
16 | --- a/linux-user/user-internals.h | ||
17 | +++ b/linux-user/user-internals.h | ||
18 | @@ -XXX,XX +XXX,XX @@ void print_termios(void *arg); | ||
19 | #ifdef TARGET_ARM | ||
20 | static inline int regpairs_aligned(CPUArchState *cpu_env, int num) | ||
21 | { | ||
22 | - return cpu_env->eabi == 1; | ||
23 | + return cpu_env->eabi; | ||
24 | } | ||
25 | #elif defined(TARGET_MIPS) && defined(TARGET_ABI_MIPSO32) | ||
26 | static inline int regpairs_aligned(CPUArchState *cpu_env, int num) { return 1; } | ||
27 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h | ||
28 | index XXXXXXX..XXXXXXX 100644 | ||
29 | --- a/target/arm/cpu.h | ||
30 | +++ b/target/arm/cpu.h | ||
31 | @@ -XXX,XX +XXX,XX @@ typedef struct CPUArchState { | ||
32 | |||
33 | #if defined(CONFIG_USER_ONLY) | ||
34 | /* For usermode syscall translation. */ | ||
35 | - int eabi; | ||
36 | + bool eabi; | ||
37 | #endif | ||
38 | |||
39 | struct CPUBreakpoint *cpu_breakpoint[16]; | ||
40 | diff --git a/linux-user/arm/cpu_loop.c b/linux-user/arm/cpu_loop.c | ||
41 | index XXXXXXX..XXXXXXX 100644 | ||
42 | --- a/linux-user/arm/cpu_loop.c | ||
43 | +++ b/linux-user/arm/cpu_loop.c | ||
44 | @@ -XXX,XX +XXX,XX @@ void cpu_loop(CPUARMState *env) | ||
45 | break; | ||
46 | case EXCP_SWI: | ||
47 | { | ||
48 | - env->eabi = 1; | ||
49 | + env->eabi = true; | ||
50 | /* system call */ | ||
51 | if (env->thumb) { | ||
52 | /* Thumb is always EABI style with syscall number in r7 */ | ||
53 | @@ -XXX,XX +XXX,XX @@ void cpu_loop(CPUARMState *env) | ||
54 | * > 0xfffff and are handled below as out-of-range. | ||
55 | */ | ||
56 | n ^= ARM_SYSCALL_BASE; | ||
57 | - env->eabi = 0; | ||
58 | + env->eabi = false; | ||
59 | } | ||
60 | } | ||
61 | |||
62 | -- | ||
63 | 2.34.1 | ||
64 | |||
65 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
1 | 2 | ||
3 | Although the 'eabi' field is only used in user emulation where | ||
4 | CPU reset doesn't occur, it doesn't belong to the area to reset. | ||
5 | Move it after the 'end_reset_fields' for consistency. | ||
6 | |||
7 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
8 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
9 | Message-id: 20230206223502.25122-7-philmd@linaro.org | ||
10 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
11 | --- | ||
12 | target/arm/cpu.h | 9 ++++----- | ||
13 | 1 file changed, 4 insertions(+), 5 deletions(-) | ||
14 | |||
15 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h | ||
16 | index XXXXXXX..XXXXXXX 100644 | ||
17 | --- a/target/arm/cpu.h | ||
18 | +++ b/target/arm/cpu.h | ||
19 | @@ -XXX,XX +XXX,XX @@ typedef struct CPUArchState { | ||
20 | ARMVectorReg zarray[ARM_MAX_VQ * 16]; | ||
21 | #endif | ||
22 | |||
23 | -#if defined(CONFIG_USER_ONLY) | ||
24 | - /* For usermode syscall translation. */ | ||
25 | - bool eabi; | ||
26 | -#endif | ||
27 | - | ||
28 | struct CPUBreakpoint *cpu_breakpoint[16]; | ||
29 | struct CPUWatchpoint *cpu_watchpoint[16]; | ||
30 | |||
31 | @@ -XXX,XX +XXX,XX @@ typedef struct CPUArchState { | ||
32 | const struct arm_boot_info *boot_info; | ||
33 | /* Store GICv3CPUState to access from this struct */ | ||
34 | void *gicv3state; | ||
35 | +#if defined(CONFIG_USER_ONLY) | ||
36 | + /* For usermode syscall translation. */ | ||
37 | + bool eabi; | ||
38 | +#endif /* CONFIG_USER_ONLY */ | ||
39 | |||
40 | #ifdef TARGET_TAGGED_ADDRESSES | ||
41 | /* Linux syscall tagged address support */ | ||
42 | -- | ||
43 | 2.34.1 | ||
44 | |||
45 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
1 | 2 | ||
3 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
4 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
5 | Message-id: 20230206223502.25122-8-philmd@linaro.org | ||
6 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
7 | --- | ||
8 | target/arm/cpu.h | 3 ++- | ||
9 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
10 | |||
11 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h | ||
12 | index XXXXXXX..XXXXXXX 100644 | ||
13 | --- a/target/arm/cpu.h | ||
14 | +++ b/target/arm/cpu.h | ||
15 | @@ -XXX,XX +XXX,XX @@ typedef struct CPUArchState { | ||
16 | |||
17 | void *nvic; | ||
18 | const struct arm_boot_info *boot_info; | ||
19 | +#if !defined(CONFIG_USER_ONLY) | ||
20 | /* Store GICv3CPUState to access from this struct */ | ||
21 | void *gicv3state; | ||
22 | -#if defined(CONFIG_USER_ONLY) | ||
23 | +#else /* CONFIG_USER_ONLY */ | ||
24 | /* For usermode syscall translation. */ | ||
25 | bool eabi; | ||
26 | #endif /* CONFIG_USER_ONLY */ | ||
27 | -- | ||
28 | 2.34.1 | ||
29 | |||
30 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
1 | 2 | ||
3 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
4 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
5 | Message-id: 20230206223502.25122-9-philmd@linaro.org | ||
6 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
7 | --- | ||
8 | target/arm/cpu.h | 2 +- | ||
9 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
10 | |||
11 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h | ||
12 | index XXXXXXX..XXXXXXX 100644 | ||
13 | --- a/target/arm/cpu.h | ||
14 | +++ b/target/arm/cpu.h | ||
15 | @@ -XXX,XX +XXX,XX @@ typedef struct CPUArchState { | ||
16 | } sau; | ||
17 | |||
18 | void *nvic; | ||
19 | - const struct arm_boot_info *boot_info; | ||
20 | #if !defined(CONFIG_USER_ONLY) | ||
21 | + const struct arm_boot_info *boot_info; | ||
22 | /* Store GICv3CPUState to access from this struct */ | ||
23 | void *gicv3state; | ||
24 | #else /* CONFIG_USER_ONLY */ | ||
25 | -- | ||
26 | 2.34.1 | ||
27 | |||
28 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
1 | 2 | ||
3 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
4 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
5 | Message-id: 20230206223502.25122-10-philmd@linaro.org | ||
6 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
7 | --- | ||
8 | target/arm/cpu.h | 2 +- | ||
9 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
10 | |||
11 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h | ||
12 | index XXXXXXX..XXXXXXX 100644 | ||
13 | --- a/target/arm/cpu.h | ||
14 | +++ b/target/arm/cpu.h | ||
15 | @@ -XXX,XX +XXX,XX @@ typedef struct CPUArchState { | ||
16 | uint32_t ctrl; | ||
17 | } sau; | ||
18 | |||
19 | - void *nvic; | ||
20 | #if !defined(CONFIG_USER_ONLY) | ||
21 | + void *nvic; | ||
22 | const struct arm_boot_info *boot_info; | ||
23 | /* Store GICv3CPUState to access from this struct */ | ||
24 | void *gicv3state; | ||
25 | -- | ||
26 | 2.34.1 | ||
27 | |||
28 | diff view generated by jsdifflib |
1 | Our SDCR_VALID_MASK doesn't include all of the bits which are defined | 1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> |
---|---|---|---|
2 | by the current architecture. In particular in commit 0b42f4fab9d3 we | 2 | |
3 | forgot to add SCCD, which meant that an AArch32 guest couldn't | 3 | There is no point in using a void pointer to access the NVIC. |
4 | actually use the SCCD bit to disable counting in Secure state. | 4 | Use the real type to avoid casting it while debugging. |
5 | 5 | ||
6 | Add all the currently defined bits; we don't implement all of them, | 6 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> |
7 | but this makes them be reads-as-written, which is architecturally | 7 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> |
8 | valid and matches how we currently handle most of the others in the | 8 | Message-id: 20230206223502.25122-11-philmd@linaro.org |
9 | mask. | ||
10 | |||
11 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 9 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
12 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
13 | Message-id: 20220923123412.1214041-4-peter.maydell@linaro.org | ||
14 | --- | 10 | --- |
15 | target/arm/cpu.h | 8 +++++++- | 11 | target/arm/cpu.h | 46 ++++++++++++++++++++++--------------------- |
16 | 1 file changed, 7 insertions(+), 1 deletion(-) | 12 | hw/intc/armv7m_nvic.c | 38 ++++++++++++----------------------- |
13 | target/arm/cpu.c | 1 + | ||
14 | target/arm/m_helper.c | 2 +- | ||
15 | 4 files changed, 39 insertions(+), 48 deletions(-) | ||
17 | 16 | ||
18 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h | 17 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h |
19 | index XXXXXXX..XXXXXXX 100644 | 18 | index XXXXXXX..XXXXXXX 100644 |
20 | --- a/target/arm/cpu.h | 19 | --- a/target/arm/cpu.h |
21 | +++ b/target/arm/cpu.h | 20 | +++ b/target/arm/cpu.h |
22 | @@ -XXX,XX +XXX,XX @@ FIELD(CPTR_EL3, TTA, 20, 1) | 21 | @@ -XXX,XX +XXX,XX @@ typedef struct CPUARMTBFlags { |
23 | FIELD(CPTR_EL3, TAM, 30, 1) | 22 | |
24 | FIELD(CPTR_EL3, TCPAC, 31, 1) | 23 | typedef struct ARMMMUFaultInfo ARMMMUFaultInfo; |
25 | 24 | ||
26 | +#define MDCR_MTPME (1U << 28) | 25 | +typedef struct NVICState NVICState; |
27 | +#define MDCR_TDCC (1U << 27) | 26 | + |
28 | #define MDCR_HLP (1U << 26) /* MDCR_EL2 */ | 27 | typedef struct CPUArchState { |
29 | #define MDCR_SCCD (1U << 23) /* MDCR_EL3 */ | 28 | /* Regs for current mode. */ |
30 | #define MDCR_HCCD (1U << 23) /* MDCR_EL2 */ | 29 | uint32_t regs[16]; |
31 | #define MDCR_EPMAD (1U << 21) | 30 | @@ -XXX,XX +XXX,XX @@ typedef struct CPUArchState { |
32 | #define MDCR_EDAD (1U << 20) | 31 | } sau; |
33 | +#define MDCR_TTRF (1U << 19) | 32 | |
34 | +#define MDCR_STE (1U << 18) /* MDCR_EL3 */ | 33 | #if !defined(CONFIG_USER_ONLY) |
35 | #define MDCR_SPME (1U << 17) /* MDCR_EL3 */ | 34 | - void *nvic; |
36 | #define MDCR_HPMD (1U << 17) /* MDCR_EL2 */ | 35 | + NVICState *nvic; |
37 | #define MDCR_SDD (1U << 16) | 36 | const struct arm_boot_info *boot_info; |
38 | @@ -XXX,XX +XXX,XX @@ FIELD(CPTR_EL3, TCPAC, 31, 1) | 37 | /* Store GICv3CPUState to access from this struct */ |
39 | #define MDCR_HPMN (0x1fU) | 38 | void *gicv3state; |
40 | 39 | @@ -XXX,XX +XXX,XX @@ uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx, | |
41 | /* Not all of the MDCR_EL3 bits are present in the 32-bit SDCR */ | 40 | |
42 | -#define SDCR_VALID_MASK (MDCR_EPMAD | MDCR_EDAD | MDCR_SPME | MDCR_SPD) | 41 | /* Interface between CPU and Interrupt controller. */ |
43 | +#define SDCR_VALID_MASK (MDCR_MTPME | MDCR_TDCC | MDCR_SCCD | \ | 42 | #ifndef CONFIG_USER_ONLY |
44 | + MDCR_EPMAD | MDCR_EDAD | MDCR_TTRF | \ | 43 | -bool armv7m_nvic_can_take_pending_exception(void *opaque); |
45 | + MDCR_STE | MDCR_SPME | MDCR_SPD) | 44 | +bool armv7m_nvic_can_take_pending_exception(NVICState *s); |
46 | 45 | #else | |
47 | #define CPSR_M (0x1fU) | 46 | -static inline bool armv7m_nvic_can_take_pending_exception(void *opaque) |
48 | #define CPSR_T (1U << 5) | 47 | +static inline bool armv7m_nvic_can_take_pending_exception(NVICState *s) |
48 | { | ||
49 | return true; | ||
50 | } | ||
51 | #endif | ||
52 | /** | ||
53 | * armv7m_nvic_set_pending: mark the specified exception as pending | ||
54 | - * @opaque: the NVIC | ||
55 | + * @s: the NVIC | ||
56 | * @irq: the exception number to mark pending | ||
57 | * @secure: false for non-banked exceptions or for the nonsecure | ||
58 | * version of a banked exception, true for the secure version of a banked | ||
59 | @@ -XXX,XX +XXX,XX @@ static inline bool armv7m_nvic_can_take_pending_exception(void *opaque) | ||
60 | * if @secure is true and @irq does not specify one of the fixed set | ||
61 | * of architecturally banked exceptions. | ||
62 | */ | ||
63 | -void armv7m_nvic_set_pending(void *opaque, int irq, bool secure); | ||
64 | +void armv7m_nvic_set_pending(NVICState *s, int irq, bool secure); | ||
65 | /** | ||
66 | * armv7m_nvic_set_pending_derived: mark this derived exception as pending | ||
67 | - * @opaque: the NVIC | ||
68 | + * @s: the NVIC | ||
69 | * @irq: the exception number to mark pending | ||
70 | * @secure: false for non-banked exceptions or for the nonsecure | ||
71 | * version of a banked exception, true for the secure version of a banked | ||
72 | @@ -XXX,XX +XXX,XX @@ void armv7m_nvic_set_pending(void *opaque, int irq, bool secure); | ||
73 | * exceptions (exceptions generated in the course of trying to take | ||
74 | * a different exception). | ||
75 | */ | ||
76 | -void armv7m_nvic_set_pending_derived(void *opaque, int irq, bool secure); | ||
77 | +void armv7m_nvic_set_pending_derived(NVICState *s, int irq, bool secure); | ||
78 | /** | ||
79 | * armv7m_nvic_set_pending_lazyfp: mark this lazy FP exception as pending | ||
80 | - * @opaque: the NVIC | ||
81 | + * @s: the NVIC | ||
82 | * @irq: the exception number to mark pending | ||
83 | * @secure: false for non-banked exceptions or for the nonsecure | ||
84 | * version of a banked exception, true for the secure version of a banked | ||
85 | @@ -XXX,XX +XXX,XX @@ void armv7m_nvic_set_pending_derived(void *opaque, int irq, bool secure); | ||
86 | * Similar to armv7m_nvic_set_pending(), but specifically for exceptions | ||
87 | * generated in the course of lazy stacking of FP registers. | ||
88 | */ | ||
89 | -void armv7m_nvic_set_pending_lazyfp(void *opaque, int irq, bool secure); | ||
90 | +void armv7m_nvic_set_pending_lazyfp(NVICState *s, int irq, bool secure); | ||
91 | /** | ||
92 | * armv7m_nvic_get_pending_irq_info: return highest priority pending | ||
93 | * exception, and whether it targets Secure state | ||
94 | - * @opaque: the NVIC | ||
95 | + * @s: the NVIC | ||
96 | * @pirq: set to pending exception number | ||
97 | * @ptargets_secure: set to whether pending exception targets Secure | ||
98 | * | ||
99 | @@ -XXX,XX +XXX,XX @@ void armv7m_nvic_set_pending_lazyfp(void *opaque, int irq, bool secure); | ||
100 | * to true if the current highest priority pending exception should | ||
101 | * be taken to Secure state, false for NS. | ||
102 | */ | ||
103 | -void armv7m_nvic_get_pending_irq_info(void *opaque, int *pirq, | ||
104 | +void armv7m_nvic_get_pending_irq_info(NVICState *s, int *pirq, | ||
105 | bool *ptargets_secure); | ||
106 | /** | ||
107 | * armv7m_nvic_acknowledge_irq: make highest priority pending exception active | ||
108 | - * @opaque: the NVIC | ||
109 | + * @s: the NVIC | ||
110 | * | ||
111 | * Move the current highest priority pending exception from the pending | ||
112 | * state to the active state, and update v7m.exception to indicate that | ||
113 | * it is the exception currently being handled. | ||
114 | */ | ||
115 | -void armv7m_nvic_acknowledge_irq(void *opaque); | ||
116 | +void armv7m_nvic_acknowledge_irq(NVICState *s); | ||
117 | /** | ||
118 | * armv7m_nvic_complete_irq: complete specified interrupt or exception | ||
119 | - * @opaque: the NVIC | ||
120 | + * @s: the NVIC | ||
121 | * @irq: the exception number to complete | ||
122 | * @secure: true if this exception was secure | ||
123 | * | ||
124 | @@ -XXX,XX +XXX,XX @@ void armv7m_nvic_acknowledge_irq(void *opaque); | ||
125 | * 0 if there is still an irq active after this one was completed | ||
126 | * (Ignoring -1, this is the same as the RETTOBASE value before completion.) | ||
127 | */ | ||
128 | -int armv7m_nvic_complete_irq(void *opaque, int irq, bool secure); | ||
129 | +int armv7m_nvic_complete_irq(NVICState *s, int irq, bool secure); | ||
130 | /** | ||
131 | * armv7m_nvic_get_ready_status(void *opaque, int irq, bool secure) | ||
132 | - * @opaque: the NVIC | ||
133 | + * @s: the NVIC | ||
134 | * @irq: the exception number to mark pending | ||
135 | * @secure: false for non-banked exceptions or for the nonsecure | ||
136 | * version of a banked exception, true for the secure version of a banked | ||
137 | @@ -XXX,XX +XXX,XX @@ int armv7m_nvic_complete_irq(void *opaque, int irq, bool secure); | ||
138 | * interrupt the current execution priority. This controls whether the | ||
139 | * RDY bit for it in the FPCCR is set. | ||
140 | */ | ||
141 | -bool armv7m_nvic_get_ready_status(void *opaque, int irq, bool secure); | ||
142 | +bool armv7m_nvic_get_ready_status(NVICState *s, int irq, bool secure); | ||
143 | /** | ||
144 | * armv7m_nvic_raw_execution_priority: return the raw execution priority | ||
145 | - * @opaque: the NVIC | ||
146 | + * @s: the NVIC | ||
147 | * | ||
148 | * Returns: the raw execution priority as defined by the v8M architecture. | ||
149 | * This is the execution priority minus the effects of AIRCR.PRIS, | ||
150 | * and minus any PRIMASK/FAULTMASK/BASEPRI priority boosting. | ||
151 | * (v8M ARM ARM I_PKLD.) | ||
152 | */ | ||
153 | -int armv7m_nvic_raw_execution_priority(void *opaque); | ||
154 | +int armv7m_nvic_raw_execution_priority(NVICState *s); | ||
155 | /** | ||
156 | * armv7m_nvic_neg_prio_requested: return true if the requested execution | ||
157 | * priority is negative for the specified security state. | ||
158 | - * @opaque: the NVIC | ||
159 | + * @s: the NVIC | ||
160 | * @secure: the security state to test | ||
161 | * This corresponds to the pseudocode IsReqExecPriNeg(). | ||
162 | */ | ||
163 | #ifndef CONFIG_USER_ONLY | ||
164 | -bool armv7m_nvic_neg_prio_requested(void *opaque, bool secure); | ||
165 | +bool armv7m_nvic_neg_prio_requested(NVICState *s, bool secure); | ||
166 | #else | ||
167 | -static inline bool armv7m_nvic_neg_prio_requested(void *opaque, bool secure) | ||
168 | +static inline bool armv7m_nvic_neg_prio_requested(NVICState *s, bool secure) | ||
169 | { | ||
170 | return false; | ||
171 | } | ||
172 | diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c | ||
173 | index XXXXXXX..XXXXXXX 100644 | ||
174 | --- a/hw/intc/armv7m_nvic.c | ||
175 | +++ b/hw/intc/armv7m_nvic.c | ||
176 | @@ -XXX,XX +XXX,XX @@ static inline int nvic_exec_prio(NVICState *s) | ||
177 | return MIN(running, s->exception_prio); | ||
178 | } | ||
179 | |||
180 | -bool armv7m_nvic_neg_prio_requested(void *opaque, bool secure) | ||
181 | +bool armv7m_nvic_neg_prio_requested(NVICState *s, bool secure) | ||
182 | { | ||
183 | /* Return true if the requested execution priority is negative | ||
184 | * for the specified security state, ie that security state | ||
185 | @@ -XXX,XX +XXX,XX @@ bool armv7m_nvic_neg_prio_requested(void *opaque, bool secure) | ||
186 | * mean we don't allow FAULTMASK_NS to actually make the execution | ||
187 | * priority negative). Compare pseudocode IsReqExcPriNeg(). | ||
188 | */ | ||
189 | - NVICState *s = opaque; | ||
190 | - | ||
191 | if (s->cpu->env.v7m.faultmask[secure]) { | ||
192 | return true; | ||
193 | } | ||
194 | @@ -XXX,XX +XXX,XX @@ bool armv7m_nvic_neg_prio_requested(void *opaque, bool secure) | ||
195 | return false; | ||
196 | } | ||
197 | |||
198 | -bool armv7m_nvic_can_take_pending_exception(void *opaque) | ||
199 | +bool armv7m_nvic_can_take_pending_exception(NVICState *s) | ||
200 | { | ||
201 | - NVICState *s = opaque; | ||
202 | - | ||
203 | return nvic_exec_prio(s) > nvic_pending_prio(s); | ||
204 | } | ||
205 | |||
206 | -int armv7m_nvic_raw_execution_priority(void *opaque) | ||
207 | +int armv7m_nvic_raw_execution_priority(NVICState *s) | ||
208 | { | ||
209 | - NVICState *s = opaque; | ||
210 | - | ||
211 | return s->exception_prio; | ||
212 | } | ||
213 | |||
214 | @@ -XXX,XX +XXX,XX @@ static void nvic_irq_update(NVICState *s) | ||
215 | * if @secure is true and @irq does not specify one of the fixed set | ||
216 | * of architecturally banked exceptions. | ||
217 | */ | ||
218 | -static void armv7m_nvic_clear_pending(void *opaque, int irq, bool secure) | ||
219 | +static void armv7m_nvic_clear_pending(NVICState *s, int irq, bool secure) | ||
220 | { | ||
221 | - NVICState *s = (NVICState *)opaque; | ||
222 | VecInfo *vec; | ||
223 | |||
224 | assert(irq > ARMV7M_EXCP_RESET && irq < s->num_irq); | ||
225 | @@ -XXX,XX +XXX,XX @@ static void do_armv7m_nvic_set_pending(void *opaque, int irq, bool secure, | ||
226 | } | ||
227 | } | ||
228 | |||
229 | -void armv7m_nvic_set_pending(void *opaque, int irq, bool secure) | ||
230 | +void armv7m_nvic_set_pending(NVICState *s, int irq, bool secure) | ||
231 | { | ||
232 | - do_armv7m_nvic_set_pending(opaque, irq, secure, false); | ||
233 | + do_armv7m_nvic_set_pending(s, irq, secure, false); | ||
234 | } | ||
235 | |||
236 | -void armv7m_nvic_set_pending_derived(void *opaque, int irq, bool secure) | ||
237 | +void armv7m_nvic_set_pending_derived(NVICState *s, int irq, bool secure) | ||
238 | { | ||
239 | - do_armv7m_nvic_set_pending(opaque, irq, secure, true); | ||
240 | + do_armv7m_nvic_set_pending(s, irq, secure, true); | ||
241 | } | ||
242 | |||
243 | -void armv7m_nvic_set_pending_lazyfp(void *opaque, int irq, bool secure) | ||
244 | +void armv7m_nvic_set_pending_lazyfp(NVICState *s, int irq, bool secure) | ||
245 | { | ||
246 | /* | ||
247 | * Pend an exception during lazy FP stacking. This differs | ||
248 | @@ -XXX,XX +XXX,XX @@ void armv7m_nvic_set_pending_lazyfp(void *opaque, int irq, bool secure) | ||
249 | * whether we should escalate depends on the saved context | ||
250 | * in the FPCCR register, not on the current state of the CPU/NVIC. | ||
251 | */ | ||
252 | - NVICState *s = (NVICState *)opaque; | ||
253 | bool banked = exc_is_banked(irq); | ||
254 | VecInfo *vec; | ||
255 | bool targets_secure; | ||
256 | @@ -XXX,XX +XXX,XX @@ void armv7m_nvic_set_pending_lazyfp(void *opaque, int irq, bool secure) | ||
257 | } | ||
258 | |||
259 | /* Make pending IRQ active. */ | ||
260 | -void armv7m_nvic_acknowledge_irq(void *opaque) | ||
261 | +void armv7m_nvic_acknowledge_irq(NVICState *s) | ||
262 | { | ||
263 | - NVICState *s = (NVICState *)opaque; | ||
264 | CPUARMState *env = &s->cpu->env; | ||
265 | const int pending = s->vectpending; | ||
266 | const int running = nvic_exec_prio(s); | ||
267 | @@ -XXX,XX +XXX,XX @@ static bool vectpending_targets_secure(NVICState *s) | ||
268 | exc_targets_secure(s, s->vectpending); | ||
269 | } | ||
270 | |||
271 | -void armv7m_nvic_get_pending_irq_info(void *opaque, | ||
272 | +void armv7m_nvic_get_pending_irq_info(NVICState *s, | ||
273 | int *pirq, bool *ptargets_secure) | ||
274 | { | ||
275 | - NVICState *s = (NVICState *)opaque; | ||
276 | const int pending = s->vectpending; | ||
277 | bool targets_secure; | ||
278 | |||
279 | @@ -XXX,XX +XXX,XX @@ void armv7m_nvic_get_pending_irq_info(void *opaque, | ||
280 | *pirq = pending; | ||
281 | } | ||
282 | |||
283 | -int armv7m_nvic_complete_irq(void *opaque, int irq, bool secure) | ||
284 | +int armv7m_nvic_complete_irq(NVICState *s, int irq, bool secure) | ||
285 | { | ||
286 | - NVICState *s = (NVICState *)opaque; | ||
287 | VecInfo *vec = NULL; | ||
288 | int ret = 0; | ||
289 | |||
290 | @@ -XXX,XX +XXX,XX @@ int armv7m_nvic_complete_irq(void *opaque, int irq, bool secure) | ||
291 | return ret; | ||
292 | } | ||
293 | |||
294 | -bool armv7m_nvic_get_ready_status(void *opaque, int irq, bool secure) | ||
295 | +bool armv7m_nvic_get_ready_status(NVICState *s, int irq, bool secure) | ||
296 | { | ||
297 | /* | ||
298 | * Return whether an exception is "ready", i.e. it is enabled and is | ||
299 | @@ -XXX,XX +XXX,XX @@ bool armv7m_nvic_get_ready_status(void *opaque, int irq, bool secure) | ||
300 | * for non-banked exceptions secure is always false; for banked exceptions | ||
301 | * it indicates which of the exceptions is required. | ||
302 | */ | ||
303 | - NVICState *s = (NVICState *)opaque; | ||
304 | bool banked = exc_is_banked(irq); | ||
305 | VecInfo *vec; | ||
306 | int running = nvic_exec_prio(s); | ||
307 | diff --git a/target/arm/cpu.c b/target/arm/cpu.c | ||
308 | index XXXXXXX..XXXXXXX 100644 | ||
309 | --- a/target/arm/cpu.c | ||
310 | +++ b/target/arm/cpu.c | ||
311 | @@ -XXX,XX +XXX,XX @@ | ||
312 | #if !defined(CONFIG_USER_ONLY) | ||
313 | #include "hw/loader.h" | ||
314 | #include "hw/boards.h" | ||
315 | +#include "hw/intc/armv7m_nvic.h" | ||
316 | #endif | ||
317 | #include "sysemu/tcg.h" | ||
318 | #include "sysemu/qtest.h" | ||
319 | diff --git a/target/arm/m_helper.c b/target/arm/m_helper.c | ||
320 | index XXXXXXX..XXXXXXX 100644 | ||
321 | --- a/target/arm/m_helper.c | ||
322 | +++ b/target/arm/m_helper.c | ||
323 | @@ -XXX,XX +XXX,XX @@ static void v7m_update_fpccr(CPUARMState *env, uint32_t frameptr, | ||
324 | * that we will need later in order to do lazy FP reg stacking. | ||
325 | */ | ||
326 | bool is_secure = env->v7m.secure; | ||
327 | - void *nvic = env->nvic; | ||
328 | + NVICState *nvic = env->nvic; | ||
329 | /* | ||
330 | * Some bits are unbanked and live always in fpccr[M_REG_S]; some bits | ||
331 | * are banked and we want to update the bit in the bank for the | ||
49 | -- | 332 | -- |
50 | 2.25.1 | 333 | 2.34.1 |
334 | |||
335 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | 1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | |
2 | |||
3 | While dozens of files include "cpu.h", only 3 files require | ||
4 | these NVIC helper declarations. | ||
5 | |||
6 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
7 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
8 | Message-id: 20230206223502.25122-12-philmd@linaro.org | ||
9 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
10 | --- | ||
11 | include/hw/intc/armv7m_nvic.h | 123 ++++++++++++++++++++++++++++++++++ | ||
12 | target/arm/cpu.h | 123 ---------------------------------- | ||
13 | target/arm/cpu.c | 4 +- | ||
14 | target/arm/cpu_tcg.c | 3 + | ||
15 | target/arm/m_helper.c | 3 + | ||
16 | 5 files changed, 132 insertions(+), 124 deletions(-) | ||
17 | |||
18 | diff --git a/include/hw/intc/armv7m_nvic.h b/include/hw/intc/armv7m_nvic.h | ||
19 | index XXXXXXX..XXXXXXX 100644 | ||
20 | --- a/include/hw/intc/armv7m_nvic.h | ||
21 | +++ b/include/hw/intc/armv7m_nvic.h | ||
22 | @@ -XXX,XX +XXX,XX @@ struct NVICState { | ||
23 | qemu_irq sysresetreq; | ||
24 | }; | ||
25 | |||
26 | +/* Interface between CPU and Interrupt controller. */ | ||
27 | +/** | ||
28 | + * armv7m_nvic_set_pending: mark the specified exception as pending | ||
29 | + * @s: the NVIC | ||
30 | + * @irq: the exception number to mark pending | ||
31 | + * @secure: false for non-banked exceptions or for the nonsecure | ||
32 | + * version of a banked exception, true for the secure version of a banked | ||
33 | + * exception. | ||
34 | + * | ||
35 | + * Marks the specified exception as pending. Note that we will assert() | ||
36 | + * if @secure is true and @irq does not specify one of the fixed set | ||
37 | + * of architecturally banked exceptions. | ||
38 | + */ | ||
39 | +void armv7m_nvic_set_pending(NVICState *s, int irq, bool secure); | ||
40 | +/** | ||
41 | + * armv7m_nvic_set_pending_derived: mark this derived exception as pending | ||
42 | + * @s: the NVIC | ||
43 | + * @irq: the exception number to mark pending | ||
44 | + * @secure: false for non-banked exceptions or for the nonsecure | ||
45 | + * version of a banked exception, true for the secure version of a banked | ||
46 | + * exception. | ||
47 | + * | ||
48 | + * Similar to armv7m_nvic_set_pending(), but specifically for derived | ||
49 | + * exceptions (exceptions generated in the course of trying to take | ||
50 | + * a different exception). | ||
51 | + */ | ||
52 | +void armv7m_nvic_set_pending_derived(NVICState *s, int irq, bool secure); | ||
53 | +/** | ||
54 | + * armv7m_nvic_set_pending_lazyfp: mark this lazy FP exception as pending | ||
55 | + * @s: the NVIC | ||
56 | + * @irq: the exception number to mark pending | ||
57 | + * @secure: false for non-banked exceptions or for the nonsecure | ||
58 | + * version of a banked exception, true for the secure version of a banked | ||
59 | + * exception. | ||
60 | + * | ||
61 | + * Similar to armv7m_nvic_set_pending(), but specifically for exceptions | ||
62 | + * generated in the course of lazy stacking of FP registers. | ||
63 | + */ | ||
64 | +void armv7m_nvic_set_pending_lazyfp(NVICState *s, int irq, bool secure); | ||
65 | +/** | ||
66 | + * armv7m_nvic_get_pending_irq_info: return highest priority pending | ||
67 | + * exception, and whether it targets Secure state | ||
68 | + * @s: the NVIC | ||
69 | + * @pirq: set to pending exception number | ||
70 | + * @ptargets_secure: set to whether pending exception targets Secure | ||
71 | + * | ||
72 | + * This function writes the number of the highest priority pending | ||
73 | + * exception (the one which would be made active by | ||
74 | + * armv7m_nvic_acknowledge_irq()) to @pirq, and sets @ptargets_secure | ||
75 | + * to true if the current highest priority pending exception should | ||
76 | + * be taken to Secure state, false for NS. | ||
77 | + */ | ||
78 | +void armv7m_nvic_get_pending_irq_info(NVICState *s, int *pirq, | ||
79 | + bool *ptargets_secure); | ||
80 | +/** | ||
81 | + * armv7m_nvic_acknowledge_irq: make highest priority pending exception active | ||
82 | + * @s: the NVIC | ||
83 | + * | ||
84 | + * Move the current highest priority pending exception from the pending | ||
85 | + * state to the active state, and update v7m.exception to indicate that | ||
86 | + * it is the exception currently being handled. | ||
87 | + */ | ||
88 | +void armv7m_nvic_acknowledge_irq(NVICState *s); | ||
89 | +/** | ||
90 | + * armv7m_nvic_complete_irq: complete specified interrupt or exception | ||
91 | + * @s: the NVIC | ||
92 | + * @irq: the exception number to complete | ||
93 | + * @secure: true if this exception was secure | ||
94 | + * | ||
95 | + * Returns: -1 if the irq was not active | ||
96 | + * 1 if completing this irq brought us back to base (no active irqs) | ||
97 | + * 0 if there is still an irq active after this one was completed | ||
98 | + * (Ignoring -1, this is the same as the RETTOBASE value before completion.) | ||
99 | + */ | ||
100 | +int armv7m_nvic_complete_irq(NVICState *s, int irq, bool secure); | ||
101 | +/** | ||
102 | + * armv7m_nvic_get_ready_status(void *opaque, int irq, bool secure) | ||
103 | + * @s: the NVIC | ||
104 | + * @irq: the exception number to mark pending | ||
105 | + * @secure: false for non-banked exceptions or for the nonsecure | ||
106 | + * version of a banked exception, true for the secure version of a banked | ||
107 | + * exception. | ||
108 | + * | ||
109 | + * Return whether an exception is "ready", i.e. whether the exception is | ||
110 | + * enabled and is configured at a priority which would allow it to | ||
111 | + * interrupt the current execution priority. This controls whether the | ||
112 | + * RDY bit for it in the FPCCR is set. | ||
113 | + */ | ||
114 | +bool armv7m_nvic_get_ready_status(NVICState *s, int irq, bool secure); | ||
115 | +/** | ||
116 | + * armv7m_nvic_raw_execution_priority: return the raw execution priority | ||
117 | + * @s: the NVIC | ||
118 | + * | ||
119 | + * Returns: the raw execution priority as defined by the v8M architecture. | ||
120 | + * This is the execution priority minus the effects of AIRCR.PRIS, | ||
121 | + * and minus any PRIMASK/FAULTMASK/BASEPRI priority boosting. | ||
122 | + * (v8M ARM ARM I_PKLD.) | ||
123 | + */ | ||
124 | +int armv7m_nvic_raw_execution_priority(NVICState *s); | ||
125 | +/** | ||
126 | + * armv7m_nvic_neg_prio_requested: return true if the requested execution | ||
127 | + * priority is negative for the specified security state. | ||
128 | + * @s: the NVIC | ||
129 | + * @secure: the security state to test | ||
130 | + * This corresponds to the pseudocode IsReqExecPriNeg(). | ||
131 | + */ | ||
132 | +#ifndef CONFIG_USER_ONLY | ||
133 | +bool armv7m_nvic_neg_prio_requested(NVICState *s, bool secure); | ||
134 | +#else | ||
135 | +static inline bool armv7m_nvic_neg_prio_requested(NVICState *s, bool secure) | ||
136 | +{ | ||
137 | + return false; | ||
138 | +} | ||
139 | +#endif | ||
140 | +#ifndef CONFIG_USER_ONLY | ||
141 | +bool armv7m_nvic_can_take_pending_exception(NVICState *s); | ||
142 | +#else | ||
143 | +static inline bool armv7m_nvic_can_take_pending_exception(NVICState *s) | ||
144 | +{ | ||
145 | + return true; | ||
146 | +} | ||
147 | +#endif | ||
148 | + | ||
149 | #endif | ||
150 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h | ||
151 | index XXXXXXX..XXXXXXX 100644 | ||
152 | --- a/target/arm/cpu.h | ||
153 | +++ b/target/arm/cpu.h | ||
154 | @@ -XXX,XX +XXX,XX @@ void arm_cpu_list(void); | ||
155 | uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx, | ||
156 | uint32_t cur_el, bool secure); | ||
157 | |||
158 | -/* Interface between CPU and Interrupt controller. */ | ||
159 | -#ifndef CONFIG_USER_ONLY | ||
160 | -bool armv7m_nvic_can_take_pending_exception(NVICState *s); | ||
161 | -#else | ||
162 | -static inline bool armv7m_nvic_can_take_pending_exception(NVICState *s) | ||
163 | -{ | ||
164 | - return true; | ||
165 | -} | ||
166 | -#endif | ||
167 | -/** | ||
168 | - * armv7m_nvic_set_pending: mark the specified exception as pending | ||
169 | - * @s: the NVIC | ||
170 | - * @irq: the exception number to mark pending | ||
171 | - * @secure: false for non-banked exceptions or for the nonsecure | ||
172 | - * version of a banked exception, true for the secure version of a banked | ||
173 | - * exception. | ||
174 | - * | ||
175 | - * Marks the specified exception as pending. Note that we will assert() | ||
176 | - * if @secure is true and @irq does not specify one of the fixed set | ||
177 | - * of architecturally banked exceptions. | ||
178 | - */ | ||
179 | -void armv7m_nvic_set_pending(NVICState *s, int irq, bool secure); | ||
180 | -/** | ||
181 | - * armv7m_nvic_set_pending_derived: mark this derived exception as pending | ||
182 | - * @s: the NVIC | ||
183 | - * @irq: the exception number to mark pending | ||
184 | - * @secure: false for non-banked exceptions or for the nonsecure | ||
185 | - * version of a banked exception, true for the secure version of a banked | ||
186 | - * exception. | ||
187 | - * | ||
188 | - * Similar to armv7m_nvic_set_pending(), but specifically for derived | ||
189 | - * exceptions (exceptions generated in the course of trying to take | ||
190 | - * a different exception). | ||
191 | - */ | ||
192 | -void armv7m_nvic_set_pending_derived(NVICState *s, int irq, bool secure); | ||
193 | -/** | ||
194 | - * armv7m_nvic_set_pending_lazyfp: mark this lazy FP exception as pending | ||
195 | - * @s: the NVIC | ||
196 | - * @irq: the exception number to mark pending | ||
197 | - * @secure: false for non-banked exceptions or for the nonsecure | ||
198 | - * version of a banked exception, true for the secure version of a banked | ||
199 | - * exception. | ||
200 | - * | ||
201 | - * Similar to armv7m_nvic_set_pending(), but specifically for exceptions | ||
202 | - * generated in the course of lazy stacking of FP registers. | ||
203 | - */ | ||
204 | -void armv7m_nvic_set_pending_lazyfp(NVICState *s, int irq, bool secure); | ||
205 | -/** | ||
206 | - * armv7m_nvic_get_pending_irq_info: return highest priority pending | ||
207 | - * exception, and whether it targets Secure state | ||
208 | - * @s: the NVIC | ||
209 | - * @pirq: set to pending exception number | ||
210 | - * @ptargets_secure: set to whether pending exception targets Secure | ||
211 | - * | ||
212 | - * This function writes the number of the highest priority pending | ||
213 | - * exception (the one which would be made active by | ||
214 | - * armv7m_nvic_acknowledge_irq()) to @pirq, and sets @ptargets_secure | ||
215 | - * to true if the current highest priority pending exception should | ||
216 | - * be taken to Secure state, false for NS. | ||
217 | - */ | ||
218 | -void armv7m_nvic_get_pending_irq_info(NVICState *s, int *pirq, | ||
219 | - bool *ptargets_secure); | ||
220 | -/** | ||
221 | - * armv7m_nvic_acknowledge_irq: make highest priority pending exception active | ||
222 | - * @s: the NVIC | ||
223 | - * | ||
224 | - * Move the current highest priority pending exception from the pending | ||
225 | - * state to the active state, and update v7m.exception to indicate that | ||
226 | - * it is the exception currently being handled. | ||
227 | - */ | ||
228 | -void armv7m_nvic_acknowledge_irq(NVICState *s); | ||
229 | -/** | ||
230 | - * armv7m_nvic_complete_irq: complete specified interrupt or exception | ||
231 | - * @s: the NVIC | ||
232 | - * @irq: the exception number to complete | ||
233 | - * @secure: true if this exception was secure | ||
234 | - * | ||
235 | - * Returns: -1 if the irq was not active | ||
236 | - * 1 if completing this irq brought us back to base (no active irqs) | ||
237 | - * 0 if there is still an irq active after this one was completed | ||
238 | - * (Ignoring -1, this is the same as the RETTOBASE value before completion.) | ||
239 | - */ | ||
240 | -int armv7m_nvic_complete_irq(NVICState *s, int irq, bool secure); | ||
241 | -/** | ||
242 | - * armv7m_nvic_get_ready_status(void *opaque, int irq, bool secure) | ||
243 | - * @s: the NVIC | ||
244 | - * @irq: the exception number to mark pending | ||
245 | - * @secure: false for non-banked exceptions or for the nonsecure | ||
246 | - * version of a banked exception, true for the secure version of a banked | ||
247 | - * exception. | ||
248 | - * | ||
249 | - * Return whether an exception is "ready", i.e. whether the exception is | ||
250 | - * enabled and is configured at a priority which would allow it to | ||
251 | - * interrupt the current execution priority. This controls whether the | ||
252 | - * RDY bit for it in the FPCCR is set. | ||
253 | - */ | ||
254 | -bool armv7m_nvic_get_ready_status(NVICState *s, int irq, bool secure); | ||
255 | -/** | ||
256 | - * armv7m_nvic_raw_execution_priority: return the raw execution priority | ||
257 | - * @s: the NVIC | ||
258 | - * | ||
259 | - * Returns: the raw execution priority as defined by the v8M architecture. | ||
260 | - * This is the execution priority minus the effects of AIRCR.PRIS, | ||
261 | - * and minus any PRIMASK/FAULTMASK/BASEPRI priority boosting. | ||
262 | - * (v8M ARM ARM I_PKLD.) | ||
263 | - */ | ||
264 | -int armv7m_nvic_raw_execution_priority(NVICState *s); | ||
265 | -/** | ||
266 | - * armv7m_nvic_neg_prio_requested: return true if the requested execution | ||
267 | - * priority is negative for the specified security state. | ||
268 | - * @s: the NVIC | ||
269 | - * @secure: the security state to test | ||
270 | - * This corresponds to the pseudocode IsReqExecPriNeg(). | ||
271 | - */ | ||
272 | -#ifndef CONFIG_USER_ONLY | ||
273 | -bool armv7m_nvic_neg_prio_requested(NVICState *s, bool secure); | ||
274 | -#else | ||
275 | -static inline bool armv7m_nvic_neg_prio_requested(NVICState *s, bool secure) | ||
276 | -{ | ||
277 | - return false; | ||
278 | -} | ||
279 | -#endif | ||
280 | - | ||
281 | /* Interface for defining coprocessor registers. | ||
282 | * Registers are defined in tables of arm_cp_reginfo structs | ||
283 | * which are passed to define_arm_cp_regs(). | ||
284 | diff --git a/target/arm/cpu.c b/target/arm/cpu.c | ||
285 | index XXXXXXX..XXXXXXX 100644 | ||
286 | --- a/target/arm/cpu.c | ||
287 | +++ b/target/arm/cpu.c | ||
288 | @@ -XXX,XX +XXX,XX @@ | ||
289 | #if !defined(CONFIG_USER_ONLY) | ||
290 | #include "hw/loader.h" | ||
291 | #include "hw/boards.h" | ||
292 | +#ifdef CONFIG_TCG | ||
293 | #include "hw/intc/armv7m_nvic.h" | ||
294 | -#endif | ||
295 | +#endif /* CONFIG_TCG */ | ||
296 | +#endif /* !CONFIG_USER_ONLY */ | ||
297 | #include "sysemu/tcg.h" | ||
298 | #include "sysemu/qtest.h" | ||
299 | #include "sysemu/hw_accel.h" | ||
300 | diff --git a/target/arm/cpu_tcg.c b/target/arm/cpu_tcg.c | ||
301 | index XXXXXXX..XXXXXXX 100644 | ||
302 | --- a/target/arm/cpu_tcg.c | ||
303 | +++ b/target/arm/cpu_tcg.c | ||
304 | @@ -XXX,XX +XXX,XX @@ | ||
305 | #include "hw/boards.h" | ||
306 | #endif | ||
307 | #include "cpregs.h" | ||
308 | +#if !defined(CONFIG_USER_ONLY) && defined(CONFIG_TCG) | ||
309 | +#include "hw/intc/armv7m_nvic.h" | ||
310 | +#endif | ||
311 | |||
312 | |||
313 | /* Share AArch32 -cpu max features with AArch64. */ | ||
314 | diff --git a/target/arm/m_helper.c b/target/arm/m_helper.c | ||
315 | index XXXXXXX..XXXXXXX 100644 | ||
316 | --- a/target/arm/m_helper.c | ||
317 | +++ b/target/arm/m_helper.c | ||
318 | @@ -XXX,XX +XXX,XX @@ | ||
319 | #include "exec/cpu_ldst.h" | ||
320 | #include "semihosting/common-semi.h" | ||
321 | #endif | ||
322 | +#if !defined(CONFIG_USER_ONLY) | ||
323 | +#include "hw/intc/armv7m_nvic.h" | ||
324 | +#endif | ||
325 | |||
326 | static void v7m_msr_xpsr(CPUARMState *env, uint32_t mask, | ||
327 | uint32_t reg, uint32_t val) | ||
328 | -- | ||
329 | 2.34.1 | ||
330 | |||
331 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | 1 | From: Alex Bennée <alex.bennee@linaro.org> | |
2 | |||
3 | The two TCG tests for GICv2 and GICv3 are very heavy weight distros | ||
4 | that take a long time to boot up, especially for an --enable-debug | ||
5 | build. The total code coverage they give is: | ||
6 | |||
7 | Overall coverage rate: | ||
8 | lines......: 11.2% (59584 of 530123 lines) | ||
9 | functions..: 15.0% (7436 of 49443 functions) | ||
10 | branches...: 6.3% (19273 of 303933 branches) | ||
11 | |||
12 | We already get pretty close to that with the machine_aarch64_virt | ||
13 | tests which only does one full boot (~120s vs ~600s) of alpine. We | ||
14 | expand the kernel+initrd boot (~8s) to test both GICs and also add an | ||
15 | RNG device and a block device to generate a few IRQs and exercise the | ||
16 | storage layer. With that we get to a coverage of: | ||
17 | |||
18 | Overall coverage rate: | ||
19 | lines......: 11.0% (58121 of 530123 lines) | ||
20 | functions..: 14.9% (7343 of 49443 functions) | ||
21 | branches...: 6.0% (18269 of 303933 branches) | ||
22 | |||
23 | which I feel is close enough given the massive time saving. If we want | ||
24 | to target any more sub-systems we can use lighter weight more directed | ||
25 | tests. | ||
26 | |||
27 | Signed-off-by: Alex Bennée <alex.bennee@linaro.org> | ||
28 | Reviewed-by: Fabiano Rosas <farosas@suse.de> | ||
29 | Acked-by: Richard Henderson <richard.henderson@linaro.org> | ||
30 | Message-id: 20230203181632.2919715-1-alex.bennee@linaro.org | ||
31 | Cc: Peter Maydell <peter.maydell@linaro.org> | ||
32 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
33 | --- | ||
34 | tests/avocado/boot_linux.py | 48 ++++---------------- | ||
35 | tests/avocado/machine_aarch64_virt.py | 63 ++++++++++++++++++++++++--- | ||
36 | 2 files changed, 65 insertions(+), 46 deletions(-) | ||
37 | |||
38 | diff --git a/tests/avocado/boot_linux.py b/tests/avocado/boot_linux.py | ||
39 | index XXXXXXX..XXXXXXX 100644 | ||
40 | --- a/tests/avocado/boot_linux.py | ||
41 | +++ b/tests/avocado/boot_linux.py | ||
42 | @@ -XXX,XX +XXX,XX @@ def test_pc_q35_kvm(self): | ||
43 | self.launch_and_wait(set_up_ssh_connection=False) | ||
44 | |||
45 | |||
46 | -# For Aarch64 we only boot KVM tests in CI as the TCG tests are very | ||
47 | -# heavyweight. There are lighter weight distros which we use in the | ||
48 | -# machine_aarch64_virt.py tests. | ||
49 | +# For Aarch64 we only boot KVM tests in CI as booting the current | ||
50 | +# Fedora OS in TCG tests is very heavyweight. There are lighter weight | ||
51 | +# distros which we use in the machine_aarch64_virt.py tests. | ||
52 | class BootLinuxAarch64(LinuxTest): | ||
53 | """ | ||
54 | :avocado: tags=arch:aarch64 | ||
55 | :avocado: tags=machine:virt | ||
56 | - :avocado: tags=machine:gic-version=2 | ||
57 | """ | ||
58 | timeout = 720 | ||
59 | |||
60 | - def add_common_args(self): | ||
61 | - self.vm.add_args('-bios', | ||
62 | - os.path.join(BUILD_DIR, 'pc-bios', | ||
63 | - 'edk2-aarch64-code.fd')) | ||
64 | - self.vm.add_args('-device', 'virtio-rng-pci,rng=rng0') | ||
65 | - self.vm.add_args('-object', 'rng-random,id=rng0,filename=/dev/urandom') | ||
66 | - | ||
67 | - @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab') | ||
68 | - def test_fedora_cloud_tcg_gicv2(self): | ||
69 | - """ | ||
70 | - :avocado: tags=accel:tcg | ||
71 | - :avocado: tags=cpu:max | ||
72 | - :avocado: tags=device:gicv2 | ||
73 | - """ | ||
74 | - self.require_accelerator("tcg") | ||
75 | - self.vm.add_args("-accel", "tcg") | ||
76 | - self.vm.add_args("-cpu", "max,lpa2=off") | ||
77 | - self.vm.add_args("-machine", "virt,gic-version=2") | ||
78 | - self.add_common_args() | ||
79 | - self.launch_and_wait(set_up_ssh_connection=False) | ||
80 | - | ||
81 | - @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab') | ||
82 | - def test_fedora_cloud_tcg_gicv3(self): | ||
83 | - """ | ||
84 | - :avocado: tags=accel:tcg | ||
85 | - :avocado: tags=cpu:max | ||
86 | - :avocado: tags=device:gicv3 | ||
87 | - """ | ||
88 | - self.require_accelerator("tcg") | ||
89 | - self.vm.add_args("-accel", "tcg") | ||
90 | - self.vm.add_args("-cpu", "max,lpa2=off") | ||
91 | - self.vm.add_args("-machine", "virt,gic-version=3") | ||
92 | - self.add_common_args() | ||
93 | - self.launch_and_wait(set_up_ssh_connection=False) | ||
94 | - | ||
95 | def test_virt_kvm(self): | ||
96 | """ | ||
97 | :avocado: tags=accel:kvm | ||
98 | @@ -XXX,XX +XXX,XX @@ def test_virt_kvm(self): | ||
99 | self.require_accelerator("kvm") | ||
100 | self.vm.add_args("-accel", "kvm") | ||
101 | self.vm.add_args("-machine", "virt,gic-version=host") | ||
102 | - self.add_common_args() | ||
103 | + self.vm.add_args('-bios', | ||
104 | + os.path.join(BUILD_DIR, 'pc-bios', | ||
105 | + 'edk2-aarch64-code.fd')) | ||
106 | + self.vm.add_args('-device', 'virtio-rng-pci,rng=rng0') | ||
107 | + self.vm.add_args('-object', 'rng-random,id=rng0,filename=/dev/urandom') | ||
108 | self.launch_and_wait(set_up_ssh_connection=False) | ||
109 | |||
110 | |||
111 | diff --git a/tests/avocado/machine_aarch64_virt.py b/tests/avocado/machine_aarch64_virt.py | ||
112 | index XXXXXXX..XXXXXXX 100644 | ||
113 | --- a/tests/avocado/machine_aarch64_virt.py | ||
114 | +++ b/tests/avocado/machine_aarch64_virt.py | ||
115 | @@ -XXX,XX +XXX,XX @@ | ||
116 | |||
117 | import time | ||
118 | import os | ||
119 | +import logging | ||
120 | |||
121 | from avocado_qemu import QemuSystemTest | ||
122 | from avocado_qemu import wait_for_console_pattern | ||
123 | from avocado_qemu import exec_command | ||
124 | from avocado_qemu import BUILD_DIR | ||
125 | +from avocado.utils import process | ||
126 | +from avocado.utils.path import find_command | ||
127 | |||
128 | class Aarch64VirtMachine(QemuSystemTest): | ||
129 | KERNEL_COMMON_COMMAND_LINE = 'printk.time=0 ' | ||
130 | @@ -XXX,XX +XXX,XX @@ def test_alpine_virt_tcg_gic_max(self): | ||
131 | self.wait_for_console_pattern('Welcome to Alpine Linux 3.16') | ||
132 | |||
133 | |||
134 | - def test_aarch64_virt(self): | ||
135 | + def common_aarch64_virt(self, machine): | ||
136 | """ | ||
137 | - :avocado: tags=arch:aarch64 | ||
138 | - :avocado: tags=machine:virt | ||
139 | - :avocado: tags=accel:tcg | ||
140 | - :avocado: tags=cpu:max | ||
141 | + Common code to launch basic virt machine with kernel+initrd | ||
142 | + and a scratch disk. | ||
143 | """ | ||
144 | + logger = logging.getLogger('aarch64_virt') | ||
145 | + | ||
146 | kernel_url = ('https://fileserver.linaro.org/s/' | ||
147 | 'z6B2ARM7DQT3HWN/download') | ||
148 | - | ||
149 | kernel_hash = 'ed11daab50c151dde0e1e9c9cb8b2d9bd3215347' | ||
150 | kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash) | ||
151 | |||
152 | @@ -XXX,XX +XXX,XX @@ def test_aarch64_virt(self): | ||
153 | 'console=ttyAMA0') | ||
154 | self.require_accelerator("tcg") | ||
155 | self.vm.add_args('-cpu', 'max,pauth-impdef=on', | ||
156 | + '-machine', machine, | ||
157 | '-accel', 'tcg', | ||
158 | '-kernel', kernel_path, | ||
159 | '-append', kernel_command_line) | ||
160 | + | ||
161 | + # A RNG offers an easy way to generate a few IRQs | ||
162 | + self.vm.add_args('-device', 'virtio-rng-pci,rng=rng0') | ||
163 | + self.vm.add_args('-object', | ||
164 | + 'rng-random,id=rng0,filename=/dev/urandom') | ||
165 | + | ||
166 | + # Also add a scratch block device | ||
167 | + logger.info('creating scratch qcow2 image') | ||
168 | + image_path = os.path.join(self.workdir, 'scratch.qcow2') | ||
169 | + qemu_img = os.path.join(BUILD_DIR, 'qemu-img') | ||
170 | + if not os.path.exists(qemu_img): | ||
171 | + qemu_img = find_command('qemu-img', False) | ||
172 | + if qemu_img is False: | ||
173 | + self.cancel('Could not find "qemu-img", which is required to ' | ||
174 | + 'create the temporary qcow2 image') | ||
175 | + cmd = '%s create -f qcow2 %s 8M' % (qemu_img, image_path) | ||
176 | + process.run(cmd) | ||
177 | + | ||
178 | + # Add the device | ||
179 | + self.vm.add_args('-blockdev', | ||
180 | + f"driver=qcow2,file.driver=file,file.filename={image_path},node-name=scratch") | ||
181 | + self.vm.add_args('-device', | ||
182 | + 'virtio-blk-device,drive=scratch') | ||
183 | + | ||
184 | self.vm.launch() | ||
185 | self.wait_for_console_pattern('Welcome to Buildroot') | ||
186 | time.sleep(0.1) | ||
187 | exec_command(self, 'root') | ||
188 | time.sleep(0.1) | ||
189 | + exec_command(self, 'dd if=/dev/hwrng of=/dev/vda bs=512 count=4') | ||
190 | + time.sleep(0.1) | ||
191 | + exec_command(self, 'md5sum /dev/vda') | ||
192 | + time.sleep(0.1) | ||
193 | + exec_command(self, 'cat /proc/interrupts') | ||
194 | + time.sleep(0.1) | ||
195 | exec_command(self, 'cat /proc/self/maps') | ||
196 | time.sleep(0.1) | ||
197 | + | ||
198 | + def test_aarch64_virt_gicv3(self): | ||
199 | + """ | ||
200 | + :avocado: tags=arch:aarch64 | ||
201 | + :avocado: tags=machine:virt | ||
202 | + :avocado: tags=accel:tcg | ||
203 | + :avocado: tags=cpu:max | ||
204 | + """ | ||
205 | + self.common_aarch64_virt("virt,gic_version=3") | ||
206 | + | ||
207 | + def test_aarch64_virt_gicv2(self): | ||
208 | + """ | ||
209 | + :avocado: tags=arch:aarch64 | ||
210 | + :avocado: tags=machine:virt | ||
211 | + :avocado: tags=accel:tcg | ||
212 | + :avocado: tags=cpu:max | ||
213 | + """ | ||
214 | + self.common_aarch64_virt("virt,gic-version=2") | ||
215 | -- | ||
216 | 2.34.1 | ||
217 | |||
218 | diff view generated by jsdifflib |
1 | From: Francisco Iglesias <francisco.iglesias@amd.com> | 1 | From: Mostafa Saleh <smostafa@google.com> |
---|---|---|---|
2 | 2 | ||
3 | Connect ZynqMP's USB controllers. | 3 | GBPA register can be used to globally abort all |
4 | transactions. | ||
4 | 5 | ||
5 | Signed-off-by: Francisco Iglesias <francisco.iglesias@amd.com> | 6 | It is described in the SMMU manual in "6.3.14 SMMU_GBPA". |
6 | Acked-by: Alistair Francis <alistair.francis@wdc.com> | 7 | ABORT reset value is IMPLEMENTATION DEFINED, it is chosen to |
7 | Message-id: 20220920081517.25401-1-frasse.iglesias@gmail.com | 8 | be zero(Do not abort incoming transactions). |
9 | |||
10 | Other fields have default values of Use Incoming. | ||
11 | |||
12 | If UPDATE is not set, the write is ignored. This is the only permitted | ||
13 | behavior in SMMUv3.2 and later.(6.3.14.1 Update procedure) | ||
14 | |||
15 | As this patch adds a new state to the SMMU (GBPA), it is added | ||
16 | in a new subsection for forward migration compatibility. | ||
17 | GBPA is only migrated if its value is different from the reset value. | ||
18 | It does this to be backward migration compatible if SW didn't write | ||
19 | the register. | ||
20 | |||
21 | Signed-off-by: Mostafa Saleh <smostafa@google.com> | ||
22 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
23 | Reviewed-by: Eric Auger <eric.auger@redhat.com> | ||
24 | Message-id: 20230214094009.2445653-1-smostafa@google.com | ||
8 | Reviewed-by: Peter Maydell <peter.maydell@linaro.org> | 25 | Reviewed-by: Peter Maydell <peter.maydell@linaro.org> |
9 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 26 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
10 | --- | 27 | --- |
11 | include/hw/arm/xlnx-zynqmp.h | 3 +++ | 28 | hw/arm/smmuv3-internal.h | 7 +++++++ |
12 | hw/arm/xlnx-zynqmp.c | 36 ++++++++++++++++++++++++++++++++++++ | 29 | include/hw/arm/smmuv3.h | 1 + |
13 | 2 files changed, 39 insertions(+) | 30 | hw/arm/smmuv3.c | 43 +++++++++++++++++++++++++++++++++++++++- |
31 | 3 files changed, 50 insertions(+), 1 deletion(-) | ||
14 | 32 | ||
15 | diff --git a/include/hw/arm/xlnx-zynqmp.h b/include/hw/arm/xlnx-zynqmp.h | 33 | diff --git a/hw/arm/smmuv3-internal.h b/hw/arm/smmuv3-internal.h |
16 | index XXXXXXX..XXXXXXX 100644 | 34 | index XXXXXXX..XXXXXXX 100644 |
17 | --- a/include/hw/arm/xlnx-zynqmp.h | 35 | --- a/hw/arm/smmuv3-internal.h |
18 | +++ b/include/hw/arm/xlnx-zynqmp.h | 36 | +++ b/hw/arm/smmuv3-internal.h |
19 | @@ -XXX,XX +XXX,XX @@ | 37 | @@ -XXX,XX +XXX,XX @@ REG32(CR0ACK, 0x24) |
20 | #include "hw/misc/xlnx-zynqmp-apu-ctrl.h" | 38 | REG32(CR1, 0x28) |
21 | #include "hw/misc/xlnx-zynqmp-crf.h" | 39 | REG32(CR2, 0x2c) |
22 | #include "hw/timer/cadence_ttc.h" | 40 | REG32(STATUSR, 0x40) |
23 | +#include "hw/usb/hcd-dwc3.h" | 41 | +REG32(GBPA, 0x44) |
24 | 42 | + FIELD(GBPA, ABORT, 20, 1) | |
25 | #define TYPE_XLNX_ZYNQMP "xlnx-zynqmp" | 43 | + FIELD(GBPA, UPDATE, 31, 1) |
26 | OBJECT_DECLARE_SIMPLE_TYPE(XlnxZynqMPState, XLNX_ZYNQMP) | 44 | + |
27 | @@ -XXX,XX +XXX,XX @@ OBJECT_DECLARE_SIMPLE_TYPE(XlnxZynqMPState, XLNX_ZYNQMP) | 45 | +/* Use incoming. */ |
28 | #define XLNX_ZYNQMP_NUM_SPIS 2 | 46 | +#define SMMU_GBPA_RESET_VAL 0x1000 |
29 | #define XLNX_ZYNQMP_NUM_GDMA_CH 8 | 47 | + |
30 | #define XLNX_ZYNQMP_NUM_ADMA_CH 8 | 48 | REG32(IRQ_CTRL, 0x50) |
31 | +#define XLNX_ZYNQMP_NUM_USB 2 | 49 | FIELD(IRQ_CTRL, GERROR_IRQEN, 0, 1) |
32 | 50 | FIELD(IRQ_CTRL, PRI_IRQEN, 1, 1) | |
33 | #define XLNX_ZYNQMP_NUM_QSPI_BUS 2 | 51 | diff --git a/include/hw/arm/smmuv3.h b/include/hw/arm/smmuv3.h |
34 | #define XLNX_ZYNQMP_NUM_QSPI_BUS_CS 2 | ||
35 | @@ -XXX,XX +XXX,XX @@ struct XlnxZynqMPState { | ||
36 | XlnxZynqMPAPUCtrl apu_ctrl; | ||
37 | XlnxZynqMPCRF crf; | ||
38 | CadenceTTCState ttc[XLNX_ZYNQMP_NUM_TTC]; | ||
39 | + USBDWC3 usb[XLNX_ZYNQMP_NUM_USB]; | ||
40 | |||
41 | char *boot_cpu; | ||
42 | ARMCPU *boot_cpu_ptr; | ||
43 | diff --git a/hw/arm/xlnx-zynqmp.c b/hw/arm/xlnx-zynqmp.c | ||
44 | index XXXXXXX..XXXXXXX 100644 | 52 | index XXXXXXX..XXXXXXX 100644 |
45 | --- a/hw/arm/xlnx-zynqmp.c | 53 | --- a/include/hw/arm/smmuv3.h |
46 | +++ b/hw/arm/xlnx-zynqmp.c | 54 | +++ b/include/hw/arm/smmuv3.h |
47 | @@ -XXX,XX +XXX,XX @@ static const int adma_ch_intr[XLNX_ZYNQMP_NUM_ADMA_CH] = { | 55 | @@ -XXX,XX +XXX,XX @@ struct SMMUv3State { |
48 | 77, 78, 79, 80, 81, 82, 83, 84 | 56 | uint32_t cr[3]; |
57 | uint32_t cr0ack; | ||
58 | uint32_t statusr; | ||
59 | + uint32_t gbpa; | ||
60 | uint32_t irq_ctrl; | ||
61 | uint32_t gerror; | ||
62 | uint32_t gerrorn; | ||
63 | diff --git a/hw/arm/smmuv3.c b/hw/arm/smmuv3.c | ||
64 | index XXXXXXX..XXXXXXX 100644 | ||
65 | --- a/hw/arm/smmuv3.c | ||
66 | +++ b/hw/arm/smmuv3.c | ||
67 | @@ -XXX,XX +XXX,XX @@ static void smmuv3_init_regs(SMMUv3State *s) | ||
68 | s->gerror = 0; | ||
69 | s->gerrorn = 0; | ||
70 | s->statusr = 0; | ||
71 | + s->gbpa = SMMU_GBPA_RESET_VAL; | ||
72 | } | ||
73 | |||
74 | static int smmu_get_ste(SMMUv3State *s, dma_addr_t addr, STE *buf, | ||
75 | @@ -XXX,XX +XXX,XX @@ static IOMMUTLBEntry smmuv3_translate(IOMMUMemoryRegion *mr, hwaddr addr, | ||
76 | qemu_mutex_lock(&s->mutex); | ||
77 | |||
78 | if (!smmu_enabled(s)) { | ||
79 | - status = SMMU_TRANS_DISABLE; | ||
80 | + if (FIELD_EX32(s->gbpa, GBPA, ABORT)) { | ||
81 | + status = SMMU_TRANS_ABORT; | ||
82 | + } else { | ||
83 | + status = SMMU_TRANS_DISABLE; | ||
84 | + } | ||
85 | goto epilogue; | ||
86 | } | ||
87 | |||
88 | @@ -XXX,XX +XXX,XX @@ static MemTxResult smmu_writel(SMMUv3State *s, hwaddr offset, | ||
89 | case A_GERROR_IRQ_CFG2: | ||
90 | s->gerror_irq_cfg2 = data; | ||
91 | return MEMTX_OK; | ||
92 | + case A_GBPA: | ||
93 | + /* | ||
94 | + * If UPDATE is not set, the write is ignored. This is the only | ||
95 | + * permitted behavior in SMMUv3.2 and later. | ||
96 | + */ | ||
97 | + if (data & R_GBPA_UPDATE_MASK) { | ||
98 | + /* Ignore update bit as write is synchronous. */ | ||
99 | + s->gbpa = data & ~R_GBPA_UPDATE_MASK; | ||
100 | + } | ||
101 | + return MEMTX_OK; | ||
102 | case A_STRTAB_BASE: /* 64b */ | ||
103 | s->strtab_base = deposit64(s->strtab_base, 0, 32, data); | ||
104 | return MEMTX_OK; | ||
105 | @@ -XXX,XX +XXX,XX @@ static MemTxResult smmu_readl(SMMUv3State *s, hwaddr offset, | ||
106 | case A_STATUSR: | ||
107 | *data = s->statusr; | ||
108 | return MEMTX_OK; | ||
109 | + case A_GBPA: | ||
110 | + *data = s->gbpa; | ||
111 | + return MEMTX_OK; | ||
112 | case A_IRQ_CTRL: | ||
113 | case A_IRQ_CTRL_ACK: | ||
114 | *data = s->irq_ctrl; | ||
115 | @@ -XXX,XX +XXX,XX @@ static const VMStateDescription vmstate_smmuv3_queue = { | ||
116 | }, | ||
49 | }; | 117 | }; |
50 | 118 | ||
51 | +static const uint64_t usb_addr[XLNX_ZYNQMP_NUM_USB] = { | 119 | +static bool smmuv3_gbpa_needed(void *opaque) |
52 | + 0xFE200000, 0xFE300000 | 120 | +{ |
121 | + SMMUv3State *s = opaque; | ||
122 | + | ||
123 | + /* Only migrate GBPA if it has different reset value. */ | ||
124 | + return s->gbpa != SMMU_GBPA_RESET_VAL; | ||
125 | +} | ||
126 | + | ||
127 | +static const VMStateDescription vmstate_gbpa = { | ||
128 | + .name = "smmuv3/gbpa", | ||
129 | + .version_id = 1, | ||
130 | + .minimum_version_id = 1, | ||
131 | + .needed = smmuv3_gbpa_needed, | ||
132 | + .fields = (VMStateField[]) { | ||
133 | + VMSTATE_UINT32(gbpa, SMMUv3State), | ||
134 | + VMSTATE_END_OF_LIST() | ||
135 | + } | ||
53 | +}; | 136 | +}; |
54 | + | 137 | + |
55 | +static const int usb_intr[XLNX_ZYNQMP_NUM_USB] = { | 138 | static const VMStateDescription vmstate_smmuv3 = { |
56 | + 65, 70 | 139 | .name = "smmuv3", |
57 | +}; | 140 | .version_id = 1, |
58 | + | 141 | @@ -XXX,XX +XXX,XX @@ static const VMStateDescription vmstate_smmuv3 = { |
59 | typedef struct XlnxZynqMPGICRegion { | 142 | |
60 | int region_index; | 143 | VMSTATE_END_OF_LIST(), |
61 | uint32_t address; | 144 | }, |
62 | @@ -XXX,XX +XXX,XX @@ static void xlnx_zynqmp_init(Object *obj) | 145 | + .subsections = (const VMStateDescription * []) { |
63 | object_initialize_child(obj, "qspi-dma", &s->qspi_dma, TYPE_XLNX_CSU_DMA); | 146 | + &vmstate_gbpa, |
64 | object_initialize_child(obj, "qspi-irq-orgate", | 147 | + NULL |
65 | &s->qspi_irq_orgate, TYPE_OR_IRQ); | ||
66 | + | ||
67 | + for (i = 0; i < XLNX_ZYNQMP_NUM_USB; i++) { | ||
68 | + object_initialize_child(obj, "usb[*]", &s->usb[i], TYPE_USB_DWC3); | ||
69 | + } | 148 | + } |
70 | } | 149 | }; |
71 | 150 | ||
72 | static void xlnx_zynqmp_realize(DeviceState *dev, Error **errp) | 151 | static void smmuv3_instance_init(Object *obj) |
73 | @@ -XXX,XX +XXX,XX @@ static void xlnx_zynqmp_realize(DeviceState *dev, Error **errp) | ||
74 | object_property_add_alias(OBJECT(s), bus_name, | ||
75 | OBJECT(&s->qspi), target_bus); | ||
76 | } | ||
77 | + | ||
78 | + for (i = 0; i < XLNX_ZYNQMP_NUM_USB; i++) { | ||
79 | + if (!object_property_set_link(OBJECT(&s->usb[i].sysbus_xhci), "dma", | ||
80 | + OBJECT(system_memory), errp)) { | ||
81 | + return; | ||
82 | + } | ||
83 | + | ||
84 | + qdev_prop_set_uint32(DEVICE(&s->usb[i].sysbus_xhci), "intrs", 4); | ||
85 | + qdev_prop_set_uint32(DEVICE(&s->usb[i].sysbus_xhci), "slots", 2); | ||
86 | + | ||
87 | + if (!sysbus_realize(SYS_BUS_DEVICE(&s->usb[i]), errp)) { | ||
88 | + return; | ||
89 | + } | ||
90 | + | ||
91 | + sysbus_mmio_map(SYS_BUS_DEVICE(&s->usb[i]), 0, usb_addr[i]); | ||
92 | + sysbus_connect_irq(SYS_BUS_DEVICE(&s->usb[i].sysbus_xhci), 0, | ||
93 | + gic_spi[usb_intr[i]]); | ||
94 | + sysbus_connect_irq(SYS_BUS_DEVICE(&s->usb[i].sysbus_xhci), 1, | ||
95 | + gic_spi[usb_intr[i] + 1]); | ||
96 | + sysbus_connect_irq(SYS_BUS_DEVICE(&s->usb[i].sysbus_xhci), 2, | ||
97 | + gic_spi[usb_intr[i] + 2]); | ||
98 | + sysbus_connect_irq(SYS_BUS_DEVICE(&s->usb[i].sysbus_xhci), 3, | ||
99 | + gic_spi[usb_intr[i] + 3]); | ||
100 | + } | ||
101 | } | ||
102 | |||
103 | static Property xlnx_zynqmp_props[] = { | ||
104 | -- | 152 | -- |
105 | 2.25.1 | 153 | 2.34.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
1 | 2 | ||
3 | Since commit acc0b8b05a when running the ZynqMP ZCU102 board with | ||
4 | a QEMU configured using --without-default-devices, we get: | ||
5 | |||
6 | $ qemu-system-aarch64 -M xlnx-zcu102 | ||
7 | qemu-system-aarch64: missing object type 'usb_dwc3' | ||
8 | Abort trap: 6 | ||
9 | |||
10 | Fix by adding the missing Kconfig dependency. | ||
11 | |||
12 | Fixes: acc0b8b05a ("hw/arm/xlnx-zynqmp: Connect ZynqMP's USB controllers") | ||
13 | Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
14 | Message-id: 20230216092327.2203-1-philmd@linaro.org | ||
15 | Reviewed-by: Francisco Iglesias <francisco.iglesias@amd.com> | ||
16 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
17 | --- | ||
18 | hw/arm/Kconfig | 1 + | ||
19 | 1 file changed, 1 insertion(+) | ||
20 | |||
21 | diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig | ||
22 | index XXXXXXX..XXXXXXX 100644 | ||
23 | --- a/hw/arm/Kconfig | ||
24 | +++ b/hw/arm/Kconfig | ||
25 | @@ -XXX,XX +XXX,XX @@ config XLNX_ZYNQMP_ARM | ||
26 | select XLNX_CSU_DMA | ||
27 | select XLNX_ZYNQMP | ||
28 | select XLNX_ZDMA | ||
29 | + select USB_DWC3 | ||
30 | |||
31 | config XLNX_VERSAL | ||
32 | bool | ||
33 | -- | ||
34 | 2.34.1 | ||
35 | |||
36 | diff view generated by jsdifflib |
1 | From: Jean-Philippe Brucker <jean-philippe@linaro.org> | 1 | From: Cornelia Huck <cohuck@redhat.com> |
---|---|---|---|
2 | 2 | ||
3 | The "msi-parent" property can be used on the PCI node when MSIs do not | 3 | Just use current_accel_name() directly. |
4 | contain sideband data (device IDs) [1]. In QEMU, MSI transactions | ||
5 | contain the requester ID, so the PCI node should use the "msi-map" | ||
6 | property instead of "msi-parent". In our case the property describes an | ||
7 | identity map between requester ID and sideband data. | ||
8 | 4 | ||
9 | This fixes a warning when passing the DTB generated by QEMU to dtc, | 5 | Signed-off-by: Cornelia Huck <cohuck@redhat.com> |
10 | following a recent change to the GICv3 node: | ||
11 | |||
12 | Warning (msi_parent_property): /pcie@10000000:msi-parent: property size (4) too small for cell size 1 | ||
13 | |||
14 | [1] linux/Documentation/devicetree/bindings/pci/pci-msi.txt | ||
15 | |||
16 | Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org> | ||
17 | Reviewed-by: Peter Maydell <peter.maydell@linaro.org> | ||
18 | Reviewed-by: Eric Auger <eric.auger@redhat.com> | 6 | Reviewed-by: Eric Auger <eric.auger@redhat.com> |
19 | Message-id: 20220927100347.176606-4-jean-philippe@linaro.org | 7 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> |
20 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 8 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
21 | --- | 9 | --- |
22 | hw/arm/virt.c | 4 ++-- | 10 | hw/arm/virt.c | 6 +++--- |
23 | 1 file changed, 2 insertions(+), 2 deletions(-) | 11 | 1 file changed, 3 insertions(+), 3 deletions(-) |
24 | 12 | ||
25 | diff --git a/hw/arm/virt.c b/hw/arm/virt.c | 13 | diff --git a/hw/arm/virt.c b/hw/arm/virt.c |
26 | index XXXXXXX..XXXXXXX 100644 | 14 | index XXXXXXX..XXXXXXX 100644 |
27 | --- a/hw/arm/virt.c | 15 | --- a/hw/arm/virt.c |
28 | +++ b/hw/arm/virt.c | 16 | +++ b/hw/arm/virt.c |
29 | @@ -XXX,XX +XXX,XX @@ static void create_pcie(VirtMachineState *vms) | 17 | @@ -XXX,XX +XXX,XX @@ static void machvirt_init(MachineState *machine) |
30 | qemu_fdt_setprop(ms->fdt, nodename, "dma-coherent", NULL, 0); | 18 | if (vms->secure && (kvm_enabled() || hvf_enabled())) { |
31 | 19 | error_report("mach-virt: %s does not support providing " | |
32 | if (vms->msi_phandle) { | 20 | "Security extensions (TrustZone) to the guest CPU", |
33 | - qemu_fdt_setprop_cells(ms->fdt, nodename, "msi-parent", | 21 | - kvm_enabled() ? "KVM" : "HVF"); |
34 | - vms->msi_phandle); | 22 | + current_accel_name()); |
35 | + qemu_fdt_setprop_cells(ms->fdt, nodename, "msi-map", | 23 | exit(1); |
36 | + 0, vms->msi_phandle, 0, 0x10000); | ||
37 | } | 24 | } |
38 | 25 | ||
39 | qemu_fdt_setprop_sized_cells(ms->fdt, nodename, "reg", | 26 | if (vms->virt && (kvm_enabled() || hvf_enabled())) { |
27 | error_report("mach-virt: %s does not support providing " | ||
28 | "Virtualization extensions to the guest CPU", | ||
29 | - kvm_enabled() ? "KVM" : "HVF"); | ||
30 | + current_accel_name()); | ||
31 | exit(1); | ||
32 | } | ||
33 | |||
34 | if (vms->mte && (kvm_enabled() || hvf_enabled())) { | ||
35 | error_report("mach-virt: %s does not support providing " | ||
36 | "MTE to the guest CPU", | ||
37 | - kvm_enabled() ? "KVM" : "HVF"); | ||
38 | + current_accel_name()); | ||
39 | exit(1); | ||
40 | } | ||
41 | |||
40 | -- | 42 | -- |
41 | 2.25.1 | 43 | 2.34.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Hao Wu <wuhaotsh@google.com> | ||
1 | 2 | ||
3 | Havard is no longer working on the Nuvoton systems for a while | ||
4 | and won't be able to do any work on it in the future. So I'll | ||
5 | take over maintaining the Nuvoton system from him. | ||
6 | |||
7 | Signed-off-by: Hao Wu <wuhaotsh@google.com> | ||
8 | Acked-by: Havard Skinnemoen <hskinnemoen@google.com> | ||
9 | Reviewed-by: Philippe Mathieu-Daude <philmd@linaro.org> | ||
10 | Message-id: 20230208235433.3989937-2-wuhaotsh@google.com | ||
11 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
12 | --- | ||
13 | MAINTAINERS | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/MAINTAINERS b/MAINTAINERS | ||
17 | index XXXXXXX..XXXXXXX 100644 | ||
18 | --- a/MAINTAINERS | ||
19 | +++ b/MAINTAINERS | ||
20 | @@ -XXX,XX +XXX,XX @@ F: include/hw/net/mv88w8618_eth.h | ||
21 | F: docs/system/arm/musicpal.rst | ||
22 | |||
23 | Nuvoton NPCM7xx | ||
24 | -M: Havard Skinnemoen <hskinnemoen@google.com> | ||
25 | M: Tyrone Ting <kfting@nuvoton.com> | ||
26 | +M: Hao Wu <wuhaotsh@google.com> | ||
27 | L: qemu-arm@nongnu.org | ||
28 | S: Supported | ||
29 | F: hw/*/npcm7xx* | ||
30 | -- | ||
31 | 2.34.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Hao Wu <wuhaotsh@google.com> | ||
1 | 2 | ||
3 | Nuvoton's PSPI is a general purpose SPI module which enables | ||
4 | connections to SPI-based peripheral devices. | ||
5 | |||
6 | Signed-off-by: Hao Wu <wuhaotsh@google.com> | ||
7 | Reviewed-by: Chris Rauer <crauer@google.com> | ||
8 | Reviewed-by: Philippe Mathieu-Daude <philmd@linaro.org> | ||
9 | Message-id: 20230208235433.3989937-3-wuhaotsh@google.com | ||
10 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
11 | --- | ||
12 | MAINTAINERS | 6 +- | ||
13 | include/hw/ssi/npcm_pspi.h | 53 +++++++++ | ||
14 | hw/ssi/npcm_pspi.c | 221 +++++++++++++++++++++++++++++++++++++ | ||
15 | hw/ssi/meson.build | 2 +- | ||
16 | hw/ssi/trace-events | 5 + | ||
17 | 5 files changed, 283 insertions(+), 4 deletions(-) | ||
18 | create mode 100644 include/hw/ssi/npcm_pspi.h | ||
19 | create mode 100644 hw/ssi/npcm_pspi.c | ||
20 | |||
21 | diff --git a/MAINTAINERS b/MAINTAINERS | ||
22 | index XXXXXXX..XXXXXXX 100644 | ||
23 | --- a/MAINTAINERS | ||
24 | +++ b/MAINTAINERS | ||
25 | @@ -XXX,XX +XXX,XX @@ M: Tyrone Ting <kfting@nuvoton.com> | ||
26 | M: Hao Wu <wuhaotsh@google.com> | ||
27 | L: qemu-arm@nongnu.org | ||
28 | S: Supported | ||
29 | -F: hw/*/npcm7xx* | ||
30 | -F: include/hw/*/npcm7xx* | ||
31 | -F: tests/qtest/npcm7xx* | ||
32 | +F: hw/*/npcm* | ||
33 | +F: include/hw/*/npcm* | ||
34 | +F: tests/qtest/npcm* | ||
35 | F: pc-bios/npcm7xx_bootrom.bin | ||
36 | F: roms/vbootrom | ||
37 | F: docs/system/arm/nuvoton.rst | ||
38 | diff --git a/include/hw/ssi/npcm_pspi.h b/include/hw/ssi/npcm_pspi.h | ||
39 | new file mode 100644 | ||
40 | index XXXXXXX..XXXXXXX | ||
41 | --- /dev/null | ||
42 | +++ b/include/hw/ssi/npcm_pspi.h | ||
43 | @@ -XXX,XX +XXX,XX @@ | ||
44 | +/* | ||
45 | + * Nuvoton Peripheral SPI Module | ||
46 | + * | ||
47 | + * Copyright 2023 Google LLC | ||
48 | + * | ||
49 | + * This program is free software; you can redistribute it and/or modify it | ||
50 | + * under the terms of the GNU General Public License as published by the | ||
51 | + * Free Software Foundation; either version 2 of the License, or | ||
52 | + * (at your option) any later version. | ||
53 | + * | ||
54 | + * This program is distributed in the hope that it will be useful, but WITHOUT | ||
55 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
56 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
57 | + * for more details. | ||
58 | + */ | ||
59 | +#ifndef NPCM_PSPI_H | ||
60 | +#define NPCM_PSPI_H | ||
61 | + | ||
62 | +#include "hw/ssi/ssi.h" | ||
63 | +#include "hw/sysbus.h" | ||
64 | + | ||
65 | +/* | ||
66 | + * Number of registers in our device state structure. Don't change this without | ||
67 | + * incrementing the version_id in the vmstate. | ||
68 | + */ | ||
69 | +#define NPCM_PSPI_NR_REGS 3 | ||
70 | + | ||
71 | +/** | ||
72 | + * NPCMPSPIState - Device state for one Flash Interface Unit. | ||
73 | + * @parent: System bus device. | ||
74 | + * @mmio: Memory region for register access. | ||
75 | + * @spi: The SPI bus mastered by this controller. | ||
76 | + * @regs: Register contents. | ||
77 | + * @irq: The interrupt request queue for this module. | ||
78 | + * | ||
79 | + * Each PSPI has a shared bank of registers, and controls up to four chip | ||
80 | + * selects. Each chip select has a dedicated memory region which may be used to | ||
81 | + * read and write the flash connected to that chip select as if it were memory. | ||
82 | + */ | ||
83 | +typedef struct NPCMPSPIState { | ||
84 | + SysBusDevice parent; | ||
85 | + | ||
86 | + MemoryRegion mmio; | ||
87 | + | ||
88 | + SSIBus *spi; | ||
89 | + uint16_t regs[NPCM_PSPI_NR_REGS]; | ||
90 | + qemu_irq irq; | ||
91 | +} NPCMPSPIState; | ||
92 | + | ||
93 | +#define TYPE_NPCM_PSPI "npcm-pspi" | ||
94 | +OBJECT_DECLARE_SIMPLE_TYPE(NPCMPSPIState, NPCM_PSPI) | ||
95 | + | ||
96 | +#endif /* NPCM_PSPI_H */ | ||
97 | diff --git a/hw/ssi/npcm_pspi.c b/hw/ssi/npcm_pspi.c | ||
98 | new file mode 100644 | ||
99 | index XXXXXXX..XXXXXXX | ||
100 | --- /dev/null | ||
101 | +++ b/hw/ssi/npcm_pspi.c | ||
102 | @@ -XXX,XX +XXX,XX @@ | ||
103 | +/* | ||
104 | + * Nuvoton NPCM Peripheral SPI Module (PSPI) | ||
105 | + * | ||
106 | + * Copyright 2023 Google LLC | ||
107 | + * | ||
108 | + * This program is free software; you can redistribute it and/or modify it | ||
109 | + * under the terms of the GNU General Public License as published by the | ||
110 | + * Free Software Foundation; either version 2 of the License, or | ||
111 | + * (at your option) any later version. | ||
112 | + * | ||
113 | + * This program is distributed in the hope that it will be useful, but WITHOUT | ||
114 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
115 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
116 | + * for more details. | ||
117 | + */ | ||
118 | + | ||
119 | +#include "qemu/osdep.h" | ||
120 | + | ||
121 | +#include "hw/irq.h" | ||
122 | +#include "hw/registerfields.h" | ||
123 | +#include "hw/ssi/npcm_pspi.h" | ||
124 | +#include "migration/vmstate.h" | ||
125 | +#include "qapi/error.h" | ||
126 | +#include "qemu/error-report.h" | ||
127 | +#include "qemu/log.h" | ||
128 | +#include "qemu/module.h" | ||
129 | +#include "qemu/units.h" | ||
130 | + | ||
131 | +#include "trace.h" | ||
132 | + | ||
133 | +REG16(PSPI_DATA, 0x0) | ||
134 | +REG16(PSPI_CTL1, 0x2) | ||
135 | + FIELD(PSPI_CTL1, SPIEN, 0, 1) | ||
136 | + FIELD(PSPI_CTL1, MOD, 2, 1) | ||
137 | + FIELD(PSPI_CTL1, EIR, 5, 1) | ||
138 | + FIELD(PSPI_CTL1, EIW, 6, 1) | ||
139 | + FIELD(PSPI_CTL1, SCM, 7, 1) | ||
140 | + FIELD(PSPI_CTL1, SCIDL, 8, 1) | ||
141 | + FIELD(PSPI_CTL1, SCDV, 9, 7) | ||
142 | +REG16(PSPI_STAT, 0x4) | ||
143 | + FIELD(PSPI_STAT, BSY, 0, 1) | ||
144 | + FIELD(PSPI_STAT, RBF, 1, 1) | ||
145 | + | ||
146 | +static void npcm_pspi_update_irq(NPCMPSPIState *s) | ||
147 | +{ | ||
148 | + int level = 0; | ||
149 | + | ||
150 | + /* Only fire IRQ when the module is enabled. */ | ||
151 | + if (FIELD_EX16(s->regs[R_PSPI_CTL1], PSPI_CTL1, SPIEN)) { | ||
152 | + /* Update interrupt as BSY is cleared. */ | ||
153 | + if ((!FIELD_EX16(s->regs[R_PSPI_STAT], PSPI_STAT, BSY)) && | ||
154 | + FIELD_EX16(s->regs[R_PSPI_CTL1], PSPI_CTL1, EIW)) { | ||
155 | + level = 1; | ||
156 | + } | ||
157 | + | ||
158 | + /* Update interrupt as RBF is set. */ | ||
159 | + if (FIELD_EX16(s->regs[R_PSPI_STAT], PSPI_STAT, RBF) && | ||
160 | + FIELD_EX16(s->regs[R_PSPI_CTL1], PSPI_CTL1, EIR)) { | ||
161 | + level = 1; | ||
162 | + } | ||
163 | + } | ||
164 | + qemu_set_irq(s->irq, level); | ||
165 | +} | ||
166 | + | ||
167 | +static uint16_t npcm_pspi_read_data(NPCMPSPIState *s) | ||
168 | +{ | ||
169 | + uint16_t value = s->regs[R_PSPI_DATA]; | ||
170 | + | ||
171 | + /* Clear stat bits as the value are read out. */ | ||
172 | + s->regs[R_PSPI_STAT] = 0; | ||
173 | + | ||
174 | + return value; | ||
175 | +} | ||
176 | + | ||
177 | +static void npcm_pspi_write_data(NPCMPSPIState *s, uint16_t data) | ||
178 | +{ | ||
179 | + uint16_t value = 0; | ||
180 | + | ||
181 | + if (FIELD_EX16(s->regs[R_PSPI_CTL1], PSPI_CTL1, MOD)) { | ||
182 | + value = ssi_transfer(s->spi, extract16(data, 8, 8)) << 8; | ||
183 | + } | ||
184 | + value |= ssi_transfer(s->spi, extract16(data, 0, 8)); | ||
185 | + s->regs[R_PSPI_DATA] = value; | ||
186 | + | ||
187 | + /* Mark data as available */ | ||
188 | + s->regs[R_PSPI_STAT] = R_PSPI_STAT_BSY_MASK | R_PSPI_STAT_RBF_MASK; | ||
189 | +} | ||
190 | + | ||
191 | +/* Control register read handler. */ | ||
192 | +static uint64_t npcm_pspi_ctrl_read(void *opaque, hwaddr addr, | ||
193 | + unsigned int size) | ||
194 | +{ | ||
195 | + NPCMPSPIState *s = opaque; | ||
196 | + uint16_t value; | ||
197 | + | ||
198 | + switch (addr) { | ||
199 | + case A_PSPI_DATA: | ||
200 | + value = npcm_pspi_read_data(s); | ||
201 | + break; | ||
202 | + | ||
203 | + case A_PSPI_CTL1: | ||
204 | + value = s->regs[R_PSPI_CTL1]; | ||
205 | + break; | ||
206 | + | ||
207 | + case A_PSPI_STAT: | ||
208 | + value = s->regs[R_PSPI_STAT]; | ||
209 | + break; | ||
210 | + | ||
211 | + default: | ||
212 | + qemu_log_mask(LOG_GUEST_ERROR, | ||
213 | + "%s: write to invalid offset 0x%" PRIx64 "\n", | ||
214 | + DEVICE(s)->canonical_path, addr); | ||
215 | + return 0; | ||
216 | + } | ||
217 | + trace_npcm_pspi_ctrl_read(DEVICE(s)->canonical_path, addr, value); | ||
218 | + npcm_pspi_update_irq(s); | ||
219 | + | ||
220 | + return value; | ||
221 | +} | ||
222 | + | ||
223 | +/* Control register write handler. */ | ||
224 | +static void npcm_pspi_ctrl_write(void *opaque, hwaddr addr, uint64_t v, | ||
225 | + unsigned int size) | ||
226 | +{ | ||
227 | + NPCMPSPIState *s = opaque; | ||
228 | + uint16_t value = v; | ||
229 | + | ||
230 | + trace_npcm_pspi_ctrl_write(DEVICE(s)->canonical_path, addr, value); | ||
231 | + | ||
232 | + switch (addr) { | ||
233 | + case A_PSPI_DATA: | ||
234 | + npcm_pspi_write_data(s, value); | ||
235 | + break; | ||
236 | + | ||
237 | + case A_PSPI_CTL1: | ||
238 | + s->regs[R_PSPI_CTL1] = value; | ||
239 | + break; | ||
240 | + | ||
241 | + case A_PSPI_STAT: | ||
242 | + qemu_log_mask(LOG_GUEST_ERROR, | ||
243 | + "%s: write to read-only register PSPI_STAT: 0x%08" | ||
244 | + PRIx64 "\n", DEVICE(s)->canonical_path, v); | ||
245 | + break; | ||
246 | + | ||
247 | + default: | ||
248 | + qemu_log_mask(LOG_GUEST_ERROR, | ||
249 | + "%s: write to invalid offset 0x%" PRIx64 "\n", | ||
250 | + DEVICE(s)->canonical_path, addr); | ||
251 | + return; | ||
252 | + } | ||
253 | + npcm_pspi_update_irq(s); | ||
254 | +} | ||
255 | + | ||
256 | +static const MemoryRegionOps npcm_pspi_ctrl_ops = { | ||
257 | + .read = npcm_pspi_ctrl_read, | ||
258 | + .write = npcm_pspi_ctrl_write, | ||
259 | + .endianness = DEVICE_LITTLE_ENDIAN, | ||
260 | + .valid = { | ||
261 | + .min_access_size = 1, | ||
262 | + .max_access_size = 2, | ||
263 | + .unaligned = false, | ||
264 | + }, | ||
265 | + .impl = { | ||
266 | + .min_access_size = 2, | ||
267 | + .max_access_size = 2, | ||
268 | + .unaligned = false, | ||
269 | + }, | ||
270 | +}; | ||
271 | + | ||
272 | +static void npcm_pspi_enter_reset(Object *obj, ResetType type) | ||
273 | +{ | ||
274 | + NPCMPSPIState *s = NPCM_PSPI(obj); | ||
275 | + | ||
276 | + trace_npcm_pspi_enter_reset(DEVICE(obj)->canonical_path, type); | ||
277 | + memset(s->regs, 0, sizeof(s->regs)); | ||
278 | +} | ||
279 | + | ||
280 | +static void npcm_pspi_realize(DeviceState *dev, Error **errp) | ||
281 | +{ | ||
282 | + NPCMPSPIState *s = NPCM_PSPI(dev); | ||
283 | + SysBusDevice *sbd = SYS_BUS_DEVICE(dev); | ||
284 | + Object *obj = OBJECT(dev); | ||
285 | + | ||
286 | + s->spi = ssi_create_bus(dev, "pspi"); | ||
287 | + memory_region_init_io(&s->mmio, obj, &npcm_pspi_ctrl_ops, s, | ||
288 | + "mmio", 4 * KiB); | ||
289 | + sysbus_init_mmio(sbd, &s->mmio); | ||
290 | + sysbus_init_irq(sbd, &s->irq); | ||
291 | +} | ||
292 | + | ||
293 | +static const VMStateDescription vmstate_npcm_pspi = { | ||
294 | + .name = "npcm-pspi", | ||
295 | + .version_id = 0, | ||
296 | + .minimum_version_id = 0, | ||
297 | + .fields = (VMStateField[]) { | ||
298 | + VMSTATE_UINT16_ARRAY(regs, NPCMPSPIState, NPCM_PSPI_NR_REGS), | ||
299 | + VMSTATE_END_OF_LIST(), | ||
300 | + }, | ||
301 | +}; | ||
302 | + | ||
303 | + | ||
304 | +static void npcm_pspi_class_init(ObjectClass *klass, void *data) | ||
305 | +{ | ||
306 | + ResettableClass *rc = RESETTABLE_CLASS(klass); | ||
307 | + DeviceClass *dc = DEVICE_CLASS(klass); | ||
308 | + | ||
309 | + dc->desc = "NPCM Peripheral SPI Module"; | ||
310 | + dc->realize = npcm_pspi_realize; | ||
311 | + dc->vmsd = &vmstate_npcm_pspi; | ||
312 | + rc->phases.enter = npcm_pspi_enter_reset; | ||
313 | +} | ||
314 | + | ||
315 | +static const TypeInfo npcm_pspi_types[] = { | ||
316 | + { | ||
317 | + .name = TYPE_NPCM_PSPI, | ||
318 | + .parent = TYPE_SYS_BUS_DEVICE, | ||
319 | + .instance_size = sizeof(NPCMPSPIState), | ||
320 | + .class_init = npcm_pspi_class_init, | ||
321 | + }, | ||
322 | +}; | ||
323 | +DEFINE_TYPES(npcm_pspi_types); | ||
324 | diff --git a/hw/ssi/meson.build b/hw/ssi/meson.build | ||
325 | index XXXXXXX..XXXXXXX 100644 | ||
326 | --- a/hw/ssi/meson.build | ||
327 | +++ b/hw/ssi/meson.build | ||
328 | @@ -XXX,XX +XXX,XX @@ | ||
329 | softmmu_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files('aspeed_smc.c')) | ||
330 | softmmu_ss.add(when: 'CONFIG_MSF2', if_true: files('mss-spi.c')) | ||
331 | -softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_fiu.c')) | ||
332 | +softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_fiu.c', 'npcm_pspi.c')) | ||
333 | softmmu_ss.add(when: 'CONFIG_PL022', if_true: files('pl022.c')) | ||
334 | softmmu_ss.add(when: 'CONFIG_SIFIVE_SPI', if_true: files('sifive_spi.c')) | ||
335 | softmmu_ss.add(when: 'CONFIG_SSI', if_true: files('ssi.c')) | ||
336 | diff --git a/hw/ssi/trace-events b/hw/ssi/trace-events | ||
337 | index XXXXXXX..XXXXXXX 100644 | ||
338 | --- a/hw/ssi/trace-events | ||
339 | +++ b/hw/ssi/trace-events | ||
340 | @@ -XXX,XX +XXX,XX @@ npcm7xx_fiu_ctrl_write(const char *id, uint64_t addr, uint32_t data) "%s offset: | ||
341 | npcm7xx_fiu_flash_read(const char *id, int cs, uint64_t addr, unsigned int size, uint64_t value) "%s[%d] offset: 0x%08" PRIx64 " size: %u value: 0x%" PRIx64 | ||
342 | npcm7xx_fiu_flash_write(const char *id, unsigned cs, uint64_t addr, unsigned int size, uint64_t value) "%s[%d] offset: 0x%08" PRIx64 " size: %u value: 0x%" PRIx64 | ||
343 | |||
344 | +# npcm_pspi.c | ||
345 | +npcm_pspi_enter_reset(const char *id, int reset_type) "%s reset type: %d" | ||
346 | +npcm_pspi_ctrl_read(const char *id, uint64_t addr, uint16_t data) "%s offset: 0x%03" PRIx64 " value: 0x%04" PRIx16 | ||
347 | +npcm_pspi_ctrl_write(const char *id, uint64_t addr, uint16_t data) "%s offset: 0x%03" PRIx64 " value: 0x%04" PRIx16 | ||
348 | + | ||
349 | # ibex_spi_host.c | ||
350 | |||
351 | ibex_spi_host_reset(const char *msg) "%s" | ||
352 | -- | ||
353 | 2.34.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Hao Wu <wuhaotsh@google.com> | ||
1 | 2 | ||
3 | Signed-off-by: Hao Wu <wuhaotsh@google.com> | ||
4 | Reviewed-by: Titus Rwantare <titusr@google.com> | ||
5 | Reviewed-by: Philippe Mathieu-Daude <philmd@linaro.org> | ||
6 | Message-id: 20230208235433.3989937-4-wuhaotsh@google.com | ||
7 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
8 | --- | ||
9 | docs/system/arm/nuvoton.rst | 2 +- | ||
10 | include/hw/arm/npcm7xx.h | 2 ++ | ||
11 | hw/arm/npcm7xx.c | 25 +++++++++++++++++++++++-- | ||
12 | 3 files changed, 26 insertions(+), 3 deletions(-) | ||
13 | |||
14 | diff --git a/docs/system/arm/nuvoton.rst b/docs/system/arm/nuvoton.rst | ||
15 | index XXXXXXX..XXXXXXX 100644 | ||
16 | --- a/docs/system/arm/nuvoton.rst | ||
17 | +++ b/docs/system/arm/nuvoton.rst | ||
18 | @@ -XXX,XX +XXX,XX @@ Supported devices | ||
19 | * SMBus controller (SMBF) | ||
20 | * Ethernet controller (EMC) | ||
21 | * Tachometer | ||
22 | + * Peripheral SPI controller (PSPI) | ||
23 | |||
24 | Missing devices | ||
25 | --------------- | ||
26 | @@ -XXX,XX +XXX,XX @@ Missing devices | ||
27 | |||
28 | * Ethernet controller (GMAC) | ||
29 | * USB device (USBD) | ||
30 | - * Peripheral SPI controller (PSPI) | ||
31 | * SD/MMC host | ||
32 | * PECI interface | ||
33 | * PCI and PCIe root complex and bridges | ||
34 | diff --git a/include/hw/arm/npcm7xx.h b/include/hw/arm/npcm7xx.h | ||
35 | index XXXXXXX..XXXXXXX 100644 | ||
36 | --- a/include/hw/arm/npcm7xx.h | ||
37 | +++ b/include/hw/arm/npcm7xx.h | ||
38 | @@ -XXX,XX +XXX,XX @@ | ||
39 | #include "hw/nvram/npcm7xx_otp.h" | ||
40 | #include "hw/timer/npcm7xx_timer.h" | ||
41 | #include "hw/ssi/npcm7xx_fiu.h" | ||
42 | +#include "hw/ssi/npcm_pspi.h" | ||
43 | #include "hw/usb/hcd-ehci.h" | ||
44 | #include "hw/usb/hcd-ohci.h" | ||
45 | #include "target/arm/cpu.h" | ||
46 | @@ -XXX,XX +XXX,XX @@ struct NPCM7xxState { | ||
47 | NPCM7xxFIUState fiu[2]; | ||
48 | NPCM7xxEMCState emc[2]; | ||
49 | NPCM7xxSDHCIState mmc; | ||
50 | + NPCMPSPIState pspi[2]; | ||
51 | }; | ||
52 | |||
53 | #define TYPE_NPCM7XX "npcm7xx" | ||
54 | diff --git a/hw/arm/npcm7xx.c b/hw/arm/npcm7xx.c | ||
55 | index XXXXXXX..XXXXXXX 100644 | ||
56 | --- a/hw/arm/npcm7xx.c | ||
57 | +++ b/hw/arm/npcm7xx.c | ||
58 | @@ -XXX,XX +XXX,XX @@ enum NPCM7xxInterrupt { | ||
59 | NPCM7XX_EMC1RX_IRQ = 15, | ||
60 | NPCM7XX_EMC1TX_IRQ, | ||
61 | NPCM7XX_MMC_IRQ = 26, | ||
62 | + NPCM7XX_PSPI2_IRQ = 28, | ||
63 | + NPCM7XX_PSPI1_IRQ = 31, | ||
64 | NPCM7XX_TIMER0_IRQ = 32, /* Timer Module 0 */ | ||
65 | NPCM7XX_TIMER1_IRQ, | ||
66 | NPCM7XX_TIMER2_IRQ, | ||
67 | @@ -XXX,XX +XXX,XX @@ static const hwaddr npcm7xx_emc_addr[] = { | ||
68 | 0xf0826000, | ||
69 | }; | ||
70 | |||
71 | +/* Register base address for each PSPI Module */ | ||
72 | +static const hwaddr npcm7xx_pspi_addr[] = { | ||
73 | + 0xf0200000, | ||
74 | + 0xf0201000, | ||
75 | +}; | ||
76 | + | ||
77 | static const struct { | ||
78 | hwaddr regs_addr; | ||
79 | uint32_t unconnected_pins; | ||
80 | @@ -XXX,XX +XXX,XX @@ static void npcm7xx_init(Object *obj) | ||
81 | object_initialize_child(obj, "emc[*]", &s->emc[i], TYPE_NPCM7XX_EMC); | ||
82 | } | ||
83 | |||
84 | + for (i = 0; i < ARRAY_SIZE(s->pspi); i++) { | ||
85 | + object_initialize_child(obj, "pspi[*]", &s->pspi[i], TYPE_NPCM_PSPI); | ||
86 | + } | ||
87 | + | ||
88 | object_initialize_child(obj, "mmc", &s->mmc, TYPE_NPCM7XX_SDHCI); | ||
89 | } | ||
90 | |||
91 | @@ -XXX,XX +XXX,XX @@ static void npcm7xx_realize(DeviceState *dev, Error **errp) | ||
92 | sysbus_connect_irq(SYS_BUS_DEVICE(&s->mmc), 0, | ||
93 | npcm7xx_irq(s, NPCM7XX_MMC_IRQ)); | ||
94 | |||
95 | + /* PSPI */ | ||
96 | + QEMU_BUILD_BUG_ON(ARRAY_SIZE(npcm7xx_pspi_addr) != ARRAY_SIZE(s->pspi)); | ||
97 | + for (i = 0; i < ARRAY_SIZE(s->pspi); i++) { | ||
98 | + SysBusDevice *sbd = SYS_BUS_DEVICE(&s->pspi[i]); | ||
99 | + int irq = (i == 0) ? NPCM7XX_PSPI1_IRQ : NPCM7XX_PSPI2_IRQ; | ||
100 | + | ||
101 | + sysbus_realize(sbd, &error_abort); | ||
102 | + sysbus_mmio_map(sbd, 0, npcm7xx_pspi_addr[i]); | ||
103 | + sysbus_connect_irq(sbd, 0, npcm7xx_irq(s, irq)); | ||
104 | + } | ||
105 | + | ||
106 | create_unimplemented_device("npcm7xx.shm", 0xc0001000, 4 * KiB); | ||
107 | create_unimplemented_device("npcm7xx.vdmx", 0xe0800000, 4 * KiB); | ||
108 | create_unimplemented_device("npcm7xx.pcierc", 0xe1000000, 64 * KiB); | ||
109 | @@ -XXX,XX +XXX,XX @@ static void npcm7xx_realize(DeviceState *dev, Error **errp) | ||
110 | create_unimplemented_device("npcm7xx.peci", 0xf0100000, 4 * KiB); | ||
111 | create_unimplemented_device("npcm7xx.siox[1]", 0xf0101000, 4 * KiB); | ||
112 | create_unimplemented_device("npcm7xx.siox[2]", 0xf0102000, 4 * KiB); | ||
113 | - create_unimplemented_device("npcm7xx.pspi1", 0xf0200000, 4 * KiB); | ||
114 | - create_unimplemented_device("npcm7xx.pspi2", 0xf0201000, 4 * KiB); | ||
115 | create_unimplemented_device("npcm7xx.ahbpci", 0xf0400000, 1 * MiB); | ||
116 | create_unimplemented_device("npcm7xx.mcphy", 0xf05f0000, 64 * KiB); | ||
117 | create_unimplemented_device("npcm7xx.gmac1", 0xf0802000, 8 * KiB); | ||
118 | -- | ||
119 | 2.34.1 | diff view generated by jsdifflib |
1 | From: Jean-Philippe Brucker <jean-philippe@linaro.org> | 1 | From: Jean-Philippe Brucker <jean-philippe@linaro.org> |
---|---|---|---|
2 | 2 | ||
3 | The devicetree specification requires a 'model' property in the root | 3 | Addresses targeting the second translation table (TTB1) in the SMMU have |
4 | node. Fix the corresponding dt-validate warning: | 4 | all upper bits set. Ensure the IOMMU region covers all 64 bits. |
5 | 5 | ||
6 | /: 'model' is a required property | 6 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> |
7 | From schema: dtschema/schemas/root-node.yaml | ||
8 | |||
9 | Use the same name for model as for compatible. The specification | ||
10 | recommends that 'compatible' follows the format 'manufacturer,model' and | ||
11 | 'model' follows the format 'manufacturer,model-number'. Since our | ||
12 | 'compatible' doesn't observe this, 'model' doesn't really need to | ||
13 | either. | ||
14 | |||
15 | Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org> | 7 | Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org> |
16 | Reviewed-by: Peter Maydell <peter.maydell@linaro.org> | ||
17 | Reviewed-by: Eric Auger <eric.auger@redhat.com> | 8 | Reviewed-by: Eric Auger <eric.auger@redhat.com> |
18 | Message-id: 20220927100347.176606-2-jean-philippe@linaro.org | 9 | Message-id: 20230214171921.1917916-2-jean-philippe@linaro.org |
19 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 10 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
20 | --- | 11 | --- |
21 | hw/arm/virt.c | 1 + | 12 | include/hw/arm/smmu-common.h | 2 -- |
22 | 1 file changed, 1 insertion(+) | 13 | hw/arm/smmu-common.c | 2 +- |
14 | 2 files changed, 1 insertion(+), 3 deletions(-) | ||
23 | 15 | ||
24 | diff --git a/hw/arm/virt.c b/hw/arm/virt.c | 16 | diff --git a/include/hw/arm/smmu-common.h b/include/hw/arm/smmu-common.h |
25 | index XXXXXXX..XXXXXXX 100644 | 17 | index XXXXXXX..XXXXXXX 100644 |
26 | --- a/hw/arm/virt.c | 18 | --- a/include/hw/arm/smmu-common.h |
27 | +++ b/hw/arm/virt.c | 19 | +++ b/include/hw/arm/smmu-common.h |
28 | @@ -XXX,XX +XXX,XX @@ static void create_fdt(VirtMachineState *vms) | 20 | @@ -XXX,XX +XXX,XX @@ |
29 | qemu_fdt_setprop_string(fdt, "/", "compatible", "linux,dummy-virt"); | 21 | #define SMMU_PCI_DEVFN_MAX 256 |
30 | qemu_fdt_setprop_cell(fdt, "/", "#address-cells", 0x2); | 22 | #define SMMU_PCI_DEVFN(sid) (sid & 0xFF) |
31 | qemu_fdt_setprop_cell(fdt, "/", "#size-cells", 0x2); | 23 | |
32 | + qemu_fdt_setprop_string(fdt, "/", "model", "linux,dummy-virt"); | 24 | -#define SMMU_MAX_VA_BITS 48 |
33 | 25 | - | |
34 | /* /chosen must exist for load_dtb to fill in necessary properties later */ | 26 | /* |
35 | qemu_fdt_add_subnode(fdt, "/chosen"); | 27 | * Page table walk error types |
28 | */ | ||
29 | diff --git a/hw/arm/smmu-common.c b/hw/arm/smmu-common.c | ||
30 | index XXXXXXX..XXXXXXX 100644 | ||
31 | --- a/hw/arm/smmu-common.c | ||
32 | +++ b/hw/arm/smmu-common.c | ||
33 | @@ -XXX,XX +XXX,XX @@ static AddressSpace *smmu_find_add_as(PCIBus *bus, void *opaque, int devfn) | ||
34 | |||
35 | memory_region_init_iommu(&sdev->iommu, sizeof(sdev->iommu), | ||
36 | s->mrtypename, | ||
37 | - OBJECT(s), name, 1ULL << SMMU_MAX_VA_BITS); | ||
38 | + OBJECT(s), name, UINT64_MAX); | ||
39 | address_space_init(&sdev->as, | ||
40 | MEMORY_REGION(&sdev->iommu), name); | ||
41 | trace_smmu_add_mr(name); | ||
36 | -- | 42 | -- |
37 | 2.25.1 | 43 | 2.34.1 | diff view generated by jsdifflib |
1 | From: Jean-Philippe Brucker <jean-philippe@linaro.org> | 1 | From: Jean-Philippe Brucker <jean-philippe@linaro.org> |
---|---|---|---|
2 | 2 | ||
3 | The SMMUv3 node isn't expected to have clock properties | 3 | Addresses targeting the second translation table (TTB1) in the SMMU have |
4 | (unlike the SMMUv2). Fix the corresponding dt-validate warning: | 4 | all upper bits set (except for the top byte when TBI is enabled). Fix |
5 | the TTB1 check. | ||
5 | 6 | ||
6 | smmuv3@9050000: 'clock-names', 'clocks' do not match any of the regexes: 'pinctrl-[0-9]+' | 7 | Reported-by: Ola Hugosson <ola.hugosson@arm.com> |
7 | From schema: linux/Documentation/devicetree/bindings/iommu/arm,smmu-v3.yaml | 8 | Reviewed-by: Eric Auger <eric.auger@redhat.com> |
8 | 9 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | |
9 | Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org> | 10 | Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org> |
10 | Reviewed-by: Peter Maydell <peter.maydell@linaro.org> | 11 | Message-id: 20230214171921.1917916-3-jean-philippe@linaro.org |
11 | [PMM: tweaked commit message as suggested by Eric] | ||
12 | Reviewed-by: Eric Auger <eric.auger@redhat.com> | ||
13 | Message-id: 20220927100347.176606-7-jean-philippe@linaro.org | ||
14 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 12 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
15 | --- | 13 | --- |
16 | hw/arm/virt.c | 2 -- | 14 | hw/arm/smmu-common.c | 2 +- |
17 | 1 file changed, 2 deletions(-) | 15 | 1 file changed, 1 insertion(+), 1 deletion(-) |
18 | 16 | ||
19 | diff --git a/hw/arm/virt.c b/hw/arm/virt.c | 17 | diff --git a/hw/arm/smmu-common.c b/hw/arm/smmu-common.c |
20 | index XXXXXXX..XXXXXXX 100644 | 18 | index XXXXXXX..XXXXXXX 100644 |
21 | --- a/hw/arm/virt.c | 19 | --- a/hw/arm/smmu-common.c |
22 | +++ b/hw/arm/virt.c | 20 | +++ b/hw/arm/smmu-common.c |
23 | @@ -XXX,XX +XXX,XX @@ static void create_smmu(const VirtMachineState *vms, | 21 | @@ -XXX,XX +XXX,XX @@ SMMUTransTableInfo *select_tt(SMMUTransCfg *cfg, dma_addr_t iova) |
24 | qemu_fdt_setprop(ms->fdt, node, "interrupt-names", irq_names, | 22 | /* there is a ttbr0 region and we are in it (high bits all zero) */ |
25 | sizeof(irq_names)); | 23 | return &cfg->tt[0]; |
26 | 24 | } else if (cfg->tt[1].tsz && | |
27 | - qemu_fdt_setprop_cell(ms->fdt, node, "clocks", vms->clock_phandle); | 25 | - !extract64(iova, 64 - cfg->tt[1].tsz, cfg->tt[1].tsz - tbi_byte)) { |
28 | - qemu_fdt_setprop_string(ms->fdt, node, "clock-names", "apb_pclk"); | 26 | + sextract64(iova, 64 - cfg->tt[1].tsz, cfg->tt[1].tsz - tbi_byte) == -1) { |
29 | qemu_fdt_setprop(ms->fdt, node, "dma-coherent", NULL, 0); | 27 | /* there is a ttbr1 region and we are in it (high bits all one) */ |
30 | 28 | return &cfg->tt[1]; | |
31 | qemu_fdt_setprop_cell(ms->fdt, node, "#iommu-cells", 1); | 29 | } else if (!cfg->tt[0].tsz) { |
32 | -- | 30 | -- |
33 | 2.25.1 | 31 | 2.34.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Claudio Fontana <cfontana@suse.de> | ||
1 | 2 | ||
3 | make it clearer from the name that this is a tcg-only function. | ||
4 | |||
5 | Signed-off-by: Claudio Fontana <cfontana@suse.de> | ||
6 | Signed-off-by: Fabiano Rosas <farosas@suse.de> | ||
7 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
8 | Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
9 | Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
10 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
11 | --- | ||
12 | target/arm/helper.c | 4 ++-- | ||
13 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/target/arm/helper.c b/target/arm/helper.c | ||
16 | index XXXXXXX..XXXXXXX 100644 | ||
17 | --- a/target/arm/helper.c | ||
18 | +++ b/target/arm/helper.c | ||
19 | @@ -XXX,XX +XXX,XX @@ static void arm_cpu_do_interrupt_aarch64(CPUState *cs) | ||
20 | * trapped to the hypervisor in KVM. | ||
21 | */ | ||
22 | #ifdef CONFIG_TCG | ||
23 | -static void handle_semihosting(CPUState *cs) | ||
24 | +static void tcg_handle_semihosting(CPUState *cs) | ||
25 | { | ||
26 | ARMCPU *cpu = ARM_CPU(cs); | ||
27 | CPUARMState *env = &cpu->env; | ||
28 | @@ -XXX,XX +XXX,XX @@ void arm_cpu_do_interrupt(CPUState *cs) | ||
29 | */ | ||
30 | #ifdef CONFIG_TCG | ||
31 | if (cs->exception_index == EXCP_SEMIHOST) { | ||
32 | - handle_semihosting(cs); | ||
33 | + tcg_handle_semihosting(cs); | ||
34 | return; | ||
35 | } | ||
36 | #endif | ||
37 | -- | ||
38 | 2.34.1 | ||
39 | |||
40 | diff view generated by jsdifflib |
1 | From: Jerome Forissier <jerome.forissier@linaro.org> | 1 | From: Claudio Fontana <cfontana@suse.de> |
---|---|---|---|
2 | 2 | ||
3 | SP_EL1 must be kept when EL3 is present but EL2 is not. Therefore mark | 3 | for "all" builds (tcg + kvm), we want to avoid doing |
4 | it with ARM_CP_EL3_NO_EL2_KEEP. | 4 | the psci check if tcg is built-in, but not enabled. |
5 | 5 | ||
6 | Cc: qemu-stable@nongnu.org | 6 | Signed-off-by: Claudio Fontana <cfontana@suse.de> |
7 | Fixes: 696ba3771894 ("target/arm: Handle cpreg registration for missing EL") | ||
8 | Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> | ||
9 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | 7 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> |
10 | Message-id: 20220927120058.670901-1-jerome.forissier@linaro.org | 8 | Signed-off-by: Fabiano Rosas <farosas@suse.de> |
9 | Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
11 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 10 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
12 | --- | 11 | --- |
13 | target/arm/helper.c | 2 +- | 12 | target/arm/helper.c | 3 ++- |
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | 13 | 1 file changed, 2 insertions(+), 1 deletion(-) |
15 | 14 | ||
16 | diff --git a/target/arm/helper.c b/target/arm/helper.c | 15 | diff --git a/target/arm/helper.c b/target/arm/helper.c |
17 | index XXXXXXX..XXXXXXX 100644 | 16 | index XXXXXXX..XXXXXXX 100644 |
18 | --- a/target/arm/helper.c | 17 | --- a/target/arm/helper.c |
19 | +++ b/target/arm/helper.c | 18 | +++ b/target/arm/helper.c |
20 | @@ -XXX,XX +XXX,XX @@ static const ARMCPRegInfo v8_cp_reginfo[] = { | 19 | @@ -XXX,XX +XXX,XX @@ |
21 | .fieldoffset = offsetof(CPUARMState, sp_el[0]) }, | 20 | #include "hw/irq.h" |
22 | { .name = "SP_EL1", .state = ARM_CP_STATE_AA64, | 21 | #include "sysemu/cpu-timers.h" |
23 | .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 1, .opc2 = 0, | 22 | #include "sysemu/kvm.h" |
24 | - .access = PL2_RW, .type = ARM_CP_ALIAS, | 23 | +#include "sysemu/tcg.h" |
25 | + .access = PL2_RW, .type = ARM_CP_ALIAS | ARM_CP_EL3_NO_EL2_KEEP, | 24 | #include "qapi/qapi-commands-machine-target.h" |
26 | .fieldoffset = offsetof(CPUARMState, sp_el[1]) }, | 25 | #include "qapi/error.h" |
27 | { .name = "SPSel", .state = ARM_CP_STATE_AA64, | 26 | #include "qemu/guest-random.h" |
28 | .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 0, | 27 | @@ -XXX,XX +XXX,XX @@ void arm_cpu_do_interrupt(CPUState *cs) |
28 | env->exception.syndrome); | ||
29 | } | ||
30 | |||
31 | - if (arm_is_psci_call(cpu, cs->exception_index)) { | ||
32 | + if (tcg_enabled() && arm_is_psci_call(cpu, cs->exception_index)) { | ||
33 | arm_handle_psci_call(cpu); | ||
34 | qemu_log_mask(CPU_LOG_INT, "...handled as PSCI call\n"); | ||
35 | return; | ||
29 | -- | 36 | -- |
30 | 2.25.1 | 37 | 2.34.1 |
38 | |||
39 | diff view generated by jsdifflib |
1 | In commit 01765386a888 we made some system register write functions | 1 | From: Claudio Fontana <cfontana@suse.de> |
---|---|---|---|
2 | call pmu_op_start()/pmu_op_finish(). This means that they now touch | ||
3 | timers, so for icount to work these registers must have the ARM_CP_IO | ||
4 | flag set. | ||
5 | 2 | ||
6 | This fixes a bug where when icount is enabled a guest that touches | 3 | Signed-off-by: Claudio Fontana <cfontana@suse.de> |
7 | MDCR_EL3, MDCR_EL2, PMCNTENSET_EL0 or PMCNTENCLR_EL0 would cause | 4 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> |
8 | QEMU to print an error message and exit, for example: | 5 | Signed-off-by: Fabiano Rosas <farosas@suse.de> |
9 | 6 | Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> | |
10 | [ 2.495971] TCP: Hash tables configured (established 1024 bind 1024) | ||
11 | [ 2.496213] UDP hash table entries: 256 (order: 1, 8192 bytes) | ||
12 | [ 2.496386] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) | ||
13 | [ 2.496917] NET: Registered protocol family 1 | ||
14 | qemu-system-aarch64: Bad icount read | ||
15 | |||
16 | Reported-by: Thomas Huth <thuth@redhat.com> | ||
17 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 7 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
18 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
19 | Message-id: 20220923123412.1214041-2-peter.maydell@linaro.org | ||
20 | --- | 8 | --- |
21 | target/arm/helper.c | 12 ++++++------ | 9 | target/arm/helper.c | 12 +++++++----- |
22 | 1 file changed, 6 insertions(+), 6 deletions(-) | 10 | 1 file changed, 7 insertions(+), 5 deletions(-) |
23 | 11 | ||
24 | diff --git a/target/arm/helper.c b/target/arm/helper.c | 12 | diff --git a/target/arm/helper.c b/target/arm/helper.c |
25 | index XXXXXXX..XXXXXXX 100644 | 13 | index XXXXXXX..XXXXXXX 100644 |
26 | --- a/target/arm/helper.c | 14 | --- a/target/arm/helper.c |
27 | +++ b/target/arm/helper.c | 15 | +++ b/target/arm/helper.c |
28 | @@ -XXX,XX +XXX,XX @@ static const ARMCPRegInfo v7_cp_reginfo[] = { | 16 | @@ -XXX,XX +XXX,XX @@ static void arm_cpu_do_interrupt_aarch64(CPUState *cs) |
29 | * or PL0_RO as appropriate and then check PMUSERENR in the helper fn. | 17 | unsigned int cur_el = arm_current_el(env); |
30 | */ | 18 | int rt; |
31 | { .name = "PMCNTENSET", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 1, | 19 | |
32 | - .access = PL0_RW, .type = ARM_CP_ALIAS, | 20 | - /* |
33 | + .access = PL0_RW, .type = ARM_CP_ALIAS | ARM_CP_IO, | 21 | - * Note that new_el can never be 0. If cur_el is 0, then |
34 | .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcnten), | 22 | - * el0_a64 is is_a64(), else el0_a64 is ignored. |
35 | .writefn = pmcntenset_write, | 23 | - */ |
36 | .accessfn = pmreg_access, | 24 | - aarch64_sve_change_el(env, cur_el, new_el, is_a64(env)); |
37 | .raw_writefn = raw_write }, | 25 | + if (tcg_enabled()) { |
38 | - { .name = "PMCNTENSET_EL0", .state = ARM_CP_STATE_AA64, | 26 | + /* |
39 | + { .name = "PMCNTENSET_EL0", .state = ARM_CP_STATE_AA64, .type = ARM_CP_IO, | 27 | + * Note that new_el can never be 0. If cur_el is 0, then |
40 | .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 1, | 28 | + * el0_a64 is is_a64(), else el0_a64 is ignored. |
41 | .access = PL0_RW, .accessfn = pmreg_access, | 29 | + */ |
42 | .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcnten), .resetvalue = 0, | 30 | + aarch64_sve_change_el(env, cur_el, new_el, is_a64(env)); |
43 | @@ -XXX,XX +XXX,XX @@ static const ARMCPRegInfo v7_cp_reginfo[] = { | 31 | + } |
44 | .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcnten), | 32 | |
45 | .accessfn = pmreg_access, | 33 | if (cur_el < new_el) { |
46 | .writefn = pmcntenclr_write, | 34 | /* |
47 | - .type = ARM_CP_ALIAS }, | ||
48 | + .type = ARM_CP_ALIAS | ARM_CP_IO }, | ||
49 | { .name = "PMCNTENCLR_EL0", .state = ARM_CP_STATE_AA64, | ||
50 | .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 2, | ||
51 | .access = PL0_RW, .accessfn = pmreg_access, | ||
52 | - .type = ARM_CP_ALIAS, | ||
53 | + .type = ARM_CP_ALIAS | ARM_CP_IO, | ||
54 | .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcnten), | ||
55 | .writefn = pmcntenclr_write }, | ||
56 | { .name = "PMOVSR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 3, | ||
57 | @@ -XXX,XX +XXX,XX @@ static const ARMCPRegInfo v8_cp_reginfo[] = { | ||
58 | .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 3, .opc2 = 1, | ||
59 | .resetvalue = 0, | ||
60 | .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.mdcr_el3) }, | ||
61 | - { .name = "SDCR", .type = ARM_CP_ALIAS, | ||
62 | + { .name = "SDCR", .type = ARM_CP_ALIAS | ARM_CP_IO, | ||
63 | .cp = 15, .opc1 = 0, .crn = 1, .crm = 3, .opc2 = 1, | ||
64 | .access = PL1_RW, .accessfn = access_trap_aa32s_el1, | ||
65 | .writefn = sdcr_write, | ||
66 | @@ -XXX,XX +XXX,XX @@ void register_cp_regs_for_features(ARMCPU *cpu) | ||
67 | * value is MDCR_EL2.HPMN which should reset to the value of PMCR_EL0.N. | ||
68 | */ | ||
69 | ARMCPRegInfo mdcr_el2 = { | ||
70 | - .name = "MDCR_EL2", .state = ARM_CP_STATE_BOTH, | ||
71 | + .name = "MDCR_EL2", .state = ARM_CP_STATE_BOTH, .type = ARM_CP_IO, | ||
72 | .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 1, | ||
73 | .writefn = mdcr_el2_write, | ||
74 | .access = PL2_RW, .resetvalue = pmu_num_counters(env), | ||
75 | -- | 35 | -- |
76 | 2.25.1 | 36 | 2.34.1 |
37 | |||
38 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Fabiano Rosas <farosas@suse.de> | ||
1 | 2 | ||
3 | Move this earlier to make the next patch diff cleaner. While here | ||
4 | update the comment slightly to not give the impression that the | ||
5 | misalignment affects only TCG. | ||
6 | |||
7 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
8 | Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
9 | Signed-off-by: Fabiano Rosas <farosas@suse.de> | ||
10 | Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
11 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
12 | --- | ||
13 | target/arm/machine.c | 18 +++++++++--------- | ||
14 | 1 file changed, 9 insertions(+), 9 deletions(-) | ||
15 | |||
16 | diff --git a/target/arm/machine.c b/target/arm/machine.c | ||
17 | index XXXXXXX..XXXXXXX 100644 | ||
18 | --- a/target/arm/machine.c | ||
19 | +++ b/target/arm/machine.c | ||
20 | @@ -XXX,XX +XXX,XX @@ static int cpu_post_load(void *opaque, int version_id) | ||
21 | } | ||
22 | } | ||
23 | |||
24 | + /* | ||
25 | + * Misaligned thumb pc is architecturally impossible. Fail the | ||
26 | + * incoming migration. For TCG it would trigger the assert in | ||
27 | + * thumb_tr_translate_insn(). | ||
28 | + */ | ||
29 | + if (!is_a64(env) && env->thumb && (env->regs[15] & 1)) { | ||
30 | + return -1; | ||
31 | + } | ||
32 | + | ||
33 | hw_breakpoint_update_all(cpu); | ||
34 | hw_watchpoint_update_all(cpu); | ||
35 | |||
36 | @@ -XXX,XX +XXX,XX @@ static int cpu_post_load(void *opaque, int version_id) | ||
37 | } | ||
38 | } | ||
39 | |||
40 | - /* | ||
41 | - * Misaligned thumb pc is architecturally impossible. | ||
42 | - * We have an assert in thumb_tr_translate_insn to verify this. | ||
43 | - * Fail an incoming migrate to avoid this assert. | ||
44 | - */ | ||
45 | - if (!is_a64(env) && env->thumb && (env->regs[15] & 1)) { | ||
46 | - return -1; | ||
47 | - } | ||
48 | - | ||
49 | if (!kvm_enabled()) { | ||
50 | pmu_op_finish(&cpu->env); | ||
51 | } | ||
52 | -- | ||
53 | 2.34.1 | ||
54 | |||
55 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | 1 | From: Fabiano Rosas <farosas@suse.de> | |
2 | |||
3 | Since commit cf7c6d1004 ("target/arm: Split out cpregs.h") we now have | ||
4 | a cpregs.h header which is more suitable for this code. | ||
5 | |||
6 | Code moved verbatim. | ||
7 | |||
8 | Signed-off-by: Fabiano Rosas <farosas@suse.de> | ||
9 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
10 | Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
11 | Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
12 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
13 | --- | ||
14 | target/arm/cpregs.h | 98 +++++++++++++++++++++++++++++++++++++++++++++ | ||
15 | target/arm/cpu.h | 91 ----------------------------------------- | ||
16 | 2 files changed, 98 insertions(+), 91 deletions(-) | ||
17 | |||
18 | diff --git a/target/arm/cpregs.h b/target/arm/cpregs.h | ||
19 | index XXXXXXX..XXXXXXX 100644 | ||
20 | --- a/target/arm/cpregs.h | ||
21 | +++ b/target/arm/cpregs.h | ||
22 | @@ -XXX,XX +XXX,XX @@ enum { | ||
23 | ARM_CP_SME = 1 << 19, | ||
24 | }; | ||
25 | |||
26 | +/* | ||
27 | + * Interface for defining coprocessor registers. | ||
28 | + * Registers are defined in tables of arm_cp_reginfo structs | ||
29 | + * which are passed to define_arm_cp_regs(). | ||
30 | + */ | ||
31 | + | ||
32 | +/* | ||
33 | + * When looking up a coprocessor register we look for it | ||
34 | + * via an integer which encodes all of: | ||
35 | + * coprocessor number | ||
36 | + * Crn, Crm, opc1, opc2 fields | ||
37 | + * 32 or 64 bit register (ie is it accessed via MRC/MCR | ||
38 | + * or via MRRC/MCRR?) | ||
39 | + * non-secure/secure bank (AArch32 only) | ||
40 | + * We allow 4 bits for opc1 because MRRC/MCRR have a 4 bit field. | ||
41 | + * (In this case crn and opc2 should be zero.) | ||
42 | + * For AArch64, there is no 32/64 bit size distinction; | ||
43 | + * instead all registers have a 2 bit op0, 3 bit op1 and op2, | ||
44 | + * and 4 bit CRn and CRm. The encoding patterns are chosen | ||
45 | + * to be easy to convert to and from the KVM encodings, and also | ||
46 | + * so that the hashtable can contain both AArch32 and AArch64 | ||
47 | + * registers (to allow for interprocessing where we might run | ||
48 | + * 32 bit code on a 64 bit core). | ||
49 | + */ | ||
50 | +/* | ||
51 | + * This bit is private to our hashtable cpreg; in KVM register | ||
52 | + * IDs the AArch64/32 distinction is the KVM_REG_ARM/ARM64 | ||
53 | + * in the upper bits of the 64 bit ID. | ||
54 | + */ | ||
55 | +#define CP_REG_AA64_SHIFT 28 | ||
56 | +#define CP_REG_AA64_MASK (1 << CP_REG_AA64_SHIFT) | ||
57 | + | ||
58 | +/* | ||
59 | + * To enable banking of coprocessor registers depending on ns-bit we | ||
60 | + * add a bit to distinguish between secure and non-secure cpregs in the | ||
61 | + * hashtable. | ||
62 | + */ | ||
63 | +#define CP_REG_NS_SHIFT 29 | ||
64 | +#define CP_REG_NS_MASK (1 << CP_REG_NS_SHIFT) | ||
65 | + | ||
66 | +#define ENCODE_CP_REG(cp, is64, ns, crn, crm, opc1, opc2) \ | ||
67 | + ((ns) << CP_REG_NS_SHIFT | ((cp) << 16) | ((is64) << 15) | \ | ||
68 | + ((crn) << 11) | ((crm) << 7) | ((opc1) << 3) | (opc2)) | ||
69 | + | ||
70 | +#define ENCODE_AA64_CP_REG(cp, crn, crm, op0, op1, op2) \ | ||
71 | + (CP_REG_AA64_MASK | \ | ||
72 | + ((cp) << CP_REG_ARM_COPROC_SHIFT) | \ | ||
73 | + ((op0) << CP_REG_ARM64_SYSREG_OP0_SHIFT) | \ | ||
74 | + ((op1) << CP_REG_ARM64_SYSREG_OP1_SHIFT) | \ | ||
75 | + ((crn) << CP_REG_ARM64_SYSREG_CRN_SHIFT) | \ | ||
76 | + ((crm) << CP_REG_ARM64_SYSREG_CRM_SHIFT) | \ | ||
77 | + ((op2) << CP_REG_ARM64_SYSREG_OP2_SHIFT)) | ||
78 | + | ||
79 | +/* | ||
80 | + * Convert a full 64 bit KVM register ID to the truncated 32 bit | ||
81 | + * version used as a key for the coprocessor register hashtable | ||
82 | + */ | ||
83 | +static inline uint32_t kvm_to_cpreg_id(uint64_t kvmid) | ||
84 | +{ | ||
85 | + uint32_t cpregid = kvmid; | ||
86 | + if ((kvmid & CP_REG_ARCH_MASK) == CP_REG_ARM64) { | ||
87 | + cpregid |= CP_REG_AA64_MASK; | ||
88 | + } else { | ||
89 | + if ((kvmid & CP_REG_SIZE_MASK) == CP_REG_SIZE_U64) { | ||
90 | + cpregid |= (1 << 15); | ||
91 | + } | ||
92 | + | ||
93 | + /* | ||
94 | + * KVM is always non-secure so add the NS flag on AArch32 register | ||
95 | + * entries. | ||
96 | + */ | ||
97 | + cpregid |= 1 << CP_REG_NS_SHIFT; | ||
98 | + } | ||
99 | + return cpregid; | ||
100 | +} | ||
101 | + | ||
102 | +/* | ||
103 | + * Convert a truncated 32 bit hashtable key into the full | ||
104 | + * 64 bit KVM register ID. | ||
105 | + */ | ||
106 | +static inline uint64_t cpreg_to_kvm_id(uint32_t cpregid) | ||
107 | +{ | ||
108 | + uint64_t kvmid; | ||
109 | + | ||
110 | + if (cpregid & CP_REG_AA64_MASK) { | ||
111 | + kvmid = cpregid & ~CP_REG_AA64_MASK; | ||
112 | + kvmid |= CP_REG_SIZE_U64 | CP_REG_ARM64; | ||
113 | + } else { | ||
114 | + kvmid = cpregid & ~(1 << 15); | ||
115 | + if (cpregid & (1 << 15)) { | ||
116 | + kvmid |= CP_REG_SIZE_U64 | CP_REG_ARM; | ||
117 | + } else { | ||
118 | + kvmid |= CP_REG_SIZE_U32 | CP_REG_ARM; | ||
119 | + } | ||
120 | + } | ||
121 | + return kvmid; | ||
122 | +} | ||
123 | + | ||
124 | /* | ||
125 | * Valid values for ARMCPRegInfo state field, indicating which of | ||
126 | * the AArch32 and AArch64 execution states this register is visible in. | ||
127 | diff --git a/target/arm/cpu.h b/target/arm/cpu.h | ||
128 | index XXXXXXX..XXXXXXX 100644 | ||
129 | --- a/target/arm/cpu.h | ||
130 | +++ b/target/arm/cpu.h | ||
131 | @@ -XXX,XX +XXX,XX @@ void arm_cpu_list(void); | ||
132 | uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx, | ||
133 | uint32_t cur_el, bool secure); | ||
134 | |||
135 | -/* Interface for defining coprocessor registers. | ||
136 | - * Registers are defined in tables of arm_cp_reginfo structs | ||
137 | - * which are passed to define_arm_cp_regs(). | ||
138 | - */ | ||
139 | - | ||
140 | -/* When looking up a coprocessor register we look for it | ||
141 | - * via an integer which encodes all of: | ||
142 | - * coprocessor number | ||
143 | - * Crn, Crm, opc1, opc2 fields | ||
144 | - * 32 or 64 bit register (ie is it accessed via MRC/MCR | ||
145 | - * or via MRRC/MCRR?) | ||
146 | - * non-secure/secure bank (AArch32 only) | ||
147 | - * We allow 4 bits for opc1 because MRRC/MCRR have a 4 bit field. | ||
148 | - * (In this case crn and opc2 should be zero.) | ||
149 | - * For AArch64, there is no 32/64 bit size distinction; | ||
150 | - * instead all registers have a 2 bit op0, 3 bit op1 and op2, | ||
151 | - * and 4 bit CRn and CRm. The encoding patterns are chosen | ||
152 | - * to be easy to convert to and from the KVM encodings, and also | ||
153 | - * so that the hashtable can contain both AArch32 and AArch64 | ||
154 | - * registers (to allow for interprocessing where we might run | ||
155 | - * 32 bit code on a 64 bit core). | ||
156 | - */ | ||
157 | -/* This bit is private to our hashtable cpreg; in KVM register | ||
158 | - * IDs the AArch64/32 distinction is the KVM_REG_ARM/ARM64 | ||
159 | - * in the upper bits of the 64 bit ID. | ||
160 | - */ | ||
161 | -#define CP_REG_AA64_SHIFT 28 | ||
162 | -#define CP_REG_AA64_MASK (1 << CP_REG_AA64_SHIFT) | ||
163 | - | ||
164 | -/* To enable banking of coprocessor registers depending on ns-bit we | ||
165 | - * add a bit to distinguish between secure and non-secure cpregs in the | ||
166 | - * hashtable. | ||
167 | - */ | ||
168 | -#define CP_REG_NS_SHIFT 29 | ||
169 | -#define CP_REG_NS_MASK (1 << CP_REG_NS_SHIFT) | ||
170 | - | ||
171 | -#define ENCODE_CP_REG(cp, is64, ns, crn, crm, opc1, opc2) \ | ||
172 | - ((ns) << CP_REG_NS_SHIFT | ((cp) << 16) | ((is64) << 15) | \ | ||
173 | - ((crn) << 11) | ((crm) << 7) | ((opc1) << 3) | (opc2)) | ||
174 | - | ||
175 | -#define ENCODE_AA64_CP_REG(cp, crn, crm, op0, op1, op2) \ | ||
176 | - (CP_REG_AA64_MASK | \ | ||
177 | - ((cp) << CP_REG_ARM_COPROC_SHIFT) | \ | ||
178 | - ((op0) << CP_REG_ARM64_SYSREG_OP0_SHIFT) | \ | ||
179 | - ((op1) << CP_REG_ARM64_SYSREG_OP1_SHIFT) | \ | ||
180 | - ((crn) << CP_REG_ARM64_SYSREG_CRN_SHIFT) | \ | ||
181 | - ((crm) << CP_REG_ARM64_SYSREG_CRM_SHIFT) | \ | ||
182 | - ((op2) << CP_REG_ARM64_SYSREG_OP2_SHIFT)) | ||
183 | - | ||
184 | -/* Convert a full 64 bit KVM register ID to the truncated 32 bit | ||
185 | - * version used as a key for the coprocessor register hashtable | ||
186 | - */ | ||
187 | -static inline uint32_t kvm_to_cpreg_id(uint64_t kvmid) | ||
188 | -{ | ||
189 | - uint32_t cpregid = kvmid; | ||
190 | - if ((kvmid & CP_REG_ARCH_MASK) == CP_REG_ARM64) { | ||
191 | - cpregid |= CP_REG_AA64_MASK; | ||
192 | - } else { | ||
193 | - if ((kvmid & CP_REG_SIZE_MASK) == CP_REG_SIZE_U64) { | ||
194 | - cpregid |= (1 << 15); | ||
195 | - } | ||
196 | - | ||
197 | - /* KVM is always non-secure so add the NS flag on AArch32 register | ||
198 | - * entries. | ||
199 | - */ | ||
200 | - cpregid |= 1 << CP_REG_NS_SHIFT; | ||
201 | - } | ||
202 | - return cpregid; | ||
203 | -} | ||
204 | - | ||
205 | -/* Convert a truncated 32 bit hashtable key into the full | ||
206 | - * 64 bit KVM register ID. | ||
207 | - */ | ||
208 | -static inline uint64_t cpreg_to_kvm_id(uint32_t cpregid) | ||
209 | -{ | ||
210 | - uint64_t kvmid; | ||
211 | - | ||
212 | - if (cpregid & CP_REG_AA64_MASK) { | ||
213 | - kvmid = cpregid & ~CP_REG_AA64_MASK; | ||
214 | - kvmid |= CP_REG_SIZE_U64 | CP_REG_ARM64; | ||
215 | - } else { | ||
216 | - kvmid = cpregid & ~(1 << 15); | ||
217 | - if (cpregid & (1 << 15)) { | ||
218 | - kvmid |= CP_REG_SIZE_U64 | CP_REG_ARM; | ||
219 | - } else { | ||
220 | - kvmid |= CP_REG_SIZE_U32 | CP_REG_ARM; | ||
221 | - } | ||
222 | - } | ||
223 | - return kvmid; | ||
224 | -} | ||
225 | - | ||
226 | /* Return the highest implemented Exception Level */ | ||
227 | static inline int arm_highest_el(CPUARMState *env) | ||
228 | { | ||
229 | -- | ||
230 | 2.34.1 | ||
231 | |||
232 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Fabiano Rosas <farosas@suse.de> | ||
1 | 2 | ||
3 | If a test was tagged with the "accel" tag and the specified | ||
4 | accelerator it not present in the qemu binary, cancel the test. | ||
5 | |||
6 | We can now write tests without explicit calls to require_accelerator, | ||
7 | just the tag is enough. | ||
8 | |||
9 | Signed-off-by: Fabiano Rosas <farosas@suse.de> | ||
10 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
11 | Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
12 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
13 | --- | ||
14 | tests/avocado/avocado_qemu/__init__.py | 4 ++++ | ||
15 | 1 file changed, 4 insertions(+) | ||
16 | |||
17 | diff --git a/tests/avocado/avocado_qemu/__init__.py b/tests/avocado/avocado_qemu/__init__.py | ||
18 | index XXXXXXX..XXXXXXX 100644 | ||
19 | --- a/tests/avocado/avocado_qemu/__init__.py | ||
20 | +++ b/tests/avocado/avocado_qemu/__init__.py | ||
21 | @@ -XXX,XX +XXX,XX @@ def setUp(self): | ||
22 | |||
23 | super().setUp('qemu-system-') | ||
24 | |||
25 | + accel_required = self._get_unique_tag_val('accel') | ||
26 | + if accel_required: | ||
27 | + self.require_accelerator(accel_required) | ||
28 | + | ||
29 | self.machine = self.params.get('machine', | ||
30 | default=self._get_unique_tag_val('machine')) | ||
31 | |||
32 | -- | ||
33 | 2.34.1 | ||
34 | |||
35 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Fabiano Rosas <farosas@suse.de> | ||
1 | 2 | ||
3 | This allows the test to be skipped when TCG is not present in the QEMU | ||
4 | binary. | ||
5 | |||
6 | Signed-off-by: Fabiano Rosas <farosas@suse.de> | ||
7 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
8 | Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
9 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
10 | --- | ||
11 | tests/avocado/boot_linux_console.py | 1 + | ||
12 | tests/avocado/reverse_debugging.py | 8 ++++++++ | ||
13 | 2 files changed, 9 insertions(+) | ||
14 | |||
15 | diff --git a/tests/avocado/boot_linux_console.py b/tests/avocado/boot_linux_console.py | ||
16 | index XXXXXXX..XXXXXXX 100644 | ||
17 | --- a/tests/avocado/boot_linux_console.py | ||
18 | +++ b/tests/avocado/boot_linux_console.py | ||
19 | @@ -XXX,XX +XXX,XX @@ def test_arm_orangepi_uboot_netbsd9(self): | ||
20 | |||
21 | def test_aarch64_raspi3_atf(self): | ||
22 | """ | ||
23 | + :avocado: tags=accel:tcg | ||
24 | :avocado: tags=arch:aarch64 | ||
25 | :avocado: tags=machine:raspi3b | ||
26 | :avocado: tags=cpu:cortex-a53 | ||
27 | diff --git a/tests/avocado/reverse_debugging.py b/tests/avocado/reverse_debugging.py | ||
28 | index XXXXXXX..XXXXXXX 100644 | ||
29 | --- a/tests/avocado/reverse_debugging.py | ||
30 | +++ b/tests/avocado/reverse_debugging.py | ||
31 | @@ -XXX,XX +XXX,XX @@ def reverse_debugging(self, shift=7, args=None): | ||
32 | vm.shutdown() | ||
33 | |||
34 | class ReverseDebugging_X86_64(ReverseDebugging): | ||
35 | + """ | ||
36 | + :avocado: tags=accel:tcg | ||
37 | + """ | ||
38 | + | ||
39 | REG_PC = 0x10 | ||
40 | REG_CS = 0x12 | ||
41 | def get_pc(self, g): | ||
42 | @@ -XXX,XX +XXX,XX @@ def test_x86_64_pc(self): | ||
43 | self.reverse_debugging() | ||
44 | |||
45 | class ReverseDebugging_AArch64(ReverseDebugging): | ||
46 | + """ | ||
47 | + :avocado: tags=accel:tcg | ||
48 | + """ | ||
49 | + | ||
50 | REG_PC = 32 | ||
51 | |||
52 | # unidentified gitlab timeout problem | ||
53 | -- | ||
54 | 2.34.1 | ||
55 | |||
56 | diff view generated by jsdifflib |
1 | From: Jean-Philippe Brucker <jean-philippe@linaro.org> | 1 | From: Fabiano Rosas <farosas@suse.de> |
---|---|---|---|
2 | 2 | ||
3 | The GICv3 bindings requires a #msi-cells property for the ITS node. Fix | 3 | Now that the cortex-a15 is under CONFIG_TCG, use as default CPU for a |
4 | the corresponding dt-validate warning: | 4 | KVM-only build the 'max' cpu. |
5 | 5 | ||
6 | interrupt-controller@8000000: msi-controller@8080000: '#msi-cells' is a required property | 6 | Note that we cannot use 'host' here because the qtests can run without |
7 | From schema: linux/Documentation/devicetree/bindings/interrupt-controller/arm,gic-v3.yaml | 7 | any other accelerator (than qtest) and 'host' depends on KVM being |
8 | enabled. | ||
8 | 9 | ||
9 | Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org> | 10 | Signed-off-by: Fabiano Rosas <farosas@suse.de> |
10 | Reviewed-by: Peter Maydell <peter.maydell@linaro.org> | 11 | Acked-by: Richard Henderson <richard.henderson@linaro.org> |
11 | Reviewed-by: Eric Auger <eric.auger@redhat.com> | 12 | Reviewed-by: Thomas Huth <thuth@redhat.com> |
12 | Message-id: 20220927100347.176606-3-jean-philippe@linaro.org | ||
13 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | 13 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> |
14 | --- | 14 | --- |
15 | hw/arm/virt.c | 1 + | 15 | hw/arm/virt.c | 4 ++++ |
16 | 1 file changed, 1 insertion(+) | 16 | 1 file changed, 4 insertions(+) |
17 | 17 | ||
18 | diff --git a/hw/arm/virt.c b/hw/arm/virt.c | 18 | diff --git a/hw/arm/virt.c b/hw/arm/virt.c |
19 | index XXXXXXX..XXXXXXX 100644 | 19 | index XXXXXXX..XXXXXXX 100644 |
20 | --- a/hw/arm/virt.c | 20 | --- a/hw/arm/virt.c |
21 | +++ b/hw/arm/virt.c | 21 | +++ b/hw/arm/virt.c |
22 | @@ -XXX,XX +XXX,XX @@ static void fdt_add_its_gic_node(VirtMachineState *vms) | 22 | @@ -XXX,XX +XXX,XX @@ static void virt_machine_class_init(ObjectClass *oc, void *data) |
23 | qemu_fdt_setprop_string(ms->fdt, nodename, "compatible", | 23 | mc->minimum_page_bits = 12; |
24 | "arm,gic-v3-its"); | 24 | mc->possible_cpu_arch_ids = virt_possible_cpu_arch_ids; |
25 | qemu_fdt_setprop(ms->fdt, nodename, "msi-controller", NULL, 0); | 25 | mc->cpu_index_to_instance_props = virt_cpu_index_to_props; |
26 | + qemu_fdt_setprop_cell(ms->fdt, nodename, "#msi-cells", 1); | 26 | +#ifdef CONFIG_TCG |
27 | qemu_fdt_setprop_sized_cells(ms->fdt, nodename, "reg", | 27 | mc->default_cpu_type = ARM_CPU_TYPE_NAME("cortex-a15"); |
28 | 2, vms->memmap[VIRT_GIC_ITS].base, | 28 | +#else |
29 | 2, vms->memmap[VIRT_GIC_ITS].size); | 29 | + mc->default_cpu_type = ARM_CPU_TYPE_NAME("max"); |
30 | +#endif | ||
31 | mc->get_default_cpu_node_id = virt_get_default_cpu_node_id; | ||
32 | mc->kvm_type = virt_kvm_type; | ||
33 | assert(!mc->get_hotplug_handler); | ||
30 | -- | 34 | -- |
31 | 2.25.1 | 35 | 2.34.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Fabiano Rosas <farosas@suse.de> | ||
1 | 2 | ||
3 | Signed-off-by: Fabiano Rosas <farosas@suse.de> | ||
4 | Reviewed-by: Richard Henderson <richard.henderson@linaro.org> | ||
5 | Acked-by: Thomas Huth <thuth@redhat.com> | ||
6 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
7 | --- | ||
8 | tests/qtest/arm-cpu-features.c | 28 ++++++++++++++++++---------- | ||
9 | 1 file changed, 18 insertions(+), 10 deletions(-) | ||
10 | |||
11 | diff --git a/tests/qtest/arm-cpu-features.c b/tests/qtest/arm-cpu-features.c | ||
12 | index XXXXXXX..XXXXXXX 100644 | ||
13 | --- a/tests/qtest/arm-cpu-features.c | ||
14 | +++ b/tests/qtest/arm-cpu-features.c | ||
15 | @@ -XXX,XX +XXX,XX @@ | ||
16 | #define SVE_MAX_VQ 16 | ||
17 | |||
18 | #define MACHINE "-machine virt,gic-version=max -accel tcg " | ||
19 | -#define MACHINE_KVM "-machine virt,gic-version=max -accel kvm -accel tcg " | ||
20 | +#define MACHINE_KVM "-machine virt,gic-version=max -accel kvm " | ||
21 | #define QUERY_HEAD "{ 'execute': 'query-cpu-model-expansion', " \ | ||
22 | " 'arguments': { 'type': 'full', " | ||
23 | #define QUERY_TAIL "}}" | ||
24 | @@ -XXX,XX +XXX,XX @@ int main(int argc, char **argv) | ||
25 | { | ||
26 | g_test_init(&argc, &argv, NULL); | ||
27 | |||
28 | - qtest_add_data_func("/arm/query-cpu-model-expansion", | ||
29 | - NULL, test_query_cpu_model_expansion); | ||
30 | + if (qtest_has_accel("tcg")) { | ||
31 | + qtest_add_data_func("/arm/query-cpu-model-expansion", | ||
32 | + NULL, test_query_cpu_model_expansion); | ||
33 | + } | ||
34 | + | ||
35 | + if (!g_str_equal(qtest_get_arch(), "aarch64")) { | ||
36 | + goto out; | ||
37 | + } | ||
38 | |||
39 | /* | ||
40 | * For now we only run KVM specific tests with AArch64 QEMU in | ||
41 | * order avoid attempting to run an AArch32 QEMU with KVM on | ||
42 | * AArch64 hosts. That won't work and isn't easy to detect. | ||
43 | */ | ||
44 | - if (g_str_equal(qtest_get_arch(), "aarch64") && qtest_has_accel("kvm")) { | ||
45 | + if (qtest_has_accel("kvm")) { | ||
46 | /* | ||
47 | * This tests target the 'host' CPU type, so register it only if | ||
48 | * KVM is available. | ||
49 | */ | ||
50 | qtest_add_data_func("/arm/kvm/query-cpu-model-expansion", | ||
51 | NULL, test_query_cpu_model_expansion_kvm); | ||
52 | - } | ||
53 | |||
54 | - if (g_str_equal(qtest_get_arch(), "aarch64")) { | ||
55 | - qtest_add_data_func("/arm/max/query-cpu-model-expansion/sve-max-vq-8", | ||
56 | - NULL, sve_tests_sve_max_vq_8); | ||
57 | - qtest_add_data_func("/arm/max/query-cpu-model-expansion/sve-off", | ||
58 | - NULL, sve_tests_sve_off); | ||
59 | qtest_add_data_func("/arm/kvm/query-cpu-model-expansion/sve-off", | ||
60 | NULL, sve_tests_sve_off_kvm); | ||
61 | } | ||
62 | |||
63 | + if (qtest_has_accel("tcg")) { | ||
64 | + qtest_add_data_func("/arm/max/query-cpu-model-expansion/sve-max-vq-8", | ||
65 | + NULL, sve_tests_sve_max_vq_8); | ||
66 | + qtest_add_data_func("/arm/max/query-cpu-model-expansion/sve-off", | ||
67 | + NULL, sve_tests_sve_off); | ||
68 | + } | ||
69 | + | ||
70 | +out: | ||
71 | return g_test_run(); | ||
72 | } | ||
73 | -- | ||
74 | 2.34.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Fabiano Rosas <farosas@suse.de> | ||
1 | 2 | ||
3 | These tests set -accel tcg, so restrict them to when TCG is present. | ||
4 | |||
5 | Signed-off-by: Fabiano Rosas <farosas@suse.de> | ||
6 | Acked-by: Richard Henderson <richard.henderson@linaro.org> | ||
7 | Reviewed-by: Thomas Huth <thuth@redhat.com> | ||
8 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
9 | --- | ||
10 | tests/qtest/meson.build | 4 ++-- | ||
11 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
12 | |||
13 | diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build | ||
14 | index XXXXXXX..XXXXXXX 100644 | ||
15 | --- a/tests/qtest/meson.build | ||
16 | +++ b/tests/qtest/meson.build | ||
17 | @@ -XXX,XX +XXX,XX @@ qtests_arm = \ | ||
18 | # TODO: once aarch64 TCG is fixed on ARM 32 bit host, make bios-tables-test unconditional | ||
19 | qtests_aarch64 = \ | ||
20 | (cpu != 'arm' and unpack_edk2_blobs ? ['bios-tables-test'] : []) + \ | ||
21 | - (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-test'] : []) + \ | ||
22 | - (config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? ['tpm-tis-device-swtpm-test'] : []) + \ | ||
23 | + (config_all.has_key('CONFIG_TCG') and config_all_devices.has_key('CONFIG_TPM_TIS_SYSBUS') ? \ | ||
24 | + ['tpm-tis-device-test', 'tpm-tis-device-swtpm-test'] : []) + \ | ||
25 | (config_all_devices.has_key('CONFIG_XLNX_ZYNQMP_ARM') ? ['xlnx-can-test', 'fuzz-xlnx-dp-test'] : []) + \ | ||
26 | (config_all_devices.has_key('CONFIG_RASPI') ? ['bcm2835-dma-test'] : []) + \ | ||
27 | ['arm-cpu-features', | ||
28 | -- | ||
29 | 2.34.1 | diff view generated by jsdifflib |