diff options
author | Ning Feng <ning.feng@intel.com> | 2025-08-31 22:12:14 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-09-02 17:11:24 +0000 |
commit | 397479d74880f3eb180b3b58843ca667f7a56a4c (patch) | |
tree | 4336b4a58e05891be16c81bff02547724a3cf0b5 | |
parent | 2efffed93811a7c5d0e6d7d19f8ff112128ffd6a (diff) | |
download | edk2-397479d74880f3eb180b3b58843ca667f7a56a4c.zip edk2-397479d74880f3eb180b3b58843ca667f7a56a4c.tar.gz edk2-397479d74880f3eb180b3b58843ca667f7a56a4c.tar.bz2 |
MdePkg/IndustryStandard: Add MRDIMM into Smbios.h
Added the MRDIMM (0x08) entry to the MemoryDeviceMemoryTechnologyTable
in Smbios.h. 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-- | MdePkg/Include/IndustryStandard/SmBios.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 490ec43..ce0a8e3 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1905,7 +1905,8 @@ typedef enum { MemoryTypeHBM2 = 0x21,
MemoryTypeDdr5 = 0x22,
MemoryTypeLpddr5 = 0x23,
- MemoryTypeHBM3 = 0x24
+ MemoryTypeHBM3 = 0x24,
+ MemoryTypeMrDimm = 0x25
} MEMORY_DEVICE_TYPE;
///
@@ -1944,7 +1945,8 @@ typedef enum { // This definition is updated to represent Intel
// Optane DC Persistent Memory in SMBIOS spec 3.4.0
//
- MemoryTechnologyIntelOptanePersistentMemory = 0x07
+ MemoryTechnologyIntelOptanePersistentMemory = 0x07,
+ MemoryTechnologyMrDimmDeprecated = 0x08
} MEMORY_DEVICE_TECHNOLOGY;
///
|