diff options
author | Eduardo Cuevas Farfan <eduardo.cuevas.farfan@intel.com> | 2023-08-29 22:26:45 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-08-31 13:20:19 +0000 |
commit | a60eef3afa8d23341393a89115dce2ab6e304bbb (patch) | |
tree | 7801db03fdfd504f69cde808c3c7f7fba2558eba /MdePkg/Include | |
parent | c5753c3e38f3fde23eec9641cb3c433f443ff99e (diff) | |
download | edk2-a60eef3afa8d23341393a89115dce2ab6e304bbb.tar.gz edk2-a60eef3afa8d23341393a89115dce2ab6e304bbb.tar.bz2 edk2-a60eef3afa8d23341393a89115dce2ab6e304bbb.zip |
MdePkg: Add ProcessorUpgradeSocket definitions from SMBIOS 3.7.0
This patch adds below definitions from SMBIOS 3.7.0 into Smbios.h
- ProcessorUpgradeSocketAM5
- ProcessorUpgradeSocketSP5
- ProcessorUpgradeSocketSP6
- ProcessorUpgradeSocketBGA883
- ProcessorUpgradeSocketBGA1190
- ProcessorUpgradeSocketBGA4129
- ProcessorUpgradeSocketLGA4710
- ProcessorUpgradeSocketLGA7529
Signed-off-by: Eduardo Cuevas Farfan <eduardo.cuevas.farfan@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/IndustryStandard/SmBios.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 89985bb418..40bdc9a937 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1,7 +1,7 @@ /** @file
- Industry Standard Definitions of SMBIOS Table Specification v3.6.0.
+ Industry Standard Definitions of SMBIOS Table Specification v3.7.0.
-Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2023, 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>
Copyright (c) 2022, AMD Incorporated. All rights reserved.<BR>
@@ -863,7 +863,15 @@ typedef enum { ProcessorUpgradeSocketLGA1211 = 0x45,
ProcessorUpgradeSocketLGA2422 = 0x46,
ProcessorUpgradeSocketLGA5773 = 0x47,
- ProcessorUpgradeSocketBGA5773 = 0x48
+ ProcessorUpgradeSocketBGA5773 = 0x48,
+ ProcessorUpgradeSocketAM5 = 0x49,
+ ProcessorUpgradeSocketSP5 = 0x4A,
+ ProcessorUpgradeSocketSP6 = 0x4B,
+ ProcessorUpgradeSocketBGA883 = 0x4C,
+ ProcessorUpgradeSocketBGA1190 = 0x4D,
+ ProcessorUpgradeSocketBGA4129 = 0x4E,
+ ProcessorUpgradeSocketLGA4710 = 0x4F,
+ ProcessorUpgradeSocketLGA7529 = 0x50
} PROCESSOR_UPGRADE;
///
|