|
10 | 10 | * that group keep the CPUID for the variants sorted by model number. |
11 | 11 | * |
12 | 12 | * The defined symbol names have the following form: |
13 | | - * INTEL_FAM6{OPTFAMILY}_{MICROARCH}{OPTDIFF} |
| 13 | + * INTEL_{OPTFAMILY}_{MICROARCH}{OPTDIFF} |
14 | 14 | * where: |
15 | 15 | * OPTFAMILY Describes the family of CPUs that this belongs to. Default |
16 | 16 | * is assumed to be "_CORE" (and should be omitted). Other values |
|
42 | 42 |
|
43 | 43 | #define IFM(_fam, _model) VFM_MAKE(X86_VENDOR_INTEL, _fam, _model) |
44 | 44 |
|
45 | | -/* Wildcard match for FAM6 so X86_MATCH_INTEL_FAM6_MODEL(ANY) works */ |
46 | | -#define INTEL_FAM6_ANY X86_MODEL_ANY |
47 | | -/* Wildcard match for FAM6 so X86_MATCH_VFM(ANY) works */ |
| 45 | +/* Wildcard match so X86_MATCH_VFM(ANY) works */ |
48 | 46 | #define INTEL_ANY IFM(X86_FAMILY_ANY, X86_MODEL_ANY) |
49 | 47 |
|
50 | 48 | #define INTEL_PENTIUM_PRO IFM(6, 0x01) |
51 | 49 |
|
52 | | -#define INTEL_FAM6_CORE_YONAH 0x0E |
53 | 50 | #define INTEL_CORE_YONAH IFM(6, 0x0E) |
54 | 51 |
|
55 | | -#define INTEL_FAM6_CORE2_MEROM 0x0F |
56 | 52 | #define INTEL_CORE2_MEROM IFM(6, 0x0F) |
57 | | -#define INTEL_FAM6_CORE2_MEROM_L 0x16 |
58 | 53 | #define INTEL_CORE2_MEROM_L IFM(6, 0x16) |
59 | | -#define INTEL_FAM6_CORE2_PENRYN 0x17 |
60 | 54 | #define INTEL_CORE2_PENRYN IFM(6, 0x17) |
61 | | -#define INTEL_FAM6_CORE2_DUNNINGTON 0x1D |
62 | 55 | #define INTEL_CORE2_DUNNINGTON IFM(6, 0x1D) |
63 | 56 |
|
64 | | -#define INTEL_FAM6_NEHALEM 0x1E |
65 | 57 | #define INTEL_NEHALEM IFM(6, 0x1E) |
66 | | -#define INTEL_FAM6_NEHALEM_G 0x1F /* Auburndale / Havendale */ |
67 | 58 | #define INTEL_NEHALEM_G IFM(6, 0x1F) /* Auburndale / Havendale */ |
68 | | -#define INTEL_FAM6_NEHALEM_EP 0x1A |
69 | 59 | #define INTEL_NEHALEM_EP IFM(6, 0x1A) |
70 | | -#define INTEL_FAM6_NEHALEM_EX 0x2E |
71 | 60 | #define INTEL_NEHALEM_EX IFM(6, 0x2E) |
72 | 61 |
|
73 | | -#define INTEL_FAM6_WESTMERE 0x25 |
74 | 62 | #define INTEL_WESTMERE IFM(6, 0x25) |
75 | | -#define INTEL_FAM6_WESTMERE_EP 0x2C |
76 | 63 | #define INTEL_WESTMERE_EP IFM(6, 0x2C) |
77 | | -#define INTEL_FAM6_WESTMERE_EX 0x2F |
78 | 64 | #define INTEL_WESTMERE_EX IFM(6, 0x2F) |
79 | 65 |
|
80 | | -#define INTEL_FAM6_SANDYBRIDGE 0x2A |
81 | 66 | #define INTEL_SANDYBRIDGE IFM(6, 0x2A) |
82 | | -#define INTEL_FAM6_SANDYBRIDGE_X 0x2D |
83 | 67 | #define INTEL_SANDYBRIDGE_X IFM(6, 0x2D) |
84 | | -#define INTEL_FAM6_IVYBRIDGE 0x3A |
85 | 68 | #define INTEL_IVYBRIDGE IFM(6, 0x3A) |
86 | | -#define INTEL_FAM6_IVYBRIDGE_X 0x3E |
87 | 69 | #define INTEL_IVYBRIDGE_X IFM(6, 0x3E) |
88 | 70 |
|
89 | | -#define INTEL_FAM6_HASWELL 0x3C |
90 | 71 | #define INTEL_HASWELL IFM(6, 0x3C) |
91 | | -#define INTEL_FAM6_HASWELL_X 0x3F |
92 | 72 | #define INTEL_HASWELL_X IFM(6, 0x3F) |
93 | | -#define INTEL_FAM6_HASWELL_L 0x45 |
94 | 73 | #define INTEL_HASWELL_L IFM(6, 0x45) |
95 | | -#define INTEL_FAM6_HASWELL_G 0x46 |
96 | 74 | #define INTEL_HASWELL_G IFM(6, 0x46) |
97 | 75 |
|
98 | | -#define INTEL_FAM6_BROADWELL 0x3D |
99 | 76 | #define INTEL_BROADWELL IFM(6, 0x3D) |
100 | | -#define INTEL_FAM6_BROADWELL_G 0x47 |
101 | 77 | #define INTEL_BROADWELL_G IFM(6, 0x47) |
102 | | -#define INTEL_FAM6_BROADWELL_X 0x4F |
103 | 78 | #define INTEL_BROADWELL_X IFM(6, 0x4F) |
104 | | -#define INTEL_FAM6_BROADWELL_D 0x56 |
105 | 79 | #define INTEL_BROADWELL_D IFM(6, 0x56) |
106 | 80 |
|
107 | | -#define INTEL_FAM6_SKYLAKE_L 0x4E /* Sky Lake */ |
108 | 81 | #define INTEL_SKYLAKE_L IFM(6, 0x4E) /* Sky Lake */ |
109 | | -#define INTEL_FAM6_SKYLAKE 0x5E /* Sky Lake */ |
110 | 82 | #define INTEL_SKYLAKE IFM(6, 0x5E) /* Sky Lake */ |
111 | | -#define INTEL_FAM6_SKYLAKE_X 0x55 /* Sky Lake */ |
112 | 83 | #define INTEL_SKYLAKE_X IFM(6, 0x55) /* Sky Lake */ |
113 | 84 | /* CASCADELAKE_X 0x55 Sky Lake -- s: 7 */ |
114 | 85 | /* COOPERLAKE_X 0x55 Sky Lake -- s: 11 */ |
115 | 86 |
|
116 | | -#define INTEL_FAM6_KABYLAKE_L 0x8E /* Sky Lake */ |
117 | 87 | #define INTEL_KABYLAKE_L IFM(6, 0x8E) /* Sky Lake */ |
118 | 88 | /* AMBERLAKE_L 0x8E Sky Lake -- s: 9 */ |
119 | 89 | /* COFFEELAKE_L 0x8E Sky Lake -- s: 10 */ |
120 | 90 | /* WHISKEYLAKE_L 0x8E Sky Lake -- s: 11,12 */ |
121 | 91 |
|
122 | | -#define INTEL_FAM6_KABYLAKE 0x9E /* Sky Lake */ |
123 | 92 | #define INTEL_KABYLAKE IFM(6, 0x9E) /* Sky Lake */ |
124 | 93 | /* COFFEELAKE 0x9E Sky Lake -- s: 10-13 */ |
125 | 94 |
|
126 | | -#define INTEL_FAM6_COMETLAKE 0xA5 /* Sky Lake */ |
127 | 95 | #define INTEL_COMETLAKE IFM(6, 0xA5) /* Sky Lake */ |
128 | | -#define INTEL_FAM6_COMETLAKE_L 0xA6 /* Sky Lake */ |
129 | 96 | #define INTEL_COMETLAKE_L IFM(6, 0xA6) /* Sky Lake */ |
130 | 97 |
|
131 | | -#define INTEL_FAM6_CANNONLAKE_L 0x66 /* Palm Cove */ |
132 | 98 | #define INTEL_CANNONLAKE_L IFM(6, 0x66) /* Palm Cove */ |
133 | 99 |
|
134 | | -#define INTEL_FAM6_ICELAKE_X 0x6A /* Sunny Cove */ |
135 | 100 | #define INTEL_ICELAKE_X IFM(6, 0x6A) /* Sunny Cove */ |
136 | | -#define INTEL_FAM6_ICELAKE_D 0x6C /* Sunny Cove */ |
137 | 101 | #define INTEL_ICELAKE_D IFM(6, 0x6C) /* Sunny Cove */ |
138 | | -#define INTEL_FAM6_ICELAKE 0x7D /* Sunny Cove */ |
139 | 102 | #define INTEL_ICELAKE IFM(6, 0x7D) /* Sunny Cove */ |
140 | | -#define INTEL_FAM6_ICELAKE_L 0x7E /* Sunny Cove */ |
141 | 103 | #define INTEL_ICELAKE_L IFM(6, 0x7E) /* Sunny Cove */ |
142 | | -#define INTEL_FAM6_ICELAKE_NNPI 0x9D /* Sunny Cove */ |
143 | 104 | #define INTEL_ICELAKE_NNPI IFM(6, 0x9D) /* Sunny Cove */ |
144 | 105 |
|
145 | | -#define INTEL_FAM6_ROCKETLAKE 0xA7 /* Cypress Cove */ |
146 | 106 | #define INTEL_ROCKETLAKE IFM(6, 0xA7) /* Cypress Cove */ |
147 | 107 |
|
148 | | -#define INTEL_FAM6_TIGERLAKE_L 0x8C /* Willow Cove */ |
149 | 108 | #define INTEL_TIGERLAKE_L IFM(6, 0x8C) /* Willow Cove */ |
150 | | -#define INTEL_FAM6_TIGERLAKE 0x8D /* Willow Cove */ |
151 | 109 | #define INTEL_TIGERLAKE IFM(6, 0x8D) /* Willow Cove */ |
152 | 110 |
|
153 | | -#define INTEL_FAM6_SAPPHIRERAPIDS_X 0x8F /* Golden Cove */ |
154 | 111 | #define INTEL_SAPPHIRERAPIDS_X IFM(6, 0x8F) /* Golden Cove */ |
155 | 112 |
|
156 | | -#define INTEL_FAM6_EMERALDRAPIDS_X 0xCF |
157 | 113 | #define INTEL_EMERALDRAPIDS_X IFM(6, 0xCF) |
158 | 114 |
|
159 | | -#define INTEL_FAM6_GRANITERAPIDS_X 0xAD |
160 | 115 | #define INTEL_GRANITERAPIDS_X IFM(6, 0xAD) |
161 | | -#define INTEL_FAM6_GRANITERAPIDS_D 0xAE |
162 | 116 | #define INTEL_GRANITERAPIDS_D IFM(6, 0xAE) |
163 | 117 |
|
164 | 118 | /* "Hybrid" Processors (P-Core/E-Core) */ |
165 | 119 |
|
166 | | -#define INTEL_FAM6_LAKEFIELD 0x8A /* Sunny Cove / Tremont */ |
167 | 120 | #define INTEL_LAKEFIELD IFM(6, 0x8A) /* Sunny Cove / Tremont */ |
168 | 121 |
|
169 | | -#define INTEL_FAM6_ALDERLAKE 0x97 /* Golden Cove / Gracemont */ |
170 | 122 | #define INTEL_ALDERLAKE IFM(6, 0x97) /* Golden Cove / Gracemont */ |
171 | | -#define INTEL_FAM6_ALDERLAKE_L 0x9A /* Golden Cove / Gracemont */ |
172 | 123 | #define INTEL_ALDERLAKE_L IFM(6, 0x9A) /* Golden Cove / Gracemont */ |
173 | 124 |
|
174 | | -#define INTEL_FAM6_RAPTORLAKE 0xB7 /* Raptor Cove / Enhanced Gracemont */ |
175 | 125 | #define INTEL_RAPTORLAKE IFM(6, 0xB7) /* Raptor Cove / Enhanced Gracemont */ |
176 | | -#define INTEL_FAM6_RAPTORLAKE_P 0xBA |
177 | 126 | #define INTEL_RAPTORLAKE_P IFM(6, 0xBA) |
178 | | -#define INTEL_FAM6_RAPTORLAKE_S 0xBF |
179 | 127 | #define INTEL_RAPTORLAKE_S IFM(6, 0xBF) |
180 | 128 |
|
181 | | -#define INTEL_FAM6_METEORLAKE 0xAC |
182 | 129 | #define INTEL_METEORLAKE IFM(6, 0xAC) |
183 | | -#define INTEL_FAM6_METEORLAKE_L 0xAA |
184 | 130 | #define INTEL_METEORLAKE_L IFM(6, 0xAA) |
185 | 131 |
|
186 | | -#define INTEL_FAM6_ARROWLAKE_H 0xC5 |
187 | 132 | #define INTEL_ARROWLAKE_H IFM(6, 0xC5) |
188 | | -#define INTEL_FAM6_ARROWLAKE 0xC6 |
189 | 133 | #define INTEL_ARROWLAKE IFM(6, 0xC6) |
190 | | -#define INTEL_FAM6_ARROWLAKE_U 0xB5 |
191 | 134 | #define INTEL_ARROWLAKE_U IFM(6, 0xB5) |
192 | 135 |
|
193 | | -#define INTEL_FAM6_LUNARLAKE_M 0xBD |
194 | 136 | #define INTEL_LUNARLAKE_M IFM(6, 0xBD) |
195 | 137 |
|
196 | 138 | /* "Small Core" Processors (Atom/E-Core) */ |
197 | 139 |
|
198 | | -#define INTEL_FAM6_ATOM_BONNELL 0x1C /* Diamondville, Pineview */ |
199 | 140 | #define INTEL_ATOM_BONNELL IFM(6, 0x1C) /* Diamondville, Pineview */ |
200 | | -#define INTEL_FAM6_ATOM_BONNELL_MID 0x26 /* Silverthorne, Lincroft */ |
201 | 141 | #define INTEL_ATOM_BONNELL_MID IFM(6, 0x26) /* Silverthorne, Lincroft */ |
202 | 142 |
|
203 | | -#define INTEL_FAM6_ATOM_SALTWELL 0x36 /* Cedarview */ |
204 | 143 | #define INTEL_ATOM_SALTWELL IFM(6, 0x36) /* Cedarview */ |
205 | | -#define INTEL_FAM6_ATOM_SALTWELL_MID 0x27 /* Penwell */ |
206 | 144 | #define INTEL_ATOM_SALTWELL_MID IFM(6, 0x27) /* Penwell */ |
207 | | -#define INTEL_FAM6_ATOM_SALTWELL_TABLET 0x35 /* Cloverview */ |
208 | 145 | #define INTEL_ATOM_SALTWELL_TABLET IFM(6, 0x35) /* Cloverview */ |
209 | 146 |
|
210 | | -#define INTEL_FAM6_ATOM_SILVERMONT 0x37 /* Bay Trail, Valleyview */ |
211 | 147 | #define INTEL_ATOM_SILVERMONT IFM(6, 0x37) /* Bay Trail, Valleyview */ |
212 | | -#define INTEL_FAM6_ATOM_SILVERMONT_D 0x4D /* Avaton, Rangely */ |
213 | 148 | #define INTEL_ATOM_SILVERMONT_D IFM(6, 0x4D) /* Avaton, Rangely */ |
214 | | -#define INTEL_FAM6_ATOM_SILVERMONT_MID 0x4A /* Merriefield */ |
215 | 149 | #define INTEL_ATOM_SILVERMONT_MID IFM(6, 0x4A) /* Merriefield */ |
216 | 150 |
|
217 | | -#define INTEL_FAM6_ATOM_AIRMONT 0x4C /* Cherry Trail, Braswell */ |
218 | 151 | #define INTEL_ATOM_AIRMONT IFM(6, 0x4C) /* Cherry Trail, Braswell */ |
219 | | -#define INTEL_FAM6_ATOM_AIRMONT_MID 0x5A /* Moorefield */ |
220 | 152 | #define INTEL_ATOM_AIRMONT_MID IFM(6, 0x5A) /* Moorefield */ |
221 | | -#define INTEL_FAM6_ATOM_AIRMONT_NP 0x75 /* Lightning Mountain */ |
222 | 153 | #define INTEL_ATOM_AIRMONT_NP IFM(6, 0x75) /* Lightning Mountain */ |
223 | 154 |
|
224 | | -#define INTEL_FAM6_ATOM_GOLDMONT 0x5C /* Apollo Lake */ |
225 | 155 | #define INTEL_ATOM_GOLDMONT IFM(6, 0x5C) /* Apollo Lake */ |
226 | | -#define INTEL_FAM6_ATOM_GOLDMONT_D 0x5F /* Denverton */ |
227 | 156 | #define INTEL_ATOM_GOLDMONT_D IFM(6, 0x5F) /* Denverton */ |
228 | 157 |
|
229 | 158 | /* Note: the micro-architecture is "Goldmont Plus" */ |
230 | | -#define INTEL_FAM6_ATOM_GOLDMONT_PLUS 0x7A /* Gemini Lake */ |
231 | 159 | #define INTEL_ATOM_GOLDMONT_PLUS IFM(6, 0x7A) /* Gemini Lake */ |
232 | 160 |
|
233 | | -#define INTEL_FAM6_ATOM_TREMONT_D 0x86 /* Jacobsville */ |
234 | 161 | #define INTEL_ATOM_TREMONT_D IFM(6, 0x86) /* Jacobsville */ |
235 | | -#define INTEL_FAM6_ATOM_TREMONT 0x96 /* Elkhart Lake */ |
236 | 162 | #define INTEL_ATOM_TREMONT IFM(6, 0x96) /* Elkhart Lake */ |
237 | | -#define INTEL_FAM6_ATOM_TREMONT_L 0x9C /* Jasper Lake */ |
238 | 163 | #define INTEL_ATOM_TREMONT_L IFM(6, 0x9C) /* Jasper Lake */ |
239 | 164 |
|
240 | | -#define INTEL_FAM6_ATOM_GRACEMONT 0xBE /* Alderlake N */ |
241 | 165 | #define INTEL_ATOM_GRACEMONT IFM(6, 0xBE) /* Alderlake N */ |
242 | 166 |
|
243 | | -#define INTEL_FAM6_ATOM_CRESTMONT_X 0xAF /* Sierra Forest */ |
244 | 167 | #define INTEL_ATOM_CRESTMONT_X IFM(6, 0xAF) /* Sierra Forest */ |
245 | | -#define INTEL_FAM6_ATOM_CRESTMONT 0xB6 /* Grand Ridge */ |
246 | 168 | #define INTEL_ATOM_CRESTMONT IFM(6, 0xB6) /* Grand Ridge */ |
247 | 169 |
|
248 | | -#define INTEL_FAM6_ATOM_DARKMONT_X 0xDD /* Clearwater Forest */ |
249 | 170 | #define INTEL_ATOM_DARKMONT_X IFM(6, 0xDD) /* Clearwater Forest */ |
250 | 171 |
|
251 | 172 | /* Xeon Phi */ |
252 | 173 |
|
253 | | -#define INTEL_FAM6_XEON_PHI_KNL 0x57 /* Knights Landing */ |
254 | 174 | #define INTEL_XEON_PHI_KNL IFM(6, 0x57) /* Knights Landing */ |
255 | | -#define INTEL_FAM6_XEON_PHI_KNM 0x85 /* Knights Mill */ |
256 | 175 | #define INTEL_XEON_PHI_KNM IFM(6, 0x85) /* Knights Mill */ |
257 | 176 |
|
258 | 177 | /* Family 5 */ |
|
0 commit comments