diff options
author | Richard Henderson | 2011-04-27 18:22:18 +0200 |
---|---|---|
committer | Richard Henderson | 2011-05-31 19:18:06 +0200 |
commit | fa6e0a6354539582ae98c232982070d99ea14770 (patch) | |
tree | 01c3626ca856048196061a00c3c7f9b5a3b9f517 | |
parent | target-alpha: Implement cpu_alpha_handle_mmu_fault for system mode. (diff) | |
download | qemu-fa6e0a6354539582ae98c232982070d99ea14770.tar.gz qemu-fa6e0a6354539582ae98c232982070d99ea14770.tar.xz qemu-fa6e0a6354539582ae98c232982070d99ea14770.zip |
target-alpha: Remap PIO space for 43-bit KSEG for EV6.
Signed-off-by: Richard Henderson <rth@twiddle.net>
-rw-r--r-- | target-alpha/helper.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/target-alpha/helper.c b/target-alpha/helper.c index d0e4db26c2..32c2cf9db3 100644 --- a/target-alpha/helper.c +++ b/target-alpha/helper.c @@ -220,14 +220,18 @@ static int get_physical_address(CPUState *env, target_ulong addr, /* Translate the superpage. */ /* ??? When we do more than emulate Unix PALcode, we'll need to - determine which superpage is actually active. */ - if (saddr < 0 && (saddr >> (TARGET_VIRT_ADDR_SPACE_BITS - 2) & 3) == 2) { - /* User-space cannot access kseg addresses. */ + determine which KSEG is actually active. */ + if (saddr < 0 && ((saddr >> 41) & 3) == 2) { + /* User-space cannot access KSEG addresses. */ if (mmu_idx != MMU_KERNEL_IDX) { goto exit; } + /* For the benefit of the Typhoon chipset, move bit 40 to bit 43. + We would not do this if the 48-bit KSEG is enabled. */ phys = saddr & ((1ull << 40) - 1); + phys |= (saddr & (1ull << 40)) << 3; + prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC; ret = -1; goto exit; |