intel/sandybridge: Fix builds with System Agent blob
Broken with commit:
5c10abe
nb/intel/sandybridge: increase MMCONF_BASE_ADDRESS
Available sandybridge/systemagent-r6.bin has MMCONF hard-coded
at some places and samsung/lumpy fails at boot here:
CBFS: Locating 'mrc.bin'
CBFS: Found @ offset 9fec0 size 2fc94
System Agent: Starting up...
System Agent: Initializing
These are the last lines as captured over USB debug.
Change-Id: I441847f0e71a5e1be9c8ef6a04a81eb7bdd8a6d9
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/15328
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
c948746c21
commit
0306e6a8bf
|
@ -30,7 +30,7 @@ config MAINBOARD_PART_NUMBER
|
|||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf8000000
|
||||
default 0xf8000000 if USE_NATIVE_RAMINIT
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -30,7 +30,7 @@ config MAINBOARD_PART_NUMBER
|
|||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf8000000
|
||||
default 0xf8000000 if USE_NATIVE_RAMINIT
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -31,7 +31,7 @@ config MAINBOARD_PART_NUMBER
|
|||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf8000000
|
||||
default 0xf8000000 if USE_NATIVE_RAMINIT
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -30,7 +30,7 @@ config MAINBOARD_PART_NUMBER
|
|||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf8000000
|
||||
default 0xf8000000 if USE_NATIVE_RAMINIT
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -26,7 +26,7 @@ config MAINBOARD_PART_NUMBER
|
|||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf8000000
|
||||
default 0xf8000000 if USE_NATIVE_RAMINIT
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -23,7 +23,7 @@ config MAINBOARD_PART_NUMBER
|
|||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf8000000
|
||||
default 0xf8000000 if USE_NATIVE_RAMINIT
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -33,7 +33,7 @@ config MAINBOARD_PART_NUMBER
|
|||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf8000000
|
||||
default 0xf8000000 if USE_NATIVE_RAMINIT
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -31,7 +31,7 @@ config MAINBOARD_PART_NUMBER
|
|||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf8000000
|
||||
default 0xf8000000 if USE_NATIVE_RAMINIT
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -94,4 +94,8 @@ config MRC_FILE
|
|||
The path and filename of the file to use as System Agent
|
||||
binary.
|
||||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf0000000 if !USE_NATIVE_RAMINIT
|
||||
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue