From 25dbc17a3612f9b11d451de94b87486e1cabc471 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Tue, 4 Jul 2017 21:38:03 +0200 Subject: smbios: Correct the system enclosure types Regarding the "System Management BIOS Reference Specification" Version: 3.1.1, Date: 2017-01-12, Laptop system enclosure is 0x09 and for Notebook it is 0x0a Change-Id: I5538be0b434eed20d76aef6f26247e46d1225feb Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/20463 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/include/smbios.h | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) (limited to 'src/include') diff --git a/src/include/smbios.h b/src/include/smbios.h index 5a9ef37286..28f8d13939 100644 --- a/src/include/smbios.h +++ b/src/include/smbios.h @@ -278,8 +278,42 @@ struct smbios_type2 { } __attribute__((packed)); enum { - SMBIOS_ENCLOSURE_DESKTOP = 3, - SMBIOS_ENCLOSURE_NOTEBOOK = 9, + SMBIOS_ENCLOSURE_OTHER = 0x01, + SMBIOS_ENCLOSURE_UNKNOWN = 0x02, + SMBIOS_ENCLOSURE_DESKTOP = 0x03, + SMBIOS_ENCLOSURE_LOW_PROFILE_DESKTOP = 0x04, + SMBIOS_ENCLOSURE_PIZZA_BOX = 0x05, + SMBIOS_ENCLOSURE_MINI_TOWER = 0x06, + SMBIOS_ENCLOSURE_TOWER = 0x07, + SMBIOS_ENCLOSURE_PORTABLE = 0x08, + SMBIOS_ENCLOSURE_LAPTOP = 0x09, + SMBIOS_ENCLOSURE_NOTEBOOK = 0x0a, + SMBIOS_ENCLOSURE_HAND_HELD = 0x0b, + SMBIOS_ENCLOSURE_DOCKING_STATION = 0x0c, + SMBIOS_ENCLOSURE_ALL_IN_ONE = 0x0d, + SMBIOS_ENCLOSURE_SUB_NOTEBOOK = 0x0e, + SMBIOS_ENCLOSURE_SPACE_SAVING = 0x0f, + SMBIOS_ENCLOSURE_LUNCH_BOX = 0x10, + SMBIOS_ENCLOSURE_MAIN_SERVER_CHASSIS = 0x11, + SMBIOS_ENCLOSURE_EXPANSION_CHASSIS = 0x12, + SMBIOS_ENCLOSURE_SUBCHASSIS = 0x13, + SMBIOS_ENCLOSURE_BUS_EXPANSION_CHASSIS = 0x14, + SMBIOS_ENCLOSURE_PERIPHERAL_CHASSIS = 0x15, + SMBIOS_ENCLOSURE_RAID_CHASSIS = 0x16, + SMBIOS_ENCLOSURE_RACK_MOUNT_CHASSIS = 0x17, + SMBIOS_ENCLOSURE_SEALED_CASE_PC = 0x18, + SMBIOS_ENCLOSURE_MULTI_SYSTEM_CHASSIS = 0x19, + SMBIOS_ENCLOSURE_COMPACT_PCI = 0x1a, + SMBIOS_ENCLOSURE_ADVANCED_TCA = 0x1b, + SMBIOS_ENCLOSURE_BLADE = 0x1c, + SMBIOS_ENCLOSURE_BLADE_ENCLOSURE = 0x1d, + SMBIOS_ENCLOSURE_TABLET = 0x1e, + SMBIOS_ENCLOSURE_CONVERTIBLE = 0x1f, + SMBIOS_ENCLOSURE_DETACHABLE = 0x20, + SMBIOS_ENCLOSURE_IOT_GATEWAY = 0x21, + SMBIOS_ENCLOSURE_EMBEDDED_PC = 0x22, + SMBIOS_ENCLOSURE_MINI_PC = 0x23, + SMBIOS_ENCLOSURE_STICK_PC = 0x24, }; struct smbios_type3 { -- cgit v1.2.3