summaryrefslogtreecommitdiffstats
path: root/src/mainboard/dell
diff options
context:
space:
mode:
authorMichał Żygowski <michal.zygowski@3mdeb.com>2022-02-20 23:17:19 +0100
committerMichał Żygowski <michal.zygowski@3mdeb.com>2022-03-09 09:27:35 +0000
commit0e545b252da4bf0f017b29572cfc4e2d80db313b (patch)
tree191730bc517019ea494260de2830218b864437b5 /src/mainboard/dell
parentf7c268c253514043ddbdd99293b1d11c45e8bea1 (diff)
downloadcoreboot-0e545b252da4bf0f017b29572cfc4e2d80db313b.tar.gz
coreboot-0e545b252da4bf0f017b29572cfc4e2d80db313b.tar.bz2
coreboot-0e545b252da4bf0f017b29572cfc4e2d80db313b.zip
mb/dell/optiplex_9010: Fix chassis types
Discovered this chassis identification number on Dell Precision T1650 which is much OptiPlex 9010 alike. Precision T1650 is a Mid Tower (MT) chassis. Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com> Change-Id: I2266fe39606b947a3d30a9462377fd56c39c2fa7 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62209 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/dell')
-rw-r--r--src/mainboard/dell/optiplex_9010/mainboard.c5
-rw-r--r--src/mainboard/dell/optiplex_9010/sch5545_ec.c1
2 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/dell/optiplex_9010/mainboard.c b/src/mainboard/dell/optiplex_9010/mainboard.c
index 8a619c0700ed..25f9196e9c09 100644
--- a/src/mainboard/dell/optiplex_9010/mainboard.c
+++ b/src/mainboard/dell/optiplex_9010/mainboard.c
@@ -64,16 +64,13 @@ static void mainboard_enable(struct device *dev)
printk(BIOS_DEBUG, "Chassis type: ");
switch (pin_sts) {
case 0:
+ case 4:
printk(BIOS_DEBUG, "MT\n");
break;
case 3:
case 11:
printk(BIOS_DEBUG, "USFF\n");
break;
- case 4:
- /* As per table in schematics, but don't know what this is */
- printk(BIOS_DEBUG, "Comoros\n");
- break;
case 1:
case 9:
case 5:
diff --git a/src/mainboard/dell/optiplex_9010/sch5545_ec.c b/src/mainboard/dell/optiplex_9010/sch5545_ec.c
index 60cde7d9afa9..fa78a98b739c 100644
--- a/src/mainboard/dell/optiplex_9010/sch5545_ec.c
+++ b/src/mainboard/dell/optiplex_9010/sch5545_ec.c
@@ -547,6 +547,7 @@ static uint8_t get_chassis_type(void)
/* This mapping will determine which EC init sequence to use */
switch (chassis_id) {
case 0x0:
+ case 0x4:
return 5;
case 0x8:
return 4;