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