diff options
author | Ritul Guru <ritul.bits@gmail.com> | 2022-08-29 00:51:08 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-09-22 17:10:46 +0000 |
commit | a2cb3400a6dbd23b3fdfd73670951067242a8c57 (patch) | |
tree | 93bd9ca0aecbaf14e6013ef4e42a724150dc2ae6 /util/amdfwtool/amdfwtool.h | |
parent | 6f95cb50c5b344d81979ed73d8f650cd60f8e5e6 (diff) |
util/amdfwtool: Add support for PSP NVRAM base addr and size
Add parameters to support adding the location and size of
the PSP NVRAM area to the PSP directory table.
Verified this change on PCO based Bilby platform.
Change-Id: I1664893db6f6dcdc588aeaf9448c2d81390af5fa
Signed-off-by: Ritul Guru <ritul.bits@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67137
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/amdfwtool/amdfwtool.h')
-rw-r--r-- | util/amdfwtool/amdfwtool.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/amdfwtool/amdfwtool.h b/util/amdfwtool/amdfwtool.h index 10776c2204..027a8f30f3 100644 --- a/util/amdfwtool/amdfwtool.h +++ b/util/amdfwtool/amdfwtool.h @@ -276,6 +276,8 @@ typedef struct _amd_fw_entry { amd_fw_type type; char *filename; uint8_t subprog; + uint64_t dest; + size_t size; int level; uint64_t other; } amd_fw_entry; |