diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-02-12 15:54:47 -0600 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-02-12 23:37:24 +0100 |
commit | 76e25b66ae1975212b7863eb91437f92443bfef6 (patch) | |
tree | b887d9b00794fc880f2d08199a936d6ed9ef6be9 /src/mainboard/google/rambi | |
parent | 82e7d956efc6c860dbec2c6a66857a43e5c14504 (diff) |
google boards: Do not hardcode location of spd.bin
spd.bin can reside anywhere in CBFS, and we only use CBFS APIs to
access and read it. As such, there is no need to hardcode it, and it
can collide with mrc.bin or mrc.cache on some boards. Do not use a
specific position for spd.bin, but instead let cbfstool find the
optimal placement.
Change-Id: I496094d3c0de708813494095b7ac4be8addb4112
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-on: http://review.coreboot.org/5210
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/mainboard/google/rambi')
-rw-r--r-- | src/mainboard/google/rambi/Kconfig | 4 | ||||
-rw-r--r-- | src/mainboard/google/rambi/spd/Makefile.inc | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/mainboard/google/rambi/Kconfig b/src/mainboard/google/rambi/Kconfig index db6f4e2b40..292d321388 100644 --- a/src/mainboard/google/rambi/Kconfig +++ b/src/mainboard/google/rambi/Kconfig @@ -32,8 +32,4 @@ config HAVE_ME_BIN bool default n -config SPD_CBFS_ADDRESS - hex "Location of SPD in CBFS" - default 0xfffec000 - endif # BOARD_INTEL_BAYLEYBAY diff --git a/src/mainboard/google/rambi/spd/Makefile.inc b/src/mainboard/google/rambi/spd/Makefile.inc index 84695abd4f..36f4b66823 100644 --- a/src/mainboard/google/rambi/spd/Makefile.inc +++ b/src/mainboard/google/rambi/spd/Makefile.inc @@ -43,4 +43,3 @@ $(SPD_BIN): $(SPD_DEPS) cbfs-files-y += spd.bin spd.bin-file := $(SPD_BIN) spd.bin-type := 0xab -spd.bin-position := $(CONFIG_SPD_CBFS_ADDRESS) |