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