blob: 0b24a114100951a53f0e4b8094ceb5798e44a26e [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
Parag Warudkar79da4722008-01-30 13:31:59 +010011static char dmi_empty_string[] = " ";
12
Jeff Garzik18552562007-10-03 15:15:40 -040013static char * __init dmi_string(const struct dmi_header *dm, u8 s)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014{
Jeff Garzik18552562007-10-03 15:15:40 -040015 const u8 *bp = ((u8 *) dm) + dm->length;
Andrey Paninc3c71202005-09-06 15:18:28 -070016 char *str = "";
Andrey Panin1249c512005-06-25 14:54:47 -070017
Andrey Paninc3c71202005-09-06 15:18:28 -070018 if (s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 s--;
Andrey Paninc3c71202005-09-06 15:18:28 -070020 while (s > 0 && *bp) {
21 bp += strlen(bp) + 1;
22 s--;
23 }
24
25 if (*bp != 0) {
Parag Warudkar79da4722008-01-30 13:31:59 +010026 size_t len = strlen(bp)+1;
27 size_t cmp_len = len > 8 ? 8 : len;
28
29 if (!memcmp(bp, dmi_empty_string, cmp_len))
30 return dmi_empty_string;
31 str = dmi_alloc(len);
Andrey Paninc3c71202005-09-06 15:18:28 -070032 if (str != NULL)
33 strcpy(str, bp);
34 else
Parag Warudkar79da4722008-01-30 13:31:59 +010035 printk(KERN_ERR "dmi_string: cannot allocate %Zu bytes.\n", len);
Andrey Paninc3c71202005-09-06 15:18:28 -070036 }
Bjorn Helgaas4f705ae2006-04-03 17:09:22 -070037 }
Andrey Paninc3c71202005-09-06 15:18:28 -070038
39 return str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
42/*
43 * We have to be cautious here. We have seen BIOSes with DMI pointers
44 * pointing to completely the wrong place for example
45 */
Andrey Panin1249c512005-06-25 14:54:47 -070046static int __init dmi_table(u32 base, int len, int num,
Jeff Garzik18552562007-10-03 15:15:40 -040047 void (*decode)(const struct dmi_header *))
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Andrey Panin1249c512005-06-25 14:54:47 -070049 u8 *buf, *data;
50 int i = 0;
Bjorn Helgaas4f705ae2006-04-03 17:09:22 -070051
Andi Kleene9928672006-01-11 22:43:33 +010052 buf = dmi_ioremap(base, len);
Andrey Panin1249c512005-06-25 14:54:47 -070053 if (buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return -1;
55
56 data = buf;
57
58 /*
Bjorn Helgaas4f705ae2006-04-03 17:09:22 -070059 * Stop when we see all the items the table claimed to have
60 * OR we run off the end of the table (also happens)
61 */
Andrey Panin1249c512005-06-25 14:54:47 -070062 while ((i < num) && (data - buf + sizeof(struct dmi_header)) <= len) {
Jeff Garzik18552562007-10-03 15:15:40 -040063 const struct dmi_header *dm = (const struct dmi_header *)data;
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 /*
66 * We want to know the total length (formated area and strings)
67 * before decoding to make sure we won't run off the table in
68 * dmi_decode or dmi_string
69 */
Andrey Panin1249c512005-06-25 14:54:47 -070070 data += dm->length;
71 while ((data - buf < len - 1) && (data[0] || data[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 data++;
Andrey Panin1249c512005-06-25 14:54:47 -070073 if (data - buf < len - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 decode(dm);
Andrey Panin1249c512005-06-25 14:54:47 -070075 data += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 i++;
77 }
Andi Kleene9928672006-01-11 22:43:33 +010078 dmi_iounmap(buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return 0;
80}
81
Jeff Garzik18552562007-10-03 15:15:40 -040082static int __init dmi_checksum(const u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Andrey Panin1249c512005-06-25 14:54:47 -070084 u8 sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 int a;
Bjorn Helgaas4f705ae2006-04-03 17:09:22 -070086
Andrey Panin1249c512005-06-25 14:54:47 -070087 for (a = 0; a < 15; a++)
88 sum += buf[a];
89
90 return sum == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static char *dmi_ident[DMI_STRING_MAX];
Andrey Paninebad6a42005-09-06 15:18:29 -070094static LIST_HEAD(dmi_devices);
Lennart Poettering4f5c7912007-05-08 22:07:02 +020095int dmi_available;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/*
98 * Save a DMI string
99 */
Jeff Garzik18552562007-10-03 15:15:40 -0400100static void __init dmi_save_ident(const struct dmi_header *dm, int slot, int string)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Jeff Garzik18552562007-10-03 15:15:40 -0400102 const char *d = (const char*) dm;
103 char *p;
Andrey Panin1249c512005-06-25 14:54:47 -0700104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (dmi_ident[slot])
106 return;
Andrey Panin1249c512005-06-25 14:54:47 -0700107
Andrey Paninc3c71202005-09-06 15:18:28 -0700108 p = dmi_string(dm, d[string]);
109 if (p == NULL)
110 return;
111
112 dmi_ident[slot] = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Jeff Garzik18552562007-10-03 15:15:40 -0400115static void __init dmi_save_uuid(const struct dmi_header *dm, int slot, int index)
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200116{
Jeff Garzik18552562007-10-03 15:15:40 -0400117 const u8 *d = (u8*) dm + index;
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200118 char *s;
119 int is_ff = 1, is_00 = 1, i;
120
121 if (dmi_ident[slot])
122 return;
123
124 for (i = 0; i < 16 && (is_ff || is_00); i++) {
125 if(d[i] != 0x00) is_ff = 0;
126 if(d[i] != 0xFF) is_00 = 0;
127 }
128
129 if (is_ff || is_00)
130 return;
131
132 s = dmi_alloc(16*2+4+1);
133 if (!s)
134 return;
135
136 sprintf(s,
137 "%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
138 d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7],
139 d[8], d[9], d[10], d[11], d[12], d[13], d[14], d[15]);
140
141 dmi_ident[slot] = s;
142}
143
Jeff Garzik18552562007-10-03 15:15:40 -0400144static void __init dmi_save_type(const struct dmi_header *dm, int slot, int index)
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200145{
Jeff Garzik18552562007-10-03 15:15:40 -0400146 const u8 *d = (u8*) dm + index;
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200147 char *s;
148
149 if (dmi_ident[slot])
150 return;
151
152 s = dmi_alloc(4);
153 if (!s)
154 return;
155
156 sprintf(s, "%u", *d & 0x7F);
157 dmi_ident[slot] = s;
158}
159
Jeff Garzik18552562007-10-03 15:15:40 -0400160static void __init dmi_save_devices(const struct dmi_header *dm)
Andrey Paninebad6a42005-09-06 15:18:29 -0700161{
162 int i, count = (dm->length - sizeof(struct dmi_header)) / 2;
163 struct dmi_device *dev;
164
165 for (i = 0; i < count; i++) {
Jeff Garzik18552562007-10-03 15:15:40 -0400166 const char *d = (char *)(dm + 1) + (i * 2);
Andrey Paninebad6a42005-09-06 15:18:29 -0700167
168 /* Skip disabled device */
169 if ((*d & 0x80) == 0)
170 continue;
171
Andi Kleene9928672006-01-11 22:43:33 +0100172 dev = dmi_alloc(sizeof(*dev));
Andrey Paninebad6a42005-09-06 15:18:29 -0700173 if (!dev) {
174 printk(KERN_ERR "dmi_save_devices: out of memory.\n");
175 break;
176 }
177
178 dev->type = *d++ & 0x7f;
179 dev->name = dmi_string(dm, *d);
180 dev->device_data = NULL;
Shem Multinymous2e0c1f62006-09-29 01:59:37 -0700181 list_add(&dev->list, &dmi_devices);
182 }
183}
184
Parag Warudkar79da4722008-01-30 13:31:59 +0100185static struct dmi_device empty_oem_string_dev = {
186 .name = dmi_empty_string,
187};
188
Jeff Garzik18552562007-10-03 15:15:40 -0400189static void __init dmi_save_oem_strings_devices(const struct dmi_header *dm)
Shem Multinymous2e0c1f62006-09-29 01:59:37 -0700190{
191 int i, count = *(u8 *)(dm + 1);
192 struct dmi_device *dev;
193
194 for (i = 1; i <= count; i++) {
Parag Warudkar79da4722008-01-30 13:31:59 +0100195 char *devname = dmi_string(dm, i);
196
197 if (!strcmp(devname, dmi_empty_string)) {
198 list_add(&empty_oem_string_dev.list, &dmi_devices);
199 continue;
200 }
201
Shem Multinymous2e0c1f62006-09-29 01:59:37 -0700202 dev = dmi_alloc(sizeof(*dev));
203 if (!dev) {
204 printk(KERN_ERR
205 "dmi_save_oem_strings_devices: out of memory.\n");
206 break;
207 }
208
209 dev->type = DMI_DEV_TYPE_OEM_STRING;
Parag Warudkar79da4722008-01-30 13:31:59 +0100210 dev->name = devname;
Shem Multinymous2e0c1f62006-09-29 01:59:37 -0700211 dev->device_data = NULL;
Andrey Paninebad6a42005-09-06 15:18:29 -0700212
213 list_add(&dev->list, &dmi_devices);
214 }
215}
216
Jeff Garzik18552562007-10-03 15:15:40 -0400217static void __init dmi_save_ipmi_device(const struct dmi_header *dm)
Andrey Paninebad6a42005-09-06 15:18:29 -0700218{
219 struct dmi_device *dev;
220 void * data;
221
Andi Kleene9928672006-01-11 22:43:33 +0100222 data = dmi_alloc(dm->length);
Andrey Paninebad6a42005-09-06 15:18:29 -0700223 if (data == NULL) {
224 printk(KERN_ERR "dmi_save_ipmi_device: out of memory.\n");
225 return;
226 }
227
228 memcpy(data, dm, dm->length);
229
Andi Kleene9928672006-01-11 22:43:33 +0100230 dev = dmi_alloc(sizeof(*dev));
Andrey Paninebad6a42005-09-06 15:18:29 -0700231 if (!dev) {
232 printk(KERN_ERR "dmi_save_ipmi_device: out of memory.\n");
233 return;
234 }
235
236 dev->type = DMI_DEV_TYPE_IPMI;
237 dev->name = "IPMI controller";
238 dev->device_data = data;
239
240 list_add(&dev->list, &dmi_devices);
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 * Process a DMI table entry. Right now all we care about are the BIOS
245 * and machine entries. For 2.5 we should pull the smbus controller info
246 * out of here.
247 */
Jeff Garzik18552562007-10-03 15:15:40 -0400248static void __init dmi_decode(const struct dmi_header *dm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Andrey Panin1249c512005-06-25 14:54:47 -0700250 switch(dm->type) {
Andrey Paninebad6a42005-09-06 15:18:29 -0700251 case 0: /* BIOS Information */
Andrey Panin1249c512005-06-25 14:54:47 -0700252 dmi_save_ident(dm, DMI_BIOS_VENDOR, 4);
Andrey Panin1249c512005-06-25 14:54:47 -0700253 dmi_save_ident(dm, DMI_BIOS_VERSION, 5);
Andrey Panin1249c512005-06-25 14:54:47 -0700254 dmi_save_ident(dm, DMI_BIOS_DATE, 8);
255 break;
Andrey Paninebad6a42005-09-06 15:18:29 -0700256 case 1: /* System Information */
Andrey Panin1249c512005-06-25 14:54:47 -0700257 dmi_save_ident(dm, DMI_SYS_VENDOR, 4);
Andrey Panin1249c512005-06-25 14:54:47 -0700258 dmi_save_ident(dm, DMI_PRODUCT_NAME, 5);
Andrey Panin1249c512005-06-25 14:54:47 -0700259 dmi_save_ident(dm, DMI_PRODUCT_VERSION, 6);
Andrey Panin1249c512005-06-25 14:54:47 -0700260 dmi_save_ident(dm, DMI_PRODUCT_SERIAL, 7);
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200261 dmi_save_uuid(dm, DMI_PRODUCT_UUID, 8);
Andrey Panin1249c512005-06-25 14:54:47 -0700262 break;
Andrey Paninebad6a42005-09-06 15:18:29 -0700263 case 2: /* Base Board Information */
Andrey Panin1249c512005-06-25 14:54:47 -0700264 dmi_save_ident(dm, DMI_BOARD_VENDOR, 4);
Andrey Panin1249c512005-06-25 14:54:47 -0700265 dmi_save_ident(dm, DMI_BOARD_NAME, 5);
Andrey Panin1249c512005-06-25 14:54:47 -0700266 dmi_save_ident(dm, DMI_BOARD_VERSION, 6);
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200267 dmi_save_ident(dm, DMI_BOARD_SERIAL, 7);
268 dmi_save_ident(dm, DMI_BOARD_ASSET_TAG, 8);
269 break;
270 case 3: /* Chassis Information */
271 dmi_save_ident(dm, DMI_CHASSIS_VENDOR, 4);
272 dmi_save_type(dm, DMI_CHASSIS_TYPE, 5);
273 dmi_save_ident(dm, DMI_CHASSIS_VERSION, 6);
274 dmi_save_ident(dm, DMI_CHASSIS_SERIAL, 7);
275 dmi_save_ident(dm, DMI_CHASSIS_ASSET_TAG, 8);
Andrey Panin1249c512005-06-25 14:54:47 -0700276 break;
Andrey Paninebad6a42005-09-06 15:18:29 -0700277 case 10: /* Onboard Devices Information */
278 dmi_save_devices(dm);
279 break;
Shem Multinymous2e0c1f62006-09-29 01:59:37 -0700280 case 11: /* OEM Strings */
281 dmi_save_oem_strings_devices(dm);
282 break;
Andrey Paninebad6a42005-09-06 15:18:29 -0700283 case 38: /* IPMI Device Information */
284 dmi_save_ipmi_device(dm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286}
287
Jeff Garzik18552562007-10-03 15:15:40 -0400288static int __init dmi_present(const char __iomem *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Andrey Panin61e032fa2005-09-06 15:18:26 -0700290 u8 buf[15];
Jeff Garzik18552562007-10-03 15:15:40 -0400291
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800292 memcpy_fromio(buf, p, 15);
293 if ((memcmp(buf, "_DMI_", 5) == 0) && dmi_checksum(buf)) {
294 u16 num = (buf[13] << 8) | buf[12];
295 u16 len = (buf[7] << 8) | buf[6];
296 u32 base = (buf[11] << 24) | (buf[10] << 16) |
297 (buf[9] << 8) | buf[8];
298
299 /*
300 * DMI version 0.0 means that the real version is taken from
301 * the SMBIOS version, which we don't know at this point.
302 */
303 if (buf[14] != 0)
304 printk(KERN_INFO "DMI %d.%d present.\n",
305 buf[14] >> 4, buf[14] & 0xF);
306 else
307 printk(KERN_INFO "DMI present.\n");
308 if (dmi_table(base,len, num, dmi_decode) == 0)
309 return 0;
310 }
311 return 1;
312}
313
314void __init dmi_scan_machine(void)
315{
Andrey Panin61e032fa2005-09-06 15:18:26 -0700316 char __iomem *p, *q;
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800317 int rc;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700318
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800319 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800320 if (efi.smbios == EFI_INVALID_TABLE_ADDR)
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800321 goto out;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700322
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200323 /* This is called as a core_initcall() because it isn't
324 * needed during early boot. This also means we can
325 * iounmap the space when we're done with it.
326 */
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800327 p = dmi_ioremap(efi.smbios, 32);
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800328 if (p == NULL)
329 goto out;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700330
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800331 rc = dmi_present(p + 0x10); /* offset of _DMI_ string */
Tolentino, Matthew E23dd8422006-03-26 01:37:09 -0800332 dmi_iounmap(p, 32);
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200333 if (!rc) {
334 dmi_available = 1;
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800335 return;
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200336 }
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800337 }
338 else {
339 /*
340 * no iounmap() for that ioremap(); it would be a no-op, but
341 * it's so early in setup that sucker gets confused into doing
342 * what it shouldn't if we actually call it.
343 */
344 p = dmi_ioremap(0xF0000, 0x10000);
345 if (p == NULL)
346 goto out;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700347
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800348 for (q = p; q < p + 0x10000; q += 16) {
349 rc = dmi_present(q);
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200350 if (!rc) {
351 dmi_available = 1;
Andrey Panin61e032fa2005-09-06 15:18:26 -0700352 return;
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200353 }
Andrey Panin61e032fa2005-09-06 15:18:26 -0700354 }
355 }
Matt Domsch3ed3bce2006-03-26 01:37:03 -0800356 out: printk(KERN_INFO "DMI not present or invalid.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359/**
360 * dmi_check_system - check system DMI data
361 * @list: array of dmi_system_id structures to match against
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700362 * All non-null elements of the list must match
363 * their slot's (field index's) data (i.e., each
364 * list string must be a substring of the specified
365 * DMI slot's string data) to be considered a
366 * successful match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
368 * Walk the blacklist table running matching functions until someone
369 * returns non zero or we hit the end. Callback function is called for
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700370 * each successful match. Returns the number of matches.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 */
Jeff Garzik18552562007-10-03 15:15:40 -0400372int dmi_check_system(const struct dmi_system_id *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 int i, count = 0;
Jeff Garzik18552562007-10-03 15:15:40 -0400375 const struct dmi_system_id *d = list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 while (d->ident) {
378 for (i = 0; i < ARRAY_SIZE(d->matches); i++) {
379 int s = d->matches[i].slot;
380 if (s == DMI_NONE)
381 continue;
382 if (dmi_ident[s] && strstr(dmi_ident[s], d->matches[i].substr))
383 continue;
384 /* No match */
385 goto fail;
386 }
Robert Love640e8032005-09-06 15:18:30 -0700387 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (d->callback && d->callback(d))
389 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390fail: d++;
391 }
392
393 return count;
394}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395EXPORT_SYMBOL(dmi_check_system);
396
397/**
398 * dmi_get_system_info - return DMI data value
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700399 * @field: data index (see enum dmi_field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 *
401 * Returns one DMI data value, can be used to perform
402 * complex DMI data checks.
403 */
Jeff Garzik18552562007-10-03 15:15:40 -0400404const char *dmi_get_system_info(int field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 return dmi_ident[field];
407}
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700408EXPORT_SYMBOL(dmi_get_system_info);
Andrey Paninebad6a42005-09-06 15:18:29 -0700409
Andi Kleena1bae672006-10-21 18:37:02 +0200410
411/**
412 * dmi_name_in_vendors - Check if string is anywhere in the DMI vendor information.
413 * @str: Case sensitive Name
414 */
Jeff Garzik18552562007-10-03 15:15:40 -0400415int dmi_name_in_vendors(const char *str)
Andi Kleena1bae672006-10-21 18:37:02 +0200416{
417 static int fields[] = { DMI_BIOS_VENDOR, DMI_BIOS_VERSION, DMI_SYS_VENDOR,
418 DMI_PRODUCT_NAME, DMI_PRODUCT_VERSION, DMI_BOARD_VENDOR,
419 DMI_BOARD_NAME, DMI_BOARD_VERSION, DMI_NONE };
420 int i;
421 for (i = 0; fields[i] != DMI_NONE; i++) {
422 int f = fields[i];
423 if (dmi_ident[f] && strstr(dmi_ident[f], str))
424 return 1;
425 }
426 return 0;
427}
428EXPORT_SYMBOL(dmi_name_in_vendors);
429
Andrey Paninebad6a42005-09-06 15:18:29 -0700430/**
431 * dmi_find_device - find onboard device by type/name
432 * @type: device type or %DMI_DEV_TYPE_ANY to match all device types
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700433 * @name: device name string or %NULL to match all
Andrey Paninebad6a42005-09-06 15:18:29 -0700434 * @from: previous device found in search, or %NULL for new search.
435 *
436 * Iterates through the list of known onboard devices. If a device is
437 * found with a matching @vendor and @device, a pointer to its device
438 * structure is returned. Otherwise, %NULL is returned.
Randy Dunlapb0ef3712006-06-25 05:49:18 -0700439 * A new search is initiated by passing %NULL as the @from argument.
Andrey Paninebad6a42005-09-06 15:18:29 -0700440 * If @from is not %NULL, searches continue from next device.
441 */
Jeff Garzik18552562007-10-03 15:15:40 -0400442const struct dmi_device * dmi_find_device(int type, const char *name,
443 const struct dmi_device *from)
Andrey Paninebad6a42005-09-06 15:18:29 -0700444{
Jeff Garzik18552562007-10-03 15:15:40 -0400445 const struct list_head *head = from ? &from->list : &dmi_devices;
446 struct list_head *d;
Andrey Paninebad6a42005-09-06 15:18:29 -0700447
448 for(d = head->next; d != &dmi_devices; d = d->next) {
Jeff Garzik18552562007-10-03 15:15:40 -0400449 const struct dmi_device *dev =
450 list_entry(d, struct dmi_device, list);
Andrey Paninebad6a42005-09-06 15:18:29 -0700451
452 if (((type == DMI_DEV_TYPE_ANY) || (dev->type == type)) &&
453 ((name == NULL) || (strcmp(dev->name, name) == 0)))
454 return dev;
455 }
456
457 return NULL;
458}
459EXPORT_SYMBOL(dmi_find_device);
Andi Kleenf083a322006-03-25 16:30:19 +0100460
461/**
462 * dmi_get_year - Return year of a DMI date
463 * @field: data index (like dmi_get_system_info)
464 *
465 * Returns -1 when the field doesn't exist. 0 when it is broken.
466 */
467int dmi_get_year(int field)
468{
469 int year;
Jeff Garzik18552562007-10-03 15:15:40 -0400470 const char *s = dmi_get_system_info(field);
Andi Kleenf083a322006-03-25 16:30:19 +0100471
472 if (!s)
473 return -1;
474 if (*s == '\0')
475 return 0;
476 s = strrchr(s, '/');
477 if (!s)
478 return 0;
479
480 s += 1;
481 year = simple_strtoul(s, NULL, 0);
482 if (year && year < 100) { /* 2-digit year */
483 year += 1900;
484 if (year < 1996) /* no dates < spec 1.0 */
485 year += 100;
486 }
487
488 return year;
489}
Lennart Poettering4f5c7912007-05-08 22:07:02 +0200490
Len Brownf89e3b02008-01-23 16:36:45 -0500491/**
492 * dmi_get_slot - return dmi_ident[slot]
493 * @slot: index into dmi_ident[]
494 */
495char *dmi_get_slot(int slot)
496{
497 return(dmi_ident[slot]);
498}