mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-03-24 22:25:11 +00:00
target/arm: Always pass cacheattr in S1_ptw_translate
When we changed the interface of get_phys_addr_lpae to require the cacheattr parameter, this spot was missed. The compiler is unable to detect the use of NULL vs the nonnull attribute here. Fixes: 7e98e21c098 Backports commit a6d6f37aed4b171d121cd4a9363fbb41e90dcb53 from qemu
This commit is contained in:
parent
40c04c73b0
commit
5e1316a92e
|
@ -9959,21 +9959,11 @@ static hwaddr S1_ptw_translate(CPUARMState *env, ARMMMUIdx mmu_idx,
|
||||||
int s2prot;
|
int s2prot;
|
||||||
int ret;
|
int ret;
|
||||||
ARMCacheAttrs cacheattrs = {};
|
ARMCacheAttrs cacheattrs = {};
|
||||||
ARMCacheAttrs *pcacheattrs = NULL;
|
|
||||||
|
|
||||||
if (env->cp15.hcr_el2 & HCR_PTW) {
|
|
||||||
/*
|
|
||||||
* PTW means we must fault if this S1 walk touches S2 Device
|
|
||||||
* memory; otherwise we don't care about the attributes and can
|
|
||||||
* save the S2 translation the effort of computing them.
|
|
||||||
*/
|
|
||||||
pcacheattrs = &cacheattrs;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = get_phys_addr_lpae(env, addr, MMU_DATA_LOAD, ARMMMUIdx_Stage2,
|
ret = get_phys_addr_lpae(env, addr, MMU_DATA_LOAD, ARMMMUIdx_Stage2,
|
||||||
false,
|
false,
|
||||||
&s2pa, &txattrs, &s2prot, &s2size, fi,
|
&s2pa, &txattrs, &s2prot, &s2size, fi,
|
||||||
pcacheattrs);
|
&cacheattrs);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
assert(fi->type != ARMFault_None);
|
assert(fi->type != ARMFault_None);
|
||||||
fi->s2addr = addr;
|
fi->s2addr = addr;
|
||||||
|
@ -9981,8 +9971,11 @@ static hwaddr S1_ptw_translate(CPUARMState *env, ARMMMUIdx mmu_idx,
|
||||||
fi->s1ptw = true;
|
fi->s1ptw = true;
|
||||||
return ~0;
|
return ~0;
|
||||||
}
|
}
|
||||||
if (pcacheattrs && (pcacheattrs->attrs & 0xf0) == 0) {
|
if ((env->cp15.hcr_el2 & HCR_PTW) && (cacheattrs.attrs & 0xf0) == 0) {
|
||||||
/* Access was to Device memory: generate Permission fault */
|
/*
|
||||||
|
* PTW set and S1 walk touched S2 Device memory:
|
||||||
|
* generate Permission fault.
|
||||||
|
*/
|
||||||
fi->type = ARMFault_Permission;
|
fi->type = ARMFault_Permission;
|
||||||
fi->s2addr = addr;
|
fi->s2addr = addr;
|
||||||
fi->stage2 = true;
|
fi->stage2 = true;
|
||||||
|
|
Loading…
Reference in a new issue