|
25 | 25 | * are deemed to be part of the source code.
|
26 | 26 | *
|
27 | 27 | * Unless specified otherwise, all references are aimed at the "System
|
28 | | - * Management BIOS Reference Specification, Version 3.1.0" document, |
| 28 | + * Management BIOS Reference Specification, Version 3.1.1" document, |
29 | 29 | * available from http://www.dmtf.org/standards/smbios.
|
30 | 30 | *
|
31 | 31 | * Note to contributors:
|
|
75 | 75 | #define out_of_spec "<OUT OF SPEC>"
|
76 | 76 | static const char *bad_index = "<BAD INDEX>";
|
77 | 77 |
|
78 | | -#define SUPPORTED_SMBIOS_VER 0x030100 |
| 78 | +#define SUPPORTED_SMBIOS_VER 0x030101 |
79 | 79 |
|
80 | 80 | #define FLAG_NO_FILE_OFFSET (1 << 0)
|
81 | 81 | #define FLAG_STOP_AT_EOT (1 << 1)
|
@@ -799,6 +799,7 @@ static const char *dmi_processor_family(const struct dmi_header *h, u16 ver)
|
799 | 799 | { 0x68, "Opteron X2000" },
|
800 | 800 | { 0x69, "Opteron A-Series" },
|
801 | 801 | { 0x6A, "Opteron X3000" },
|
| 802 | + { 0x6B, "Zen" }, |
802 | 803 |
|
803 | 804 | { 0x70, "Hobbit" },
|
804 | 805 |
|
@@ -1092,7 +1093,7 @@ static void dmi_processor_id(const struct dmi_header *h, const char *prefix)
|
1092 | 1093 | || type == 0x1F /* AMD */
|
1093 | 1094 | || (type >= 0x38 && type <= 0x3F) /* AMD */
|
1094 | 1095 | || (type >= 0x46 && type <= 0x4F) /* AMD */
|
1095 | | - || (type >= 0x66 && type <= 0x6A) /* AMD */ |
| 1096 | + || (type >= 0x66 && type <= 0x6B) /* AMD */ |
1096 | 1097 | || (type >= 0x83 && type <= 0x8F) /* AMD */
|
1097 | 1098 | || (type >= 0xB6 && type <= 0xB7) /* AMD */
|
1098 | 1099 | || (type >= 0xE4 && type <= 0xEF)) /* AMD */
|
@@ -1267,10 +1268,11 @@ static const char *dmi_processor_upgrade(u8 code)
|
1267 | 1268 | "Socket BGA1440",
|
1268 | 1269 | "Socket BGA1515",
|
1269 | 1270 | "Socket LGA3647-1",
|
1270 | | - "Socket SP3" /* 0x37 */ |
| 1271 | + "Socket SP3", |
| 1272 | + "Socket SP3r2" /* 0x38 */ |
1271 | 1273 | };
|
1272 | 1274 |
|
1273 | | - if (code >= 0x01 && code <= 0x37) |
| 1275 | + if (code >= 0x01 && code <= 0x38) |
1274 | 1276 | return upgrade[code - 0x01];
|
1275 | 1277 | return out_of_spec;
|
1276 | 1278 | }
|
|
0 commit comments