summaryrefslogtreecommitdiffstats
path: root/src/mainboard/lenovo/x201/mainboard.c
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-01-23 09:06:50 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2014-07-29 10:09:19 +0200
commit91175bb493bd01d9a64d2179c48e07f4cd815642 (patch)
treebd076af8a6d249792075ed5e4092b29ce5b812e9 /src/mainboard/lenovo/x201/mainboard.c
parent0f92f630556b4bf2e4c0696cae4c2f8e97eda334 (diff)
downloadcoreboot-91175bb493bd01d9a64d2179c48e07f4cd815642.tar.gz
coreboot-91175bb493bd01d9a64d2179c48e07f4cd815642.tar.bz2
coreboot-91175bb493bd01d9a64d2179c48e07f4cd815642.zip
lenovo/x201 & x230: Add EC info to SMBIOS.
Based on X60 counterpart. Change-Id: I1556f75db08edf47c9313dae91072335240d46ad Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4780 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/mainboard/lenovo/x201/mainboard.c')
-rw-r--r--src/mainboard/lenovo/x201/mainboard.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x201/mainboard.c b/src/mainboard/lenovo/x201/mainboard.c
index db36a8873745..0c3c49a8fb9f 100644
--- a/src/mainboard/lenovo/x201/mainboard.c
+++ b/src/mainboard/lenovo/x201/mainboard.c
@@ -154,12 +154,27 @@ static void mainboard_init(device_t dev)
0x42, 0x142);
}
+static int mainboard_smbios_data(device_t dev, int *handle, unsigned long *current)
+{
+ int len;
+ char tpec[] = "IBM ThinkPad Embedded Controller -[ ]-";
+ const char *oem_strings[] = {
+ tpec,
+ };
+
+ h8_build_id_and_function_spec_version(tpec + 35, 17);
+ len = smbios_write_type11(current, (*handle)++, oem_strings, ARRAY_SIZE(oem_strings));
+
+ return len;
+}
+
static void mainboard_enable(device_t dev)
{
device_t dev0;
u16 pmbase;
dev->ops->init = mainboard_init;
+ dev->ops->get_smbios_data = mainboard_smbios_data;
pmbase = pci_read_config32(dev_find_slot(0, PCI_DEVFN(0x1f, 0)),
PMBASE) & 0xff80;