diff options
author | Fred Reitberger <reitbergerfred@gmail.com> | 2023-03-07 11:00:49 -0500 |
---|---|---|
committer | Fred Reitberger <reitbergerfred@gmail.com> | 2023-03-09 12:19:44 +0000 |
commit | 75191be8d415a1364556b0c0f9b55f5f25296c03 (patch) | |
tree | 87d138e2f119743e991d27f6865227ebb3259d95 /util/amdfwtool/amdfwtool.c | |
parent | b06414685c874ca7628cf3f370d25730c37b4e00 (diff) |
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/amdfwtool.c')
-rw-r--r-- | util/amdfwtool/amdfwtool.c | 1 |
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++; |