From fb82ebe9065e2160e662aee490d749ac31388fa6 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 4 Aug 2015 11:14:17 -0700 Subject: x86: Make sure boot device is mapped below 4G On x86-64 the current way of calculating the base address of the boot device (SPI flash) gets an unwanted sign extension, making it live somewhere at the end of 64bit address space. Enforce rom_base to be at the upper end of the 4G address space. Change-Id: Ia81e82094d3c51f6c10e02b4b0df2f3e1519d39e Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/11121 Reviewed-by: Aaron Durbin Tested-by: build bot (Jenkins) --- src/arch/x86/mmap_boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/x86/mmap_boot.c') diff --git a/src/arch/x86/mmap_boot.c b/src/arch/x86/mmap_boot.c index 6c98954ff2..53973f9bb4 100644 --- a/src/arch/x86/mmap_boot.c +++ b/src/arch/x86/mmap_boot.c @@ -24,7 +24,7 @@ #include /* The ROM is memory mapped just below 4GiB. Form a pointer for the base. */ -#define rom_base ((void *)(uintptr_t)(-(int32_t)CONFIG_ROM_SIZE)) +#define rom_base ((void *)(uintptr_t)(0x100000000ULL-CONFIG_ROM_SIZE)) static const struct mem_region_device boot_dev = MEM_REGION_DEV_INIT(rom_base, CONFIG_ROM_SIZE); -- cgit v1.2.3