mirror of https://github.com/acidanthera/audk.git
Add processor family 2 definition in SMBIOS header file.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yi Li <yi.li@linaro.org> Reviewed by: Star Zeng <star.zeng@intel.com> Reviewed by: Elvin Li <elvin.li@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15061 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
03bc7c2b09
commit
f9ed6c93af
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Industry Standard Definitions of SMBIOS Table Specification v2.7.1
|
Industry Standard Definitions of SMBIOS Table Specification v2.7.1
|
||||||
|
|
||||||
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials are licensed and made available under
|
This program and the accompanying materials are licensed and made available under
|
||||||
the terms and conditions of the BSD License that accompanies this distribution.
|
the terms and conditions of the BSD License that accompanies this distribution.
|
||||||
The full text of the license may be found at
|
The full text of the license may be found at
|
||||||
|
@ -565,6 +565,22 @@ typedef enum {
|
||||||
ProcessorFamilyReserved1 = 0xFF
|
ProcessorFamilyReserved1 = 0xFF
|
||||||
} PROCESSOR_FAMILY_DATA;
|
} PROCESSOR_FAMILY_DATA;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Processor Information2 - Processor Family2.
|
||||||
|
///
|
||||||
|
typedef enum {
|
||||||
|
ProcessorFamilySH3 = 0x0104,
|
||||||
|
ProcessorFamilySH4 = 0x0105,
|
||||||
|
ProcessorFamilyARM = 0x0118,
|
||||||
|
ProcessorFamilyStrongARM = 0x0119,
|
||||||
|
ProcessorFamily6x86 = 0x012C,
|
||||||
|
ProcessorFamilyMediaGX = 0x012D,
|
||||||
|
ProcessorFamilyMII = 0x012E,
|
||||||
|
ProcessorFamilyWinChip = 0x0140,
|
||||||
|
ProcessorFamilyDSP = 0x015E,
|
||||||
|
ProcessorFamilyVideoProcessor = 0x01F4
|
||||||
|
} PROCESSOR_FAMILY2_DATA;
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Processor Information - Voltage.
|
/// Processor Information - Voltage.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue