]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/x86/x86/identcpu.c
Initial googlemock/googletest integration into the build/FreeBSD test suite
[FreeBSD/FreeBSD.git] / sys / x86 / x86 / identcpu.c
1 /*-
2  * Copyright (c) 1992 Terrence R. Lambert.
3  * Copyright (c) 1982, 1987, 1990 The Regents of the University of California.
4  * Copyright (c) 1997 KATO Takenori.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * William Jolitz.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      from: Id: machdep.c,v 1.193 1996/06/18 01:22:04 bde Exp
39  */
40
41 #include <sys/cdefs.h>
42 __FBSDID("$FreeBSD$");
43
44 #include "opt_cpu.h"
45
46 #include <sys/param.h>
47 #include <sys/bus.h>
48 #include <sys/cpu.h>
49 #include <sys/eventhandler.h>
50 #include <sys/limits.h>
51 #include <sys/systm.h>
52 #include <sys/kernel.h>
53 #include <sys/sysctl.h>
54 #include <sys/power.h>
55
56 #include <vm/vm.h>
57 #include <vm/pmap.h>
58
59 #include <machine/asmacros.h>
60 #include <machine/clock.h>
61 #include <machine/cputypes.h>
62 #include <machine/frame.h>
63 #include <machine/intr_machdep.h>
64 #include <machine/md_var.h>
65 #include <machine/segments.h>
66 #include <machine/specialreg.h>
67
68 #include <amd64/vmm/intel/vmx_controls.h>
69 #include <x86/isa/icu.h>
70 #include <x86/vmware.h>
71
72 #ifdef __i386__
73 #define IDENTBLUE_CYRIX486      0
74 #define IDENTBLUE_IBMCPU        1
75 #define IDENTBLUE_CYRIXM2       2
76
77 static void identifycyrix(void);
78 static void print_transmeta_info(void);
79 #endif
80 static u_int find_cpu_vendor_id(void);
81 static void print_AMD_info(void);
82 static void print_INTEL_info(void);
83 static void print_INTEL_TLB(u_int data);
84 static void print_hypervisor_info(void);
85 static void print_svm_info(void);
86 static void print_via_padlock_info(void);
87 static void print_vmx_info(void);
88
89 #ifdef __i386__
90 int     cpu;                    /* Are we 386, 386sx, 486, etc? */
91 int     cpu_class;
92 #endif
93 u_int   cpu_feature;            /* Feature flags */
94 u_int   cpu_feature2;           /* Feature flags */
95 u_int   amd_feature;            /* AMD feature flags */
96 u_int   amd_feature2;           /* AMD feature flags */
97 u_int   amd_rascap;             /* AMD RAS capabilities */
98 u_int   amd_pminfo;             /* AMD advanced power management info */
99 u_int   amd_extended_feature_extensions;
100 u_int   via_feature_rng;        /* VIA RNG features */
101 u_int   via_feature_xcrypt;     /* VIA ACE features */
102 u_int   cpu_high;               /* Highest arg to CPUID */
103 u_int   cpu_exthigh;            /* Highest arg to extended CPUID */
104 u_int   cpu_id;                 /* Stepping ID */
105 u_int   cpu_procinfo;           /* HyperThreading Info / Brand Index / CLFUSH */
106 u_int   cpu_procinfo2;          /* Multicore info */
107 char    cpu_vendor[20];         /* CPU Origin code */
108 u_int   cpu_vendor_id;          /* CPU vendor ID */
109 u_int   cpu_fxsr;               /* SSE enabled */
110 u_int   cpu_mxcsr_mask;         /* Valid bits in mxcsr */
111 u_int   cpu_clflush_line_size = 32;
112 u_int   cpu_stdext_feature;     /* %ebx */
113 u_int   cpu_stdext_feature2;    /* %ecx */
114 u_int   cpu_stdext_feature3;    /* %edx */
115 uint64_t cpu_ia32_arch_caps;
116 u_int   cpu_max_ext_state_size;
117 u_int   cpu_mon_mwait_flags;    /* MONITOR/MWAIT flags (CPUID.05H.ECX) */
118 u_int   cpu_mon_min_size;       /* MONITOR minimum range size, bytes */
119 u_int   cpu_mon_max_size;       /* MONITOR minimum range size, bytes */
120 u_int   cpu_maxphyaddr;         /* Max phys addr width in bits */
121 char machine[] = MACHINE;
122
123 SYSCTL_UINT(_hw, OID_AUTO, via_feature_rng, CTLFLAG_RD,
124     &via_feature_rng, 0,
125     "VIA RNG feature available in CPU");
126 SYSCTL_UINT(_hw, OID_AUTO, via_feature_xcrypt, CTLFLAG_RD,
127     &via_feature_xcrypt, 0,
128     "VIA xcrypt feature available in CPU");
129
130 #ifdef __amd64__
131 #ifdef SCTL_MASK32
132 extern int adaptive_machine_arch;
133 #endif
134
135 static int
136 sysctl_hw_machine(SYSCTL_HANDLER_ARGS)
137 {
138 #ifdef SCTL_MASK32
139         static const char machine32[] = "i386";
140 #endif
141         int error;
142
143 #ifdef SCTL_MASK32
144         if ((req->flags & SCTL_MASK32) != 0 && adaptive_machine_arch)
145                 error = SYSCTL_OUT(req, machine32, sizeof(machine32));
146         else
147 #endif
148                 error = SYSCTL_OUT(req, machine, sizeof(machine));
149         return (error);
150
151 }
152 SYSCTL_PROC(_hw, HW_MACHINE, machine, CTLTYPE_STRING | CTLFLAG_RD |
153     CTLFLAG_MPSAFE, NULL, 0, sysctl_hw_machine, "A", "Machine class");
154 #else
155 SYSCTL_STRING(_hw, HW_MACHINE, machine, CTLFLAG_RD,
156     machine, 0, "Machine class");
157 #endif
158
159 static char cpu_model[128];
160 SYSCTL_STRING(_hw, HW_MODEL, model, CTLFLAG_RD | CTLFLAG_MPSAFE,
161     cpu_model, 0, "Machine model");
162
163 static int hw_clockrate;
164 SYSCTL_INT(_hw, OID_AUTO, clockrate, CTLFLAG_RD,
165     &hw_clockrate, 0, "CPU instruction clock rate");
166
167 u_int hv_high;
168 char hv_vendor[16];
169 SYSCTL_STRING(_hw, OID_AUTO, hv_vendor, CTLFLAG_RD | CTLFLAG_MPSAFE, hv_vendor,
170     0, "Hypervisor vendor");
171
172 static eventhandler_tag tsc_post_tag;
173
174 static char cpu_brand[48];
175
176 #ifdef __i386__
177 #define MAX_BRAND_INDEX 8
178
179 static const char *cpu_brandtable[MAX_BRAND_INDEX + 1] = {
180         NULL,                   /* No brand */
181         "Intel Celeron",
182         "Intel Pentium III",
183         "Intel Pentium III Xeon",
184         NULL,
185         NULL,
186         NULL,
187         NULL,
188         "Intel Pentium 4"
189 };
190
191 static struct {
192         char    *cpu_name;
193         int     cpu_class;
194 } cpus[] = {
195         { "Intel 80286",        CPUCLASS_286 },         /* CPU_286   */
196         { "i386SX",             CPUCLASS_386 },         /* CPU_386SX */
197         { "i386DX",             CPUCLASS_386 },         /* CPU_386   */
198         { "i486SX",             CPUCLASS_486 },         /* CPU_486SX */
199         { "i486DX",             CPUCLASS_486 },         /* CPU_486   */
200         { "Pentium",            CPUCLASS_586 },         /* CPU_586   */
201         { "Cyrix 486",          CPUCLASS_486 },         /* CPU_486DLC */
202         { "Pentium Pro",        CPUCLASS_686 },         /* CPU_686 */
203         { "Cyrix 5x86",         CPUCLASS_486 },         /* CPU_M1SC */
204         { "Cyrix 6x86",         CPUCLASS_486 },         /* CPU_M1 */
205         { "Blue Lightning",     CPUCLASS_486 },         /* CPU_BLUE */
206         { "Cyrix 6x86MX",       CPUCLASS_686 },         /* CPU_M2 */
207         { "NexGen 586",         CPUCLASS_386 },         /* CPU_NX586 (XXX) */
208         { "Cyrix 486S/DX",      CPUCLASS_486 },         /* CPU_CY486DX */
209         { "Pentium II",         CPUCLASS_686 },         /* CPU_PII */
210         { "Pentium III",        CPUCLASS_686 },         /* CPU_PIII */
211         { "Pentium 4",          CPUCLASS_686 },         /* CPU_P4 */
212 };
213 #endif
214
215 static struct {
216         char    *vendor;
217         u_int   vendor_id;
218 } cpu_vendors[] = {
219         { INTEL_VENDOR_ID,      CPU_VENDOR_INTEL },     /* GenuineIntel */
220         { AMD_VENDOR_ID,        CPU_VENDOR_AMD },       /* AuthenticAMD */
221         { CENTAUR_VENDOR_ID,    CPU_VENDOR_CENTAUR },   /* CentaurHauls */
222 #ifdef __i386__
223         { NSC_VENDOR_ID,        CPU_VENDOR_NSC },       /* Geode by NSC */
224         { CYRIX_VENDOR_ID,      CPU_VENDOR_CYRIX },     /* CyrixInstead */
225         { TRANSMETA_VENDOR_ID,  CPU_VENDOR_TRANSMETA }, /* GenuineTMx86 */
226         { SIS_VENDOR_ID,        CPU_VENDOR_SIS },       /* SiS SiS SiS  */
227         { UMC_VENDOR_ID,        CPU_VENDOR_UMC },       /* UMC UMC UMC  */
228         { NEXGEN_VENDOR_ID,     CPU_VENDOR_NEXGEN },    /* NexGenDriven */
229         { RISE_VENDOR_ID,       CPU_VENDOR_RISE },      /* RiseRiseRise */
230 #if 0
231         /* XXX CPUID 8000_0000h and 8086_0000h, not 0000_0000h */
232         { "TransmetaCPU",       CPU_VENDOR_TRANSMETA },
233 #endif
234 #endif
235 };
236
237 void
238 printcpuinfo(void)
239 {
240         u_int regs[4], i;
241         char *brand;
242
243         printf("CPU: ");
244 #ifdef __i386__
245         cpu_class = cpus[cpu].cpu_class;
246         strncpy(cpu_model, cpus[cpu].cpu_name, sizeof (cpu_model));
247 #else
248         strncpy(cpu_model, "Hammer", sizeof (cpu_model));
249 #endif
250
251         /* Check for extended CPUID information and a processor name. */
252         if (cpu_exthigh >= 0x80000004) {
253                 brand = cpu_brand;
254                 for (i = 0x80000002; i < 0x80000005; i++) {
255                         do_cpuid(i, regs);
256                         memcpy(brand, regs, sizeof(regs));
257                         brand += sizeof(regs);
258                 }
259         }
260
261         switch (cpu_vendor_id) {
262         case CPU_VENDOR_INTEL:
263 #ifdef __i386__
264                 if ((cpu_id & 0xf00) > 0x300) {
265                         u_int brand_index;
266
267                         cpu_model[0] = '\0';
268
269                         switch (cpu_id & 0x3000) {
270                         case 0x1000:
271                                 strcpy(cpu_model, "Overdrive ");
272                                 break;
273                         case 0x2000:
274                                 strcpy(cpu_model, "Dual ");
275                                 break;
276                         }
277
278                         switch (cpu_id & 0xf00) {
279                         case 0x400:
280                                 strcat(cpu_model, "i486 ");
281                                 /* Check the particular flavor of 486 */
282                                 switch (cpu_id & 0xf0) {
283                                 case 0x00:
284                                 case 0x10:
285                                         strcat(cpu_model, "DX");
286                                         break;
287                                 case 0x20:
288                                         strcat(cpu_model, "SX");
289                                         break;
290                                 case 0x30:
291                                         strcat(cpu_model, "DX2");
292                                         break;
293                                 case 0x40:
294                                         strcat(cpu_model, "SL");
295                                         break;
296                                 case 0x50:
297                                         strcat(cpu_model, "SX2");
298                                         break;
299                                 case 0x70:
300                                         strcat(cpu_model,
301                                             "DX2 Write-Back Enhanced");
302                                         break;
303                                 case 0x80:
304                                         strcat(cpu_model, "DX4");
305                                         break;
306                                 }
307                                 break;
308                         case 0x500:
309                                 /* Check the particular flavor of 586 */
310                                 strcat(cpu_model, "Pentium");
311                                 switch (cpu_id & 0xf0) {
312                                 case 0x00:
313                                         strcat(cpu_model, " A-step");
314                                         break;
315                                 case 0x10:
316                                         strcat(cpu_model, "/P5");
317                                         break;
318                                 case 0x20:
319                                         strcat(cpu_model, "/P54C");
320                                         break;
321                                 case 0x30:
322                                         strcat(cpu_model, "/P24T");
323                                         break;
324                                 case 0x40:
325                                         strcat(cpu_model, "/P55C");
326                                         break;
327                                 case 0x70:
328                                         strcat(cpu_model, "/P54C");
329                                         break;
330                                 case 0x80:
331                                         strcat(cpu_model, "/P55C (quarter-micron)");
332                                         break;
333                                 default:
334                                         /* nothing */
335                                         break;
336                                 }
337 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
338                                 /*
339                                  * XXX - If/when Intel fixes the bug, this
340                                  * should also check the version of the
341                                  * CPU, not just that it's a Pentium.
342                                  */
343                                 has_f00f_bug = 1;
344 #endif
345                                 break;
346                         case 0x600:
347                                 /* Check the particular flavor of 686 */
348                                 switch (cpu_id & 0xf0) {
349                                 case 0x00:
350                                         strcat(cpu_model, "Pentium Pro A-step");
351                                         break;
352                                 case 0x10:
353                                         strcat(cpu_model, "Pentium Pro");
354                                         break;
355                                 case 0x30:
356                                 case 0x50:
357                                 case 0x60:
358                                         strcat(cpu_model,
359                                 "Pentium II/Pentium II Xeon/Celeron");
360                                         cpu = CPU_PII;
361                                         break;
362                                 case 0x70:
363                                 case 0x80:
364                                 case 0xa0:
365                                 case 0xb0:
366                                         strcat(cpu_model,
367                                         "Pentium III/Pentium III Xeon/Celeron");
368                                         cpu = CPU_PIII;
369                                         break;
370                                 default:
371                                         strcat(cpu_model, "Unknown 80686");
372                                         break;
373                                 }
374                                 break;
375                         case 0xf00:
376                                 strcat(cpu_model, "Pentium 4");
377                                 cpu = CPU_P4;
378                                 break;
379                         default:
380                                 strcat(cpu_model, "unknown");
381                                 break;
382                         }
383
384                         /*
385                          * If we didn't get a brand name from the extended
386                          * CPUID, try to look it up in the brand table.
387                          */
388                         if (cpu_high > 0 && *cpu_brand == '\0') {
389                                 brand_index = cpu_procinfo & CPUID_BRAND_INDEX;
390                                 if (brand_index <= MAX_BRAND_INDEX &&
391                                     cpu_brandtable[brand_index] != NULL)
392                                         strcpy(cpu_brand,
393                                             cpu_brandtable[brand_index]);
394                         }
395                 }
396 #else
397                 /* Please make up your mind folks! */
398                 strcat(cpu_model, "EM64T");
399 #endif
400                 break;
401         case CPU_VENDOR_AMD:
402                 /*
403                  * Values taken from AMD Processor Recognition
404                  * http://www.amd.com/K6/k6docs/pdf/20734g.pdf
405                  * (also describes ``Features'' encodings.
406                  */
407                 strcpy(cpu_model, "AMD ");
408 #ifdef __i386__
409                 switch (cpu_id & 0xFF0) {
410                 case 0x410:
411                         strcat(cpu_model, "Standard Am486DX");
412                         break;
413                 case 0x430:
414                         strcat(cpu_model, "Enhanced Am486DX2 Write-Through");
415                         break;
416                 case 0x470:
417                         strcat(cpu_model, "Enhanced Am486DX2 Write-Back");
418                         break;
419                 case 0x480:
420                         strcat(cpu_model, "Enhanced Am486DX4/Am5x86 Write-Through");
421                         break;
422                 case 0x490:
423                         strcat(cpu_model, "Enhanced Am486DX4/Am5x86 Write-Back");
424                         break;
425                 case 0x4E0:
426                         strcat(cpu_model, "Am5x86 Write-Through");
427                         break;
428                 case 0x4F0:
429                         strcat(cpu_model, "Am5x86 Write-Back");
430                         break;
431                 case 0x500:
432                         strcat(cpu_model, "K5 model 0");
433                         break;
434                 case 0x510:
435                         strcat(cpu_model, "K5 model 1");
436                         break;
437                 case 0x520:
438                         strcat(cpu_model, "K5 PR166 (model 2)");
439                         break;
440                 case 0x530:
441                         strcat(cpu_model, "K5 PR200 (model 3)");
442                         break;
443                 case 0x560:
444                         strcat(cpu_model, "K6");
445                         break;
446                 case 0x570:
447                         strcat(cpu_model, "K6 266 (model 1)");
448                         break;
449                 case 0x580:
450                         strcat(cpu_model, "K6-2");
451                         break;
452                 case 0x590:
453                         strcat(cpu_model, "K6-III");
454                         break;
455                 case 0x5a0:
456                         strcat(cpu_model, "Geode LX");
457                         break;
458                 default:
459                         strcat(cpu_model, "Unknown");
460                         break;
461                 }
462 #else
463                 if ((cpu_id & 0xf00) == 0xf00)
464                         strcat(cpu_model, "AMD64 Processor");
465                 else
466                         strcat(cpu_model, "Unknown");
467 #endif
468                 break;
469 #ifdef __i386__
470         case CPU_VENDOR_CYRIX:
471                 strcpy(cpu_model, "Cyrix ");
472                 switch (cpu_id & 0xff0) {
473                 case 0x440:
474                         strcat(cpu_model, "MediaGX");
475                         break;
476                 case 0x520:
477                         strcat(cpu_model, "6x86");
478                         break;
479                 case 0x540:
480                         cpu_class = CPUCLASS_586;
481                         strcat(cpu_model, "GXm");
482                         break;
483                 case 0x600:
484                         strcat(cpu_model, "6x86MX");
485                         break;
486                 default:
487                         /*
488                          * Even though CPU supports the cpuid
489                          * instruction, it can be disabled.
490                          * Therefore, this routine supports all Cyrix
491                          * CPUs.
492                          */
493                         switch (cyrix_did & 0xf0) {
494                         case 0x00:
495                                 switch (cyrix_did & 0x0f) {
496                                 case 0x00:
497                                         strcat(cpu_model, "486SLC");
498                                         break;
499                                 case 0x01:
500                                         strcat(cpu_model, "486DLC");
501                                         break;
502                                 case 0x02:
503                                         strcat(cpu_model, "486SLC2");
504                                         break;
505                                 case 0x03:
506                                         strcat(cpu_model, "486DLC2");
507                                         break;
508                                 case 0x04:
509                                         strcat(cpu_model, "486SRx");
510                                         break;
511                                 case 0x05:
512                                         strcat(cpu_model, "486DRx");
513                                         break;
514                                 case 0x06:
515                                         strcat(cpu_model, "486SRx2");
516                                         break;
517                                 case 0x07:
518                                         strcat(cpu_model, "486DRx2");
519                                         break;
520                                 case 0x08:
521                                         strcat(cpu_model, "486SRu");
522                                         break;
523                                 case 0x09:
524                                         strcat(cpu_model, "486DRu");
525                                         break;
526                                 case 0x0a:
527                                         strcat(cpu_model, "486SRu2");
528                                         break;
529                                 case 0x0b:
530                                         strcat(cpu_model, "486DRu2");
531                                         break;
532                                 default:
533                                         strcat(cpu_model, "Unknown");
534                                         break;
535                                 }
536                                 break;
537                         case 0x10:
538                                 switch (cyrix_did & 0x0f) {
539                                 case 0x00:
540                                         strcat(cpu_model, "486S");
541                                         break;
542                                 case 0x01:
543                                         strcat(cpu_model, "486S2");
544                                         break;
545                                 case 0x02:
546                                         strcat(cpu_model, "486Se");
547                                         break;
548                                 case 0x03:
549                                         strcat(cpu_model, "486S2e");
550                                         break;
551                                 case 0x0a:
552                                         strcat(cpu_model, "486DX");
553                                         break;
554                                 case 0x0b:
555                                         strcat(cpu_model, "486DX2");
556                                         break;
557                                 case 0x0f:
558                                         strcat(cpu_model, "486DX4");
559                                         break;
560                                 default:
561                                         strcat(cpu_model, "Unknown");
562                                         break;
563                                 }
564                                 break;
565                         case 0x20:
566                                 if ((cyrix_did & 0x0f) < 8)
567                                         strcat(cpu_model, "6x86");      /* Where did you get it? */
568                                 else
569                                         strcat(cpu_model, "5x86");
570                                 break;
571                         case 0x30:
572                                 strcat(cpu_model, "6x86");
573                                 break;
574                         case 0x40:
575                                 if ((cyrix_did & 0xf000) == 0x3000) {
576                                         cpu_class = CPUCLASS_586;
577                                         strcat(cpu_model, "GXm");
578                                 } else
579                                         strcat(cpu_model, "MediaGX");
580                                 break;
581                         case 0x50:
582                                 strcat(cpu_model, "6x86MX");
583                                 break;
584                         case 0xf0:
585                                 switch (cyrix_did & 0x0f) {
586                                 case 0x0d:
587                                         strcat(cpu_model, "Overdrive CPU");
588                                         break;
589                                 case 0x0e:
590                                         strcpy(cpu_model, "Texas Instruments 486SXL");
591                                         break;
592                                 case 0x0f:
593                                         strcat(cpu_model, "486SLC/DLC");
594                                         break;
595                                 default:
596                                         strcat(cpu_model, "Unknown");
597                                         break;
598                                 }
599                                 break;
600                         default:
601                                 strcat(cpu_model, "Unknown");
602                                 break;
603                         }
604                         break;
605                 }
606                 break;
607         case CPU_VENDOR_RISE:
608                 strcpy(cpu_model, "Rise ");
609                 switch (cpu_id & 0xff0) {
610                 case 0x500:     /* 6401 and 6441 (Kirin) */
611                 case 0x520:     /* 6510 (Lynx) */
612                         strcat(cpu_model, "mP6");
613                         break;
614                 default:
615                         strcat(cpu_model, "Unknown");
616                 }
617                 break;
618 #endif
619         case CPU_VENDOR_CENTAUR:
620 #ifdef __i386__
621                 switch (cpu_id & 0xff0) {
622                 case 0x540:
623                         strcpy(cpu_model, "IDT WinChip C6");
624                         break;
625                 case 0x580:
626                         strcpy(cpu_model, "IDT WinChip 2");
627                         break;
628                 case 0x590:
629                         strcpy(cpu_model, "IDT WinChip 3");
630                         break;
631                 case 0x660:
632                         strcpy(cpu_model, "VIA C3 Samuel");
633                         break;
634                 case 0x670:
635                         if (cpu_id & 0x8)
636                                 strcpy(cpu_model, "VIA C3 Ezra");
637                         else
638                                 strcpy(cpu_model, "VIA C3 Samuel 2");
639                         break;
640                 case 0x680:
641                         strcpy(cpu_model, "VIA C3 Ezra-T");
642                         break;
643                 case 0x690:
644                         strcpy(cpu_model, "VIA C3 Nehemiah");
645                         break;
646                 case 0x6a0:
647                 case 0x6d0:
648                         strcpy(cpu_model, "VIA C7 Esther");
649                         break;
650                 case 0x6f0:
651                         strcpy(cpu_model, "VIA Nano");
652                         break;
653                 default:
654                         strcpy(cpu_model, "VIA/IDT Unknown");
655                 }
656 #else
657                 strcpy(cpu_model, "VIA ");
658                 if ((cpu_id & 0xff0) == 0x6f0)
659                         strcat(cpu_model, "Nano Processor");
660                 else
661                         strcat(cpu_model, "Unknown");
662 #endif
663                 break;
664 #ifdef __i386__
665         case CPU_VENDOR_IBM:
666                 strcpy(cpu_model, "Blue Lightning CPU");
667                 break;
668         case CPU_VENDOR_NSC:
669                 switch (cpu_id & 0xff0) {
670                 case 0x540:
671                         strcpy(cpu_model, "Geode SC1100");
672                         cpu = CPU_GEODE1100;
673                         break;
674                 default:
675                         strcpy(cpu_model, "Geode/NSC unknown");
676                         break;
677                 }
678                 break;
679 #endif
680         default:
681                 strcat(cpu_model, "Unknown");
682                 break;
683         }
684
685         /*
686          * Replace cpu_model with cpu_brand minus leading spaces if
687          * we have one.
688          */
689         brand = cpu_brand;
690         while (*brand == ' ')
691                 ++brand;
692         if (*brand != '\0')
693                 strcpy(cpu_model, brand);
694
695         printf("%s (", cpu_model);
696         if (tsc_freq != 0) {
697                 hw_clockrate = (tsc_freq + 5000) / 1000000;
698                 printf("%jd.%02d-MHz ",
699                     (intmax_t)(tsc_freq + 4999) / 1000000,
700                     (u_int)((tsc_freq + 4999) / 10000) % 100);
701         }
702 #ifdef __i386__
703         switch(cpu_class) {
704         case CPUCLASS_286:
705                 printf("286");
706                 break;
707         case CPUCLASS_386:
708                 printf("386");
709                 break;
710 #if defined(I486_CPU)
711         case CPUCLASS_486:
712                 printf("486");
713                 break;
714 #endif
715 #if defined(I586_CPU)
716         case CPUCLASS_586:
717                 printf("586");
718                 break;
719 #endif
720 #if defined(I686_CPU)
721         case CPUCLASS_686:
722                 printf("686");
723                 break;
724 #endif
725         default:
726                 printf("Unknown");      /* will panic below... */
727         }
728 #else
729         printf("K8");
730 #endif
731         printf("-class CPU)\n");
732         if (*cpu_vendor)
733                 printf("  Origin=\"%s\"", cpu_vendor);
734         if (cpu_id)
735                 printf("  Id=0x%x", cpu_id);
736
737         if (cpu_vendor_id == CPU_VENDOR_INTEL ||
738             cpu_vendor_id == CPU_VENDOR_AMD ||
739             cpu_vendor_id == CPU_VENDOR_CENTAUR ||
740 #ifdef __i386__
741             cpu_vendor_id == CPU_VENDOR_TRANSMETA ||
742             cpu_vendor_id == CPU_VENDOR_RISE ||
743             cpu_vendor_id == CPU_VENDOR_NSC ||
744             (cpu_vendor_id == CPU_VENDOR_CYRIX && ((cpu_id & 0xf00) > 0x500)) ||
745 #endif
746             0) {
747                 printf("  Family=0x%x", CPUID_TO_FAMILY(cpu_id));
748                 printf("  Model=0x%x", CPUID_TO_MODEL(cpu_id));
749                 printf("  Stepping=%u", cpu_id & CPUID_STEPPING);
750 #ifdef __i386__
751                 if (cpu_vendor_id == CPU_VENDOR_CYRIX)
752                         printf("\n  DIR=0x%04x", cyrix_did);
753 #endif
754
755                 /*
756                  * AMD CPUID Specification
757                  * http://support.amd.com/us/Embedded_TechDocs/25481.pdf
758                  *
759                  * Intel Processor Identification and CPUID Instruction
760                  * http://www.intel.com/assets/pdf/appnote/241618.pdf
761                  */
762                 if (cpu_high > 0) {
763
764                         /*
765                          * Here we should probably set up flags indicating
766                          * whether or not various features are available.
767                          * The interesting ones are probably VME, PSE, PAE,
768                          * and PGE.  The code already assumes without bothering
769                          * to check that all CPUs >= Pentium have a TSC and
770                          * MSRs.
771                          */
772                         printf("\n  Features=0x%b", cpu_feature,
773                         "\020"
774                         "\001FPU"       /* Integral FPU */
775                         "\002VME"       /* Extended VM86 mode support */
776                         "\003DE"        /* Debugging Extensions (CR4.DE) */
777                         "\004PSE"       /* 4MByte page tables */
778                         "\005TSC"       /* Timestamp counter */
779                         "\006MSR"       /* Machine specific registers */
780                         "\007PAE"       /* Physical address extension */
781                         "\010MCE"       /* Machine Check support */
782                         "\011CX8"       /* CMPEXCH8 instruction */
783                         "\012APIC"      /* SMP local APIC */
784                         "\013oldMTRR"   /* Previous implementation of MTRR */
785                         "\014SEP"       /* Fast System Call */
786                         "\015MTRR"      /* Memory Type Range Registers */
787                         "\016PGE"       /* PG_G (global bit) support */
788                         "\017MCA"       /* Machine Check Architecture */
789                         "\020CMOV"      /* CMOV instruction */
790                         "\021PAT"       /* Page attributes table */
791                         "\022PSE36"     /* 36 bit address space support */
792                         "\023PN"        /* Processor Serial number */
793                         "\024CLFLUSH"   /* Has the CLFLUSH instruction */
794                         "\025<b20>"
795                         "\026DTS"       /* Debug Trace Store */
796                         "\027ACPI"      /* ACPI support */
797                         "\030MMX"       /* MMX instructions */
798                         "\031FXSR"      /* FXSAVE/FXRSTOR */
799                         "\032SSE"       /* Streaming SIMD Extensions */
800                         "\033SSE2"      /* Streaming SIMD Extensions #2 */
801                         "\034SS"        /* Self snoop */
802                         "\035HTT"       /* Hyperthreading (see EBX bit 16-23) */
803                         "\036TM"        /* Thermal Monitor clock slowdown */
804                         "\037IA64"      /* CPU can execute IA64 instructions */
805                         "\040PBE"       /* Pending Break Enable */
806                         );
807
808                         if (cpu_feature2 != 0) {
809                                 printf("\n  Features2=0x%b", cpu_feature2,
810                                 "\020"
811                                 "\001SSE3"      /* SSE3 */
812                                 "\002PCLMULQDQ" /* Carry-Less Mul Quadword */
813                                 "\003DTES64"    /* 64-bit Debug Trace */
814                                 "\004MON"       /* MONITOR/MWAIT Instructions */
815                                 "\005DS_CPL"    /* CPL Qualified Debug Store */
816                                 "\006VMX"       /* Virtual Machine Extensions */
817                                 "\007SMX"       /* Safer Mode Extensions */
818                                 "\010EST"       /* Enhanced SpeedStep */
819                                 "\011TM2"       /* Thermal Monitor 2 */
820                                 "\012SSSE3"     /* SSSE3 */
821                                 "\013CNXT-ID"   /* L1 context ID available */
822                                 "\014SDBG"      /* IA32 silicon debug */
823                                 "\015FMA"       /* Fused Multiply Add */
824                                 "\016CX16"      /* CMPXCHG16B Instruction */
825                                 "\017xTPR"      /* Send Task Priority Messages*/
826                                 "\020PDCM"      /* Perf/Debug Capability MSR */
827                                 "\021<b16>"
828                                 "\022PCID"      /* Process-context Identifiers*/
829                                 "\023DCA"       /* Direct Cache Access */
830                                 "\024SSE4.1"    /* SSE 4.1 */
831                                 "\025SSE4.2"    /* SSE 4.2 */
832                                 "\026x2APIC"    /* xAPIC Extensions */
833                                 "\027MOVBE"     /* MOVBE Instruction */
834                                 "\030POPCNT"    /* POPCNT Instruction */
835                                 "\031TSCDLT"    /* TSC-Deadline Timer */
836                                 "\032AESNI"     /* AES Crypto */
837                                 "\033XSAVE"     /* XSAVE/XRSTOR States */
838                                 "\034OSXSAVE"   /* OS-Enabled State Management*/
839                                 "\035AVX"       /* Advanced Vector Extensions */
840                                 "\036F16C"      /* Half-precision conversions */
841                                 "\037RDRAND"    /* RDRAND Instruction */
842                                 "\040HV"        /* Hypervisor */
843                                 );
844                         }
845
846                         if (amd_feature != 0) {
847                                 printf("\n  AMD Features=0x%b", amd_feature,
848                                 "\020"          /* in hex */
849                                 "\001<s0>"      /* Same */
850                                 "\002<s1>"      /* Same */
851                                 "\003<s2>"      /* Same */
852                                 "\004<s3>"      /* Same */
853                                 "\005<s4>"      /* Same */
854                                 "\006<s5>"      /* Same */
855                                 "\007<s6>"      /* Same */
856                                 "\010<s7>"      /* Same */
857                                 "\011<s8>"      /* Same */
858                                 "\012<s9>"      /* Same */
859                                 "\013<b10>"     /* Undefined */
860                                 "\014SYSCALL"   /* Have SYSCALL/SYSRET */
861                                 "\015<s12>"     /* Same */
862                                 "\016<s13>"     /* Same */
863                                 "\017<s14>"     /* Same */
864                                 "\020<s15>"     /* Same */
865                                 "\021<s16>"     /* Same */
866                                 "\022<s17>"     /* Same */
867                                 "\023<b18>"     /* Reserved, unknown */
868                                 "\024MP"        /* Multiprocessor Capable */
869                                 "\025NX"        /* Has EFER.NXE, NX */
870                                 "\026<b21>"     /* Undefined */
871                                 "\027MMX+"      /* AMD MMX Extensions */
872                                 "\030<s23>"     /* Same */
873                                 "\031<s24>"     /* Same */
874                                 "\032FFXSR"     /* Fast FXSAVE/FXRSTOR */
875                                 "\033Page1GB"   /* 1-GB large page support */
876                                 "\034RDTSCP"    /* RDTSCP */
877                                 "\035<b28>"     /* Undefined */
878                                 "\036LM"        /* 64 bit long mode */
879                                 "\0373DNow!+"   /* AMD 3DNow! Extensions */
880                                 "\0403DNow!"    /* AMD 3DNow! */
881                                 );
882                         }
883
884                         if (amd_feature2 != 0) {
885                                 printf("\n  AMD Features2=0x%b", amd_feature2,
886                                 "\020"
887                                 "\001LAHF"      /* LAHF/SAHF in long mode */
888                                 "\002CMP"       /* CMP legacy */
889                                 "\003SVM"       /* Secure Virtual Mode */
890                                 "\004ExtAPIC"   /* Extended APIC register */
891                                 "\005CR8"       /* CR8 in legacy mode */
892                                 "\006ABM"       /* LZCNT instruction */
893                                 "\007SSE4A"     /* SSE4A */
894                                 "\010MAS"       /* Misaligned SSE mode */
895                                 "\011Prefetch"  /* 3DNow! Prefetch/PrefetchW */
896                                 "\012OSVW"      /* OS visible workaround */
897                                 "\013IBS"       /* Instruction based sampling */
898                                 "\014XOP"       /* XOP extended instructions */
899                                 "\015SKINIT"    /* SKINIT/STGI */
900                                 "\016WDT"       /* Watchdog timer */
901                                 "\017<b14>"
902                                 "\020LWP"       /* Lightweight Profiling */
903                                 "\021FMA4"      /* 4-operand FMA instructions */
904                                 "\022TCE"       /* Translation Cache Extension */
905                                 "\023<b18>"
906                                 "\024NodeId"    /* NodeId MSR support */
907                                 "\025<b20>"
908                                 "\026TBM"       /* Trailing Bit Manipulation */
909                                 "\027Topology"  /* Topology Extensions */
910                                 "\030PCXC"      /* Core perf count */
911                                 "\031PNXC"      /* NB perf count */
912                                 "\032<b25>"
913                                 "\033DBE"       /* Data Breakpoint extension */
914                                 "\034PTSC"      /* Performance TSC */
915                                 "\035PL2I"      /* L2I perf count */
916                                 "\036MWAITX"    /* MONITORX/MWAITX instructions */
917                                 "\037<b30>"
918                                 "\040<b31>"
919                                 );
920                         }
921
922                         if (cpu_stdext_feature != 0) {
923                                 printf("\n  Structured Extended Features=0x%b",
924                                     cpu_stdext_feature,
925                                        "\020"
926                                        /* RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE */
927                                        "\001FSGSBASE"
928                                        "\002TSCADJ"
929                                        "\003SGX"
930                                        /* Bit Manipulation Instructions */
931                                        "\004BMI1"
932                                        /* Hardware Lock Elision */
933                                        "\005HLE"
934                                        /* Advanced Vector Instructions 2 */
935                                        "\006AVX2"
936                                        /* FDP_EXCPTN_ONLY */
937                                        "\007FDPEXC"
938                                        /* Supervisor Mode Execution Prot. */
939                                        "\010SMEP"
940                                        /* Bit Manipulation Instructions */
941                                        "\011BMI2"
942                                        "\012ERMS"
943                                        /* Invalidate Processor Context ID */
944                                        "\013INVPCID"
945                                        /* Restricted Transactional Memory */
946                                        "\014RTM"
947                                        "\015PQM"
948                                        "\016NFPUSG"
949                                        /* Intel Memory Protection Extensions */
950                                        "\017MPX"
951                                        "\020PQE"
952                                        /* AVX512 Foundation */
953                                        "\021AVX512F"
954                                        "\022AVX512DQ"
955                                        /* Enhanced NRBG */
956                                        "\023RDSEED"
957                                        /* ADCX + ADOX */
958                                        "\024ADX"
959                                        /* Supervisor Mode Access Prevention */
960                                        "\025SMAP"
961                                        "\026AVX512IFMA"
962                                        "\027PCOMMIT"
963                                        "\030CLFLUSHOPT"
964                                        "\031CLWB"
965                                        "\032PROCTRACE"
966                                        "\033AVX512PF"
967                                        "\034AVX512ER"
968                                        "\035AVX512CD"
969                                        "\036SHA"
970                                        "\037AVX512BW"
971                                        "\040AVX512VL"
972                                        );
973                         }
974
975                         if (cpu_stdext_feature2 != 0) {
976                                 printf("\n  Structured Extended Features2=0x%b",
977                                     cpu_stdext_feature2,
978                                        "\020"
979                                        "\001PREFETCHWT1"
980                                        "\002AVX512VBMI"
981                                        "\003UMIP"
982                                        "\004PKU"
983                                        "\005OSPKE"
984                                        "\006WAITPKG"
985                                        "\011GFNI"
986                                        "\027RDPID"
987                                        "\032CLDEMOTE"
988                                        "\034MOVDIRI"
989                                        "\035MOVDIRI64B"
990                                        "\037SGXLC"
991                                        );
992                         }
993
994                         if (cpu_stdext_feature3 != 0) {
995                                 printf("\n  Structured Extended Features3=0x%b",
996                                     cpu_stdext_feature3,
997                                        "\020"
998                                        "\016TSXFA"
999                                        "\033IBPB"
1000                                        "\034STIBP"
1001                                        "\035L1DFL"
1002                                        "\036ARCH_CAP"
1003                                        "\037CORE_CAP"
1004                                        "\040SSBD"
1005                                        );
1006                         }
1007
1008                         if ((cpu_feature2 & CPUID2_XSAVE) != 0) {
1009                                 cpuid_count(0xd, 0x1, regs);
1010                                 if (regs[0] != 0) {
1011                                         printf("\n  XSAVE Features=0x%b",
1012                                             regs[0],
1013                                             "\020"
1014                                             "\001XSAVEOPT"
1015                                             "\002XSAVEC"
1016                                             "\003XINUSE"
1017                                             "\004XSAVES");
1018                                 }
1019                         }
1020
1021                         if (cpu_ia32_arch_caps != 0) {
1022                                 printf("\n  IA32_ARCH_CAPS=0x%b",
1023                                     (u_int)cpu_ia32_arch_caps,
1024                                        "\020"
1025                                        "\001RDCL_NO"
1026                                        "\002IBRS_ALL"
1027                                        "\003RSBA"
1028                                        "\004SKIP_L1DFL_VME"
1029                                        "\005SSB_NO"
1030                                        );
1031                         }
1032
1033                         if (amd_extended_feature_extensions != 0) {
1034                                 u_int amd_fe_masked;
1035
1036                                 amd_fe_masked = amd_extended_feature_extensions;
1037                                 if ((amd_fe_masked & AMDFEID_IBRS) == 0)
1038                                         amd_fe_masked &=
1039                                             ~(AMDFEID_IBRS_ALWAYSON |
1040                                                 AMDFEID_PREFER_IBRS);
1041                                 if ((amd_fe_masked & AMDFEID_STIBP) == 0)
1042                                         amd_fe_masked &=
1043                                             ~AMDFEID_STIBP_ALWAYSON;
1044
1045                                 printf("\n  "
1046                                     "AMD Extended Feature Extensions ID EBX="
1047                                     "0x%b", amd_fe_masked,
1048                                     "\020"
1049                                     "\001CLZERO"
1050                                     "\002IRPerf"
1051                                     "\003XSaveErPtr"
1052                                     "\015IBPB"
1053                                     "\017IBRS"
1054                                     "\020STIBP"
1055                                     "\021IBRS_ALWAYSON"
1056                                     "\022STIBP_ALWAYSON"
1057                                     "\023PREFER_IBRS"
1058                                     "\031SSBD"
1059                                     "\032VIRT_SSBD"
1060                                     "\033SSB_NO"
1061                                     );
1062                         }
1063
1064                         if (via_feature_rng != 0 || via_feature_xcrypt != 0)
1065                                 print_via_padlock_info();
1066
1067                         if (cpu_feature2 & CPUID2_VMX)
1068                                 print_vmx_info();
1069
1070                         if (amd_feature2 & AMDID2_SVM)
1071                                 print_svm_info();
1072
1073                         if ((cpu_feature & CPUID_HTT) &&
1074                             cpu_vendor_id == CPU_VENDOR_AMD)
1075                                 cpu_feature &= ~CPUID_HTT;
1076
1077                         /*
1078                          * If this CPU supports P-state invariant TSC then
1079                          * mention the capability.
1080                          */
1081                         if (tsc_is_invariant) {
1082                                 printf("\n  TSC: P-state invariant");
1083                                 if (tsc_perf_stat)
1084                                         printf(", performance statistics");
1085                         }
1086                 }
1087 #ifdef __i386__
1088         } else if (cpu_vendor_id == CPU_VENDOR_CYRIX) {
1089                 printf("  DIR=0x%04x", cyrix_did);
1090                 printf("  Stepping=%u", (cyrix_did & 0xf000) >> 12);
1091                 printf("  Revision=%u", (cyrix_did & 0x0f00) >> 8);
1092 #ifndef CYRIX_CACHE_REALLY_WORKS
1093                 if (cpu == CPU_M1 && (cyrix_did & 0xff00) < 0x1700)
1094                         printf("\n  CPU cache: write-through mode");
1095 #endif
1096 #endif
1097         }
1098
1099         /* Avoid ugly blank lines: only print newline when we have to. */
1100         if (*cpu_vendor || cpu_id)
1101                 printf("\n");
1102
1103         if (bootverbose) {
1104                 if (cpu_vendor_id == CPU_VENDOR_AMD)
1105                         print_AMD_info();
1106                 else if (cpu_vendor_id == CPU_VENDOR_INTEL)
1107                         print_INTEL_info();
1108 #ifdef __i386__
1109                 else if (cpu_vendor_id == CPU_VENDOR_TRANSMETA)
1110                         print_transmeta_info();
1111 #endif
1112         }
1113
1114         print_hypervisor_info();
1115 }
1116
1117 #ifdef __i386__
1118 void
1119 panicifcpuunsupported(void)
1120 {
1121
1122 #if !defined(lint)
1123 #if !defined(I486_CPU) && !defined(I586_CPU) && !defined(I686_CPU)
1124 #error This kernel is not configured for one of the supported CPUs
1125 #endif
1126 #else /* lint */
1127 #endif /* lint */
1128         /*
1129          * Now that we have told the user what they have,
1130          * let them know if that machine type isn't configured.
1131          */
1132         switch (cpu_class) {
1133         case CPUCLASS_286:      /* a 286 should not make it this far, anyway */
1134         case CPUCLASS_386:
1135 #if !defined(I486_CPU)
1136         case CPUCLASS_486:
1137 #endif
1138 #if !defined(I586_CPU)
1139         case CPUCLASS_586:
1140 #endif
1141 #if !defined(I686_CPU)
1142         case CPUCLASS_686:
1143 #endif
1144                 panic("CPU class not configured");
1145         default:
1146                 break;
1147         }
1148 }
1149
1150 static  volatile u_int trap_by_rdmsr;
1151
1152 /*
1153  * Special exception 6 handler.
1154  * The rdmsr instruction generates invalid opcodes fault on 486-class
1155  * Cyrix CPU.  Stacked eip register points the rdmsr instruction in the
1156  * function identblue() when this handler is called.  Stacked eip should
1157  * be advanced.
1158  */
1159 inthand_t       bluetrap6;
1160 #ifdef __GNUCLIKE_ASM
1161 __asm
1162 ("                                                                      \n\
1163         .text                                                           \n\
1164         .p2align 2,0x90                                                 \n\
1165         .type   " __XSTRING(CNAME(bluetrap6)) ",@function               \n\
1166 " __XSTRING(CNAME(bluetrap6)) ":                                        \n\
1167         ss                                                              \n\
1168         movl    $0xa8c1d," __XSTRING(CNAME(trap_by_rdmsr)) "            \n\
1169         addl    $2, (%esp)      /* rdmsr is a 2-byte instruction */     \n\
1170         iret                                                            \n\
1171 ");
1172 #endif
1173
1174 /*
1175  * Special exception 13 handler.
1176  * Accessing non-existent MSR generates general protection fault.
1177  */
1178 inthand_t       bluetrap13;
1179 #ifdef __GNUCLIKE_ASM
1180 __asm
1181 ("                                                                      \n\
1182         .text                                                           \n\
1183         .p2align 2,0x90                                                 \n\
1184         .type   " __XSTRING(CNAME(bluetrap13)) ",@function              \n\
1185 " __XSTRING(CNAME(bluetrap13)) ":                                       \n\
1186         ss                                                              \n\
1187         movl    $0xa89c4," __XSTRING(CNAME(trap_by_rdmsr)) "            \n\
1188         popl    %eax            /* discard error code */                \n\
1189         addl    $2, (%esp)      /* rdmsr is a 2-byte instruction */     \n\
1190         iret                                                            \n\
1191 ");
1192 #endif
1193
1194 /*
1195  * Distinguish IBM Blue Lightning CPU from Cyrix CPUs that does not
1196  * support cpuid instruction.  This function should be called after
1197  * loading interrupt descriptor table register.
1198  *
1199  * I don't like this method that handles fault, but I couldn't get
1200  * information for any other methods.  Does blue giant know?
1201  */
1202 static int
1203 identblue(void)
1204 {
1205
1206         trap_by_rdmsr = 0;
1207
1208         /*
1209          * Cyrix 486-class CPU does not support rdmsr instruction.
1210          * The rdmsr instruction generates invalid opcode fault, and exception
1211          * will be trapped by bluetrap6() on Cyrix 486-class CPU.  The
1212          * bluetrap6() set the magic number to trap_by_rdmsr.
1213          */
1214         setidt(IDT_UD, bluetrap6, SDT_SYS386TGT, SEL_KPL,
1215             GSEL(GCODE_SEL, SEL_KPL));
1216
1217         /*
1218          * Certain BIOS disables cpuid instruction of Cyrix 6x86MX CPU.
1219          * In this case, rdmsr generates general protection fault, and
1220          * exception will be trapped by bluetrap13().
1221          */
1222         setidt(IDT_GP, bluetrap13, SDT_SYS386TGT, SEL_KPL,
1223             GSEL(GCODE_SEL, SEL_KPL));
1224
1225         rdmsr(0x1002);          /* Cyrix CPU generates fault. */
1226
1227         if (trap_by_rdmsr == 0xa8c1d)
1228                 return IDENTBLUE_CYRIX486;
1229         else if (trap_by_rdmsr == 0xa89c4)
1230                 return IDENTBLUE_CYRIXM2;
1231         return IDENTBLUE_IBMCPU;
1232 }
1233
1234
1235 /*
1236  * identifycyrix() set lower 16 bits of cyrix_did as follows:
1237  *
1238  *  F E D C B A 9 8 7 6 5 4 3 2 1 0
1239  * +-------+-------+---------------+
1240  * |  SID  |  RID  |   Device ID   |
1241  * |    (DIR 1)    |    (DIR 0)    |
1242  * +-------+-------+---------------+
1243  */
1244 static void
1245 identifycyrix(void)
1246 {
1247         register_t saveintr;
1248         int     ccr2_test = 0, dir_test = 0;
1249         u_char  ccr2, ccr3;
1250
1251         saveintr = intr_disable();
1252
1253         ccr2 = read_cyrix_reg(CCR2);
1254         write_cyrix_reg(CCR2, ccr2 ^ CCR2_LOCK_NW);
1255         read_cyrix_reg(CCR2);
1256         if (read_cyrix_reg(CCR2) != ccr2)
1257                 ccr2_test = 1;
1258         write_cyrix_reg(CCR2, ccr2);
1259
1260         ccr3 = read_cyrix_reg(CCR3);
1261         write_cyrix_reg(CCR3, ccr3 ^ CCR3_MAPEN3);
1262         read_cyrix_reg(CCR3);
1263         if (read_cyrix_reg(CCR3) != ccr3)
1264                 dir_test = 1;                                   /* CPU supports DIRs. */
1265         write_cyrix_reg(CCR3, ccr3);
1266
1267         if (dir_test) {
1268                 /* Device ID registers are available. */
1269                 cyrix_did = read_cyrix_reg(DIR1) << 8;
1270                 cyrix_did += read_cyrix_reg(DIR0);
1271         } else if (ccr2_test)
1272                 cyrix_did = 0x0010;             /* 486S A-step */
1273         else
1274                 cyrix_did = 0x00ff;             /* Old 486SLC/DLC and TI486SXLC/SXL */
1275
1276         intr_restore(saveintr);
1277 }
1278 #endif
1279
1280 /* Update TSC freq with the value indicated by the caller. */
1281 static void
1282 tsc_freq_changed(void *arg __unused, const struct cf_level *level, int status)
1283 {
1284
1285         /* If there was an error during the transition, don't do anything. */
1286         if (status != 0)
1287                 return;
1288
1289         /* Total setting for this level gives the new frequency in MHz. */
1290         hw_clockrate = level->total_set.freq;
1291 }
1292
1293 static void
1294 hook_tsc_freq(void *arg __unused)
1295 {
1296
1297         if (tsc_is_invariant)
1298                 return;
1299
1300         tsc_post_tag = EVENTHANDLER_REGISTER(cpufreq_post_change,
1301             tsc_freq_changed, NULL, EVENTHANDLER_PRI_ANY);
1302 }
1303
1304 SYSINIT(hook_tsc_freq, SI_SUB_CONFIGURE, SI_ORDER_ANY, hook_tsc_freq, NULL);
1305
1306 static const char *const vm_bnames[] = {
1307         "QEMU",                         /* QEMU */
1308         "Plex86",                       /* Plex86 */
1309         "Bochs",                        /* Bochs */
1310         "Xen",                          /* Xen */
1311         "BHYVE",                        /* bhyve */
1312         "Seabios",                      /* KVM */
1313         NULL
1314 };
1315
1316 static const char *const vm_pnames[] = {
1317         "VMware Virtual Platform",      /* VMWare VM */
1318         "Virtual Machine",              /* Microsoft VirtualPC */
1319         "VirtualBox",                   /* Sun xVM VirtualBox */
1320         "Parallels Virtual Platform",   /* Parallels VM */
1321         "KVM",                          /* KVM */
1322         NULL
1323 };
1324
1325 void
1326 identify_hypervisor(void)
1327 {
1328         u_int regs[4];
1329         char *p;
1330         int i;
1331
1332         /*
1333          * [RFC] CPUID usage for interaction between Hypervisors and Linux.
1334          * http://lkml.org/lkml/2008/10/1/246
1335          *
1336          * KB1009458: Mechanisms to determine if software is running in
1337          * a VMware virtual machine
1338          * http://kb.vmware.com/kb/1009458
1339          */
1340         if (cpu_feature2 & CPUID2_HV) {
1341                 vm_guest = VM_GUEST_VM;
1342                 do_cpuid(0x40000000, regs);
1343
1344                 /*
1345                  * KVM from Linux kernels prior to commit
1346                  * 57c22e5f35aa4b9b2fe11f73f3e62bbf9ef36190 set %eax
1347                  * to 0 rather than a valid hv_high value.  Check for
1348                  * the KVM signature bytes and fixup %eax to the
1349                  * highest supported leaf in that case.
1350                  */
1351                 if (regs[0] == 0 && regs[1] == 0x4b4d564b &&
1352                     regs[2] == 0x564b4d56 && regs[3] == 0x0000004d)
1353                         regs[0] = 0x40000001;
1354                         
1355                 if (regs[0] >= 0x40000000) {
1356                         hv_high = regs[0];
1357                         ((u_int *)&hv_vendor)[0] = regs[1];
1358                         ((u_int *)&hv_vendor)[1] = regs[2];
1359                         ((u_int *)&hv_vendor)[2] = regs[3];
1360                         hv_vendor[12] = '\0';
1361                         if (strcmp(hv_vendor, "VMwareVMware") == 0)
1362                                 vm_guest = VM_GUEST_VMWARE;
1363                         else if (strcmp(hv_vendor, "Microsoft Hv") == 0)
1364                                 vm_guest = VM_GUEST_HV;
1365                         else if (strcmp(hv_vendor, "KVMKVMKVM") == 0)
1366                                 vm_guest = VM_GUEST_KVM;
1367                         else if (strcmp(hv_vendor, "bhyve bhyve") == 0)
1368                                 vm_guest = VM_GUEST_BHYVE;
1369                 }
1370                 return;
1371         }
1372
1373         /*
1374          * Examine SMBIOS strings for older hypervisors.
1375          */
1376         p = kern_getenv("smbios.system.serial");
1377         if (p != NULL) {
1378                 if (strncmp(p, "VMware-", 7) == 0 || strncmp(p, "VMW", 3) == 0) {
1379                         vmware_hvcall(VMW_HVCMD_GETVERSION, regs);
1380                         if (regs[1] == VMW_HVMAGIC) {
1381                                 vm_guest = VM_GUEST_VMWARE;                     
1382                                 freeenv(p);
1383                                 return;
1384                         }
1385                 }
1386                 freeenv(p);
1387         }
1388
1389         /*
1390          * XXX: Some of these entries may not be needed since they were
1391          * added to FreeBSD before the checks above.
1392          */
1393         p = kern_getenv("smbios.bios.vendor");
1394         if (p != NULL) {
1395                 for (i = 0; vm_bnames[i] != NULL; i++)
1396                         if (strcmp(p, vm_bnames[i]) == 0) {
1397                                 vm_guest = VM_GUEST_VM;
1398                                 freeenv(p);
1399                                 return;
1400                         }
1401                 freeenv(p);
1402         }
1403         p = kern_getenv("smbios.system.product");
1404         if (p != NULL) {
1405                 for (i = 0; vm_pnames[i] != NULL; i++)
1406                         if (strcmp(p, vm_pnames[i]) == 0) {
1407                                 vm_guest = VM_GUEST_VM;
1408                                 freeenv(p);
1409                                 return;
1410                         }
1411                 freeenv(p);
1412         }
1413 }
1414
1415 bool
1416 fix_cpuid(void)
1417 {
1418         uint64_t msr;
1419
1420         /*
1421          * Clear "Limit CPUID Maxval" bit and return true if the caller should
1422          * get the largest standard CPUID function number again if it is set
1423          * from BIOS.  It is necessary for probing correct CPU topology later
1424          * and for the correct operation of the AVX-aware userspace.
1425          */
1426         if (cpu_vendor_id == CPU_VENDOR_INTEL &&
1427             ((CPUID_TO_FAMILY(cpu_id) == 0xf &&
1428             CPUID_TO_MODEL(cpu_id) >= 0x3) ||
1429             (CPUID_TO_FAMILY(cpu_id) == 0x6 &&
1430             CPUID_TO_MODEL(cpu_id) >= 0xe))) {
1431                 msr = rdmsr(MSR_IA32_MISC_ENABLE);
1432                 if ((msr & IA32_MISC_EN_LIMCPUID) != 0) {
1433                         msr &= ~IA32_MISC_EN_LIMCPUID;
1434                         wrmsr(MSR_IA32_MISC_ENABLE, msr);
1435                         return (true);
1436                 }
1437         }
1438
1439         /*
1440          * Re-enable AMD Topology Extension that could be disabled by BIOS
1441          * on some notebook processors.  Without the extension it's really
1442          * hard to determine the correct CPU cache topology.
1443          * See BIOS and Kernel Developer’s Guide (BKDG) for AMD Family 15h
1444          * Models 60h-6Fh Processors, Publication # 50742.
1445          */
1446         if (vm_guest == VM_GUEST_NO && cpu_vendor_id == CPU_VENDOR_AMD &&
1447             CPUID_TO_FAMILY(cpu_id) == 0x15) {
1448                 msr = rdmsr(MSR_EXTFEATURES);
1449                 if ((msr & ((uint64_t)1 << 54)) == 0) {
1450                         msr |= (uint64_t)1 << 54;
1451                         wrmsr(MSR_EXTFEATURES, msr);
1452                         return (true);
1453                 }
1454         }
1455         return (false);
1456 }
1457
1458 void
1459 identify_cpu1(void)
1460 {
1461         u_int regs[4];
1462
1463         do_cpuid(0, regs);
1464         cpu_high = regs[0];
1465         ((u_int *)&cpu_vendor)[0] = regs[1];
1466         ((u_int *)&cpu_vendor)[1] = regs[3];
1467         ((u_int *)&cpu_vendor)[2] = regs[2];
1468         cpu_vendor[12] = '\0';
1469
1470         do_cpuid(1, regs);
1471         cpu_id = regs[0];
1472         cpu_procinfo = regs[1];
1473         cpu_feature = regs[3];
1474         cpu_feature2 = regs[2];
1475 }
1476
1477 void
1478 identify_cpu2(void)
1479 {
1480         u_int regs[4], cpu_stdext_disable;
1481
1482         if (cpu_high >= 7) {
1483                 cpuid_count(7, 0, regs);
1484                 cpu_stdext_feature = regs[1];
1485
1486                 /*
1487                  * Some hypervisors failed to filter out unsupported
1488                  * extended features.  Allow to disable the
1489                  * extensions, activation of which requires setting a
1490                  * bit in CR4, and which VM monitors do not support.
1491                  */
1492                 cpu_stdext_disable = 0;
1493                 TUNABLE_INT_FETCH("hw.cpu_stdext_disable", &cpu_stdext_disable);
1494                 cpu_stdext_feature &= ~cpu_stdext_disable;
1495
1496                 cpu_stdext_feature2 = regs[2];
1497                 cpu_stdext_feature3 = regs[3];
1498
1499                 if ((cpu_stdext_feature3 & CPUID_STDEXT3_ARCH_CAP) != 0)
1500                         cpu_ia32_arch_caps = rdmsr(MSR_IA32_ARCH_CAP);
1501         }
1502 }
1503
1504 void
1505 identify_cpu_fixup_bsp(void)
1506 {
1507         u_int regs[4];
1508
1509         cpu_vendor_id = find_cpu_vendor_id();
1510
1511         if (fix_cpuid()) {
1512                 do_cpuid(0, regs);
1513                 cpu_high = regs[0];
1514         }
1515 }
1516
1517 /*
1518  * Final stage of CPU identification.
1519  */
1520 void
1521 finishidentcpu(void)
1522 {
1523         u_int regs[4];
1524 #ifdef __i386__
1525         u_char ccr3;
1526 #endif
1527
1528         identify_cpu_fixup_bsp();
1529
1530         if (cpu_high >= 5 && (cpu_feature2 & CPUID2_MON) != 0) {
1531                 do_cpuid(5, regs);
1532                 cpu_mon_mwait_flags = regs[2];
1533                 cpu_mon_min_size = regs[0] &  CPUID5_MON_MIN_SIZE;
1534                 cpu_mon_max_size = regs[1] &  CPUID5_MON_MAX_SIZE;
1535         }
1536
1537         identify_cpu2();
1538
1539 #ifdef __i386__
1540         if (cpu_high > 0 &&
1541             (cpu_vendor_id == CPU_VENDOR_INTEL ||
1542              cpu_vendor_id == CPU_VENDOR_AMD ||
1543              cpu_vendor_id == CPU_VENDOR_TRANSMETA ||
1544              cpu_vendor_id == CPU_VENDOR_CENTAUR ||
1545              cpu_vendor_id == CPU_VENDOR_NSC)) {
1546                 do_cpuid(0x80000000, regs);
1547                 if (regs[0] >= 0x80000000)
1548                         cpu_exthigh = regs[0];
1549         }
1550 #else
1551         if (cpu_vendor_id == CPU_VENDOR_INTEL ||
1552             cpu_vendor_id == CPU_VENDOR_AMD ||
1553             cpu_vendor_id == CPU_VENDOR_CENTAUR) {
1554                 do_cpuid(0x80000000, regs);
1555                 cpu_exthigh = regs[0];
1556         }
1557 #endif
1558         if (cpu_exthigh >= 0x80000001) {
1559                 do_cpuid(0x80000001, regs);
1560                 amd_feature = regs[3] & ~(cpu_feature & 0x0183f3ff);
1561                 amd_feature2 = regs[2];
1562         }
1563         if (cpu_exthigh >= 0x80000007) {
1564                 do_cpuid(0x80000007, regs);
1565                 amd_rascap = regs[1];
1566                 amd_pminfo = regs[3];
1567         }
1568         if (cpu_exthigh >= 0x80000008) {
1569                 do_cpuid(0x80000008, regs);
1570                 cpu_maxphyaddr = regs[0] & 0xff;
1571                 amd_extended_feature_extensions = regs[1];
1572                 cpu_procinfo2 = regs[2];
1573         } else {
1574                 cpu_maxphyaddr = (cpu_feature & CPUID_PAE) != 0 ? 36 : 32;
1575         }
1576
1577 #ifdef __i386__
1578         if (cpu_vendor_id == CPU_VENDOR_CYRIX) {
1579                 if (cpu == CPU_486) {
1580                         /*
1581                          * These conditions are equivalent to:
1582                          *     - CPU does not support cpuid instruction.
1583                          *     - Cyrix/IBM CPU is detected.
1584                          */
1585                         if (identblue() == IDENTBLUE_IBMCPU) {
1586                                 strcpy(cpu_vendor, "IBM");
1587                                 cpu_vendor_id = CPU_VENDOR_IBM;
1588                                 cpu = CPU_BLUE;
1589                                 return;
1590                         }
1591                 }
1592                 switch (cpu_id & 0xf00) {
1593                 case 0x600:
1594                         /*
1595                          * Cyrix's datasheet does not describe DIRs.
1596                          * Therefor, I assume it does not have them
1597                          * and use the result of the cpuid instruction.
1598                          * XXX they seem to have it for now at least. -Peter
1599                          */
1600                         identifycyrix();
1601                         cpu = CPU_M2;
1602                         break;
1603                 default:
1604                         identifycyrix();
1605                         /*
1606                          * This routine contains a trick.
1607                          * Don't check (cpu_id & 0x00f0) == 0x50 to detect M2, now.
1608                          */
1609                         switch (cyrix_did & 0x00f0) {
1610                         case 0x00:
1611                         case 0xf0:
1612                                 cpu = CPU_486DLC;
1613                                 break;
1614                         case 0x10:
1615                                 cpu = CPU_CY486DX;
1616                                 break;
1617                         case 0x20:
1618                                 if ((cyrix_did & 0x000f) < 8)
1619                                         cpu = CPU_M1;
1620                                 else
1621                                         cpu = CPU_M1SC;
1622                                 break;
1623                         case 0x30:
1624                                 cpu = CPU_M1;
1625                                 break;
1626                         case 0x40:
1627                                 /* MediaGX CPU */
1628                                 cpu = CPU_M1SC;
1629                                 break;
1630                         default:
1631                                 /* M2 and later CPUs are treated as M2. */
1632                                 cpu = CPU_M2;
1633
1634                                 /*
1635                                  * enable cpuid instruction.
1636                                  */
1637                                 ccr3 = read_cyrix_reg(CCR3);
1638                                 write_cyrix_reg(CCR3, CCR3_MAPEN0);
1639                                 write_cyrix_reg(CCR4, read_cyrix_reg(CCR4) | CCR4_CPUID);
1640                                 write_cyrix_reg(CCR3, ccr3);
1641
1642                                 do_cpuid(0, regs);
1643                                 cpu_high = regs[0];     /* eax */
1644                                 do_cpuid(1, regs);
1645                                 cpu_id = regs[0];       /* eax */
1646                                 cpu_feature = regs[3];  /* edx */
1647                                 break;
1648                         }
1649                 }
1650         } else if (cpu == CPU_486 && *cpu_vendor == '\0') {
1651                 /*
1652                  * There are BlueLightning CPUs that do not change
1653                  * undefined flags by dividing 5 by 2.  In this case,
1654                  * the CPU identification routine in locore.s leaves
1655                  * cpu_vendor null string and puts CPU_486 into the
1656                  * cpu.
1657                  */
1658                 if (identblue() == IDENTBLUE_IBMCPU) {
1659                         strcpy(cpu_vendor, "IBM");
1660                         cpu_vendor_id = CPU_VENDOR_IBM;
1661                         cpu = CPU_BLUE;
1662                         return;
1663                 }
1664         }
1665 #endif
1666 }
1667
1668 int
1669 pti_get_default(void)
1670 {
1671
1672         if (strcmp(cpu_vendor, AMD_VENDOR_ID) == 0)
1673                 return (0);
1674         if ((cpu_ia32_arch_caps & IA32_ARCH_CAP_RDCL_NO) != 0)
1675                 return (0);
1676         return (1);
1677 }
1678
1679 static u_int
1680 find_cpu_vendor_id(void)
1681 {
1682         int     i;
1683
1684         for (i = 0; i < nitems(cpu_vendors); i++)
1685                 if (strcmp(cpu_vendor, cpu_vendors[i].vendor) == 0)
1686                         return (cpu_vendors[i].vendor_id);
1687         return (0);
1688 }
1689
1690 static void
1691 print_AMD_assoc(int i)
1692 {
1693         if (i == 255)
1694                 printf(", fully associative\n");
1695         else
1696                 printf(", %d-way associative\n", i);
1697 }
1698
1699 static void
1700 print_AMD_l2_assoc(int i)
1701 {
1702         switch (i & 0x0f) {
1703         case 0: printf(", disabled/not present\n"); break;
1704         case 1: printf(", direct mapped\n"); break;
1705         case 2: printf(", 2-way associative\n"); break;
1706         case 4: printf(", 4-way associative\n"); break;
1707         case 6: printf(", 8-way associative\n"); break;
1708         case 8: printf(", 16-way associative\n"); break;
1709         case 15: printf(", fully associative\n"); break;
1710         default: printf(", reserved configuration\n"); break;
1711         }
1712 }
1713
1714 static void
1715 print_AMD_info(void)
1716 {
1717 #ifdef __i386__
1718         uint64_t amd_whcr;
1719 #endif
1720         u_int regs[4];
1721
1722         if (cpu_exthigh >= 0x80000005) {
1723                 do_cpuid(0x80000005, regs);
1724                 printf("L1 2MB data TLB: %d entries", (regs[0] >> 16) & 0xff);
1725                 print_AMD_assoc(regs[0] >> 24);
1726
1727                 printf("L1 2MB instruction TLB: %d entries", regs[0] & 0xff);
1728                 print_AMD_assoc((regs[0] >> 8) & 0xff);
1729
1730                 printf("L1 4KB data TLB: %d entries", (regs[1] >> 16) & 0xff);
1731                 print_AMD_assoc(regs[1] >> 24);
1732
1733                 printf("L1 4KB instruction TLB: %d entries", regs[1] & 0xff);
1734                 print_AMD_assoc((regs[1] >> 8) & 0xff);
1735
1736                 printf("L1 data cache: %d kbytes", regs[2] >> 24);
1737                 printf(", %d bytes/line", regs[2] & 0xff);
1738                 printf(", %d lines/tag", (regs[2] >> 8) & 0xff);
1739                 print_AMD_assoc((regs[2] >> 16) & 0xff);
1740
1741                 printf("L1 instruction cache: %d kbytes", regs[3] >> 24);
1742                 printf(", %d bytes/line", regs[3] & 0xff);
1743                 printf(", %d lines/tag", (regs[3] >> 8) & 0xff);
1744                 print_AMD_assoc((regs[3] >> 16) & 0xff);
1745         }
1746
1747         if (cpu_exthigh >= 0x80000006) {
1748                 do_cpuid(0x80000006, regs);
1749                 if ((regs[0] >> 16) != 0) {
1750                         printf("L2 2MB data TLB: %d entries",
1751                             (regs[0] >> 16) & 0xfff);
1752                         print_AMD_l2_assoc(regs[0] >> 28);
1753                         printf("L2 2MB instruction TLB: %d entries",
1754                             regs[0] & 0xfff);
1755                         print_AMD_l2_assoc((regs[0] >> 28) & 0xf);
1756                 } else {
1757                         printf("L2 2MB unified TLB: %d entries",
1758                             regs[0] & 0xfff);
1759                         print_AMD_l2_assoc((regs[0] >> 28) & 0xf);
1760                 }
1761                 if ((regs[1] >> 16) != 0) {
1762                         printf("L2 4KB data TLB: %d entries",
1763                             (regs[1] >> 16) & 0xfff);
1764                         print_AMD_l2_assoc(regs[1] >> 28);
1765
1766                         printf("L2 4KB instruction TLB: %d entries",
1767                             (regs[1] >> 16) & 0xfff);
1768                         print_AMD_l2_assoc((regs[1] >> 28) & 0xf);
1769                 } else {
1770                         printf("L2 4KB unified TLB: %d entries",
1771                             (regs[1] >> 16) & 0xfff);
1772                         print_AMD_l2_assoc((regs[1] >> 28) & 0xf);
1773                 }
1774                 printf("L2 unified cache: %d kbytes", regs[2] >> 16);
1775                 printf(", %d bytes/line", regs[2] & 0xff);
1776                 printf(", %d lines/tag", (regs[2] >> 8) & 0x0f);
1777                 print_AMD_l2_assoc((regs[2] >> 12) & 0x0f);
1778         }
1779
1780 #ifdef __i386__
1781         if (((cpu_id & 0xf00) == 0x500)
1782             && (((cpu_id & 0x0f0) > 0x80)
1783                 || (((cpu_id & 0x0f0) == 0x80)
1784                     && (cpu_id & 0x00f) > 0x07))) {
1785                 /* K6-2(new core [Stepping 8-F]), K6-III or later */
1786                 amd_whcr = rdmsr(0xc0000082);
1787                 if (!(amd_whcr & (0x3ff << 22))) {
1788                         printf("Write Allocate Disable\n");
1789                 } else {
1790                         printf("Write Allocate Enable Limit: %dM bytes\n",
1791                             (u_int32_t)((amd_whcr & (0x3ff << 22)) >> 22) * 4);
1792                         printf("Write Allocate 15-16M bytes: %s\n",
1793                             (amd_whcr & (1 << 16)) ? "Enable" : "Disable");
1794                 }
1795         } else if (((cpu_id & 0xf00) == 0x500)
1796                    && ((cpu_id & 0x0f0) > 0x50)) {
1797                 /* K6, K6-2(old core) */
1798                 amd_whcr = rdmsr(0xc0000082);
1799                 if (!(amd_whcr & (0x7f << 1))) {
1800                         printf("Write Allocate Disable\n");
1801                 } else {
1802                         printf("Write Allocate Enable Limit: %dM bytes\n",
1803                             (u_int32_t)((amd_whcr & (0x7f << 1)) >> 1) * 4);
1804                         printf("Write Allocate 15-16M bytes: %s\n",
1805                             (amd_whcr & 0x0001) ? "Enable" : "Disable");
1806                         printf("Hardware Write Allocate Control: %s\n",
1807                             (amd_whcr & 0x0100) ? "Enable" : "Disable");
1808                 }
1809         }
1810 #endif
1811         /*
1812          * Opteron Rev E shows a bug as in very rare occasions a read memory
1813          * barrier is not performed as expected if it is followed by a
1814          * non-atomic read-modify-write instruction.
1815          * As long as that bug pops up very rarely (intensive machine usage
1816          * on other operating systems generally generates one unexplainable
1817          * crash any 2 months) and as long as a model specific fix would be
1818          * impractical at this stage, print out a warning string if the broken
1819          * model and family are identified.
1820          */
1821         if (CPUID_TO_FAMILY(cpu_id) == 0xf && CPUID_TO_MODEL(cpu_id) >= 0x20 &&
1822             CPUID_TO_MODEL(cpu_id) <= 0x3f)
1823                 printf("WARNING: This architecture revision has known SMP "
1824                     "hardware bugs which may cause random instability\n");
1825 }
1826
1827 static void
1828 print_INTEL_info(void)
1829 {
1830         u_int regs[4];
1831         u_int rounds, regnum;
1832         u_int nwaycode, nway;
1833
1834         if (cpu_high >= 2) {
1835                 rounds = 0;
1836                 do {
1837                         do_cpuid(0x2, regs);
1838                         if (rounds == 0 && (rounds = (regs[0] & 0xff)) == 0)
1839                                 break;  /* we have a buggy CPU */
1840
1841                         for (regnum = 0; regnum <= 3; ++regnum) {
1842                                 if (regs[regnum] & (1<<31))
1843                                         continue;
1844                                 if (regnum != 0)
1845                                         print_INTEL_TLB(regs[regnum] & 0xff);
1846                                 print_INTEL_TLB((regs[regnum] >> 8) & 0xff);
1847                                 print_INTEL_TLB((regs[regnum] >> 16) & 0xff);
1848                                 print_INTEL_TLB((regs[regnum] >> 24) & 0xff);
1849                         }
1850                 } while (--rounds > 0);
1851         }
1852
1853         if (cpu_exthigh >= 0x80000006) {
1854                 do_cpuid(0x80000006, regs);
1855                 nwaycode = (regs[2] >> 12) & 0x0f;
1856                 if (nwaycode >= 0x02 && nwaycode <= 0x08)
1857                         nway = 1 << (nwaycode / 2);
1858                 else
1859                         nway = 0;
1860                 printf("L2 cache: %u kbytes, %u-way associative, %u bytes/line\n",
1861                     (regs[2] >> 16) & 0xffff, nway, regs[2] & 0xff);
1862         }
1863 }
1864
1865 static void
1866 print_INTEL_TLB(u_int data)
1867 {
1868         switch (data) {
1869         case 0x0:
1870         case 0x40:
1871         default:
1872                 break;
1873         case 0x1:
1874                 printf("Instruction TLB: 4 KB pages, 4-way set associative, 32 entries\n");
1875                 break;
1876         case 0x2:
1877                 printf("Instruction TLB: 4 MB pages, fully associative, 2 entries\n");
1878                 break;
1879         case 0x3:
1880                 printf("Data TLB: 4 KB pages, 4-way set associative, 64 entries\n");
1881                 break;
1882         case 0x4:
1883                 printf("Data TLB: 4 MB Pages, 4-way set associative, 8 entries\n");
1884                 break;
1885         case 0x6:
1886                 printf("1st-level instruction cache: 8 KB, 4-way set associative, 32 byte line size\n");
1887                 break;
1888         case 0x8:
1889                 printf("1st-level instruction cache: 16 KB, 4-way set associative, 32 byte line size\n");
1890                 break;
1891         case 0x9:
1892                 printf("1st-level instruction cache: 32 KB, 4-way set associative, 64 byte line size\n");
1893                 break;
1894         case 0xa:
1895                 printf("1st-level data cache: 8 KB, 2-way set associative, 32 byte line size\n");
1896                 break;
1897         case 0xb:
1898                 printf("Instruction TLB: 4 MByte pages, 4-way set associative, 4 entries\n");
1899                 break;
1900         case 0xc:
1901                 printf("1st-level data cache: 16 KB, 4-way set associative, 32 byte line size\n");
1902                 break;
1903         case 0xd:
1904                 printf("1st-level data cache: 16 KBytes, 4-way set associative, 64 byte line size");
1905                 break;
1906         case 0xe:
1907                 printf("1st-level data cache: 24 KBytes, 6-way set associative, 64 byte line size\n");
1908                 break;
1909         case 0x1d:
1910                 printf("2nd-level cache: 128 KBytes, 2-way set associative, 64 byte line size\n");
1911                 break;
1912         case 0x21:
1913                 printf("2nd-level cache: 256 KBytes, 8-way set associative, 64 byte line size\n");
1914                 break;
1915         case 0x22:
1916                 printf("3rd-level cache: 512 KB, 4-way set associative, sectored cache, 64 byte line size\n");
1917                 break;
1918         case 0x23:
1919                 printf("3rd-level cache: 1 MB, 8-way set associative, sectored cache, 64 byte line size\n");
1920                 break;
1921         case 0x24:
1922                 printf("2nd-level cache: 1 MBytes, 16-way set associative, 64 byte line size\n");
1923                 break;
1924         case 0x25:
1925                 printf("3rd-level cache: 2 MB, 8-way set associative, sectored cache, 64 byte line size\n");
1926                 break;
1927         case 0x29:
1928                 printf("3rd-level cache: 4 MB, 8-way set associative, sectored cache, 64 byte line size\n");
1929                 break;
1930         case 0x2c:
1931                 printf("1st-level data cache: 32 KB, 8-way set associative, 64 byte line size\n");
1932                 break;
1933         case 0x30:
1934                 printf("1st-level instruction cache: 32 KB, 8-way set associative, 64 byte line size\n");
1935                 break;
1936         case 0x39: /* De-listed in SDM rev. 54 */
1937                 printf("2nd-level cache: 128 KB, 4-way set associative, sectored cache, 64 byte line size\n");
1938                 break;
1939         case 0x3b: /* De-listed in SDM rev. 54 */
1940                 printf("2nd-level cache: 128 KB, 2-way set associative, sectored cache, 64 byte line size\n");
1941                 break;
1942         case 0x3c: /* De-listed in SDM rev. 54 */
1943                 printf("2nd-level cache: 256 KB, 4-way set associative, sectored cache, 64 byte line size\n");
1944                 break;
1945         case 0x41:
1946                 printf("2nd-level cache: 128 KB, 4-way set associative, 32 byte line size\n");
1947                 break;
1948         case 0x42:
1949                 printf("2nd-level cache: 256 KB, 4-way set associative, 32 byte line size\n");
1950                 break;
1951         case 0x43:
1952                 printf("2nd-level cache: 512 KB, 4-way set associative, 32 byte line size\n");
1953                 break;
1954         case 0x44:
1955                 printf("2nd-level cache: 1 MB, 4-way set associative, 32 byte line size\n");
1956                 break;
1957         case 0x45:
1958                 printf("2nd-level cache: 2 MB, 4-way set associative, 32 byte line size\n");
1959                 break;
1960         case 0x46:
1961                 printf("3rd-level cache: 4 MB, 4-way set associative, 64 byte line size\n");
1962                 break;
1963         case 0x47:
1964                 printf("3rd-level cache: 8 MB, 8-way set associative, 64 byte line size\n");
1965                 break;
1966         case 0x48:
1967                 printf("2nd-level cache: 3MByte, 12-way set associative, 64 byte line size\n");
1968                 break;
1969         case 0x49:
1970                 if (CPUID_TO_FAMILY(cpu_id) == 0xf &&
1971                     CPUID_TO_MODEL(cpu_id) == 0x6)
1972                         printf("3rd-level cache: 4MB, 16-way set associative, 64-byte line size\n");
1973                 else
1974                         printf("2nd-level cache: 4 MByte, 16-way set associative, 64 byte line size");
1975                 break;
1976         case 0x4a:
1977                 printf("3rd-level cache: 6MByte, 12-way set associative, 64 byte line size\n");
1978                 break;
1979         case 0x4b:
1980                 printf("3rd-level cache: 8MByte, 16-way set associative, 64 byte line size\n");
1981                 break;
1982         case 0x4c:
1983                 printf("3rd-level cache: 12MByte, 12-way set associative, 64 byte line size\n");
1984                 break;
1985         case 0x4d:
1986                 printf("3rd-level cache: 16MByte, 16-way set associative, 64 byte line size\n");
1987                 break;
1988         case 0x4e:
1989                 printf("2nd-level cache: 6MByte, 24-way set associative, 64 byte line size\n");
1990                 break;
1991         case 0x4f:
1992                 printf("Instruction TLB: 4 KByte pages, 32 entries\n");
1993                 break;
1994         case 0x50:
1995                 printf("Instruction TLB: 4 KB, 2 MB or 4 MB pages, fully associative, 64 entries\n");
1996                 break;
1997         case 0x51:
1998                 printf("Instruction TLB: 4 KB, 2 MB or 4 MB pages, fully associative, 128 entries\n");
1999                 break;
2000         case 0x52:
2001                 printf("Instruction TLB: 4 KB, 2 MB or 4 MB pages, fully associative, 256 entries\n");
2002                 break;
2003         case 0x55:
2004                 printf("Instruction TLB: 2-MByte or 4-MByte pages, fully associative, 7 entries\n");
2005                 break;
2006         case 0x56:
2007                 printf("Data TLB0: 4 MByte pages, 4-way set associative, 16 entries\n");
2008                 break;
2009         case 0x57:
2010                 printf("Data TLB0: 4 KByte pages, 4-way associative, 16 entries\n");
2011                 break;
2012         case 0x59:
2013                 printf("Data TLB0: 4 KByte pages, fully associative, 16 entries\n");
2014                 break;
2015         case 0x5a:
2016                 printf("Data TLB0: 2-MByte or 4 MByte pages, 4-way set associative, 32 entries\n");
2017                 break;
2018         case 0x5b:
2019                 printf("Data TLB: 4 KB or 4 MB pages, fully associative, 64 entries\n");
2020                 break;
2021         case 0x5c:
2022                 printf("Data TLB: 4 KB or 4 MB pages, fully associative, 128 entries\n");
2023                 break;
2024         case 0x5d:
2025                 printf("Data TLB: 4 KB or 4 MB pages, fully associative, 256 entries\n");
2026                 break;
2027         case 0x60:
2028                 printf("1st-level data cache: 16 KB, 8-way set associative, sectored cache, 64 byte line size\n");
2029                 break;
2030         case 0x61:
2031                 printf("Instruction TLB: 4 KByte pages, fully associative, 48 entries\n");
2032                 break;
2033         case 0x63:
2034                 printf("Data TLB: 2 MByte or 4 MByte pages, 4-way set associative, 32 entries and a separate array with 1 GByte pages, 4-way set associative, 4 entries\n");
2035                 break;
2036         case 0x64:
2037                 printf("Data TLB: 4 KBytes pages, 4-way set associative, 512 entries\n");
2038                 break;
2039         case 0x66:
2040                 printf("1st-level data cache: 8 KB, 4-way set associative, sectored cache, 64 byte line size\n");
2041                 break;
2042         case 0x67:
2043                 printf("1st-level data cache: 16 KB, 4-way set associative, sectored cache, 64 byte line size\n");
2044                 break;
2045         case 0x68:
2046                 printf("1st-level data cache: 32 KB, 4 way set associative, sectored cache, 64 byte line size\n");
2047                 break;
2048         case 0x6a:
2049                 printf("uTLB: 4KByte pages, 8-way set associative, 64 entries\n");
2050                 break;
2051         case 0x6b:
2052                 printf("DTLB: 4KByte pages, 8-way set associative, 256 entries\n");
2053                 break;
2054         case 0x6c:
2055                 printf("DTLB: 2M/4M pages, 8-way set associative, 128 entries\n");
2056                 break;
2057         case 0x6d:
2058                 printf("DTLB: 1 GByte pages, fully associative, 16 entries\n");
2059                 break;
2060         case 0x70:
2061                 printf("Trace cache: 12K-uops, 8-way set associative\n");
2062                 break;
2063         case 0x71:
2064                 printf("Trace cache: 16K-uops, 8-way set associative\n");
2065                 break;
2066         case 0x72:
2067                 printf("Trace cache: 32K-uops, 8-way set associative\n");
2068                 break;
2069         case 0x76:
2070                 printf("Instruction TLB: 2M/4M pages, fully associative, 8 entries\n");
2071                 break;
2072         case 0x78:
2073                 printf("2nd-level cache: 1 MB, 4-way set associative, 64-byte line size\n");
2074                 break;
2075         case 0x79:
2076                 printf("2nd-level cache: 128 KB, 8-way set associative, sectored cache, 64 byte line size\n");
2077                 break;
2078         case 0x7a:
2079                 printf("2nd-level cache: 256 KB, 8-way set associative, sectored cache, 64 byte line size\n");
2080                 break;
2081         case 0x7b:
2082                 printf("2nd-level cache: 512 KB, 8-way set associative, sectored cache, 64 byte line size\n");
2083                 break;
2084         case 0x7c:
2085                 printf("2nd-level cache: 1 MB, 8-way set associative, sectored cache, 64 byte line size\n");
2086                 break;
2087         case 0x7d:
2088                 printf("2nd-level cache: 2-MB, 8-way set associative, 64-byte line size\n");
2089                 break;
2090         case 0x7f:
2091                 printf("2nd-level cache: 512-KB, 2-way set associative, 64-byte line size\n");
2092                 break;
2093         case 0x80:
2094                 printf("2nd-level cache: 512 KByte, 8-way set associative, 64-byte line size\n");
2095                 break;
2096         case 0x82:
2097                 printf("2nd-level cache: 256 KB, 8-way set associative, 32 byte line size\n");
2098                 break;
2099         case 0x83:
2100                 printf("2nd-level cache: 512 KB, 8-way set associative, 32 byte line size\n");
2101                 break;
2102         case 0x84:
2103                 printf("2nd-level cache: 1 MB, 8-way set associative, 32 byte line size\n");
2104                 break;
2105         case 0x85:
2106                 printf("2nd-level cache: 2 MB, 8-way set associative, 32 byte line size\n");
2107                 break;
2108         case 0x86:
2109                 printf("2nd-level cache: 512 KB, 4-way set associative, 64 byte line size\n");
2110                 break;
2111         case 0x87:
2112                 printf("2nd-level cache: 1 MB, 8-way set associative, 64 byte line size\n");
2113                 break;
2114         case 0xa0:
2115                 printf("DTLB: 4k pages, fully associative, 32 entries\n");
2116                 break;
2117         case 0xb0:
2118                 printf("Instruction TLB: 4 KB Pages, 4-way set associative, 128 entries\n");
2119                 break;
2120         case 0xb1:
2121                 printf("Instruction TLB: 2M pages, 4-way, 8 entries or 4M pages, 4-way, 4 entries\n");
2122                 break;
2123         case 0xb2:
2124                 printf("Instruction TLB: 4KByte pages, 4-way set associative, 64 entries\n");
2125                 break;
2126         case 0xb3:
2127                 printf("Data TLB: 4 KB Pages, 4-way set associative, 128 entries\n");
2128                 break;
2129         case 0xb4:
2130                 printf("Data TLB1: 4 KByte pages, 4-way associative, 256 entries\n");
2131                 break;
2132         case 0xb5:
2133                 printf("Instruction TLB: 4KByte pages, 8-way set associative, 64 entries\n");
2134                 break;
2135         case 0xb6:
2136                 printf("Instruction TLB: 4KByte pages, 8-way set associative, 128 entries\n");
2137                 break;
2138         case 0xba:
2139                 printf("Data TLB1: 4 KByte pages, 4-way associative, 64 entries\n");
2140                 break;
2141         case 0xc0:
2142                 printf("Data TLB: 4 KByte and 4 MByte pages, 4-way associative, 8 entries\n");
2143                 break;
2144         case 0xc1:
2145                 printf("Shared 2nd-Level TLB: 4 KByte/2MByte pages, 8-way associative, 1024 entries\n");
2146                 break;
2147         case 0xc2:
2148                 printf("DTLB: 4 KByte/2 MByte pages, 4-way associative, 16 entries\n");
2149                 break;
2150         case 0xc3:
2151                 printf("Shared 2nd-Level TLB: 4 KByte /2 MByte pages, 6-way associative, 1536 entries. Also 1GBbyte pages, 4-way, 16 entries\n");
2152                 break;
2153         case 0xc4:
2154                 printf("DTLB: 2M/4M Byte pages, 4-way associative, 32 entries\n");
2155                 break;
2156         case 0xca:
2157                 printf("Shared 2nd-Level TLB: 4 KByte pages, 4-way associative, 512 entries\n");
2158                 break;
2159         case 0xd0:
2160                 printf("3rd-level cache: 512 KByte, 4-way set associative, 64 byte line size\n");
2161                 break;
2162         case 0xd1:
2163                 printf("3rd-level cache: 1 MByte, 4-way set associative, 64 byte line size\n");
2164                 break;
2165         case 0xd2:
2166                 printf("3rd-level cache: 2 MByte, 4-way set associative, 64 byte line size\n");
2167                 break;
2168         case 0xd6:
2169                 printf("3rd-level cache: 1 MByte, 8-way set associative, 64 byte line size\n");
2170                 break;
2171         case 0xd7:
2172                 printf("3rd-level cache: 2 MByte, 8-way set associative, 64 byte line size\n");
2173                 break;
2174         case 0xd8:
2175                 printf("3rd-level cache: 4 MByte, 8-way set associative, 64 byte line size\n");
2176                 break;
2177         case 0xdc:
2178                 printf("3rd-level cache: 1.5 MByte, 12-way set associative, 64 byte line size\n");
2179                 break;
2180         case 0xdd:
2181                 printf("3rd-level cache: 3 MByte, 12-way set associative, 64 byte line size\n");
2182                 break;
2183         case 0xde:
2184                 printf("3rd-level cache: 6 MByte, 12-way set associative, 64 byte line size\n");
2185                 break;
2186         case 0xe2:
2187                 printf("3rd-level cache: 2 MByte, 16-way set associative, 64 byte line size\n");
2188                 break;
2189         case 0xe3:
2190                 printf("3rd-level cache: 4 MByte, 16-way set associative, 64 byte line size\n");
2191                 break;
2192         case 0xe4:
2193                 printf("3rd-level cache: 8 MByte, 16-way set associative, 64 byte line size\n");
2194                 break;
2195         case 0xea:
2196                 printf("3rd-level cache: 12MByte, 24-way set associative, 64 byte line size\n");
2197                 break;
2198         case 0xeb:
2199                 printf("3rd-level cache: 18MByte, 24-way set associative, 64 byte line size\n");
2200                 break;
2201         case 0xec:
2202                 printf("3rd-level cache: 24MByte, 24-way set associative, 64 byte line size\n");
2203                 break;
2204         case 0xf0:
2205                 printf("64-Byte prefetching\n");
2206                 break;
2207         case 0xf1:
2208                 printf("128-Byte prefetching\n");
2209                 break;
2210         }
2211 }
2212
2213 static void
2214 print_svm_info(void)
2215 {
2216         u_int features, regs[4];
2217         uint64_t msr;
2218         int comma;
2219
2220         printf("\n  SVM: ");
2221         do_cpuid(0x8000000A, regs);
2222         features = regs[3];
2223
2224         msr = rdmsr(MSR_VM_CR);
2225         if ((msr & VM_CR_SVMDIS) == VM_CR_SVMDIS)
2226                 printf("(disabled in BIOS) ");
2227
2228         if (!bootverbose) {
2229                 comma = 0;
2230                 if (features & (1 << 0)) {
2231                         printf("%sNP", comma ? "," : "");
2232                         comma = 1; 
2233                 }
2234                 if (features & (1 << 3)) {
2235                         printf("%sNRIP", comma ? "," : "");
2236                         comma = 1; 
2237                 }
2238                 if (features & (1 << 5)) {
2239                         printf("%sVClean", comma ? "," : "");
2240                         comma = 1; 
2241                 }
2242                 if (features & (1 << 6)) {
2243                         printf("%sAFlush", comma ? "," : "");
2244                         comma = 1; 
2245                 }
2246                 if (features & (1 << 7)) {
2247                         printf("%sDAssist", comma ? "," : "");
2248                         comma = 1; 
2249                 }
2250                 printf("%sNAsids=%d", comma ? "," : "", regs[1]);
2251                 return;
2252         }
2253
2254         printf("Features=0x%b", features,
2255                "\020"
2256                "\001NP"                 /* Nested paging */
2257                "\002LbrVirt"            /* LBR virtualization */
2258                "\003SVML"               /* SVM lock */
2259                "\004NRIPS"              /* NRIP save */
2260                "\005TscRateMsr"         /* MSR based TSC rate control */
2261                "\006VmcbClean"          /* VMCB clean bits */
2262                "\007FlushByAsid"        /* Flush by ASID */
2263                "\010DecodeAssist"       /* Decode assist */
2264                "\011<b8>"
2265                "\012<b9>"
2266                "\013PauseFilter"        /* PAUSE intercept filter */    
2267                "\014EncryptedMcodePatch"
2268                "\015PauseFilterThreshold" /* PAUSE filter threshold */
2269                "\016AVIC"               /* virtual interrupt controller */
2270                "\017<b14>"
2271                "\020V_VMSAVE_VMLOAD"
2272                "\021vGIF"
2273                "\022<b17>"
2274                "\023<b18>"
2275                "\024<b19>"
2276                "\025<b20>"
2277                "\026<b21>"
2278                "\027<b22>"
2279                "\030<b23>"
2280                "\031<b24>"
2281                "\032<b25>"
2282                "\033<b26>"
2283                "\034<b27>"
2284                "\035<b28>"
2285                "\036<b29>"
2286                "\037<b30>"
2287                "\040<b31>"
2288                 );
2289         printf("\nRevision=%d, ASIDs=%d", regs[0] & 0xff, regs[1]);
2290 }
2291
2292 #ifdef __i386__
2293 static void
2294 print_transmeta_info(void)
2295 {
2296         u_int regs[4], nreg = 0;
2297
2298         do_cpuid(0x80860000, regs);
2299         nreg = regs[0];
2300         if (nreg >= 0x80860001) {
2301                 do_cpuid(0x80860001, regs);
2302                 printf("  Processor revision %u.%u.%u.%u\n",
2303                        (regs[1] >> 24) & 0xff,
2304                        (regs[1] >> 16) & 0xff,
2305                        (regs[1] >> 8) & 0xff,
2306                        regs[1] & 0xff);
2307         }
2308         if (nreg >= 0x80860002) {
2309                 do_cpuid(0x80860002, regs);
2310                 printf("  Code Morphing Software revision %u.%u.%u-%u-%u\n",
2311                        (regs[1] >> 24) & 0xff,
2312                        (regs[1] >> 16) & 0xff,
2313                        (regs[1] >> 8) & 0xff,
2314                        regs[1] & 0xff,
2315                        regs[2]);
2316         }
2317         if (nreg >= 0x80860006) {
2318                 char info[65];
2319                 do_cpuid(0x80860003, (u_int*) &info[0]);
2320                 do_cpuid(0x80860004, (u_int*) &info[16]);
2321                 do_cpuid(0x80860005, (u_int*) &info[32]);
2322                 do_cpuid(0x80860006, (u_int*) &info[48]);
2323                 info[64] = 0;
2324                 printf("  %s\n", info);
2325         }
2326 }
2327 #endif
2328
2329 static void
2330 print_via_padlock_info(void)
2331 {
2332         u_int regs[4];
2333
2334         do_cpuid(0xc0000001, regs);
2335         printf("\n  VIA Padlock Features=0x%b", regs[3],
2336         "\020"
2337         "\003RNG"               /* RNG */
2338         "\007AES"               /* ACE */
2339         "\011AES-CTR"           /* ACE2 */
2340         "\013SHA1,SHA256"       /* PHE */
2341         "\015RSA"               /* PMM */
2342         );
2343 }
2344
2345 static uint32_t
2346 vmx_settable(uint64_t basic, int msr, int true_msr)
2347 {
2348         uint64_t val;
2349
2350         if (basic & (1ULL << 55))
2351                 val = rdmsr(true_msr);
2352         else
2353                 val = rdmsr(msr);
2354
2355         /* Just report the controls that can be set to 1. */
2356         return (val >> 32);
2357 }
2358
2359 static void
2360 print_vmx_info(void)
2361 {
2362         uint64_t basic, msr;
2363         uint32_t entry, exit, mask, pin, proc, proc2;
2364         int comma;
2365
2366         printf("\n  VT-x: ");
2367         msr = rdmsr(MSR_IA32_FEATURE_CONTROL);
2368         if (!(msr & IA32_FEATURE_CONTROL_VMX_EN))
2369                 printf("(disabled in BIOS) ");
2370         basic = rdmsr(MSR_VMX_BASIC);
2371         pin = vmx_settable(basic, MSR_VMX_PINBASED_CTLS,
2372             MSR_VMX_TRUE_PINBASED_CTLS);
2373         proc = vmx_settable(basic, MSR_VMX_PROCBASED_CTLS,
2374             MSR_VMX_TRUE_PROCBASED_CTLS);
2375         if (proc & PROCBASED_SECONDARY_CONTROLS)
2376                 proc2 = vmx_settable(basic, MSR_VMX_PROCBASED_CTLS2,
2377                     MSR_VMX_PROCBASED_CTLS2);
2378         else
2379                 proc2 = 0;
2380         exit = vmx_settable(basic, MSR_VMX_EXIT_CTLS, MSR_VMX_TRUE_EXIT_CTLS);
2381         entry = vmx_settable(basic, MSR_VMX_ENTRY_CTLS, MSR_VMX_TRUE_ENTRY_CTLS);
2382
2383         if (!bootverbose) {
2384                 comma = 0;
2385                 if (exit & VM_EXIT_SAVE_PAT && exit & VM_EXIT_LOAD_PAT &&
2386                     entry & VM_ENTRY_LOAD_PAT) {
2387                         printf("%sPAT", comma ? "," : "");
2388                         comma = 1;
2389                 }
2390                 if (proc & PROCBASED_HLT_EXITING) {
2391                         printf("%sHLT", comma ? "," : "");
2392                         comma = 1;
2393                 }
2394                 if (proc & PROCBASED_MTF) {
2395                         printf("%sMTF", comma ? "," : "");
2396                         comma = 1;
2397                 }
2398                 if (proc & PROCBASED_PAUSE_EXITING) {
2399                         printf("%sPAUSE", comma ? "," : "");
2400                         comma = 1;
2401                 }
2402                 if (proc2 & PROCBASED2_ENABLE_EPT) {
2403                         printf("%sEPT", comma ? "," : "");
2404                         comma = 1;
2405                 }
2406                 if (proc2 & PROCBASED2_UNRESTRICTED_GUEST) {
2407                         printf("%sUG", comma ? "," : "");
2408                         comma = 1;
2409                 }
2410                 if (proc2 & PROCBASED2_ENABLE_VPID) {
2411                         printf("%sVPID", comma ? "," : "");
2412                         comma = 1;
2413                 }
2414                 if (proc & PROCBASED_USE_TPR_SHADOW &&
2415                     proc2 & PROCBASED2_VIRTUALIZE_APIC_ACCESSES &&
2416                     proc2 & PROCBASED2_VIRTUALIZE_X2APIC_MODE &&
2417                     proc2 & PROCBASED2_APIC_REGISTER_VIRTUALIZATION &&
2418                     proc2 & PROCBASED2_VIRTUAL_INTERRUPT_DELIVERY) {
2419                         printf("%sVID", comma ? "," : "");
2420                         comma = 1;
2421                         if (pin & PINBASED_POSTED_INTERRUPT)
2422                                 printf(",PostIntr");
2423                 }
2424                 return;
2425         }
2426
2427         mask = basic >> 32;
2428         printf("Basic Features=0x%b", mask,
2429         "\020"
2430         "\02132PA"              /* 32-bit physical addresses */
2431         "\022SMM"               /* SMM dual-monitor */
2432         "\027INS/OUTS"          /* VM-exit info for INS and OUTS */
2433         "\030TRUE"              /* TRUE_CTLS MSRs */
2434         );
2435         printf("\n        Pin-Based Controls=0x%b", pin,
2436         "\020"
2437         "\001ExtINT"            /* External-interrupt exiting */
2438         "\004NMI"               /* NMI exiting */
2439         "\006VNMI"              /* Virtual NMIs */
2440         "\007PreTmr"            /* Activate VMX-preemption timer */
2441         "\010PostIntr"          /* Process posted interrupts */
2442         );
2443         printf("\n        Primary Processor Controls=0x%b", proc,
2444         "\020"
2445         "\003INTWIN"            /* Interrupt-window exiting */
2446         "\004TSCOff"            /* Use TSC offsetting */
2447         "\010HLT"               /* HLT exiting */
2448         "\012INVLPG"            /* INVLPG exiting */
2449         "\013MWAIT"             /* MWAIT exiting */
2450         "\014RDPMC"             /* RDPMC exiting */
2451         "\015RDTSC"             /* RDTSC exiting */
2452         "\020CR3-LD"            /* CR3-load exiting */
2453         "\021CR3-ST"            /* CR3-store exiting */
2454         "\024CR8-LD"            /* CR8-load exiting */
2455         "\025CR8-ST"            /* CR8-store exiting */
2456         "\026TPR"               /* Use TPR shadow */
2457         "\027NMIWIN"            /* NMI-window exiting */
2458         "\030MOV-DR"            /* MOV-DR exiting */
2459         "\031IO"                /* Unconditional I/O exiting */
2460         "\032IOmap"             /* Use I/O bitmaps */
2461         "\034MTF"               /* Monitor trap flag */
2462         "\035MSRmap"            /* Use MSR bitmaps */
2463         "\036MONITOR"           /* MONITOR exiting */
2464         "\037PAUSE"             /* PAUSE exiting */
2465         );
2466         if (proc & PROCBASED_SECONDARY_CONTROLS)
2467                 printf("\n        Secondary Processor Controls=0x%b", proc2,
2468                 "\020"
2469                 "\001APIC"              /* Virtualize APIC accesses */
2470                 "\002EPT"               /* Enable EPT */
2471                 "\003DT"                /* Descriptor-table exiting */
2472                 "\004RDTSCP"            /* Enable RDTSCP */
2473                 "\005x2APIC"            /* Virtualize x2APIC mode */
2474                 "\006VPID"              /* Enable VPID */
2475                 "\007WBINVD"            /* WBINVD exiting */
2476                 "\010UG"                /* Unrestricted guest */
2477                 "\011APIC-reg"          /* APIC-register virtualization */
2478                 "\012VID"               /* Virtual-interrupt delivery */
2479                 "\013PAUSE-loop"        /* PAUSE-loop exiting */
2480                 "\014RDRAND"            /* RDRAND exiting */
2481                 "\015INVPCID"           /* Enable INVPCID */
2482                 "\016VMFUNC"            /* Enable VM functions */
2483                 "\017VMCS"              /* VMCS shadowing */
2484                 "\020EPT#VE"            /* EPT-violation #VE */
2485                 "\021XSAVES"            /* Enable XSAVES/XRSTORS */
2486                 );
2487         printf("\n        Exit Controls=0x%b", mask,
2488         "\020"
2489         "\003DR"                /* Save debug controls */
2490                                 /* Ignore Host address-space size */
2491         "\015PERF"              /* Load MSR_PERF_GLOBAL_CTRL */
2492         "\020AckInt"            /* Acknowledge interrupt on exit */
2493         "\023PAT-SV"            /* Save MSR_PAT */
2494         "\024PAT-LD"            /* Load MSR_PAT */
2495         "\025EFER-SV"           /* Save MSR_EFER */
2496         "\026EFER-LD"           /* Load MSR_EFER */
2497         "\027PTMR-SV"           /* Save VMX-preemption timer value */
2498         );
2499         printf("\n        Entry Controls=0x%b", mask,
2500         "\020"
2501         "\003DR"                /* Save debug controls */
2502                                 /* Ignore IA-32e mode guest */
2503                                 /* Ignore Entry to SMM */
2504                                 /* Ignore Deactivate dual-monitor treatment */
2505         "\016PERF"              /* Load MSR_PERF_GLOBAL_CTRL */
2506         "\017PAT"               /* Load MSR_PAT */
2507         "\020EFER"              /* Load MSR_EFER */
2508         );
2509         if (proc & PROCBASED_SECONDARY_CONTROLS &&
2510             (proc2 & (PROCBASED2_ENABLE_EPT | PROCBASED2_ENABLE_VPID)) != 0) {
2511                 msr = rdmsr(MSR_VMX_EPT_VPID_CAP);
2512                 mask = msr;
2513                 printf("\n        EPT Features=0x%b", mask,
2514                 "\020"
2515                 "\001XO"                /* Execute-only translations */
2516                 "\007PW4"               /* Page-walk length of 4 */
2517                 "\011UC"                /* EPT paging-structure mem can be UC */
2518                 "\017WB"                /* EPT paging-structure mem can be WB */
2519                 "\0212M"                /* EPT PDE can map a 2-Mbyte page */
2520                 "\0221G"                /* EPT PDPTE can map a 1-Gbyte page */
2521                 "\025INVEPT"            /* INVEPT is supported */
2522                 "\026AD"                /* Accessed and dirty flags for EPT */
2523                 "\032single"            /* INVEPT single-context type */
2524                 "\033all"               /* INVEPT all-context type */
2525                 );
2526                 mask = msr >> 32;
2527                 printf("\n        VPID Features=0x%b", mask,
2528                 "\020"
2529                 "\001INVVPID"           /* INVVPID is supported */
2530                 "\011individual"        /* INVVPID individual-address type */
2531                 "\012single"            /* INVVPID single-context type */
2532                 "\013all"               /* INVVPID all-context type */
2533                  /* INVVPID single-context-retaining-globals type */
2534                 "\014single-globals"
2535                 );
2536         }
2537 }
2538
2539 static void
2540 print_hypervisor_info(void)
2541 {
2542
2543         if (*hv_vendor)
2544                 printf("Hypervisor: Origin = \"%s\"\n", hv_vendor);
2545 }
2546
2547 /*
2548  * Returns the maximum physical address that can be used with the
2549  * current system.
2550  */
2551 vm_paddr_t
2552 cpu_getmaxphyaddr(void)
2553 {
2554
2555 #if defined(__i386__)
2556         if (!pae_mode)
2557                 return (0xffffffff);
2558 #endif
2559         return ((1ULL << cpu_maxphyaddr) - 1);
2560 }