diff options
author | Rebecca Cran <rebecca@nuviainc.com> | 2020-10-28 01:29:30 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-10-30 01:39:30 +0000 |
commit | 3cb6315933b8809ddeba65cc719f27216a83fda6 (patch) | |
tree | a266e21e6bd650dc062b1f73e80c84e84448fef3 /MdePkg/Include | |
parent | 0ec33398b40f949cb3aaeed33fab94faf3fa0912 (diff) | |
download | edk2-3cb6315933b8809ddeba65cc719f27216a83fda6.tar.gz |
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>
Diffstat (limited to 'MdePkg/Include')
-rw-r--r-- | MdePkg/Include/IndustryStandard/SmBios.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index f2db11f947..c495c48f3b 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -871,7 +871,8 @@ typedef struct { UINT32 ProcessorEnhancedVirtulization :1;
UINT32 ProcessorPowerPerformanceCtrl :1;
UINT32 Processor128bitCapble :1;
- UINT32 ProcessorReserved2 :7;
+ UINT32 ProcessorArm64SocId :1;
+ UINT32 ProcessorReserved2 :6;
} PROCESSOR_CHARACTERISTIC_FLAGS;
typedef struct {
|