aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2017-07-04 21:38:03 +0200
committerWerner Zeh <werner.zeh@siemens.com>2017-07-06 08:51:24 +0000
commit25dbc17a3612f9b11d451de94b87486e1cabc471 (patch)
tree53d49092d894b2145ee185ae6c7ae8b844bc6c4e /src
parentccd233b4bc6c505b01f2e93dc7a9d9bb128d8b3e (diff)
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 <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/20463 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/arch/x86/smbios.c2
-rw-r--r--src/include/smbios.h38
2 files changed, 37 insertions, 3 deletions
diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c
index 97c58815f6..79279faa79 100644
--- a/src/arch/x86/smbios.c
+++ b/src/arch/x86/smbios.c
@@ -426,7 +426,7 @@ static int smbios_write_type3(unsigned long *current, int handle)
t->power_supply_state = SMBIOS_STATE_SAFE;
t->thermal_state = SMBIOS_STATE_SAFE;
if (IS_ENABLED(CONFIG_SYSTEM_TYPE_LAPTOP))
- t->_type = SMBIOS_ENCLOSURE_NOTEBOOK;
+ t->_type = SMBIOS_ENCLOSURE_LAPTOP;
else
t->_type = SMBIOS_ENCLOSURE_DESKTOP;
t->security_status = SMBIOS_STATE_SAFE;
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 {