diff options
author | Ning Feng <ning.feng@intel.com> | 2025-08-29 01:38:44 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-09-02 17:11:24 +0000 |
commit | f718b0ffd625d23266af881c51abe09c05d5a708 (patch) | |
tree | ad7fa0a6f17f7014e4cbeb2a4b9c20e4c6b0f39d | |
parent | 397479d74880f3eb180b3b58843ca667f7a56a4c (diff) | |
download | edk2-f718b0ffd625d23266af881c51abe09c05d5a708.zip edk2-f718b0ffd625d23266af881c51abe09c05d5a708.tar.gz edk2-f718b0ffd625d23266af881c51abe09c05d5a708.tar.bz2 |
ShellPkg/UefiShellDebug1CommandsLib: Add MRDIMM entry to QueryTable
Added the MRDIMM (0x08) entry to the MemoryDeviceMemoryTechnologyTable
in QueryTable.c. This enables proper display and decoding of MRDIMM memory
technology in SMBIOS Type 17 structures.
Signed-off-by: Ning Feng <ning.feng@intel.com>
-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 30f4846..b8c6852 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -2883,6 +2883,14 @@ TABLE_ITEM MemoryDeviceTypeTable[] = { {
MemoryTypeLpddr5,
L" LPDDR5"
+ },
+ {
+ MemoryTypeHBM3,
+ L" HBM3 (High Bandwidth Memory Generation 3)"
+ },
+ {
+ MemoryTypeMrDimm,
+ L" MRDIMM (Multi-Channel RDIMM)"
}
};
@@ -2973,6 +2981,10 @@ TABLE_ITEM MemoryDeviceMemoryTechnologyTable[] = { {
MemoryTechnologyIntelOptanePersistentMemory,
L" Intel Optane Persistent Memory"
+ },
+ {
+ MemoryTechnologyMrDimmDeprecated,
+ L" MRDIMM"
}
};
|