blob: f7318b3b51f2a0860bf2f952896d60f746bd98a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/string.h>
3#include <linux/init.h>
4#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/dmi.h>
Matt Domsch3ed3bce2006-03-26 01:37:03 -08006#include <linux/efi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/bootmem.h>
Andi Kleene9928672006-01-11 22:43:33 +01008#include <linux/slab.h>
Andi Kleenf2d3efe2006-03-25 16:30:22 +01009#include <asm/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011static char * __init dmi_string(struct dmi_header *dm, u8 s)
12{
Andrey Panin1249c512005-06-25 14:54:47 -070013 u8 *bp = ((u8 *) dm) + dm->length;
Andrey Paninc3c71202005-09-06 15:18:28 -070014 char *str = "";
Andrey Panin1249c512005-06-25 14:54:47 -070015
Andrey Paninc3c71202005-09-06 15:18:28 -070016 if (s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 s--;
Andrey Paninc3c71202005-09-06 15:18:28 -070018 while (s > 0 && *bp) {
19 bp += strlen(bp) + 1;
20 s--;
21 }
22
23 if (*bp != 0) {
Andi Kleene9928672006-01-11 22:43:33 +010024 str = dmi_alloc(strlen(bp) + 1);
Andrey Paninc3c71202005-09-06 15:18:28 -070025 if (str != NULL)
26 strcpy(str, bp);
27 else
28 printk(KERN_ERR "dmi_string: out of memory.\n");
29 }
Bjorn Helgaas4f705ae2006-04-03 17:09:22 -070030 }
Andrey Paninc3c71202005-09-06 15:18:28 -070031
32 return str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033}
34
35/*
36 * We have to be cautious here. We have seen BIOSes with DMI pointers
37 * pointing to completely the wrong place for example
38 */
Andrey Panin1249c512005-06-25 14:54:47 -070039static int __init dmi_table(u32 base, int len, int num,
40 void (*decode)(struct dmi_header *))
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Andrey Panin1249c512005-06-25 14:54:47 -070042 u8 *buf, *data;
43 int i = 0;
Bjorn Helgaas4f705ae2006-04-03 17:09:22 -070044
Andi Kleene9928672006-01-11 22:43:33 +010045 buf = dmi_ioremap(base, len);
Andrey Panin1249c512005-06-25 14:54:47 -070046 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return -1;
48
49 data = buf;
50
51 /*
Bjorn Helgaas4f705ae2006-04-03 17:09:22 -070052 * Stop when we see all the items the table claimed to have
53 * OR we run off the end of the table (also happens)
54 */
Andrey Panin1249c512005-06-25 14:54:47 -070055 while ((i < num) && (data - buf + sizeof(struct dmi_header)) <= len) {
56 struct dmi_header *dm = (struct dmi_header *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 /*
58 * We want to know the total length (formated area and strings)
59 * before decoding to make sure we won't run off the table in
60 * dmi_decode or dmi_string
61 */
Andrey Panin1249c512005-06-25 14:54:47 -070062 data += dm->length;
63 while ((data - buf < len - 1) && (data[0] || data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 data++;
Andrey Panin1249c512005-06-25 14:54:47 -070065 if (data - buf < len - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 decode(dm);
Andrey Panin1249c512005-06-25 14:54:47 -070067 data += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 i++;
69 }
Andi Kleene9928672006-01-11 22:43:33 +010070 dmi_iounmap(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return 0;
72}
73
Andrey Panin1249c512005-06-25 14:54:47 -070074static int __init dmi_checksum(u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Andrey Panin1249c512005-06-25 14:54:47 -070076 u8 sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 int a;
Bjorn Helgaas4f705ae2006-04-03 17:09:22 -070078
Andrey Panin1249c512005-06-25 14:54:47 -070079 for (a = 0; a < 15; a++)
80 sum += buf[a];
81
82 return sum == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static char *dmi_ident[DMI_STRING_MAX];
Andrey Paninebad6a42005-09-06 15:18:29 -070086static LIST_HEAD(dmi_devices);
Lennart Poettering4f5c7912007-05-08 22:07:02 +020087int dmi_available;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89/*
90 * Save a DMI string
91 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static void __init dmi_save_ident(struct dmi_header *dm, int slot, int string)
93{
Andrey Paninc3c71202005-09-06 15:18:28 -070094 char *p, *d = (char*) dm;
Andrey Panin1249c512005-06-25 14:54:47 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (dmi_ident[slot])
97 return;
Andrey Panin1249c512005-06-25 14:54:47 -070098
Andrey Paninc3c71202005-09-06 15:18:28 -070099 p = dmi_string(dm, d[string]);
100 if (p == NULL)
101 return;
102
103 dmi_ident[slot] = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200106static void __init dmi_save_uuid(struct dmi_header *dm, int slot, int index)
107{
108 u8 *d = (u8*) dm + index;
109 char *s;
110 int is_ff = 1, is_00 = 1, i;
111
112 if (dmi_ident[slot])
113 return;
114
115 for (i = 0; i < 16 && (is_ff || is_00); i++) {
116 if(d[i] != 0x00) is_ff = 0;
117 if(d[i] != 0xFF) is_00 = 0;
118 }
119
120 if (is_ff || is_00)
121 return;
122
123 s = dmi_alloc(16*2+4+1);
124 if (!s)
125 return;
126
127 sprintf(s,
128 "%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
129 d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7],
130 d[8], d[9], d[10], d[11], d[12], d[13], d[14], d[15]);
131
132 dmi_ident[slot] = s;
133}
134
135static void __init dmi_save_type(struct dmi_header *dm, int slot, int index)
136{
137 u8 *d = (u8*) dm + index;
138 char *s;
139
140 if (dmi_ident[slot])
141 return;
142
143 s = dmi_alloc(4);
144 if (!s)
145 return;
146
147 sprintf(s, "%u", *d & 0x7F);
148 dmi_ident[slot] = s;
149}
150
Andrey Paninebad6a42005-09-06 15:18:29 -0700151static void __init dmi_save_devices(struct dmi_header *dm)
152{
153 int i, count = (dm->length - sizeof(struct dmi_header)) / 2;
154 struct dmi_device *dev;
155
156 for (i = 0; i < count; i++) {
Andrey Paninbc834552006-03-25 03:06:31 -0800157 char *d = (char *)(dm + 1) + (i * 2);
Andrey Paninebad6a42005-09-06 15:18:29 -0700158
159 /* Skip disabled device */
160 if ((*d & 0x80) == 0)
161 continue;
162
Andi Kleene9928672006-01-11 22:43:33 +0100163 dev = dmi_alloc(sizeof(*dev));
Andrey Paninebad6a42005-09-06 15:18:29 -0700164 if (!dev) {
165 printk(KERN_ERR "dmi_save_devices: out of memory.\n");
166 break;
167 }
168
169 dev->type = *d++ & 0x7f;
170 dev->name = dmi_string(dm, *d);
171 dev->device_data = NULL;
Shem Multinymous2e0c1f62006-09-29 01:59:37 -0700172 list_add(&dev->list, &dmi_devices);
173 }
174}
175
176static void __init dmi_save_oem_strings_devices(struct dmi_header *dm)
177{
178 int i, count = *(u8 *)(dm + 1);
179 struct dmi_device *dev;
180
181 for (i = 1; i <= count; i++) {
182 dev = dmi_alloc(sizeof(*dev));
183 if (!dev) {
184 printk(KERN_ERR
185 "dmi_save_oem_strings_devices: out of memory.\n");
186 break;
187 }
188
189 dev->type = DMI_DEV_TYPE_OEM_STRING;
190 dev->name = dmi_string(dm, i);
191 dev->device_data = NULL;
Andrey Paninebad6a42005-09-06 15:18:29 -0700192
193 list_add(&dev->list, &dmi_devices);
194 }
195}
196
197static void __init dmi_save_ipmi_device(struct dmi_header *dm)
198{
199 struct dmi_device *dev;
200 void * data;
201
Andi Kleene9928672006-01-11 22:43:33 +0100202 data = dmi_alloc(dm->length);
Andrey Paninebad6a42005-09-06 15:18:29 -0700203 if (data == NULL) {
204 printk(KERN_ERR "dmi_save_ipmi_device: out of memory.\n");
205 return;
206 }
207
208 memcpy(data, dm, dm->length);
209
Andi Kleene9928672006-01-11 22:43:33 +0100210 dev = dmi_alloc(sizeof(*dev));
Andrey Paninebad6a42005-09-06 15:18:29 -0700211 if (!dev) {
212 printk(KERN_ERR "dmi_save_ipmi_device: out of memory.\n");
213 return;
214 }
215
216 dev->type = DMI_DEV_TYPE_IPMI;
217 dev->name = "IPMI controller";
218 dev->device_data = data;
219
220 list_add(&dev->list, &dmi_devices);
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 * Process a DMI table entry. Right now all we care about are the BIOS
225 * and machine entries. For 2.5 we should pull the smbus controller info
226 * out of here.
227 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static void __init dmi_decode(struct dmi_header *dm)
229{
Andrey Panin1249c512005-06-25 14:54:47 -0700230 switch(dm->type) {
Andrey Paninebad6a42005-09-06 15:18:29 -0700231 case 0: /* BIOS Information */
Andrey Panin1249c512005-06-25 14:54:47 -0700232 dmi_save_ident(dm, DMI_BIOS_VENDOR, 4);
Andrey Panin1249c512005-06-25 14:54:47 -0700233 dmi_save_ident(dm, DMI_BIOS_VERSION, 5);
Andrey Panin1249c512005-06-25 14:54:47 -0700234 dmi_save_ident(dm, DMI_BIOS_DATE, 8);
235 break;
Andrey Paninebad6a42005-09-06 15:18:29 -0700236 case 1: /* System Information */
Andrey Panin1249c512005-06-25 14:54:47 -0700237 dmi_save_ident(dm, DMI_SYS_VENDOR, 4);
Andrey Panin1249c512005-06-25 14:54:47 -0700238 dmi_save_ident(dm, DMI_PRODUCT_NAME, 5);
Andrey Panin1249c512005-06-25 14:54:47 -0700239 dmi_save_ident(dm, DMI_PRODUCT_VERSION, 6);
Andrey Panin1249c512005-06-25 14:54:47 -0700240 dmi_save_ident(dm, DMI_PRODUCT_SERIAL, 7);
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200241 dmi_save_uuid(dm, DMI_PRODUCT_UUID, 8);
Andrey Panin1249c512005-06-25 14:54:47 -0700242 break;
Andrey Paninebad6a42005-09-06 15:18:29 -0700243 case 2: /* Base Board Information */
Andrey Panin1249c512005-06-25 14:54:47 -0700244 dmi_save_ident(dm, DMI_BOARD_VENDOR, 4);
Andrey Panin1249c512005-06-25 14:54:47 -0700245 dmi_save_ident(dm, DMI_BOARD_NAME, 5);
Andrey Panin1249c512005-06-25 14:54:47 -0700246 dmi_save_ident(dm, DMI_BOARD_VERSION, 6);
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200247 dmi_save_ident(dm, DMI_BOARD_SERIAL, 7);
248 dmi_save_ident(dm, DMI_BOARD_ASSET_TAG, 8);
249 break;
250 case 3: /* Chassis Information */
251 dmi_save_ident(dm, DMI_CHASSIS_VENDOR, 4);
252 dmi_save_type(dm, DMI_CHASSIS_TYPE, 5);
253 dmi_save_ident(dm, DMI_CHASSIS_VERSION, 6);
254 dmi_save_ident(dm, DMI_CHASSIS_SERIAL, 7);
255 dmi_save_ident(dm, DMI_CHASSIS_ASSET_TAG, 8);
Andrey Panin1249c512005-06-25 14:54:47 -0700256 break;
Andrey Paninebad6a42005-09-06 15:18:29 -0700257 case 10: /* Onboard Devices Information */
258 dmi_save_devices(dm);
259 break;
Shem Multinymous2e0c1f62006-09-29 01:59:37 -0700260 case 11: /* OEM Strings */
261 dmi_save_oem_strings_devices(dm);
262 break;
Andrey Paninebad6a42005-09-06 15:18:29 -0700263 case 38: /* IPMI Device Information */
264 dmi_save_ipmi_device(dm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266}
267
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800268static int __init dmi_present(char __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Andrey Panin61e032fa2005-09-06 15:18:26 -0700270 u8 buf[15];
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800271 memcpy_fromio(buf, p, 15);
272 if ((memcmp(buf, "_DMI_", 5) == 0) && dmi_checksum(buf)) {
273 u16 num = (buf[13] << 8) | buf[12];
274 u16 len = (buf[7] << 8) | buf[6];
275 u32 base = (buf[11] << 24) | (buf[10] << 16) |
276 (buf[9] << 8) | buf[8];
277
278 /*
279 * DMI version 0.0 means that the real version is taken from
280 * the SMBIOS version, which we don't know at this point.
281 */
282 if (buf[14] != 0)
283 printk(KERN_INFO "DMI %d.%d present.\n",
284 buf[14] >> 4, buf[14] & 0xF);
285 else
286 printk(KERN_INFO "DMI present.\n");
287 if (dmi_table(base,len, num, dmi_decode) == 0)
288 return 0;
289 }
290 return 1;
291}
292
293void __init dmi_scan_machine(void)
294{
Andrey Panin61e032fa2005-09-06 15:18:26 -0700295 char __iomem *p, *q;
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800296 int rc;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700297
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800298 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800299 if (efi.smbios == EFI_INVALID_TABLE_ADDR)
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800300 goto out;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700301
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200302 /* This is called as a core_initcall() because it isn't
303 * needed during early boot. This also means we can
304 * iounmap the space when we're done with it.
305 */
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800306 p = dmi_ioremap(efi.smbios, 32);
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800307 if (p == NULL)
308 goto out;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700309
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800310 rc = dmi_present(p + 0x10); /* offset of _DMI_ string */
Tolentino, Matthew E23dd8422006-03-26 01:37:09 -0800311 dmi_iounmap(p, 32);
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200312 if (!rc) {
313 dmi_available = 1;
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800314 return;
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200315 }
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800316 }
317 else {
318 /*
319 * no iounmap() for that ioremap(); it would be a no-op, but
320 * it's so early in setup that sucker gets confused into doing
321 * what it shouldn't if we actually call it.
322 */
323 p = dmi_ioremap(0xF0000, 0x10000);
324 if (p == NULL)
325 goto out;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700326
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800327 for (q = p; q < p + 0x10000; q += 16) {
328 rc = dmi_present(q);
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200329 if (!rc) {
330 dmi_available = 1;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700331 return;
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200332 }
Andrey Panin61e032fa2005-09-06 15:18:26 -0700333 }
334 }
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800335 out: printk(KERN_INFO "DMI not present or invalid.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338/**
339 * dmi_check_system - check system DMI data
340 * @list: array of dmi_system_id structures to match against
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700341 * All non-null elements of the list must match
342 * their slot's (field index's) data (i.e., each
343 * list string must be a substring of the specified
344 * DMI slot's string data) to be considered a
345 * successful match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
347 * Walk the blacklist table running matching functions until someone
348 * returns non zero or we hit the end. Callback function is called for
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700349 * each successful match. Returns the number of matches.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
351int dmi_check_system(struct dmi_system_id *list)
352{
353 int i, count = 0;
354 struct dmi_system_id *d = list;
355
356 while (d->ident) {
357 for (i = 0; i < ARRAY_SIZE(d->matches); i++) {
358 int s = d->matches[i].slot;
359 if (s == DMI_NONE)
360 continue;
361 if (dmi_ident[s] && strstr(dmi_ident[s], d->matches[i].substr))
362 continue;
363 /* No match */
364 goto fail;
365 }
Robert Love640e8032005-09-06 15:18:30 -0700366 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (d->callback && d->callback(d))
368 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369fail: d++;
370 }
371
372 return count;
373}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374EXPORT_SYMBOL(dmi_check_system);
375
376/**
377 * dmi_get_system_info - return DMI data value
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700378 * @field: data index (see enum dmi_field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 *
380 * Returns one DMI data value, can be used to perform
381 * complex DMI data checks.
382 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700383char *dmi_get_system_info(int field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 return dmi_ident[field];
386}
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700387EXPORT_SYMBOL(dmi_get_system_info);
Andrey Paninebad6a42005-09-06 15:18:29 -0700388
Andi Kleena1bae672006-10-21 18:37:02 +0200389
390/**
391 * dmi_name_in_vendors - Check if string is anywhere in the DMI vendor information.
392 * @str: Case sensitive Name
393 */
394int dmi_name_in_vendors(char *str)
395{
396 static int fields[] = { DMI_BIOS_VENDOR, DMI_BIOS_VERSION, DMI_SYS_VENDOR,
397 DMI_PRODUCT_NAME, DMI_PRODUCT_VERSION, DMI_BOARD_VENDOR,
398 DMI_BOARD_NAME, DMI_BOARD_VERSION, DMI_NONE };
399 int i;
400 for (i = 0; fields[i] != DMI_NONE; i++) {
401 int f = fields[i];
402 if (dmi_ident[f] && strstr(dmi_ident[f], str))
403 return 1;
404 }
405 return 0;
406}
407EXPORT_SYMBOL(dmi_name_in_vendors);
408
Andrey Paninebad6a42005-09-06 15:18:29 -0700409/**
410 * dmi_find_device - find onboard device by type/name
411 * @type: device type or %DMI_DEV_TYPE_ANY to match all device types
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700412 * @name: device name string or %NULL to match all
Andrey Paninebad6a42005-09-06 15:18:29 -0700413 * @from: previous device found in search, or %NULL for new search.
414 *
415 * Iterates through the list of known onboard devices. If a device is
416 * found with a matching @vendor and @device, a pointer to its device
417 * structure is returned. Otherwise, %NULL is returned.
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700418 * A new search is initiated by passing %NULL as the @from argument.
Andrey Paninebad6a42005-09-06 15:18:29 -0700419 * If @from is not %NULL, searches continue from next device.
420 */
421struct dmi_device * dmi_find_device(int type, const char *name,
422 struct dmi_device *from)
423{
424 struct list_head *d, *head = from ? &from->list : &dmi_devices;
425
426 for(d = head->next; d != &dmi_devices; d = d->next) {
427 struct dmi_device *dev = list_entry(d, struct dmi_device, list);
428
429 if (((type == DMI_DEV_TYPE_ANY) || (dev->type == type)) &&
430 ((name == NULL) || (strcmp(dev->name, name) == 0)))
431 return dev;
432 }
433
434 return NULL;
435}
436EXPORT_SYMBOL(dmi_find_device);
Andi Kleenf083a322006-03-25 16:30:19 +0100437
438/**
439 * dmi_get_year - Return year of a DMI date
440 * @field: data index (like dmi_get_system_info)
441 *
442 * Returns -1 when the field doesn't exist. 0 when it is broken.
443 */
444int dmi_get_year(int field)
445{
446 int year;
447 char *s = dmi_get_system_info(field);
448
449 if (!s)
450 return -1;
451 if (*s == '\0')
452 return 0;
453 s = strrchr(s, '/');
454 if (!s)
455 return 0;
456
457 s += 1;
458 year = simple_strtoul(s, NULL, 0);
459 if (year && year < 100) { /* 2-digit year */
460 year += 1900;
461 if (year < 1996) /* no dates < spec 1.0 */
462 year += 100;
463 }
464
465 return year;
466}
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200467