summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2020-01-03 17:57:48 -0700
committerMartin Roth <martinroth@google.com>2020-01-06 23:27:36 +0000
commit2dd3b5c0f8e62505b4c2559518e4ddbd1fbd6aae (patch)
treed122a677c9c102e8b7c435a7169e89b90c6c277d /util
parentd701ef7475fe6d015a61cd91410391c3e0902f53 (diff)
downloadcoreboot-2dd3b5c0f8e62505b4c2559518e4ddbd1fbd6aae.tar.gz
coreboot-2dd3b5c0f8e62505b4c2559518e4ddbd1fbd6aae.tar.bz2
coreboot-2dd3b5c0f8e62505b4c2559518e4ddbd1fbd6aae.zip
util/amdfwtool: Add instances for APCB backup
Match each of the possible APCB items with a corresponding backup APCB. A missing backup copy can prevent the system from booting. Change-Id: I400194b2763239896214ea42cfe6fbeb8ed261a8 Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38168 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util')
-rw-r--r--util/amdfwtool/amdfwtool.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c
index 02564cf5ba3d..39cc45f08046 100644
--- a/util/amdfwtool/amdfwtool.c
+++ b/util/amdfwtool/amdfwtool.c
@@ -362,7 +362,11 @@ static amd_bios_entry amd_bios_table[] = {
{ .type = AMD_BIOS_APCB, .inst = 2, .level = BDT_BOTH },
{ .type = AMD_BIOS_APCB, .inst = 3, .level = BDT_BOTH },
{ .type = AMD_BIOS_APCB, .inst = 4, .level = BDT_BOTH },
- { .type = AMD_BIOS_APCB_BK, .level = BDT_BOTH },
+ { .type = AMD_BIOS_APCB_BK, .inst = 0, .level = BDT_BOTH },
+ { .type = AMD_BIOS_APCB_BK, .inst = 1, .level = BDT_BOTH },
+ { .type = AMD_BIOS_APCB_BK, .inst = 2, .level = BDT_BOTH },
+ { .type = AMD_BIOS_APCB_BK, .inst = 3, .level = BDT_BOTH },
+ { .type = AMD_BIOS_APCB_BK, .inst = 4, .level = BDT_BOTH },
{ .type = AMD_BIOS_APOB, .level = BDT_BOTH },
{ .type = AMD_BIOS_BIN,
.reset = 1, .copy = 1, .zlib = 1, .level = BDT_BOTH },