From 68e0969878b4f692fcca32bd2343f83edd0a6a7b Mon Sep 17 00:00:00 2001 From: Ashraf Ali S Date: Thu, 9 Jul 2026 13:47:03 +0530 Subject: [PATCH 1/2] MdePkg: Add MemoryTypeLpDdr6 to MEMORY_DEVICE_TYPE enum Signed-off-by: Ashraf Ali S --- MdePkg/Include/IndustryStandard/SmBios.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 5789c98f1f..67fd39e37b 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1995,7 +1995,8 @@ typedef enum { MemoryTypeDdr5 = 0x22, MemoryTypeLpddr5 = 0x23, MemoryTypeHBM3 = 0x24, - MemoryTypeMrDimm = 0x25 ///< SMBIOS spec 3.9.0 CR248 + MemoryTypeMrDimm = 0x25, ///< SMBIOS spec 3.9.0 CR248 + MemoryTypeLpddr6 = 0x26 ///< SMBIOS spec 3.10 } MEMORY_DEVICE_TYPE; /// From 2776d08d86c41ab7b7546916815a7fe4e6532ed8 Mon Sep 17 00:00:00 2001 From: Ashraf Ali S Date: Thu, 9 Jul 2026 13:47:36 +0530 Subject: [PATCH 2/2] ShellPkg/SmbiosView: Add MemoryTypeLpDdr6 to QueryTable Signed-off-by: Ashraf Ali S --- .../UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 71848259af..286d92006b 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -2901,6 +2901,10 @@ TABLE_ITEM MemoryDeviceTypeTable[] = { { MemoryTypeMrDimm, L" MRDIMM (Multi-Channel RDIMM)" + }, + { + MemoryTypeLpddr6, + L" LPDDR6" } };