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>
This commit is contained in:
parent
b06414685c
commit
75191be8d4
|
@ -1439,6 +1439,7 @@ static void integrate_psp_firmwares(context *ctx,
|
||||||
pspdir->entries[count].type = fw_table[i].type;
|
pspdir->entries[count].type = fw_table[i].type;
|
||||||
pspdir->entries[count].subprog = fw_table[i].subprog;
|
pspdir->entries[count].subprog = fw_table[i].subprog;
|
||||||
pspdir->entries[count].rsvd = 0;
|
pspdir->entries[count].rsvd = 0;
|
||||||
|
pspdir->entries[count].inst = fw_table[i].inst;
|
||||||
pspdir->entries[count].size = (uint32_t)bytes;
|
pspdir->entries[count].size = (uint32_t)bytes;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
|
Loading…
Reference in New Issue