summaryrefslogtreecommitdiffstats
path: root/ShellPkg
diff options
context:
space:
mode:
authorGao, Zhichao <zhichao.gao@intel.com>2020-10-12 09:20:51 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2020-10-14 08:44:12 +0000
commit5d0a827122cccd1f884faf75b2a065d88a58bce1 (patch)
treeeba5bdf1a4faa55c0e55fba5060ddde71f0e9fb5 /ShellPkg
parent9380177354387f03c8ff9eadb7ae94aa453b9469 (diff)
downloadedk2-5d0a827122cccd1f884faf75b2a065d88a58bce1.tar.gz
edk2-5d0a827122cccd1f884faf75b2a065d88a58bce1.tar.bz2
edk2-5d0a827122cccd1f884faf75b2a065d88a58bce1.zip
ShellPkg/SmbiosView: Add DDR5 support
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2352 Refer to SMBIOS 3.4 spec, add new memory device type - DDR5 and LPDDR5 support for the shell command "smbiosview". Cc: Ray Ni <ray.ni@intel.com> Signed-off-by: Zhichao Gao <zhichao.gao@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r--ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
index b80e16d56a..17a2a89d51 100644
--- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
+++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
@@ -2550,6 +2550,14 @@ TABLE_ITEM MemoryDeviceTypeTable[] = {
{
MemoryTypeHBM2,
L" HBM2 (High Bandwidth Memory Generation 2)"
+ },
+ {
+ MemoryTypeDdr5,
+ L" DDR5"
+ },
+ {
+ MemoryTypeLpddr5,
+ L" LPDDR5"
}
};