i386.c revision 1.39 1 1.39 yamt /* $NetBSD: i386.c,v 1.39 2013/03/06 11:52:53 yamt Exp $ */
2 1.1 ad
3 1.1 ad /*-
4 1.1 ad * Copyright (c) 1999, 2000, 2001, 2006, 2007, 2008 The NetBSD Foundation, Inc.
5 1.1 ad * All rights reserved.
6 1.1 ad *
7 1.1 ad * This code is derived from software contributed to The NetBSD Foundation
8 1.1 ad * by Frank van der Linden, and by Jason R. Thorpe.
9 1.1 ad *
10 1.1 ad * Redistribution and use in source and binary forms, with or without
11 1.1 ad * modification, are permitted provided that the following conditions
12 1.1 ad * are met:
13 1.1 ad * 1. Redistributions of source code must retain the above copyright
14 1.1 ad * notice, this list of conditions and the following disclaimer.
15 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 ad * notice, this list of conditions and the following disclaimer in the
17 1.1 ad * documentation and/or other materials provided with the distribution.
18 1.1 ad *
19 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 ad * POSSIBILITY OF SUCH DAMAGE.
30 1.1 ad */
31 1.1 ad
32 1.1 ad /*-
33 1.1 ad * Copyright (c)2008 YAMAMOTO Takashi,
34 1.1 ad * All rights reserved.
35 1.1 ad *
36 1.1 ad * Redistribution and use in source and binary forms, with or without
37 1.1 ad * modification, are permitted provided that the following conditions
38 1.1 ad * are met:
39 1.1 ad * 1. Redistributions of source code must retain the above copyright
40 1.1 ad * notice, this list of conditions and the following disclaimer.
41 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright
42 1.1 ad * notice, this list of conditions and the following disclaimer in the
43 1.1 ad * documentation and/or other materials provided with the distribution.
44 1.1 ad *
45 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
46 1.1 ad * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 1.1 ad * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 1.1 ad * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
49 1.1 ad * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 1.1 ad * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 1.1 ad * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 1.1 ad * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 1.1 ad * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 1.1 ad * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
55 1.1 ad * SUCH DAMAGE.
56 1.1 ad */
57 1.1 ad
58 1.1 ad #include <sys/cdefs.h>
59 1.1 ad #ifndef lint
60 1.39 yamt __RCSID("$NetBSD: i386.c,v 1.39 2013/03/06 11:52:53 yamt Exp $");
61 1.1 ad #endif /* not lint */
62 1.1 ad
63 1.1 ad #include <sys/types.h>
64 1.1 ad #include <sys/param.h>
65 1.1 ad #include <sys/bitops.h>
66 1.1 ad #include <sys/sysctl.h>
67 1.33 dsl #include <sys/ioctl.h>
68 1.32 drochner #include <sys/cpuio.h>
69 1.1 ad
70 1.35 dsl #include <errno.h>
71 1.1 ad #include <string.h>
72 1.1 ad #include <stdio.h>
73 1.1 ad #include <stdlib.h>
74 1.1 ad #include <err.h>
75 1.1 ad #include <assert.h>
76 1.1 ad #include <math.h>
77 1.14 christos #include <util.h>
78 1.1 ad
79 1.1 ad #include <machine/specialreg.h>
80 1.1 ad #include <machine/cpu.h>
81 1.1 ad
82 1.1 ad #include <x86/cpuvar.h>
83 1.1 ad #include <x86/cputypes.h>
84 1.6 christos #include <x86/cacheinfo.h>
85 1.32 drochner #include <x86/cpu_ucode.h>
86 1.1 ad
87 1.1 ad #include "../cpuctl.h"
88 1.34 dsl #include "cpuctl_i386.h"
89 1.1 ad
90 1.7 christos /* Size of buffer for printing humanized numbers */
91 1.16 tsutsui #define HUMAN_BUFSIZE sizeof("999KB")
92 1.7 christos
93 1.1 ad struct cpu_info {
94 1.1 ad const char *ci_dev;
95 1.34 dsl int32_t ci_cpu_type; /* for cpu's without cpuid */
96 1.34 dsl int32_t ci_cpuid_level; /* highest cpuid supported */
97 1.1 ad uint32_t ci_signature; /* X86 cpuid type */
98 1.36 dsl uint32_t ci_family; /* from ci_signature */
99 1.36 dsl uint32_t ci_model; /* from ci_signature */
100 1.38 dsl uint32_t ci_feat_val[8]; /* X86 CPUID feature bits
101 1.18 pgoyette * [0] basic features %edx
102 1.18 pgoyette * [1] basic features %ecx
103 1.18 pgoyette * [2] extended features %edx
104 1.18 pgoyette * [3] extended features %ecx
105 1.18 pgoyette * [4] VIA padlock features
106 1.38 dsl * [5] XCR0 bits (d:0 %eax)
107 1.38 dsl * [6] xsave flags (d:1 %eax)
108 1.18 pgoyette */
109 1.1 ad uint32_t ci_cpu_class; /* CPU class */
110 1.1 ad uint32_t ci_brand_id; /* Intel brand id */
111 1.1 ad uint32_t ci_vendor[4]; /* vendor string */
112 1.1 ad uint32_t ci_cpu_serial[3]; /* PIII serial number */
113 1.1 ad uint64_t ci_tsc_freq; /* cpu cycles/second */
114 1.1 ad uint8_t ci_packageid;
115 1.1 ad uint8_t ci_coreid;
116 1.1 ad uint8_t ci_smtid;
117 1.1 ad uint32_t ci_initapicid;
118 1.38 dsl
119 1.38 dsl uint32_t ci_cur_xsave;
120 1.38 dsl uint32_t ci_max_xsave;
121 1.38 dsl
122 1.1 ad struct x86_cache_info ci_cinfo[CAI_COUNT];
123 1.1 ad void (*ci_info)(struct cpu_info *);
124 1.1 ad };
125 1.1 ad
126 1.1 ad struct cpu_nocpuid_nameclass {
127 1.1 ad int cpu_vendor;
128 1.1 ad const char *cpu_vendorname;
129 1.1 ad const char *cpu_name;
130 1.1 ad int cpu_class;
131 1.1 ad void (*cpu_setup)(struct cpu_info *);
132 1.1 ad void (*cpu_cacheinfo)(struct cpu_info *);
133 1.1 ad void (*cpu_info)(struct cpu_info *);
134 1.1 ad };
135 1.1 ad
136 1.1 ad struct cpu_cpuid_nameclass {
137 1.1 ad const char *cpu_id;
138 1.1 ad int cpu_vendor;
139 1.1 ad const char *cpu_vendorname;
140 1.1 ad struct cpu_cpuid_family {
141 1.1 ad int cpu_class;
142 1.37 dsl const char *cpu_models[256];
143 1.37 dsl const char *cpu_model_default;
144 1.1 ad void (*cpu_setup)(struct cpu_info *);
145 1.1 ad void (*cpu_probe)(struct cpu_info *);
146 1.1 ad void (*cpu_info)(struct cpu_info *);
147 1.1 ad } cpu_family[CPU_MAXFAMILY - CPU_MINFAMILY + 1];
148 1.1 ad };
149 1.1 ad
150 1.7 christos static const struct x86_cache_info intel_cpuid_cache_info[] = INTEL_CACHE_INFO;
151 1.1 ad
152 1.1 ad /*
153 1.1 ad * Map Brand ID from cpuid instruction to brand name.
154 1.1 ad * Source: Intel Processor Identification and the CPUID Instruction, AP-485
155 1.1 ad */
156 1.1 ad static const char * const i386_intel_brand[] = {
157 1.1 ad "", /* Unsupported */
158 1.1 ad "Celeron", /* Intel (R) Celeron (TM) processor */
159 1.1 ad "Pentium III", /* Intel (R) Pentium (R) III processor */
160 1.1 ad "Pentium III Xeon", /* Intel (R) Pentium (R) III Xeon (TM) processor */
161 1.1 ad "Pentium III", /* Intel (R) Pentium (R) III processor */
162 1.1 ad "", /* Reserved */
163 1.1 ad "Mobile Pentium III", /* Mobile Intel (R) Pentium (R) III processor-M */
164 1.1 ad "Mobile Celeron", /* Mobile Intel (R) Celeron (R) processor */
165 1.1 ad "Pentium 4", /* Intel (R) Pentium (R) 4 processor */
166 1.1 ad "Pentium 4", /* Intel (R) Pentium (R) 4 processor */
167 1.1 ad "Celeron", /* Intel (R) Celeron (TM) processor */
168 1.1 ad "Xeon", /* Intel (R) Xeon (TM) processor */
169 1.1 ad "Xeon MP", /* Intel (R) Xeon (TM) processor MP */
170 1.1 ad "", /* Reserved */
171 1.1 ad "Mobile Pentium 4", /* Mobile Intel (R) Pentium (R) 4 processor-M */
172 1.1 ad "Mobile Celeron", /* Mobile Intel (R) Celeron (R) processor */
173 1.1 ad };
174 1.1 ad
175 1.1 ad /*
176 1.1 ad * AMD processors don't have Brand IDs, so we need these names for probe.
177 1.1 ad */
178 1.1 ad static const char * const amd_brand[] = {
179 1.1 ad "",
180 1.1 ad "Duron", /* AMD Duron(tm) */
181 1.1 ad "MP", /* AMD Athlon(tm) MP */
182 1.1 ad "XP", /* AMD Athlon(tm) XP */
183 1.1 ad "4" /* AMD Athlon(tm) 4 */
184 1.1 ad };
185 1.1 ad
186 1.1 ad static int cpu_vendor;
187 1.1 ad static char cpu_brand_string[49];
188 1.1 ad static char amd_brand_name[48];
189 1.26 chs static int use_pae, largepagesize;
190 1.1 ad
191 1.1 ad static void via_cpu_probe(struct cpu_info *);
192 1.1 ad static void amd_family6_probe(struct cpu_info *);
193 1.1 ad static void intel_family_new_probe(struct cpu_info *);
194 1.1 ad static const char *intel_family6_name(struct cpu_info *);
195 1.1 ad static const char *amd_amd64_name(struct cpu_info *);
196 1.1 ad static void amd_family5_setup(struct cpu_info *);
197 1.1 ad static void transmeta_cpu_info(struct cpu_info *);
198 1.1 ad static const char *print_cache_config(struct cpu_info *, int, const char *,
199 1.1 ad const char *);
200 1.1 ad static const char *print_tlb_config(struct cpu_info *, int, const char *,
201 1.1 ad const char *);
202 1.1 ad static void amd_cpu_cacheinfo(struct cpu_info *);
203 1.1 ad static void via_cpu_cacheinfo(struct cpu_info *);
204 1.1 ad static void x86_print_cacheinfo(struct cpu_info *);
205 1.1 ad static const struct x86_cache_info *cache_info_lookup(
206 1.1 ad const struct x86_cache_info *, uint8_t);
207 1.1 ad static void cyrix6x86_cpu_setup(struct cpu_info *);
208 1.1 ad static void winchip_cpu_setup(struct cpu_info *);
209 1.1 ad static void amd_family5_setup(struct cpu_info *);
210 1.5 ad static void powernow_probe(struct cpu_info *);
211 1.1 ad
212 1.1 ad /*
213 1.1 ad * Note: these are just the ones that may not have a cpuid instruction.
214 1.1 ad * We deal with the rest in a different way.
215 1.1 ad */
216 1.1 ad const struct cpu_nocpuid_nameclass i386_nocpuid_cpus[] = {
217 1.1 ad { CPUVENDOR_INTEL, "Intel", "386SX", CPUCLASS_386,
218 1.1 ad NULL, NULL, NULL }, /* CPU_386SX */
219 1.1 ad { CPUVENDOR_INTEL, "Intel", "386DX", CPUCLASS_386,
220 1.1 ad NULL, NULL, NULL }, /* CPU_386 */
221 1.1 ad { CPUVENDOR_INTEL, "Intel", "486SX", CPUCLASS_486,
222 1.1 ad NULL, NULL, NULL }, /* CPU_486SX */
223 1.1 ad { CPUVENDOR_INTEL, "Intel", "486DX", CPUCLASS_486,
224 1.1 ad NULL, NULL, NULL }, /* CPU_486 */
225 1.1 ad { CPUVENDOR_CYRIX, "Cyrix", "486DLC", CPUCLASS_486,
226 1.1 ad NULL, NULL, NULL }, /* CPU_486DLC */
227 1.1 ad { CPUVENDOR_CYRIX, "Cyrix", "6x86", CPUCLASS_486,
228 1.1 ad NULL, NULL, NULL }, /* CPU_6x86 */
229 1.1 ad { CPUVENDOR_NEXGEN,"NexGen","586", CPUCLASS_386,
230 1.1 ad NULL, NULL, NULL }, /* CPU_NX586 */
231 1.1 ad };
232 1.1 ad
233 1.1 ad const char *classnames[] = {
234 1.1 ad "386",
235 1.1 ad "486",
236 1.1 ad "586",
237 1.1 ad "686"
238 1.1 ad };
239 1.1 ad
240 1.1 ad const char *modifiers[] = {
241 1.1 ad "",
242 1.1 ad "OverDrive",
243 1.1 ad "Dual",
244 1.1 ad ""
245 1.1 ad };
246 1.1 ad
247 1.1 ad const struct cpu_cpuid_nameclass i386_cpuid_cpus[] = {
248 1.1 ad {
249 1.1 ad "GenuineIntel",
250 1.1 ad CPUVENDOR_INTEL,
251 1.1 ad "Intel",
252 1.1 ad /* Family 4 */
253 1.1 ad { {
254 1.1 ad CPUCLASS_486,
255 1.1 ad {
256 1.1 ad "486DX", "486DX", "486SX", "486DX2", "486SL",
257 1.1 ad "486SX2", 0, "486DX2 W/B Enhanced",
258 1.1 ad "486DX4", 0, 0, 0, 0, 0, 0, 0,
259 1.1 ad },
260 1.37 dsl "486", /* Default */
261 1.1 ad NULL,
262 1.1 ad NULL,
263 1.18 pgoyette NULL,
264 1.1 ad },
265 1.1 ad /* Family 5 */
266 1.1 ad {
267 1.1 ad CPUCLASS_586,
268 1.1 ad {
269 1.1 ad "Pentium (P5 A-step)", "Pentium (P5)",
270 1.1 ad "Pentium (P54C)", "Pentium (P24T)",
271 1.1 ad "Pentium/MMX", "Pentium", 0,
272 1.1 ad "Pentium (P54C)", "Pentium/MMX (Tillamook)",
273 1.1 ad 0, 0, 0, 0, 0, 0, 0,
274 1.1 ad },
275 1.37 dsl "Pentium", /* Default */
276 1.1 ad NULL,
277 1.1 ad NULL,
278 1.18 pgoyette NULL,
279 1.1 ad },
280 1.1 ad /* Family 6 */
281 1.1 ad {
282 1.1 ad CPUCLASS_686,
283 1.1 ad {
284 1.37 dsl /* Updated from intel_x86_325486.pdf Aug 2012 */
285 1.37 dsl [0x00] = "Pentium Pro (A-step)",
286 1.37 dsl [0x01] = "Pentium Pro",
287 1.37 dsl [0x03] = "Pentium II (Klamath)",
288 1.37 dsl [0x04] = "Pentium Pro",
289 1.37 dsl [0x05] = "Pentium II/Celeron (Deschutes)",
290 1.37 dsl [0x06] = "Celeron (Mendocino)",
291 1.37 dsl [0x07] = "Pentium III (Katmai)",
292 1.37 dsl [0x08] = "Pentium III (Coppermine)",
293 1.37 dsl [0x09] = "Pentium M (Banias)",
294 1.37 dsl [0x0a] = "Pentium III Xeon (Cascades)",
295 1.37 dsl [0x0b] = "Pentium III (Tualatin)",
296 1.37 dsl [0x0d] = "Pentium M (Dothan)",
297 1.37 dsl [0x0e] = "Pentium Core Duo", // "M (Yonah)",
298 1.37 dsl [0x0f] = "Core 2",
299 1.37 dsl [0x15] = "EP80579 Integrated Processor",
300 1.37 dsl [0x16] = "Celeron (45nm)",
301 1.37 dsl [0x17] = "Core 2 Extreme",
302 1.37 dsl [0x1a] = "Core i7 (Nehalem)",
303 1.37 dsl [0x1c] = "Atom Family",
304 1.37 dsl [0x1d] = "XeonMP 74xx (Nehalem)",
305 1.37 dsl [0x1e] = "Core i7 and i5",
306 1.37 dsl [0x1f] = "Core i7 and i5",
307 1.37 dsl [0x25] = "Xeon 36xx & 56xx, i7, i5 and i3",
308 1.37 dsl [0x26] = "Atom Family",
309 1.37 dsl [0x27] = "Atom Family",
310 1.37 dsl [0x2a] = "Xeon E3-12xx, 2nd gen i7, i5, i3 2xxx",
311 1.37 dsl [0x2c] = "Xeon 36xx & 56xx, i7, i5 and i3",
312 1.37 dsl [0x2e] = "Xeon 75xx & 65xx",
313 1.37 dsl [0x2d] = "Xeon E5 Sandy bridy family",
314 1.37 dsl [0x2f] = "Xeon E7 family",
315 1.37 dsl [0x3a] = "Xeon E3-1200v2 and 3rd gen core, Ivy bridge",
316 1.37 dsl [0x3c] = "Next Intel Core",
317 1.37 dsl [0x3e] = "Next gen Xeon E5, Ivy bridge",
318 1.37 dsl [0x45] = "Next Intel Core",
319 1.1 ad },
320 1.37 dsl "Pentium Pro, II or III", /* Default */
321 1.1 ad NULL,
322 1.1 ad intel_family_new_probe,
323 1.1 ad NULL,
324 1.1 ad },
325 1.1 ad /* Family > 6 */
326 1.1 ad {
327 1.1 ad CPUCLASS_686,
328 1.1 ad {
329 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
330 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
331 1.1 ad },
332 1.37 dsl "Pentium 4", /* Default */
333 1.1 ad NULL,
334 1.1 ad intel_family_new_probe,
335 1.1 ad NULL,
336 1.1 ad } }
337 1.1 ad },
338 1.1 ad {
339 1.1 ad "AuthenticAMD",
340 1.1 ad CPUVENDOR_AMD,
341 1.1 ad "AMD",
342 1.1 ad /* Family 4 */
343 1.1 ad { {
344 1.1 ad CPUCLASS_486,
345 1.1 ad {
346 1.1 ad 0, 0, 0, "Am486DX2 W/T",
347 1.1 ad 0, 0, 0, "Am486DX2 W/B",
348 1.1 ad "Am486DX4 W/T or Am5x86 W/T 150",
349 1.1 ad "Am486DX4 W/B or Am5x86 W/B 150", 0, 0,
350 1.1 ad 0, 0, "Am5x86 W/T 133/160",
351 1.1 ad "Am5x86 W/B 133/160",
352 1.1 ad },
353 1.37 dsl "Am486 or Am5x86", /* Default */
354 1.1 ad NULL,
355 1.1 ad NULL,
356 1.18 pgoyette NULL,
357 1.1 ad },
358 1.1 ad /* Family 5 */
359 1.1 ad {
360 1.1 ad CPUCLASS_586,
361 1.1 ad {
362 1.1 ad "K5", "K5", "K5", "K5", 0, 0, "K6",
363 1.1 ad "K6", "K6-2", "K6-III", "Geode LX", 0, 0,
364 1.1 ad "K6-2+/III+", 0, 0,
365 1.1 ad },
366 1.37 dsl "K5 or K6", /* Default */
367 1.1 ad amd_family5_setup,
368 1.1 ad NULL,
369 1.1 ad amd_cpu_cacheinfo,
370 1.1 ad },
371 1.1 ad /* Family 6 */
372 1.1 ad {
373 1.1 ad CPUCLASS_686,
374 1.1 ad {
375 1.1 ad 0, "Athlon Model 1", "Athlon Model 2",
376 1.1 ad "Duron", "Athlon Model 4 (Thunderbird)",
377 1.1 ad 0, "Athlon", "Duron", "Athlon", 0,
378 1.1 ad "Athlon", 0, 0, 0, 0, 0,
379 1.1 ad },
380 1.37 dsl "K7 (Athlon)", /* Default */
381 1.1 ad NULL,
382 1.1 ad amd_family6_probe,
383 1.1 ad amd_cpu_cacheinfo,
384 1.1 ad },
385 1.1 ad /* Family > 6 */
386 1.1 ad {
387 1.1 ad CPUCLASS_686,
388 1.1 ad {
389 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
390 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
391 1.1 ad },
392 1.37 dsl "Unknown K8 (Athlon)", /* Default */
393 1.1 ad NULL,
394 1.1 ad amd_family6_probe,
395 1.1 ad amd_cpu_cacheinfo,
396 1.1 ad } }
397 1.1 ad },
398 1.1 ad {
399 1.1 ad "CyrixInstead",
400 1.1 ad CPUVENDOR_CYRIX,
401 1.1 ad "Cyrix",
402 1.1 ad /* Family 4 */
403 1.1 ad { {
404 1.1 ad CPUCLASS_486,
405 1.1 ad {
406 1.1 ad 0, 0, 0,
407 1.1 ad "MediaGX",
408 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
409 1.1 ad },
410 1.37 dsl "486", /* Default */
411 1.1 ad cyrix6x86_cpu_setup, /* XXX ?? */
412 1.1 ad NULL,
413 1.1 ad NULL,
414 1.1 ad },
415 1.1 ad /* Family 5 */
416 1.1 ad {
417 1.1 ad CPUCLASS_586,
418 1.1 ad {
419 1.1 ad 0, 0, "6x86", 0,
420 1.1 ad "MMX-enhanced MediaGX (GXm)", /* or Geode? */
421 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
422 1.1 ad },
423 1.37 dsl "6x86", /* Default */
424 1.1 ad cyrix6x86_cpu_setup,
425 1.1 ad NULL,
426 1.1 ad NULL,
427 1.1 ad },
428 1.1 ad /* Family 6 */
429 1.1 ad {
430 1.1 ad CPUCLASS_686,
431 1.1 ad {
432 1.1 ad "6x86MX", 0, 0, 0, 0, 0, 0, 0,
433 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
434 1.1 ad },
435 1.37 dsl "6x86MX", /* Default */
436 1.1 ad cyrix6x86_cpu_setup,
437 1.1 ad NULL,
438 1.1 ad NULL,
439 1.1 ad },
440 1.1 ad /* Family > 6 */
441 1.1 ad {
442 1.1 ad CPUCLASS_686,
443 1.1 ad {
444 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
445 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
446 1.1 ad },
447 1.37 dsl "Unknown 6x86MX", /* Default */
448 1.1 ad NULL,
449 1.1 ad NULL,
450 1.18 pgoyette NULL,
451 1.1 ad } }
452 1.1 ad },
453 1.1 ad { /* MediaGX is now owned by National Semiconductor */
454 1.1 ad "Geode by NSC",
455 1.1 ad CPUVENDOR_CYRIX, /* XXX */
456 1.1 ad "National Semiconductor",
457 1.1 ad /* Family 4, NSC never had any of these */
458 1.1 ad { {
459 1.1 ad CPUCLASS_486,
460 1.1 ad {
461 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
462 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
463 1.1 ad },
464 1.37 dsl "486 compatible", /* Default */
465 1.1 ad NULL,
466 1.1 ad NULL,
467 1.18 pgoyette NULL,
468 1.1 ad },
469 1.1 ad /* Family 5: Geode family, formerly MediaGX */
470 1.1 ad {
471 1.1 ad CPUCLASS_586,
472 1.1 ad {
473 1.1 ad 0, 0, 0, 0,
474 1.1 ad "Geode GX1",
475 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
476 1.1 ad },
477 1.37 dsl "Geode", /* Default */
478 1.1 ad cyrix6x86_cpu_setup,
479 1.1 ad NULL,
480 1.1 ad amd_cpu_cacheinfo,
481 1.1 ad },
482 1.1 ad /* Family 6, not yet available from NSC */
483 1.1 ad {
484 1.1 ad CPUCLASS_686,
485 1.1 ad {
486 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
487 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
488 1.1 ad },
489 1.37 dsl "Pentium Pro compatible", /* Default */
490 1.1 ad NULL,
491 1.1 ad NULL,
492 1.18 pgoyette NULL,
493 1.1 ad },
494 1.1 ad /* Family > 6, not yet available from NSC */
495 1.1 ad {
496 1.1 ad CPUCLASS_686,
497 1.1 ad {
498 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
499 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
500 1.1 ad },
501 1.37 dsl "Pentium Pro compatible", /* Default */
502 1.1 ad NULL,
503 1.1 ad NULL,
504 1.18 pgoyette NULL,
505 1.1 ad } }
506 1.1 ad },
507 1.1 ad {
508 1.1 ad "CentaurHauls",
509 1.1 ad CPUVENDOR_IDT,
510 1.1 ad "IDT",
511 1.1 ad /* Family 4, IDT never had any of these */
512 1.1 ad { {
513 1.1 ad CPUCLASS_486,
514 1.1 ad {
515 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
516 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
517 1.1 ad },
518 1.37 dsl "486 compatible", /* Default */
519 1.1 ad NULL,
520 1.1 ad NULL,
521 1.18 pgoyette NULL,
522 1.1 ad },
523 1.1 ad /* Family 5 */
524 1.1 ad {
525 1.1 ad CPUCLASS_586,
526 1.1 ad {
527 1.1 ad 0, 0, 0, 0, "WinChip C6", 0, 0, 0,
528 1.1 ad "WinChip 2", "WinChip 3", 0, 0, 0, 0, 0, 0,
529 1.1 ad },
530 1.37 dsl "WinChip", /* Default */
531 1.1 ad winchip_cpu_setup,
532 1.1 ad NULL,
533 1.1 ad NULL,
534 1.1 ad },
535 1.1 ad /* Family 6, VIA acquired IDT Centaur design subsidiary */
536 1.1 ad {
537 1.1 ad CPUCLASS_686,
538 1.1 ad {
539 1.1 ad 0, 0, 0, 0, 0, 0, "C3 Samuel",
540 1.1 ad "C3 Samuel 2/Ezra", "C3 Ezra-T",
541 1.20 jmcneill "C3 Nehemiah", "C7 Esther", 0, 0, "C7 Esther",
542 1.20 jmcneill 0, "VIA Nano",
543 1.1 ad },
544 1.37 dsl "Unknown VIA/IDT", /* Default */
545 1.1 ad NULL,
546 1.1 ad via_cpu_probe,
547 1.1 ad via_cpu_cacheinfo,
548 1.1 ad },
549 1.1 ad /* Family > 6, not yet available from VIA */
550 1.1 ad {
551 1.1 ad CPUCLASS_686,
552 1.1 ad {
553 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
554 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
555 1.1 ad },
556 1.37 dsl "Pentium Pro compatible", /* Default */
557 1.1 ad NULL,
558 1.1 ad NULL,
559 1.18 pgoyette NULL,
560 1.1 ad } }
561 1.1 ad },
562 1.1 ad {
563 1.1 ad "GenuineTMx86",
564 1.1 ad CPUVENDOR_TRANSMETA,
565 1.1 ad "Transmeta",
566 1.1 ad /* Family 4, Transmeta never had any of these */
567 1.1 ad { {
568 1.1 ad CPUCLASS_486,
569 1.1 ad {
570 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
571 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
572 1.1 ad },
573 1.37 dsl "486 compatible", /* Default */
574 1.1 ad NULL,
575 1.1 ad NULL,
576 1.18 pgoyette NULL,
577 1.1 ad },
578 1.1 ad /* Family 5 */
579 1.1 ad {
580 1.1 ad CPUCLASS_586,
581 1.1 ad {
582 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
583 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
584 1.1 ad },
585 1.37 dsl "Crusoe", /* Default */
586 1.1 ad NULL,
587 1.1 ad NULL,
588 1.1 ad transmeta_cpu_info,
589 1.1 ad },
590 1.1 ad /* Family 6, not yet available from Transmeta */
591 1.1 ad {
592 1.1 ad CPUCLASS_686,
593 1.1 ad {
594 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
595 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
596 1.1 ad },
597 1.37 dsl "Pentium Pro compatible", /* Default */
598 1.1 ad NULL,
599 1.1 ad NULL,
600 1.18 pgoyette NULL,
601 1.1 ad },
602 1.1 ad /* Family > 6, not yet available from Transmeta */
603 1.1 ad {
604 1.1 ad CPUCLASS_686,
605 1.1 ad {
606 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
607 1.1 ad 0, 0, 0, 0, 0, 0, 0, 0,
608 1.1 ad },
609 1.37 dsl "Pentium Pro compatible", /* Default */
610 1.1 ad NULL,
611 1.1 ad NULL,
612 1.18 pgoyette NULL,
613 1.1 ad } }
614 1.1 ad }
615 1.1 ad };
616 1.1 ad
617 1.1 ad /*
618 1.1 ad * disable the TSC such that we don't use the TSC in microtime(9)
619 1.1 ad * because some CPUs got the implementation wrong.
620 1.1 ad */
621 1.1 ad static void
622 1.1 ad disable_tsc(struct cpu_info *ci)
623 1.1 ad {
624 1.18 pgoyette if (ci->ci_feat_val[0] & CPUID_TSC) {
625 1.18 pgoyette ci->ci_feat_val[0] &= ~CPUID_TSC;
626 1.1 ad aprint_error("WARNING: broken TSC disabled\n");
627 1.1 ad }
628 1.1 ad }
629 1.1 ad
630 1.1 ad static void
631 1.1 ad cyrix6x86_cpu_setup(struct cpu_info *ci)
632 1.1 ad {
633 1.1 ad
634 1.1 ad /*
635 1.1 ad * Do not disable the TSC on the Geode GX, it's reported to
636 1.1 ad * work fine.
637 1.1 ad */
638 1.1 ad if (ci->ci_signature != 0x552)
639 1.1 ad disable_tsc(ci);
640 1.1 ad }
641 1.1 ad
642 1.1 ad void
643 1.1 ad winchip_cpu_setup(struct cpu_info *ci)
644 1.1 ad {
645 1.36 dsl switch (ci->ci_model) {
646 1.1 ad case 4: /* WinChip C6 */
647 1.1 ad disable_tsc(ci);
648 1.1 ad }
649 1.1 ad }
650 1.1 ad
651 1.1 ad
652 1.1 ad static void
653 1.1 ad identifycpu_cpuids(struct cpu_info *ci)
654 1.1 ad {
655 1.1 ad const char *cpuname = ci->ci_dev;
656 1.1 ad u_int lp_max = 1; /* logical processors per package */
657 1.1 ad u_int smt_max; /* smt per core */
658 1.1 ad u_int core_max = 1; /* core per package */
659 1.17 christos u_int smt_bits, core_bits;
660 1.1 ad uint32_t descs[4];
661 1.39 yamt uint32_t highest_basic_info;
662 1.1 ad
663 1.1 ad aprint_verbose("%s: Initial APIC ID %u\n", cpuname, ci->ci_initapicid);
664 1.1 ad ci->ci_packageid = ci->ci_initapicid;
665 1.1 ad ci->ci_coreid = 0;
666 1.1 ad ci->ci_smtid = 0;
667 1.1 ad if (cpu_vendor != CPUVENDOR_INTEL) {
668 1.1 ad return;
669 1.1 ad }
670 1.1 ad
671 1.1 ad /*
672 1.1 ad * 253668.pdf 7.10.2
673 1.1 ad */
674 1.1 ad
675 1.18 pgoyette if ((ci->ci_feat_val[0] & CPUID_HTT) != 0) {
676 1.1 ad x86_cpuid(1, descs);
677 1.1 ad lp_max = (descs[1] >> 16) & 0xff;
678 1.1 ad }
679 1.1 ad x86_cpuid(0, descs);
680 1.39 yamt highest_basic_info = descs[0];
681 1.39 yamt if (highest_basic_info >= 4) {
682 1.1 ad x86_cpuid2(4, 0, descs);
683 1.1 ad core_max = (descs[0] >> 26) + 1;
684 1.1 ad }
685 1.1 ad assert(lp_max >= core_max);
686 1.1 ad smt_max = lp_max / core_max;
687 1.1 ad smt_bits = ilog2(smt_max - 1) + 1;
688 1.1 ad core_bits = ilog2(core_max - 1) + 1;
689 1.1 ad if (smt_bits + core_bits) {
690 1.1 ad ci->ci_packageid = ci->ci_initapicid >> (smt_bits + core_bits);
691 1.1 ad }
692 1.1 ad aprint_verbose("%s: Cluster/Package ID %u\n", cpuname,
693 1.1 ad ci->ci_packageid);
694 1.1 ad if (core_bits) {
695 1.1 ad u_int core_mask = __BITS(smt_bits, smt_bits + core_bits - 1);
696 1.1 ad
697 1.1 ad ci->ci_coreid =
698 1.1 ad __SHIFTOUT(ci->ci_initapicid, core_mask);
699 1.1 ad aprint_verbose("%s: Core ID %u\n", cpuname, ci->ci_coreid);
700 1.1 ad }
701 1.1 ad if (smt_bits) {
702 1.17 christos u_int smt_mask = __BITS((int)0, (int)(smt_bits - 1));
703 1.1 ad
704 1.1 ad ci->ci_smtid = __SHIFTOUT(ci->ci_initapicid, smt_mask);
705 1.1 ad aprint_verbose("%s: SMT ID %u\n", cpuname, ci->ci_smtid);
706 1.1 ad }
707 1.1 ad }
708 1.1 ad
709 1.1 ad static void
710 1.1 ad via_cpu_probe(struct cpu_info *ci)
711 1.1 ad {
712 1.1 ad u_int stepping = CPUID2STEPPING(ci->ci_signature);
713 1.1 ad u_int descs[4];
714 1.1 ad u_int lfunc;
715 1.1 ad
716 1.1 ad /*
717 1.1 ad * Determine the largest extended function value.
718 1.1 ad */
719 1.1 ad x86_cpuid(0x80000000, descs);
720 1.1 ad lfunc = descs[0];
721 1.1 ad
722 1.1 ad /*
723 1.1 ad * Determine the extended feature flags.
724 1.1 ad */
725 1.1 ad if (lfunc >= 0x80000001) {
726 1.1 ad x86_cpuid(0x80000001, descs);
727 1.18 pgoyette ci->ci_feat_val[2] |= descs[3];
728 1.1 ad }
729 1.1 ad
730 1.36 dsl if (ci->ci_model < 0x9 || (ci->ci_model == 0x9 && stepping < 3))
731 1.1 ad return;
732 1.1 ad
733 1.1 ad /* Nehemiah or Esther */
734 1.1 ad x86_cpuid(0xc0000000, descs);
735 1.1 ad lfunc = descs[0];
736 1.1 ad if (lfunc < 0xc0000001) /* no ACE, no RNG */
737 1.1 ad return;
738 1.1 ad
739 1.1 ad x86_cpuid(0xc0000001, descs);
740 1.1 ad lfunc = descs[3];
741 1.24 jmcneill ci->ci_feat_val[4] = lfunc;
742 1.1 ad }
743 1.1 ad
744 1.1 ad static const char *
745 1.1 ad intel_family6_name(struct cpu_info *ci)
746 1.1 ad {
747 1.1 ad const char *ret = NULL;
748 1.1 ad u_int l2cache = ci->ci_cinfo[CAI_L2CACHE].cai_totalsize;
749 1.1 ad
750 1.36 dsl if (ci->ci_model == 5) {
751 1.1 ad switch (l2cache) {
752 1.1 ad case 0:
753 1.1 ad case 128 * 1024:
754 1.1 ad ret = "Celeron (Covington)";
755 1.1 ad break;
756 1.1 ad case 256 * 1024:
757 1.1 ad ret = "Mobile Pentium II (Dixon)";
758 1.1 ad break;
759 1.1 ad case 512 * 1024:
760 1.1 ad ret = "Pentium II";
761 1.1 ad break;
762 1.1 ad case 1 * 1024 * 1024:
763 1.1 ad case 2 * 1024 * 1024:
764 1.1 ad ret = "Pentium II Xeon";
765 1.1 ad break;
766 1.1 ad }
767 1.36 dsl } else if (ci->ci_model == 6) {
768 1.1 ad switch (l2cache) {
769 1.1 ad case 256 * 1024:
770 1.1 ad case 512 * 1024:
771 1.1 ad ret = "Mobile Pentium II";
772 1.1 ad break;
773 1.1 ad }
774 1.36 dsl } else if (ci->ci_model == 7) {
775 1.1 ad switch (l2cache) {
776 1.1 ad case 512 * 1024:
777 1.1 ad ret = "Pentium III";
778 1.1 ad break;
779 1.1 ad case 1 * 1024 * 1024:
780 1.1 ad case 2 * 1024 * 1024:
781 1.1 ad ret = "Pentium III Xeon";
782 1.1 ad break;
783 1.1 ad }
784 1.36 dsl } else if (ci->ci_model >= 8) {
785 1.1 ad if (ci->ci_brand_id && ci->ci_brand_id < 0x10) {
786 1.1 ad switch (ci->ci_brand_id) {
787 1.1 ad case 0x3:
788 1.1 ad if (ci->ci_signature == 0x6B1)
789 1.1 ad ret = "Celeron";
790 1.1 ad break;
791 1.1 ad case 0x8:
792 1.1 ad if (ci->ci_signature >= 0xF13)
793 1.1 ad ret = "genuine processor";
794 1.1 ad break;
795 1.1 ad case 0xB:
796 1.1 ad if (ci->ci_signature >= 0xF13)
797 1.1 ad ret = "Xeon MP";
798 1.1 ad break;
799 1.1 ad case 0xE:
800 1.1 ad if (ci->ci_signature < 0xF13)
801 1.1 ad ret = "Xeon";
802 1.1 ad break;
803 1.1 ad }
804 1.1 ad if (ret == NULL)
805 1.1 ad ret = i386_intel_brand[ci->ci_brand_id];
806 1.1 ad }
807 1.1 ad }
808 1.1 ad
809 1.1 ad return ret;
810 1.1 ad }
811 1.1 ad
812 1.1 ad /*
813 1.1 ad * Identify AMD64 CPU names from cpuid.
814 1.1 ad *
815 1.1 ad * Based on:
816 1.1 ad * "Revision Guide for AMD Athlon 64 and AMD Opteron Processors"
817 1.1 ad * http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25759.pdf
818 1.1 ad * "Revision Guide for AMD NPT Family 0Fh Processors"
819 1.1 ad * http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/33610.pdf
820 1.1 ad * and other miscellaneous reports.
821 1.36 dsl *
822 1.36 dsl * This is all rather pointless, these are cross 'brand' since the raw
823 1.36 dsl * silicon is shared.
824 1.1 ad */
825 1.1 ad static const char *
826 1.1 ad amd_amd64_name(struct cpu_info *ci)
827 1.1 ad {
828 1.36 dsl static char family_str[32];
829 1.36 dsl
830 1.36 dsl /* Only called if family >= 15 */
831 1.1 ad
832 1.36 dsl switch (ci->ci_family) {
833 1.36 dsl case 15:
834 1.36 dsl switch (ci->ci_model) {
835 1.36 dsl case 0x21: /* rev JH-E1/E6 */
836 1.36 dsl case 0x41: /* rev JH-F2 */
837 1.36 dsl return "Dual-Core Opteron";
838 1.36 dsl case 0x23: /* rev JH-E6 (Toledo) */
839 1.36 dsl return "Dual-Core Opteron or Athlon 64 X2";
840 1.36 dsl case 0x43: /* rev JH-F2 (Windsor) */
841 1.36 dsl return "Athlon 64 FX or Athlon 64 X2";
842 1.36 dsl case 0x24: /* rev SH-E5 (Lancaster?) */
843 1.36 dsl return "Mobile Athlon 64 or Turion 64";
844 1.36 dsl case 0x05: /* rev SH-B0/B3/C0/CG (SledgeHammer?) */
845 1.36 dsl return "Opteron or Athlon 64 FX";
846 1.36 dsl case 0x15: /* rev SH-D0 */
847 1.36 dsl case 0x25: /* rev SH-E4 */
848 1.36 dsl return "Opteron";
849 1.36 dsl case 0x27: /* rev DH-E4, SH-E4 */
850 1.36 dsl return "Athlon 64 or Athlon 64 FX or Opteron";
851 1.36 dsl case 0x48: /* rev BH-F2 */
852 1.36 dsl return "Turion 64 X2";
853 1.36 dsl case 0x04: /* rev SH-B0/C0/CG (ClawHammer) */
854 1.36 dsl case 0x07: /* rev SH-CG (ClawHammer) */
855 1.36 dsl case 0x0b: /* rev CH-CG */
856 1.36 dsl case 0x14: /* rev SH-D0 */
857 1.36 dsl case 0x17: /* rev SH-D0 */
858 1.36 dsl case 0x1b: /* rev CH-D0 */
859 1.36 dsl return "Athlon 64";
860 1.36 dsl case 0x2b: /* rev BH-E4 (Manchester) */
861 1.36 dsl case 0x4b: /* rev BH-F2 (Windsor) */
862 1.36 dsl return "Athlon 64 X2";
863 1.36 dsl case 0x6b: /* rev BH-G1 (Brisbane) */
864 1.36 dsl return "Athlon X2 or Athlon 64 X2";
865 1.36 dsl case 0x08: /* rev CH-CG */
866 1.36 dsl case 0x0c: /* rev DH-CG (Newcastle) */
867 1.36 dsl case 0x0e: /* rev DH-CG (Newcastle?) */
868 1.36 dsl case 0x0f: /* rev DH-CG (Newcastle/Paris) */
869 1.36 dsl case 0x18: /* rev CH-D0 */
870 1.36 dsl case 0x1c: /* rev DH-D0 (Winchester) */
871 1.36 dsl case 0x1f: /* rev DH-D0 (Winchester/Victoria) */
872 1.36 dsl case 0x2c: /* rev DH-E3/E6 */
873 1.36 dsl case 0x2f: /* rev DH-E3/E6 (Venice/Palermo) */
874 1.36 dsl case 0x4f: /* rev DH-F2 (Orleans/Manila) */
875 1.36 dsl case 0x5f: /* rev DH-F2 (Orleans/Manila) */
876 1.36 dsl case 0x6f: /* rev DH-G1 */
877 1.36 dsl return "Athlon 64 or Sempron";
878 1.36 dsl default:
879 1.1 ad break;
880 1.1 ad }
881 1.36 dsl return "Unknown AMD64 CPU";
882 1.36 dsl
883 1.36 dsl #if 0
884 1.36 dsl case 16:
885 1.36 dsl return "Family 10h";
886 1.36 dsl case 17:
887 1.36 dsl return "Family 11h";
888 1.36 dsl case 18:
889 1.36 dsl return "Family 12h";
890 1.36 dsl case 19:
891 1.36 dsl return "Family 14h";
892 1.36 dsl case 20:
893 1.36 dsl return "Family 15h";
894 1.36 dsl #endif
895 1.36 dsl
896 1.31 cegger default:
897 1.25 jruoho break;
898 1.1 ad }
899 1.1 ad
900 1.36 dsl snprintf(family_str, sizeof family_str, "Family %xh", ci->ci_family);
901 1.36 dsl return family_str;
902 1.1 ad }
903 1.1 ad
904 1.1 ad static void
905 1.34 dsl cpu_probe_base_features(struct cpu_info *ci, const char *cpuname)
906 1.1 ad {
907 1.1 ad const struct x86_cache_info *cai;
908 1.1 ad u_int descs[4];
909 1.1 ad int iterations, i, j;
910 1.1 ad uint8_t desc;
911 1.1 ad uint32_t brand[12];
912 1.1 ad
913 1.34 dsl memset(ci, 0, sizeof(*ci));
914 1.34 dsl ci->ci_dev = cpuname;
915 1.34 dsl
916 1.34 dsl ci->ci_cpu_type = x86_identify();
917 1.34 dsl if (ci->ci_cpu_type >= 0) {
918 1.34 dsl /* Old pre-cpuid instruction cpu */
919 1.34 dsl ci->ci_cpuid_level = -1;
920 1.1 ad return;
921 1.34 dsl }
922 1.1 ad
923 1.1 ad x86_cpuid(0, descs);
924 1.1 ad ci->ci_cpuid_level = descs[0];
925 1.1 ad ci->ci_vendor[0] = descs[1];
926 1.1 ad ci->ci_vendor[2] = descs[2];
927 1.1 ad ci->ci_vendor[1] = descs[3];
928 1.1 ad ci->ci_vendor[3] = 0;
929 1.1 ad
930 1.1 ad x86_cpuid(0x80000000, brand);
931 1.1 ad if (brand[0] >= 0x80000004) {
932 1.1 ad x86_cpuid(0x80000002, brand);
933 1.1 ad x86_cpuid(0x80000003, brand + 4);
934 1.1 ad x86_cpuid(0x80000004, brand + 8);
935 1.1 ad for (i = 0; i < 48; i++)
936 1.1 ad if (((char *) brand)[i] != ' ')
937 1.1 ad break;
938 1.1 ad memcpy(cpu_brand_string, ((char *) brand) + i, 48 - i);
939 1.1 ad }
940 1.1 ad
941 1.1 ad if (ci->ci_cpuid_level < 1)
942 1.1 ad return;
943 1.1 ad
944 1.1 ad x86_cpuid(1, descs);
945 1.1 ad ci->ci_signature = descs[0];
946 1.36 dsl
947 1.36 dsl /* Extract full family/model values */
948 1.36 dsl ci->ci_family = CPUID2FAMILY(ci->ci_signature);
949 1.36 dsl ci->ci_model = CPUID2MODEL(ci->ci_signature);
950 1.36 dsl if (ci->ci_family == 15)
951 1.36 dsl ci->ci_family += CPUID2EXTFAMILY(ci->ci_signature);
952 1.36 dsl if (ci->ci_family == 6 || ci->ci_family == 15)
953 1.36 dsl ci->ci_model += CPUID2EXTMODEL(ci->ci_signature) << 4;
954 1.36 dsl
955 1.36 dsl /* Brand is low order 8 bits of ebx */
956 1.36 dsl ci->ci_brand_id = descs[1] & 0xff;
957 1.36 dsl ci->ci_initapicid = (descs[1] >> 24) & 0xff;
958 1.36 dsl
959 1.18 pgoyette ci->ci_feat_val[1] = descs[2];
960 1.18 pgoyette ci->ci_feat_val[0] = descs[3];
961 1.1 ad
962 1.1 ad if (ci->ci_cpuid_level < 2)
963 1.1 ad return;
964 1.1 ad
965 1.1 ad /*
966 1.1 ad * Parse the cache info from `cpuid', if we have it.
967 1.1 ad * XXX This is kinda ugly, but hey, so is the architecture...
968 1.1 ad */
969 1.1 ad
970 1.1 ad x86_cpuid(2, descs);
971 1.1 ad
972 1.1 ad iterations = descs[0] & 0xff;
973 1.1 ad while (iterations-- > 0) {
974 1.1 ad for (i = 0; i < 4; i++) {
975 1.1 ad if (descs[i] & 0x80000000)
976 1.1 ad continue;
977 1.1 ad for (j = 0; j < 4; j++) {
978 1.1 ad if (i == 0 && j == 0)
979 1.1 ad continue;
980 1.1 ad desc = (descs[i] >> (j * 8)) & 0xff;
981 1.1 ad if (desc == 0)
982 1.1 ad continue;
983 1.1 ad cai = cache_info_lookup(intel_cpuid_cache_info,
984 1.1 ad desc);
985 1.1 ad if (cai != NULL)
986 1.1 ad ci->ci_cinfo[cai->cai_index] = *cai;
987 1.1 ad }
988 1.1 ad }
989 1.1 ad x86_cpuid(2, descs);
990 1.1 ad }
991 1.1 ad
992 1.1 ad if (ci->ci_cpuid_level < 3)
993 1.1 ad return;
994 1.1 ad
995 1.1 ad /*
996 1.1 ad * If the processor serial number misfeature is present and supported,
997 1.1 ad * extract it here.
998 1.1 ad */
999 1.18 pgoyette if ((ci->ci_feat_val[0] & CPUID_PN) != 0) {
1000 1.1 ad ci->ci_cpu_serial[0] = ci->ci_signature;
1001 1.1 ad x86_cpuid(3, descs);
1002 1.1 ad ci->ci_cpu_serial[2] = descs[2];
1003 1.1 ad ci->ci_cpu_serial[1] = descs[3];
1004 1.1 ad }
1005 1.38 dsl
1006 1.38 dsl if (ci->ci_cpuid_level < 0xd)
1007 1.38 dsl return;
1008 1.38 dsl
1009 1.38 dsl /* Get support XRC0 bits */
1010 1.38 dsl x86_cpuid2(0xd, 0, descs);
1011 1.38 dsl ci->ci_feat_val[5] = descs[0]; /* Actually 64 bits */
1012 1.38 dsl ci->ci_cur_xsave = descs[1];
1013 1.38 dsl ci->ci_max_xsave = descs[2];
1014 1.38 dsl
1015 1.38 dsl /* Additional flags (eg xsaveopt support) */
1016 1.38 dsl x86_cpuid2(0xd, 1, descs);
1017 1.38 dsl ci->ci_feat_val[6] = descs[0]; /* Actually 64 bits */
1018 1.1 ad }
1019 1.1 ad
1020 1.1 ad static void
1021 1.1 ad cpu_probe_features(struct cpu_info *ci)
1022 1.1 ad {
1023 1.1 ad const struct cpu_cpuid_nameclass *cpup = NULL;
1024 1.36 dsl unsigned int i;
1025 1.1 ad
1026 1.1 ad if (ci->ci_cpuid_level < 1)
1027 1.1 ad return;
1028 1.1 ad
1029 1.36 dsl for (i = 0; i < __arraycount(i386_cpuid_cpus); i++) {
1030 1.1 ad if (!strncmp((char *)ci->ci_vendor,
1031 1.1 ad i386_cpuid_cpus[i].cpu_id, 12)) {
1032 1.1 ad cpup = &i386_cpuid_cpus[i];
1033 1.1 ad break;
1034 1.1 ad }
1035 1.1 ad }
1036 1.1 ad
1037 1.1 ad if (cpup == NULL)
1038 1.1 ad return;
1039 1.1 ad
1040 1.36 dsl i = ci->ci_family - CPU_MINFAMILY;
1041 1.1 ad
1042 1.36 dsl if (i >= __arraycount(cpup->cpu_family))
1043 1.36 dsl i = __arraycount(cpup->cpu_family) - 1;
1044 1.1 ad
1045 1.1 ad if (cpup->cpu_family[i].cpu_probe == NULL)
1046 1.1 ad return;
1047 1.1 ad
1048 1.1 ad (*cpup->cpu_family[i].cpu_probe)(ci);
1049 1.1 ad }
1050 1.1 ad
1051 1.1 ad static void
1052 1.1 ad intel_family_new_probe(struct cpu_info *ci)
1053 1.1 ad {
1054 1.1 ad uint32_t descs[4];
1055 1.1 ad
1056 1.1 ad x86_cpuid(0x80000000, descs);
1057 1.1 ad
1058 1.1 ad /*
1059 1.1 ad * Determine extended feature flags.
1060 1.1 ad */
1061 1.1 ad if (descs[0] >= 0x80000001) {
1062 1.1 ad x86_cpuid(0x80000001, descs);
1063 1.18 pgoyette ci->ci_feat_val[2] |= descs[3];
1064 1.18 pgoyette ci->ci_feat_val[3] |= descs[2];
1065 1.1 ad }
1066 1.1 ad }
1067 1.1 ad
1068 1.1 ad static void
1069 1.1 ad amd_family6_probe(struct cpu_info *ci)
1070 1.1 ad {
1071 1.1 ad uint32_t descs[4];
1072 1.1 ad char *p;
1073 1.17 christos size_t i;
1074 1.1 ad
1075 1.1 ad x86_cpuid(0x80000000, descs);
1076 1.1 ad
1077 1.1 ad /*
1078 1.1 ad * Determine the extended feature flags.
1079 1.1 ad */
1080 1.1 ad if (descs[0] >= 0x80000001) {
1081 1.1 ad x86_cpuid(0x80000001, descs);
1082 1.18 pgoyette ci->ci_feat_val[2] |= descs[3]; /* %edx */
1083 1.18 pgoyette ci->ci_feat_val[3] = descs[2]; /* %ecx */
1084 1.1 ad }
1085 1.1 ad
1086 1.1 ad if (*cpu_brand_string == '\0')
1087 1.1 ad return;
1088 1.1 ad
1089 1.3 chris for (i = 1; i < __arraycount(amd_brand); i++)
1090 1.1 ad if ((p = strstr(cpu_brand_string, amd_brand[i])) != NULL) {
1091 1.1 ad ci->ci_brand_id = i;
1092 1.1 ad strlcpy(amd_brand_name, p, sizeof(amd_brand_name));
1093 1.1 ad break;
1094 1.1 ad }
1095 1.1 ad }
1096 1.1 ad
1097 1.1 ad static void
1098 1.1 ad amd_family5_setup(struct cpu_info *ci)
1099 1.1 ad {
1100 1.1 ad
1101 1.36 dsl switch (ci->ci_model) {
1102 1.1 ad case 0: /* AMD-K5 Model 0 */
1103 1.1 ad /*
1104 1.1 ad * According to the AMD Processor Recognition App Note,
1105 1.1 ad * the AMD-K5 Model 0 uses the wrong bit to indicate
1106 1.1 ad * support for global PTEs, instead using bit 9 (APIC)
1107 1.1 ad * rather than bit 13 (i.e. "0x200" vs. 0x2000". Oops!).
1108 1.1 ad */
1109 1.18 pgoyette if (ci->ci_feat_val[0] & CPUID_APIC)
1110 1.18 pgoyette ci->ci_feat_val[0] =
1111 1.18 pgoyette (ci->ci_feat_val[0] & ~CPUID_APIC) | CPUID_PGE;
1112 1.1 ad /*
1113 1.1 ad * XXX But pmap_pg_g is already initialized -- need to kick
1114 1.1 ad * XXX the pmap somehow. How does the MP branch do this?
1115 1.1 ad */
1116 1.1 ad break;
1117 1.1 ad }
1118 1.1 ad }
1119 1.1 ad
1120 1.1 ad static void
1121 1.1 ad tmx86_get_longrun_status(u_int *frequency, u_int *voltage, u_int *percentage)
1122 1.1 ad {
1123 1.1 ad u_int descs[4];
1124 1.1 ad
1125 1.1 ad x86_cpuid(0x80860007, descs);
1126 1.1 ad *frequency = descs[0];
1127 1.1 ad *voltage = descs[1];
1128 1.1 ad *percentage = descs[2];
1129 1.1 ad }
1130 1.1 ad
1131 1.1 ad static void
1132 1.1 ad transmeta_cpu_info(struct cpu_info *ci)
1133 1.1 ad {
1134 1.1 ad u_int descs[4], nreg;
1135 1.1 ad u_int frequency, voltage, percentage;
1136 1.1 ad
1137 1.1 ad x86_cpuid(0x80860000, descs);
1138 1.1 ad nreg = descs[0];
1139 1.1 ad if (nreg >= 0x80860001) {
1140 1.1 ad x86_cpuid(0x80860001, descs);
1141 1.1 ad aprint_verbose_dev(ci->ci_dev, "Processor revision %u.%u.%u.%u\n",
1142 1.1 ad (descs[1] >> 24) & 0xff,
1143 1.1 ad (descs[1] >> 16) & 0xff,
1144 1.1 ad (descs[1] >> 8) & 0xff,
1145 1.1 ad descs[1] & 0xff);
1146 1.1 ad }
1147 1.1 ad if (nreg >= 0x80860002) {
1148 1.1 ad x86_cpuid(0x80860002, descs);
1149 1.1 ad aprint_verbose_dev(ci->ci_dev, "Code Morphing Software Rev: %u.%u.%u-%u-%u\n",
1150 1.1 ad (descs[1] >> 24) & 0xff,
1151 1.1 ad (descs[1] >> 16) & 0xff,
1152 1.1 ad (descs[1] >> 8) & 0xff,
1153 1.1 ad descs[1] & 0xff,
1154 1.1 ad descs[2]);
1155 1.1 ad }
1156 1.1 ad if (nreg >= 0x80860006) {
1157 1.1 ad union {
1158 1.1 ad char text[65];
1159 1.1 ad u_int descs[4][4];
1160 1.1 ad } info;
1161 1.1 ad int i;
1162 1.1 ad
1163 1.1 ad for (i=0; i<4; i++) {
1164 1.1 ad x86_cpuid(0x80860003 + i, info.descs[i]);
1165 1.1 ad }
1166 1.1 ad info.text[64] = '\0';
1167 1.1 ad aprint_verbose_dev(ci->ci_dev, "%s\n", info.text);
1168 1.1 ad }
1169 1.1 ad
1170 1.1 ad if (nreg >= 0x80860007) {
1171 1.1 ad tmx86_get_longrun_status(&frequency,
1172 1.1 ad &voltage, &percentage);
1173 1.1 ad aprint_verbose_dev(ci->ci_dev, "LongRun <%dMHz %dmV %d%%>\n",
1174 1.1 ad frequency, voltage, percentage);
1175 1.1 ad }
1176 1.1 ad }
1177 1.1 ad
1178 1.38 dsl static void
1179 1.38 dsl print_bits(const char *cpuname, const char *hdr, const char *fmt, uint32_t val)
1180 1.38 dsl {
1181 1.38 dsl char buf[32 * 16];
1182 1.38 dsl char *bp;
1183 1.38 dsl
1184 1.38 dsl #define MAX_LINE_LEN 79 /* get from command arg or 'stty cols' ? */
1185 1.38 dsl
1186 1.38 dsl if (val == 0 || fmt == NULL)
1187 1.38 dsl return;
1188 1.38 dsl
1189 1.38 dsl snprintb_m(buf, sizeof(buf), fmt, val,
1190 1.38 dsl MAX_LINE_LEN - strlen(cpuname) - 2 - strlen(hdr) - 1);
1191 1.38 dsl bp = buf;
1192 1.38 dsl while (*bp != '\0') {
1193 1.38 dsl aprint_verbose("%s: %s %s\n", cpuname, hdr, bp);
1194 1.38 dsl bp += strlen(bp) + 1;
1195 1.38 dsl }
1196 1.38 dsl }
1197 1.38 dsl
1198 1.1 ad void
1199 1.32 drochner identifycpu(int fd, const char *cpuname)
1200 1.1 ad {
1201 1.18 pgoyette const char *name = "", *modifier, *vendorname, *brand = "";
1202 1.36 dsl int class = CPUCLASS_386;
1203 1.36 dsl unsigned int i;
1204 1.37 dsl int modif, family;
1205 1.1 ad const struct cpu_cpuid_nameclass *cpup = NULL;
1206 1.1 ad const struct cpu_cpuid_family *cpufam;
1207 1.1 ad struct cpu_info *ci, cistore;
1208 1.1 ad size_t sz;
1209 1.32 drochner struct cpu_ucode_version ucode;
1210 1.32 drochner union {
1211 1.32 drochner struct cpu_ucode_version_amd amd;
1212 1.32 drochner struct cpu_ucode_version_intel1 intel1;
1213 1.32 drochner } ucvers;
1214 1.1 ad
1215 1.1 ad ci = &cistore;
1216 1.34 dsl cpu_probe_base_features(ci, cpuname);
1217 1.1 ad cpu_probe_features(ci);
1218 1.1 ad
1219 1.34 dsl if (ci->ci_cpu_type >= 0) {
1220 1.34 dsl if (ci->ci_cpu_type >= (int)__arraycount(i386_nocpuid_cpus))
1221 1.34 dsl errx(1, "unknown cpu type %d", ci->ci_cpu_type);
1222 1.34 dsl name = i386_nocpuid_cpus[ci->ci_cpu_type].cpu_name;
1223 1.34 dsl cpu_vendor = i386_nocpuid_cpus[ci->ci_cpu_type].cpu_vendor;
1224 1.34 dsl vendorname = i386_nocpuid_cpus[ci->ci_cpu_type].cpu_vendorname;
1225 1.34 dsl class = i386_nocpuid_cpus[ci->ci_cpu_type].cpu_class;
1226 1.34 dsl ci->ci_info = i386_nocpuid_cpus[ci->ci_cpu_type].cpu_info;
1227 1.1 ad modifier = "";
1228 1.1 ad } else {
1229 1.1 ad modif = (ci->ci_signature >> 12) & 0x3;
1230 1.37 dsl family = ci->ci_family;
1231 1.1 ad if (family < CPU_MINFAMILY)
1232 1.1 ad errx(1, "identifycpu: strange family value");
1233 1.37 dsl if (family > CPU_MAXFAMILY)
1234 1.37 dsl family = CPU_MAXFAMILY;
1235 1.1 ad
1236 1.36 dsl for (i = 0; i < __arraycount(i386_cpuid_cpus); i++) {
1237 1.1 ad if (!strncmp((char *)ci->ci_vendor,
1238 1.1 ad i386_cpuid_cpus[i].cpu_id, 12)) {
1239 1.1 ad cpup = &i386_cpuid_cpus[i];
1240 1.1 ad break;
1241 1.1 ad }
1242 1.1 ad }
1243 1.1 ad
1244 1.1 ad if (cpup == NULL) {
1245 1.1 ad cpu_vendor = CPUVENDOR_UNKNOWN;
1246 1.1 ad if (ci->ci_vendor[0] != '\0')
1247 1.1 ad vendorname = (char *)&ci->ci_vendor[0];
1248 1.1 ad else
1249 1.1 ad vendorname = "Unknown";
1250 1.1 ad class = family - 3;
1251 1.1 ad modifier = "";
1252 1.1 ad name = "";
1253 1.1 ad ci->ci_info = NULL;
1254 1.1 ad } else {
1255 1.1 ad cpu_vendor = cpup->cpu_vendor;
1256 1.1 ad vendorname = cpup->cpu_vendorname;
1257 1.1 ad modifier = modifiers[modif];
1258 1.1 ad cpufam = &cpup->cpu_family[family - CPU_MINFAMILY];
1259 1.37 dsl name = cpufam->cpu_models[ci->ci_model];
1260 1.18 pgoyette if (name == NULL || *name == '\0')
1261 1.37 dsl name = cpufam->cpu_model_default;
1262 1.1 ad class = cpufam->cpu_class;
1263 1.1 ad ci->ci_info = cpufam->cpu_info;
1264 1.1 ad
1265 1.1 ad if (cpu_vendor == CPUVENDOR_INTEL) {
1266 1.37 dsl if (ci->ci_family == 6 && ci->ci_model >= 5) {
1267 1.1 ad const char *tmp;
1268 1.1 ad tmp = intel_family6_name(ci);
1269 1.1 ad if (tmp != NULL)
1270 1.1 ad name = tmp;
1271 1.1 ad }
1272 1.37 dsl if (ci->ci_family == 15 &&
1273 1.1 ad ci->ci_brand_id <
1274 1.1 ad __arraycount(i386_intel_brand) &&
1275 1.1 ad i386_intel_brand[ci->ci_brand_id])
1276 1.1 ad name =
1277 1.1 ad i386_intel_brand[ci->ci_brand_id];
1278 1.1 ad }
1279 1.1 ad
1280 1.1 ad if (cpu_vendor == CPUVENDOR_AMD) {
1281 1.37 dsl if (ci->ci_family == 6 && ci->ci_model >= 6) {
1282 1.1 ad if (ci->ci_brand_id == 1)
1283 1.1 ad /*
1284 1.1 ad * It's Duron. We override the
1285 1.1 ad * name, since it might have
1286 1.1 ad * been misidentified as Athlon.
1287 1.1 ad */
1288 1.1 ad name =
1289 1.1 ad amd_brand[ci->ci_brand_id];
1290 1.1 ad else
1291 1.1 ad brand = amd_brand_name;
1292 1.1 ad }
1293 1.1 ad if (CPUID2FAMILY(ci->ci_signature) == 0xf) {
1294 1.37 dsl /* Identify AMD64 CPU names. */
1295 1.1 ad const char *tmp;
1296 1.1 ad tmp = amd_amd64_name(ci);
1297 1.1 ad if (tmp != NULL)
1298 1.1 ad name = tmp;
1299 1.1 ad }
1300 1.1 ad }
1301 1.1 ad
1302 1.37 dsl if (cpu_vendor == CPUVENDOR_IDT && ci->ci_family >= 6)
1303 1.1 ad vendorname = "VIA";
1304 1.1 ad }
1305 1.1 ad }
1306 1.1 ad
1307 1.1 ad ci->ci_cpu_class = class;
1308 1.1 ad
1309 1.1 ad sz = sizeof(ci->ci_tsc_freq);
1310 1.1 ad (void)sysctlbyname("machdep.tsc_freq", &ci->ci_tsc_freq, &sz, NULL, 0);
1311 1.26 chs sz = sizeof(use_pae);
1312 1.26 chs (void)sysctlbyname("machdep.pae", &use_pae, &sz, NULL, 0);
1313 1.26 chs largepagesize = (use_pae ? 2 * 1024 * 1024 : 4 * 1024 * 1024);
1314 1.1 ad
1315 1.38 dsl /*
1316 1.38 dsl * The 'cpu_brand_string' is much more useful than the 'cpu_model'
1317 1.38 dsl * we try to determine from the family/model values.
1318 1.38 dsl */
1319 1.38 dsl if (*cpu_brand_string != '\0')
1320 1.38 dsl aprint_normal("%s: \"%s\"\n", cpuname, cpu_brand_string);
1321 1.38 dsl
1322 1.38 dsl aprint_normal("%s: %s", cpuname, vendorname);
1323 1.38 dsl if (*modifier)
1324 1.38 dsl aprint_normal(" %s", modifier);
1325 1.38 dsl if (*name)
1326 1.38 dsl aprint_normal(" %s", name);
1327 1.38 dsl if (*brand)
1328 1.38 dsl aprint_normal(" %s", brand);
1329 1.38 dsl aprint_normal(" (%s-class)", classnames[class]);
1330 1.1 ad
1331 1.1 ad if (ci->ci_tsc_freq != 0)
1332 1.38 dsl aprint_normal(", %ju.%02ju MHz\n",
1333 1.28 joerg ((uintmax_t)ci->ci_tsc_freq + 4999) / 1000000,
1334 1.28 joerg (((uintmax_t)ci->ci_tsc_freq + 4999) / 10000) % 100);
1335 1.38 dsl
1336 1.38 dsl aprint_normal_dev(ci->ci_dev, "family %#x model %#x stepping %#x",
1337 1.38 dsl ci->ci_family, ci->ci_model, CPUID2STEPPING(ci->ci_signature));
1338 1.1 ad if (ci->ci_signature != 0)
1339 1.38 dsl aprint_normal(" (id %#x)", ci->ci_signature);
1340 1.1 ad aprint_normal("\n");
1341 1.1 ad
1342 1.1 ad if (ci->ci_info)
1343 1.1 ad (*ci->ci_info)(ci);
1344 1.1 ad
1345 1.18 pgoyette /*
1346 1.18 pgoyette * display CPU feature flags
1347 1.18 pgoyette */
1348 1.18 pgoyette
1349 1.38 dsl print_bits(cpuname, "features", CPUID_FLAGS1, ci->ci_feat_val[0]);
1350 1.38 dsl print_bits(cpuname, "features1", CPUID2_FLAGS1, ci->ci_feat_val[1]);
1351 1.18 pgoyette
1352 1.38 dsl /* These next two are actually common definitions! */
1353 1.38 dsl print_bits(cpuname, "features2",
1354 1.38 dsl cpu_vendor == CPUVENDOR_INTEL ? CPUID_INTEL_EXT_FLAGS
1355 1.38 dsl : CPUID_EXT_FLAGS, ci->ci_feat_val[2]);
1356 1.38 dsl print_bits(cpuname, "features3",
1357 1.38 dsl cpu_vendor == CPUVENDOR_INTEL ? CPUID_INTEL_FLAGS4
1358 1.38 dsl : CPUID_AMD_FLAGS4, ci->ci_feat_val[3]);
1359 1.38 dsl
1360 1.38 dsl print_bits(cpuname, "padloack features", CPUID_FLAGS_PADLOCK,
1361 1.38 dsl ci->ci_feat_val[4]);
1362 1.38 dsl
1363 1.38 dsl print_bits(cpuname, "xsave features", XCR0_FLAGS1, ci->ci_feat_val[5]);
1364 1.38 dsl print_bits(cpuname, "xsave instructions", CPUID_PES1_FLAGS,
1365 1.38 dsl ci->ci_feat_val[6]);
1366 1.38 dsl
1367 1.38 dsl if (ci->ci_max_xsave != 0) {
1368 1.38 dsl aprint_normal("%s: xsave area size: current %d, maximum %d",
1369 1.38 dsl cpuname, ci->ci_cur_xsave, ci->ci_max_xsave);
1370 1.38 dsl aprint_normal(", xgetbv %sabled\n",
1371 1.38 dsl ci->ci_feat_val[1] & CPUID2_OSXSAVE ? "en" : "dis");
1372 1.38 dsl if (ci->ci_feat_val[1] & CPUID2_OSXSAVE)
1373 1.38 dsl print_bits(cpuname, "enabled xsave", XCR0_FLAGS1,
1374 1.38 dsl x86_xgetbv());
1375 1.12 cegger }
1376 1.1 ad
1377 1.1 ad x86_print_cacheinfo(ci);
1378 1.1 ad
1379 1.18 pgoyette if (ci->ci_cpuid_level >= 3 && (ci->ci_feat_val[0] & CPUID_PN)) {
1380 1.1 ad aprint_verbose("%s: serial number %04X-%04X-%04X-%04X-%04X-%04X\n",
1381 1.1 ad cpuname,
1382 1.1 ad ci->ci_cpu_serial[0] / 65536, ci->ci_cpu_serial[0] % 65536,
1383 1.1 ad ci->ci_cpu_serial[1] / 65536, ci->ci_cpu_serial[1] % 65536,
1384 1.1 ad ci->ci_cpu_serial[2] / 65536, ci->ci_cpu_serial[2] % 65536);
1385 1.1 ad }
1386 1.1 ad
1387 1.1 ad if (ci->ci_cpu_class == CPUCLASS_386) {
1388 1.1 ad errx(1, "NetBSD requires an 80486 or later processor");
1389 1.1 ad }
1390 1.1 ad
1391 1.34 dsl if (ci->ci_cpu_type == CPU_486DLC) {
1392 1.1 ad #ifndef CYRIX_CACHE_WORKS
1393 1.1 ad aprint_error("WARNING: CYRIX 486DLC CACHE UNCHANGED.\n");
1394 1.1 ad #else
1395 1.1 ad #ifndef CYRIX_CACHE_REALLY_WORKS
1396 1.1 ad aprint_error("WARNING: CYRIX 486DLC CACHE ENABLED IN HOLD-FLUSH MODE.\n");
1397 1.1 ad #else
1398 1.1 ad aprint_error("WARNING: CYRIX 486DLC CACHE ENABLED.\n");
1399 1.1 ad #endif
1400 1.1 ad #endif
1401 1.1 ad }
1402 1.1 ad
1403 1.1 ad /*
1404 1.1 ad * Everything past this point requires a Pentium or later.
1405 1.1 ad */
1406 1.1 ad if (ci->ci_cpuid_level < 0)
1407 1.1 ad return;
1408 1.1 ad
1409 1.1 ad identifycpu_cpuids(ci);
1410 1.1 ad
1411 1.1 ad #ifdef INTEL_CORETEMP
1412 1.1 ad if (cpu_vendor == CPUVENDOR_INTEL && ci->ci_cpuid_level >= 0x06)
1413 1.1 ad coretemp_register(ci);
1414 1.1 ad #endif
1415 1.1 ad
1416 1.5 ad if (cpu_vendor == CPUVENDOR_AMD) {
1417 1.22 cegger uint32_t data[4];
1418 1.15 yamt
1419 1.22 cegger x86_cpuid(0x80000000, data);
1420 1.22 cegger if (data[0] >= 0x80000007)
1421 1.22 cegger powernow_probe(ci);
1422 1.22 cegger
1423 1.22 cegger if ((data[0] >= 0x8000000a)
1424 1.22 cegger && (ci->ci_feat_val[3] & CPUID_SVM) != 0) {
1425 1.15 yamt x86_cpuid(0x8000000a, data);
1426 1.15 yamt aprint_verbose("%s: SVM Rev. %d\n", cpuname,
1427 1.15 yamt data[0] & 0xf);
1428 1.15 yamt aprint_verbose("%s: SVM NASID %d\n", cpuname, data[1]);
1429 1.38 dsl print_bits(cpuname, "SVM features", CPUID_AMD_SVM_FLAGS,
1430 1.38 dsl data[3]);
1431 1.15 yamt }
1432 1.39 yamt } else if (cpu_vendor == CPUVENDOR_INTEL) {
1433 1.39 yamt uint32_t data[4];
1434 1.39 yamt uint32_t highest_basic_info;
1435 1.39 yamt uint32_t bi_index;
1436 1.39 yamt
1437 1.39 yamt x86_cpuid(0x00000000, data);
1438 1.39 yamt highest_basic_info = data[0];
1439 1.39 yamt aprint_verbose("%s: highest basic info %08x\n", cpuname,
1440 1.39 yamt highest_basic_info);
1441 1.39 yamt for (bi_index = 1; bi_index <= highest_basic_info; bi_index++) {
1442 1.39 yamt x86_cpuid(bi_index, data);
1443 1.39 yamt switch (bi_index) {
1444 1.39 yamt case 6:
1445 1.39 yamt print_bits(cpuname, "DSPM-eax",
1446 1.39 yamt CPUID_DSPM_FLAGS, data[0]);
1447 1.39 yamt print_bits(cpuname, "DSPM-ecx",
1448 1.39 yamt CPUID_DSPM_FLAGS1, data[2]);
1449 1.39 yamt break;
1450 1.39 yamt case 7:
1451 1.39 yamt aprint_verbose("%s: SEF highest subleaf %08x\n",
1452 1.39 yamt cpuname, data[0]);
1453 1.39 yamt print_bits(cpuname, "SEF-main", CPUID_SEF_FLAGS,
1454 1.39 yamt data[1]);
1455 1.39 yamt break;
1456 1.39 yamt #if 0
1457 1.39 yamt default:
1458 1.39 yamt aprint_verbose("%s: basic %08x-eax %08x\n",
1459 1.39 yamt cpuname, bi_index, data[0]);
1460 1.39 yamt aprint_verbose("%s: basic %08x-ebx %08x\n",
1461 1.39 yamt cpuname, bi_index, data[1]);
1462 1.39 yamt aprint_verbose("%s: basic %08x-ecx %08x\n",
1463 1.39 yamt cpuname, bi_index, data[2]);
1464 1.39 yamt aprint_verbose("%s: basic %08x-edx %08x\n",
1465 1.39 yamt cpuname, bi_index, data[3]);
1466 1.39 yamt break;
1467 1.39 yamt #endif
1468 1.39 yamt }
1469 1.39 yamt }
1470 1.1 ad }
1471 1.1 ad
1472 1.1 ad #ifdef INTEL_ONDEMAND_CLOCKMOD
1473 1.1 ad clockmod_init();
1474 1.1 ad #endif
1475 1.2 ad
1476 1.32 drochner if (cpu_vendor == CPUVENDOR_AMD)
1477 1.32 drochner ucode.loader_version = CPU_UCODE_LOADER_AMD;
1478 1.32 drochner else if (cpu_vendor == CPUVENDOR_INTEL)
1479 1.32 drochner ucode.loader_version = CPU_UCODE_LOADER_INTEL1;
1480 1.32 drochner else
1481 1.32 drochner return;
1482 1.35 dsl
1483 1.32 drochner ucode.data = &ucvers;
1484 1.35 dsl if (ioctl(fd, IOC_CPU_UCODE_GET_VERSION, &ucode) < 0) {
1485 1.35 dsl #ifdef __i386__
1486 1.35 dsl struct cpu_ucode_version_64 ucode_64;
1487 1.35 dsl if (errno != ENOTTY)
1488 1.35 dsl return;
1489 1.35 dsl /* Try the 64 bit ioctl */
1490 1.35 dsl memset(&ucode_64, 0, sizeof ucode_64);
1491 1.35 dsl ucode_64.data = &ucvers;
1492 1.35 dsl ucode_64.loader_version = ucode.loader_version;
1493 1.35 dsl if (ioctl(fd, IOC_CPU_UCODE_GET_VERSION_64, &ucode_64) < 0)
1494 1.35 dsl return;
1495 1.35 dsl #endif
1496 1.35 dsl }
1497 1.35 dsl
1498 1.32 drochner if (cpu_vendor == CPUVENDOR_AMD)
1499 1.32 drochner printf("%s: UCode version: 0x%"PRIx64"\n", cpuname, ucvers.amd.version);
1500 1.32 drochner else if (cpu_vendor == CPUVENDOR_INTEL)
1501 1.32 drochner printf("%s: microcode version 0x%x, platform ID %d\n", cpuname,
1502 1.32 drochner ucvers.intel1.ucodeversion, ucvers.intel1.platformid);
1503 1.1 ad }
1504 1.1 ad
1505 1.1 ad static const char *
1506 1.1 ad print_cache_config(struct cpu_info *ci, int cache_tag, const char *name,
1507 1.1 ad const char *sep)
1508 1.1 ad {
1509 1.1 ad struct x86_cache_info *cai = &ci->ci_cinfo[cache_tag];
1510 1.7 christos char human_num[HUMAN_BUFSIZE];
1511 1.1 ad
1512 1.1 ad if (cai->cai_totalsize == 0)
1513 1.1 ad return sep;
1514 1.1 ad
1515 1.1 ad if (sep == NULL)
1516 1.1 ad aprint_verbose_dev(ci->ci_dev, "");
1517 1.1 ad else
1518 1.1 ad aprint_verbose("%s", sep);
1519 1.1 ad if (name != NULL)
1520 1.1 ad aprint_verbose("%s ", name);
1521 1.1 ad
1522 1.1 ad if (cai->cai_string != NULL) {
1523 1.1 ad aprint_verbose("%s ", cai->cai_string);
1524 1.1 ad } else {
1525 1.8 christos (void)humanize_number(human_num, sizeof(human_num),
1526 1.7 christos cai->cai_totalsize, "B", HN_AUTOSCALE, HN_NOSPACE);
1527 1.7 christos aprint_verbose("%s %dB/line ", human_num, cai->cai_linesize);
1528 1.1 ad }
1529 1.1 ad switch (cai->cai_associativity) {
1530 1.1 ad case 0:
1531 1.1 ad aprint_verbose("disabled");
1532 1.1 ad break;
1533 1.1 ad case 1:
1534 1.1 ad aprint_verbose("direct-mapped");
1535 1.1 ad break;
1536 1.1 ad case 0xff:
1537 1.1 ad aprint_verbose("fully associative");
1538 1.1 ad break;
1539 1.1 ad default:
1540 1.1 ad aprint_verbose("%d-way", cai->cai_associativity);
1541 1.1 ad break;
1542 1.1 ad }
1543 1.1 ad return ", ";
1544 1.1 ad }
1545 1.1 ad
1546 1.1 ad static const char *
1547 1.1 ad print_tlb_config(struct cpu_info *ci, int cache_tag, const char *name,
1548 1.1 ad const char *sep)
1549 1.1 ad {
1550 1.1 ad struct x86_cache_info *cai = &ci->ci_cinfo[cache_tag];
1551 1.7 christos char human_num[HUMAN_BUFSIZE];
1552 1.1 ad
1553 1.1 ad if (cai->cai_totalsize == 0)
1554 1.1 ad return sep;
1555 1.1 ad
1556 1.1 ad if (sep == NULL)
1557 1.1 ad aprint_verbose_dev(ci->ci_dev, "");
1558 1.1 ad else
1559 1.1 ad aprint_verbose("%s", sep);
1560 1.1 ad if (name != NULL)
1561 1.1 ad aprint_verbose("%s ", name);
1562 1.1 ad
1563 1.1 ad if (cai->cai_string != NULL) {
1564 1.1 ad aprint_verbose("%s", cai->cai_string);
1565 1.1 ad } else {
1566 1.7 christos (void)humanize_number(human_num, sizeof(human_num),
1567 1.7 christos cai->cai_linesize, "B", HN_AUTOSCALE, HN_NOSPACE);
1568 1.7 christos aprint_verbose("%d %s entries ", cai->cai_totalsize,
1569 1.7 christos human_num);
1570 1.1 ad switch (cai->cai_associativity) {
1571 1.1 ad case 0:
1572 1.1 ad aprint_verbose("disabled");
1573 1.1 ad break;
1574 1.1 ad case 1:
1575 1.1 ad aprint_verbose("direct-mapped");
1576 1.1 ad break;
1577 1.1 ad case 0xff:
1578 1.1 ad aprint_verbose("fully associative");
1579 1.1 ad break;
1580 1.1 ad default:
1581 1.1 ad aprint_verbose("%d-way", cai->cai_associativity);
1582 1.1 ad break;
1583 1.1 ad }
1584 1.1 ad }
1585 1.1 ad return ", ";
1586 1.1 ad }
1587 1.1 ad
1588 1.1 ad static const struct x86_cache_info *
1589 1.1 ad cache_info_lookup(const struct x86_cache_info *cai, uint8_t desc)
1590 1.1 ad {
1591 1.1 ad int i;
1592 1.1 ad
1593 1.1 ad for (i = 0; cai[i].cai_desc != 0; i++) {
1594 1.1 ad if (cai[i].cai_desc == desc)
1595 1.1 ad return (&cai[i]);
1596 1.1 ad }
1597 1.1 ad
1598 1.1 ad return (NULL);
1599 1.1 ad }
1600 1.1 ad
1601 1.7 christos static const struct x86_cache_info amd_cpuid_l2cache_assoc_info[] =
1602 1.7 christos AMD_L2CACHE_INFO;
1603 1.1 ad
1604 1.7 christos static const struct x86_cache_info amd_cpuid_l3cache_assoc_info[] =
1605 1.7 christos AMD_L3CACHE_INFO;
1606 1.1 ad
1607 1.1 ad static void
1608 1.1 ad amd_cpu_cacheinfo(struct cpu_info *ci)
1609 1.1 ad {
1610 1.1 ad const struct x86_cache_info *cp;
1611 1.1 ad struct x86_cache_info *cai;
1612 1.1 ad u_int descs[4];
1613 1.1 ad u_int lfunc;
1614 1.1 ad
1615 1.1 ad /*
1616 1.1 ad * K5 model 0 has none of this info.
1617 1.1 ad */
1618 1.36 dsl if (ci->ci_family == 5 && ci->ci_model == 0)
1619 1.1 ad return;
1620 1.1 ad
1621 1.1 ad /*
1622 1.1 ad * Determine the largest extended function value.
1623 1.1 ad */
1624 1.1 ad x86_cpuid(0x80000000, descs);
1625 1.1 ad lfunc = descs[0];
1626 1.1 ad
1627 1.1 ad /*
1628 1.1 ad * Determine L1 cache/TLB info.
1629 1.1 ad */
1630 1.1 ad if (lfunc < 0x80000005) {
1631 1.1 ad /* No L1 cache info available. */
1632 1.1 ad return;
1633 1.1 ad }
1634 1.1 ad
1635 1.1 ad x86_cpuid(0x80000005, descs);
1636 1.1 ad
1637 1.1 ad /*
1638 1.1 ad * K6-III and higher have large page TLBs.
1639 1.1 ad */
1640 1.36 dsl if ((ci->ci_family == 5 && ci->ci_model >= 9) || ci->ci_family >= 6) {
1641 1.1 ad cai = &ci->ci_cinfo[CAI_ITLB2];
1642 1.1 ad cai->cai_totalsize = AMD_L1_EAX_ITLB_ENTRIES(descs[0]);
1643 1.1 ad cai->cai_associativity = AMD_L1_EAX_ITLB_ASSOC(descs[0]);
1644 1.26 chs cai->cai_linesize = largepagesize;
1645 1.1 ad
1646 1.1 ad cai = &ci->ci_cinfo[CAI_DTLB2];
1647 1.1 ad cai->cai_totalsize = AMD_L1_EAX_DTLB_ENTRIES(descs[0]);
1648 1.1 ad cai->cai_associativity = AMD_L1_EAX_DTLB_ASSOC(descs[0]);
1649 1.26 chs cai->cai_linesize = largepagesize;
1650 1.1 ad }
1651 1.1 ad
1652 1.1 ad cai = &ci->ci_cinfo[CAI_ITLB];
1653 1.1 ad cai->cai_totalsize = AMD_L1_EBX_ITLB_ENTRIES(descs[1]);
1654 1.1 ad cai->cai_associativity = AMD_L1_EBX_ITLB_ASSOC(descs[1]);
1655 1.1 ad cai->cai_linesize = (4 * 1024);
1656 1.1 ad
1657 1.1 ad cai = &ci->ci_cinfo[CAI_DTLB];
1658 1.1 ad cai->cai_totalsize = AMD_L1_EBX_DTLB_ENTRIES(descs[1]);
1659 1.1 ad cai->cai_associativity = AMD_L1_EBX_DTLB_ASSOC(descs[1]);
1660 1.1 ad cai->cai_linesize = (4 * 1024);
1661 1.1 ad
1662 1.1 ad cai = &ci->ci_cinfo[CAI_DCACHE];
1663 1.1 ad cai->cai_totalsize = AMD_L1_ECX_DC_SIZE(descs[2]);
1664 1.1 ad cai->cai_associativity = AMD_L1_ECX_DC_ASSOC(descs[2]);
1665 1.27 yamt cai->cai_linesize = AMD_L1_ECX_DC_LS(descs[2]);
1666 1.1 ad
1667 1.1 ad cai = &ci->ci_cinfo[CAI_ICACHE];
1668 1.1 ad cai->cai_totalsize = AMD_L1_EDX_IC_SIZE(descs[3]);
1669 1.1 ad cai->cai_associativity = AMD_L1_EDX_IC_ASSOC(descs[3]);
1670 1.1 ad cai->cai_linesize = AMD_L1_EDX_IC_LS(descs[3]);
1671 1.1 ad
1672 1.1 ad /*
1673 1.1 ad * Determine L2 cache/TLB info.
1674 1.1 ad */
1675 1.1 ad if (lfunc < 0x80000006) {
1676 1.1 ad /* No L2 cache info available. */
1677 1.1 ad return;
1678 1.1 ad }
1679 1.1 ad
1680 1.1 ad x86_cpuid(0x80000006, descs);
1681 1.1 ad
1682 1.26 chs cai = &ci->ci_cinfo[CAI_L2_ITLB];
1683 1.26 chs cai->cai_totalsize = AMD_L2_EBX_IUTLB_ENTRIES(descs[1]);
1684 1.26 chs cai->cai_associativity = AMD_L2_EBX_IUTLB_ASSOC(descs[1]);
1685 1.26 chs cai->cai_linesize = (4 * 1024);
1686 1.26 chs cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1687 1.26 chs cai->cai_associativity);
1688 1.26 chs if (cp != NULL)
1689 1.26 chs cai->cai_associativity = cp->cai_associativity;
1690 1.26 chs else
1691 1.26 chs cai->cai_associativity = 0; /* XXX Unknown/reserved */
1692 1.26 chs
1693 1.26 chs cai = &ci->ci_cinfo[CAI_L2_ITLB2];
1694 1.26 chs cai->cai_totalsize = AMD_L2_EAX_IUTLB_ENTRIES(descs[0]);
1695 1.26 chs cai->cai_associativity = AMD_L2_EAX_IUTLB_ASSOC(descs[0]);
1696 1.26 chs cai->cai_linesize = largepagesize;
1697 1.26 chs cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1698 1.26 chs cai->cai_associativity);
1699 1.26 chs if (cp != NULL)
1700 1.26 chs cai->cai_associativity = cp->cai_associativity;
1701 1.26 chs else
1702 1.26 chs cai->cai_associativity = 0; /* XXX Unknown/reserved */
1703 1.26 chs
1704 1.26 chs cai = &ci->ci_cinfo[CAI_L2_DTLB];
1705 1.26 chs cai->cai_totalsize = AMD_L2_EBX_DTLB_ENTRIES(descs[1]);
1706 1.26 chs cai->cai_associativity = AMD_L2_EBX_DTLB_ASSOC(descs[1]);
1707 1.26 chs cai->cai_linesize = (4 * 1024);
1708 1.26 chs cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1709 1.26 chs cai->cai_associativity);
1710 1.26 chs if (cp != NULL)
1711 1.26 chs cai->cai_associativity = cp->cai_associativity;
1712 1.26 chs else
1713 1.26 chs cai->cai_associativity = 0; /* XXX Unknown/reserved */
1714 1.26 chs
1715 1.26 chs cai = &ci->ci_cinfo[CAI_L2_DTLB2];
1716 1.26 chs cai->cai_totalsize = AMD_L2_EAX_DTLB_ENTRIES(descs[0]);
1717 1.26 chs cai->cai_associativity = AMD_L2_EAX_DTLB_ASSOC(descs[0]);
1718 1.26 chs cai->cai_linesize = largepagesize;
1719 1.26 chs cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1720 1.26 chs cai->cai_associativity);
1721 1.26 chs if (cp != NULL)
1722 1.26 chs cai->cai_associativity = cp->cai_associativity;
1723 1.26 chs else
1724 1.26 chs cai->cai_associativity = 0; /* XXX Unknown/reserved */
1725 1.26 chs
1726 1.1 ad cai = &ci->ci_cinfo[CAI_L2CACHE];
1727 1.1 ad cai->cai_totalsize = AMD_L2_ECX_C_SIZE(descs[2]);
1728 1.1 ad cai->cai_associativity = AMD_L2_ECX_C_ASSOC(descs[2]);
1729 1.1 ad cai->cai_linesize = AMD_L2_ECX_C_LS(descs[2]);
1730 1.1 ad
1731 1.1 ad cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1732 1.1 ad cai->cai_associativity);
1733 1.1 ad if (cp != NULL)
1734 1.1 ad cai->cai_associativity = cp->cai_associativity;
1735 1.1 ad else
1736 1.1 ad cai->cai_associativity = 0; /* XXX Unknown/reserved */
1737 1.7 christos
1738 1.7 christos /*
1739 1.30 cegger * Determine L3 cache info on AMD Family 10h and newer processors
1740 1.7 christos */
1741 1.36 dsl if (ci->ci_family >= 0x10) {
1742 1.7 christos cai = &ci->ci_cinfo[CAI_L3CACHE];
1743 1.7 christos cai->cai_totalsize = AMD_L3_EDX_C_SIZE(descs[3]);
1744 1.7 christos cai->cai_associativity = AMD_L3_EDX_C_ASSOC(descs[3]);
1745 1.7 christos cai->cai_linesize = AMD_L3_EDX_C_LS(descs[3]);
1746 1.7 christos
1747 1.7 christos cp = cache_info_lookup(amd_cpuid_l3cache_assoc_info,
1748 1.7 christos cai->cai_associativity);
1749 1.7 christos if (cp != NULL)
1750 1.7 christos cai->cai_associativity = cp->cai_associativity;
1751 1.7 christos else
1752 1.7 christos cai->cai_associativity = 0; /* XXX Unkn/Rsvd */
1753 1.7 christos }
1754 1.26 chs
1755 1.26 chs /*
1756 1.26 chs * Determine 1GB TLB info.
1757 1.26 chs */
1758 1.26 chs if (lfunc < 0x80000019) {
1759 1.26 chs /* No 1GB TLB info available. */
1760 1.26 chs return;
1761 1.26 chs }
1762 1.26 chs
1763 1.26 chs x86_cpuid(0x80000019, descs);
1764 1.26 chs
1765 1.26 chs cai = &ci->ci_cinfo[CAI_L1_1GBITLB];
1766 1.26 chs cai->cai_totalsize = AMD_L1_1GB_EAX_IUTLB_ENTRIES(descs[0]);
1767 1.26 chs cai->cai_associativity = AMD_L1_1GB_EAX_IUTLB_ASSOC(descs[0]);
1768 1.26 chs cai->cai_linesize = (1024 * 1024 * 1024);
1769 1.26 chs cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1770 1.26 chs cai->cai_associativity);
1771 1.26 chs if (cp != NULL)
1772 1.26 chs cai->cai_associativity = cp->cai_associativity;
1773 1.26 chs else
1774 1.26 chs cai->cai_associativity = 0; /* XXX Unknown/reserved */
1775 1.26 chs
1776 1.26 chs cai = &ci->ci_cinfo[CAI_L1_1GBDTLB];
1777 1.26 chs cai->cai_totalsize = AMD_L1_1GB_EAX_DTLB_ENTRIES(descs[0]);
1778 1.26 chs cai->cai_associativity = AMD_L1_1GB_EAX_DTLB_ASSOC(descs[0]);
1779 1.26 chs cai->cai_linesize = (1024 * 1024 * 1024);
1780 1.26 chs cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1781 1.26 chs cai->cai_associativity);
1782 1.26 chs if (cp != NULL)
1783 1.26 chs cai->cai_associativity = cp->cai_associativity;
1784 1.26 chs else
1785 1.26 chs cai->cai_associativity = 0; /* XXX Unknown/reserved */
1786 1.26 chs
1787 1.26 chs cai = &ci->ci_cinfo[CAI_L2_1GBITLB];
1788 1.26 chs cai->cai_totalsize = AMD_L2_1GB_EBX_IUTLB_ENTRIES(descs[1]);
1789 1.26 chs cai->cai_associativity = AMD_L2_1GB_EBX_IUTLB_ASSOC(descs[1]);
1790 1.26 chs cai->cai_linesize = (1024 * 1024 * 1024);
1791 1.26 chs cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1792 1.26 chs cai->cai_associativity);
1793 1.26 chs if (cp != NULL)
1794 1.26 chs cai->cai_associativity = cp->cai_associativity;
1795 1.26 chs else
1796 1.26 chs cai->cai_associativity = 0; /* XXX Unknown/reserved */
1797 1.26 chs
1798 1.26 chs cai = &ci->ci_cinfo[CAI_L2_1GBDTLB];
1799 1.26 chs cai->cai_totalsize = AMD_L2_1GB_EBX_DUTLB_ENTRIES(descs[1]);
1800 1.26 chs cai->cai_associativity = AMD_L2_1GB_EBX_DUTLB_ASSOC(descs[1]);
1801 1.26 chs cai->cai_linesize = (1024 * 1024 * 1024);
1802 1.26 chs cp = cache_info_lookup(amd_cpuid_l2cache_assoc_info,
1803 1.26 chs cai->cai_associativity);
1804 1.26 chs if (cp != NULL)
1805 1.26 chs cai->cai_associativity = cp->cai_associativity;
1806 1.26 chs else
1807 1.26 chs cai->cai_associativity = 0; /* XXX Unknown/reserved */
1808 1.1 ad }
1809 1.1 ad
1810 1.1 ad static void
1811 1.1 ad via_cpu_cacheinfo(struct cpu_info *ci)
1812 1.1 ad {
1813 1.1 ad struct x86_cache_info *cai;
1814 1.36 dsl int stepping;
1815 1.1 ad u_int descs[4];
1816 1.1 ad u_int lfunc;
1817 1.1 ad
1818 1.1 ad stepping = CPUID2STEPPING(ci->ci_signature);
1819 1.1 ad
1820 1.1 ad /*
1821 1.1 ad * Determine the largest extended function value.
1822 1.1 ad */
1823 1.1 ad x86_cpuid(0x80000000, descs);
1824 1.1 ad lfunc = descs[0];
1825 1.1 ad
1826 1.1 ad /*
1827 1.1 ad * Determine L1 cache/TLB info.
1828 1.1 ad */
1829 1.1 ad if (lfunc < 0x80000005) {
1830 1.1 ad /* No L1 cache info available. */
1831 1.1 ad return;
1832 1.1 ad }
1833 1.1 ad
1834 1.1 ad x86_cpuid(0x80000005, descs);
1835 1.1 ad
1836 1.1 ad cai = &ci->ci_cinfo[CAI_ITLB];
1837 1.1 ad cai->cai_totalsize = VIA_L1_EBX_ITLB_ENTRIES(descs[1]);
1838 1.1 ad cai->cai_associativity = VIA_L1_EBX_ITLB_ASSOC(descs[1]);
1839 1.1 ad cai->cai_linesize = (4 * 1024);
1840 1.1 ad
1841 1.1 ad cai = &ci->ci_cinfo[CAI_DTLB];
1842 1.1 ad cai->cai_totalsize = VIA_L1_EBX_DTLB_ENTRIES(descs[1]);
1843 1.1 ad cai->cai_associativity = VIA_L1_EBX_DTLB_ASSOC(descs[1]);
1844 1.1 ad cai->cai_linesize = (4 * 1024);
1845 1.1 ad
1846 1.1 ad cai = &ci->ci_cinfo[CAI_DCACHE];
1847 1.1 ad cai->cai_totalsize = VIA_L1_ECX_DC_SIZE(descs[2]);
1848 1.1 ad cai->cai_associativity = VIA_L1_ECX_DC_ASSOC(descs[2]);
1849 1.1 ad cai->cai_linesize = VIA_L1_EDX_IC_LS(descs[2]);
1850 1.36 dsl if (ci->ci_model == 9 && stepping == 8) {
1851 1.1 ad /* Erratum: stepping 8 reports 4 when it should be 2 */
1852 1.1 ad cai->cai_associativity = 2;
1853 1.1 ad }
1854 1.1 ad
1855 1.1 ad cai = &ci->ci_cinfo[CAI_ICACHE];
1856 1.1 ad cai->cai_totalsize = VIA_L1_EDX_IC_SIZE(descs[3]);
1857 1.1 ad cai->cai_associativity = VIA_L1_EDX_IC_ASSOC(descs[3]);
1858 1.1 ad cai->cai_linesize = VIA_L1_EDX_IC_LS(descs[3]);
1859 1.36 dsl if (ci->ci_model == 9 && stepping == 8) {
1860 1.1 ad /* Erratum: stepping 8 reports 4 when it should be 2 */
1861 1.1 ad cai->cai_associativity = 2;
1862 1.1 ad }
1863 1.1 ad
1864 1.1 ad /*
1865 1.1 ad * Determine L2 cache/TLB info.
1866 1.1 ad */
1867 1.1 ad if (lfunc < 0x80000006) {
1868 1.1 ad /* No L2 cache info available. */
1869 1.1 ad return;
1870 1.1 ad }
1871 1.1 ad
1872 1.1 ad x86_cpuid(0x80000006, descs);
1873 1.1 ad
1874 1.1 ad cai = &ci->ci_cinfo[CAI_L2CACHE];
1875 1.36 dsl if (ci->ci_model >= 9) {
1876 1.1 ad cai->cai_totalsize = VIA_L2N_ECX_C_SIZE(descs[2]);
1877 1.1 ad cai->cai_associativity = VIA_L2N_ECX_C_ASSOC(descs[2]);
1878 1.1 ad cai->cai_linesize = VIA_L2N_ECX_C_LS(descs[2]);
1879 1.1 ad } else {
1880 1.1 ad cai->cai_totalsize = VIA_L2_ECX_C_SIZE(descs[2]);
1881 1.1 ad cai->cai_associativity = VIA_L2_ECX_C_ASSOC(descs[2]);
1882 1.1 ad cai->cai_linesize = VIA_L2_ECX_C_LS(descs[2]);
1883 1.1 ad }
1884 1.1 ad }
1885 1.1 ad
1886 1.1 ad static void
1887 1.1 ad x86_print_cacheinfo(struct cpu_info *ci)
1888 1.1 ad {
1889 1.1 ad const char *sep;
1890 1.1 ad
1891 1.1 ad if (ci->ci_cinfo[CAI_ICACHE].cai_totalsize != 0 ||
1892 1.1 ad ci->ci_cinfo[CAI_DCACHE].cai_totalsize != 0) {
1893 1.1 ad sep = print_cache_config(ci, CAI_ICACHE, "I-cache", NULL);
1894 1.1 ad sep = print_cache_config(ci, CAI_DCACHE, "D-cache", sep);
1895 1.1 ad if (sep != NULL)
1896 1.1 ad aprint_verbose("\n");
1897 1.1 ad }
1898 1.1 ad if (ci->ci_cinfo[CAI_L2CACHE].cai_totalsize != 0) {
1899 1.1 ad sep = print_cache_config(ci, CAI_L2CACHE, "L2 cache", NULL);
1900 1.1 ad if (sep != NULL)
1901 1.1 ad aprint_verbose("\n");
1902 1.1 ad }
1903 1.26 chs if (ci->ci_cinfo[CAI_L3CACHE].cai_totalsize != 0) {
1904 1.26 chs sep = print_cache_config(ci, CAI_L3CACHE, "L3 cache", NULL);
1905 1.26 chs if (sep != NULL)
1906 1.26 chs aprint_verbose("\n");
1907 1.26 chs }
1908 1.1 ad if (ci->ci_cinfo[CAI_ITLB].cai_totalsize != 0) {
1909 1.1 ad sep = print_tlb_config(ci, CAI_ITLB, "ITLB", NULL);
1910 1.1 ad sep = print_tlb_config(ci, CAI_ITLB2, NULL, sep);
1911 1.1 ad if (sep != NULL)
1912 1.1 ad aprint_verbose("\n");
1913 1.1 ad }
1914 1.1 ad if (ci->ci_cinfo[CAI_DTLB].cai_totalsize != 0) {
1915 1.1 ad sep = print_tlb_config(ci, CAI_DTLB, "DTLB", NULL);
1916 1.1 ad sep = print_tlb_config(ci, CAI_DTLB2, NULL, sep);
1917 1.1 ad if (sep != NULL)
1918 1.1 ad aprint_verbose("\n");
1919 1.1 ad }
1920 1.26 chs if (ci->ci_cinfo[CAI_L2_ITLB].cai_totalsize != 0) {
1921 1.26 chs sep = print_tlb_config(ci, CAI_L2_ITLB, "L2 ITLB", NULL);
1922 1.26 chs sep = print_tlb_config(ci, CAI_L2_ITLB2, NULL, sep);
1923 1.26 chs if (sep != NULL)
1924 1.26 chs aprint_verbose("\n");
1925 1.26 chs }
1926 1.26 chs if (ci->ci_cinfo[CAI_L2_DTLB].cai_totalsize != 0) {
1927 1.26 chs sep = print_tlb_config(ci, CAI_L2_DTLB, "L2 DTLB", NULL);
1928 1.26 chs sep = print_tlb_config(ci, CAI_L2_DTLB2, NULL, sep);
1929 1.26 chs if (sep != NULL)
1930 1.26 chs aprint_verbose("\n");
1931 1.26 chs }
1932 1.26 chs if (ci->ci_cinfo[CAI_L1_1GBITLB].cai_totalsize != 0) {
1933 1.26 chs sep = print_tlb_config(ci, CAI_L1_1GBITLB, "L1 1GB page ITLB", NULL);
1934 1.26 chs if (sep != NULL)
1935 1.26 chs aprint_verbose("\n");
1936 1.26 chs }
1937 1.26 chs if (ci->ci_cinfo[CAI_L1_1GBDTLB].cai_totalsize != 0) {
1938 1.26 chs sep = print_tlb_config(ci, CAI_L1_1GBDTLB, "L1 1GB page DTLB", NULL);
1939 1.26 chs if (sep != NULL)
1940 1.26 chs aprint_verbose("\n");
1941 1.26 chs }
1942 1.26 chs if (ci->ci_cinfo[CAI_L2_1GBITLB].cai_totalsize != 0) {
1943 1.26 chs sep = print_tlb_config(ci, CAI_L2_1GBITLB, "L2 1GB page ITLB", NULL);
1944 1.26 chs if (sep != NULL)
1945 1.26 chs aprint_verbose("\n");
1946 1.26 chs }
1947 1.26 chs if (ci->ci_cinfo[CAI_L2_1GBDTLB].cai_totalsize != 0) {
1948 1.26 chs sep = print_tlb_config(ci, CAI_L2_1GBDTLB, "L2 1GB page DTLB", NULL);
1949 1.7 christos if (sep != NULL)
1950 1.7 christos aprint_verbose("\n");
1951 1.7 christos }
1952 1.1 ad }
1953 1.5 ad
1954 1.5 ad static void
1955 1.5 ad powernow_probe(struct cpu_info *ci)
1956 1.5 ad {
1957 1.5 ad uint32_t regs[4];
1958 1.14 christos char buf[256];
1959 1.5 ad
1960 1.5 ad x86_cpuid(0x80000007, regs);
1961 1.5 ad
1962 1.14 christos snprintb(buf, sizeof(buf), CPUID_APM_FLAGS, regs[3]);
1963 1.5 ad aprint_normal_dev(ci->ci_dev, "AMD Power Management features: %s\n",
1964 1.14 christos buf);
1965 1.5 ad }
1966 1.32 drochner
1967 1.32 drochner int
1968 1.32 drochner ucodeupdate_check(int fd, struct cpu_ucode *uc)
1969 1.32 drochner {
1970 1.32 drochner struct cpu_info ci;
1971 1.32 drochner int loader_version, res;
1972 1.32 drochner struct cpu_ucode_version versreq;
1973 1.32 drochner
1974 1.34 dsl cpu_probe_base_features(&ci, "unknown");
1975 1.34 dsl
1976 1.32 drochner if (!strcmp((char *)ci.ci_vendor, "AuthenticAMD"))
1977 1.32 drochner loader_version = CPU_UCODE_LOADER_AMD;
1978 1.32 drochner else if (!strcmp((char *)ci.ci_vendor, "GenuineIntel"))
1979 1.32 drochner loader_version = CPU_UCODE_LOADER_INTEL1;
1980 1.32 drochner else
1981 1.32 drochner return -1;
1982 1.32 drochner
1983 1.32 drochner /* check whether the kernel understands this loader version */
1984 1.32 drochner versreq.loader_version = loader_version;
1985 1.32 drochner versreq.data = 0;
1986 1.32 drochner res = ioctl(fd, IOC_CPU_UCODE_GET_VERSION, &versreq);
1987 1.32 drochner if (res)
1988 1.32 drochner return -1;
1989 1.32 drochner
1990 1.32 drochner switch (loader_version) {
1991 1.32 drochner case CPU_UCODE_LOADER_AMD:
1992 1.32 drochner if (uc->cpu_nr != -1) {
1993 1.32 drochner /* printf? */
1994 1.32 drochner return -1;
1995 1.32 drochner }
1996 1.32 drochner uc->cpu_nr = CPU_UCODE_ALL_CPUS;
1997 1.32 drochner break;
1998 1.32 drochner case CPU_UCODE_LOADER_INTEL1:
1999 1.32 drochner if (uc->cpu_nr == -1)
2000 1.32 drochner uc->cpu_nr = CPU_UCODE_ALL_CPUS; /* for Xen */
2001 1.32 drochner else
2002 1.32 drochner uc->cpu_nr = CPU_UCODE_CURRENT_CPU;
2003 1.32 drochner break;
2004 1.32 drochner default: /* can't happen */
2005 1.32 drochner return -1;
2006 1.32 drochner }
2007 1.32 drochner uc->loader_version = loader_version;
2008 1.32 drochner return 0;
2009 1.32 drochner }
2010