Skip to content
Snippets Groups Projects
Commit f37770c7 authored by Tuomas Tynkkynen's avatar Tuomas Tynkkynen Committed by Tom Rini
Browse files

ARM: qemu-arm: Bump RAM size in AArch64 MMU table


Now that PCI devices work with highmem-enabled QEMU emulation, bump up
the RAM size in the MMU tables to gain access to the full 255 GB of RAM
potential instead of the puny 3 GB.

Signed-off-by: default avatarTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 52ba9073
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ static struct mm_region qemu_arm64_mem_map[] = { ...@@ -28,7 +28,7 @@ static struct mm_region qemu_arm64_mem_map[] = {
/* RAM */ /* RAM */
.virt = 0x40000000UL, .virt = 0x40000000UL,
.phys = 0x40000000UL, .phys = 0x40000000UL,
.size = 0xc0000000UL, .size = 255UL * SZ_1G,
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
PTE_BLOCK_INNER_SHARE PTE_BLOCK_INNER_SHARE
}, { }, {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment