summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorNikolai Vyssotski <nikolai.vyssotski@amd.corp-partner.google.com>2023-03-07 15:09:09 -0600
committerFred Reitberger <reitbergerfred@gmail.com>2023-03-09 15:20:18 +0000
commitbfc9ca7f55b80e02d1c930f779930e9cc94d2cf2 (patch)
tree60538f2db64ee93d7cdec61dd50f0ae9b7f49a4e /util
parentfe514552dd72af2e855cf37eecd1ed59dd41ba61 (diff)
downloadcoreboot-bfc9ca7f55b80e02d1c930f779930e9cc94d2cf2.tar.gz
coreboot-bfc9ca7f55b80e02d1c930f779930e9cc94d2cf2.tar.bz2
coreboot-bfc9ca7f55b80e02d1c930f779930e9cc94d2cf2.zip
amdfwtool: move FW_MPIO to PSP Dir Level 2 where it belongs
Type 0x5d (MPIO Firmware) was mistakenly placed to PSP Level 1 directory. It should be in Level 2 PSP directory instead. Change-Id: Ic5ea00859f1055e0c91600c5f941c5d3acca36e2 Signed-off-by: Nikolai Vyssotski <nikolai.vyssotski@amd.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/73556 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Bao Zheng <fishbaozi@gmail.com> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'util')
-rw-r--r--util/amdfwtool/amdfwtool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c
index 5d61685b75f7..adcde9424a91 100644
--- a/util/amdfwtool/amdfwtool.c
+++ b/util/amdfwtool/amdfwtool.c
@@ -320,7 +320,7 @@ amd_fw_entry amd_psp_fw_table[] = {
{ .type = AMD_FW_DMCU_ISR, .level = PSP_LVL2 | PSP_LVL2_AB },
{ .type = AMD_FW_MSMU, .level = PSP_LVL2 | PSP_LVL2_AB },
{ .type = AMD_FW_SPIROM_CFG, .level = PSP_LVL2 | PSP_LVL2_AB },
- { .type = AMD_FW_MPIO, .level = PSP_LVL2 | PSP_BOTH_AB },
+ { .type = AMD_FW_MPIO, .level = PSP_LVL2 | PSP_LVL2_AB },
{ .type = AMD_FW_PSP_SMUSCS, .level = PSP_BOTH | PSP_LVL2_AB },
{ .type = AMD_FW_DMCUB, .level = PSP_LVL2 | PSP_LVL2_AB },
{ .type = AMD_FW_PSP_BOOTLOADER_AB, .level = PSP_LVL2 | PSP_LVL2_AB },