Skip to content

Commit f055b62

Browse files
aeglbp3tk0v
authored andcommitted
x86/cpu/vfm: Update arch/x86/include/asm/intel-family.h
New CPU #defines encode vendor and family as well as model. Update the example usage comment in arch/x86/kernel/cpu/match.c Signed-off-by: Tony Luck <[email protected]> Signed-off-by: Borislav Petkov (AMD) <[email protected]> Reviewed-by: Thomas Gleixner <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent e6dfdc2 commit f055b62

File tree

2 files changed

+85
-2
lines changed

2 files changed

+85
-2
lines changed

arch/x86/include/asm/intel-family.h

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,137 +40,221 @@
4040
* their own names :-(
4141
*/
4242

43+
#define IFM(_fam, _model) VFM_MAKE(X86_VENDOR_INTEL, _fam, _model)
44+
4345
/* Wildcard match for FAM6 so X86_MATCH_INTEL_FAM6_MODEL(ANY) works */
4446
#define INTEL_FAM6_ANY X86_MODEL_ANY
47+
/* Wildcard match for FAM6 so X86_MATCH_VFM(ANY) works */
48+
#define INTEL_ANY IFM(X86_FAMILY_ANY, X86_MODEL_ANY)
4549

4650
#define INTEL_FAM6_CORE_YONAH 0x0E
51+
#define INTEL_CORE_YONAH IFM(6, 0x0E)
4752

4853
#define INTEL_FAM6_CORE2_MEROM 0x0F
54+
#define INTEL_CORE2_MEROM IFM(6, 0x0F)
4955
#define INTEL_FAM6_CORE2_MEROM_L 0x16
56+
#define INTEL_CORE2_MEROM_L IFM(6, 0x16)
5057
#define INTEL_FAM6_CORE2_PENRYN 0x17
58+
#define INTEL_CORE2_PENRYN IFM(6, 0x17)
5159
#define INTEL_FAM6_CORE2_DUNNINGTON 0x1D
60+
#define INTEL_CORE2_DUNNINGTON IFM(6, 0x1D)
5261

5362
#define INTEL_FAM6_NEHALEM 0x1E
63+
#define INTEL_NEHALEM IFM(6, 0x1E)
5464
#define INTEL_FAM6_NEHALEM_G 0x1F /* Auburndale / Havendale */
65+
#define INTEL_NEHALEM_G IFM(6, 0x1F) /* Auburndale / Havendale */
5566
#define INTEL_FAM6_NEHALEM_EP 0x1A
67+
#define INTEL_NEHALEM_EP IFM(6, 0x1A)
5668
#define INTEL_FAM6_NEHALEM_EX 0x2E
69+
#define INTEL_NEHALEM_EX IFM(6, 0x2E)
5770

5871
#define INTEL_FAM6_WESTMERE 0x25
72+
#define INTEL_WESTMERE IFM(6, 0x25)
5973
#define INTEL_FAM6_WESTMERE_EP 0x2C
74+
#define INTEL_WESTMERE_EP IFM(6, 0x2C)
6075
#define INTEL_FAM6_WESTMERE_EX 0x2F
76+
#define INTEL_WESTMERE_EX IFM(6, 0x2F)
6177

6278
#define INTEL_FAM6_SANDYBRIDGE 0x2A
79+
#define INTEL_SANDYBRIDGE IFM(6, 0x2A)
6380
#define INTEL_FAM6_SANDYBRIDGE_X 0x2D
81+
#define INTEL_SANDYBRIDGE_X IFM(6, 0x2D)
6482
#define INTEL_FAM6_IVYBRIDGE 0x3A
83+
#define INTEL_IVYBRIDGE IFM(6, 0x3A)
6584
#define INTEL_FAM6_IVYBRIDGE_X 0x3E
85+
#define INTEL_IVYBRIDGE_X IFM(6, 0x3E)
6686

6787
#define INTEL_FAM6_HASWELL 0x3C
88+
#define INTEL_HASWELL IFM(6, 0x3C)
6889
#define INTEL_FAM6_HASWELL_X 0x3F
90+
#define INTEL_HASWELL_X IFM(6, 0x3F)
6991
#define INTEL_FAM6_HASWELL_L 0x45
92+
#define INTEL_HASWELL_L IFM(6, 0x45)
7093
#define INTEL_FAM6_HASWELL_G 0x46
94+
#define INTEL_HASWELL_G IFM(6, 0x46)
7195

7296
#define INTEL_FAM6_BROADWELL 0x3D
97+
#define INTEL_BROADWELL IFM(6, 0x3D)
7398
#define INTEL_FAM6_BROADWELL_G 0x47
99+
#define INTEL_BROADWELL_G IFM(6, 0x47)
74100
#define INTEL_FAM6_BROADWELL_X 0x4F
101+
#define INTEL_BROADWELL_X IFM(6, 0x4F)
75102
#define INTEL_FAM6_BROADWELL_D 0x56
103+
#define INTEL_BROADWELL_D IFM(6, 0x56)
76104

77105
#define INTEL_FAM6_SKYLAKE_L 0x4E /* Sky Lake */
106+
#define INTEL_SKYLAKE_L IFM(6, 0x4E) /* Sky Lake */
78107
#define INTEL_FAM6_SKYLAKE 0x5E /* Sky Lake */
108+
#define INTEL_SKYLAKE IFM(6, 0x5E) /* Sky Lake */
79109
#define INTEL_FAM6_SKYLAKE_X 0x55 /* Sky Lake */
110+
#define INTEL_SKYLAKE_X IFM(6, 0x55) /* Sky Lake */
80111
/* CASCADELAKE_X 0x55 Sky Lake -- s: 7 */
81112
/* COOPERLAKE_X 0x55 Sky Lake -- s: 11 */
82113

83114
#define INTEL_FAM6_KABYLAKE_L 0x8E /* Sky Lake */
115+
#define INTEL_KABYLAKE_L IFM(6, 0x8E) /* Sky Lake */
84116
/* AMBERLAKE_L 0x8E Sky Lake -- s: 9 */
85117
/* COFFEELAKE_L 0x8E Sky Lake -- s: 10 */
86118
/* WHISKEYLAKE_L 0x8E Sky Lake -- s: 11,12 */
87119

88120
#define INTEL_FAM6_KABYLAKE 0x9E /* Sky Lake */
121+
#define INTEL_KABYLAKE IFM(6, 0x9E) /* Sky Lake */
89122
/* COFFEELAKE 0x9E Sky Lake -- s: 10-13 */
90123

91124
#define INTEL_FAM6_COMETLAKE 0xA5 /* Sky Lake */
125+
#define INTEL_COMETLAKE IFM(6, 0xA5) /* Sky Lake */
92126
#define INTEL_FAM6_COMETLAKE_L 0xA6 /* Sky Lake */
127+
#define INTEL_COMETLAKE_L IFM(6, 0xA6) /* Sky Lake */
93128

94129
#define INTEL_FAM6_CANNONLAKE_L 0x66 /* Palm Cove */
130+
#define INTEL_CANNONLAKE_L IFM(6, 0x66) /* Palm Cove */
95131

96132
#define INTEL_FAM6_ICELAKE_X 0x6A /* Sunny Cove */
133+
#define INTEL_ICELAKE_X IFM(6, 0x6A) /* Sunny Cove */
97134
#define INTEL_FAM6_ICELAKE_D 0x6C /* Sunny Cove */
135+
#define INTEL_ICELAKE_D IFM(6, 0x6C) /* Sunny Cove */
98136
#define INTEL_FAM6_ICELAKE 0x7D /* Sunny Cove */
137+
#define INTEL_ICELAKE IFM(6, 0x7D) /* Sunny Cove */
99138
#define INTEL_FAM6_ICELAKE_L 0x7E /* Sunny Cove */
139+
#define INTEL_ICELAKE_L IFM(6, 0x7E) /* Sunny Cove */
100140
#define INTEL_FAM6_ICELAKE_NNPI 0x9D /* Sunny Cove */
141+
#define INTEL_ICELAKE_NNPI IFM(6, 0x9D) /* Sunny Cove */
101142

102143
#define INTEL_FAM6_ROCKETLAKE 0xA7 /* Cypress Cove */
144+
#define INTEL_ROCKETLAKE IFM(6, 0xA7) /* Cypress Cove */
103145

104146
#define INTEL_FAM6_TIGERLAKE_L 0x8C /* Willow Cove */
147+
#define INTEL_TIGERLAKE_L IFM(6, 0x8C) /* Willow Cove */
105148
#define INTEL_FAM6_TIGERLAKE 0x8D /* Willow Cove */
149+
#define INTEL_TIGERLAKE IFM(6, 0x8D) /* Willow Cove */
106150

107151
#define INTEL_FAM6_SAPPHIRERAPIDS_X 0x8F /* Golden Cove */
152+
#define INTEL_SAPPHIRERAPIDS_X IFM(6, 0x8F) /* Golden Cove */
108153

109154
#define INTEL_FAM6_EMERALDRAPIDS_X 0xCF
155+
#define INTEL_EMERALDRAPIDS_X IFM(6, 0xCF)
110156

111157
#define INTEL_FAM6_GRANITERAPIDS_X 0xAD
158+
#define INTEL_GRANITERAPIDS_X IFM(6, 0xAD)
112159
#define INTEL_FAM6_GRANITERAPIDS_D 0xAE
160+
#define INTEL_GRANITERAPIDS_D IFM(6, 0xAE)
113161

114162
/* "Hybrid" Processors (P-Core/E-Core) */
115163

116164
#define INTEL_FAM6_LAKEFIELD 0x8A /* Sunny Cove / Tremont */
165+
#define INTEL_LAKEFIELD IFM(6, 0x8A) /* Sunny Cove / Tremont */
117166

118167
#define INTEL_FAM6_ALDERLAKE 0x97 /* Golden Cove / Gracemont */
168+
#define INTEL_ALDERLAKE IFM(6, 0x97) /* Golden Cove / Gracemont */
119169
#define INTEL_FAM6_ALDERLAKE_L 0x9A /* Golden Cove / Gracemont */
170+
#define INTEL_ALDERLAKE_L IFM(6, 0x9A) /* Golden Cove / Gracemont */
120171

121172
#define INTEL_FAM6_RAPTORLAKE 0xB7 /* Raptor Cove / Enhanced Gracemont */
173+
#define INTEL_RAPTORLAKE IFM(6, 0xB7) /* Raptor Cove / Enhanced Gracemont */
122174
#define INTEL_FAM6_RAPTORLAKE_P 0xBA
175+
#define INTEL_RAPTORLAKE_P IFM(6, 0xBA)
123176
#define INTEL_FAM6_RAPTORLAKE_S 0xBF
177+
#define INTEL_RAPTORLAKE_S IFM(6, 0xBF)
124178

125179
#define INTEL_FAM6_METEORLAKE 0xAC
180+
#define INTEL_METEORLAKE IFM(6, 0xAC)
126181
#define INTEL_FAM6_METEORLAKE_L 0xAA
182+
#define INTEL_METEORLAKE_L IFM(6, 0xAA)
127183

128184
#define INTEL_FAM6_ARROWLAKE_H 0xC5
185+
#define INTEL_ARROWLAKE_H IFM(6, 0xC5)
129186
#define INTEL_FAM6_ARROWLAKE 0xC6
187+
#define INTEL_ARROWLAKE IFM(6, 0xC6)
130188
#define INTEL_FAM6_ARROWLAKE_U 0xB5
189+
#define INTEL_ARROWLAKE_U IFM(6, 0xB5)
131190

132191
#define INTEL_FAM6_LUNARLAKE_M 0xBD
192+
#define INTEL_LUNARLAKE_M IFM(6, 0xBD)
133193

134194
/* "Small Core" Processors (Atom/E-Core) */
135195

136196
#define INTEL_FAM6_ATOM_BONNELL 0x1C /* Diamondville, Pineview */
197+
#define INTEL_ATOM_BONNELL IFM(6, 0x1C) /* Diamondville, Pineview */
137198
#define INTEL_FAM6_ATOM_BONNELL_MID 0x26 /* Silverthorne, Lincroft */
199+
#define INTEL_ATOM_BONNELL_MID IFM(6, 0x26) /* Silverthorne, Lincroft */
138200

139201
#define INTEL_FAM6_ATOM_SALTWELL 0x36 /* Cedarview */
202+
#define INTEL_ATOM_SALTWELL IFM(6, 0x36) /* Cedarview */
140203
#define INTEL_FAM6_ATOM_SALTWELL_MID 0x27 /* Penwell */
204+
#define INTEL_ATOM_SALTWELL_MID IFM(6, 0x27) /* Penwell */
141205
#define INTEL_FAM6_ATOM_SALTWELL_TABLET 0x35 /* Cloverview */
206+
#define INTEL_ATOM_SALTWELL_TABLET IFM(6, 0x35) /* Cloverview */
142207

143208
#define INTEL_FAM6_ATOM_SILVERMONT 0x37 /* Bay Trail, Valleyview */
209+
#define INTEL_ATOM_SILVERMONT IFM(6, 0x37) /* Bay Trail, Valleyview */
144210
#define INTEL_FAM6_ATOM_SILVERMONT_D 0x4D /* Avaton, Rangely */
211+
#define INTEL_ATOM_SILVERMONT_D IFM(6, 0x4D) /* Avaton, Rangely */
145212
#define INTEL_FAM6_ATOM_SILVERMONT_MID 0x4A /* Merriefield */
213+
#define INTEL_ATOM_SILVERMONT_MID IFM(6, 0x4A) /* Merriefield */
146214

147215
#define INTEL_FAM6_ATOM_AIRMONT 0x4C /* Cherry Trail, Braswell */
216+
#define INTEL_ATOM_AIRMONT IFM(6, 0x4C) /* Cherry Trail, Braswell */
148217
#define INTEL_FAM6_ATOM_AIRMONT_MID 0x5A /* Moorefield */
218+
#define INTEL_ATOM_AIRMONT_MID IFM(6, 0x5A) /* Moorefield */
149219
#define INTEL_FAM6_ATOM_AIRMONT_NP 0x75 /* Lightning Mountain */
220+
#define INTEL_ATOM_AIRMONT_NP IFM(6, 0x75) /* Lightning Mountain */
150221

151222
#define INTEL_FAM6_ATOM_GOLDMONT 0x5C /* Apollo Lake */
223+
#define INTEL_ATOM_GOLDMONT IFM(6, 0x5C) /* Apollo Lake */
152224
#define INTEL_FAM6_ATOM_GOLDMONT_D 0x5F /* Denverton */
225+
#define INTEL_ATOM_GOLDMONT_D IFM(6, 0x5F) /* Denverton */
153226

154227
/* Note: the micro-architecture is "Goldmont Plus" */
155228
#define INTEL_FAM6_ATOM_GOLDMONT_PLUS 0x7A /* Gemini Lake */
229+
#define INTEL_ATOM_GOLDMONT_PLUS IFM(6, 0x7A) /* Gemini Lake */
156230

157231
#define INTEL_FAM6_ATOM_TREMONT_D 0x86 /* Jacobsville */
232+
#define INTEL_ATOM_TREMONT_D IFM(6, 0x86) /* Jacobsville */
158233
#define INTEL_FAM6_ATOM_TREMONT 0x96 /* Elkhart Lake */
234+
#define INTEL_ATOM_TREMONT IFM(6, 0x96) /* Elkhart Lake */
159235
#define INTEL_FAM6_ATOM_TREMONT_L 0x9C /* Jasper Lake */
236+
#define INTEL_ATOM_TREMONT_L IFM(6, 0x9C) /* Jasper Lake */
160237

161238
#define INTEL_FAM6_ATOM_GRACEMONT 0xBE /* Alderlake N */
239+
#define INTEL_ATOM_GRACEMONT IFM(6, 0xBE) /* Alderlake N */
162240

163241
#define INTEL_FAM6_ATOM_CRESTMONT_X 0xAF /* Sierra Forest */
242+
#define INTEL_ATOM_CRESTMONT_X IFM(6, 0xAF) /* Sierra Forest */
164243
#define INTEL_FAM6_ATOM_CRESTMONT 0xB6 /* Grand Ridge */
244+
#define INTEL_ATOM_CRESTMONT IFM(6, 0xB6) /* Grand Ridge */
165245

166246
#define INTEL_FAM6_ATOM_DARKMONT_X 0xDD /* Clearwater Forest */
247+
#define INTEL_ATOM_DARKMONT_X IFM(6, 0xDD) /* Clearwater Forest */
167248

168249
/* Xeon Phi */
169250

170251
#define INTEL_FAM6_XEON_PHI_KNL 0x57 /* Knights Landing */
252+
#define INTEL_XEON_PHI_KNL IFM(6, 0x57) /* Knights Landing */
171253
#define INTEL_FAM6_XEON_PHI_KNM 0x85 /* Knights Mill */
254+
#define INTEL_XEON_PHI_KNM IFM(6, 0x85) /* Knights Mill */
172255

173256
/* Family 5 */
174257
#define INTEL_FAM5_QUARK_X1000 0x09 /* Quark X1000 SoC */
258+
#define INTEL_QUARK_X1000 IFM(5, 0x09) /* Quark X1000 SoC */
175259

176260
#endif /* _ASM_X86_INTEL_FAMILY_H */

arch/x86/kernel/cpu/match.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
*
1818
* A typical table entry would be to match a specific CPU
1919
*
20-
* X86_MATCH_VENDOR_FAM_MODEL_FEATURE(INTEL, 6, INTEL_FAM6_BROADWELL,
21-
* X86_FEATURE_ANY, NULL);
20+
* X86_MATCH_VFM_FEATURE(INTEL_BROADWELL, X86_FEATURE_ANY, NULL);
2221
*
2322
* Fields can be wildcarded with %X86_VENDOR_ANY, %X86_FAMILY_ANY,
2423
* %X86_MODEL_ANY, %X86_FEATURE_ANY (except for vendor)

0 commit comments

Comments
 (0)