tree: Add smbios_processor_type

Change-Id: I46f799ad255993ac42dab11b5c1d2608daa52b42
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82645
Reviewed-by: Eric Lai <ericllai@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes Haouas 2024-05-25 11:17:15 +02:00 committed by Felix Held
commit b72f5949cc
3 changed files with 11 additions and 2 deletions

View file

@ -496,6 +496,15 @@ struct smbios_type4 {
#define SMBIOS_PROCESSOR_STATUS_POPULATED (1 << 6)
#define SMBIOS_PROCESSOR_STATUS_CPU_ENABLED (1 << 0)
enum smbios_processor_type {
SMBIOS_PROCESSOR_TYPE_OTHER = 0x01,
SMBIOS_PROCESSOR_TYPE_UNKNOWN = 0x02,
SMBIOS_PROCESSOR_TYPE_CENTRAL = 0x03,
SMBIOS_PROCESSOR_TYPE_MATH = 0x04,
SMBIOS_PROCESSOR_TYPE_DSP = 0x05,
SMBIOS_PROCESSOR_TYPE_VIDEO = 0x06,
};
/* enum for socket type */
enum smbios_processor_upgrade_field {
PROCESSOR_UPGRADE_OTHER = 0x01,