The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/amd64/amd64/identcpu.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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: releng/10.0/sys/amd64/amd64/identcpu.c 258159 2013-11-15 07:10:42Z kib $");
   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/systm.h>
   51 #include <sys/kernel.h>
   52 #include <sys/sysctl.h>
   53 #include <sys/power.h>
   54 
   55 #include <machine/asmacros.h>
   56 #include <machine/clock.h>
   57 #include <machine/cputypes.h>
   58 #include <machine/frame.h>
   59 #include <machine/intr_machdep.h>
   60 #include <machine/segments.h>
   61 #include <machine/specialreg.h>
   62 #include <machine/md_var.h>
   63 
   64 #include <x86/isa/icu.h>
   65 
   66 /* XXX - should be in header file: */
   67 void printcpuinfo(void);
   68 void identify_cpu(void);
   69 void earlysetcpuclass(void);
   70 void panicifcpuunsupported(void);
   71 
   72 static u_int find_cpu_vendor_id(void);
   73 static void print_AMD_info(void);
   74 static void print_AMD_assoc(int i);
   75 static void print_via_padlock_info(void);
   76 
   77 int     cpu_class;
   78 char machine[] = "amd64";
   79 
   80 #ifdef SCTL_MASK32
   81 extern int adaptive_machine_arch;
   82 #endif
   83 
   84 static int
   85 sysctl_hw_machine(SYSCTL_HANDLER_ARGS)
   86 {
   87 #ifdef SCTL_MASK32
   88         static const char machine32[] = "i386";
   89 #endif
   90         int error;
   91 
   92 #ifdef SCTL_MASK32
   93         if ((req->flags & SCTL_MASK32) != 0 && adaptive_machine_arch)
   94                 error = SYSCTL_OUT(req, machine32, sizeof(machine32));
   95         else
   96 #endif
   97                 error = SYSCTL_OUT(req, machine, sizeof(machine));
   98         return (error);
   99 
  100 }
  101 SYSCTL_PROC(_hw, HW_MACHINE, machine, CTLTYPE_STRING | CTLFLAG_RD,
  102     NULL, 0, sysctl_hw_machine, "A", "Machine class");
  103 
  104 static char cpu_model[128];
  105 SYSCTL_STRING(_hw, HW_MODEL, model, CTLFLAG_RD, 
  106     cpu_model, 0, "Machine model");
  107 
  108 static int hw_clockrate;
  109 SYSCTL_INT(_hw, OID_AUTO, clockrate, CTLFLAG_RD, 
  110     &hw_clockrate, 0, "CPU instruction clock rate");
  111 
  112 static eventhandler_tag tsc_post_tag;
  113 
  114 static char cpu_brand[48];
  115 
  116 static struct {
  117         char    *cpu_name;
  118         int     cpu_class;
  119 } amd64_cpus[] = {
  120         { "Clawhammer",         CPUCLASS_K8 },          /* CPU_CLAWHAMMER */
  121         { "Sledgehammer",       CPUCLASS_K8 },          /* CPU_SLEDGEHAMMER */
  122 };
  123 
  124 static struct {
  125         char    *vendor;
  126         u_int   vendor_id;
  127 } cpu_vendors[] = {
  128         { INTEL_VENDOR_ID,      CPU_VENDOR_INTEL },     /* GenuineIntel */
  129         { AMD_VENDOR_ID,        CPU_VENDOR_AMD },       /* AuthenticAMD */
  130         { CENTAUR_VENDOR_ID,    CPU_VENDOR_CENTAUR },   /* CentaurHauls */
  131 };
  132 
  133 
  134 void
  135 printcpuinfo(void)
  136 {
  137         u_int regs[4], i;
  138         char *brand;
  139 
  140         cpu_class = amd64_cpus[cpu].cpu_class;
  141         printf("CPU: ");
  142         strncpy(cpu_model, amd64_cpus[cpu].cpu_name, sizeof (cpu_model));
  143 
  144         /* Check for extended CPUID information and a processor name. */
  145         if (cpu_exthigh >= 0x80000004) {
  146                 brand = cpu_brand;
  147                 for (i = 0x80000002; i < 0x80000005; i++) {
  148                         do_cpuid(i, regs);
  149                         memcpy(brand, regs, sizeof(regs));
  150                         brand += sizeof(regs);
  151                 }
  152         }
  153 
  154         switch (cpu_vendor_id) {
  155         case CPU_VENDOR_INTEL:
  156                 /* Please make up your mind folks! */
  157                 strcat(cpu_model, "EM64T");
  158                 break;
  159         case CPU_VENDOR_AMD:
  160                 /*
  161                  * Values taken from AMD Processor Recognition
  162                  * http://www.amd.com/K6/k6docs/pdf/20734g.pdf
  163                  * (also describes ``Features'' encodings.
  164                  */
  165                 strcpy(cpu_model, "AMD ");
  166                 if ((cpu_id & 0xf00) == 0xf00)
  167                         strcat(cpu_model, "AMD64 Processor");
  168                 else
  169                         strcat(cpu_model, "Unknown");
  170                 break;
  171         case CPU_VENDOR_CENTAUR:
  172                 strcpy(cpu_model, "VIA ");
  173                 if ((cpu_id & 0xff0) == 0x6f0)
  174                         strcat(cpu_model, "Nano Processor");
  175                 else
  176                         strcat(cpu_model, "Unknown");
  177                 break;
  178         default:
  179                 strcat(cpu_model, "Unknown");
  180                 break;
  181         }
  182 
  183         /*
  184          * Replace cpu_model with cpu_brand minus leading spaces if
  185          * we have one.
  186          */
  187         brand = cpu_brand;
  188         while (*brand == ' ')
  189                 ++brand;
  190         if (*brand != '\0')
  191                 strcpy(cpu_model, brand);
  192 
  193         printf("%s (", cpu_model);
  194         switch(cpu_class) {
  195         case CPUCLASS_K8:
  196                 if (tsc_freq != 0) {
  197                         hw_clockrate = (tsc_freq + 5000) / 1000000;
  198                         printf("%jd.%02d-MHz ",
  199                                (intmax_t)(tsc_freq + 4999) / 1000000,
  200                                (u_int)((tsc_freq + 4999) / 10000) % 100);
  201                 }
  202                 printf("K8");
  203                 break;
  204         default:
  205                 printf("Unknown");      /* will panic below... */
  206         }
  207         printf("-class CPU)\n");
  208         if (*cpu_vendor)
  209                 printf("  Origin = \"%s\"", cpu_vendor);
  210         if (cpu_id)
  211                 printf("  Id = 0x%x", cpu_id);
  212 
  213         if (cpu_vendor_id == CPU_VENDOR_INTEL ||
  214             cpu_vendor_id == CPU_VENDOR_AMD ||
  215             cpu_vendor_id == CPU_VENDOR_CENTAUR) {
  216                 printf("  Family = 0x%x", CPUID_TO_FAMILY(cpu_id));
  217                 printf("  Model = 0x%x", CPUID_TO_MODEL(cpu_id));
  218                 printf("  Stepping = %u", cpu_id & CPUID_STEPPING);
  219 
  220                 /*
  221                  * AMD CPUID Specification
  222                  * http://support.amd.com/us/Embedded_TechDocs/25481.pdf
  223                  *
  224                  * Intel Processor Identification and CPUID Instruction
  225                  * http://www.intel.com/assets/pdf/appnote/241618.pdf
  226                  */
  227                 if (cpu_high > 0) {
  228 
  229                         /*
  230                          * Here we should probably set up flags indicating
  231                          * whether or not various features are available.
  232                          * The interesting ones are probably VME, PSE, PAE,
  233                          * and PGE.  The code already assumes without bothering
  234                          * to check that all CPUs >= Pentium have a TSC and
  235                          * MSRs.
  236                          */
  237                         printf("\n  Features=0x%b", cpu_feature,
  238                         "\020"
  239                         "\001FPU"       /* Integral FPU */
  240                         "\002VME"       /* Extended VM86 mode support */
  241                         "\003DE"        /* Debugging Extensions (CR4.DE) */
  242                         "\004PSE"       /* 4MByte page tables */
  243                         "\005TSC"       /* Timestamp counter */
  244                         "\006MSR"       /* Machine specific registers */
  245                         "\007PAE"       /* Physical address extension */
  246                         "\010MCE"       /* Machine Check support */
  247                         "\011CX8"       /* CMPEXCH8 instruction */
  248                         "\012APIC"      /* SMP local APIC */
  249                         "\013oldMTRR"   /* Previous implementation of MTRR */
  250                         "\014SEP"       /* Fast System Call */
  251                         "\015MTRR"      /* Memory Type Range Registers */
  252                         "\016PGE"       /* PG_G (global bit) support */
  253                         "\017MCA"       /* Machine Check Architecture */
  254                         "\020CMOV"      /* CMOV instruction */
  255                         "\021PAT"       /* Page attributes table */
  256                         "\022PSE36"     /* 36 bit address space support */
  257                         "\023PN"        /* Processor Serial number */
  258                         "\024CLFLUSH"   /* Has the CLFLUSH instruction */
  259                         "\025<b20>"
  260                         "\026DTS"       /* Debug Trace Store */
  261                         "\027ACPI"      /* ACPI support */
  262                         "\030MMX"       /* MMX instructions */
  263                         "\031FXSR"      /* FXSAVE/FXRSTOR */
  264                         "\032SSE"       /* Streaming SIMD Extensions */
  265                         "\033SSE2"      /* Streaming SIMD Extensions #2 */
  266                         "\034SS"        /* Self snoop */
  267                         "\035HTT"       /* Hyperthreading (see EBX bit 16-23) */
  268                         "\036TM"        /* Thermal Monitor clock slowdown */
  269                         "\037IA64"      /* CPU can execute IA64 instructions */
  270                         "\040PBE"       /* Pending Break Enable */
  271                         );
  272 
  273                         if (cpu_feature2 != 0) {
  274                                 printf("\n  Features2=0x%b", cpu_feature2,
  275                                 "\020"
  276                                 "\001SSE3"      /* SSE3 */
  277                                 "\002PCLMULQDQ" /* Carry-Less Mul Quadword */
  278                                 "\003DTES64"    /* 64-bit Debug Trace */
  279                                 "\004MON"       /* MONITOR/MWAIT Instructions */
  280                                 "\005DS_CPL"    /* CPL Qualified Debug Store */
  281                                 "\006VMX"       /* Virtual Machine Extensions */
  282                                 "\007SMX"       /* Safer Mode Extensions */
  283                                 "\010EST"       /* Enhanced SpeedStep */
  284                                 "\011TM2"       /* Thermal Monitor 2 */
  285                                 "\012SSSE3"     /* SSSE3 */
  286                                 "\013CNXT-ID"   /* L1 context ID available */
  287                                 "\014<b11>"
  288                                 "\015FMA"       /* Fused Multiply Add */
  289                                 "\016CX16"      /* CMPXCHG16B Instruction */
  290                                 "\017xTPR"      /* Send Task Priority Messages*/
  291                                 "\020PDCM"      /* Perf/Debug Capability MSR */
  292                                 "\021<b16>"
  293                                 "\022PCID"      /* Process-context Identifiers*/
  294                                 "\023DCA"       /* Direct Cache Access */
  295                                 "\024SSE4.1"    /* SSE 4.1 */
  296                                 "\025SSE4.2"    /* SSE 4.2 */
  297                                 "\026x2APIC"    /* xAPIC Extensions */
  298                                 "\027MOVBE"     /* MOVBE Instruction */
  299                                 "\030POPCNT"    /* POPCNT Instruction */
  300                                 "\031TSCDLT"    /* TSC-Deadline Timer */
  301                                 "\032AESNI"     /* AES Crypto */
  302                                 "\033XSAVE"     /* XSAVE/XRSTOR States */
  303                                 "\034OSXSAVE"   /* OS-Enabled State Management*/
  304                                 "\035AVX"       /* Advanced Vector Extensions */
  305                                 "\036F16C"      /* Half-precision conversions */
  306                                 "\037RDRAND"    /* RDRAND Instruction */
  307                                 "\040HV"        /* Hypervisor */
  308                                 );
  309                         }
  310 
  311                         if (amd_feature != 0) {
  312                                 printf("\n  AMD Features=0x%b", amd_feature,
  313                                 "\020"          /* in hex */
  314                                 "\001<s0>"      /* Same */
  315                                 "\002<s1>"      /* Same */
  316                                 "\003<s2>"      /* Same */
  317                                 "\004<s3>"      /* Same */
  318                                 "\005<s4>"      /* Same */
  319                                 "\006<s5>"      /* Same */
  320                                 "\007<s6>"      /* Same */
  321                                 "\010<s7>"      /* Same */
  322                                 "\011<s8>"      /* Same */
  323                                 "\012<s9>"      /* Same */
  324                                 "\013<b10>"     /* Undefined */
  325                                 "\014SYSCALL"   /* Have SYSCALL/SYSRET */
  326                                 "\015<s12>"     /* Same */
  327                                 "\016<s13>"     /* Same */
  328                                 "\017<s14>"     /* Same */
  329                                 "\020<s15>"     /* Same */
  330                                 "\021<s16>"     /* Same */
  331                                 "\022<s17>"     /* Same */
  332                                 "\023<b18>"     /* Reserved, unknown */
  333                                 "\024MP"        /* Multiprocessor Capable */
  334                                 "\025NX"        /* Has EFER.NXE, NX */
  335                                 "\026<b21>"     /* Undefined */
  336                                 "\027MMX+"      /* AMD MMX Extensions */
  337                                 "\030<s23>"     /* Same */
  338                                 "\031<s24>"     /* Same */
  339                                 "\032FFXSR"     /* Fast FXSAVE/FXRSTOR */
  340                                 "\033Page1GB"   /* 1-GB large page support */
  341                                 "\034RDTSCP"    /* RDTSCP */
  342                                 "\035<b28>"     /* Undefined */
  343                                 "\036LM"        /* 64 bit long mode */
  344                                 "\0373DNow!+"   /* AMD 3DNow! Extensions */
  345                                 "\0403DNow!"    /* AMD 3DNow! */
  346                                 );
  347                         }
  348 
  349                         if (amd_feature2 != 0) {
  350                                 printf("\n  AMD Features2=0x%b", amd_feature2,
  351                                 "\020"
  352                                 "\001LAHF"      /* LAHF/SAHF in long mode */
  353                                 "\002CMP"       /* CMP legacy */
  354                                 "\003SVM"       /* Secure Virtual Mode */
  355                                 "\004ExtAPIC"   /* Extended APIC register */
  356                                 "\005CR8"       /* CR8 in legacy mode */
  357                                 "\006ABM"       /* LZCNT instruction */
  358                                 "\007SSE4A"     /* SSE4A */
  359                                 "\010MAS"       /* Misaligned SSE mode */
  360                                 "\011Prefetch"  /* 3DNow! Prefetch/PrefetchW */
  361                                 "\012OSVW"      /* OS visible workaround */
  362                                 "\013IBS"       /* Instruction based sampling */
  363                                 "\014XOP"       /* XOP extended instructions */
  364                                 "\015SKINIT"    /* SKINIT/STGI */
  365                                 "\016WDT"       /* Watchdog timer */
  366                                 "\017<b14>"
  367                                 "\020LWP"       /* Lightweight Profiling */
  368                                 "\021FMA4"      /* 4-operand FMA instructions */
  369                                 "\022TCE"       /* Translation Cache Extension */
  370                                 "\023<b18>"
  371                                 "\024NodeId"    /* NodeId MSR support */
  372                                 "\025<b20>"
  373                                 "\026TBM"       /* Trailing Bit Manipulation */
  374                                 "\027Topology"  /* Topology Extensions */
  375                                 "\030PCXC"      /* Core perf count */
  376                                 "\031PNXC"      /* NB perf count */
  377                                 "\032<b25>"
  378                                 "\033DBE"       /* Data Breakpoint extension */
  379                                 "\034PTSC"      /* Performance TSC */
  380                                 "\035PL2I"      /* L2I perf count */
  381                                 "\036<b29>"
  382                                 "\037<b30>"
  383                                 "\040<b31>"
  384                                 );
  385                         }
  386 
  387                         if (cpu_stdext_feature != 0) {
  388                                 printf("\n  Standard Extended Features=0x%b",
  389                                     cpu_stdext_feature,
  390                                        "\020"
  391                                        /* RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE */
  392                                        "\001GSFSBASE"
  393                                        "\002TSCADJ"
  394                                        /* Bit Manipulation Instructions */
  395                                        "\004BMI1"
  396                                        /* Hardware Lock Elision */
  397                                        "\005HLE"
  398                                        /* Advanced Vector Instructions 2 */
  399                                        "\006AVX2"
  400                                        /* Supervisor Mode Execution Prot. */
  401                                        "\010SMEP"
  402                                        /* Bit Manipulation Instructions */
  403                                        "\011BMI2"
  404                                        "\012ENHMOVSB"
  405                                        /* Invalidate Processor Context ID */
  406                                        "\013INVPCID"
  407                                        /* Restricted Transactional Memory */
  408                                        "\014RTM"
  409                                        /* Enhanced NRBG */
  410                                        "\023RDSEED"
  411                                        /* ADCX + ADOX */
  412                                        "\024ADX"
  413                                        /* Supervisor Mode Access Prevention */
  414                                        "\025SMAP"
  415                                        );
  416                         }
  417 
  418                         if (via_feature_rng != 0 || via_feature_xcrypt != 0)
  419                                 print_via_padlock_info();
  420 
  421                         if ((cpu_feature & CPUID_HTT) &&
  422                             cpu_vendor_id == CPU_VENDOR_AMD)
  423                                 cpu_feature &= ~CPUID_HTT;
  424 
  425                         /*
  426                          * If this CPU supports P-state invariant TSC then
  427                          * mention the capability.
  428                          */
  429                         if (tsc_is_invariant) {
  430                                 printf("\n  TSC: P-state invariant");
  431                                 if (tsc_perf_stat)
  432                                         printf(", performance statistics");
  433                         }
  434 
  435                 }
  436         }
  437         /* Avoid ugly blank lines: only print newline when we have to. */
  438         if (*cpu_vendor || cpu_id)
  439                 printf("\n");
  440 
  441         if (!bootverbose)
  442                 return;
  443 
  444         if (cpu_vendor_id == CPU_VENDOR_AMD)
  445                 print_AMD_info();
  446 }
  447 
  448 void
  449 panicifcpuunsupported(void)
  450 {
  451 
  452 #ifndef HAMMER
  453 #error "You need to specify a cpu type"
  454 #endif
  455         /*
  456          * Now that we have told the user what they have,
  457          * let them know if that machine type isn't configured.
  458          */
  459         switch (cpu_class) {
  460         case CPUCLASS_X86:
  461 #ifndef HAMMER
  462         case CPUCLASS_K8:
  463 #endif
  464                 panic("CPU class not configured");
  465         default:
  466                 break;
  467         }
  468 }
  469 
  470 
  471 /* Update TSC freq with the value indicated by the caller. */
  472 static void
  473 tsc_freq_changed(void *arg __unused, const struct cf_level *level, int status)
  474 {
  475 
  476         /* If there was an error during the transition, don't do anything. */
  477         if (status != 0)
  478                 return;
  479 
  480         /* Total setting for this level gives the new frequency in MHz. */
  481         hw_clockrate = level->total_set.freq;
  482 }
  483 
  484 static void
  485 hook_tsc_freq(void *arg __unused)
  486 {
  487 
  488         if (tsc_is_invariant)
  489                 return;
  490 
  491         tsc_post_tag = EVENTHANDLER_REGISTER(cpufreq_post_change,
  492             tsc_freq_changed, NULL, EVENTHANDLER_PRI_ANY);
  493 }
  494 
  495 SYSINIT(hook_tsc_freq, SI_SUB_CONFIGURE, SI_ORDER_ANY, hook_tsc_freq, NULL);
  496 
  497 /*
  498  * Final stage of CPU identification.
  499  */
  500 void
  501 identify_cpu(void)
  502 {
  503         u_int regs[4], cpu_stdext_disable;
  504 
  505         do_cpuid(0, regs);
  506         cpu_high = regs[0];
  507         ((u_int *)&cpu_vendor)[0] = regs[1];
  508         ((u_int *)&cpu_vendor)[1] = regs[3];
  509         ((u_int *)&cpu_vendor)[2] = regs[2];
  510         cpu_vendor[12] = '\0';
  511         cpu_vendor_id = find_cpu_vendor_id();
  512 
  513         do_cpuid(1, regs);
  514         cpu_id = regs[0];
  515         cpu_procinfo = regs[1];
  516         cpu_feature = regs[3];
  517         cpu_feature2 = regs[2];
  518 
  519         /*
  520          * Clear "Limit CPUID Maxval" bit and get the largest standard CPUID
  521          * function number again if it is set from BIOS.  It is necessary
  522          * for probing correct CPU topology later.
  523          * XXX This is only done on the BSP package.
  524          */
  525         if (cpu_vendor_id == CPU_VENDOR_INTEL && cpu_high > 0 && cpu_high < 4) {
  526                 uint64_t msr;
  527                 msr = rdmsr(MSR_IA32_MISC_ENABLE);
  528                 if ((msr & 0x400000ULL) != 0) {
  529                         wrmsr(MSR_IA32_MISC_ENABLE, msr & ~0x400000ULL);
  530                         do_cpuid(0, regs);
  531                         cpu_high = regs[0];
  532                 }
  533         }
  534 
  535         if (cpu_high >= 5 && (cpu_feature2 & CPUID2_MON) != 0) {
  536                 do_cpuid(5, regs);
  537                 cpu_mon_mwait_flags = regs[2];
  538                 cpu_mon_min_size = regs[0] &  CPUID5_MON_MIN_SIZE;
  539                 cpu_mon_max_size = regs[1] &  CPUID5_MON_MAX_SIZE;
  540         }
  541 
  542         if (cpu_high >= 7) {
  543                 cpuid_count(7, 0, regs);
  544                 cpu_stdext_feature = regs[1];
  545 
  546                 /*
  547                  * Some hypervisors fail to filter out unsupported
  548                  * extended features.  For now, disable the
  549                  * extensions, activation of which requires setting a
  550                  * bit in CR4, and which VM monitors do not support.
  551                  */
  552                 if (cpu_feature2 & CPUID2_HV) {
  553                         cpu_stdext_disable = CPUID_STDEXT_FSGSBASE |
  554                             CPUID_STDEXT_SMEP;
  555                 } else
  556                         cpu_stdext_disable = 0;
  557                 TUNABLE_INT_FETCH("hw.cpu_stdext_disable", &cpu_stdext_disable);
  558                 cpu_stdext_feature &= ~cpu_stdext_disable;
  559         }
  560 
  561         if (cpu_vendor_id == CPU_VENDOR_INTEL ||
  562             cpu_vendor_id == CPU_VENDOR_AMD ||
  563             cpu_vendor_id == CPU_VENDOR_CENTAUR) {
  564                 do_cpuid(0x80000000, regs);
  565                 cpu_exthigh = regs[0];
  566         }
  567         if (cpu_exthigh >= 0x80000001) {
  568                 do_cpuid(0x80000001, regs);
  569                 amd_feature = regs[3] & ~(cpu_feature & 0x0183f3ff);
  570                 amd_feature2 = regs[2];
  571         }
  572         if (cpu_exthigh >= 0x80000007) {
  573                 do_cpuid(0x80000007, regs);
  574                 amd_pminfo = regs[3];
  575         }
  576         if (cpu_exthigh >= 0x80000008) {
  577                 do_cpuid(0x80000008, regs);
  578                 cpu_procinfo2 = regs[2];
  579         }
  580 
  581         /* XXX */
  582         cpu = CPU_CLAWHAMMER;
  583 }
  584 
  585 static u_int
  586 find_cpu_vendor_id(void)
  587 {
  588         int     i;
  589 
  590         for (i = 0; i < sizeof(cpu_vendors) / sizeof(cpu_vendors[0]); i++)
  591                 if (strcmp(cpu_vendor, cpu_vendors[i].vendor) == 0)
  592                         return (cpu_vendors[i].vendor_id);
  593         return (0);
  594 }
  595 
  596 static void
  597 print_AMD_assoc(int i)
  598 {
  599         if (i == 255)
  600                 printf(", fully associative\n");
  601         else
  602                 printf(", %d-way associative\n", i);
  603 }
  604 
  605 static void
  606 print_AMD_l2_assoc(int i)
  607 {
  608         switch (i & 0x0f) {
  609         case 0: printf(", disabled/not present\n"); break;
  610         case 1: printf(", direct mapped\n"); break;
  611         case 2: printf(", 2-way associative\n"); break;
  612         case 4: printf(", 4-way associative\n"); break;
  613         case 6: printf(", 8-way associative\n"); break;
  614         case 8: printf(", 16-way associative\n"); break;
  615         case 15: printf(", fully associative\n"); break;
  616         default: printf(", reserved configuration\n"); break;
  617         }
  618 }
  619 
  620 static void
  621 print_AMD_info(void)
  622 {
  623         u_int regs[4];
  624 
  625         if (cpu_exthigh < 0x80000005)
  626                 return;
  627 
  628         do_cpuid(0x80000005, regs);
  629         printf("L1 2MB data TLB: %d entries", (regs[0] >> 16) & 0xff);
  630         print_AMD_assoc(regs[0] >> 24);
  631 
  632         printf("L1 2MB instruction TLB: %d entries", regs[0] & 0xff);
  633         print_AMD_assoc((regs[0] >> 8) & 0xff);
  634 
  635         printf("L1 4KB data TLB: %d entries", (regs[1] >> 16) & 0xff);
  636         print_AMD_assoc(regs[1] >> 24);
  637 
  638         printf("L1 4KB instruction TLB: %d entries", regs[1] & 0xff);
  639         print_AMD_assoc((regs[1] >> 8) & 0xff);
  640 
  641         printf("L1 data cache: %d kbytes", regs[2] >> 24);
  642         printf(", %d bytes/line", regs[2] & 0xff);
  643         printf(", %d lines/tag", (regs[2] >> 8) & 0xff);
  644         print_AMD_assoc((regs[2] >> 16) & 0xff);
  645 
  646         printf("L1 instruction cache: %d kbytes", regs[3] >> 24);
  647         printf(", %d bytes/line", regs[3] & 0xff);
  648         printf(", %d lines/tag", (regs[3] >> 8) & 0xff);
  649         print_AMD_assoc((regs[3] >> 16) & 0xff);
  650 
  651         if (cpu_exthigh >= 0x80000006) {
  652                 do_cpuid(0x80000006, regs);
  653                 if ((regs[0] >> 16) != 0) {
  654                         printf("L2 2MB data TLB: %d entries",
  655                             (regs[0] >> 16) & 0xfff);
  656                         print_AMD_l2_assoc(regs[0] >> 28);
  657                         printf("L2 2MB instruction TLB: %d entries",
  658                             regs[0] & 0xfff);
  659                         print_AMD_l2_assoc((regs[0] >> 28) & 0xf);
  660                 } else {
  661                         printf("L2 2MB unified TLB: %d entries",
  662                             regs[0] & 0xfff);
  663                         print_AMD_l2_assoc((regs[0] >> 28) & 0xf);
  664                 }
  665                 if ((regs[1] >> 16) != 0) {
  666                         printf("L2 4KB data TLB: %d entries",
  667                             (regs[1] >> 16) & 0xfff);
  668                         print_AMD_l2_assoc(regs[1] >> 28);
  669 
  670                         printf("L2 4KB instruction TLB: %d entries",
  671                             (regs[1] >> 16) & 0xfff);
  672                         print_AMD_l2_assoc((regs[1] >> 28) & 0xf);
  673                 } else {
  674                         printf("L2 4KB unified TLB: %d entries",
  675                             (regs[1] >> 16) & 0xfff);
  676                         print_AMD_l2_assoc((regs[1] >> 28) & 0xf);
  677                 }
  678                 printf("L2 unified cache: %d kbytes", regs[2] >> 16);
  679                 printf(", %d bytes/line", regs[2] & 0xff);
  680                 printf(", %d lines/tag", (regs[2] >> 8) & 0x0f);
  681                 print_AMD_l2_assoc((regs[2] >> 12) & 0x0f);     
  682         }
  683 
  684         /*
  685          * Opteron Rev E shows a bug as in very rare occasions a read memory 
  686          * barrier is not performed as expected if it is followed by a 
  687          * non-atomic read-modify-write instruction.  
  688          * As long as that bug pops up very rarely (intensive machine usage
  689          * on other operating systems generally generates one unexplainable 
  690          * crash any 2 months) and as long as a model specific fix would be
  691          * impratical at this stage, print out a warning string if the broken
  692          * model and family are identified.
  693          */
  694         if (CPUID_TO_FAMILY(cpu_id) == 0xf && CPUID_TO_MODEL(cpu_id) >= 0x20 &&
  695             CPUID_TO_MODEL(cpu_id) <= 0x3f)
  696                 printf("WARNING: This architecture revision has known SMP "
  697                     "hardware bugs which may cause random instability\n");
  698 }
  699 
  700 static void
  701 print_via_padlock_info(void)
  702 {
  703         u_int regs[4];
  704 
  705         do_cpuid(0xc0000001, regs);
  706         printf("\n  VIA Padlock Features=0x%b", regs[3],
  707         "\020"
  708         "\003RNG"               /* RNG */
  709         "\007AES"               /* ACE */
  710         "\011AES-CTR"           /* ACE2 */
  711         "\013SHA1,SHA256"       /* PHE */
  712         "\015RSA"               /* PMM */
  713         );
  714 }

Cache object: b8426486fd35d4e23a8a263e41d29874


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.