Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / drivers / firmware / dmi_scan.c
1 #include <linux/types.h>
2 #include <linux/string.h>
3 #include <linux/init.h>
4 #include <linux/module.h>
5 #include <linux/dmi.h>
6 #include <linux/efi.h>
7 #include <linux/bootmem.h>
8 #include <linux/slab.h>
9 #include <asm/dmi.h>
10
11 static char * __init dmi_string(struct dmi_header *dm, u8 s)
12 {
13         u8 *bp = ((u8 *) dm) + dm->length;
14         char *str = "";
15
16         if (s) {
17                 s--;
18                 while (s > 0 && *bp) {
19                         bp += strlen(bp) + 1;
20                         s--;
21                 }
22
23                 if (*bp != 0) {
24                         str = dmi_alloc(strlen(bp) + 1);
25                         if (str != NULL)
26                                 strcpy(str, bp);
27                         else
28                                 printk(KERN_ERR "dmi_string: out of memory.\n");
29                 }
30         }
31
32         return str;
33 }
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  */
39 static int __init dmi_table(u32 base, int len, int num,
40                             void (*decode)(struct dmi_header *))
41 {
42         u8 *buf, *data;
43         int i = 0;
44
45         buf = dmi_ioremap(base, len);
46         if (buf == NULL)
47                 return -1;
48
49         data = buf;
50
51         /*
52          *      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          */
55         while ((i < num) && (data - buf + sizeof(struct dmi_header)) <= len) {
56                 struct dmi_header *dm = (struct dmi_header *)data;
57                 /*
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                  */
62                 data += dm->length;
63                 while ((data - buf < len - 1) && (data[0] || data[1]))
64                         data++;
65                 if (data - buf < len - 1)
66                         decode(dm);
67                 data += 2;
68                 i++;
69         }
70         dmi_iounmap(buf, len);
71         return 0;
72 }
73
74 static int __init dmi_checksum(u8 *buf)
75 {
76         u8 sum = 0;
77         int a;
78
79         for (a = 0; a < 15; a++)
80                 sum += buf[a];
81
82         return sum == 0;
83 }
84
85 static char *dmi_ident[DMI_STRING_MAX];
86 static LIST_HEAD(dmi_devices);
87
88 /*
89  *      Save a DMI string
90  */
91 static void __init dmi_save_ident(struct dmi_header *dm, int slot, int string)
92 {
93         char *p, *d = (char*) dm;
94
95         if (dmi_ident[slot])
96                 return;
97
98         p = dmi_string(dm, d[string]);
99         if (p == NULL)
100                 return;
101
102         dmi_ident[slot] = p;
103 }
104
105 static void __init dmi_save_devices(struct dmi_header *dm)
106 {
107         int i, count = (dm->length - sizeof(struct dmi_header)) / 2;
108         struct dmi_device *dev;
109
110         for (i = 0; i < count; i++) {
111                 char *d = (char *)(dm + 1) + (i * 2);
112
113                 /* Skip disabled device */
114                 if ((*d & 0x80) == 0)
115                         continue;
116
117                 dev = dmi_alloc(sizeof(*dev));
118                 if (!dev) {
119                         printk(KERN_ERR "dmi_save_devices: out of memory.\n");
120                         break;
121                 }
122
123                 dev->type = *d++ & 0x7f;
124                 dev->name = dmi_string(dm, *d);
125                 dev->device_data = NULL;
126
127                 list_add(&dev->list, &dmi_devices);
128         }
129 }
130
131 static void __init dmi_save_ipmi_device(struct dmi_header *dm)
132 {
133         struct dmi_device *dev;
134         void * data;
135
136         data = dmi_alloc(dm->length);
137         if (data == NULL) {
138                 printk(KERN_ERR "dmi_save_ipmi_device: out of memory.\n");
139                 return;
140         }
141
142         memcpy(data, dm, dm->length);
143
144         dev = dmi_alloc(sizeof(*dev));
145         if (!dev) {
146                 printk(KERN_ERR "dmi_save_ipmi_device: out of memory.\n");
147                 return;
148         }
149
150         dev->type = DMI_DEV_TYPE_IPMI;
151         dev->name = "IPMI controller";
152         dev->device_data = data;
153
154         list_add(&dev->list, &dmi_devices);
155 }
156
157 int dmi_cpus;
158
159 /*
160  *      Process a DMI table entry. Right now all we care about are the BIOS
161  *      and machine entries. For 2.5 we should pull the smbus controller info
162  *      out of here.
163  */
164 static void __init dmi_decode(struct dmi_header *dm)
165 {
166         switch(dm->type) {
167         case 0:         /* BIOS Information */
168                 dmi_save_ident(dm, DMI_BIOS_VENDOR, 4);
169                 dmi_save_ident(dm, DMI_BIOS_VERSION, 5);
170                 dmi_save_ident(dm, DMI_BIOS_DATE, 8);
171                 break;
172         case 1:         /* System Information */
173                 dmi_save_ident(dm, DMI_SYS_VENDOR, 4);
174                 dmi_save_ident(dm, DMI_PRODUCT_NAME, 5);
175                 dmi_save_ident(dm, DMI_PRODUCT_VERSION, 6);
176                 dmi_save_ident(dm, DMI_PRODUCT_SERIAL, 7);
177                 break;
178         case 2:         /* Base Board Information */
179                 dmi_save_ident(dm, DMI_BOARD_VENDOR, 4);
180                 dmi_save_ident(dm, DMI_BOARD_NAME, 5);
181                 dmi_save_ident(dm, DMI_BOARD_VERSION, 6);
182                 break;
183         case 4:         /* Central Processor */
184                 dmi_cpus++;
185                 break;
186         case 10:        /* Onboard Devices Information */
187                 dmi_save_devices(dm);
188                 break;
189         case 38:        /* IPMI Device Information */
190                 dmi_save_ipmi_device(dm);
191         }
192 }
193
194 static int __init dmi_present(char __iomem *p)
195 {
196         u8 buf[15];
197         memcpy_fromio(buf, p, 15);
198         if ((memcmp(buf, "_DMI_", 5) == 0) && dmi_checksum(buf)) {
199                 u16 num = (buf[13] << 8) | buf[12];
200                 u16 len = (buf[7] << 8) | buf[6];
201                 u32 base = (buf[11] << 24) | (buf[10] << 16) |
202                         (buf[9] << 8) | buf[8];
203
204                 /*
205                  * DMI version 0.0 means that the real version is taken from
206                  * the SMBIOS version, which we don't know at this point.
207                  */
208                 if (buf[14] != 0)
209                         printk(KERN_INFO "DMI %d.%d present.\n",
210                                buf[14] >> 4, buf[14] & 0xF);
211                 else
212                         printk(KERN_INFO "DMI present.\n");
213                 if (dmi_table(base,len, num, dmi_decode) == 0)
214                         return 0;
215         }
216         return 1;
217 }
218
219 void __init dmi_scan_machine(void)
220 {
221         char __iomem *p, *q;
222         int rc;
223
224         if (efi_enabled) {
225                 if (efi.smbios == EFI_INVALID_TABLE_ADDR)
226                         goto out;
227
228                /* This is called as a core_initcall() because it isn't
229                 * needed during early boot.  This also means we can
230                 * iounmap the space when we're done with it.
231                 */
232                 p = dmi_ioremap(efi.smbios, 32);
233                 if (p == NULL)
234                         goto out;
235
236                 rc = dmi_present(p + 0x10); /* offset of _DMI_ string */
237                 dmi_iounmap(p, 32);
238                 if (!rc)
239                         return;
240         }
241         else {
242                 /*
243                  * no iounmap() for that ioremap(); it would be a no-op, but
244                  * it's so early in setup that sucker gets confused into doing
245                  * what it shouldn't if we actually call it.
246                  */
247                 p = dmi_ioremap(0xF0000, 0x10000);
248                 if (p == NULL)
249                         goto out;
250
251                 for (q = p; q < p + 0x10000; q += 16) {
252                         rc = dmi_present(q);
253                         if (!rc)
254                                 return;
255                 }
256         }
257  out:   printk(KERN_INFO "DMI not present or invalid.\n");
258 }
259
260 /**
261  *      dmi_check_system - check system DMI data
262  *      @list: array of dmi_system_id structures to match against
263  *              All non-null elements of the list must match
264  *              their slot's (field index's) data (i.e., each
265  *              list string must be a substring of the specified
266  *              DMI slot's string data) to be considered a
267  *              successful match.
268  *
269  *      Walk the blacklist table running matching functions until someone
270  *      returns non zero or we hit the end. Callback function is called for
271  *      each successful match. Returns the number of matches.
272  */
273 int dmi_check_system(struct dmi_system_id *list)
274 {
275         int i, count = 0;
276         struct dmi_system_id *d = list;
277
278         while (d->ident) {
279                 for (i = 0; i < ARRAY_SIZE(d->matches); i++) {
280                         int s = d->matches[i].slot;
281                         if (s == DMI_NONE)
282                                 continue;
283                         if (dmi_ident[s] && strstr(dmi_ident[s], d->matches[i].substr))
284                                 continue;
285                         /* No match */
286                         goto fail;
287                 }
288                 count++;
289                 if (d->callback && d->callback(d))
290                         break;
291 fail:           d++;
292         }
293
294         return count;
295 }
296 EXPORT_SYMBOL(dmi_check_system);
297
298 /**
299  *      dmi_get_system_info - return DMI data value
300  *      @field: data index (see enum dmi_field)
301  *
302  *      Returns one DMI data value, can be used to perform
303  *      complex DMI data checks.
304  */
305 char *dmi_get_system_info(int field)
306 {
307         return dmi_ident[field];
308 }
309 EXPORT_SYMBOL(dmi_get_system_info);
310
311 /**
312  *      dmi_find_device - find onboard device by type/name
313  *      @type: device type or %DMI_DEV_TYPE_ANY to match all device types
314  *      @name: device name string or %NULL to match all
315  *      @from: previous device found in search, or %NULL for new search.
316  *
317  *      Iterates through the list of known onboard devices. If a device is
318  *      found with a matching @vendor and @device, a pointer to its device
319  *      structure is returned.  Otherwise, %NULL is returned.
320  *      A new search is initiated by passing %NULL as the @from argument.
321  *      If @from is not %NULL, searches continue from next device.
322  */
323 struct dmi_device * dmi_find_device(int type, const char *name,
324                                     struct dmi_device *from)
325 {
326         struct list_head *d, *head = from ? &from->list : &dmi_devices;
327
328         for(d = head->next; d != &dmi_devices; d = d->next) {
329                 struct dmi_device *dev = list_entry(d, struct dmi_device, list);
330
331                 if (((type == DMI_DEV_TYPE_ANY) || (dev->type == type)) &&
332                     ((name == NULL) || (strcmp(dev->name, name) == 0)))
333                         return dev;
334         }
335
336         return NULL;
337 }
338 EXPORT_SYMBOL(dmi_find_device);
339
340 /**
341  *      dmi_get_year - Return year of a DMI date
342  *      @field: data index (like dmi_get_system_info)
343  *
344  *      Returns -1 when the field doesn't exist. 0 when it is broken.
345  */
346 int dmi_get_year(int field)
347 {
348         int year;
349         char *s = dmi_get_system_info(field);
350
351         if (!s)
352                 return -1;
353         if (*s == '\0')
354                 return 0;
355         s = strrchr(s, '/');
356         if (!s)
357                 return 0;
358
359         s += 1;
360         year = simple_strtoul(s, NULL, 0);
361         if (year && year < 100) {       /* 2-digit year */
362                 year += 1900;
363                 if (year < 1996)        /* no dates < spec 1.0 */
364                         year += 100;
365         }
366
367         return year;
368 }