diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-06-23 12:41:40 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-06-23 21:52:46 +0200 |
commit | 0306e6a8bf487ed7eefebac09a077014c03b1cc2 (patch) | |
tree | 50e547d49d2a0cbe198b97a19fbb0193d62dd458 /src/mainboard/google | |
parent | c948746c212f31beccc569b846a1421eb2fe3ab7 (diff) |
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>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/butterfly/Kconfig | 2 | ||||
-rw-r--r-- | src/mainboard/google/link/Kconfig | 2 | ||||
-rw-r--r-- | src/mainboard/google/parrot/Kconfig | 2 | ||||
-rw-r--r-- | src/mainboard/google/stout/Kconfig | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/google/butterfly/Kconfig b/src/mainboard/google/butterfly/Kconfig index 4115a79725..42400767da 100644 --- a/src/mainboard/google/butterfly/Kconfig +++ b/src/mainboard/google/butterfly/Kconfig @@ -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 diff --git a/src/mainboard/google/link/Kconfig b/src/mainboard/google/link/Kconfig index e61bba05f3..8fe3a87d56 100644 --- a/src/mainboard/google/link/Kconfig +++ b/src/mainboard/google/link/Kconfig @@ -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 diff --git a/src/mainboard/google/parrot/Kconfig b/src/mainboard/google/parrot/Kconfig index 3483a813d6..fa94ab6534 100644 --- a/src/mainboard/google/parrot/Kconfig +++ b/src/mainboard/google/parrot/Kconfig @@ -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 diff --git a/src/mainboard/google/stout/Kconfig b/src/mainboard/google/stout/Kconfig index 0aafc48521..3a2250d78b 100644 --- a/src/mainboard/google/stout/Kconfig +++ b/src/mainboard/google/stout/Kconfig @@ -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 |