mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target/arm: Split out get_phys_addr_with_secure
Retain the existing get_phys_addr interface using the security state derived from mmu_idx. Move the kerneldoc comments to the header file where they belong. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20221001162318.153420-6-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
7e80c0a4ff
commit
def8aa5b80
2 changed files with 55 additions and 29 deletions
|
@ -1145,6 +1145,46 @@ typedef struct GetPhysAddrResult {
|
||||||
ARMCacheAttrs cacheattrs;
|
ARMCacheAttrs cacheattrs;
|
||||||
} GetPhysAddrResult;
|
} GetPhysAddrResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* get_phys_addr_with_secure: get the physical address for a virtual address
|
||||||
|
* @env: CPUARMState
|
||||||
|
* @address: virtual address to get physical address for
|
||||||
|
* @access_type: 0 for read, 1 for write, 2 for execute
|
||||||
|
* @mmu_idx: MMU index indicating required translation regime
|
||||||
|
* @is_secure: security state for the access
|
||||||
|
* @result: set on translation success.
|
||||||
|
* @fi: set to fault info if the translation fails
|
||||||
|
*
|
||||||
|
* Find the physical address corresponding to the given virtual address,
|
||||||
|
* by doing a translation table walk on MMU based systems or using the
|
||||||
|
* MPU state on MPU based systems.
|
||||||
|
*
|
||||||
|
* Returns false if the translation was successful. Otherwise, phys_ptr, attrs,
|
||||||
|
* prot and page_size may not be filled in, and the populated fsr value provides
|
||||||
|
* information on why the translation aborted, in the format of a
|
||||||
|
* DFSR/IFSR fault register, with the following caveats:
|
||||||
|
* * we honour the short vs long DFSR format differences.
|
||||||
|
* * the WnR bit is never set (the caller must do this).
|
||||||
|
* * for PSMAv5 based systems we don't bother to return a full FSR format
|
||||||
|
* value.
|
||||||
|
*/
|
||||||
|
bool get_phys_addr_with_secure(CPUARMState *env, target_ulong address,
|
||||||
|
MMUAccessType access_type,
|
||||||
|
ARMMMUIdx mmu_idx, bool is_secure,
|
||||||
|
GetPhysAddrResult *result, ARMMMUFaultInfo *fi)
|
||||||
|
__attribute__((nonnull));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* get_phys_addr: get the physical address for a virtual address
|
||||||
|
* @env: CPUARMState
|
||||||
|
* @address: virtual address to get physical address for
|
||||||
|
* @access_type: 0 for read, 1 for write, 2 for execute
|
||||||
|
* @mmu_idx: MMU index indicating required translation regime
|
||||||
|
* @result: set on translation success.
|
||||||
|
* @fi: set to fault info if the translation fails
|
||||||
|
*
|
||||||
|
* Similarly, but use the security regime of @mmu_idx.
|
||||||
|
*/
|
||||||
bool get_phys_addr(CPUARMState *env, target_ulong address,
|
bool get_phys_addr(CPUARMState *env, target_ulong address,
|
||||||
MMUAccessType access_type, ARMMMUIdx mmu_idx,
|
MMUAccessType access_type, ARMMMUIdx mmu_idx,
|
||||||
GetPhysAddrResult *result, ARMMMUFaultInfo *fi)
|
GetPhysAddrResult *result, ARMMMUFaultInfo *fi)
|
||||||
|
|
|
@ -2260,35 +2260,12 @@ static ARMCacheAttrs combine_cacheattrs(CPUARMState *env,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
bool get_phys_addr_with_secure(CPUARMState *env, target_ulong address,
|
||||||
* get_phys_addr - get the physical address for this virtual address
|
MMUAccessType access_type, ARMMMUIdx mmu_idx,
|
||||||
*
|
bool is_secure, GetPhysAddrResult *result,
|
||||||
* Find the physical address corresponding to the given virtual address,
|
ARMMMUFaultInfo *fi)
|
||||||
* by doing a translation table walk on MMU based systems or using the
|
|
||||||
* MPU state on MPU based systems.
|
|
||||||
*
|
|
||||||
* Returns false if the translation was successful. Otherwise, phys_ptr, attrs,
|
|
||||||
* prot and page_size may not be filled in, and the populated fsr value provides
|
|
||||||
* information on why the translation aborted, in the format of a
|
|
||||||
* DFSR/IFSR fault register, with the following caveats:
|
|
||||||
* * we honour the short vs long DFSR format differences.
|
|
||||||
* * the WnR bit is never set (the caller must do this).
|
|
||||||
* * for PSMAv5 based systems we don't bother to return a full FSR format
|
|
||||||
* value.
|
|
||||||
*
|
|
||||||
* @env: CPUARMState
|
|
||||||
* @address: virtual address to get physical address for
|
|
||||||
* @access_type: 0 for read, 1 for write, 2 for execute
|
|
||||||
* @mmu_idx: MMU index indicating required translation regime
|
|
||||||
* @result: set on translation success.
|
|
||||||
* @fi: set to fault info if the translation fails
|
|
||||||
*/
|
|
||||||
bool get_phys_addr(CPUARMState *env, target_ulong address,
|
|
||||||
MMUAccessType access_type, ARMMMUIdx mmu_idx,
|
|
||||||
GetPhysAddrResult *result, ARMMMUFaultInfo *fi)
|
|
||||||
{
|
{
|
||||||
ARMMMUIdx s1_mmu_idx = stage_1_mmu_idx(mmu_idx);
|
ARMMMUIdx s1_mmu_idx = stage_1_mmu_idx(mmu_idx);
|
||||||
bool is_secure = regime_is_secure(env, mmu_idx);
|
|
||||||
|
|
||||||
if (mmu_idx != s1_mmu_idx) {
|
if (mmu_idx != s1_mmu_idx) {
|
||||||
/*
|
/*
|
||||||
|
@ -2304,8 +2281,8 @@ bool get_phys_addr(CPUARMState *env, target_ulong address,
|
||||||
ARMMMUIdx s2_mmu_idx;
|
ARMMMUIdx s2_mmu_idx;
|
||||||
bool is_el0;
|
bool is_el0;
|
||||||
|
|
||||||
ret = get_phys_addr(env, address, access_type, s1_mmu_idx,
|
ret = get_phys_addr_with_secure(env, address, access_type,
|
||||||
result, fi);
|
s1_mmu_idx, is_secure, result, fi);
|
||||||
|
|
||||||
/* If S1 fails or S2 is disabled, return early. */
|
/* If S1 fails or S2 is disabled, return early. */
|
||||||
if (ret || regime_translation_disabled(env, ARMMMUIdx_Stage2,
|
if (ret || regime_translation_disabled(env, ARMMMUIdx_Stage2,
|
||||||
|
@ -2517,6 +2494,15 @@ bool get_phys_addr(CPUARMState *env, target_ulong address,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool get_phys_addr(CPUARMState *env, target_ulong address,
|
||||||
|
MMUAccessType access_type, ARMMMUIdx mmu_idx,
|
||||||
|
GetPhysAddrResult *result, ARMMMUFaultInfo *fi)
|
||||||
|
{
|
||||||
|
return get_phys_addr_with_secure(env, address, access_type, mmu_idx,
|
||||||
|
regime_is_secure(env, mmu_idx),
|
||||||
|
result, fi);
|
||||||
|
}
|
||||||
|
|
||||||
hwaddr arm_cpu_get_phys_page_attrs_debug(CPUState *cs, vaddr addr,
|
hwaddr arm_cpu_get_phys_page_attrs_debug(CPUState *cs, vaddr addr,
|
||||||
MemTxAttrs *attrs)
|
MemTxAttrs *attrs)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue