Skip to content

Commit

Permalink
Disable >4G ram support on 32-bit targets
Browse files Browse the repository at this point in the history
If the target only has a 32-bit physical address space then
the code to map >4G ram breaks horribly, and causes compiler warnings.

Signed-off-by: Paul Brook <[email protected]>
  • Loading branch information
Paul Brook committed May 19, 2009
1 parent 909b69c commit 8a637d4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hw/pc.c
Original file line number Diff line number Diff line change
Expand Up @@ -908,10 +908,14 @@ static void pc_init1(ram_addr_t ram_size,

/* above 4giga memory allocation */
if (above_4g_mem_size > 0) {
#if TARGET_PHYS_ADDR_BITS == 32
hw_error("To much RAM for 32-bit physical address");
#else
ram_addr = qemu_ram_alloc(above_4g_mem_size);
cpu_register_physical_memory(0x100000000ULL,
above_4g_mem_size,
ram_addr);
#endif
}


Expand Down

0 comments on commit 8a637d4

Please sign in to comment.