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