mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
target/arm: Move small helper functions to tlb-insns.c
The remaining functions that we temporarily made global are now used only from callsits in tlb-insns.c; move them across and make them file-local again. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20241210160452.2427965-9-peter.maydell@linaro.org
This commit is contained in:
parent
b0f7cd3572
commit
27fb860fd4
3 changed files with 220 additions and 254 deletions
|
@ -1134,38 +1134,4 @@ static inline bool arm_cpreg_traps_in_nv(const ARMCPRegInfo *ri)
|
|||
return ri->opc1 == 4 || ri->opc1 == 5;
|
||||
}
|
||||
|
||||
/*
|
||||
* Temporary declarations of functions until the move to tlb_insn_helper.c
|
||||
* is complete and we can make the functions static again
|
||||
*/
|
||||
CPAccessResult access_ttlb(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread);
|
||||
CPAccessResult access_ttlbis(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread);
|
||||
CPAccessResult access_ttlbos(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread);
|
||||
bool tlb_force_broadcast(CPUARMState *env);
|
||||
int tlbbits_for_regime(CPUARMState *env, ARMMMUIdx mmu_idx,
|
||||
uint64_t addr);
|
||||
int vae1_tlbbits(CPUARMState *env, uint64_t addr);
|
||||
int vae2_tlbbits(CPUARMState *env, uint64_t addr);
|
||||
int vae1_tlbmask(CPUARMState *env);
|
||||
int vae2_tlbmask(CPUARMState *env);
|
||||
int ipas2e1_tlbmask(CPUARMState *env, int64_t value);
|
||||
int e2_tlbmask(CPUARMState *env);
|
||||
void tlbi_aa64_vmalle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value);
|
||||
void tlbi_aa64_alle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value);
|
||||
void tlbi_aa64_vae1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value);
|
||||
void tlbi_aa64_alle2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value);
|
||||
void tlbi_aa64_vae2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value);
|
||||
void tlbi_aa64_vae3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value);
|
||||
void tlbi_aa64_alle3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value);
|
||||
|
||||
#endif /* TARGET_ARM_CPREGS_H */
|
||||
|
|
|
@ -365,40 +365,6 @@ static CPAccessResult access_tacr(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
return CP_ACCESS_OK;
|
||||
}
|
||||
|
||||
/* Check for traps from EL1 due to HCR_EL2.TTLB. */
|
||||
CPAccessResult access_ttlb(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
{
|
||||
if (arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_TTLB)) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
return CP_ACCESS_OK;
|
||||
}
|
||||
|
||||
/* Check for traps from EL1 due to HCR_EL2.TTLB or TTLBIS. */
|
||||
CPAccessResult access_ttlbis(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
{
|
||||
if (arm_current_el(env) == 1 &&
|
||||
(arm_hcr_el2_eff(env) & (HCR_TTLB | HCR_TTLBIS))) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
return CP_ACCESS_OK;
|
||||
}
|
||||
|
||||
#ifdef TARGET_AARCH64
|
||||
/* Check for traps from EL1 due to HCR_EL2.TTLB or TTLBOS. */
|
||||
CPAccessResult access_ttlbos(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
{
|
||||
if (arm_current_el(env) == 1 &&
|
||||
(arm_hcr_el2_eff(env) & (HCR_TTLB | HCR_TTLBOS))) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
return CP_ACCESS_OK;
|
||||
}
|
||||
#endif
|
||||
|
||||
static void dacr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
|
||||
{
|
||||
ARMCPU *cpu = env_archcpu(env);
|
||||
|
@ -455,16 +421,6 @@ int alle1_tlbmask(CPUARMState *env)
|
|||
ARMMMUIdxBit_Stage2_S);
|
||||
}
|
||||
|
||||
/*
|
||||
* Non-IS variants of TLB operations are upgraded to
|
||||
* IS versions if we are at EL1 and HCR_EL2.FB is effectively set to
|
||||
* force broadcast of these operations.
|
||||
*/
|
||||
bool tlb_force_broadcast(CPUARMState *env)
|
||||
{
|
||||
return arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_FB);
|
||||
}
|
||||
|
||||
static const ARMCPRegInfo cp_reginfo[] = {
|
||||
/*
|
||||
* Define the secure and non-secure FCSE identifier CP registers
|
||||
|
@ -4680,182 +4636,6 @@ static CPAccessResult access_tocu(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
return do_cacheop_pou_access(env, HCR_TOCU | HCR_TPU);
|
||||
}
|
||||
|
||||
/*
|
||||
* See: D4.7.2 TLB maintenance requirements and the TLB maintenance instructions
|
||||
* Page D4-1736 (DDI0487A.b)
|
||||
*/
|
||||
|
||||
int vae1_tlbmask(CPUARMState *env)
|
||||
{
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
uint16_t mask;
|
||||
|
||||
assert(arm_feature(env, ARM_FEATURE_AARCH64));
|
||||
|
||||
if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
|
||||
mask = ARMMMUIdxBit_E20_2 |
|
||||
ARMMMUIdxBit_E20_2_PAN |
|
||||
ARMMMUIdxBit_E20_0;
|
||||
} else {
|
||||
/* This is AArch64 only, so we don't need to touch the EL30_x TLBs */
|
||||
mask = ARMMMUIdxBit_E10_1 |
|
||||
ARMMMUIdxBit_E10_1_PAN |
|
||||
ARMMMUIdxBit_E10_0;
|
||||
}
|
||||
return mask;
|
||||
}
|
||||
|
||||
int vae2_tlbmask(CPUARMState *env)
|
||||
{
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
uint16_t mask;
|
||||
|
||||
if (hcr & HCR_E2H) {
|
||||
mask = ARMMMUIdxBit_E20_2 |
|
||||
ARMMMUIdxBit_E20_2_PAN |
|
||||
ARMMMUIdxBit_E20_0;
|
||||
} else {
|
||||
mask = ARMMMUIdxBit_E2;
|
||||
}
|
||||
return mask;
|
||||
}
|
||||
|
||||
/* Return 56 if TBI is enabled, 64 otherwise. */
|
||||
int tlbbits_for_regime(CPUARMState *env, ARMMMUIdx mmu_idx,
|
||||
uint64_t addr)
|
||||
{
|
||||
uint64_t tcr = regime_tcr(env, mmu_idx);
|
||||
int tbi = aa64_va_parameter_tbi(tcr, mmu_idx);
|
||||
int select = extract64(addr, 55, 1);
|
||||
|
||||
return (tbi >> select) & 1 ? 56 : 64;
|
||||
}
|
||||
|
||||
int vae1_tlbbits(CPUARMState *env, uint64_t addr)
|
||||
{
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
ARMMMUIdx mmu_idx;
|
||||
|
||||
assert(arm_feature(env, ARM_FEATURE_AARCH64));
|
||||
|
||||
/* Only the regime of the mmu_idx below is significant. */
|
||||
if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
|
||||
mmu_idx = ARMMMUIdx_E20_0;
|
||||
} else {
|
||||
mmu_idx = ARMMMUIdx_E10_0;
|
||||
}
|
||||
|
||||
return tlbbits_for_regime(env, mmu_idx, addr);
|
||||
}
|
||||
|
||||
int vae2_tlbbits(CPUARMState *env, uint64_t addr)
|
||||
{
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
ARMMMUIdx mmu_idx;
|
||||
|
||||
/*
|
||||
* Only the regime of the mmu_idx below is significant.
|
||||
* Regime EL2&0 has two ranges with separate TBI configuration, while EL2
|
||||
* only has one.
|
||||
*/
|
||||
if (hcr & HCR_E2H) {
|
||||
mmu_idx = ARMMMUIdx_E20_2;
|
||||
} else {
|
||||
mmu_idx = ARMMMUIdx_E2;
|
||||
}
|
||||
|
||||
return tlbbits_for_regime(env, mmu_idx, addr);
|
||||
}
|
||||
|
||||
void tlbi_aa64_vmalle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = vae1_tlbmask(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
|
||||
}
|
||||
|
||||
int e2_tlbmask(CPUARMState *env)
|
||||
{
|
||||
return (ARMMMUIdxBit_E20_0 |
|
||||
ARMMMUIdxBit_E20_2 |
|
||||
ARMMMUIdxBit_E20_2_PAN |
|
||||
ARMMMUIdxBit_E2);
|
||||
}
|
||||
|
||||
void tlbi_aa64_alle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = alle1_tlbmask(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
|
||||
}
|
||||
|
||||
void tlbi_aa64_alle2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = e2_tlbmask(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
|
||||
}
|
||||
|
||||
void tlbi_aa64_alle3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_E3);
|
||||
}
|
||||
|
||||
void tlbi_aa64_vae1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = vae1_tlbmask(env);
|
||||
uint64_t pageaddr = sextract64(value << 12, 0, 56);
|
||||
int bits = vae1_tlbbits(env, pageaddr);
|
||||
|
||||
tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr, mask, bits);
|
||||
}
|
||||
|
||||
void tlbi_aa64_vae2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = vae2_tlbmask(env);
|
||||
uint64_t pageaddr = sextract64(value << 12, 0, 56);
|
||||
int bits = vae2_tlbbits(env, pageaddr);
|
||||
|
||||
tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr, mask, bits);
|
||||
}
|
||||
|
||||
void tlbi_aa64_vae3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr = sextract64(value << 12, 0, 56);
|
||||
int bits = tlbbits_for_regime(env, ARMMMUIdx_E3, pageaddr);
|
||||
|
||||
tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr,
|
||||
ARMMMUIdxBit_E3, bits);
|
||||
}
|
||||
|
||||
int ipas2e1_tlbmask(CPUARMState *env, int64_t value)
|
||||
{
|
||||
/*
|
||||
* The MSB of value is the NS field, which only applies if SEL2
|
||||
* is implemented and SCR_EL3.NS is not set (i.e. in secure mode).
|
||||
*/
|
||||
return (value >= 0
|
||||
&& cpu_isar_feature(aa64_sel2, env_archcpu(env))
|
||||
&& arm_is_secure_below_el3(env)
|
||||
? ARMMMUIdxBit_Stage2_S
|
||||
: ARMMMUIdxBit_Stage2);
|
||||
}
|
||||
|
||||
static CPAccessResult aa64_zva_access(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
{
|
||||
|
|
|
@ -13,6 +13,40 @@
|
|||
#include "cpu-features.h"
|
||||
#include "cpregs.h"
|
||||
|
||||
/* Check for traps from EL1 due to HCR_EL2.TTLB. */
|
||||
static CPAccessResult access_ttlb(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
{
|
||||
if (arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_TTLB)) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
return CP_ACCESS_OK;
|
||||
}
|
||||
|
||||
/* Check for traps from EL1 due to HCR_EL2.TTLB or TTLBIS. */
|
||||
static CPAccessResult access_ttlbis(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
{
|
||||
if (arm_current_el(env) == 1 &&
|
||||
(arm_hcr_el2_eff(env) & (HCR_TTLB | HCR_TTLBIS))) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
return CP_ACCESS_OK;
|
||||
}
|
||||
|
||||
#ifdef TARGET_AARCH64
|
||||
/* Check for traps from EL1 due to HCR_EL2.TTLB or TTLBOS. */
|
||||
static CPAccessResult access_ttlbos(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
bool isread)
|
||||
{
|
||||
if (arm_current_el(env) == 1 &&
|
||||
(arm_hcr_el2_eff(env) & (HCR_TTLB | HCR_TTLBOS))) {
|
||||
return CP_ACCESS_TRAP_EL2;
|
||||
}
|
||||
return CP_ACCESS_OK;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* IS variants of TLB operations must affect all cores */
|
||||
static void tlbiall_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
|
@ -46,6 +80,16 @@ static void tlbimvaa_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
tlb_flush_page_all_cpus_synced(cs, value & TARGET_PAGE_MASK);
|
||||
}
|
||||
|
||||
/*
|
||||
* Non-IS variants of TLB operations are upgraded to
|
||||
* IS versions if we are at EL1 and HCR_EL2.FB is effectively set to
|
||||
* force broadcast of these operations.
|
||||
*/
|
||||
static bool tlb_force_broadcast(CPUARMState *env)
|
||||
{
|
||||
return arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_FB);
|
||||
}
|
||||
|
||||
static void tlbiall_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
|
@ -170,6 +214,102 @@ static void tlbiall_hyp_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_E2);
|
||||
}
|
||||
|
||||
/*
|
||||
* See: D4.7.2 TLB maintenance requirements and the TLB maintenance instructions
|
||||
* Page D4-1736 (DDI0487A.b)
|
||||
*/
|
||||
|
||||
static int vae1_tlbmask(CPUARMState *env)
|
||||
{
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
uint16_t mask;
|
||||
|
||||
assert(arm_feature(env, ARM_FEATURE_AARCH64));
|
||||
|
||||
if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
|
||||
mask = ARMMMUIdxBit_E20_2 |
|
||||
ARMMMUIdxBit_E20_2_PAN |
|
||||
ARMMMUIdxBit_E20_0;
|
||||
} else {
|
||||
/* This is AArch64 only, so we don't need to touch the EL30_x TLBs */
|
||||
mask = ARMMMUIdxBit_E10_1 |
|
||||
ARMMMUIdxBit_E10_1_PAN |
|
||||
ARMMMUIdxBit_E10_0;
|
||||
}
|
||||
return mask;
|
||||
}
|
||||
|
||||
static int vae2_tlbmask(CPUARMState *env)
|
||||
{
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
uint16_t mask;
|
||||
|
||||
if (hcr & HCR_E2H) {
|
||||
mask = ARMMMUIdxBit_E20_2 |
|
||||
ARMMMUIdxBit_E20_2_PAN |
|
||||
ARMMMUIdxBit_E20_0;
|
||||
} else {
|
||||
mask = ARMMMUIdxBit_E2;
|
||||
}
|
||||
return mask;
|
||||
}
|
||||
|
||||
/* Return 56 if TBI is enabled, 64 otherwise. */
|
||||
static int tlbbits_for_regime(CPUARMState *env, ARMMMUIdx mmu_idx,
|
||||
uint64_t addr)
|
||||
{
|
||||
uint64_t tcr = regime_tcr(env, mmu_idx);
|
||||
int tbi = aa64_va_parameter_tbi(tcr, mmu_idx);
|
||||
int select = extract64(addr, 55, 1);
|
||||
|
||||
return (tbi >> select) & 1 ? 56 : 64;
|
||||
}
|
||||
|
||||
static int vae1_tlbbits(CPUARMState *env, uint64_t addr)
|
||||
{
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
ARMMMUIdx mmu_idx;
|
||||
|
||||
assert(arm_feature(env, ARM_FEATURE_AARCH64));
|
||||
|
||||
/* Only the regime of the mmu_idx below is significant. */
|
||||
if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
|
||||
mmu_idx = ARMMMUIdx_E20_0;
|
||||
} else {
|
||||
mmu_idx = ARMMMUIdx_E10_0;
|
||||
}
|
||||
|
||||
return tlbbits_for_regime(env, mmu_idx, addr);
|
||||
}
|
||||
|
||||
static int vae2_tlbbits(CPUARMState *env, uint64_t addr)
|
||||
{
|
||||
uint64_t hcr = arm_hcr_el2_eff(env);
|
||||
ARMMMUIdx mmu_idx;
|
||||
|
||||
/*
|
||||
* Only the regime of the mmu_idx below is significant.
|
||||
* Regime EL2&0 has two ranges with separate TBI configuration, while EL2
|
||||
* only has one.
|
||||
*/
|
||||
if (hcr & HCR_E2H) {
|
||||
mmu_idx = ARMMMUIdx_E20_2;
|
||||
} else {
|
||||
mmu_idx = ARMMMUIdx_E2;
|
||||
}
|
||||
|
||||
return tlbbits_for_regime(env, mmu_idx, addr);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_vmalle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = vae1_tlbmask(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
|
@ -183,6 +323,14 @@ static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
}
|
||||
}
|
||||
|
||||
static int e2_tlbmask(CPUARMState *env)
|
||||
{
|
||||
return (ARMMMUIdxBit_E20_0 |
|
||||
ARMMMUIdxBit_E20_2 |
|
||||
ARMMMUIdxBit_E20_2_PAN |
|
||||
ARMMMUIdxBit_E2);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_alle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
|
@ -210,6 +358,32 @@ static void tlbi_aa64_alle3_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
tlb_flush_by_mmuidx(cs, ARMMMUIdxBit_E3);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_alle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = alle1_tlbmask(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_alle2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = e2_tlbmask(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_alle3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
|
||||
tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_E3);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_vae2_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
|
@ -241,6 +415,17 @@ static void tlbi_aa64_vae3_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_E3);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_vae1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = vae1_tlbmask(env);
|
||||
uint64_t pageaddr = sextract64(value << 12, 0, 56);
|
||||
int bits = vae1_tlbbits(env, pageaddr);
|
||||
|
||||
tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr, mask, bits);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_vae1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
|
@ -262,6 +447,41 @@ static void tlbi_aa64_vae1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
}
|
||||
}
|
||||
|
||||
static void tlbi_aa64_vae2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int mask = vae2_tlbmask(env);
|
||||
uint64_t pageaddr = sextract64(value << 12, 0, 56);
|
||||
int bits = vae2_tlbbits(env, pageaddr);
|
||||
|
||||
tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr, mask, bits);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_vae3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
uint64_t pageaddr = sextract64(value << 12, 0, 56);
|
||||
int bits = tlbbits_for_regime(env, ARMMMUIdx_E3, pageaddr);
|
||||
|
||||
tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr,
|
||||
ARMMMUIdxBit_E3, bits);
|
||||
}
|
||||
|
||||
static int ipas2e1_tlbmask(CPUARMState *env, int64_t value)
|
||||
{
|
||||
/*
|
||||
* The MSB of value is the NS field, which only applies if SEL2
|
||||
* is implemented and SCR_EL3.NS is not set (i.e. in secure mode).
|
||||
*/
|
||||
return (value >= 0
|
||||
&& cpu_isar_feature(aa64_sel2, env_archcpu(env))
|
||||
&& arm_is_secure_below_el3(env)
|
||||
? ARMMMUIdxBit_Stage2_S
|
||||
: ARMMMUIdxBit_Stage2);
|
||||
}
|
||||
|
||||
static void tlbi_aa64_ipas2e1_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
uint64_t value)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue