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> |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 5 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/dmi.h> |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 7 | #include <linux/efi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/bootmem.h> |
Tony Luck | d114a33 | 2012-07-20 13:15:20 -0700 | [diff] [blame] | 9 | #include <linux/random.h> |
Andi Kleen | f2d3efe | 2006-03-25 16:30:22 +0100 | [diff] [blame] | 10 | #include <asm/dmi.h> |
Luck, Tony | 0841c04 | 2013-11-01 13:59:52 -0700 | [diff] [blame] | 11 | #include <asm/unaligned.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
Paul Jackson | cb5dd7c | 2008-05-14 08:15:16 -0700 | [diff] [blame] | 13 | /* |
| 14 | * DMI stands for "Desktop Management Interface". It is part |
| 15 | * of and an antecedent to, SMBIOS, which stands for System |
| 16 | * Management BIOS. See further: http://www.dmtf.org/standards |
| 17 | */ |
Jean Delvare | ffbbb96 | 2013-09-11 14:24:09 -0700 | [diff] [blame] | 18 | static const char dmi_empty_string[] = " "; |
Parag Warudkar | 79da472 | 2008-01-30 13:31:59 +0100 | [diff] [blame] | 19 | |
Zhenzhong Duan | f1d8e61 | 2012-12-20 15:05:13 -0800 | [diff] [blame] | 20 | static u16 __initdata dmi_ver; |
Ingo Molnar | 9a22b6e | 2008-09-18 12:50:18 +0200 | [diff] [blame] | 21 | /* |
| 22 | * Catch too early calls to dmi_check_system(): |
| 23 | */ |
| 24 | static int dmi_initialized; |
| 25 | |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 26 | /* DMI system identification string used during boot */ |
| 27 | static char dmi_ids_string[128] __initdata; |
| 28 | |
Chen, Gong | dd6dad4 | 2013-10-18 14:29:25 -0700 | [diff] [blame] | 29 | static struct dmi_memdev_info { |
| 30 | const char *device; |
| 31 | const char *bank; |
| 32 | u16 handle; |
| 33 | } *dmi_memdev; |
| 34 | static int dmi_memdev_nr; |
| 35 | |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 36 | 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] | 37 | { |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 38 | const u8 *bp = ((u8 *) dm) + dm->length; |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 39 | |
Andrey Panin | c3c7120 | 2005-09-06 15:18:28 -0700 | [diff] [blame] | 40 | if (s) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | s--; |
Andrey Panin | c3c7120 | 2005-09-06 15:18:28 -0700 | [diff] [blame] | 42 | while (s > 0 && *bp) { |
| 43 | bp += strlen(bp) + 1; |
| 44 | s--; |
| 45 | } |
| 46 | |
| 47 | if (*bp != 0) { |
Parag Warudkar | 79da472 | 2008-01-30 13:31:59 +0100 | [diff] [blame] | 48 | size_t len = strlen(bp)+1; |
| 49 | size_t cmp_len = len > 8 ? 8 : len; |
| 50 | |
| 51 | if (!memcmp(bp, dmi_empty_string, cmp_len)) |
| 52 | return dmi_empty_string; |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 53 | return bp; |
Andrey Panin | c3c7120 | 2005-09-06 15:18:28 -0700 | [diff] [blame] | 54 | } |
Bjorn Helgaas | 4f705ae | 2006-04-03 17:09:22 -0700 | [diff] [blame] | 55 | } |
Andrey Panin | c3c7120 | 2005-09-06 15:18:28 -0700 | [diff] [blame] | 56 | |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 57 | return ""; |
| 58 | } |
| 59 | |
Jean Delvare | ffbbb96 | 2013-09-11 14:24:09 -0700 | [diff] [blame] | 60 | static const char * __init dmi_string(const struct dmi_header *dm, u8 s) |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 61 | { |
| 62 | const char *bp = dmi_string_nosave(dm, s); |
| 63 | char *str; |
| 64 | size_t len; |
| 65 | |
| 66 | if (bp == dmi_empty_string) |
| 67 | return dmi_empty_string; |
| 68 | |
| 69 | len = strlen(bp) + 1; |
| 70 | str = dmi_alloc(len); |
| 71 | if (str != NULL) |
| 72 | strcpy(str, bp); |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 73 | |
Andrey Panin | c3c7120 | 2005-09-06 15:18:28 -0700 | [diff] [blame] | 74 | return str; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | /* |
| 78 | * We have to be cautious here. We have seen BIOSes with DMI pointers |
| 79 | * pointing to completely the wrong place for example |
| 80 | */ |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 81 | static void dmi_table(u8 *buf, int len, int num, |
Jean Delvare | e7a19c56 | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 82 | void (*decode)(const struct dmi_header *, void *), |
| 83 | void *private_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 85 | u8 *data = buf; |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 86 | int i = 0; |
Bjorn Helgaas | 4f705ae | 2006-04-03 17:09:22 -0700 | [diff] [blame] | 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | /* |
Bjorn Helgaas | 4f705ae | 2006-04-03 17:09:22 -0700 | [diff] [blame] | 89 | * Stop when we see all the items the table claimed to have |
| 90 | * OR we run off the end of the table (also happens) |
| 91 | */ |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 92 | while ((i < num) && (data - buf + sizeof(struct dmi_header)) <= len) { |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 93 | const struct dmi_header *dm = (const struct dmi_header *)data; |
| 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /* |
Ard Biesheuvel | fc43026 | 2014-10-14 16:41:27 +0200 | [diff] [blame] | 96 | * 7.45 End-of-Table (Type 127) [SMBIOS reference spec v3.0.0] |
| 97 | */ |
| 98 | if (dm->type == DMI_ENTRY_END_OF_TABLE) |
| 99 | break; |
| 100 | |
| 101 | /* |
Alan Cox | 8638545 | 2008-11-07 16:03:46 +0000 | [diff] [blame] | 102 | * We want to know the total length (formatted area and |
| 103 | * strings) before decoding to make sure we won't run off the |
| 104 | * table in dmi_decode or dmi_string |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | */ |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 106 | data += dm->length; |
| 107 | while ((data - buf < len - 1) && (data[0] || data[1])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | data++; |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 109 | if (data - buf < len - 1) |
Jean Delvare | e7a19c56 | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 110 | decode(dm, private_data); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 111 | data += 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | i++; |
| 113 | } |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 114 | } |
| 115 | |
Ard Biesheuvel | fc43026 | 2014-10-14 16:41:27 +0200 | [diff] [blame] | 116 | static phys_addr_t dmi_base; |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 117 | static u16 dmi_len; |
| 118 | static u16 dmi_num; |
| 119 | |
Jean Delvare | e7a19c56 | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 120 | static int __init dmi_walk_early(void (*decode)(const struct dmi_header *, |
| 121 | void *)) |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 122 | { |
| 123 | u8 *buf; |
| 124 | |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 125 | buf = dmi_early_remap(dmi_base, dmi_len); |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 126 | if (buf == NULL) |
| 127 | return -1; |
| 128 | |
Jean Delvare | e7a19c56 | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 129 | dmi_table(buf, dmi_len, dmi_num, decode, NULL); |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 130 | |
Tony Luck | d114a33 | 2012-07-20 13:15:20 -0700 | [diff] [blame] | 131 | add_device_randomness(buf, dmi_len); |
| 132 | |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 133 | dmi_early_unmap(buf, dmi_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | return 0; |
| 135 | } |
| 136 | |
Zhenzhong Duan | 9f9c9cbb | 2012-12-20 15:05:14 -0800 | [diff] [blame] | 137 | static int __init dmi_checksum(const u8 *buf, u8 len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | { |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 139 | u8 sum = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | int a; |
Bjorn Helgaas | 4f705ae | 2006-04-03 17:09:22 -0700 | [diff] [blame] | 141 | |
Zhenzhong Duan | 9f9c9cbb | 2012-12-20 15:05:14 -0800 | [diff] [blame] | 142 | for (a = 0; a < len; a++) |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 143 | sum += buf[a]; |
| 144 | |
| 145 | return sum == 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Jean Delvare | ffbbb96 | 2013-09-11 14:24:09 -0700 | [diff] [blame] | 148 | static const char *dmi_ident[DMI_STRING_MAX]; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 149 | static LIST_HEAD(dmi_devices); |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 150 | int dmi_available; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | /* |
| 153 | * Save a DMI string |
| 154 | */ |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 155 | static void __init dmi_save_ident(const struct dmi_header *dm, int slot, |
| 156 | int string) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 158 | const char *d = (const char *) dm; |
Jean Delvare | ffbbb96 | 2013-09-11 14:24:09 -0700 | [diff] [blame] | 159 | const char *p; |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | if (dmi_ident[slot]) |
| 162 | return; |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 163 | |
Andrey Panin | c3c7120 | 2005-09-06 15:18:28 -0700 | [diff] [blame] | 164 | p = dmi_string(dm, d[string]); |
| 165 | if (p == NULL) |
| 166 | return; |
| 167 | |
| 168 | dmi_ident[slot] = p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 171 | static void __init dmi_save_uuid(const struct dmi_header *dm, int slot, |
| 172 | int index) |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 173 | { |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 174 | const u8 *d = (u8 *) dm + index; |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 175 | char *s; |
| 176 | int is_ff = 1, is_00 = 1, i; |
| 177 | |
| 178 | if (dmi_ident[slot]) |
| 179 | return; |
| 180 | |
| 181 | for (i = 0; i < 16 && (is_ff || is_00); i++) { |
Zhenzhong Duan | f1d8e61 | 2012-12-20 15:05:13 -0800 | [diff] [blame] | 182 | if (d[i] != 0x00) |
| 183 | is_00 = 0; |
| 184 | if (d[i] != 0xFF) |
| 185 | is_ff = 0; |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | if (is_ff || is_00) |
| 189 | return; |
| 190 | |
| 191 | s = dmi_alloc(16*2+4+1); |
| 192 | if (!s) |
| 193 | return; |
| 194 | |
Zhenzhong Duan | f1d8e61 | 2012-12-20 15:05:13 -0800 | [diff] [blame] | 195 | /* |
| 196 | * As of version 2.6 of the SMBIOS specification, the first 3 fields of |
| 197 | * the UUID are supposed to be little-endian encoded. The specification |
| 198 | * says that this is the defacto standard. |
| 199 | */ |
| 200 | if (dmi_ver >= 0x0206) |
| 201 | sprintf(s, "%pUL", d); |
| 202 | else |
| 203 | sprintf(s, "%pUB", d); |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 204 | |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 205 | dmi_ident[slot] = s; |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 206 | } |
| 207 | |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 208 | static void __init dmi_save_type(const struct dmi_header *dm, int slot, |
| 209 | int index) |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 210 | { |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 211 | const u8 *d = (u8 *) dm + index; |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 212 | char *s; |
| 213 | |
| 214 | if (dmi_ident[slot]) |
| 215 | return; |
| 216 | |
| 217 | s = dmi_alloc(4); |
| 218 | if (!s) |
| 219 | return; |
| 220 | |
| 221 | sprintf(s, "%u", *d & 0x7F); |
| 222 | dmi_ident[slot] = s; |
| 223 | } |
| 224 | |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 225 | static void __init dmi_save_one_device(int type, const char *name) |
| 226 | { |
| 227 | struct dmi_device *dev; |
| 228 | |
| 229 | /* No duplicate device */ |
| 230 | if (dmi_find_device(type, name, NULL)) |
| 231 | return; |
| 232 | |
| 233 | dev = dmi_alloc(sizeof(*dev) + strlen(name) + 1); |
Jean Delvare | ae79744 | 2013-09-11 14:24:10 -0700 | [diff] [blame] | 234 | if (!dev) |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 235 | return; |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 236 | |
| 237 | dev->type = type; |
| 238 | strcpy((char *)(dev + 1), name); |
| 239 | dev->name = (char *)(dev + 1); |
| 240 | dev->device_data = NULL; |
| 241 | list_add(&dev->list, &dmi_devices); |
| 242 | } |
| 243 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 244 | static void __init dmi_save_devices(const struct dmi_header *dm) |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 245 | { |
| 246 | int i, count = (dm->length - sizeof(struct dmi_header)) / 2; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 247 | |
| 248 | for (i = 0; i < count; i++) { |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 249 | const char *d = (char *)(dm + 1) + (i * 2); |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 250 | |
| 251 | /* Skip disabled device */ |
| 252 | if ((*d & 0x80) == 0) |
| 253 | continue; |
| 254 | |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 255 | dmi_save_one_device(*d & 0x7f, dmi_string_nosave(dm, *(d + 1))); |
Shem Multinymous | 2e0c1f6 | 2006-09-29 01:59:37 -0700 | [diff] [blame] | 256 | } |
| 257 | } |
| 258 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 259 | 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] | 260 | { |
| 261 | int i, count = *(u8 *)(dm + 1); |
| 262 | struct dmi_device *dev; |
| 263 | |
| 264 | for (i = 1; i <= count; i++) { |
Jean Delvare | ffbbb96 | 2013-09-11 14:24:09 -0700 | [diff] [blame] | 265 | const char *devname = dmi_string(dm, i); |
Parag Warudkar | 79da472 | 2008-01-30 13:31:59 +0100 | [diff] [blame] | 266 | |
Jean Delvare | 43fe105 | 2008-02-23 15:23:55 -0800 | [diff] [blame] | 267 | if (devname == dmi_empty_string) |
Parag Warudkar | 79da472 | 2008-01-30 13:31:59 +0100 | [diff] [blame] | 268 | continue; |
Parag Warudkar | 79da472 | 2008-01-30 13:31:59 +0100 | [diff] [blame] | 269 | |
Shem Multinymous | 2e0c1f6 | 2006-09-29 01:59:37 -0700 | [diff] [blame] | 270 | dev = dmi_alloc(sizeof(*dev)); |
Jean Delvare | ae79744 | 2013-09-11 14:24:10 -0700 | [diff] [blame] | 271 | if (!dev) |
Shem Multinymous | 2e0c1f6 | 2006-09-29 01:59:37 -0700 | [diff] [blame] | 272 | break; |
Shem Multinymous | 2e0c1f6 | 2006-09-29 01:59:37 -0700 | [diff] [blame] | 273 | |
| 274 | dev->type = DMI_DEV_TYPE_OEM_STRING; |
Parag Warudkar | 79da472 | 2008-01-30 13:31:59 +0100 | [diff] [blame] | 275 | dev->name = devname; |
Shem Multinymous | 2e0c1f6 | 2006-09-29 01:59:37 -0700 | [diff] [blame] | 276 | dev->device_data = NULL; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 277 | |
| 278 | list_add(&dev->list, &dmi_devices); |
| 279 | } |
| 280 | } |
| 281 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 282 | static void __init dmi_save_ipmi_device(const struct dmi_header *dm) |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 283 | { |
| 284 | struct dmi_device *dev; |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 285 | void *data; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 286 | |
Andi Kleen | e992867 | 2006-01-11 22:43:33 +0100 | [diff] [blame] | 287 | data = dmi_alloc(dm->length); |
Jean Delvare | ae79744 | 2013-09-11 14:24:10 -0700 | [diff] [blame] | 288 | if (data == NULL) |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 289 | return; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 290 | |
| 291 | memcpy(data, dm, dm->length); |
| 292 | |
Andi Kleen | e992867 | 2006-01-11 22:43:33 +0100 | [diff] [blame] | 293 | dev = dmi_alloc(sizeof(*dev)); |
Jean Delvare | ae79744 | 2013-09-11 14:24:10 -0700 | [diff] [blame] | 294 | if (!dev) |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 295 | return; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 296 | |
| 297 | dev->type = DMI_DEV_TYPE_IPMI; |
| 298 | dev->name = "IPMI controller"; |
| 299 | dev->device_data = data; |
| 300 | |
Carol Hebert | abd24df | 2008-04-04 14:30:03 -0700 | [diff] [blame] | 301 | list_add_tail(&dev->list, &dmi_devices); |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 304 | static void __init dmi_save_dev_onboard(int instance, int segment, int bus, |
| 305 | int devfn, const char *name) |
| 306 | { |
| 307 | struct dmi_dev_onboard *onboard_dev; |
| 308 | |
| 309 | onboard_dev = dmi_alloc(sizeof(*onboard_dev) + strlen(name) + 1); |
Jean Delvare | ae79744 | 2013-09-11 14:24:10 -0700 | [diff] [blame] | 310 | if (!onboard_dev) |
Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 311 | return; |
Jean Delvare | ae79744 | 2013-09-11 14:24:10 -0700 | [diff] [blame] | 312 | |
Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 313 | onboard_dev->instance = instance; |
| 314 | onboard_dev->segment = segment; |
| 315 | onboard_dev->bus = bus; |
| 316 | onboard_dev->devfn = devfn; |
| 317 | |
| 318 | strcpy((char *)&onboard_dev[1], name); |
| 319 | onboard_dev->dev.type = DMI_DEV_TYPE_DEV_ONBOARD; |
| 320 | onboard_dev->dev.name = (char *)&onboard_dev[1]; |
| 321 | onboard_dev->dev.device_data = onboard_dev; |
| 322 | |
| 323 | list_add(&onboard_dev->dev.list, &dmi_devices); |
| 324 | } |
| 325 | |
Wim Van Sebroeck | b4bd7d5 | 2008-02-08 04:20:58 -0800 | [diff] [blame] | 326 | static void __init dmi_save_extended_devices(const struct dmi_header *dm) |
| 327 | { |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 328 | const u8 *d = (u8 *) dm + 5; |
Wim Van Sebroeck | b4bd7d5 | 2008-02-08 04:20:58 -0800 | [diff] [blame] | 329 | |
| 330 | /* Skip disabled device */ |
| 331 | if ((*d & 0x80) == 0) |
| 332 | return; |
| 333 | |
Narendra K | 911e1c9 | 2010-07-26 05:56:50 -0500 | [diff] [blame] | 334 | dmi_save_dev_onboard(*(d+1), *(u16 *)(d+2), *(d+4), *(d+5), |
| 335 | dmi_string_nosave(dm, *(d-1))); |
Jean Delvare | f3069ae | 2008-02-23 15:23:46 -0800 | [diff] [blame] | 336 | 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] | 337 | } |
| 338 | |
Chen, Gong | dd6dad4 | 2013-10-18 14:29:25 -0700 | [diff] [blame] | 339 | static void __init count_mem_devices(const struct dmi_header *dm, void *v) |
| 340 | { |
| 341 | if (dm->type != DMI_ENTRY_MEM_DEVICE) |
| 342 | return; |
| 343 | dmi_memdev_nr++; |
| 344 | } |
| 345 | |
| 346 | static void __init save_mem_devices(const struct dmi_header *dm, void *v) |
| 347 | { |
| 348 | const char *d = (const char *)dm; |
| 349 | static int nr; |
| 350 | |
| 351 | if (dm->type != DMI_ENTRY_MEM_DEVICE) |
| 352 | return; |
| 353 | if (nr >= dmi_memdev_nr) { |
| 354 | pr_warn(FW_BUG "Too many DIMM entries in SMBIOS table\n"); |
| 355 | return; |
| 356 | } |
Luck, Tony | 0841c04 | 2013-11-01 13:59:52 -0700 | [diff] [blame] | 357 | dmi_memdev[nr].handle = get_unaligned(&dm->handle); |
Chen, Gong | dd6dad4 | 2013-10-18 14:29:25 -0700 | [diff] [blame] | 358 | dmi_memdev[nr].device = dmi_string(dm, d[0x10]); |
| 359 | dmi_memdev[nr].bank = dmi_string(dm, d[0x11]); |
| 360 | nr++; |
| 361 | } |
| 362 | |
| 363 | void __init dmi_memdev_walk(void) |
| 364 | { |
| 365 | if (!dmi_available) |
| 366 | return; |
| 367 | |
| 368 | if (dmi_walk_early(count_mem_devices) == 0 && dmi_memdev_nr) { |
| 369 | dmi_memdev = dmi_alloc(sizeof(*dmi_memdev) * dmi_memdev_nr); |
| 370 | if (dmi_memdev) |
| 371 | dmi_walk_early(save_mem_devices); |
| 372 | } |
| 373 | } |
| 374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | * Process a DMI table entry. Right now all we care about are the BIOS |
| 377 | * and machine entries. For 2.5 we should pull the smbus controller info |
| 378 | * out of here. |
| 379 | */ |
Jean Delvare | e7a19c56 | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 380 | static void __init dmi_decode(const struct dmi_header *dm, void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 382 | switch (dm->type) { |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 383 | case 0: /* BIOS Information */ |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 384 | dmi_save_ident(dm, DMI_BIOS_VENDOR, 4); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 385 | dmi_save_ident(dm, DMI_BIOS_VERSION, 5); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 386 | dmi_save_ident(dm, DMI_BIOS_DATE, 8); |
| 387 | break; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 388 | case 1: /* System Information */ |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 389 | dmi_save_ident(dm, DMI_SYS_VENDOR, 4); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 390 | dmi_save_ident(dm, DMI_PRODUCT_NAME, 5); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 391 | dmi_save_ident(dm, DMI_PRODUCT_VERSION, 6); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 392 | dmi_save_ident(dm, DMI_PRODUCT_SERIAL, 7); |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 393 | dmi_save_uuid(dm, DMI_PRODUCT_UUID, 8); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 394 | break; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 395 | case 2: /* Base Board Information */ |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 396 | dmi_save_ident(dm, DMI_BOARD_VENDOR, 4); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 397 | dmi_save_ident(dm, DMI_BOARD_NAME, 5); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 398 | dmi_save_ident(dm, DMI_BOARD_VERSION, 6); |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 399 | dmi_save_ident(dm, DMI_BOARD_SERIAL, 7); |
| 400 | dmi_save_ident(dm, DMI_BOARD_ASSET_TAG, 8); |
| 401 | break; |
| 402 | case 3: /* Chassis Information */ |
| 403 | dmi_save_ident(dm, DMI_CHASSIS_VENDOR, 4); |
| 404 | dmi_save_type(dm, DMI_CHASSIS_TYPE, 5); |
| 405 | dmi_save_ident(dm, DMI_CHASSIS_VERSION, 6); |
| 406 | dmi_save_ident(dm, DMI_CHASSIS_SERIAL, 7); |
| 407 | dmi_save_ident(dm, DMI_CHASSIS_ASSET_TAG, 8); |
Andrey Panin | 1249c51 | 2005-06-25 14:54:47 -0700 | [diff] [blame] | 408 | break; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 409 | case 10: /* Onboard Devices Information */ |
| 410 | dmi_save_devices(dm); |
| 411 | break; |
Shem Multinymous | 2e0c1f6 | 2006-09-29 01:59:37 -0700 | [diff] [blame] | 412 | case 11: /* OEM Strings */ |
| 413 | dmi_save_oem_strings_devices(dm); |
| 414 | break; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 415 | case 38: /* IPMI Device Information */ |
| 416 | dmi_save_ipmi_device(dm); |
Wim Van Sebroeck | b4bd7d5 | 2008-02-08 04:20:58 -0800 | [diff] [blame] | 417 | break; |
| 418 | case 41: /* Onboard Devices Extended Information */ |
| 419 | dmi_save_extended_devices(dm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } |
| 421 | } |
| 422 | |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 423 | static int __init print_filtered(char *buf, size_t len, const char *info) |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 424 | { |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 425 | int c = 0; |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 426 | const char *p; |
| 427 | |
| 428 | if (!info) |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 429 | return c; |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 430 | |
| 431 | for (p = info; *p; p++) |
| 432 | if (isprint(*p)) |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 433 | c += scnprintf(buf + c, len - c, "%c", *p); |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 434 | else |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 435 | c += scnprintf(buf + c, len - c, "\\x%02x", *p & 0xff); |
| 436 | return c; |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 437 | } |
| 438 | |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 439 | static void __init dmi_format_ids(char *buf, size_t len) |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 440 | { |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 441 | int c = 0; |
Naga Chumbalkar | 84e383b | 2011-02-14 22:47:17 +0000 | [diff] [blame] | 442 | const char *board; /* Board Name is optional */ |
| 443 | |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 444 | c += print_filtered(buf + c, len - c, |
| 445 | dmi_get_system_info(DMI_SYS_VENDOR)); |
| 446 | c += scnprintf(buf + c, len - c, " "); |
| 447 | c += print_filtered(buf + c, len - c, |
| 448 | dmi_get_system_info(DMI_PRODUCT_NAME)); |
| 449 | |
Naga Chumbalkar | 84e383b | 2011-02-14 22:47:17 +0000 | [diff] [blame] | 450 | board = dmi_get_system_info(DMI_BOARD_NAME); |
| 451 | if (board) { |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 452 | c += scnprintf(buf + c, len - c, "/"); |
| 453 | c += print_filtered(buf + c, len - c, board); |
Naga Chumbalkar | 84e383b | 2011-02-14 22:47:17 +0000 | [diff] [blame] | 454 | } |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 455 | c += scnprintf(buf + c, len - c, ", BIOS "); |
| 456 | c += print_filtered(buf + c, len - c, |
| 457 | dmi_get_system_info(DMI_BIOS_VERSION)); |
| 458 | c += scnprintf(buf + c, len - c, " "); |
| 459 | c += print_filtered(buf + c, len - c, |
| 460 | dmi_get_system_info(DMI_BIOS_DATE)); |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Ben Hutchings | d39de28 | 2013-07-31 13:53:30 -0700 | [diff] [blame] | 463 | /* |
| 464 | * Check for DMI/SMBIOS headers in the system firmware image. Any |
| 465 | * SMBIOS header must start 16 bytes before the DMI header, so take a |
| 466 | * 32 byte buffer and check for DMI at offset 16 and SMBIOS at offset |
| 467 | * 0. If the DMI header is present, set dmi_ver accordingly (SMBIOS |
| 468 | * takes precedence) and return 0. Otherwise return 1. |
| 469 | */ |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 470 | static int __init dmi_present(const u8 *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | { |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 472 | int smbios_ver; |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 473 | |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 474 | if (memcmp(buf, "_SM_", 4) == 0 && |
| 475 | buf[5] < 32 && dmi_checksum(buf, buf[5])) { |
Ard Biesheuvel | fc43026 | 2014-10-14 16:41:27 +0200 | [diff] [blame] | 476 | smbios_ver = get_unaligned_be16(buf + 6); |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 477 | |
| 478 | /* Some BIOS report weird SMBIOS version, fix that up */ |
| 479 | switch (smbios_ver) { |
| 480 | case 0x021F: |
| 481 | case 0x0221: |
| 482 | pr_debug("SMBIOS version fixup(2.%d->2.%d)\n", |
| 483 | smbios_ver & 0xFF, 3); |
| 484 | smbios_ver = 0x0203; |
| 485 | break; |
| 486 | case 0x0233: |
| 487 | pr_debug("SMBIOS version fixup(2.%d->2.%d)\n", 51, 6); |
| 488 | smbios_ver = 0x0206; |
| 489 | break; |
| 490 | } |
| 491 | } else { |
| 492 | smbios_ver = 0; |
| 493 | } |
| 494 | |
| 495 | buf += 16; |
| 496 | |
| 497 | if (memcmp(buf, "_DMI_", 5) == 0 && dmi_checksum(buf, 15)) { |
Ard Biesheuvel | fc43026 | 2014-10-14 16:41:27 +0200 | [diff] [blame] | 498 | dmi_num = get_unaligned_le16(buf + 12); |
| 499 | dmi_len = get_unaligned_le16(buf + 6); |
| 500 | dmi_base = get_unaligned_le32(buf + 8); |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 501 | |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 502 | if (dmi_walk_early(dmi_decode) == 0) { |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 503 | if (smbios_ver) { |
| 504 | dmi_ver = smbios_ver; |
Zhenzhong Duan | 9f9c9cbb | 2012-12-20 15:05:14 -0800 | [diff] [blame] | 505 | pr_info("SMBIOS %d.%d present.\n", |
| 506 | dmi_ver >> 8, dmi_ver & 0xFF); |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 507 | } else { |
Zhenzhong Duan | 9f9c9cbb | 2012-12-20 15:05:14 -0800 | [diff] [blame] | 508 | dmi_ver = (buf[14] & 0xF0) << 4 | |
| 509 | (buf[14] & 0x0F); |
| 510 | pr_info("Legacy DMI %d.%d present.\n", |
| 511 | dmi_ver >> 8, dmi_ver & 0xFF); |
| 512 | } |
Tejun Heo | c90fe6b | 2013-04-30 15:27:14 -0700 | [diff] [blame] | 513 | dmi_format_ids(dmi_ids_string, sizeof(dmi_ids_string)); |
| 514 | printk(KERN_DEBUG "DMI: %s\n", dmi_ids_string); |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 515 | return 0; |
Bjorn Helgaas | 8881cdc | 2010-10-27 15:32:59 -0700 | [diff] [blame] | 516 | } |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 517 | } |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 518 | |
Ben Hutchings | a40e7cf | 2013-03-08 12:43:32 -0800 | [diff] [blame] | 519 | return 1; |
Zhenzhong Duan | 9f9c9cbb | 2012-12-20 15:05:14 -0800 | [diff] [blame] | 520 | } |
| 521 | |
Ard Biesheuvel | fc43026 | 2014-10-14 16:41:27 +0200 | [diff] [blame] | 522 | /* |
| 523 | * Check for the SMBIOS 3.0 64-bit entry point signature. Unlike the legacy |
| 524 | * 32-bit entry point, there is no embedded DMI header (_DMI_) in here. |
| 525 | */ |
| 526 | static int __init dmi_smbios3_present(const u8 *buf) |
| 527 | { |
| 528 | if (memcmp(buf, "_SM3_", 5) == 0 && |
| 529 | buf[6] < 32 && dmi_checksum(buf, buf[6])) { |
| 530 | dmi_ver = get_unaligned_be16(buf + 7); |
| 531 | dmi_len = get_unaligned_le32(buf + 12); |
| 532 | dmi_base = get_unaligned_le64(buf + 16); |
| 533 | |
| 534 | /* |
| 535 | * The 64-bit SMBIOS 3.0 entry point no longer has a field |
| 536 | * containing the number of structures present in the table. |
| 537 | * Instead, it defines the table size as a maximum size, and |
| 538 | * relies on the end-of-table structure type (#127) to be used |
| 539 | * to signal the end of the table. |
| 540 | * So let's define dmi_num as an upper bound as well: each |
| 541 | * structure has a 4 byte header, so dmi_len / 4 is an upper |
| 542 | * bound for the number of structures in the table. |
| 543 | */ |
| 544 | dmi_num = dmi_len / 4; |
| 545 | |
| 546 | if (dmi_walk_early(dmi_decode) == 0) { |
| 547 | pr_info("SMBIOS %d.%d present.\n", |
| 548 | dmi_ver >> 8, dmi_ver & 0xFF); |
| 549 | dmi_format_ids(dmi_ids_string, sizeof(dmi_ids_string)); |
| 550 | pr_debug("DMI: %s\n", dmi_ids_string); |
| 551 | return 0; |
| 552 | } |
| 553 | } |
| 554 | return 1; |
| 555 | } |
| 556 | |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 557 | void __init dmi_scan_machine(void) |
| 558 | { |
Andrey Panin | 61e032fa | 2005-09-06 15:18:26 -0700 | [diff] [blame] | 559 | char __iomem *p, *q; |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 560 | char buf[32]; |
Andrey Panin | 61e032fa | 2005-09-06 15:18:26 -0700 | [diff] [blame] | 561 | |
Matt Fleming | 83e6818 | 2012-11-14 09:42:35 +0000 | [diff] [blame] | 562 | if (efi_enabled(EFI_CONFIG_TABLES)) { |
Ard Biesheuvel | fc43026 | 2014-10-14 16:41:27 +0200 | [diff] [blame] | 563 | /* |
| 564 | * According to the DMTF SMBIOS reference spec v3.0.0, it is |
| 565 | * allowed to define both the 64-bit entry point (smbios3) and |
| 566 | * the 32-bit entry point (smbios), in which case they should |
| 567 | * either both point to the same SMBIOS structure table, or the |
| 568 | * table pointed to by the 64-bit entry point should contain a |
| 569 | * superset of the table contents pointed to by the 32-bit entry |
| 570 | * point (section 5.2) |
| 571 | * This implies that the 64-bit entry point should have |
| 572 | * precedence if it is defined and supported by the OS. If we |
| 573 | * have the 64-bit entry point, but fail to decode it, fall |
| 574 | * back to the legacy one (if available) |
| 575 | */ |
| 576 | if (efi.smbios3 != EFI_INVALID_TABLE_ADDR) { |
| 577 | p = dmi_early_remap(efi.smbios3, 32); |
| 578 | if (p == NULL) |
| 579 | goto error; |
| 580 | memcpy_fromio(buf, p, 32); |
| 581 | dmi_early_unmap(p, 32); |
| 582 | |
| 583 | if (!dmi_smbios3_present(buf)) { |
| 584 | dmi_available = 1; |
| 585 | goto out; |
| 586 | } |
| 587 | } |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 588 | if (efi.smbios == EFI_INVALID_TABLE_ADDR) |
Ingo Molnar | 9a22b6e | 2008-09-18 12:50:18 +0200 | [diff] [blame] | 589 | goto error; |
Andrey Panin | 61e032fa | 2005-09-06 15:18:26 -0700 | [diff] [blame] | 590 | |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 591 | /* This is called as a core_initcall() because it isn't |
| 592 | * needed during early boot. This also means we can |
| 593 | * iounmap the space when we're done with it. |
| 594 | */ |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 595 | p = dmi_early_remap(efi.smbios, 32); |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 596 | if (p == NULL) |
Ingo Molnar | 9a22b6e | 2008-09-18 12:50:18 +0200 | [diff] [blame] | 597 | goto error; |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 598 | memcpy_fromio(buf, p, 32); |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 599 | dmi_early_unmap(p, 32); |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 600 | |
| 601 | if (!dmi_present(buf)) { |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 602 | dmi_available = 1; |
Ingo Molnar | 9a22b6e | 2008-09-18 12:50:18 +0200 | [diff] [blame] | 603 | goto out; |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 604 | } |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 605 | } else if (IS_ENABLED(CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK)) { |
| 606 | p = dmi_early_remap(0xF0000, 0x10000); |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 607 | if (p == NULL) |
Ingo Molnar | 9a22b6e | 2008-09-18 12:50:18 +0200 | [diff] [blame] | 608 | goto error; |
Andrey Panin | 61e032fa | 2005-09-06 15:18:26 -0700 | [diff] [blame] | 609 | |
Ben Hutchings | d39de28 | 2013-07-31 13:53:30 -0700 | [diff] [blame] | 610 | /* |
| 611 | * Iterate over all possible DMI header addresses q. |
| 612 | * Maintain the 32 bytes around q in buf. On the |
| 613 | * first iteration, substitute zero for the |
| 614 | * out-of-range bytes so there is no chance of falsely |
| 615 | * detecting an SMBIOS header. |
| 616 | */ |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 617 | memset(buf, 0, 16); |
Matt Domsch | 3ed3bce | 2006-03-26 01:37:03 -0800 | [diff] [blame] | 618 | for (q = p; q < p + 0x10000; q += 16) { |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 619 | memcpy_fromio(buf + 16, q, 16); |
Ard Biesheuvel | fc43026 | 2014-10-14 16:41:27 +0200 | [diff] [blame] | 620 | if (!dmi_smbios3_present(buf) || !dmi_present(buf)) { |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 621 | dmi_available = 1; |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 622 | dmi_early_unmap(p, 0x10000); |
Ingo Molnar | 9a22b6e | 2008-09-18 12:50:18 +0200 | [diff] [blame] | 623 | goto out; |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 624 | } |
Ben Hutchings | 79bae42 | 2013-04-30 15:27:46 -0700 | [diff] [blame] | 625 | memcpy(buf, buf + 16, 16); |
Andrey Panin | 61e032fa | 2005-09-06 15:18:26 -0700 | [diff] [blame] | 626 | } |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 627 | dmi_early_unmap(p, 0x10000); |
Andrey Panin | 61e032fa | 2005-09-06 15:18:26 -0700 | [diff] [blame] | 628 | } |
Ingo Molnar | 9a22b6e | 2008-09-18 12:50:18 +0200 | [diff] [blame] | 629 | error: |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 630 | pr_info("DMI not present or invalid.\n"); |
Ingo Molnar | 9a22b6e | 2008-09-18 12:50:18 +0200 | [diff] [blame] | 631 | out: |
| 632 | dmi_initialized = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | } |
| 634 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | /** |
Tejun Heo | 98e5e1b | 2013-04-30 15:27:15 -0700 | [diff] [blame] | 636 | * dmi_set_dump_stack_arch_desc - set arch description for dump_stack() |
| 637 | * |
| 638 | * Invoke dump_stack_set_arch_desc() with DMI system information so that |
| 639 | * DMI identifiers are printed out on task dumps. Arch boot code should |
| 640 | * call this function after dmi_scan_machine() if it wants to print out DMI |
| 641 | * identifiers on task dumps. |
| 642 | */ |
| 643 | void __init dmi_set_dump_stack_arch_desc(void) |
| 644 | { |
| 645 | dump_stack_set_arch_desc("%s", dmi_ids_string); |
| 646 | } |
| 647 | |
| 648 | /** |
Rafael J. Wysocki | d7b1956 | 2009-01-19 20:55:50 +0100 | [diff] [blame] | 649 | * dmi_matches - check if dmi_system_id structure matches system DMI data |
| 650 | * @dmi: pointer to the dmi_system_id structure to check |
| 651 | */ |
| 652 | static bool dmi_matches(const struct dmi_system_id *dmi) |
| 653 | { |
| 654 | int i; |
| 655 | |
| 656 | WARN(!dmi_initialized, KERN_ERR "dmi check: not initialized yet.\n"); |
| 657 | |
| 658 | for (i = 0; i < ARRAY_SIZE(dmi->matches); i++) { |
| 659 | int s = dmi->matches[i].slot; |
| 660 | if (s == DMI_NONE) |
Dmitry Torokhov | 7575750 | 2009-12-04 10:24:19 -0800 | [diff] [blame] | 661 | break; |
Jani Nikula | 5017b28 | 2013-07-03 15:05:02 -0700 | [diff] [blame] | 662 | if (dmi_ident[s]) { |
| 663 | if (!dmi->matches[i].exact_match && |
| 664 | strstr(dmi_ident[s], dmi->matches[i].substr)) |
| 665 | continue; |
| 666 | else if (dmi->matches[i].exact_match && |
| 667 | !strcmp(dmi_ident[s], dmi->matches[i].substr)) |
| 668 | continue; |
| 669 | } |
| 670 | |
Rafael J. Wysocki | d7b1956 | 2009-01-19 20:55:50 +0100 | [diff] [blame] | 671 | /* No match */ |
| 672 | return false; |
| 673 | } |
| 674 | return true; |
| 675 | } |
| 676 | |
| 677 | /** |
Dmitry Torokhov | 7575750 | 2009-12-04 10:24:19 -0800 | [diff] [blame] | 678 | * dmi_is_end_of_table - check for end-of-table marker |
| 679 | * @dmi: pointer to the dmi_system_id structure to check |
| 680 | */ |
| 681 | static bool dmi_is_end_of_table(const struct dmi_system_id *dmi) |
| 682 | { |
| 683 | return dmi->matches[0].slot == DMI_NONE; |
| 684 | } |
| 685 | |
| 686 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | * dmi_check_system - check system DMI data |
| 688 | * @list: array of dmi_system_id structures to match against |
Randy Dunlap | b0ef371 | 2006-06-25 05:49:18 -0700 | [diff] [blame] | 689 | * All non-null elements of the list must match |
| 690 | * their slot's (field index's) data (i.e., each |
| 691 | * list string must be a substring of the specified |
| 692 | * DMI slot's string data) to be considered a |
| 693 | * successful match. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | * |
| 695 | * Walk the blacklist table running matching functions until someone |
| 696 | * 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] | 697 | * each successful match. Returns the number of matches. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | */ |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 699 | int dmi_check_system(const struct dmi_system_id *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | { |
Rafael J. Wysocki | d7b1956 | 2009-01-19 20:55:50 +0100 | [diff] [blame] | 701 | int count = 0; |
| 702 | const struct dmi_system_id *d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
Dmitry Torokhov | 7575750 | 2009-12-04 10:24:19 -0800 | [diff] [blame] | 704 | for (d = list; !dmi_is_end_of_table(d); d++) |
Rafael J. Wysocki | d7b1956 | 2009-01-19 20:55:50 +0100 | [diff] [blame] | 705 | if (dmi_matches(d)) { |
| 706 | count++; |
| 707 | if (d->callback && d->callback(d)) |
| 708 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
| 711 | return count; |
| 712 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | EXPORT_SYMBOL(dmi_check_system); |
| 714 | |
| 715 | /** |
Rafael J. Wysocki | d7b1956 | 2009-01-19 20:55:50 +0100 | [diff] [blame] | 716 | * dmi_first_match - find dmi_system_id structure matching system DMI data |
| 717 | * @list: array of dmi_system_id structures to match against |
| 718 | * All non-null elements of the list must match |
| 719 | * their slot's (field index's) data (i.e., each |
| 720 | * list string must be a substring of the specified |
| 721 | * DMI slot's string data) to be considered a |
| 722 | * successful match. |
| 723 | * |
| 724 | * Walk the blacklist table until the first match is found. Return the |
| 725 | * pointer to the matching entry or NULL if there's no match. |
| 726 | */ |
| 727 | const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *list) |
| 728 | { |
| 729 | const struct dmi_system_id *d; |
| 730 | |
Dmitry Torokhov | 7575750 | 2009-12-04 10:24:19 -0800 | [diff] [blame] | 731 | for (d = list; !dmi_is_end_of_table(d); d++) |
Rafael J. Wysocki | d7b1956 | 2009-01-19 20:55:50 +0100 | [diff] [blame] | 732 | if (dmi_matches(d)) |
| 733 | return d; |
| 734 | |
| 735 | return NULL; |
| 736 | } |
| 737 | EXPORT_SYMBOL(dmi_first_match); |
| 738 | |
| 739 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | * dmi_get_system_info - return DMI data value |
Randy Dunlap | b0ef371 | 2006-06-25 05:49:18 -0700 | [diff] [blame] | 741 | * @field: data index (see enum dmi_field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | * |
| 743 | * Returns one DMI data value, can be used to perform |
| 744 | * complex DMI data checks. |
| 745 | */ |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 746 | const char *dmi_get_system_info(int field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
| 748 | return dmi_ident[field]; |
| 749 | } |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 750 | EXPORT_SYMBOL(dmi_get_system_info); |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 751 | |
Alok Kataria | fd8cd7e | 2008-11-03 15:50:38 -0800 | [diff] [blame] | 752 | /** |
Randy Dunlap | c2bacfc | 2009-01-06 14:41:40 -0800 | [diff] [blame] | 753 | * dmi_name_in_serial - Check if string is in the DMI product serial information |
| 754 | * @str: string to check for |
Alok Kataria | fd8cd7e | 2008-11-03 15:50:38 -0800 | [diff] [blame] | 755 | */ |
| 756 | int dmi_name_in_serial(const char *str) |
| 757 | { |
| 758 | int f = DMI_PRODUCT_SERIAL; |
| 759 | if (dmi_ident[f] && strstr(dmi_ident[f], str)) |
| 760 | return 1; |
| 761 | return 0; |
| 762 | } |
Andi Kleen | a1bae67 | 2006-10-21 18:37:02 +0200 | [diff] [blame] | 763 | |
| 764 | /** |
Jean Delvare | 66e13e6 | 2011-11-15 14:36:09 -0800 | [diff] [blame] | 765 | * dmi_name_in_vendors - Check if string is in the DMI system or board vendor name |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 766 | * @str: Case sensitive Name |
Andi Kleen | a1bae67 | 2006-10-21 18:37:02 +0200 | [diff] [blame] | 767 | */ |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 768 | int dmi_name_in_vendors(const char *str) |
Andi Kleen | a1bae67 | 2006-10-21 18:37:02 +0200 | [diff] [blame] | 769 | { |
Jean Delvare | 66e13e6 | 2011-11-15 14:36:09 -0800 | [diff] [blame] | 770 | static int fields[] = { DMI_SYS_VENDOR, DMI_BOARD_VENDOR, DMI_NONE }; |
Andi Kleen | a1bae67 | 2006-10-21 18:37:02 +0200 | [diff] [blame] | 771 | int i; |
| 772 | for (i = 0; fields[i] != DMI_NONE; i++) { |
| 773 | int f = fields[i]; |
| 774 | if (dmi_ident[f] && strstr(dmi_ident[f], str)) |
| 775 | return 1; |
| 776 | } |
| 777 | return 0; |
| 778 | } |
| 779 | EXPORT_SYMBOL(dmi_name_in_vendors); |
| 780 | |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 781 | /** |
| 782 | * dmi_find_device - find onboard device by type/name |
| 783 | * @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] | 784 | * @name: device name string or %NULL to match all |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 785 | * @from: previous device found in search, or %NULL for new search. |
| 786 | * |
| 787 | * Iterates through the list of known onboard devices. If a device is |
| 788 | * found with a matching @vendor and @device, a pointer to its device |
| 789 | * structure is returned. Otherwise, %NULL is returned. |
Randy Dunlap | b0ef371 | 2006-06-25 05:49:18 -0700 | [diff] [blame] | 790 | * A new search is initiated by passing %NULL as the @from argument. |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 791 | * If @from is not %NULL, searches continue from next device. |
| 792 | */ |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 793 | const struct dmi_device *dmi_find_device(int type, const char *name, |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 794 | const struct dmi_device *from) |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 795 | { |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 796 | const struct list_head *head = from ? &from->list : &dmi_devices; |
| 797 | struct list_head *d; |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 798 | |
Jean Delvare | 02d9c47 | 2013-09-11 14:24:08 -0700 | [diff] [blame] | 799 | for (d = head->next; d != &dmi_devices; d = d->next) { |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 800 | const struct dmi_device *dev = |
| 801 | list_entry(d, struct dmi_device, list); |
Andrey Panin | ebad6a4 | 2005-09-06 15:18:29 -0700 | [diff] [blame] | 802 | |
| 803 | if (((type == DMI_DEV_TYPE_ANY) || (dev->type == type)) && |
| 804 | ((name == NULL) || (strcmp(dev->name, name) == 0))) |
| 805 | return dev; |
| 806 | } |
| 807 | |
| 808 | return NULL; |
| 809 | } |
| 810 | EXPORT_SYMBOL(dmi_find_device); |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 811 | |
| 812 | /** |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 813 | * dmi_get_date - parse a DMI date |
| 814 | * @field: data index (see enum dmi_field) |
| 815 | * @yearp: optional out parameter for the year |
| 816 | * @monthp: optional out parameter for the month |
| 817 | * @dayp: optional out parameter for the day |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 818 | * |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 819 | * The date field is assumed to be in the form resembling |
| 820 | * [mm[/dd]]/yy[yy] and the result is stored in the out |
| 821 | * parameters any or all of which can be omitted. |
| 822 | * |
| 823 | * If the field doesn't exist, all out parameters are set to zero |
| 824 | * and false is returned. Otherwise, true is returned with any |
| 825 | * invalid part of date set to zero. |
| 826 | * |
| 827 | * On return, year, month and day are guaranteed to be in the |
| 828 | * range of [0,9999], [0,12] and [0,31] respectively. |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 829 | */ |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 830 | bool dmi_get_date(int field, int *yearp, int *monthp, int *dayp) |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 831 | { |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 832 | int year = 0, month = 0, day = 0; |
| 833 | bool exists; |
| 834 | const char *s, *y; |
Tejun Heo | 02c24fa | 2009-08-16 21:01:22 +0900 | [diff] [blame] | 835 | char *e; |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 836 | |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 837 | s = dmi_get_system_info(field); |
| 838 | exists = s; |
| 839 | if (!exists) |
| 840 | goto out; |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 841 | |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 842 | /* |
| 843 | * Determine year first. We assume the date string resembles |
| 844 | * mm/dd/yy[yy] but the original code extracted only the year |
| 845 | * from the end. Keep the behavior in the spirit of no |
| 846 | * surprises. |
| 847 | */ |
| 848 | y = strrchr(s, '/'); |
| 849 | if (!y) |
| 850 | goto out; |
| 851 | |
| 852 | y++; |
| 853 | year = simple_strtoul(y, &e, 10); |
| 854 | if (y != e && year < 100) { /* 2-digit year */ |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 855 | year += 1900; |
| 856 | if (year < 1996) /* no dates < spec 1.0 */ |
| 857 | year += 100; |
| 858 | } |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 859 | if (year > 9999) /* year should fit in %04d */ |
| 860 | year = 0; |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 861 | |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 862 | /* parse the mm and dd */ |
| 863 | month = simple_strtoul(s, &e, 10); |
| 864 | if (s == e || *e != '/' || !month || month > 12) { |
| 865 | month = 0; |
| 866 | goto out; |
| 867 | } |
| 868 | |
| 869 | s = e + 1; |
| 870 | day = simple_strtoul(s, &e, 10); |
| 871 | if (s == y || s == e || *e != '/' || day > 31) |
| 872 | day = 0; |
| 873 | out: |
| 874 | if (yearp) |
| 875 | *yearp = year; |
| 876 | if (monthp) |
| 877 | *monthp = month; |
| 878 | if (dayp) |
| 879 | *dayp = day; |
| 880 | return exists; |
Andi Kleen | f083a32 | 2006-03-25 16:30:19 +0100 | [diff] [blame] | 881 | } |
Tejun Heo | 3e5cd1f | 2009-08-16 21:02:36 +0900 | [diff] [blame] | 882 | EXPORT_SYMBOL(dmi_get_date); |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 883 | |
| 884 | /** |
| 885 | * dmi_walk - Walk the DMI table and get called back for every record |
| 886 | * @decode: Callback function |
Jean Delvare | e7a19c56 | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 887 | * @private_data: Private data to be passed to the callback function |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 888 | * |
| 889 | * Returns -1 when the DMI table can't be reached, 0 on success. |
| 890 | */ |
Jean Delvare | e7a19c56 | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 891 | int dmi_walk(void (*decode)(const struct dmi_header *, void *), |
| 892 | void *private_data) |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 893 | { |
| 894 | u8 *buf; |
| 895 | |
| 896 | if (!dmi_available) |
| 897 | return -1; |
| 898 | |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 899 | buf = dmi_remap(dmi_base, dmi_len); |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 900 | if (buf == NULL) |
| 901 | return -1; |
| 902 | |
Jean Delvare | e7a19c56 | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 903 | dmi_table(buf, dmi_len, dmi_num, decode, private_data); |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 904 | |
Ard Biesheuvel | cf07440 | 2014-01-23 15:54:39 -0800 | [diff] [blame] | 905 | dmi_unmap(buf); |
Jean Delvare | 7fce084 | 2007-11-03 17:29:20 +0100 | [diff] [blame] | 906 | return 0; |
| 907 | } |
| 908 | EXPORT_SYMBOL_GPL(dmi_walk); |
Jiri Slaby | d61c72e | 2008-12-10 14:07:21 +0100 | [diff] [blame] | 909 | |
| 910 | /** |
| 911 | * dmi_match - compare a string to the dmi field (if exists) |
Randy Dunlap | c2bacfc | 2009-01-06 14:41:40 -0800 | [diff] [blame] | 912 | * @f: DMI field identifier |
| 913 | * @str: string to compare the DMI field to |
Jiri Slaby | d61c72e | 2008-12-10 14:07:21 +0100 | [diff] [blame] | 914 | * |
| 915 | * Returns true if the requested field equals to the str (including NULL). |
| 916 | */ |
| 917 | bool dmi_match(enum dmi_field f, const char *str) |
| 918 | { |
| 919 | const char *info = dmi_get_system_info(f); |
| 920 | |
| 921 | if (info == NULL || str == NULL) |
| 922 | return info == str; |
| 923 | |
| 924 | return !strcmp(info, str); |
| 925 | } |
| 926 | EXPORT_SYMBOL_GPL(dmi_match); |
Chen, Gong | dd6dad4 | 2013-10-18 14:29:25 -0700 | [diff] [blame] | 927 | |
| 928 | void dmi_memdev_name(u16 handle, const char **bank, const char **device) |
| 929 | { |
| 930 | int n; |
| 931 | |
| 932 | if (dmi_memdev == NULL) |
| 933 | return; |
| 934 | |
| 935 | for (n = 0; n < dmi_memdev_nr; n++) { |
| 936 | if (handle == dmi_memdev[n].handle) { |
| 937 | *bank = dmi_memdev[n].bank; |
| 938 | *device = dmi_memdev[n].device; |
| 939 | break; |
| 940 | } |
| 941 | } |
| 942 | } |
| 943 | EXPORT_SYMBOL_GPL(dmi_memdev_name); |