mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
target/arm: Add ARMMMUIdx_Phys_{S,NS}
Not yet used, but add mmu indexes for 1-1 mapping to physical addresses. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20221011031911.2408754-5-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
937f224559
commit
a1ce3084c5
3 changed files with 24 additions and 4 deletions
|
@ -45,6 +45,6 @@
|
||||||
bool guarded;
|
bool guarded;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define NB_MMU_MODES 8
|
#define NB_MMU_MODES 10
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2905,8 +2905,9 @@ bool write_cpustate_to_list(ARMCPU *cpu, bool kvm_sync);
|
||||||
* EL2 EL2&0 +PAN
|
* EL2 EL2&0 +PAN
|
||||||
* EL2 (aka NS PL2)
|
* EL2 (aka NS PL2)
|
||||||
* EL3 (aka S PL1)
|
* EL3 (aka S PL1)
|
||||||
|
* Physical (NS & S)
|
||||||
*
|
*
|
||||||
* for a total of 8 different mmu_idx.
|
* for a total of 10 different mmu_idx.
|
||||||
*
|
*
|
||||||
* R profile CPUs have an MPU, but can use the same set of MMU indexes
|
* R profile CPUs have an MPU, but can use the same set of MMU indexes
|
||||||
* as A profile. They only need to distinguish EL0 and EL1 (and
|
* as A profile. They only need to distinguish EL0 and EL1 (and
|
||||||
|
@ -2971,6 +2972,10 @@ typedef enum ARMMMUIdx {
|
||||||
ARMMMUIdx_E2 = 6 | ARM_MMU_IDX_A,
|
ARMMMUIdx_E2 = 6 | ARM_MMU_IDX_A,
|
||||||
ARMMMUIdx_E3 = 7 | ARM_MMU_IDX_A,
|
ARMMMUIdx_E3 = 7 | ARM_MMU_IDX_A,
|
||||||
|
|
||||||
|
/* TLBs with 1-1 mapping to the physical address spaces. */
|
||||||
|
ARMMMUIdx_Phys_NS = 8 | ARM_MMU_IDX_A,
|
||||||
|
ARMMMUIdx_Phys_S = 9 | ARM_MMU_IDX_A,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* These are not allocated TLBs and are used only for AT system
|
* These are not allocated TLBs and are used only for AT system
|
||||||
* instructions or for the first stage of an S12 page table walk.
|
* instructions or for the first stage of an S12 page table walk.
|
||||||
|
|
|
@ -179,6 +179,11 @@ static bool regime_translation_disabled(CPUARMState *env, ARMMMUIdx mmu_idx,
|
||||||
case ARMMMUIdx_E3:
|
case ARMMMUIdx_E3:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ARMMMUIdx_Phys_NS:
|
||||||
|
case ARMMMUIdx_Phys_S:
|
||||||
|
/* No translation for physical address spaces. */
|
||||||
|
return true;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
g_assert_not_reached();
|
g_assert_not_reached();
|
||||||
}
|
}
|
||||||
|
@ -2280,10 +2285,17 @@ static bool get_phys_addr_disabled(CPUARMState *env, target_ulong address,
|
||||||
{
|
{
|
||||||
uint8_t memattr = 0x00; /* Device nGnRnE */
|
uint8_t memattr = 0x00; /* Device nGnRnE */
|
||||||
uint8_t shareability = 0; /* non-sharable */
|
uint8_t shareability = 0; /* non-sharable */
|
||||||
|
int r_el;
|
||||||
|
|
||||||
if (mmu_idx != ARMMMUIdx_Stage2 && mmu_idx != ARMMMUIdx_Stage2_S) {
|
switch (mmu_idx) {
|
||||||
int r_el = regime_el(env, mmu_idx);
|
case ARMMMUIdx_Stage2:
|
||||||
|
case ARMMMUIdx_Stage2_S:
|
||||||
|
case ARMMMUIdx_Phys_NS:
|
||||||
|
case ARMMMUIdx_Phys_S:
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
r_el = regime_el(env, mmu_idx);
|
||||||
if (arm_el_is_aa64(env, r_el)) {
|
if (arm_el_is_aa64(env, r_el)) {
|
||||||
int pamax = arm_pamax(env_archcpu(env));
|
int pamax = arm_pamax(env_archcpu(env));
|
||||||
uint64_t tcr = env->cp15.tcr_el[r_el];
|
uint64_t tcr = env->cp15.tcr_el[r_el];
|
||||||
|
@ -2332,6 +2344,7 @@ static bool get_phys_addr_disabled(CPUARMState *env, target_ulong address,
|
||||||
shareability = 2; /* outer sharable */
|
shareability = 2; /* outer sharable */
|
||||||
}
|
}
|
||||||
result->cacheattrs.is_s2_format = false;
|
result->cacheattrs.is_s2_format = false;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
result->f.phys_addr = address;
|
result->f.phys_addr = address;
|
||||||
|
@ -2536,6 +2549,7 @@ bool get_phys_addr(CPUARMState *env, target_ulong address,
|
||||||
is_secure = arm_is_secure_below_el3(env);
|
is_secure = arm_is_secure_below_el3(env);
|
||||||
break;
|
break;
|
||||||
case ARMMMUIdx_Stage2:
|
case ARMMMUIdx_Stage2:
|
||||||
|
case ARMMMUIdx_Phys_NS:
|
||||||
case ARMMMUIdx_MPrivNegPri:
|
case ARMMMUIdx_MPrivNegPri:
|
||||||
case ARMMMUIdx_MUserNegPri:
|
case ARMMMUIdx_MUserNegPri:
|
||||||
case ARMMMUIdx_MPriv:
|
case ARMMMUIdx_MPriv:
|
||||||
|
@ -2544,6 +2558,7 @@ bool get_phys_addr(CPUARMState *env, target_ulong address,
|
||||||
break;
|
break;
|
||||||
case ARMMMUIdx_E3:
|
case ARMMMUIdx_E3:
|
||||||
case ARMMMUIdx_Stage2_S:
|
case ARMMMUIdx_Stage2_S:
|
||||||
|
case ARMMMUIdx_Phys_S:
|
||||||
case ARMMMUIdx_MSPrivNegPri:
|
case ARMMMUIdx_MSPrivNegPri:
|
||||||
case ARMMMUIdx_MSUserNegPri:
|
case ARMMMUIdx_MSUserNegPri:
|
||||||
case ARMMMUIdx_MSPriv:
|
case ARMMMUIdx_MSPriv:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue