]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/firmware/dmi_scan.c
drivers/video/uvesafb.c: fix section mismatch warning in param_set_scroll()
[mirror_ubuntu-artful-kernel.git] / drivers / firmware / dmi_scan.c
CommitLineData
1da177e4 1#include <linux/types.h>
1da177e4
LT
2#include <linux/string.h>
3#include <linux/init.h>
4#include <linux/module.h>
1da177e4 5#include <linux/dmi.h>
3ed3bce8 6#include <linux/efi.h>
1da177e4 7#include <linux/bootmem.h>
e9928674 8#include <linux/slab.h>
f2d3efed 9#include <asm/dmi.h>
1da177e4 10
79da4721
PW
11static char dmi_empty_string[] = " ";
12
f3069ae9 13static const char * __init dmi_string_nosave(const struct dmi_header *dm, u8 s)
1da177e4 14{
1855256c 15 const u8 *bp = ((u8 *) dm) + dm->length;
1249c513 16
c3c7120d 17 if (s) {
1da177e4 18 s--;
c3c7120d
AP
19 while (s > 0 && *bp) {
20 bp += strlen(bp) + 1;
21 s--;
22 }
23
24 if (*bp != 0) {
79da4721
PW
25 size_t len = strlen(bp)+1;
26 size_t cmp_len = len > 8 ? 8 : len;
27
28 if (!memcmp(bp, dmi_empty_string, cmp_len))
29 return dmi_empty_string;
f3069ae9 30 return bp;
c3c7120d 31 }
4f705ae3 32 }
c3c7120d 33
f3069ae9
JD
34 return "";
35}
36
37static char * __init dmi_string(const struct dmi_header *dm, u8 s)
38{
39 const char *bp = dmi_string_nosave(dm, s);
40 char *str;
41 size_t len;
42
43 if (bp == dmi_empty_string)
44 return dmi_empty_string;
45
46 len = strlen(bp) + 1;
47 str = dmi_alloc(len);
48 if (str != NULL)
49 strcpy(str, bp);
50 else
51 printk(KERN_ERR "dmi_string: cannot allocate %Zu bytes.\n", len);
52
c3c7120d 53 return str;
1da177e4
LT
54}
55
56/*
57 * We have to be cautious here. We have seen BIOSes with DMI pointers
58 * pointing to completely the wrong place for example
59 */
7fce084a
JD
60static void dmi_table(u8 *buf, int len, int num,
61 void (*decode)(const struct dmi_header *))
1da177e4 62{
7fce084a 63 u8 *data = buf;
1249c513 64 int i = 0;
4f705ae3 65
1da177e4 66 /*
4f705ae3
BH
67 * Stop when we see all the items the table claimed to have
68 * OR we run off the end of the table (also happens)
69 */
1249c513 70 while ((i < num) && (data - buf + sizeof(struct dmi_header)) <= len) {
1855256c
JG
71 const struct dmi_header *dm = (const struct dmi_header *)data;
72
1da177e4
LT
73 /*
74 * We want to know the total length (formated area and strings)
75 * before decoding to make sure we won't run off the table in
76 * dmi_decode or dmi_string
77 */
1249c513
AP
78 data += dm->length;
79 while ((data - buf < len - 1) && (data[0] || data[1]))
1da177e4 80 data++;
1249c513 81 if (data - buf < len - 1)
1da177e4 82 decode(dm);
1249c513 83 data += 2;
1da177e4
LT
84 i++;
85 }
7fce084a
JD
86}
87
88static u32 dmi_base;
89static u16 dmi_len;
90static u16 dmi_num;
91
92static int __init dmi_walk_early(void (*decode)(const struct dmi_header *))
93{
94 u8 *buf;
95
96 buf = dmi_ioremap(dmi_base, dmi_len);
97 if (buf == NULL)
98 return -1;
99
100 dmi_table(buf, dmi_len, dmi_num, decode);
101
102 dmi_iounmap(buf, dmi_len);
1da177e4
LT
103 return 0;
104}
105
1855256c 106static int __init dmi_checksum(const u8 *buf)
1da177e4 107{
1249c513 108 u8 sum = 0;
1da177e4 109 int a;
4f705ae3 110
1249c513
AP
111 for (a = 0; a < 15; a++)
112 sum += buf[a];
113
114 return sum == 0;
1da177e4
LT
115}
116
1da177e4 117static char *dmi_ident[DMI_STRING_MAX];
ebad6a42 118static LIST_HEAD(dmi_devices);
4f5c791a 119int dmi_available;
1da177e4
LT
120
121/*
122 * Save a DMI string
123 */
1855256c 124static void __init dmi_save_ident(const struct dmi_header *dm, int slot, int string)
1da177e4 125{
1855256c
JG
126 const char *d = (const char*) dm;
127 char *p;
1249c513 128
1da177e4
LT
129 if (dmi_ident[slot])
130 return;
1249c513 131
c3c7120d
AP
132 p = dmi_string(dm, d[string]);
133 if (p == NULL)
134 return;
135
136 dmi_ident[slot] = p;
1da177e4
LT
137}
138
1855256c 139static void __init dmi_save_uuid(const struct dmi_header *dm, int slot, int index)
4f5c791a 140{
1855256c 141 const u8 *d = (u8*) dm + index;
4f5c791a
LP
142 char *s;
143 int is_ff = 1, is_00 = 1, i;
144
145 if (dmi_ident[slot])
146 return;
147
148 for (i = 0; i < 16 && (is_ff || is_00); i++) {
149 if(d[i] != 0x00) is_ff = 0;
150 if(d[i] != 0xFF) is_00 = 0;
151 }
152
153 if (is_ff || is_00)
154 return;
155
156 s = dmi_alloc(16*2+4+1);
157 if (!s)
158 return;
159
160 sprintf(s,
161 "%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
162 d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7],
163 d[8], d[9], d[10], d[11], d[12], d[13], d[14], d[15]);
164
165 dmi_ident[slot] = s;
166}
167
1855256c 168static void __init dmi_save_type(const struct dmi_header *dm, int slot, int index)
4f5c791a 169{
1855256c 170 const u8 *d = (u8*) dm + index;
4f5c791a
LP
171 char *s;
172
173 if (dmi_ident[slot])
174 return;
175
176 s = dmi_alloc(4);
177 if (!s)
178 return;
179
180 sprintf(s, "%u", *d & 0x7F);
181 dmi_ident[slot] = s;
182}
183
f3069ae9
JD
184static void __init dmi_save_one_device(int type, const char *name)
185{
186 struct dmi_device *dev;
187
188 /* No duplicate device */
189 if (dmi_find_device(type, name, NULL))
190 return;
191
192 dev = dmi_alloc(sizeof(*dev) + strlen(name) + 1);
193 if (!dev) {
194 printk(KERN_ERR "dmi_save_one_device: out of memory.\n");
195 return;
196 }
197
198 dev->type = type;
199 strcpy((char *)(dev + 1), name);
200 dev->name = (char *)(dev + 1);
201 dev->device_data = NULL;
202 list_add(&dev->list, &dmi_devices);
203}
204
1855256c 205static void __init dmi_save_devices(const struct dmi_header *dm)
ebad6a42
AP
206{
207 int i, count = (dm->length - sizeof(struct dmi_header)) / 2;
ebad6a42
AP
208
209 for (i = 0; i < count; i++) {
1855256c 210 const char *d = (char *)(dm + 1) + (i * 2);
ebad6a42
AP
211
212 /* Skip disabled device */
213 if ((*d & 0x80) == 0)
214 continue;
215
f3069ae9 216 dmi_save_one_device(*d & 0x7f, dmi_string_nosave(dm, *(d + 1)));
2e0c1f6c
SM
217 }
218}
219
79da4721
PW
220static struct dmi_device empty_oem_string_dev = {
221 .name = dmi_empty_string,
222};
223
1855256c 224static void __init dmi_save_oem_strings_devices(const struct dmi_header *dm)
2e0c1f6c
SM
225{
226 int i, count = *(u8 *)(dm + 1);
227 struct dmi_device *dev;
228
229 for (i = 1; i <= count; i++) {
79da4721
PW
230 char *devname = dmi_string(dm, i);
231
232 if (!strcmp(devname, dmi_empty_string)) {
233 list_add(&empty_oem_string_dev.list, &dmi_devices);
234 continue;
235 }
236
2e0c1f6c
SM
237 dev = dmi_alloc(sizeof(*dev));
238 if (!dev) {
239 printk(KERN_ERR
240 "dmi_save_oem_strings_devices: out of memory.\n");
241 break;
242 }
243
244 dev->type = DMI_DEV_TYPE_OEM_STRING;
79da4721 245 dev->name = devname;
2e0c1f6c 246 dev->device_data = NULL;
ebad6a42
AP
247
248 list_add(&dev->list, &dmi_devices);
249 }
250}
251
1855256c 252static void __init dmi_save_ipmi_device(const struct dmi_header *dm)
ebad6a42
AP
253{
254 struct dmi_device *dev;
255 void * data;
256
e9928674 257 data = dmi_alloc(dm->length);
ebad6a42
AP
258 if (data == NULL) {
259 printk(KERN_ERR "dmi_save_ipmi_device: out of memory.\n");
260 return;
261 }
262
263 memcpy(data, dm, dm->length);
264
e9928674 265 dev = dmi_alloc(sizeof(*dev));
ebad6a42
AP
266 if (!dev) {
267 printk(KERN_ERR "dmi_save_ipmi_device: out of memory.\n");
268 return;
269 }
270
271 dev->type = DMI_DEV_TYPE_IPMI;
272 dev->name = "IPMI controller";
273 dev->device_data = data;
274
275 list_add(&dev->list, &dmi_devices);
276}
277
b4bd7d59
WVS
278static void __init dmi_save_extended_devices(const struct dmi_header *dm)
279{
280 const u8 *d = (u8*) dm + 5;
b4bd7d59
WVS
281
282 /* Skip disabled device */
283 if ((*d & 0x80) == 0)
284 return;
285
f3069ae9 286 dmi_save_one_device(*d & 0x7f, dmi_string_nosave(dm, *(d - 1)));
b4bd7d59
WVS
287}
288
1da177e4
LT
289/*
290 * Process a DMI table entry. Right now all we care about are the BIOS
291 * and machine entries. For 2.5 we should pull the smbus controller info
292 * out of here.
293 */
1855256c 294static void __init dmi_decode(const struct dmi_header *dm)
1da177e4 295{
1249c513 296 switch(dm->type) {
ebad6a42 297 case 0: /* BIOS Information */
1249c513 298 dmi_save_ident(dm, DMI_BIOS_VENDOR, 4);
1249c513 299 dmi_save_ident(dm, DMI_BIOS_VERSION, 5);
1249c513
AP
300 dmi_save_ident(dm, DMI_BIOS_DATE, 8);
301 break;
ebad6a42 302 case 1: /* System Information */
1249c513 303 dmi_save_ident(dm, DMI_SYS_VENDOR, 4);
1249c513 304 dmi_save_ident(dm, DMI_PRODUCT_NAME, 5);
1249c513 305 dmi_save_ident(dm, DMI_PRODUCT_VERSION, 6);
1249c513 306 dmi_save_ident(dm, DMI_PRODUCT_SERIAL, 7);
4f5c791a 307 dmi_save_uuid(dm, DMI_PRODUCT_UUID, 8);
1249c513 308 break;
ebad6a42 309 case 2: /* Base Board Information */
1249c513 310 dmi_save_ident(dm, DMI_BOARD_VENDOR, 4);
1249c513 311 dmi_save_ident(dm, DMI_BOARD_NAME, 5);
1249c513 312 dmi_save_ident(dm, DMI_BOARD_VERSION, 6);
4f5c791a
LP
313 dmi_save_ident(dm, DMI_BOARD_SERIAL, 7);
314 dmi_save_ident(dm, DMI_BOARD_ASSET_TAG, 8);
315 break;
316 case 3: /* Chassis Information */
317 dmi_save_ident(dm, DMI_CHASSIS_VENDOR, 4);
318 dmi_save_type(dm, DMI_CHASSIS_TYPE, 5);
319 dmi_save_ident(dm, DMI_CHASSIS_VERSION, 6);
320 dmi_save_ident(dm, DMI_CHASSIS_SERIAL, 7);
321 dmi_save_ident(dm, DMI_CHASSIS_ASSET_TAG, 8);
1249c513 322 break;
ebad6a42
AP
323 case 10: /* Onboard Devices Information */
324 dmi_save_devices(dm);
325 break;
2e0c1f6c
SM
326 case 11: /* OEM Strings */
327 dmi_save_oem_strings_devices(dm);
328 break;
ebad6a42
AP
329 case 38: /* IPMI Device Information */
330 dmi_save_ipmi_device(dm);
b4bd7d59
WVS
331 break;
332 case 41: /* Onboard Devices Extended Information */
333 dmi_save_extended_devices(dm);
1da177e4
LT
334 }
335}
336
1855256c 337static int __init dmi_present(const char __iomem *p)
1da177e4 338{
61e032fa 339 u8 buf[15];
1855256c 340
3ed3bce8
MD
341 memcpy_fromio(buf, p, 15);
342 if ((memcmp(buf, "_DMI_", 5) == 0) && dmi_checksum(buf)) {
7fce084a
JD
343 dmi_num = (buf[13] << 8) | buf[12];
344 dmi_len = (buf[7] << 8) | buf[6];
345 dmi_base = (buf[11] << 24) | (buf[10] << 16) |
3ed3bce8 346 (buf[9] << 8) | buf[8];
61e032fa 347
3ed3bce8
MD
348 /*
349 * DMI version 0.0 means that the real version is taken from
350 * the SMBIOS version, which we don't know at this point.
351 */
352 if (buf[14] != 0)
353 printk(KERN_INFO "DMI %d.%d present.\n",
354 buf[14] >> 4, buf[14] & 0xF);
355 else
356 printk(KERN_INFO "DMI present.\n");
7fce084a 357 if (dmi_walk_early(dmi_decode) == 0)
3ed3bce8
MD
358 return 0;
359 }
360 return 1;
361}
61e032fa 362
3ed3bce8
MD
363void __init dmi_scan_machine(void)
364{
365 char __iomem *p, *q;
366 int rc;
367
368 if (efi_enabled) {
b2c99e3c 369 if (efi.smbios == EFI_INVALID_TABLE_ADDR)
3ed3bce8
MD
370 goto out;
371
4f5c791a
LP
372 /* This is called as a core_initcall() because it isn't
373 * needed during early boot. This also means we can
374 * iounmap the space when we're done with it.
375 */
b2c99e3c 376 p = dmi_ioremap(efi.smbios, 32);
3ed3bce8
MD
377 if (p == NULL)
378 goto out;
379
380 rc = dmi_present(p + 0x10); /* offset of _DMI_ string */
23dd842c 381 dmi_iounmap(p, 32);
4f5c791a
LP
382 if (!rc) {
383 dmi_available = 1;
3ed3bce8 384 return;
4f5c791a 385 }
3ed3bce8
MD
386 }
387 else {
388 /*
389 * no iounmap() for that ioremap(); it would be a no-op, but
390 * it's so early in setup that sucker gets confused into doing
391 * what it shouldn't if we actually call it.
392 */
393 p = dmi_ioremap(0xF0000, 0x10000);
394 if (p == NULL)
395 goto out;
396
397 for (q = p; q < p + 0x10000; q += 16) {
398 rc = dmi_present(q);
4f5c791a
LP
399 if (!rc) {
400 dmi_available = 1;
0d64484f 401 dmi_iounmap(p, 0x10000);
61e032fa 402 return;
4f5c791a 403 }
61e032fa 404 }
3212bff3 405 dmi_iounmap(p, 0x10000);
61e032fa 406 }
3ed3bce8 407 out: printk(KERN_INFO "DMI not present or invalid.\n");
1da177e4
LT
408}
409
1da177e4
LT
410/**
411 * dmi_check_system - check system DMI data
412 * @list: array of dmi_system_id structures to match against
b0ef371e
RD
413 * All non-null elements of the list must match
414 * their slot's (field index's) data (i.e., each
415 * list string must be a substring of the specified
416 * DMI slot's string data) to be considered a
417 * successful match.
1da177e4
LT
418 *
419 * Walk the blacklist table running matching functions until someone
420 * returns non zero or we hit the end. Callback function is called for
b0ef371e 421 * each successful match. Returns the number of matches.
1da177e4 422 */
1855256c 423int dmi_check_system(const struct dmi_system_id *list)
1da177e4
LT
424{
425 int i, count = 0;
1855256c 426 const struct dmi_system_id *d = list;
1da177e4
LT
427
428 while (d->ident) {
429 for (i = 0; i < ARRAY_SIZE(d->matches); i++) {
430 int s = d->matches[i].slot;
431 if (s == DMI_NONE)
432 continue;
433 if (dmi_ident[s] && strstr(dmi_ident[s], d->matches[i].substr))
434 continue;
435 /* No match */
436 goto fail;
437 }
640e8033 438 count++;
1da177e4
LT
439 if (d->callback && d->callback(d))
440 break;
1da177e4
LT
441fail: d++;
442 }
443
444 return count;
445}
1da177e4
LT
446EXPORT_SYMBOL(dmi_check_system);
447
448/**
449 * dmi_get_system_info - return DMI data value
b0ef371e 450 * @field: data index (see enum dmi_field)
1da177e4
LT
451 *
452 * Returns one DMI data value, can be used to perform
453 * complex DMI data checks.
454 */
1855256c 455const char *dmi_get_system_info(int field)
1da177e4
LT
456{
457 return dmi_ident[field];
458}
e70c9d5e 459EXPORT_SYMBOL(dmi_get_system_info);
ebad6a42 460
a1bae672
AK
461
462/**
463 * dmi_name_in_vendors - Check if string is anywhere in the DMI vendor information.
464 * @str: Case sensitive Name
465 */
1855256c 466int dmi_name_in_vendors(const char *str)
a1bae672
AK
467{
468 static int fields[] = { DMI_BIOS_VENDOR, DMI_BIOS_VERSION, DMI_SYS_VENDOR,
469 DMI_PRODUCT_NAME, DMI_PRODUCT_VERSION, DMI_BOARD_VENDOR,
470 DMI_BOARD_NAME, DMI_BOARD_VERSION, DMI_NONE };
471 int i;
472 for (i = 0; fields[i] != DMI_NONE; i++) {
473 int f = fields[i];
474 if (dmi_ident[f] && strstr(dmi_ident[f], str))
475 return 1;
476 }
477 return 0;
478}
479EXPORT_SYMBOL(dmi_name_in_vendors);
480
ebad6a42
AP
481/**
482 * dmi_find_device - find onboard device by type/name
483 * @type: device type or %DMI_DEV_TYPE_ANY to match all device types
b0ef371e 484 * @name: device name string or %NULL to match all
ebad6a42
AP
485 * @from: previous device found in search, or %NULL for new search.
486 *
487 * Iterates through the list of known onboard devices. If a device is
488 * found with a matching @vendor and @device, a pointer to its device
489 * structure is returned. Otherwise, %NULL is returned.
b0ef371e 490 * A new search is initiated by passing %NULL as the @from argument.
ebad6a42
AP
491 * If @from is not %NULL, searches continue from next device.
492 */
1855256c
JG
493const struct dmi_device * dmi_find_device(int type, const char *name,
494 const struct dmi_device *from)
ebad6a42 495{
1855256c
JG
496 const struct list_head *head = from ? &from->list : &dmi_devices;
497 struct list_head *d;
ebad6a42
AP
498
499 for(d = head->next; d != &dmi_devices; d = d->next) {
1855256c
JG
500 const struct dmi_device *dev =
501 list_entry(d, struct dmi_device, list);
ebad6a42
AP
502
503 if (((type == DMI_DEV_TYPE_ANY) || (dev->type == type)) &&
504 ((name == NULL) || (strcmp(dev->name, name) == 0)))
505 return dev;
506 }
507
508 return NULL;
509}
510EXPORT_SYMBOL(dmi_find_device);
f083a329
AK
511
512/**
513 * dmi_get_year - Return year of a DMI date
514 * @field: data index (like dmi_get_system_info)
515 *
516 * Returns -1 when the field doesn't exist. 0 when it is broken.
517 */
518int dmi_get_year(int field)
519{
520 int year;
1855256c 521 const char *s = dmi_get_system_info(field);
f083a329
AK
522
523 if (!s)
524 return -1;
525 if (*s == '\0')
526 return 0;
527 s = strrchr(s, '/');
528 if (!s)
529 return 0;
530
531 s += 1;
532 year = simple_strtoul(s, NULL, 0);
533 if (year && year < 100) { /* 2-digit year */
534 year += 1900;
535 if (year < 1996) /* no dates < spec 1.0 */
536 year += 100;
537 }
538
539 return year;
540}
7fce084a
JD
541
542/**
543 * dmi_walk - Walk the DMI table and get called back for every record
544 * @decode: Callback function
545 *
546 * Returns -1 when the DMI table can't be reached, 0 on success.
547 */
548int dmi_walk(void (*decode)(const struct dmi_header *))
549{
550 u8 *buf;
551
552 if (!dmi_available)
553 return -1;
554
555 buf = ioremap(dmi_base, dmi_len);
556 if (buf == NULL)
557 return -1;
558
559 dmi_table(buf, dmi_len, dmi_num, decode);
560
561 iounmap(buf);
562 return 0;
563}
564EXPORT_SYMBOL_GPL(dmi_walk);