summaryrefslogtreecommitdiff
path: root/util/amdfwtool
diff options
context:
space:
mode:
authorFred Reitberger <reitbergerfred@gmail.com>2023-03-07 11:00:49 -0500
committerFred Reitberger <reitbergerfred@gmail.com>2023-03-09 12:19:44 +0000
commit75191be8d415a1364556b0c0f9b55f5f25296c03 (patch)
tree87d138e2f119743e991d27f6865227ebb3259d95 /util/amdfwtool
parentb06414685c874ca7628cf3f370d25730c37b4e00 (diff)
downloadcoreboot-75191be8d415a1364556b0c0f9b55f5f25296c03.tar.gz
amdfwtool: Support multiple inst entries
Use the inst field when adding entries to the psp tables. Otherwise, entries that differ by the inst field will appear as duplicates with an inst of 0. Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com> Change-Id: I4a84a0730976f4c65902b5c24ed13e21e95b03bb Reviewed-on: https://review.coreboot.org/c/coreboot/+/73522 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Diffstat (limited to 'util/amdfwtool')
-rw-r--r--util/amdfwtool/amdfwtool.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c
index 9b913865cb..5d61685b75 100644
--- a/util/amdfwtool/amdfwtool.c
+++ b/util/amdfwtool/amdfwtool.c
@@ -1439,6 +1439,7 @@ static void integrate_psp_firmwares(context *ctx,
pspdir->entries[count].type = fw_table[i].type;
pspdir->entries[count].subprog = fw_table[i].subprog;
pspdir->entries[count].rsvd = 0;
+ pspdir->entries[count].inst = fw_table[i].inst;
pspdir->entries[count].size = (uint32_t)bytes;
count++;