From: Gao, Zhichao Date: Tue, 12 Nov 2019 03:48:59 +0000 (+0530) Subject: ShellPkg/SmbiosView: SMBIOS 3.3.0 Add value HBM and Die for type 17 X-Git-Tag: edk2-stable201911~15 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=77ad48a263964facdadfb37b4049aab19ce5513c ShellPkg/SmbiosView: SMBIOS 3.3.0 Add value HBM and Die for type 17 REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2305 Memory Device (Type 17): - SMBIOSCR00178: add new memory device type value (HBM) and new form factor value (Die) Cc: Ray Ni Cc: Sai Chaganty Reviewed-by: Ray Ni Signed-off-by: Zhichao Gao --- diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 8ed2bae4d3..16b75f2667 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -2423,6 +2423,10 @@ TABLE_ITEM MemoryDeviceFormFactorTable[] = { { 0x0F, L" FB-DIMM" + }, + { + MemoryFormFactorDie, + L" Die" } }; @@ -2538,6 +2542,14 @@ TABLE_ITEM MemoryDeviceTypeTable[] = { { 0x1F, L" Logical non-volatile device" + }, + { + MemoryTypeHBM, + L" HBM (High Bandwidth Memory)" + }, + { + MemoryTypeHBM2, + L" HBM2 (High Bandwidth Memory Generation 2)" } };