There were a few updates lately that generates ROM size > 512K. I am changing the default ROM size to 1M to accommodate this and future changes. I tested on SimNow family10h_1p.bsd and it POSTs OK.
Signed-off-by: Vincent Lim <vincent.lim@amd.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4289 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
99fd2a3b3a
commit
d12acea520
|
@ -124,7 +124,7 @@ uses AMD_UCODE_PATCH_FILE
|
|||
##
|
||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||
##
|
||||
default ROM_SIZE=524288
|
||||
default ROM_SIZE=1024*1024
|
||||
|
||||
##
|
||||
##
|
||||
|
@ -133,9 +133,9 @@ default ROM_SIZE=524288
|
|||
#default FALLBACK_SIZE=131072
|
||||
#default FALLBACK_SIZE=0x40000
|
||||
|
||||
#FALLBACK: 512K - 4K
|
||||
default FALLBACK_SIZE=0x7f000
|
||||
#FAILOVER: 4k
|
||||
#FALLBACK: 1024K - 8K
|
||||
default FALLBACK_SIZE=0xFE000
|
||||
#FAILOVER: 8k
|
||||
default FAILOVER_SIZE=0x02000
|
||||
|
||||
#more 1M for pgtbl
|
||||
|
|
|
@ -30,7 +30,7 @@ mainboard amd/serengeti_cheetah_fam10
|
|||
option MAXIMUM_CONSOLE_LOGLEVEL=9
|
||||
|
||||
# 512KB ROM
|
||||
option ROM_SIZE=512*1024
|
||||
option ROM_SIZE=1024*1024
|
||||
|
||||
# Cheetah Family 10
|
||||
#romimage "normal"
|
||||
|
@ -50,9 +50,9 @@ romimage "fallback"
|
|||
option USE_FALLBACK_IMAGE=1
|
||||
# option ROM_IMAGE_SIZE=0x13800
|
||||
# option ROM_IMAGE_SIZE=0x19800
|
||||
option ROM_IMAGE_SIZE=0x3f000
|
||||
option ROM_IMAGE_SIZE=0x7f000
|
||||
# option ROM_IMAGE_SIZE=0x15800
|
||||
option XIP_ROM_SIZE=0x40000
|
||||
option XIP_ROM_SIZE=0x80000
|
||||
option COREBOOT_EXTRA_VERSION="$(shell cat ../../VERSION)_Fallback"
|
||||
payload ../payload.elf
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue