aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@amd.corp-partner.google.com>2023-12-15 15:58:32 -0600
committerFelix Held <felix-coreboot@felixheld.de>2023-12-17 18:44:20 +0000
commiteb62c4ba40d199b80b16ab6e3171f054543fc718 (patch)
treebdaa38517d9d32537e84bf537a16a6cc138788d2
parent95d05d8301627312b2e5afd4ba6a10061bc11354 (diff)
mb/google/guybrush: Add and use APCB configuration data
This file is identical to the copy currently found in the blobs repository; it is simply being relocated for consistency and since it does not need to be in an external repo. BUG=none TEST=build/boot guybrush Change-Id: Ice4cbaccca13e9c4ae246fdcde5c89aa2086f1e1 Signed-off-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79592 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
-rw-r--r--src/mainboard/google/guybrush/Makefile.inc7
-rw-r--r--src/mainboard/google/guybrush/data.apcbbin0 -> 38108 bytes
2 files changed, 4 insertions, 3 deletions
diff --git a/src/mainboard/google/guybrush/Makefile.inc b/src/mainboard/google/guybrush/Makefile.inc
index 8ffb00f285..fd03124dcd 100644
--- a/src/mainboard/google/guybrush/Makefile.inc
+++ b/src/mainboard/google/guybrush/Makefile.inc
@@ -22,7 +22,8 @@ subdirs-y += variants/$(VARIANT_DIR)
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/baseboard/include
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/include
-APCB_NAME=APCB_CZN_D4
+APCB_NAME=data.apcb
+APCB_PATH=$(src)/mainboard/$(MAINBOARDDIR)
LIB_SPD_DEPS = $(SPD_SOURCES)
@@ -31,7 +32,7 @@ APCB_SOURCES_RECOVERY = $(obj)/$(APCB_NAME).gen
$(obj)/$(APCB_NAME).gen: $(SPD_SOURCES) \
$(APCB_V3_EDIT_TOOL) \
- $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin
- $(APCB_V3_EDIT_TOOL) $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin \
+ $(APCB_PATH)/$(APCB_NAME)
+ $(APCB_V3_EDIT_TOOL) $(APCB_PATH)/$(APCB_NAME) \
$(obj)/$(APCB_NAME).gen \
--spd_sources $(SPD_SOURCES)
diff --git a/src/mainboard/google/guybrush/data.apcb b/src/mainboard/google/guybrush/data.apcb
new file mode 100644
index 0000000000..7fe382e431
--- /dev/null
+++ b/src/mainboard/google/guybrush/data.apcb
Binary files differ