diff options
author | Nick Ramirez <nramirez@nvidia.com> | 2025-03-26 08:54:15 -0700 |
---|---|---|
committer | Liming Gao <gaoliming@byosoft.com.cn> | 2025-04-22 11:53:23 +0800 |
commit | 8406e672e846e37dc292065f36d25242d961647b (patch) | |
tree | f2ae8fc84fedd85a21226ef2878ccc6e836979a4 | |
parent | 99a5f388dfefd59aabb5b870fd529979a35fa2cc (diff) | |
download | edk2-8406e672e846e37dc292065f36d25242d961647b.zip edk2-8406e672e846e37dc292065f36d25242d961647b.tar.gz edk2-8406e672e846e37dc292065f36d25242d961647b.tar.bz2 |
MdePkg: Updated Memory Form Factor definition per SMBIOS 3.8.0
This patch adds support for the new CAMM form factor
defined in SMBIOS specification 3.8.0
Signed-off-by: Nick Ramirez <nramirez@nvidia.com>
-rw-r--r-- | MdePkg/Include/IndustryStandard/SmBios.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 1fd85fe..490ec43 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1,6 +1,7 @@ /** @file
Industry Standard Definitions of SMBIOS Table Specification v3.8.0.
+Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.<BR>
Copyright (c) 2006 - 2024, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP<BR>
(C) Copyright 2015 - 2019 Hewlett Packard Enterprise Development LP<BR>
@@ -1864,7 +1865,8 @@ typedef enum { MemoryFormFactorSodimm = 0x0D,
MemoryFormFactorSrimm = 0x0E,
MemoryFormFactorFbDimm = 0x0F,
- MemoryFormFactorDie = 0x10
+ MemoryFormFactorDie = 0x10,
+ MemoryFormFactorCamm = 0x11
} MEMORY_FORM_FACTOR;
///
|