diff options
author | Gao, Zhichao <zhichao.gao@intel.com> | 2019-11-12 09:18:59 +0530 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2019-11-14 03:06:27 +0000 |
commit | 77ad48a263964facdadfb37b4049aab19ce5513c (patch) | |
tree | 7358e540770b499f639d9ce9a463deea9f1c6dd1 /ShellPkg | |
parent | 16efcbbd3ce983e659571671e280d14cdd87ed45 (diff) | |
download | edk2-77ad48a263964facdadfb37b4049aab19ce5513c.tar.gz edk2-77ad48a263964facdadfb37b4049aab19ce5513c.tar.bz2 edk2-77ad48a263964facdadfb37b4049aab19ce5513c.zip |
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 <ray.ni@intel.com>
Cc: Sai Chaganty <rangasai.v.chaganty@intel.com>
Reviewed-by: Ray Ni <ray.ni@intel.com>
Signed-off-by: Zhichao Gao <zhichao.gao@intel.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 12 |
1 files changed, 12 insertions, 0 deletions
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)"
}
};
|