MdePkg: Update SmBios.h to add SMBIOS 3.4.0 ARM64 SoC ID field

SMBIOS 3.4.0 defines bit 9 of the Type 4 table Processor Characteristics
field to be the ARM64 SoC ID support. Add it to the
PROCESSOR_CHARACTERISTIC_FLAGS struct bitfield.

Signed-off-by: Rebecca Cran <rebecca@nuviainc.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
Rebecca Cran 2020-10-28 01:29:30 +08:00 committed by mergify[bot]
parent 0ec33398b4
commit 3cb6315933

View File

@ -871,7 +871,8 @@ typedef struct {
UINT32 ProcessorEnhancedVirtulization :1; UINT32 ProcessorEnhancedVirtulization :1;
UINT32 ProcessorPowerPerformanceCtrl :1; UINT32 ProcessorPowerPerformanceCtrl :1;
UINT32 Processor128bitCapble :1; UINT32 Processor128bitCapble :1;
UINT32 ProcessorReserved2 :7; UINT32 ProcessorArm64SocId :1;
UINT32 ProcessorReserved2 :6;
} PROCESSOR_CHARACTERISTIC_FLAGS; } PROCESSOR_CHARACTERISTIC_FLAGS;
typedef struct { typedef struct {