diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2022-10-16 20:29:03 +0800 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-01-22 18:34:21 +0000 |
commit | 8eba6625ce659630f2cc2bffd5ce43aa773f66dc (patch) | |
tree | 3310d96f0d22f4f5099faee5f3ed18397d0e4bbe /util/amdfwtool/amdfwtool.h | |
parent | 295f417a96606873dca18c346ea2940690eeac6c (diff) |
amdfwtool: Add entry types required to support glinda & phoenix SOC
Change-Id: I7565c5eda75b332a48613440d7e4cfb388d5012f
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69045
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: ritul guru <ritul.bits@gmail.com>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'util/amdfwtool/amdfwtool.h')
-rw-r--r-- | util/amdfwtool/amdfwtool.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/util/amdfwtool/amdfwtool.h b/util/amdfwtool/amdfwtool.h index a4ebbcd974..d3d686669e 100644 --- a/util/amdfwtool/amdfwtool.h +++ b/util/amdfwtool/amdfwtool.h @@ -24,6 +24,10 @@ typedef enum _amd_fw_type { AMD_FW_PSP_TRUSTLETKEY = 0x0d, AMD_FW_PSP_SMU_FIRMWARE2 = 0x12, AMD_DEBUG_UNLOCK = 0x13, + AMD_BOOT_DRIVER = 0x1b, + AMD_SOC_DRIVER = 0x1c, + AMD_DEBUG_DRIVER = 0x1d, + AMD_INTERFACE_DRIVER = 0x1f, AMD_HW_IPCFG = 0x20, AMD_WRAPPED_IKEK = 0x21, AMD_TOKEN_UNLOCK = 0x22, @@ -64,14 +68,25 @@ typedef enum _amd_fw_type { AMD_FW_MSMU = 0x5a, AMD_FW_SPIROM_CFG = 0x5c, AMD_FW_MPIO = 0x5d, + AMD_FW_TPMLITE = 0x5f, AMD_FW_PSP_SMUSCS = 0x5f, AMD_FW_DMCUB = 0x71, AMD_FW_PSP_BOOTLOADER_AB = 0x73, AMD_RIB = 0x76, + AMD_FW_AMF_SRAM = 0x85, + AMD_FW_AMF_DRAM = 0x86, + AMD_FW_AMF_WLAN = 0x88, + AMD_FW_AMF_MFD = 0x89, AMD_FW_MPDMA_TF = 0x8c, AMD_TA_IKEK = 0x8d, + AMD_FW_MPCCX = 0x90, AMD_FW_GMI3_PHY = 0x91, AMD_FW_MPDMA_PM = 0x92, + AMD_FW_LSDMA = 0x94, + AMD_FW_C20_MP = 0x95, + AMD_FW_FCFG_TABLE = 0x98, + AMD_FW_MINIMSMU = 0x9a, + AMD_FW_SRAM_FW_EXT = 0x9d, AMD_FW_IMC = 0x200, /* Large enough to be larger than the top BHD entry type. */ AMD_FW_GEC, AMD_FW_XHCI, |