mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-25 21:57:00 +00:00
target-arm: use extended address bits from supersection short descriptor
Since ARMv7 with LPAE support, a supersection short translation table descriptor has had extended base address fields which hold bits 39:32 of translated address. These fields are IMPDEF in ARMv6 and ARMv7 without LPAE support. Backports commit 4e42a6ca37e39e56725518851f4388e46bd91129 from qemu
This commit is contained in:
parent
84c75286f5
commit
7f53358ec1
|
@ -4858,6 +4858,8 @@ static int get_phys_addr_v6(CPUARMState *env, uint32_t address, int access_type,
|
|||
if (desc & (1 << 18)) {
|
||||
/* Supersection. */
|
||||
phys_addr = (desc & 0xff000000) | (address & 0x00ffffff);
|
||||
phys_addr |= (uint64_t)extract32(desc, 20, 4) << 32;
|
||||
phys_addr |= (uint64_t)extract32(desc, 5, 4) << 36;
|
||||
*page_size = 0x1000000;
|
||||
} else {
|
||||
/* Section. */
|
||||
|
|
Loading…
Reference in a new issue