diff options
author | Nick Vaccaro <nvaccaro@google.com> | 2020-08-20 16:19:44 -0700 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2020-08-28 04:35:56 +0000 |
commit | 48fc1640a83ce55aa1d7cc94298d3778116587e6 (patch) | |
tree | 124bbb85ebd0de8aeaa083fb29c252853e4e8d2b /src/mainboard/google | |
parent | c19140b49f1972cb3b0be5467a4c8a735226bb90 (diff) | |
download | coreboot-48fc1640a83ce55aa1d7cc94298d3778116587e6.tar.xz |
util: volteer/dedede: move generic SPDs to common location
Now that generic SPD files have the memory type prepended to the
filename, they can be stored in the same location. This CL moves
the generic SPDs to the new location.
Change the ddr4 gen_part_id.go and gen_spd.go tools to use
"ddr4_spd_manifest.generated" instead of "spd_manifest.generated".
Change the lpddr4x gen_part_id.go and gen_spd.go tools to use
"lp4x_spd_manifest.generated" instead of "spd_manifest.generated".
Move TGL DDR4 and LPDDR4x generic SPDs into a common location.
Move JSL DDR4 and LPDDR4x generic SPDs into a common location.
Change the volteer/spd/Makefile.inc to use the new path for the spds.
Change the dedede/spd/Makefile.inc to use the new path for the spds.
BUG=b:165854055
TEST="emerge-volteer coreboot" and verify all variants build correctly.
Change-Id: I83b088cb718d15ffd3012c84a12b5231ae84a3e4
Signed-off-by: Nick Vaccaro <nvaccaro@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44648
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/dedede/spd/Makefile.inc | 2 | ||||
-rw-r--r-- | src/mainboard/google/volteer/spd/Makefile.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/dedede/spd/Makefile.inc b/src/mainboard/google/dedede/spd/Makefile.inc index d2bed28dbc..bcfe06d79e 100644 --- a/src/mainboard/google/dedede/spd/Makefile.inc +++ b/src/mainboard/google/dedede/spd/Makefile.inc @@ -3,7 +3,7 @@ ifneq ($(SPD_SOURCES),) SPD_BIN = $(obj)/spd.bin -SPD_DEPS := $(foreach f, $(SPD_SOURCES), src/soc/intel/jasperlake/spd/lp4x/$(f)) +SPD_DEPS := $(foreach f, $(SPD_SOURCES), src/soc/intel/jasperlake/spd/$(f)) # Include spd ROM data $(SPD_BIN): $(SPD_DEPS) diff --git a/src/mainboard/google/volteer/spd/Makefile.inc b/src/mainboard/google/volteer/spd/Makefile.inc index 1077a36ae0..2dfafd5cd8 100644 --- a/src/mainboard/google/volteer/spd/Makefile.inc +++ b/src/mainboard/google/volteer/spd/Makefile.inc @@ -5,7 +5,7 @@ ifneq ($(SPD_SOURCES),) SPD_BIN = $(obj)/spd.bin ifeq ($(SPD_SOURCE_PATH),) -SPD_SOURCE_PATH := src/soc/intel/tigerlake/spd/lp4x +SPD_SOURCE_PATH := src/soc/intel/tigerlake/spd endif SPD_DEPS := $(foreach f, $(SPD_SOURCES), $(SPD_SOURCE_PATH)/$(f)) |