Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CHERRY-PICK] MdePkg/SmBios.h: Add new Processor Upgrade definition for SMBIOS Type4 and Updated Type 4 Info as per Smbios 3.8.0 #1237

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions MdePkg/Include/IndustryStandard/SmBios.h
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,7 @@ typedef enum {
ProcessorFamilyIntelCoreI5 = 0xCD,
ProcessorFamilyIntelCoreI3 = 0xCE,
ProcessorFamilyIntelCoreI9 = 0xCF,
ProcessorFamilyIntelXeonD = 0xD0, /// Smbios spec 3.8 updated this value
ProcessorFamilyViaC7M = 0xD2,
ProcessorFamilyViaC7D = 0xD3,
ProcessorFamilyViaC7 = 0xD4,
Expand Down Expand Up @@ -887,7 +888,8 @@ typedef enum {
ProcessorUpgradeSocketBGA2551 = 0x54,
ProcessorUpgradeSocketLGA1851 = 0x55,
ProcessorUpgradeSocketBGA2114 = 0x56,
ProcessorUpgradeSocketBGA2833 = 0x57
ProcessorUpgradeSocketBGA2833 = 0x57,
ProcessorUpgradeInvalid = 0xFF
} PROCESSOR_UPGRADE;

///
Expand Down Expand Up @@ -1020,6 +1022,10 @@ typedef struct {
// Add for smbios 3.6
//
UINT16 ThreadEnabled;
//
// Add for smbios 3.8
//
SMBIOS_TABLE_STRING SocketType;
} SMBIOS_TABLE_TYPE4;

///
Expand Down Expand Up @@ -1524,7 +1530,7 @@ typedef struct {
UINT8 AsyncSurpriseRemoval : 1;
UINT8 FlexbusSlotCxl10Capable : 1;
UINT8 FlexbusSlotCxl20Capable : 1;
UINT8 Reserved : 1; ///< Set to 0.
UINT8 FlexbusSlotCxl30Capable : 1; /// SMBIOS spec 3.7.0 updated CXL 3.0 support
} MISC_SLOT_CHARACTERISTICS2;

///
Expand Down Expand Up @@ -2027,6 +2033,13 @@ typedef struct {
//
UINT32 ExtendedSpeed;
UINT32 ExtendedConfiguredMemorySpeed;
//
// Add for smbios 3.7.0
//
UINT16 Pmic0ManufacturerID;
UINT16 Pmic0RevisionNumber;
UINT16 RcdManufacturerID;
UINT16 RcdRevisionNumber;
} SMBIOS_TABLE_TYPE17;

///
Expand Down
Loading