xref: /titanic_52/usr/src/uts/i86pc/os/cpuid.c (revision bf91205b051726ee0f3d06231cf960376fbc8f68)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5ee88d2b9Skchow  * Common Development and Distribution License (the "License").
6ee88d2b9Skchow  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22fb2f18f8Sesaxe  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate /*
297c478bd9Sstevel@tonic-gate  * Various routines to handle identification
307c478bd9Sstevel@tonic-gate  * and classification of x86 processors.
317c478bd9Sstevel@tonic-gate  */
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate #include <sys/types.h>
347c478bd9Sstevel@tonic-gate #include <sys/archsystm.h>
357c478bd9Sstevel@tonic-gate #include <sys/x86_archext.h>
367c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
377c478bd9Sstevel@tonic-gate #include <sys/systm.h>
387c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
397c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
407c478bd9Sstevel@tonic-gate #include <sys/sunndi.h>
417c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
427c478bd9Sstevel@tonic-gate #include <sys/processor.h>
43fb2f18f8Sesaxe #include <sys/pg.h>
447c478bd9Sstevel@tonic-gate #include <sys/fp.h>
457c478bd9Sstevel@tonic-gate #include <sys/controlregs.h>
467c478bd9Sstevel@tonic-gate #include <sys/auxv_386.h>
477c478bd9Sstevel@tonic-gate #include <sys/bitmap.h>
487c478bd9Sstevel@tonic-gate #include <sys/memnode.h>
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate /*
517c478bd9Sstevel@tonic-gate  * Pass 0 of cpuid feature analysis happens in locore. It contains special code
527c478bd9Sstevel@tonic-gate  * to recognize Cyrix processors that are not cpuid-compliant, and to deal with
537c478bd9Sstevel@tonic-gate  * them accordingly. For most modern processors, feature detection occurs here
547c478bd9Sstevel@tonic-gate  * in pass 1.
557c478bd9Sstevel@tonic-gate  *
567c478bd9Sstevel@tonic-gate  * Pass 1 of cpuid feature analysis happens just at the beginning of mlsetup()
577c478bd9Sstevel@tonic-gate  * for the boot CPU and does the basic analysis that the early kernel needs.
587c478bd9Sstevel@tonic-gate  * x86_feature is set based on the return value of cpuid_pass1() of the boot
597c478bd9Sstevel@tonic-gate  * CPU.
607c478bd9Sstevel@tonic-gate  *
617c478bd9Sstevel@tonic-gate  * Pass 1 includes:
627c478bd9Sstevel@tonic-gate  *
637c478bd9Sstevel@tonic-gate  *	o Determining vendor/model/family/stepping and setting x86_type and
647c478bd9Sstevel@tonic-gate  *	  x86_vendor accordingly.
657c478bd9Sstevel@tonic-gate  *	o Processing the feature flags returned by the cpuid instruction while
667c478bd9Sstevel@tonic-gate  *	  applying any workarounds or tricks for the specific processor.
677c478bd9Sstevel@tonic-gate  *	o Mapping the feature flags into Solaris feature bits (X86_*).
687c478bd9Sstevel@tonic-gate  *	o Processing extended feature flags if supported by the processor,
697c478bd9Sstevel@tonic-gate  *	  again while applying specific processor knowledge.
707c478bd9Sstevel@tonic-gate  *	o Determining the CMT characteristics of the system.
717c478bd9Sstevel@tonic-gate  *
727c478bd9Sstevel@tonic-gate  * Pass 1 is done on non-boot CPUs during their initialization and the results
737c478bd9Sstevel@tonic-gate  * are used only as a meager attempt at ensuring that all processors within the
747c478bd9Sstevel@tonic-gate  * system support the same features.
757c478bd9Sstevel@tonic-gate  *
767c478bd9Sstevel@tonic-gate  * Pass 2 of cpuid feature analysis happens just at the beginning
777c478bd9Sstevel@tonic-gate  * of startup().  It just copies in and corrects the remainder
787c478bd9Sstevel@tonic-gate  * of the cpuid data we depend on: standard cpuid functions that we didn't
797c478bd9Sstevel@tonic-gate  * need for pass1 feature analysis, and extended cpuid functions beyond the
807c478bd9Sstevel@tonic-gate  * simple feature processing done in pass1.
817c478bd9Sstevel@tonic-gate  *
827c478bd9Sstevel@tonic-gate  * Pass 3 of cpuid analysis is invoked after basic kernel services; in
837c478bd9Sstevel@tonic-gate  * particular kernel memory allocation has been made available. It creates a
847c478bd9Sstevel@tonic-gate  * readable brand string based on the data collected in the first two passes.
857c478bd9Sstevel@tonic-gate  *
867c478bd9Sstevel@tonic-gate  * Pass 4 of cpuid analysis is invoked after post_startup() when all
877c478bd9Sstevel@tonic-gate  * the support infrastructure for various hardware features has been
887c478bd9Sstevel@tonic-gate  * initialized. It determines which processor features will be reported
897c478bd9Sstevel@tonic-gate  * to userland via the aux vector.
907c478bd9Sstevel@tonic-gate  *
917c478bd9Sstevel@tonic-gate  * All passes are executed on all CPUs, but only the boot CPU determines what
927c478bd9Sstevel@tonic-gate  * features the kernel will use.
937c478bd9Sstevel@tonic-gate  *
947c478bd9Sstevel@tonic-gate  * Much of the worst junk in this file is for the support of processors
957c478bd9Sstevel@tonic-gate  * that didn't really implement the cpuid instruction properly.
967c478bd9Sstevel@tonic-gate  *
977c478bd9Sstevel@tonic-gate  * NOTE: The accessor functions (cpuid_get*) are aware of, and ASSERT upon,
987c478bd9Sstevel@tonic-gate  * the pass numbers.  Accordingly, changes to the pass code may require changes
997c478bd9Sstevel@tonic-gate  * to the accessor code.
1007c478bd9Sstevel@tonic-gate  */
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate uint_t x86_feature = 0;
1037c478bd9Sstevel@tonic-gate uint_t x86_vendor = X86_VENDOR_IntelClone;
1047c478bd9Sstevel@tonic-gate uint_t x86_type = X86_TYPE_OTHER;
1057c478bd9Sstevel@tonic-gate 
1067c478bd9Sstevel@tonic-gate uint_t pentiumpro_bug4046376;
1077c478bd9Sstevel@tonic-gate uint_t pentiumpro_bug4064495;
1087c478bd9Sstevel@tonic-gate 
1097c478bd9Sstevel@tonic-gate uint_t enable486;
1107c478bd9Sstevel@tonic-gate 
1117c478bd9Sstevel@tonic-gate /*
1127c478bd9Sstevel@tonic-gate  * This set of strings are for processors rumored to support the cpuid
1137c478bd9Sstevel@tonic-gate  * instruction, and is used by locore.s to figure out how to set x86_vendor
1147c478bd9Sstevel@tonic-gate  */
1157c478bd9Sstevel@tonic-gate const char CyrixInstead[] = "CyrixInstead";
1167c478bd9Sstevel@tonic-gate 
1177c478bd9Sstevel@tonic-gate /*
118f98fbcecSbholler  * monitor/mwait info.
119f98fbcecSbholler  */
120f98fbcecSbholler struct mwait_info {
121f98fbcecSbholler 	size_t		mon_min;	/* min size to avoid missed wakeups */
122f98fbcecSbholler 	size_t		mon_max;	/* size to avoid false wakeups */
123f98fbcecSbholler 	uint32_t	support;	/* processor support of monitor/mwait */
124f98fbcecSbholler };
125f98fbcecSbholler 
126f98fbcecSbholler /*
1277c478bd9Sstevel@tonic-gate  * These constants determine how many of the elements of the
1287c478bd9Sstevel@tonic-gate  * cpuid we cache in the cpuid_info data structure; the
1297c478bd9Sstevel@tonic-gate  * remaining elements are accessible via the cpuid instruction.
1307c478bd9Sstevel@tonic-gate  */
1317c478bd9Sstevel@tonic-gate 
1327c478bd9Sstevel@tonic-gate #define	NMAX_CPI_STD	6		/* eax = 0 .. 5 */
1337c478bd9Sstevel@tonic-gate #define	NMAX_CPI_EXTD	9		/* eax = 0x80000000 .. 0x80000008 */
1347c478bd9Sstevel@tonic-gate 
1357c478bd9Sstevel@tonic-gate struct cpuid_info {
1367c478bd9Sstevel@tonic-gate 	uint_t cpi_pass;		/* last pass completed */
1377c478bd9Sstevel@tonic-gate 	/*
1387c478bd9Sstevel@tonic-gate 	 * standard function information
1397c478bd9Sstevel@tonic-gate 	 */
1407c478bd9Sstevel@tonic-gate 	uint_t cpi_maxeax;		/* fn 0: %eax */
1417c478bd9Sstevel@tonic-gate 	char cpi_vendorstr[13];		/* fn 0: %ebx:%ecx:%edx */
1427c478bd9Sstevel@tonic-gate 	uint_t cpi_vendor;		/* enum of cpi_vendorstr */
1437c478bd9Sstevel@tonic-gate 
1447c478bd9Sstevel@tonic-gate 	uint_t cpi_family;		/* fn 1: extended family */
1457c478bd9Sstevel@tonic-gate 	uint_t cpi_model;		/* fn 1: extended model */
1467c478bd9Sstevel@tonic-gate 	uint_t cpi_step;		/* fn 1: stepping */
1477c478bd9Sstevel@tonic-gate 	chipid_t cpi_chipid;		/* fn 1: %ebx: chip # on ht cpus */
1487c478bd9Sstevel@tonic-gate 	uint_t cpi_brandid;		/* fn 1: %ebx: brand ID */
1497c478bd9Sstevel@tonic-gate 	int cpi_clogid;			/* fn 1: %ebx: thread # */
1508949bcd6Sandrei 	uint_t cpi_ncpu_per_chip;	/* fn 1: %ebx: logical cpu count */
1517c478bd9Sstevel@tonic-gate 	uint8_t cpi_cacheinfo[16];	/* fn 2: intel-style cache desc */
1527c478bd9Sstevel@tonic-gate 	uint_t cpi_ncache;		/* fn 2: number of elements */
153d129bde2Sesaxe 	uint_t cpi_ncpu_shr_last_cache;	/* fn 4: %eax: ncpus sharing cache */
154d129bde2Sesaxe 	id_t cpi_last_lvl_cacheid;	/* fn 4: %eax: derived cache id */
155d129bde2Sesaxe 	uint_t cpi_std_4_size;		/* fn 4: number of fn 4 elements */
156d129bde2Sesaxe 	struct cpuid_regs **cpi_std_4;	/* fn 4: %ecx == 0 .. fn4_size */
1578949bcd6Sandrei 	struct cpuid_regs cpi_std[NMAX_CPI_STD];	/* 0 .. 5 */
1587c478bd9Sstevel@tonic-gate 	/*
1597c478bd9Sstevel@tonic-gate 	 * extended function information
1607c478bd9Sstevel@tonic-gate 	 */
1617c478bd9Sstevel@tonic-gate 	uint_t cpi_xmaxeax;		/* fn 0x80000000: %eax */
1627c478bd9Sstevel@tonic-gate 	char cpi_brandstr[49];		/* fn 0x8000000[234] */
1637c478bd9Sstevel@tonic-gate 	uint8_t cpi_pabits;		/* fn 0x80000006: %eax */
1647c478bd9Sstevel@tonic-gate 	uint8_t cpi_vabits;		/* fn 0x80000006: %eax */
1658949bcd6Sandrei 	struct cpuid_regs cpi_extd[NMAX_CPI_EXTD]; /* 0x8000000[0-8] */
1668949bcd6Sandrei 	id_t cpi_coreid;
1678949bcd6Sandrei 	uint_t cpi_ncore_per_chip;	/* AMD: fn 0x80000008: %ecx[7-0] */
1688949bcd6Sandrei 					/* Intel: fn 4: %eax[31-26] */
1697c478bd9Sstevel@tonic-gate 	/*
1707c478bd9Sstevel@tonic-gate 	 * supported feature information
1717c478bd9Sstevel@tonic-gate 	 */
172ae115bc7Smrj 	uint32_t cpi_support[5];
1737c478bd9Sstevel@tonic-gate #define	STD_EDX_FEATURES	0
1747c478bd9Sstevel@tonic-gate #define	AMD_EDX_FEATURES	1
1757c478bd9Sstevel@tonic-gate #define	TM_EDX_FEATURES		2
1767c478bd9Sstevel@tonic-gate #define	STD_ECX_FEATURES	3
177ae115bc7Smrj #define	AMD_ECX_FEATURES	4
1788a40a695Sgavinm 	/*
1798a40a695Sgavinm 	 * Synthesized information, where known.
1808a40a695Sgavinm 	 */
1818a40a695Sgavinm 	uint32_t cpi_chiprev;		/* See X86_CHIPREV_* in x86_archext.h */
1828a40a695Sgavinm 	const char *cpi_chiprevstr;	/* May be NULL if chiprev unknown */
1838a40a695Sgavinm 	uint32_t cpi_socket;		/* Chip package/socket type */
184f98fbcecSbholler 
185f98fbcecSbholler 	struct mwait_info cpi_mwait;	/* fn 5: monitor/mwait info */
1867c478bd9Sstevel@tonic-gate };
1877c478bd9Sstevel@tonic-gate 
1887c478bd9Sstevel@tonic-gate 
1897c478bd9Sstevel@tonic-gate static struct cpuid_info cpuid_info0;
1907c478bd9Sstevel@tonic-gate 
1917c478bd9Sstevel@tonic-gate /*
1927c478bd9Sstevel@tonic-gate  * These bit fields are defined by the Intel Application Note AP-485
1937c478bd9Sstevel@tonic-gate  * "Intel Processor Identification and the CPUID Instruction"
1947c478bd9Sstevel@tonic-gate  */
1957c478bd9Sstevel@tonic-gate #define	CPI_FAMILY_XTD(cpi)	BITX((cpi)->cpi_std[1].cp_eax, 27, 20)
1967c478bd9Sstevel@tonic-gate #define	CPI_MODEL_XTD(cpi)	BITX((cpi)->cpi_std[1].cp_eax, 19, 16)
1977c478bd9Sstevel@tonic-gate #define	CPI_TYPE(cpi)		BITX((cpi)->cpi_std[1].cp_eax, 13, 12)
1987c478bd9Sstevel@tonic-gate #define	CPI_FAMILY(cpi)		BITX((cpi)->cpi_std[1].cp_eax, 11, 8)
1997c478bd9Sstevel@tonic-gate #define	CPI_STEP(cpi)		BITX((cpi)->cpi_std[1].cp_eax, 3, 0)
2007c478bd9Sstevel@tonic-gate #define	CPI_MODEL(cpi)		BITX((cpi)->cpi_std[1].cp_eax, 7, 4)
2017c478bd9Sstevel@tonic-gate 
2027c478bd9Sstevel@tonic-gate #define	CPI_FEATURES_EDX(cpi)		((cpi)->cpi_std[1].cp_edx)
2037c478bd9Sstevel@tonic-gate #define	CPI_FEATURES_ECX(cpi)		((cpi)->cpi_std[1].cp_ecx)
2047c478bd9Sstevel@tonic-gate #define	CPI_FEATURES_XTD_EDX(cpi)	((cpi)->cpi_extd[1].cp_edx)
2057c478bd9Sstevel@tonic-gate #define	CPI_FEATURES_XTD_ECX(cpi)	((cpi)->cpi_extd[1].cp_ecx)
2067c478bd9Sstevel@tonic-gate 
2077c478bd9Sstevel@tonic-gate #define	CPI_BRANDID(cpi)	BITX((cpi)->cpi_std[1].cp_ebx, 7, 0)
2087c478bd9Sstevel@tonic-gate #define	CPI_CHUNKS(cpi)		BITX((cpi)->cpi_std[1].cp_ebx, 15, 7)
2097c478bd9Sstevel@tonic-gate #define	CPI_CPU_COUNT(cpi)	BITX((cpi)->cpi_std[1].cp_ebx, 23, 16)
2107c478bd9Sstevel@tonic-gate #define	CPI_APIC_ID(cpi)	BITX((cpi)->cpi_std[1].cp_ebx, 31, 24)
2117c478bd9Sstevel@tonic-gate 
2127c478bd9Sstevel@tonic-gate #define	CPI_MAXEAX_MAX		0x100		/* sanity control */
2137c478bd9Sstevel@tonic-gate #define	CPI_XMAXEAX_MAX		0x80000100
214d129bde2Sesaxe #define	CPI_FN4_ECX_MAX		0x20		/* sanity: max fn 4 levels */
215d129bde2Sesaxe 
216d129bde2Sesaxe /*
217d129bde2Sesaxe  * Function 4 (Deterministic Cache Parameters) macros
218d129bde2Sesaxe  * Defined by Intel Application Note AP-485
219d129bde2Sesaxe  */
220d129bde2Sesaxe #define	CPI_NUM_CORES(regs)		BITX((regs)->cp_eax, 31, 26)
221d129bde2Sesaxe #define	CPI_NTHR_SHR_CACHE(regs)	BITX((regs)->cp_eax, 25, 14)
222d129bde2Sesaxe #define	CPI_FULL_ASSOC_CACHE(regs)	BITX((regs)->cp_eax, 9, 9)
223d129bde2Sesaxe #define	CPI_SELF_INIT_CACHE(regs)	BITX((regs)->cp_eax, 8, 8)
224d129bde2Sesaxe #define	CPI_CACHE_LVL(regs)		BITX((regs)->cp_eax, 7, 5)
225d129bde2Sesaxe #define	CPI_CACHE_TYPE(regs)		BITX((regs)->cp_eax, 4, 0)
226d129bde2Sesaxe 
227d129bde2Sesaxe #define	CPI_CACHE_WAYS(regs)		BITX((regs)->cp_ebx, 31, 22)
228d129bde2Sesaxe #define	CPI_CACHE_PARTS(regs)		BITX((regs)->cp_ebx, 21, 12)
229d129bde2Sesaxe #define	CPI_CACHE_COH_LN_SZ(regs)	BITX((regs)->cp_ebx, 11, 0)
230d129bde2Sesaxe 
231d129bde2Sesaxe #define	CPI_CACHE_SETS(regs)		BITX((regs)->cp_ecx, 31, 0)
232d129bde2Sesaxe 
233d129bde2Sesaxe #define	CPI_PREFCH_STRIDE(regs)		BITX((regs)->cp_edx, 9, 0)
234d129bde2Sesaxe 
2357c478bd9Sstevel@tonic-gate 
2367c478bd9Sstevel@tonic-gate /*
2375ff02082Sdmick  * A couple of shorthand macros to identify "later" P6-family chips
2385ff02082Sdmick  * like the Pentium M and Core.  First, the "older" P6-based stuff
2395ff02082Sdmick  * (loosely defined as "pre-Pentium-4"):
2405ff02082Sdmick  * P6, PII, Mobile PII, PII Xeon, PIII, Mobile PIII, PIII Xeon
2415ff02082Sdmick  */
2425ff02082Sdmick 
2435ff02082Sdmick #define	IS_LEGACY_P6(cpi) (			\
2445ff02082Sdmick 	cpi->cpi_family == 6 && 		\
2455ff02082Sdmick 		(cpi->cpi_model == 1 ||		\
2465ff02082Sdmick 		cpi->cpi_model == 3 ||		\
2475ff02082Sdmick 		cpi->cpi_model == 5 ||		\
2485ff02082Sdmick 		cpi->cpi_model == 6 ||		\
2495ff02082Sdmick 		cpi->cpi_model == 7 ||		\
2505ff02082Sdmick 		cpi->cpi_model == 8 ||		\
2515ff02082Sdmick 		cpi->cpi_model == 0xA ||	\
2525ff02082Sdmick 		cpi->cpi_model == 0xB)		\
2535ff02082Sdmick )
2545ff02082Sdmick 
2555ff02082Sdmick /* A "new F6" is everything with family 6 that's not the above */
2565ff02082Sdmick #define	IS_NEW_F6(cpi) ((cpi->cpi_family == 6) && !IS_LEGACY_P6(cpi))
2575ff02082Sdmick 
258*bf91205bSksadhukh /* Extended family/model support */
259*bf91205bSksadhukh #define	IS_EXTENDED_MODEL_INTEL(cpi) (cpi->cpi_family == 0x6 || \
260*bf91205bSksadhukh 	cpi->cpi_family >= 0xf)
261*bf91205bSksadhukh 
2625ff02082Sdmick /*
2638a40a695Sgavinm  * AMD family 0xf socket types.
2648a40a695Sgavinm  * First index is 0 for revs B thru E, 1 for F and G.
2658a40a695Sgavinm  * Second index by (model & 0x3)
2668a40a695Sgavinm  */
2678a40a695Sgavinm static uint32_t amd_skts[2][4] = {
2688a40a695Sgavinm 	{
2698a40a695Sgavinm 		X86_SOCKET_754,		/* 0b00 */
2708a40a695Sgavinm 		X86_SOCKET_940,		/* 0b01 */
2718a40a695Sgavinm 		X86_SOCKET_754,		/* 0b10 */
2728a40a695Sgavinm 		X86_SOCKET_939		/* 0b11 */
2738a40a695Sgavinm 	},
2748a40a695Sgavinm 	{
2758a40a695Sgavinm 		X86_SOCKET_S1g1,	/* 0b00 */
2768a40a695Sgavinm 		X86_SOCKET_F1207,	/* 0b01 */
2778a40a695Sgavinm 		X86_SOCKET_UNKNOWN,	/* 0b10 */
2788a40a695Sgavinm 		X86_SOCKET_AM2		/* 0b11 */
2798a40a695Sgavinm 	}
2808a40a695Sgavinm };
2818a40a695Sgavinm 
2828a40a695Sgavinm /*
2838a40a695Sgavinm  * Table for mapping AMD Family 0xf model/stepping combination to
2848a40a695Sgavinm  * chip "revision" and socket type.  Only rm_family 0xf is used at the
2858a40a695Sgavinm  * moment, but AMD family 0x10 will extend the exsiting revision names
2868a40a695Sgavinm  * so will likely also use this table.
2878a40a695Sgavinm  *
2888a40a695Sgavinm  * The first member of this array that matches a given family, extended model
2898a40a695Sgavinm  * plus model range, and stepping range will be considered a match.
2908a40a695Sgavinm  */
2918a40a695Sgavinm static const struct amd_rev_mapent {
2928a40a695Sgavinm 	uint_t rm_family;
2938a40a695Sgavinm 	uint_t rm_modello;
2948a40a695Sgavinm 	uint_t rm_modelhi;
2958a40a695Sgavinm 	uint_t rm_steplo;
2968a40a695Sgavinm 	uint_t rm_stephi;
2978a40a695Sgavinm 	uint32_t rm_chiprev;
2988a40a695Sgavinm 	const char *rm_chiprevstr;
2998a40a695Sgavinm 	int rm_sktidx;
3008a40a695Sgavinm } amd_revmap[] = {
3018a40a695Sgavinm 	/*
3028a40a695Sgavinm 	 * Rev B includes model 0x4 stepping 0 and model 0x5 stepping 0 and 1.
3038a40a695Sgavinm 	 */
3048a40a695Sgavinm 	{ 0xf, 0x04, 0x04, 0x0, 0x0, X86_CHIPREV_AMD_F_REV_B, "B", 0 },
3058a40a695Sgavinm 	{ 0xf, 0x05, 0x05, 0x0, 0x1, X86_CHIPREV_AMD_F_REV_B, "B", 0 },
3068a40a695Sgavinm 	/*
3078a40a695Sgavinm 	 * Rev C0 includes model 0x4 stepping 8 and model 0x5 stepping 8
3088a40a695Sgavinm 	 */
3098a40a695Sgavinm 	{ 0xf, 0x04, 0x05, 0x8, 0x8, X86_CHIPREV_AMD_F_REV_C0, "C0", 0 },
3108a40a695Sgavinm 	/*
3118a40a695Sgavinm 	 * Rev CG is the rest of extended model 0x0 - i.e., everything
3128a40a695Sgavinm 	 * but the rev B and C0 combinations covered above.
3138a40a695Sgavinm 	 */
3148a40a695Sgavinm 	{ 0xf, 0x00, 0x0f, 0x0, 0xf, X86_CHIPREV_AMD_F_REV_CG, "CG", 0 },
3158a40a695Sgavinm 	/*
3168a40a695Sgavinm 	 * Rev D has extended model 0x1.
3178a40a695Sgavinm 	 */
3188a40a695Sgavinm 	{ 0xf, 0x10, 0x1f, 0x0, 0xf, X86_CHIPREV_AMD_F_REV_D, "D", 0 },
3198a40a695Sgavinm 	/*
3208a40a695Sgavinm 	 * Rev E has extended model 0x2.
3218a40a695Sgavinm 	 * Extended model 0x3 is unused but available to grow into.
3228a40a695Sgavinm 	 */
3238a40a695Sgavinm 	{ 0xf, 0x20, 0x3f, 0x0, 0xf, X86_CHIPREV_AMD_F_REV_E, "E", 0 },
3248a40a695Sgavinm 	/*
3258a40a695Sgavinm 	 * Rev F has extended models 0x4 and 0x5.
3268a40a695Sgavinm 	 */
3278a40a695Sgavinm 	{ 0xf, 0x40, 0x5f, 0x0, 0xf, X86_CHIPREV_AMD_F_REV_F, "F", 1 },
3288a40a695Sgavinm 	/*
3298a40a695Sgavinm 	 * Rev G has extended model 0x6.
3308a40a695Sgavinm 	 */
3318a40a695Sgavinm 	{ 0xf, 0x60, 0x6f, 0x0, 0xf, X86_CHIPREV_AMD_F_REV_G, "G", 1 },
3328a40a695Sgavinm };
3338a40a695Sgavinm 
334f98fbcecSbholler /*
335f98fbcecSbholler  * Info for monitor/mwait idle loop.
336f98fbcecSbholler  *
337f98fbcecSbholler  * See cpuid section of "Intel 64 and IA-32 Architectures Software Developer's
338f98fbcecSbholler  * Manual Volume 2A: Instruction Set Reference, A-M" #25366-022US, November
339f98fbcecSbholler  * 2006.
340f98fbcecSbholler  * See MONITOR/MWAIT section of "AMD64 Architecture Programmer's Manual
341f98fbcecSbholler  * Documentation Updates" #33633, Rev 2.05, December 2006.
342f98fbcecSbholler  */
343f98fbcecSbholler #define	MWAIT_SUPPORT		(0x00000001)	/* mwait supported */
344f98fbcecSbholler #define	MWAIT_EXTENSIONS	(0x00000002)	/* extenstion supported */
345f98fbcecSbholler #define	MWAIT_ECX_INT_ENABLE	(0x00000004)	/* ecx 1 extension supported */
346f98fbcecSbholler #define	MWAIT_SUPPORTED(cpi)	((cpi)->cpi_std[1].cp_ecx & CPUID_INTC_ECX_MON)
347f98fbcecSbholler #define	MWAIT_INT_ENABLE(cpi)	((cpi)->cpi_std[5].cp_ecx & 0x2)
348f98fbcecSbholler #define	MWAIT_EXTENSION(cpi)	((cpi)->cpi_std[5].cp_ecx & 0x1)
349f98fbcecSbholler #define	MWAIT_SIZE_MIN(cpi)	BITX((cpi)->cpi_std[5].cp_eax, 15, 0)
350f98fbcecSbholler #define	MWAIT_SIZE_MAX(cpi)	BITX((cpi)->cpi_std[5].cp_ebx, 15, 0)
351f98fbcecSbholler /*
352f98fbcecSbholler  * Number of sub-cstates for a given c-state.
353f98fbcecSbholler  */
354f98fbcecSbholler #define	MWAIT_NUM_SUBC_STATES(cpi, c_state)			\
355f98fbcecSbholler 	BITX((cpi)->cpi_std[5].cp_edx, c_state + 3, c_state)
356f98fbcecSbholler 
357f1d742a9Sksadhukh static void intel_cpuid_4_cache_info(void *, struct cpuid_info *);
358f1d742a9Sksadhukh 
3598a40a695Sgavinm static void
3608a40a695Sgavinm synth_amd_info(struct cpuid_info *cpi)
3618a40a695Sgavinm {
3628a40a695Sgavinm 	const struct amd_rev_mapent *rmp;
3638a40a695Sgavinm 	uint_t family, model, step;
3648a40a695Sgavinm 	int i;
3658a40a695Sgavinm 
3668a40a695Sgavinm 	/*
3678a40a695Sgavinm 	 * Currently only AMD family 0xf uses these fields.
3688a40a695Sgavinm 	 */
3698a40a695Sgavinm 	if (cpi->cpi_family != 0xf)
3708a40a695Sgavinm 		return;
3718a40a695Sgavinm 
3728a40a695Sgavinm 	family = cpi->cpi_family;
3738a40a695Sgavinm 	model = cpi->cpi_model;
3748a40a695Sgavinm 	step = cpi->cpi_step;
3758a40a695Sgavinm 
3768a40a695Sgavinm 	for (i = 0, rmp = amd_revmap; i < sizeof (amd_revmap) / sizeof (*rmp);
3778a40a695Sgavinm 	    i++, rmp++) {
3788a40a695Sgavinm 		if (family == rmp->rm_family &&
3798a40a695Sgavinm 		    model >= rmp->rm_modello && model <= rmp->rm_modelhi &&
3808a40a695Sgavinm 		    step >= rmp->rm_steplo && step <= rmp->rm_stephi) {
3818a40a695Sgavinm 			cpi->cpi_chiprev = rmp->rm_chiprev;
3828a40a695Sgavinm 			cpi->cpi_chiprevstr = rmp->rm_chiprevstr;
3838a40a695Sgavinm 			cpi->cpi_socket = amd_skts[rmp->rm_sktidx][model & 0x3];
3848a40a695Sgavinm 			return;
3858a40a695Sgavinm 		}
3868a40a695Sgavinm 	}
3878a40a695Sgavinm }
3888a40a695Sgavinm 
3898a40a695Sgavinm static void
3908a40a695Sgavinm synth_info(struct cpuid_info *cpi)
3918a40a695Sgavinm {
3928a40a695Sgavinm 	cpi->cpi_chiprev = X86_CHIPREV_UNKNOWN;
3938a40a695Sgavinm 	cpi->cpi_chiprevstr = "Unknown";
3948a40a695Sgavinm 	cpi->cpi_socket = X86_SOCKET_UNKNOWN;
3958a40a695Sgavinm 
3968a40a695Sgavinm 	switch (cpi->cpi_vendor) {
3978a40a695Sgavinm 	case X86_VENDOR_AMD:
3988a40a695Sgavinm 		synth_amd_info(cpi);
3998a40a695Sgavinm 		break;
4008a40a695Sgavinm 
4018a40a695Sgavinm 	default:
4028a40a695Sgavinm 		break;
4038a40a695Sgavinm 
4048a40a695Sgavinm 	}
4058a40a695Sgavinm }
4068a40a695Sgavinm 
4078a40a695Sgavinm /*
408ae115bc7Smrj  * Apply up various platform-dependent restrictions where the
409ae115bc7Smrj  * underlying platform restrictions mean the CPU can be marked
410ae115bc7Smrj  * as less capable than its cpuid instruction would imply.
411ae115bc7Smrj  */
412ae115bc7Smrj 
413ae115bc7Smrj #define	platform_cpuid_mangle(vendor, eax, cp)	/* nothing */
414ae115bc7Smrj 
415ae115bc7Smrj /*
4167c478bd9Sstevel@tonic-gate  *  Some undocumented ways of patching the results of the cpuid
4177c478bd9Sstevel@tonic-gate  *  instruction to permit running Solaris 10 on future cpus that
4187c478bd9Sstevel@tonic-gate  *  we don't currently support.  Could be set to non-zero values
4197c478bd9Sstevel@tonic-gate  *  via settings in eeprom.
4207c478bd9Sstevel@tonic-gate  */
4217c478bd9Sstevel@tonic-gate 
4227c478bd9Sstevel@tonic-gate uint32_t cpuid_feature_ecx_include;
4237c478bd9Sstevel@tonic-gate uint32_t cpuid_feature_ecx_exclude;
4247c478bd9Sstevel@tonic-gate uint32_t cpuid_feature_edx_include;
4257c478bd9Sstevel@tonic-gate uint32_t cpuid_feature_edx_exclude;
4267c478bd9Sstevel@tonic-gate 
427ae115bc7Smrj void
428ae115bc7Smrj cpuid_alloc_space(cpu_t *cpu)
429ae115bc7Smrj {
430ae115bc7Smrj 	/*
431ae115bc7Smrj 	 * By convention, cpu0 is the boot cpu, which is set up
432ae115bc7Smrj 	 * before memory allocation is available.  All other cpus get
433ae115bc7Smrj 	 * their cpuid_info struct allocated here.
434ae115bc7Smrj 	 */
435ae115bc7Smrj 	ASSERT(cpu->cpu_id != 0);
436ae115bc7Smrj 	cpu->cpu_m.mcpu_cpi =
437ae115bc7Smrj 	    kmem_zalloc(sizeof (*cpu->cpu_m.mcpu_cpi), KM_SLEEP);
438ae115bc7Smrj }
439ae115bc7Smrj 
440ae115bc7Smrj void
441ae115bc7Smrj cpuid_free_space(cpu_t *cpu)
442ae115bc7Smrj {
443d129bde2Sesaxe 	struct cpuid_info *cpi = cpu->cpu_m.mcpu_cpi;
444d129bde2Sesaxe 	int i;
445d129bde2Sesaxe 
446ae115bc7Smrj 	ASSERT(cpu->cpu_id != 0);
447d129bde2Sesaxe 
448d129bde2Sesaxe 	/*
449d129bde2Sesaxe 	 * Free up any function 4 related dynamic storage
450d129bde2Sesaxe 	 */
451d129bde2Sesaxe 	for (i = 1; i < cpi->cpi_std_4_size; i++)
452d129bde2Sesaxe 		kmem_free(cpi->cpi_std_4[i], sizeof (struct cpuid_regs));
453d129bde2Sesaxe 	if (cpi->cpi_std_4_size > 0)
454d129bde2Sesaxe 		kmem_free(cpi->cpi_std_4,
455d129bde2Sesaxe 		    cpi->cpi_std_4_size * sizeof (struct cpuid_regs *));
456d129bde2Sesaxe 
457ae115bc7Smrj 	kmem_free(cpu->cpu_m.mcpu_cpi, sizeof (*cpu->cpu_m.mcpu_cpi));
458ae115bc7Smrj }
459ae115bc7Smrj 
4607c478bd9Sstevel@tonic-gate uint_t
4617c478bd9Sstevel@tonic-gate cpuid_pass1(cpu_t *cpu)
4627c478bd9Sstevel@tonic-gate {
4637c478bd9Sstevel@tonic-gate 	uint32_t mask_ecx, mask_edx;
4647c478bd9Sstevel@tonic-gate 	uint_t feature = X86_CPUID;
4657c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi;
4668949bcd6Sandrei 	struct cpuid_regs *cp;
4677c478bd9Sstevel@tonic-gate 	int xcpuid;
4687c478bd9Sstevel@tonic-gate 
469ae115bc7Smrj 
4707c478bd9Sstevel@tonic-gate 	/*
471ae115bc7Smrj 	 * Space statically allocated for cpu0, ensure pointer is set
4727c478bd9Sstevel@tonic-gate 	 */
4737c478bd9Sstevel@tonic-gate 	if (cpu->cpu_id == 0)
474ae115bc7Smrj 		cpu->cpu_m.mcpu_cpi = &cpuid_info0;
475ae115bc7Smrj 	cpi = cpu->cpu_m.mcpu_cpi;
476ae115bc7Smrj 	ASSERT(cpi != NULL);
4777c478bd9Sstevel@tonic-gate 	cp = &cpi->cpi_std[0];
4788949bcd6Sandrei 	cp->cp_eax = 0;
4798949bcd6Sandrei 	cpi->cpi_maxeax = __cpuid_insn(cp);
4807c478bd9Sstevel@tonic-gate 	{
4817c478bd9Sstevel@tonic-gate 		uint32_t *iptr = (uint32_t *)cpi->cpi_vendorstr;
4827c478bd9Sstevel@tonic-gate 		*iptr++ = cp->cp_ebx;
4837c478bd9Sstevel@tonic-gate 		*iptr++ = cp->cp_edx;
4847c478bd9Sstevel@tonic-gate 		*iptr++ = cp->cp_ecx;
4857c478bd9Sstevel@tonic-gate 		*(char *)&cpi->cpi_vendorstr[12] = '\0';
4867c478bd9Sstevel@tonic-gate 	}
4877c478bd9Sstevel@tonic-gate 
4887c478bd9Sstevel@tonic-gate 	/*
4897c478bd9Sstevel@tonic-gate 	 * Map the vendor string to a type code
4907c478bd9Sstevel@tonic-gate 	 */
4917c478bd9Sstevel@tonic-gate 	if (strcmp(cpi->cpi_vendorstr, "GenuineIntel") == 0)
4927c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_Intel;
4937c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, "AuthenticAMD") == 0)
4947c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_AMD;
4957c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, "GenuineTMx86") == 0)
4967c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_TM;
4977c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, CyrixInstead) == 0)
4987c478bd9Sstevel@tonic-gate 		/*
4997c478bd9Sstevel@tonic-gate 		 * CyrixInstead is a variable used by the Cyrix detection code
5007c478bd9Sstevel@tonic-gate 		 * in locore.
5017c478bd9Sstevel@tonic-gate 		 */
5027c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_Cyrix;
5037c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, "UMC UMC UMC ") == 0)
5047c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_UMC;
5057c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, "NexGenDriven") == 0)
5067c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_NexGen;
5077c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, "CentaurHauls") == 0)
5087c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_Centaur;
5097c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, "RiseRiseRise") == 0)
5107c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_Rise;
5117c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, "SiS SiS SiS ") == 0)
5127c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_SiS;
5137c478bd9Sstevel@tonic-gate 	else if (strcmp(cpi->cpi_vendorstr, "Geode by NSC") == 0)
5147c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_NSC;
5157c478bd9Sstevel@tonic-gate 	else
5167c478bd9Sstevel@tonic-gate 		cpi->cpi_vendor = X86_VENDOR_IntelClone;
5177c478bd9Sstevel@tonic-gate 
5187c478bd9Sstevel@tonic-gate 	x86_vendor = cpi->cpi_vendor; /* for compatibility */
5197c478bd9Sstevel@tonic-gate 
5207c478bd9Sstevel@tonic-gate 	/*
5217c478bd9Sstevel@tonic-gate 	 * Limit the range in case of weird hardware
5227c478bd9Sstevel@tonic-gate 	 */
5237c478bd9Sstevel@tonic-gate 	if (cpi->cpi_maxeax > CPI_MAXEAX_MAX)
5247c478bd9Sstevel@tonic-gate 		cpi->cpi_maxeax = CPI_MAXEAX_MAX;
5257c478bd9Sstevel@tonic-gate 	if (cpi->cpi_maxeax < 1)
5267c478bd9Sstevel@tonic-gate 		goto pass1_done;
5277c478bd9Sstevel@tonic-gate 
5287c478bd9Sstevel@tonic-gate 	cp = &cpi->cpi_std[1];
5298949bcd6Sandrei 	cp->cp_eax = 1;
5308949bcd6Sandrei 	(void) __cpuid_insn(cp);
5317c478bd9Sstevel@tonic-gate 
5327c478bd9Sstevel@tonic-gate 	/*
5337c478bd9Sstevel@tonic-gate 	 * Extract identifying constants for easy access.
5347c478bd9Sstevel@tonic-gate 	 */
5357c478bd9Sstevel@tonic-gate 	cpi->cpi_model = CPI_MODEL(cpi);
5367c478bd9Sstevel@tonic-gate 	cpi->cpi_family = CPI_FAMILY(cpi);
5377c478bd9Sstevel@tonic-gate 
5385ff02082Sdmick 	if (cpi->cpi_family == 0xf)
5397c478bd9Sstevel@tonic-gate 		cpi->cpi_family += CPI_FAMILY_XTD(cpi);
5405ff02082Sdmick 
54168c91426Sdmick 	/*
542875b116eSkchow 	 * Beware: AMD uses "extended model" iff base *FAMILY* == 0xf.
54368c91426Sdmick 	 * Intel, and presumably everyone else, uses model == 0xf, as
54468c91426Sdmick 	 * one would expect (max value means possible overflow).  Sigh.
54568c91426Sdmick 	 */
54668c91426Sdmick 
54768c91426Sdmick 	switch (cpi->cpi_vendor) {
548*bf91205bSksadhukh 	case X86_VENDOR_Intel:
549*bf91205bSksadhukh 		if (IS_EXTENDED_MODEL_INTEL(cpi))
550*bf91205bSksadhukh 			cpi->cpi_model += CPI_MODEL_XTD(cpi) << 4;
55168c91426Sdmick 	case X86_VENDOR_AMD:
552875b116eSkchow 		if (CPI_FAMILY(cpi) == 0xf)
55368c91426Sdmick 			cpi->cpi_model += CPI_MODEL_XTD(cpi) << 4;
55468c91426Sdmick 		break;
55568c91426Sdmick 	default:
5565ff02082Sdmick 		if (cpi->cpi_model == 0xf)
5577c478bd9Sstevel@tonic-gate 			cpi->cpi_model += CPI_MODEL_XTD(cpi) << 4;
55868c91426Sdmick 		break;
55968c91426Sdmick 	}
5607c478bd9Sstevel@tonic-gate 
5617c478bd9Sstevel@tonic-gate 	cpi->cpi_step = CPI_STEP(cpi);
5627c478bd9Sstevel@tonic-gate 	cpi->cpi_brandid = CPI_BRANDID(cpi);
5637c478bd9Sstevel@tonic-gate 
5647c478bd9Sstevel@tonic-gate 	/*
5657c478bd9Sstevel@tonic-gate 	 * *default* assumptions:
5667c478bd9Sstevel@tonic-gate 	 * - believe %edx feature word
5677c478bd9Sstevel@tonic-gate 	 * - ignore %ecx feature word
5687c478bd9Sstevel@tonic-gate 	 * - 32-bit virtual and physical addressing
5697c478bd9Sstevel@tonic-gate 	 */
5707c478bd9Sstevel@tonic-gate 	mask_edx = 0xffffffff;
5717c478bd9Sstevel@tonic-gate 	mask_ecx = 0;
5727c478bd9Sstevel@tonic-gate 
5737c478bd9Sstevel@tonic-gate 	cpi->cpi_pabits = cpi->cpi_vabits = 32;
5747c478bd9Sstevel@tonic-gate 
5757c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
5767c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
5777c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 5)
5787c478bd9Sstevel@tonic-gate 			x86_type = X86_TYPE_P5;
5795ff02082Sdmick 		else if (IS_LEGACY_P6(cpi)) {
5807c478bd9Sstevel@tonic-gate 			x86_type = X86_TYPE_P6;
5817c478bd9Sstevel@tonic-gate 			pentiumpro_bug4046376 = 1;
5827c478bd9Sstevel@tonic-gate 			pentiumpro_bug4064495 = 1;
5837c478bd9Sstevel@tonic-gate 			/*
5847c478bd9Sstevel@tonic-gate 			 * Clear the SEP bit when it was set erroneously
5857c478bd9Sstevel@tonic-gate 			 */
5867c478bd9Sstevel@tonic-gate 			if (cpi->cpi_model < 3 && cpi->cpi_step < 3)
5877c478bd9Sstevel@tonic-gate 				cp->cp_edx &= ~CPUID_INTC_EDX_SEP;
5885ff02082Sdmick 		} else if (IS_NEW_F6(cpi) || cpi->cpi_family == 0xf) {
5897c478bd9Sstevel@tonic-gate 			x86_type = X86_TYPE_P4;
5907c478bd9Sstevel@tonic-gate 			/*
5917c478bd9Sstevel@tonic-gate 			 * We don't currently depend on any of the %ecx
5927c478bd9Sstevel@tonic-gate 			 * features until Prescott, so we'll only check
5937c478bd9Sstevel@tonic-gate 			 * this from P4 onwards.  We might want to revisit
5947c478bd9Sstevel@tonic-gate 			 * that idea later.
5957c478bd9Sstevel@tonic-gate 			 */
5967c478bd9Sstevel@tonic-gate 			mask_ecx = 0xffffffff;
5977c478bd9Sstevel@tonic-gate 		} else if (cpi->cpi_family > 0xf)
5987c478bd9Sstevel@tonic-gate 			mask_ecx = 0xffffffff;
5997c622d23Sbholler 		/*
6007c622d23Sbholler 		 * We don't support MONITOR/MWAIT if leaf 5 is not available
6017c622d23Sbholler 		 * to obtain the monitor linesize.
6027c622d23Sbholler 		 */
6037c622d23Sbholler 		if (cpi->cpi_maxeax < 5)
6047c622d23Sbholler 			mask_ecx &= ~CPUID_INTC_ECX_MON;
6057c478bd9Sstevel@tonic-gate 		break;
6067c478bd9Sstevel@tonic-gate 	case X86_VENDOR_IntelClone:
6077c478bd9Sstevel@tonic-gate 	default:
6087c478bd9Sstevel@tonic-gate 		break;
6097c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
6107c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_108)
6117c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 0xf && cpi->cpi_model == 0xe) {
6127c478bd9Sstevel@tonic-gate 			cp->cp_eax = (0xf0f & cp->cp_eax) | 0xc0;
6137c478bd9Sstevel@tonic-gate 			cpi->cpi_model = 0xc;
6147c478bd9Sstevel@tonic-gate 		} else
6157c478bd9Sstevel@tonic-gate #endif
6167c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 5) {
6177c478bd9Sstevel@tonic-gate 			/*
6187c478bd9Sstevel@tonic-gate 			 * AMD K5 and K6
6197c478bd9Sstevel@tonic-gate 			 *
6207c478bd9Sstevel@tonic-gate 			 * These CPUs have an incomplete implementation
6217c478bd9Sstevel@tonic-gate 			 * of MCA/MCE which we mask away.
6227c478bd9Sstevel@tonic-gate 			 */
6238949bcd6Sandrei 			mask_edx &= ~(CPUID_INTC_EDX_MCE | CPUID_INTC_EDX_MCA);
6248949bcd6Sandrei 
6257c478bd9Sstevel@tonic-gate 			/*
6267c478bd9Sstevel@tonic-gate 			 * Model 0 uses the wrong (APIC) bit
6277c478bd9Sstevel@tonic-gate 			 * to indicate PGE.  Fix it here.
6287c478bd9Sstevel@tonic-gate 			 */
6298949bcd6Sandrei 			if (cpi->cpi_model == 0) {
6307c478bd9Sstevel@tonic-gate 				if (cp->cp_edx & 0x200) {
6317c478bd9Sstevel@tonic-gate 					cp->cp_edx &= ~0x200;
6327c478bd9Sstevel@tonic-gate 					cp->cp_edx |= CPUID_INTC_EDX_PGE;
6337c478bd9Sstevel@tonic-gate 				}
6347c478bd9Sstevel@tonic-gate 			}
6358949bcd6Sandrei 
6368949bcd6Sandrei 			/*
6378949bcd6Sandrei 			 * Early models had problems w/ MMX; disable.
6388949bcd6Sandrei 			 */
6398949bcd6Sandrei 			if (cpi->cpi_model < 6)
6408949bcd6Sandrei 				mask_edx &= ~CPUID_INTC_EDX_MMX;
6418949bcd6Sandrei 		}
6428949bcd6Sandrei 
6438949bcd6Sandrei 		/*
6448949bcd6Sandrei 		 * For newer families, SSE3 and CX16, at least, are valid;
6458949bcd6Sandrei 		 * enable all
6468949bcd6Sandrei 		 */
6478949bcd6Sandrei 		if (cpi->cpi_family >= 0xf)
6488949bcd6Sandrei 			mask_ecx = 0xffffffff;
6497c622d23Sbholler 		/*
6507c622d23Sbholler 		 * We don't support MONITOR/MWAIT if leaf 5 is not available
6517c622d23Sbholler 		 * to obtain the monitor linesize.
6527c622d23Sbholler 		 */
6537c622d23Sbholler 		if (cpi->cpi_maxeax < 5)
6547c622d23Sbholler 			mask_ecx &= ~CPUID_INTC_ECX_MON;
6557c478bd9Sstevel@tonic-gate 		break;
6567c478bd9Sstevel@tonic-gate 	case X86_VENDOR_TM:
6577c478bd9Sstevel@tonic-gate 		/*
6587c478bd9Sstevel@tonic-gate 		 * workaround the NT workaround in CMS 4.1
6597c478bd9Sstevel@tonic-gate 		 */
6607c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 5 && cpi->cpi_model == 4 &&
6617c478bd9Sstevel@tonic-gate 		    (cpi->cpi_step == 2 || cpi->cpi_step == 3))
6627c478bd9Sstevel@tonic-gate 			cp->cp_edx |= CPUID_INTC_EDX_CX8;
6637c478bd9Sstevel@tonic-gate 		break;
6647c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Centaur:
6657c478bd9Sstevel@tonic-gate 		/*
6667c478bd9Sstevel@tonic-gate 		 * workaround the NT workarounds again
6677c478bd9Sstevel@tonic-gate 		 */
6687c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 6)
6697c478bd9Sstevel@tonic-gate 			cp->cp_edx |= CPUID_INTC_EDX_CX8;
6707c478bd9Sstevel@tonic-gate 		break;
6717c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Cyrix:
6727c478bd9Sstevel@tonic-gate 		/*
6737c478bd9Sstevel@tonic-gate 		 * We rely heavily on the probing in locore
6747c478bd9Sstevel@tonic-gate 		 * to actually figure out what parts, if any,
6757c478bd9Sstevel@tonic-gate 		 * of the Cyrix cpuid instruction to believe.
6767c478bd9Sstevel@tonic-gate 		 */
6777c478bd9Sstevel@tonic-gate 		switch (x86_type) {
6787c478bd9Sstevel@tonic-gate 		case X86_TYPE_CYRIX_486:
6797c478bd9Sstevel@tonic-gate 			mask_edx = 0;
6807c478bd9Sstevel@tonic-gate 			break;
6817c478bd9Sstevel@tonic-gate 		case X86_TYPE_CYRIX_6x86:
6827c478bd9Sstevel@tonic-gate 			mask_edx = 0;
6837c478bd9Sstevel@tonic-gate 			break;
6847c478bd9Sstevel@tonic-gate 		case X86_TYPE_CYRIX_6x86L:
6857c478bd9Sstevel@tonic-gate 			mask_edx =
6867c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_DE |
6877c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_CX8;
6887c478bd9Sstevel@tonic-gate 			break;
6897c478bd9Sstevel@tonic-gate 		case X86_TYPE_CYRIX_6x86MX:
6907c478bd9Sstevel@tonic-gate 			mask_edx =
6917c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_DE |
6927c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_MSR |
6937c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_CX8 |
6947c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_PGE |
6957c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_CMOV |
6967c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_MMX;
6977c478bd9Sstevel@tonic-gate 			break;
6987c478bd9Sstevel@tonic-gate 		case X86_TYPE_CYRIX_GXm:
6997c478bd9Sstevel@tonic-gate 			mask_edx =
7007c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_MSR |
7017c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_CX8 |
7027c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_CMOV |
7037c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_MMX;
7047c478bd9Sstevel@tonic-gate 			break;
7057c478bd9Sstevel@tonic-gate 		case X86_TYPE_CYRIX_MediaGX:
7067c478bd9Sstevel@tonic-gate 			break;
7077c478bd9Sstevel@tonic-gate 		case X86_TYPE_CYRIX_MII:
7087c478bd9Sstevel@tonic-gate 		case X86_TYPE_VIA_CYRIX_III:
7097c478bd9Sstevel@tonic-gate 			mask_edx =
7107c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_DE |
7117c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_TSC |
7127c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_MSR |
7137c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_CX8 |
7147c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_PGE |
7157c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_CMOV |
7167c478bd9Sstevel@tonic-gate 			    CPUID_INTC_EDX_MMX;
7177c478bd9Sstevel@tonic-gate 			break;
7187c478bd9Sstevel@tonic-gate 		default:
7197c478bd9Sstevel@tonic-gate 			break;
7207c478bd9Sstevel@tonic-gate 		}
7217c478bd9Sstevel@tonic-gate 		break;
7227c478bd9Sstevel@tonic-gate 	}
7237c478bd9Sstevel@tonic-gate 
7247c478bd9Sstevel@tonic-gate 	/*
7257c478bd9Sstevel@tonic-gate 	 * Now we've figured out the masks that determine
7267c478bd9Sstevel@tonic-gate 	 * which bits we choose to believe, apply the masks
7277c478bd9Sstevel@tonic-gate 	 * to the feature words, then map the kernel's view
7287c478bd9Sstevel@tonic-gate 	 * of these feature words into its feature word.
7297c478bd9Sstevel@tonic-gate 	 */
7307c478bd9Sstevel@tonic-gate 	cp->cp_edx &= mask_edx;
7317c478bd9Sstevel@tonic-gate 	cp->cp_ecx &= mask_ecx;
7327c478bd9Sstevel@tonic-gate 
7337c478bd9Sstevel@tonic-gate 	/*
734ae115bc7Smrj 	 * apply any platform restrictions (we don't call this
735ae115bc7Smrj 	 * immediately after __cpuid_insn here, because we need the
736ae115bc7Smrj 	 * workarounds applied above first)
7377c478bd9Sstevel@tonic-gate 	 */
738ae115bc7Smrj 	platform_cpuid_mangle(cpi->cpi_vendor, 1, cp);
7397c478bd9Sstevel@tonic-gate 
740ae115bc7Smrj 	/*
741ae115bc7Smrj 	 * fold in overrides from the "eeprom" mechanism
742ae115bc7Smrj 	 */
7437c478bd9Sstevel@tonic-gate 	cp->cp_edx |= cpuid_feature_edx_include;
7447c478bd9Sstevel@tonic-gate 	cp->cp_edx &= ~cpuid_feature_edx_exclude;
7457c478bd9Sstevel@tonic-gate 
7467c478bd9Sstevel@tonic-gate 	cp->cp_ecx |= cpuid_feature_ecx_include;
7477c478bd9Sstevel@tonic-gate 	cp->cp_ecx &= ~cpuid_feature_ecx_exclude;
7487c478bd9Sstevel@tonic-gate 
7497c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_PSE)
7507c478bd9Sstevel@tonic-gate 		feature |= X86_LARGEPAGE;
7517c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_TSC)
7527c478bd9Sstevel@tonic-gate 		feature |= X86_TSC;
7537c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_MSR)
7547c478bd9Sstevel@tonic-gate 		feature |= X86_MSR;
7557c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_MTRR)
7567c478bd9Sstevel@tonic-gate 		feature |= X86_MTRR;
7577c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_PGE)
7587c478bd9Sstevel@tonic-gate 		feature |= X86_PGE;
7597c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_CMOV)
7607c478bd9Sstevel@tonic-gate 		feature |= X86_CMOV;
7617c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_MMX)
7627c478bd9Sstevel@tonic-gate 		feature |= X86_MMX;
7637c478bd9Sstevel@tonic-gate 	if ((cp->cp_edx & CPUID_INTC_EDX_MCE) != 0 &&
7647c478bd9Sstevel@tonic-gate 	    (cp->cp_edx & CPUID_INTC_EDX_MCA) != 0)
7657c478bd9Sstevel@tonic-gate 		feature |= X86_MCA;
7667c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_PAE)
7677c478bd9Sstevel@tonic-gate 		feature |= X86_PAE;
7687c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_CX8)
7697c478bd9Sstevel@tonic-gate 		feature |= X86_CX8;
7707c478bd9Sstevel@tonic-gate 	if (cp->cp_ecx & CPUID_INTC_ECX_CX16)
7717c478bd9Sstevel@tonic-gate 		feature |= X86_CX16;
7727c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_PAT)
7737c478bd9Sstevel@tonic-gate 		feature |= X86_PAT;
7747c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_SEP)
7757c478bd9Sstevel@tonic-gate 		feature |= X86_SEP;
7767c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_FXSR) {
7777c478bd9Sstevel@tonic-gate 		/*
7787c478bd9Sstevel@tonic-gate 		 * In our implementation, fxsave/fxrstor
7797c478bd9Sstevel@tonic-gate 		 * are prerequisites before we'll even
7807c478bd9Sstevel@tonic-gate 		 * try and do SSE things.
7817c478bd9Sstevel@tonic-gate 		 */
7827c478bd9Sstevel@tonic-gate 		if (cp->cp_edx & CPUID_INTC_EDX_SSE)
7837c478bd9Sstevel@tonic-gate 			feature |= X86_SSE;
7847c478bd9Sstevel@tonic-gate 		if (cp->cp_edx & CPUID_INTC_EDX_SSE2)
7857c478bd9Sstevel@tonic-gate 			feature |= X86_SSE2;
7867c478bd9Sstevel@tonic-gate 		if (cp->cp_ecx & CPUID_INTC_ECX_SSE3)
7877c478bd9Sstevel@tonic-gate 			feature |= X86_SSE3;
7887c478bd9Sstevel@tonic-gate 	}
7897c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_DE)
790ae115bc7Smrj 		feature |= X86_DE;
791f98fbcecSbholler 	if (cp->cp_ecx & CPUID_INTC_ECX_MON) {
792f98fbcecSbholler 		cpi->cpi_mwait.support |= MWAIT_SUPPORT;
793f98fbcecSbholler 		feature |= X86_MWAIT;
794f98fbcecSbholler 	}
7957c478bd9Sstevel@tonic-gate 
7967c478bd9Sstevel@tonic-gate 	if (feature & X86_PAE)
7977c478bd9Sstevel@tonic-gate 		cpi->cpi_pabits = 36;
7987c478bd9Sstevel@tonic-gate 
7997c478bd9Sstevel@tonic-gate 	/*
8007c478bd9Sstevel@tonic-gate 	 * Hyperthreading configuration is slightly tricky on Intel
8017c478bd9Sstevel@tonic-gate 	 * and pure clones, and even trickier on AMD.
8027c478bd9Sstevel@tonic-gate 	 *
8037c478bd9Sstevel@tonic-gate 	 * (AMD chose to set the HTT bit on their CMP processors,
8047c478bd9Sstevel@tonic-gate 	 * even though they're not actually hyperthreaded.  Thus it
8057c478bd9Sstevel@tonic-gate 	 * takes a bit more work to figure out what's really going
806ae115bc7Smrj 	 * on ... see the handling of the CMP_LGCY bit below)
8077c478bd9Sstevel@tonic-gate 	 */
8087c478bd9Sstevel@tonic-gate 	if (cp->cp_edx & CPUID_INTC_EDX_HTT) {
8097c478bd9Sstevel@tonic-gate 		cpi->cpi_ncpu_per_chip = CPI_CPU_COUNT(cpi);
8107c478bd9Sstevel@tonic-gate 		if (cpi->cpi_ncpu_per_chip > 1)
8117c478bd9Sstevel@tonic-gate 			feature |= X86_HTT;
8128949bcd6Sandrei 	} else {
8138949bcd6Sandrei 		cpi->cpi_ncpu_per_chip = 1;
8147c478bd9Sstevel@tonic-gate 	}
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate 	/*
8177c478bd9Sstevel@tonic-gate 	 * Work on the "extended" feature information, doing
8187c478bd9Sstevel@tonic-gate 	 * some basic initialization for cpuid_pass2()
8197c478bd9Sstevel@tonic-gate 	 */
8207c478bd9Sstevel@tonic-gate 	xcpuid = 0;
8217c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
8227c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
8235ff02082Sdmick 		if (IS_NEW_F6(cpi) || cpi->cpi_family >= 0xf)
8247c478bd9Sstevel@tonic-gate 			xcpuid++;
8257c478bd9Sstevel@tonic-gate 		break;
8267c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
8277c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family > 5 ||
8287c478bd9Sstevel@tonic-gate 		    (cpi->cpi_family == 5 && cpi->cpi_model >= 1))
8297c478bd9Sstevel@tonic-gate 			xcpuid++;
8307c478bd9Sstevel@tonic-gate 		break;
8317c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Cyrix:
8327c478bd9Sstevel@tonic-gate 		/*
8337c478bd9Sstevel@tonic-gate 		 * Only these Cyrix CPUs are -known- to support
8347c478bd9Sstevel@tonic-gate 		 * extended cpuid operations.
8357c478bd9Sstevel@tonic-gate 		 */
8367c478bd9Sstevel@tonic-gate 		if (x86_type == X86_TYPE_VIA_CYRIX_III ||
8377c478bd9Sstevel@tonic-gate 		    x86_type == X86_TYPE_CYRIX_GXm)
8387c478bd9Sstevel@tonic-gate 			xcpuid++;
8397c478bd9Sstevel@tonic-gate 		break;
8407c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Centaur:
8417c478bd9Sstevel@tonic-gate 	case X86_VENDOR_TM:
8427c478bd9Sstevel@tonic-gate 	default:
8437c478bd9Sstevel@tonic-gate 		xcpuid++;
8447c478bd9Sstevel@tonic-gate 		break;
8457c478bd9Sstevel@tonic-gate 	}
8467c478bd9Sstevel@tonic-gate 
8477c478bd9Sstevel@tonic-gate 	if (xcpuid) {
8487c478bd9Sstevel@tonic-gate 		cp = &cpi->cpi_extd[0];
8498949bcd6Sandrei 		cp->cp_eax = 0x80000000;
8508949bcd6Sandrei 		cpi->cpi_xmaxeax = __cpuid_insn(cp);
8517c478bd9Sstevel@tonic-gate 	}
8527c478bd9Sstevel@tonic-gate 
8537c478bd9Sstevel@tonic-gate 	if (cpi->cpi_xmaxeax & 0x80000000) {
8547c478bd9Sstevel@tonic-gate 
8557c478bd9Sstevel@tonic-gate 		if (cpi->cpi_xmaxeax > CPI_XMAXEAX_MAX)
8567c478bd9Sstevel@tonic-gate 			cpi->cpi_xmaxeax = CPI_XMAXEAX_MAX;
8577c478bd9Sstevel@tonic-gate 
8587c478bd9Sstevel@tonic-gate 		switch (cpi->cpi_vendor) {
8597c478bd9Sstevel@tonic-gate 		case X86_VENDOR_Intel:
8607c478bd9Sstevel@tonic-gate 		case X86_VENDOR_AMD:
8617c478bd9Sstevel@tonic-gate 			if (cpi->cpi_xmaxeax < 0x80000001)
8627c478bd9Sstevel@tonic-gate 				break;
8637c478bd9Sstevel@tonic-gate 			cp = &cpi->cpi_extd[1];
8648949bcd6Sandrei 			cp->cp_eax = 0x80000001;
8658949bcd6Sandrei 			(void) __cpuid_insn(cp);
866ae115bc7Smrj 
8677c478bd9Sstevel@tonic-gate 			if (cpi->cpi_vendor == X86_VENDOR_AMD &&
8687c478bd9Sstevel@tonic-gate 			    cpi->cpi_family == 5 &&
8697c478bd9Sstevel@tonic-gate 			    cpi->cpi_model == 6 &&
8707c478bd9Sstevel@tonic-gate 			    cpi->cpi_step == 6) {
8717c478bd9Sstevel@tonic-gate 				/*
8727c478bd9Sstevel@tonic-gate 				 * K6 model 6 uses bit 10 to indicate SYSC
8737c478bd9Sstevel@tonic-gate 				 * Later models use bit 11. Fix it here.
8747c478bd9Sstevel@tonic-gate 				 */
8757c478bd9Sstevel@tonic-gate 				if (cp->cp_edx & 0x400) {
8767c478bd9Sstevel@tonic-gate 					cp->cp_edx &= ~0x400;
8777c478bd9Sstevel@tonic-gate 					cp->cp_edx |= CPUID_AMD_EDX_SYSC;
8787c478bd9Sstevel@tonic-gate 				}
8797c478bd9Sstevel@tonic-gate 			}
8807c478bd9Sstevel@tonic-gate 
881ae115bc7Smrj 			platform_cpuid_mangle(cpi->cpi_vendor, 0x80000001, cp);
882ae115bc7Smrj 
8837c478bd9Sstevel@tonic-gate 			/*
8847c478bd9Sstevel@tonic-gate 			 * Compute the additions to the kernel's feature word.
8857c478bd9Sstevel@tonic-gate 			 */
8867c478bd9Sstevel@tonic-gate 			if (cp->cp_edx & CPUID_AMD_EDX_NX)
8877c478bd9Sstevel@tonic-gate 				feature |= X86_NX;
8887c478bd9Sstevel@tonic-gate 
889f8801251Skk208521 			if ((cpi->cpi_vendor == X86_VENDOR_AMD) &&
890f8801251Skk208521 			    (cpi->cpi_std[1].cp_edx & CPUID_INTC_EDX_FXSR) &&
891f8801251Skk208521 			    (cp->cp_ecx & CPUID_AMD_ECX_SSE4A))
892f8801251Skk208521 				feature |= X86_SSE4A;
893f8801251Skk208521 
8947c478bd9Sstevel@tonic-gate 			/*
895ae115bc7Smrj 			 * If both the HTT and CMP_LGCY bits are set,
8968949bcd6Sandrei 			 * then we're not actually HyperThreaded.  Read
8978949bcd6Sandrei 			 * "AMD CPUID Specification" for more details.
8987c478bd9Sstevel@tonic-gate 			 */
8997c478bd9Sstevel@tonic-gate 			if (cpi->cpi_vendor == X86_VENDOR_AMD &&
9008949bcd6Sandrei 			    (feature & X86_HTT) &&
901ae115bc7Smrj 			    (cp->cp_ecx & CPUID_AMD_ECX_CMP_LGCY)) {
9027c478bd9Sstevel@tonic-gate 				feature &= ~X86_HTT;
9038949bcd6Sandrei 				feature |= X86_CMP;
9048949bcd6Sandrei 			}
905ae115bc7Smrj #if defined(__amd64)
9067c478bd9Sstevel@tonic-gate 			/*
9077c478bd9Sstevel@tonic-gate 			 * It's really tricky to support syscall/sysret in
9087c478bd9Sstevel@tonic-gate 			 * the i386 kernel; we rely on sysenter/sysexit
9097c478bd9Sstevel@tonic-gate 			 * instead.  In the amd64 kernel, things are -way-
9107c478bd9Sstevel@tonic-gate 			 * better.
9117c478bd9Sstevel@tonic-gate 			 */
9127c478bd9Sstevel@tonic-gate 			if (cp->cp_edx & CPUID_AMD_EDX_SYSC)
9137c478bd9Sstevel@tonic-gate 				feature |= X86_ASYSC;
9147c478bd9Sstevel@tonic-gate 
9157c478bd9Sstevel@tonic-gate 			/*
9167c478bd9Sstevel@tonic-gate 			 * While we're thinking about system calls, note
9177c478bd9Sstevel@tonic-gate 			 * that AMD processors don't support sysenter
9187c478bd9Sstevel@tonic-gate 			 * in long mode at all, so don't try to program them.
9197c478bd9Sstevel@tonic-gate 			 */
9207c478bd9Sstevel@tonic-gate 			if (x86_vendor == X86_VENDOR_AMD)
9217c478bd9Sstevel@tonic-gate 				feature &= ~X86_SEP;
9227c478bd9Sstevel@tonic-gate #endif
923ae115bc7Smrj 			if (cp->cp_edx & CPUID_AMD_EDX_TSCP)
924ae115bc7Smrj 				feature |= X86_TSCP;
9257c478bd9Sstevel@tonic-gate 			break;
9267c478bd9Sstevel@tonic-gate 		default:
9277c478bd9Sstevel@tonic-gate 			break;
9287c478bd9Sstevel@tonic-gate 		}
9297c478bd9Sstevel@tonic-gate 
9308949bcd6Sandrei 		/*
9318949bcd6Sandrei 		 * Get CPUID data about processor cores and hyperthreads.
9328949bcd6Sandrei 		 */
9337c478bd9Sstevel@tonic-gate 		switch (cpi->cpi_vendor) {
9347c478bd9Sstevel@tonic-gate 		case X86_VENDOR_Intel:
9358949bcd6Sandrei 			if (cpi->cpi_maxeax >= 4) {
9368949bcd6Sandrei 				cp = &cpi->cpi_std[4];
9378949bcd6Sandrei 				cp->cp_eax = 4;
9388949bcd6Sandrei 				cp->cp_ecx = 0;
9398949bcd6Sandrei 				(void) __cpuid_insn(cp);
940ae115bc7Smrj 				platform_cpuid_mangle(cpi->cpi_vendor, 4, cp);
9418949bcd6Sandrei 			}
9428949bcd6Sandrei 			/*FALLTHROUGH*/
9437c478bd9Sstevel@tonic-gate 		case X86_VENDOR_AMD:
9447c478bd9Sstevel@tonic-gate 			if (cpi->cpi_xmaxeax < 0x80000008)
9457c478bd9Sstevel@tonic-gate 				break;
9467c478bd9Sstevel@tonic-gate 			cp = &cpi->cpi_extd[8];
9478949bcd6Sandrei 			cp->cp_eax = 0x80000008;
9488949bcd6Sandrei 			(void) __cpuid_insn(cp);
949ae115bc7Smrj 			platform_cpuid_mangle(cpi->cpi_vendor, 0x80000008, cp);
950ae115bc7Smrj 
9517c478bd9Sstevel@tonic-gate 			/*
9527c478bd9Sstevel@tonic-gate 			 * Virtual and physical address limits from
9537c478bd9Sstevel@tonic-gate 			 * cpuid override previously guessed values.
9547c478bd9Sstevel@tonic-gate 			 */
9557c478bd9Sstevel@tonic-gate 			cpi->cpi_pabits = BITX(cp->cp_eax, 7, 0);
9567c478bd9Sstevel@tonic-gate 			cpi->cpi_vabits = BITX(cp->cp_eax, 15, 8);
9577c478bd9Sstevel@tonic-gate 			break;
9587c478bd9Sstevel@tonic-gate 		default:
9597c478bd9Sstevel@tonic-gate 			break;
9607c478bd9Sstevel@tonic-gate 		}
9618949bcd6Sandrei 
962d129bde2Sesaxe 		/*
963d129bde2Sesaxe 		 * Derive the number of cores per chip
964d129bde2Sesaxe 		 */
9658949bcd6Sandrei 		switch (cpi->cpi_vendor) {
9668949bcd6Sandrei 		case X86_VENDOR_Intel:
9678949bcd6Sandrei 			if (cpi->cpi_maxeax < 4) {
9688949bcd6Sandrei 				cpi->cpi_ncore_per_chip = 1;
9698949bcd6Sandrei 				break;
9708949bcd6Sandrei 			} else {
9718949bcd6Sandrei 				cpi->cpi_ncore_per_chip =
9728949bcd6Sandrei 				    BITX((cpi)->cpi_std[4].cp_eax, 31, 26) + 1;
9738949bcd6Sandrei 			}
9748949bcd6Sandrei 			break;
9758949bcd6Sandrei 		case X86_VENDOR_AMD:
9768949bcd6Sandrei 			if (cpi->cpi_xmaxeax < 0x80000008) {
9778949bcd6Sandrei 				cpi->cpi_ncore_per_chip = 1;
9788949bcd6Sandrei 				break;
9798949bcd6Sandrei 			} else {
9808949bcd6Sandrei 				cpi->cpi_ncore_per_chip =
9818949bcd6Sandrei 				    BITX((cpi)->cpi_extd[8].cp_ecx, 7, 0) + 1;
9828949bcd6Sandrei 			}
9838949bcd6Sandrei 			break;
9848949bcd6Sandrei 		default:
9858949bcd6Sandrei 			cpi->cpi_ncore_per_chip = 1;
9868949bcd6Sandrei 			break;
9877c478bd9Sstevel@tonic-gate 		}
9888949bcd6Sandrei 	}
9898949bcd6Sandrei 
9908949bcd6Sandrei 	/*
9918949bcd6Sandrei 	 * If more than one core, then this processor is CMP.
9928949bcd6Sandrei 	 */
9938949bcd6Sandrei 	if (cpi->cpi_ncore_per_chip > 1)
9948949bcd6Sandrei 		feature |= X86_CMP;
995ae115bc7Smrj 
9968949bcd6Sandrei 	/*
9978949bcd6Sandrei 	 * If the number of cores is the same as the number
9988949bcd6Sandrei 	 * of CPUs, then we cannot have HyperThreading.
9998949bcd6Sandrei 	 */
10008949bcd6Sandrei 	if (cpi->cpi_ncpu_per_chip == cpi->cpi_ncore_per_chip)
10018949bcd6Sandrei 		feature &= ~X86_HTT;
10028949bcd6Sandrei 
10037c478bd9Sstevel@tonic-gate 	if ((feature & (X86_HTT | X86_CMP)) == 0) {
10048949bcd6Sandrei 		/*
10058949bcd6Sandrei 		 * Single-core single-threaded processors.
10068949bcd6Sandrei 		 */
10077c478bd9Sstevel@tonic-gate 		cpi->cpi_chipid = -1;
10087c478bd9Sstevel@tonic-gate 		cpi->cpi_clogid = 0;
10098949bcd6Sandrei 		cpi->cpi_coreid = cpu->cpu_id;
10107c478bd9Sstevel@tonic-gate 	} else if (cpi->cpi_ncpu_per_chip > 1) {
10118949bcd6Sandrei 		uint_t i;
10128949bcd6Sandrei 		uint_t chipid_shift = 0;
10138949bcd6Sandrei 		uint_t coreid_shift = 0;
10148949bcd6Sandrei 		uint_t apic_id = CPI_APIC_ID(cpi);
10157c478bd9Sstevel@tonic-gate 
10168949bcd6Sandrei 		for (i = 1; i < cpi->cpi_ncpu_per_chip; i <<= 1)
10178949bcd6Sandrei 			chipid_shift++;
10188949bcd6Sandrei 		cpi->cpi_chipid = apic_id >> chipid_shift;
10198949bcd6Sandrei 		cpi->cpi_clogid = apic_id & ((1 << chipid_shift) - 1);
10208949bcd6Sandrei 
10218949bcd6Sandrei 		if (cpi->cpi_vendor == X86_VENDOR_Intel) {
10228949bcd6Sandrei 			if (feature & X86_CMP) {
10238949bcd6Sandrei 				/*
10248949bcd6Sandrei 				 * Multi-core (and possibly multi-threaded)
10258949bcd6Sandrei 				 * processors.
10268949bcd6Sandrei 				 */
10278949bcd6Sandrei 				uint_t ncpu_per_core;
10288949bcd6Sandrei 				if (cpi->cpi_ncore_per_chip == 1)
10298949bcd6Sandrei 					ncpu_per_core = cpi->cpi_ncpu_per_chip;
10308949bcd6Sandrei 				else if (cpi->cpi_ncore_per_chip > 1)
10318949bcd6Sandrei 					ncpu_per_core = cpi->cpi_ncpu_per_chip /
10328949bcd6Sandrei 					    cpi->cpi_ncore_per_chip;
10338949bcd6Sandrei 				/*
10348949bcd6Sandrei 				 * 8bit APIC IDs on dual core Pentiums
10358949bcd6Sandrei 				 * look like this:
10368949bcd6Sandrei 				 *
10378949bcd6Sandrei 				 * +-----------------------+------+------+
10388949bcd6Sandrei 				 * | Physical Package ID   |  MC  |  HT  |
10398949bcd6Sandrei 				 * +-----------------------+------+------+
10408949bcd6Sandrei 				 * <------- chipid -------->
10418949bcd6Sandrei 				 * <------- coreid --------------->
10428949bcd6Sandrei 				 *			   <--- clogid -->
10438949bcd6Sandrei 				 *
10448949bcd6Sandrei 				 * Where the number of bits necessary to
10458949bcd6Sandrei 				 * represent MC and HT fields together equals
10468949bcd6Sandrei 				 * to the minimum number of bits necessary to
10478949bcd6Sandrei 				 * store the value of cpi->cpi_ncpu_per_chip.
10488949bcd6Sandrei 				 * Of those bits, the MC part uses the number
10498949bcd6Sandrei 				 * of bits necessary to store the value of
10508949bcd6Sandrei 				 * cpi->cpi_ncore_per_chip.
10518949bcd6Sandrei 				 */
10528949bcd6Sandrei 				for (i = 1; i < ncpu_per_core; i <<= 1)
10538949bcd6Sandrei 					coreid_shift++;
10543090b9a9Sandrei 				cpi->cpi_coreid = apic_id >> coreid_shift;
10558949bcd6Sandrei 			} else if (feature & X86_HTT) {
10568949bcd6Sandrei 				/*
10578949bcd6Sandrei 				 * Single-core multi-threaded processors.
10588949bcd6Sandrei 				 */
10598949bcd6Sandrei 				cpi->cpi_coreid = cpi->cpi_chipid;
10608949bcd6Sandrei 			}
10618949bcd6Sandrei 		} else if (cpi->cpi_vendor == X86_VENDOR_AMD) {
10628949bcd6Sandrei 			/*
10638949bcd6Sandrei 			 * AMD currently only has dual-core processors with
10648949bcd6Sandrei 			 * single-threaded cores.  If they ever release
10658949bcd6Sandrei 			 * multi-threaded processors, then this code
10668949bcd6Sandrei 			 * will have to be updated.
10678949bcd6Sandrei 			 */
10688949bcd6Sandrei 			cpi->cpi_coreid = cpu->cpu_id;
10698949bcd6Sandrei 		} else {
10708949bcd6Sandrei 			/*
10718949bcd6Sandrei 			 * All other processors are currently
10728949bcd6Sandrei 			 * assumed to have single cores.
10738949bcd6Sandrei 			 */
10748949bcd6Sandrei 			cpi->cpi_coreid = cpi->cpi_chipid;
10758949bcd6Sandrei 		}
10767c478bd9Sstevel@tonic-gate 	}
10777c478bd9Sstevel@tonic-gate 
10788a40a695Sgavinm 	/*
10798a40a695Sgavinm 	 * Synthesize chip "revision" and socket type
10808a40a695Sgavinm 	 */
10818a40a695Sgavinm 	synth_info(cpi);
10828a40a695Sgavinm 
10837c478bd9Sstevel@tonic-gate pass1_done:
10847c478bd9Sstevel@tonic-gate 	cpi->cpi_pass = 1;
10857c478bd9Sstevel@tonic-gate 	return (feature);
10867c478bd9Sstevel@tonic-gate }
10877c478bd9Sstevel@tonic-gate 
10887c478bd9Sstevel@tonic-gate /*
10897c478bd9Sstevel@tonic-gate  * Make copies of the cpuid table entries we depend on, in
10907c478bd9Sstevel@tonic-gate  * part for ease of parsing now, in part so that we have only
10917c478bd9Sstevel@tonic-gate  * one place to correct any of it, in part for ease of
10927c478bd9Sstevel@tonic-gate  * later export to userland, and in part so we can look at
10937c478bd9Sstevel@tonic-gate  * this stuff in a crash dump.
10947c478bd9Sstevel@tonic-gate  */
10957c478bd9Sstevel@tonic-gate 
10967c478bd9Sstevel@tonic-gate /*ARGSUSED*/
10977c478bd9Sstevel@tonic-gate void
10987c478bd9Sstevel@tonic-gate cpuid_pass2(cpu_t *cpu)
10997c478bd9Sstevel@tonic-gate {
11007c478bd9Sstevel@tonic-gate 	uint_t n, nmax;
11017c478bd9Sstevel@tonic-gate 	int i;
11028949bcd6Sandrei 	struct cpuid_regs *cp;
11037c478bd9Sstevel@tonic-gate 	uint8_t *dp;
11047c478bd9Sstevel@tonic-gate 	uint32_t *iptr;
11057c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi = cpu->cpu_m.mcpu_cpi;
11067c478bd9Sstevel@tonic-gate 
11077c478bd9Sstevel@tonic-gate 	ASSERT(cpi->cpi_pass == 1);
11087c478bd9Sstevel@tonic-gate 
11097c478bd9Sstevel@tonic-gate 	if (cpi->cpi_maxeax < 1)
11107c478bd9Sstevel@tonic-gate 		goto pass2_done;
11117c478bd9Sstevel@tonic-gate 
11127c478bd9Sstevel@tonic-gate 	if ((nmax = cpi->cpi_maxeax + 1) > NMAX_CPI_STD)
11137c478bd9Sstevel@tonic-gate 		nmax = NMAX_CPI_STD;
11147c478bd9Sstevel@tonic-gate 	/*
11157c478bd9Sstevel@tonic-gate 	 * (We already handled n == 0 and n == 1 in pass 1)
11167c478bd9Sstevel@tonic-gate 	 */
11177c478bd9Sstevel@tonic-gate 	for (n = 2, cp = &cpi->cpi_std[2]; n < nmax; n++, cp++) {
11188949bcd6Sandrei 		cp->cp_eax = n;
1119d129bde2Sesaxe 
1120d129bde2Sesaxe 		/*
1121d129bde2Sesaxe 		 * CPUID function 4 expects %ecx to be initialized
1122d129bde2Sesaxe 		 * with an index which indicates which cache to return
1123d129bde2Sesaxe 		 * information about. The OS is expected to call function 4
1124d129bde2Sesaxe 		 * with %ecx set to 0, 1, 2, ... until it returns with
1125d129bde2Sesaxe 		 * EAX[4:0] set to 0, which indicates there are no more
1126d129bde2Sesaxe 		 * caches.
1127d129bde2Sesaxe 		 *
1128d129bde2Sesaxe 		 * Here, populate cpi_std[4] with the information returned by
1129d129bde2Sesaxe 		 * function 4 when %ecx == 0, and do the rest in cpuid_pass3()
1130d129bde2Sesaxe 		 * when dynamic memory allocation becomes available.
1131d129bde2Sesaxe 		 *
1132d129bde2Sesaxe 		 * Note: we need to explicitly initialize %ecx here, since
1133d129bde2Sesaxe 		 * function 4 may have been previously invoked.
1134d129bde2Sesaxe 		 */
1135d129bde2Sesaxe 		if (n == 4)
1136d129bde2Sesaxe 			cp->cp_ecx = 0;
1137d129bde2Sesaxe 
11388949bcd6Sandrei 		(void) __cpuid_insn(cp);
1139ae115bc7Smrj 		platform_cpuid_mangle(cpi->cpi_vendor, n, cp);
11407c478bd9Sstevel@tonic-gate 		switch (n) {
11417c478bd9Sstevel@tonic-gate 		case 2:
11427c478bd9Sstevel@tonic-gate 			/*
11437c478bd9Sstevel@tonic-gate 			 * "the lower 8 bits of the %eax register
11447c478bd9Sstevel@tonic-gate 			 * contain a value that identifies the number
11457c478bd9Sstevel@tonic-gate 			 * of times the cpuid [instruction] has to be
11467c478bd9Sstevel@tonic-gate 			 * executed to obtain a complete image of the
11477c478bd9Sstevel@tonic-gate 			 * processor's caching systems."
11487c478bd9Sstevel@tonic-gate 			 *
11497c478bd9Sstevel@tonic-gate 			 * How *do* they make this stuff up?
11507c478bd9Sstevel@tonic-gate 			 */
11517c478bd9Sstevel@tonic-gate 			cpi->cpi_ncache = sizeof (*cp) *
11527c478bd9Sstevel@tonic-gate 			    BITX(cp->cp_eax, 7, 0);
11537c478bd9Sstevel@tonic-gate 			if (cpi->cpi_ncache == 0)
11547c478bd9Sstevel@tonic-gate 				break;
11557c478bd9Sstevel@tonic-gate 			cpi->cpi_ncache--;	/* skip count byte */
11567c478bd9Sstevel@tonic-gate 
11577c478bd9Sstevel@tonic-gate 			/*
11587c478bd9Sstevel@tonic-gate 			 * Well, for now, rather than attempt to implement
11597c478bd9Sstevel@tonic-gate 			 * this slightly dubious algorithm, we just look
11607c478bd9Sstevel@tonic-gate 			 * at the first 15 ..
11617c478bd9Sstevel@tonic-gate 			 */
11627c478bd9Sstevel@tonic-gate 			if (cpi->cpi_ncache > (sizeof (*cp) - 1))
11637c478bd9Sstevel@tonic-gate 				cpi->cpi_ncache = sizeof (*cp) - 1;
11647c478bd9Sstevel@tonic-gate 
11657c478bd9Sstevel@tonic-gate 			dp = cpi->cpi_cacheinfo;
11667c478bd9Sstevel@tonic-gate 			if (BITX(cp->cp_eax, 31, 31) == 0) {
11677c478bd9Sstevel@tonic-gate 				uint8_t *p = (void *)&cp->cp_eax;
11687c478bd9Sstevel@tonic-gate 				for (i = 1; i < 3; i++)
11697c478bd9Sstevel@tonic-gate 					if (p[i] != 0)
11707c478bd9Sstevel@tonic-gate 						*dp++ = p[i];
11717c478bd9Sstevel@tonic-gate 			}
11727c478bd9Sstevel@tonic-gate 			if (BITX(cp->cp_ebx, 31, 31) == 0) {
11737c478bd9Sstevel@tonic-gate 				uint8_t *p = (void *)&cp->cp_ebx;
11747c478bd9Sstevel@tonic-gate 				for (i = 0; i < 4; i++)
11757c478bd9Sstevel@tonic-gate 					if (p[i] != 0)
11767c478bd9Sstevel@tonic-gate 						*dp++ = p[i];
11777c478bd9Sstevel@tonic-gate 			}
11787c478bd9Sstevel@tonic-gate 			if (BITX(cp->cp_ecx, 31, 31) == 0) {
11797c478bd9Sstevel@tonic-gate 				uint8_t *p = (void *)&cp->cp_ecx;
11807c478bd9Sstevel@tonic-gate 				for (i = 0; i < 4; i++)
11817c478bd9Sstevel@tonic-gate 					if (p[i] != 0)
11827c478bd9Sstevel@tonic-gate 						*dp++ = p[i];
11837c478bd9Sstevel@tonic-gate 			}
11847c478bd9Sstevel@tonic-gate 			if (BITX(cp->cp_edx, 31, 31) == 0) {
11857c478bd9Sstevel@tonic-gate 				uint8_t *p = (void *)&cp->cp_edx;
11867c478bd9Sstevel@tonic-gate 				for (i = 0; i < 4; i++)
11877c478bd9Sstevel@tonic-gate 					if (p[i] != 0)
11887c478bd9Sstevel@tonic-gate 						*dp++ = p[i];
11897c478bd9Sstevel@tonic-gate 			}
11907c478bd9Sstevel@tonic-gate 			break;
1191f98fbcecSbholler 
11927c478bd9Sstevel@tonic-gate 		case 3:	/* Processor serial number, if PSN supported */
1193f98fbcecSbholler 			break;
1194f98fbcecSbholler 
11957c478bd9Sstevel@tonic-gate 		case 4:	/* Deterministic cache parameters */
1196f98fbcecSbholler 			break;
1197f98fbcecSbholler 
11987c478bd9Sstevel@tonic-gate 		case 5:	/* Monitor/Mwait parameters */
1199f98fbcecSbholler 
1200f98fbcecSbholler 			/*
1201f98fbcecSbholler 			 * check cpi_mwait.support which was set in cpuid_pass1
1202f98fbcecSbholler 			 */
1203f98fbcecSbholler 			if (!(cpi->cpi_mwait.support & MWAIT_SUPPORT))
1204f98fbcecSbholler 				break;
1205f98fbcecSbholler 
1206f98fbcecSbholler 			cpi->cpi_mwait.mon_min = (size_t)MWAIT_SIZE_MIN(cpi);
1207f98fbcecSbholler 			cpi->cpi_mwait.mon_max = (size_t)MWAIT_SIZE_MAX(cpi);
1208f98fbcecSbholler 			if (MWAIT_EXTENSION(cpi)) {
1209f98fbcecSbholler 				cpi->cpi_mwait.support |= MWAIT_EXTENSIONS;
1210f98fbcecSbholler 				if (MWAIT_INT_ENABLE(cpi))
1211f98fbcecSbholler 					cpi->cpi_mwait.support |=
1212f98fbcecSbholler 					    MWAIT_ECX_INT_ENABLE;
1213f98fbcecSbholler 			}
1214f98fbcecSbholler 			break;
12157c478bd9Sstevel@tonic-gate 		default:
12167c478bd9Sstevel@tonic-gate 			break;
12177c478bd9Sstevel@tonic-gate 		}
12187c478bd9Sstevel@tonic-gate 	}
12197c478bd9Sstevel@tonic-gate 
12207c478bd9Sstevel@tonic-gate 	if ((cpi->cpi_xmaxeax & 0x80000000) == 0)
12217c478bd9Sstevel@tonic-gate 		goto pass2_done;
12227c478bd9Sstevel@tonic-gate 
12237c478bd9Sstevel@tonic-gate 	if ((nmax = cpi->cpi_xmaxeax - 0x80000000 + 1) > NMAX_CPI_EXTD)
12247c478bd9Sstevel@tonic-gate 		nmax = NMAX_CPI_EXTD;
12257c478bd9Sstevel@tonic-gate 	/*
12267c478bd9Sstevel@tonic-gate 	 * Copy the extended properties, fixing them as we go.
12277c478bd9Sstevel@tonic-gate 	 * (We already handled n == 0 and n == 1 in pass 1)
12287c478bd9Sstevel@tonic-gate 	 */
12297c478bd9Sstevel@tonic-gate 	iptr = (void *)cpi->cpi_brandstr;
12307c478bd9Sstevel@tonic-gate 	for (n = 2, cp = &cpi->cpi_extd[2]; n < nmax; cp++, n++) {
12318949bcd6Sandrei 		cp->cp_eax = 0x80000000 + n;
12328949bcd6Sandrei 		(void) __cpuid_insn(cp);
1233ae115bc7Smrj 		platform_cpuid_mangle(cpi->cpi_vendor, 0x80000000 + n, cp);
12347c478bd9Sstevel@tonic-gate 		switch (n) {
12357c478bd9Sstevel@tonic-gate 		case 2:
12367c478bd9Sstevel@tonic-gate 		case 3:
12377c478bd9Sstevel@tonic-gate 		case 4:
12387c478bd9Sstevel@tonic-gate 			/*
12397c478bd9Sstevel@tonic-gate 			 * Extract the brand string
12407c478bd9Sstevel@tonic-gate 			 */
12417c478bd9Sstevel@tonic-gate 			*iptr++ = cp->cp_eax;
12427c478bd9Sstevel@tonic-gate 			*iptr++ = cp->cp_ebx;
12437c478bd9Sstevel@tonic-gate 			*iptr++ = cp->cp_ecx;
12447c478bd9Sstevel@tonic-gate 			*iptr++ = cp->cp_edx;
12457c478bd9Sstevel@tonic-gate 			break;
12467c478bd9Sstevel@tonic-gate 		case 5:
12477c478bd9Sstevel@tonic-gate 			switch (cpi->cpi_vendor) {
12487c478bd9Sstevel@tonic-gate 			case X86_VENDOR_AMD:
12497c478bd9Sstevel@tonic-gate 				/*
12507c478bd9Sstevel@tonic-gate 				 * The Athlon and Duron were the first
12517c478bd9Sstevel@tonic-gate 				 * parts to report the sizes of the
12527c478bd9Sstevel@tonic-gate 				 * TLB for large pages. Before then,
12537c478bd9Sstevel@tonic-gate 				 * we don't trust the data.
12547c478bd9Sstevel@tonic-gate 				 */
12557c478bd9Sstevel@tonic-gate 				if (cpi->cpi_family < 6 ||
12567c478bd9Sstevel@tonic-gate 				    (cpi->cpi_family == 6 &&
12577c478bd9Sstevel@tonic-gate 				    cpi->cpi_model < 1))
12587c478bd9Sstevel@tonic-gate 					cp->cp_eax = 0;
12597c478bd9Sstevel@tonic-gate 				break;
12607c478bd9Sstevel@tonic-gate 			default:
12617c478bd9Sstevel@tonic-gate 				break;
12627c478bd9Sstevel@tonic-gate 			}
12637c478bd9Sstevel@tonic-gate 			break;
12647c478bd9Sstevel@tonic-gate 		case 6:
12657c478bd9Sstevel@tonic-gate 			switch (cpi->cpi_vendor) {
12667c478bd9Sstevel@tonic-gate 			case X86_VENDOR_AMD:
12677c478bd9Sstevel@tonic-gate 				/*
12687c478bd9Sstevel@tonic-gate 				 * The Athlon and Duron were the first
12697c478bd9Sstevel@tonic-gate 				 * AMD parts with L2 TLB's.
12707c478bd9Sstevel@tonic-gate 				 * Before then, don't trust the data.
12717c478bd9Sstevel@tonic-gate 				 */
12727c478bd9Sstevel@tonic-gate 				if (cpi->cpi_family < 6 ||
12737c478bd9Sstevel@tonic-gate 				    cpi->cpi_family == 6 &&
12747c478bd9Sstevel@tonic-gate 				    cpi->cpi_model < 1)
12757c478bd9Sstevel@tonic-gate 					cp->cp_eax = cp->cp_ebx = 0;
12767c478bd9Sstevel@tonic-gate 				/*
12777c478bd9Sstevel@tonic-gate 				 * AMD Duron rev A0 reports L2
12787c478bd9Sstevel@tonic-gate 				 * cache size incorrectly as 1K
12797c478bd9Sstevel@tonic-gate 				 * when it is really 64K
12807c478bd9Sstevel@tonic-gate 				 */
12817c478bd9Sstevel@tonic-gate 				if (cpi->cpi_family == 6 &&
12827c478bd9Sstevel@tonic-gate 				    cpi->cpi_model == 3 &&
12837c478bd9Sstevel@tonic-gate 				    cpi->cpi_step == 0) {
12847c478bd9Sstevel@tonic-gate 					cp->cp_ecx &= 0xffff;
12857c478bd9Sstevel@tonic-gate 					cp->cp_ecx |= 0x400000;
12867c478bd9Sstevel@tonic-gate 				}
12877c478bd9Sstevel@tonic-gate 				break;
12887c478bd9Sstevel@tonic-gate 			case X86_VENDOR_Cyrix:	/* VIA C3 */
12897c478bd9Sstevel@tonic-gate 				/*
12907c478bd9Sstevel@tonic-gate 				 * VIA C3 processors are a bit messed
12917c478bd9Sstevel@tonic-gate 				 * up w.r.t. encoding cache sizes in %ecx
12927c478bd9Sstevel@tonic-gate 				 */
12937c478bd9Sstevel@tonic-gate 				if (cpi->cpi_family != 6)
12947c478bd9Sstevel@tonic-gate 					break;
12957c478bd9Sstevel@tonic-gate 				/*
12967c478bd9Sstevel@tonic-gate 				 * model 7 and 8 were incorrectly encoded
12977c478bd9Sstevel@tonic-gate 				 *
12987c478bd9Sstevel@tonic-gate 				 * xxx is model 8 really broken?
12997c478bd9Sstevel@tonic-gate 				 */
13007c478bd9Sstevel@tonic-gate 				if (cpi->cpi_model == 7 ||
13017c478bd9Sstevel@tonic-gate 				    cpi->cpi_model == 8)
13027c478bd9Sstevel@tonic-gate 					cp->cp_ecx =
13037c478bd9Sstevel@tonic-gate 					    BITX(cp->cp_ecx, 31, 24) << 16 |
13047c478bd9Sstevel@tonic-gate 					    BITX(cp->cp_ecx, 23, 16) << 12 |
13057c478bd9Sstevel@tonic-gate 					    BITX(cp->cp_ecx, 15, 8) << 8 |
13067c478bd9Sstevel@tonic-gate 					    BITX(cp->cp_ecx, 7, 0);
13077c478bd9Sstevel@tonic-gate 				/*
13087c478bd9Sstevel@tonic-gate 				 * model 9 stepping 1 has wrong associativity
13097c478bd9Sstevel@tonic-gate 				 */
13107c478bd9Sstevel@tonic-gate 				if (cpi->cpi_model == 9 && cpi->cpi_step == 1)
13117c478bd9Sstevel@tonic-gate 					cp->cp_ecx |= 8 << 12;
13127c478bd9Sstevel@tonic-gate 				break;
13137c478bd9Sstevel@tonic-gate 			case X86_VENDOR_Intel:
13147c478bd9Sstevel@tonic-gate 				/*
13157c478bd9Sstevel@tonic-gate 				 * Extended L2 Cache features function.
13167c478bd9Sstevel@tonic-gate 				 * First appeared on Prescott.
13177c478bd9Sstevel@tonic-gate 				 */
13187c478bd9Sstevel@tonic-gate 			default:
13197c478bd9Sstevel@tonic-gate 				break;
13207c478bd9Sstevel@tonic-gate 			}
13217c478bd9Sstevel@tonic-gate 			break;
13227c478bd9Sstevel@tonic-gate 		default:
13237c478bd9Sstevel@tonic-gate 			break;
13247c478bd9Sstevel@tonic-gate 		}
13257c478bd9Sstevel@tonic-gate 	}
13267c478bd9Sstevel@tonic-gate 
13277c478bd9Sstevel@tonic-gate pass2_done:
13287c478bd9Sstevel@tonic-gate 	cpi->cpi_pass = 2;
13297c478bd9Sstevel@tonic-gate }
13307c478bd9Sstevel@tonic-gate 
13317c478bd9Sstevel@tonic-gate static const char *
13327c478bd9Sstevel@tonic-gate intel_cpubrand(const struct cpuid_info *cpi)
13337c478bd9Sstevel@tonic-gate {
13347c478bd9Sstevel@tonic-gate 	int i;
13357c478bd9Sstevel@tonic-gate 
13367c478bd9Sstevel@tonic-gate 	if ((x86_feature & X86_CPUID) == 0 ||
13377c478bd9Sstevel@tonic-gate 	    cpi->cpi_maxeax < 1 || cpi->cpi_family < 5)
13387c478bd9Sstevel@tonic-gate 		return ("i486");
13397c478bd9Sstevel@tonic-gate 
13407c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_family) {
13417c478bd9Sstevel@tonic-gate 	case 5:
13427c478bd9Sstevel@tonic-gate 		return ("Intel Pentium(r)");
13437c478bd9Sstevel@tonic-gate 	case 6:
13447c478bd9Sstevel@tonic-gate 		switch (cpi->cpi_model) {
13457c478bd9Sstevel@tonic-gate 			uint_t celeron, xeon;
13468949bcd6Sandrei 			const struct cpuid_regs *cp;
13477c478bd9Sstevel@tonic-gate 		case 0:
13487c478bd9Sstevel@tonic-gate 		case 1:
13497c478bd9Sstevel@tonic-gate 		case 2:
13507c478bd9Sstevel@tonic-gate 			return ("Intel Pentium(r) Pro");
13517c478bd9Sstevel@tonic-gate 		case 3:
13527c478bd9Sstevel@tonic-gate 		case 4:
13537c478bd9Sstevel@tonic-gate 			return ("Intel Pentium(r) II");
13547c478bd9Sstevel@tonic-gate 		case 6:
13557c478bd9Sstevel@tonic-gate 			return ("Intel Celeron(r)");
13567c478bd9Sstevel@tonic-gate 		case 5:
13577c478bd9Sstevel@tonic-gate 		case 7:
13587c478bd9Sstevel@tonic-gate 			celeron = xeon = 0;
13597c478bd9Sstevel@tonic-gate 			cp = &cpi->cpi_std[2];	/* cache info */
13607c478bd9Sstevel@tonic-gate 
13617c478bd9Sstevel@tonic-gate 			for (i = 1; i < 3; i++) {
13627c478bd9Sstevel@tonic-gate 				uint_t tmp;
13637c478bd9Sstevel@tonic-gate 
13647c478bd9Sstevel@tonic-gate 				tmp = (cp->cp_eax >> (8 * i)) & 0xff;
13657c478bd9Sstevel@tonic-gate 				if (tmp == 0x40)
13667c478bd9Sstevel@tonic-gate 					celeron++;
13677c478bd9Sstevel@tonic-gate 				if (tmp >= 0x44 && tmp <= 0x45)
13687c478bd9Sstevel@tonic-gate 					xeon++;
13697c478bd9Sstevel@tonic-gate 			}
13707c478bd9Sstevel@tonic-gate 
13717c478bd9Sstevel@tonic-gate 			for (i = 0; i < 2; i++) {
13727c478bd9Sstevel@tonic-gate 				uint_t tmp;
13737c478bd9Sstevel@tonic-gate 
13747c478bd9Sstevel@tonic-gate 				tmp = (cp->cp_ebx >> (8 * i)) & 0xff;
13757c478bd9Sstevel@tonic-gate 				if (tmp == 0x40)
13767c478bd9Sstevel@tonic-gate 					celeron++;
13777c478bd9Sstevel@tonic-gate 				else if (tmp >= 0x44 && tmp <= 0x45)
13787c478bd9Sstevel@tonic-gate 					xeon++;
13797c478bd9Sstevel@tonic-gate 			}
13807c478bd9Sstevel@tonic-gate 
13817c478bd9Sstevel@tonic-gate 			for (i = 0; i < 4; i++) {
13827c478bd9Sstevel@tonic-gate 				uint_t tmp;
13837c478bd9Sstevel@tonic-gate 
13847c478bd9Sstevel@tonic-gate 				tmp = (cp->cp_ecx >> (8 * i)) & 0xff;
13857c478bd9Sstevel@tonic-gate 				if (tmp == 0x40)
13867c478bd9Sstevel@tonic-gate 					celeron++;
13877c478bd9Sstevel@tonic-gate 				else if (tmp >= 0x44 && tmp <= 0x45)
13887c478bd9Sstevel@tonic-gate 					xeon++;
13897c478bd9Sstevel@tonic-gate 			}
13907c478bd9Sstevel@tonic-gate 
13917c478bd9Sstevel@tonic-gate 			for (i = 0; i < 4; i++) {
13927c478bd9Sstevel@tonic-gate 				uint_t tmp;
13937c478bd9Sstevel@tonic-gate 
13947c478bd9Sstevel@tonic-gate 				tmp = (cp->cp_edx >> (8 * i)) & 0xff;
13957c478bd9Sstevel@tonic-gate 				if (tmp == 0x40)
13967c478bd9Sstevel@tonic-gate 					celeron++;
13977c478bd9Sstevel@tonic-gate 				else if (tmp >= 0x44 && tmp <= 0x45)
13987c478bd9Sstevel@tonic-gate 					xeon++;
13997c478bd9Sstevel@tonic-gate 			}
14007c478bd9Sstevel@tonic-gate 
14017c478bd9Sstevel@tonic-gate 			if (celeron)
14027c478bd9Sstevel@tonic-gate 				return ("Intel Celeron(r)");
14037c478bd9Sstevel@tonic-gate 			if (xeon)
14047c478bd9Sstevel@tonic-gate 				return (cpi->cpi_model == 5 ?
14057c478bd9Sstevel@tonic-gate 				    "Intel Pentium(r) II Xeon(tm)" :
14067c478bd9Sstevel@tonic-gate 				    "Intel Pentium(r) III Xeon(tm)");
14077c478bd9Sstevel@tonic-gate 			return (cpi->cpi_model == 5 ?
14087c478bd9Sstevel@tonic-gate 			    "Intel Pentium(r) II or Pentium(r) II Xeon(tm)" :
14097c478bd9Sstevel@tonic-gate 			    "Intel Pentium(r) III or Pentium(r) III Xeon(tm)");
14107c478bd9Sstevel@tonic-gate 		default:
14117c478bd9Sstevel@tonic-gate 			break;
14127c478bd9Sstevel@tonic-gate 		}
14137c478bd9Sstevel@tonic-gate 	default:
14147c478bd9Sstevel@tonic-gate 		break;
14157c478bd9Sstevel@tonic-gate 	}
14167c478bd9Sstevel@tonic-gate 
14175ff02082Sdmick 	/* BrandID is present if the field is nonzero */
14185ff02082Sdmick 	if (cpi->cpi_brandid != 0) {
14197c478bd9Sstevel@tonic-gate 		static const struct {
14207c478bd9Sstevel@tonic-gate 			uint_t bt_bid;
14217c478bd9Sstevel@tonic-gate 			const char *bt_str;
14227c478bd9Sstevel@tonic-gate 		} brand_tbl[] = {
14237c478bd9Sstevel@tonic-gate 			{ 0x1,	"Intel(r) Celeron(r)" },
14247c478bd9Sstevel@tonic-gate 			{ 0x2,	"Intel(r) Pentium(r) III" },
14257c478bd9Sstevel@tonic-gate 			{ 0x3,	"Intel(r) Pentium(r) III Xeon(tm)" },
14267c478bd9Sstevel@tonic-gate 			{ 0x4,	"Intel(r) Pentium(r) III" },
14277c478bd9Sstevel@tonic-gate 			{ 0x6,	"Mobile Intel(r) Pentium(r) III" },
14287c478bd9Sstevel@tonic-gate 			{ 0x7,	"Mobile Intel(r) Celeron(r)" },
14297c478bd9Sstevel@tonic-gate 			{ 0x8,	"Intel(r) Pentium(r) 4" },
14307c478bd9Sstevel@tonic-gate 			{ 0x9,	"Intel(r) Pentium(r) 4" },
14317c478bd9Sstevel@tonic-gate 			{ 0xa,	"Intel(r) Celeron(r)" },
14327c478bd9Sstevel@tonic-gate 			{ 0xb,	"Intel(r) Xeon(tm)" },
14337c478bd9Sstevel@tonic-gate 			{ 0xc,	"Intel(r) Xeon(tm) MP" },
14347c478bd9Sstevel@tonic-gate 			{ 0xe,	"Mobile Intel(r) Pentium(r) 4" },
14355ff02082Sdmick 			{ 0xf,	"Mobile Intel(r) Celeron(r)" },
14365ff02082Sdmick 			{ 0x11, "Mobile Genuine Intel(r)" },
14375ff02082Sdmick 			{ 0x12, "Intel(r) Celeron(r) M" },
14385ff02082Sdmick 			{ 0x13, "Mobile Intel(r) Celeron(r)" },
14395ff02082Sdmick 			{ 0x14, "Intel(r) Celeron(r)" },
14405ff02082Sdmick 			{ 0x15, "Mobile Genuine Intel(r)" },
14415ff02082Sdmick 			{ 0x16,	"Intel(r) Pentium(r) M" },
14425ff02082Sdmick 			{ 0x17, "Mobile Intel(r) Celeron(r)" }
14437c478bd9Sstevel@tonic-gate 		};
14447c478bd9Sstevel@tonic-gate 		uint_t btblmax = sizeof (brand_tbl) / sizeof (brand_tbl[0]);
14457c478bd9Sstevel@tonic-gate 		uint_t sgn;
14467c478bd9Sstevel@tonic-gate 
14477c478bd9Sstevel@tonic-gate 		sgn = (cpi->cpi_family << 8) |
14487c478bd9Sstevel@tonic-gate 		    (cpi->cpi_model << 4) | cpi->cpi_step;
14497c478bd9Sstevel@tonic-gate 
14507c478bd9Sstevel@tonic-gate 		for (i = 0; i < btblmax; i++)
14517c478bd9Sstevel@tonic-gate 			if (brand_tbl[i].bt_bid == cpi->cpi_brandid)
14527c478bd9Sstevel@tonic-gate 				break;
14537c478bd9Sstevel@tonic-gate 		if (i < btblmax) {
14547c478bd9Sstevel@tonic-gate 			if (sgn == 0x6b1 && cpi->cpi_brandid == 3)
14557c478bd9Sstevel@tonic-gate 				return ("Intel(r) Celeron(r)");
14567c478bd9Sstevel@tonic-gate 			if (sgn < 0xf13 && cpi->cpi_brandid == 0xb)
14577c478bd9Sstevel@tonic-gate 				return ("Intel(r) Xeon(tm) MP");
14587c478bd9Sstevel@tonic-gate 			if (sgn < 0xf13 && cpi->cpi_brandid == 0xe)
14597c478bd9Sstevel@tonic-gate 				return ("Intel(r) Xeon(tm)");
14607c478bd9Sstevel@tonic-gate 			return (brand_tbl[i].bt_str);
14617c478bd9Sstevel@tonic-gate 		}
14627c478bd9Sstevel@tonic-gate 	}
14637c478bd9Sstevel@tonic-gate 
14647c478bd9Sstevel@tonic-gate 	return (NULL);
14657c478bd9Sstevel@tonic-gate }
14667c478bd9Sstevel@tonic-gate 
14677c478bd9Sstevel@tonic-gate static const char *
14687c478bd9Sstevel@tonic-gate amd_cpubrand(const struct cpuid_info *cpi)
14697c478bd9Sstevel@tonic-gate {
14707c478bd9Sstevel@tonic-gate 	if ((x86_feature & X86_CPUID) == 0 ||
14717c478bd9Sstevel@tonic-gate 	    cpi->cpi_maxeax < 1 || cpi->cpi_family < 5)
14727c478bd9Sstevel@tonic-gate 		return ("i486 compatible");
14737c478bd9Sstevel@tonic-gate 
14747c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_family) {
14757c478bd9Sstevel@tonic-gate 	case 5:
14767c478bd9Sstevel@tonic-gate 		switch (cpi->cpi_model) {
14777c478bd9Sstevel@tonic-gate 		case 0:
14787c478bd9Sstevel@tonic-gate 		case 1:
14797c478bd9Sstevel@tonic-gate 		case 2:
14807c478bd9Sstevel@tonic-gate 		case 3:
14817c478bd9Sstevel@tonic-gate 		case 4:
14827c478bd9Sstevel@tonic-gate 		case 5:
14837c478bd9Sstevel@tonic-gate 			return ("AMD-K5(r)");
14847c478bd9Sstevel@tonic-gate 		case 6:
14857c478bd9Sstevel@tonic-gate 		case 7:
14867c478bd9Sstevel@tonic-gate 			return ("AMD-K6(r)");
14877c478bd9Sstevel@tonic-gate 		case 8:
14887c478bd9Sstevel@tonic-gate 			return ("AMD-K6(r)-2");
14897c478bd9Sstevel@tonic-gate 		case 9:
14907c478bd9Sstevel@tonic-gate 			return ("AMD-K6(r)-III");
14917c478bd9Sstevel@tonic-gate 		default:
14927c478bd9Sstevel@tonic-gate 			return ("AMD (family 5)");
14937c478bd9Sstevel@tonic-gate 		}
14947c478bd9Sstevel@tonic-gate 	case 6:
14957c478bd9Sstevel@tonic-gate 		switch (cpi->cpi_model) {
14967c478bd9Sstevel@tonic-gate 		case 1:
14977c478bd9Sstevel@tonic-gate 			return ("AMD-K7(tm)");
14987c478bd9Sstevel@tonic-gate 		case 0:
14997c478bd9Sstevel@tonic-gate 		case 2:
15007c478bd9Sstevel@tonic-gate 		case 4:
15017c478bd9Sstevel@tonic-gate 			return ("AMD Athlon(tm)");
15027c478bd9Sstevel@tonic-gate 		case 3:
15037c478bd9Sstevel@tonic-gate 		case 7:
15047c478bd9Sstevel@tonic-gate 			return ("AMD Duron(tm)");
15057c478bd9Sstevel@tonic-gate 		case 6:
15067c478bd9Sstevel@tonic-gate 		case 8:
15077c478bd9Sstevel@tonic-gate 		case 10:
15087c478bd9Sstevel@tonic-gate 			/*
15097c478bd9Sstevel@tonic-gate 			 * Use the L2 cache size to distinguish
15107c478bd9Sstevel@tonic-gate 			 */
15117c478bd9Sstevel@tonic-gate 			return ((cpi->cpi_extd[6].cp_ecx >> 16) >= 256 ?
15127c478bd9Sstevel@tonic-gate 			    "AMD Athlon(tm)" : "AMD Duron(tm)");
15137c478bd9Sstevel@tonic-gate 		default:
15147c478bd9Sstevel@tonic-gate 			return ("AMD (family 6)");
15157c478bd9Sstevel@tonic-gate 		}
15167c478bd9Sstevel@tonic-gate 	default:
15177c478bd9Sstevel@tonic-gate 		break;
15187c478bd9Sstevel@tonic-gate 	}
15197c478bd9Sstevel@tonic-gate 
15207c478bd9Sstevel@tonic-gate 	if (cpi->cpi_family == 0xf && cpi->cpi_model == 5 &&
15217c478bd9Sstevel@tonic-gate 	    cpi->cpi_brandid != 0) {
15227c478bd9Sstevel@tonic-gate 		switch (BITX(cpi->cpi_brandid, 7, 5)) {
15237c478bd9Sstevel@tonic-gate 		case 3:
15247c478bd9Sstevel@tonic-gate 			return ("AMD Opteron(tm) UP 1xx");
15257c478bd9Sstevel@tonic-gate 		case 4:
15267c478bd9Sstevel@tonic-gate 			return ("AMD Opteron(tm) DP 2xx");
15277c478bd9Sstevel@tonic-gate 		case 5:
15287c478bd9Sstevel@tonic-gate 			return ("AMD Opteron(tm) MP 8xx");
15297c478bd9Sstevel@tonic-gate 		default:
15307c478bd9Sstevel@tonic-gate 			return ("AMD Opteron(tm)");
15317c478bd9Sstevel@tonic-gate 		}
15327c478bd9Sstevel@tonic-gate 	}
15337c478bd9Sstevel@tonic-gate 
15347c478bd9Sstevel@tonic-gate 	return (NULL);
15357c478bd9Sstevel@tonic-gate }
15367c478bd9Sstevel@tonic-gate 
15377c478bd9Sstevel@tonic-gate static const char *
15387c478bd9Sstevel@tonic-gate cyrix_cpubrand(struct cpuid_info *cpi, uint_t type)
15397c478bd9Sstevel@tonic-gate {
15407c478bd9Sstevel@tonic-gate 	if ((x86_feature & X86_CPUID) == 0 ||
15417c478bd9Sstevel@tonic-gate 	    cpi->cpi_maxeax < 1 || cpi->cpi_family < 5 ||
15427c478bd9Sstevel@tonic-gate 	    type == X86_TYPE_CYRIX_486)
15437c478bd9Sstevel@tonic-gate 		return ("i486 compatible");
15447c478bd9Sstevel@tonic-gate 
15457c478bd9Sstevel@tonic-gate 	switch (type) {
15467c478bd9Sstevel@tonic-gate 	case X86_TYPE_CYRIX_6x86:
15477c478bd9Sstevel@tonic-gate 		return ("Cyrix 6x86");
15487c478bd9Sstevel@tonic-gate 	case X86_TYPE_CYRIX_6x86L:
15497c478bd9Sstevel@tonic-gate 		return ("Cyrix 6x86L");
15507c478bd9Sstevel@tonic-gate 	case X86_TYPE_CYRIX_6x86MX:
15517c478bd9Sstevel@tonic-gate 		return ("Cyrix 6x86MX");
15527c478bd9Sstevel@tonic-gate 	case X86_TYPE_CYRIX_GXm:
15537c478bd9Sstevel@tonic-gate 		return ("Cyrix GXm");
15547c478bd9Sstevel@tonic-gate 	case X86_TYPE_CYRIX_MediaGX:
15557c478bd9Sstevel@tonic-gate 		return ("Cyrix MediaGX");
15567c478bd9Sstevel@tonic-gate 	case X86_TYPE_CYRIX_MII:
15577c478bd9Sstevel@tonic-gate 		return ("Cyrix M2");
15587c478bd9Sstevel@tonic-gate 	case X86_TYPE_VIA_CYRIX_III:
15597c478bd9Sstevel@tonic-gate 		return ("VIA Cyrix M3");
15607c478bd9Sstevel@tonic-gate 	default:
15617c478bd9Sstevel@tonic-gate 		/*
15627c478bd9Sstevel@tonic-gate 		 * Have another wild guess ..
15637c478bd9Sstevel@tonic-gate 		 */
15647c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 4 && cpi->cpi_model == 9)
15657c478bd9Sstevel@tonic-gate 			return ("Cyrix 5x86");
15667c478bd9Sstevel@tonic-gate 		else if (cpi->cpi_family == 5) {
15677c478bd9Sstevel@tonic-gate 			switch (cpi->cpi_model) {
15687c478bd9Sstevel@tonic-gate 			case 2:
15697c478bd9Sstevel@tonic-gate 				return ("Cyrix 6x86");	/* Cyrix M1 */
15707c478bd9Sstevel@tonic-gate 			case 4:
15717c478bd9Sstevel@tonic-gate 				return ("Cyrix MediaGX");
15727c478bd9Sstevel@tonic-gate 			default:
15737c478bd9Sstevel@tonic-gate 				break;
15747c478bd9Sstevel@tonic-gate 			}
15757c478bd9Sstevel@tonic-gate 		} else if (cpi->cpi_family == 6) {
15767c478bd9Sstevel@tonic-gate 			switch (cpi->cpi_model) {
15777c478bd9Sstevel@tonic-gate 			case 0:
15787c478bd9Sstevel@tonic-gate 				return ("Cyrix 6x86MX"); /* Cyrix M2? */
15797c478bd9Sstevel@tonic-gate 			case 5:
15807c478bd9Sstevel@tonic-gate 			case 6:
15817c478bd9Sstevel@tonic-gate 			case 7:
15827c478bd9Sstevel@tonic-gate 			case 8:
15837c478bd9Sstevel@tonic-gate 			case 9:
15847c478bd9Sstevel@tonic-gate 				return ("VIA C3");
15857c478bd9Sstevel@tonic-gate 			default:
15867c478bd9Sstevel@tonic-gate 				break;
15877c478bd9Sstevel@tonic-gate 			}
15887c478bd9Sstevel@tonic-gate 		}
15897c478bd9Sstevel@tonic-gate 		break;
15907c478bd9Sstevel@tonic-gate 	}
15917c478bd9Sstevel@tonic-gate 	return (NULL);
15927c478bd9Sstevel@tonic-gate }
15937c478bd9Sstevel@tonic-gate 
15947c478bd9Sstevel@tonic-gate /*
15957c478bd9Sstevel@tonic-gate  * This only gets called in the case that the CPU extended
15967c478bd9Sstevel@tonic-gate  * feature brand string (0x80000002, 0x80000003, 0x80000004)
15977c478bd9Sstevel@tonic-gate  * aren't available, or contain null bytes for some reason.
15987c478bd9Sstevel@tonic-gate  */
15997c478bd9Sstevel@tonic-gate static void
16007c478bd9Sstevel@tonic-gate fabricate_brandstr(struct cpuid_info *cpi)
16017c478bd9Sstevel@tonic-gate {
16027c478bd9Sstevel@tonic-gate 	const char *brand = NULL;
16037c478bd9Sstevel@tonic-gate 
16047c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
16057c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
16067c478bd9Sstevel@tonic-gate 		brand = intel_cpubrand(cpi);
16077c478bd9Sstevel@tonic-gate 		break;
16087c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
16097c478bd9Sstevel@tonic-gate 		brand = amd_cpubrand(cpi);
16107c478bd9Sstevel@tonic-gate 		break;
16117c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Cyrix:
16127c478bd9Sstevel@tonic-gate 		brand = cyrix_cpubrand(cpi, x86_type);
16137c478bd9Sstevel@tonic-gate 		break;
16147c478bd9Sstevel@tonic-gate 	case X86_VENDOR_NexGen:
16157c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 5 && cpi->cpi_model == 0)
16167c478bd9Sstevel@tonic-gate 			brand = "NexGen Nx586";
16177c478bd9Sstevel@tonic-gate 		break;
16187c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Centaur:
16197c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 5)
16207c478bd9Sstevel@tonic-gate 			switch (cpi->cpi_model) {
16217c478bd9Sstevel@tonic-gate 			case 4:
16227c478bd9Sstevel@tonic-gate 				brand = "Centaur C6";
16237c478bd9Sstevel@tonic-gate 				break;
16247c478bd9Sstevel@tonic-gate 			case 8:
16257c478bd9Sstevel@tonic-gate 				brand = "Centaur C2";
16267c478bd9Sstevel@tonic-gate 				break;
16277c478bd9Sstevel@tonic-gate 			case 9:
16287c478bd9Sstevel@tonic-gate 				brand = "Centaur C3";
16297c478bd9Sstevel@tonic-gate 				break;
16307c478bd9Sstevel@tonic-gate 			default:
16317c478bd9Sstevel@tonic-gate 				break;
16327c478bd9Sstevel@tonic-gate 			}
16337c478bd9Sstevel@tonic-gate 		break;
16347c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Rise:
16357c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 5 &&
16367c478bd9Sstevel@tonic-gate 		    (cpi->cpi_model == 0 || cpi->cpi_model == 2))
16377c478bd9Sstevel@tonic-gate 			brand = "Rise mP6";
16387c478bd9Sstevel@tonic-gate 		break;
16397c478bd9Sstevel@tonic-gate 	case X86_VENDOR_SiS:
16407c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 5 && cpi->cpi_model == 0)
16417c478bd9Sstevel@tonic-gate 			brand = "SiS 55x";
16427c478bd9Sstevel@tonic-gate 		break;
16437c478bd9Sstevel@tonic-gate 	case X86_VENDOR_TM:
16447c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family == 5 && cpi->cpi_model == 4)
16457c478bd9Sstevel@tonic-gate 			brand = "Transmeta Crusoe TM3x00 or TM5x00";
16467c478bd9Sstevel@tonic-gate 		break;
16477c478bd9Sstevel@tonic-gate 	case X86_VENDOR_NSC:
16487c478bd9Sstevel@tonic-gate 	case X86_VENDOR_UMC:
16497c478bd9Sstevel@tonic-gate 	default:
16507c478bd9Sstevel@tonic-gate 		break;
16517c478bd9Sstevel@tonic-gate 	}
16527c478bd9Sstevel@tonic-gate 	if (brand) {
16537c478bd9Sstevel@tonic-gate 		(void) strcpy((char *)cpi->cpi_brandstr, brand);
16547c478bd9Sstevel@tonic-gate 		return;
16557c478bd9Sstevel@tonic-gate 	}
16567c478bd9Sstevel@tonic-gate 
16577c478bd9Sstevel@tonic-gate 	/*
16587c478bd9Sstevel@tonic-gate 	 * If all else fails ...
16597c478bd9Sstevel@tonic-gate 	 */
16607c478bd9Sstevel@tonic-gate 	(void) snprintf(cpi->cpi_brandstr, sizeof (cpi->cpi_brandstr),
16617c478bd9Sstevel@tonic-gate 	    "%s %d.%d.%d", cpi->cpi_vendorstr, cpi->cpi_family,
16627c478bd9Sstevel@tonic-gate 	    cpi->cpi_model, cpi->cpi_step);
16637c478bd9Sstevel@tonic-gate }
16647c478bd9Sstevel@tonic-gate 
16657c478bd9Sstevel@tonic-gate /*
16667c478bd9Sstevel@tonic-gate  * This routine is called just after kernel memory allocation
16677c478bd9Sstevel@tonic-gate  * becomes available on cpu0, and as part of mp_startup() on
16687c478bd9Sstevel@tonic-gate  * the other cpus.
16697c478bd9Sstevel@tonic-gate  *
1670d129bde2Sesaxe  * Fixup the brand string, and collect any information from cpuid
1671d129bde2Sesaxe  * that requires dynamicically allocated storage to represent.
16727c478bd9Sstevel@tonic-gate  */
16737c478bd9Sstevel@tonic-gate /*ARGSUSED*/
16747c478bd9Sstevel@tonic-gate void
16757c478bd9Sstevel@tonic-gate cpuid_pass3(cpu_t *cpu)
16767c478bd9Sstevel@tonic-gate {
1677d129bde2Sesaxe 	int	i, max, shft, level, size;
1678d129bde2Sesaxe 	struct cpuid_regs regs;
1679d129bde2Sesaxe 	struct cpuid_regs *cp;
16807c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi = cpu->cpu_m.mcpu_cpi;
16817c478bd9Sstevel@tonic-gate 
16827c478bd9Sstevel@tonic-gate 	ASSERT(cpi->cpi_pass == 2);
16837c478bd9Sstevel@tonic-gate 
1684d129bde2Sesaxe 	/*
1685d129bde2Sesaxe 	 * Function 4: Deterministic cache parameters
1686d129bde2Sesaxe 	 *
1687d129bde2Sesaxe 	 * Take this opportunity to detect the number of threads
1688d129bde2Sesaxe 	 * sharing the last level cache, and construct a corresponding
1689d129bde2Sesaxe 	 * cache id. The respective cpuid_info members are initialized
1690d129bde2Sesaxe 	 * to the default case of "no last level cache sharing".
1691d129bde2Sesaxe 	 */
1692d129bde2Sesaxe 	cpi->cpi_ncpu_shr_last_cache = 1;
1693d129bde2Sesaxe 	cpi->cpi_last_lvl_cacheid = cpu->cpu_id;
1694d129bde2Sesaxe 
1695d129bde2Sesaxe 	if (cpi->cpi_maxeax >= 4 && cpi->cpi_vendor == X86_VENDOR_Intel) {
1696d129bde2Sesaxe 
1697d129bde2Sesaxe 		/*
1698d129bde2Sesaxe 		 * Find the # of elements (size) returned by fn 4, and along
1699d129bde2Sesaxe 		 * the way detect last level cache sharing details.
1700d129bde2Sesaxe 		 */
1701d129bde2Sesaxe 		bzero(&regs, sizeof (regs));
1702d129bde2Sesaxe 		cp = &regs;
1703d129bde2Sesaxe 		for (i = 0, max = 0; i < CPI_FN4_ECX_MAX; i++) {
1704d129bde2Sesaxe 			cp->cp_eax = 4;
1705d129bde2Sesaxe 			cp->cp_ecx = i;
1706d129bde2Sesaxe 
1707d129bde2Sesaxe 			(void) __cpuid_insn(cp);
1708d129bde2Sesaxe 
1709d129bde2Sesaxe 			if (CPI_CACHE_TYPE(cp) == 0)
1710d129bde2Sesaxe 				break;
1711d129bde2Sesaxe 			level = CPI_CACHE_LVL(cp);
1712d129bde2Sesaxe 			if (level > max) {
1713d129bde2Sesaxe 				max = level;
1714d129bde2Sesaxe 				cpi->cpi_ncpu_shr_last_cache =
1715d129bde2Sesaxe 				    CPI_NTHR_SHR_CACHE(cp) + 1;
1716d129bde2Sesaxe 			}
1717d129bde2Sesaxe 		}
1718d129bde2Sesaxe 		cpi->cpi_std_4_size = size = i;
1719d129bde2Sesaxe 
1720d129bde2Sesaxe 		/*
1721d129bde2Sesaxe 		 * Allocate the cpi_std_4 array. The first element
1722d129bde2Sesaxe 		 * references the regs for fn 4, %ecx == 0, which
1723d129bde2Sesaxe 		 * cpuid_pass2() stashed in cpi->cpi_std[4].
1724d129bde2Sesaxe 		 */
1725d129bde2Sesaxe 		if (size > 0) {
1726d129bde2Sesaxe 			cpi->cpi_std_4 =
1727d129bde2Sesaxe 			    kmem_alloc(size * sizeof (cp), KM_SLEEP);
1728d129bde2Sesaxe 			cpi->cpi_std_4[0] = &cpi->cpi_std[4];
1729d129bde2Sesaxe 
1730d129bde2Sesaxe 			/*
1731d129bde2Sesaxe 			 * Allocate storage to hold the additional regs
1732d129bde2Sesaxe 			 * for function 4, %ecx == 1 .. cpi_std_4_size.
1733d129bde2Sesaxe 			 *
1734d129bde2Sesaxe 			 * The regs for fn 4, %ecx == 0 has already
1735d129bde2Sesaxe 			 * been allocated as indicated above.
1736d129bde2Sesaxe 			 */
1737d129bde2Sesaxe 			for (i = 1; i < size; i++) {
1738d129bde2Sesaxe 				cp = cpi->cpi_std_4[i] =
1739d129bde2Sesaxe 				    kmem_zalloc(sizeof (regs), KM_SLEEP);
1740d129bde2Sesaxe 				cp->cp_eax = 4;
1741d129bde2Sesaxe 				cp->cp_ecx = i;
1742d129bde2Sesaxe 
1743d129bde2Sesaxe 				(void) __cpuid_insn(cp);
1744d129bde2Sesaxe 			}
1745d129bde2Sesaxe 		}
1746d129bde2Sesaxe 		/*
1747d129bde2Sesaxe 		 * Determine the number of bits needed to represent
1748d129bde2Sesaxe 		 * the number of CPUs sharing the last level cache.
1749d129bde2Sesaxe 		 *
1750d129bde2Sesaxe 		 * Shift off that number of bits from the APIC id to
1751d129bde2Sesaxe 		 * derive the cache id.
1752d129bde2Sesaxe 		 */
1753d129bde2Sesaxe 		shft = 0;
1754d129bde2Sesaxe 		for (i = 1; i < cpi->cpi_ncpu_shr_last_cache; i <<= 1)
1755d129bde2Sesaxe 			shft++;
1756d129bde2Sesaxe 		cpi->cpi_last_lvl_cacheid = CPI_APIC_ID(cpi) >> shft;
1757d129bde2Sesaxe 	}
1758d129bde2Sesaxe 
1759d129bde2Sesaxe 	/*
1760d129bde2Sesaxe 	 * Now fixup the brand string
1761d129bde2Sesaxe 	 */
17627c478bd9Sstevel@tonic-gate 	if ((cpi->cpi_xmaxeax & 0x80000000) == 0) {
17637c478bd9Sstevel@tonic-gate 		fabricate_brandstr(cpi);
1764d129bde2Sesaxe 	} else {
17657c478bd9Sstevel@tonic-gate 
17667c478bd9Sstevel@tonic-gate 		/*
17677c478bd9Sstevel@tonic-gate 		 * If we successfully extracted a brand string from the cpuid
17687c478bd9Sstevel@tonic-gate 		 * instruction, clean it up by removing leading spaces and
17697c478bd9Sstevel@tonic-gate 		 * similar junk.
17707c478bd9Sstevel@tonic-gate 		 */
17717c478bd9Sstevel@tonic-gate 		if (cpi->cpi_brandstr[0]) {
17727c478bd9Sstevel@tonic-gate 			size_t maxlen = sizeof (cpi->cpi_brandstr);
17737c478bd9Sstevel@tonic-gate 			char *src, *dst;
17747c478bd9Sstevel@tonic-gate 
17757c478bd9Sstevel@tonic-gate 			dst = src = (char *)cpi->cpi_brandstr;
17767c478bd9Sstevel@tonic-gate 			src[maxlen - 1] = '\0';
17777c478bd9Sstevel@tonic-gate 			/*
17787c478bd9Sstevel@tonic-gate 			 * strip leading spaces
17797c478bd9Sstevel@tonic-gate 			 */
17807c478bd9Sstevel@tonic-gate 			while (*src == ' ')
17817c478bd9Sstevel@tonic-gate 				src++;
17827c478bd9Sstevel@tonic-gate 			/*
17837c478bd9Sstevel@tonic-gate 			 * Remove any 'Genuine' or "Authentic" prefixes
17847c478bd9Sstevel@tonic-gate 			 */
17857c478bd9Sstevel@tonic-gate 			if (strncmp(src, "Genuine ", 8) == 0)
17867c478bd9Sstevel@tonic-gate 				src += 8;
17877c478bd9Sstevel@tonic-gate 			if (strncmp(src, "Authentic ", 10) == 0)
17887c478bd9Sstevel@tonic-gate 				src += 10;
17897c478bd9Sstevel@tonic-gate 
17907c478bd9Sstevel@tonic-gate 			/*
17917c478bd9Sstevel@tonic-gate 			 * Now do an in-place copy.
17927c478bd9Sstevel@tonic-gate 			 * Map (R) to (r) and (TM) to (tm).
17937c478bd9Sstevel@tonic-gate 			 * The era of teletypes is long gone, and there's
17947c478bd9Sstevel@tonic-gate 			 * -really- no need to shout.
17957c478bd9Sstevel@tonic-gate 			 */
17967c478bd9Sstevel@tonic-gate 			while (*src != '\0') {
17977c478bd9Sstevel@tonic-gate 				if (src[0] == '(') {
17987c478bd9Sstevel@tonic-gate 					if (strncmp(src + 1, "R)", 2) == 0) {
17997c478bd9Sstevel@tonic-gate 						(void) strncpy(dst, "(r)", 3);
18007c478bd9Sstevel@tonic-gate 						src += 3;
18017c478bd9Sstevel@tonic-gate 						dst += 3;
18027c478bd9Sstevel@tonic-gate 						continue;
18037c478bd9Sstevel@tonic-gate 					}
18047c478bd9Sstevel@tonic-gate 					if (strncmp(src + 1, "TM)", 3) == 0) {
18057c478bd9Sstevel@tonic-gate 						(void) strncpy(dst, "(tm)", 4);
18067c478bd9Sstevel@tonic-gate 						src += 4;
18077c478bd9Sstevel@tonic-gate 						dst += 4;
18087c478bd9Sstevel@tonic-gate 						continue;
18097c478bd9Sstevel@tonic-gate 					}
18107c478bd9Sstevel@tonic-gate 				}
18117c478bd9Sstevel@tonic-gate 				*dst++ = *src++;
18127c478bd9Sstevel@tonic-gate 			}
18137c478bd9Sstevel@tonic-gate 			*dst = '\0';
18147c478bd9Sstevel@tonic-gate 
18157c478bd9Sstevel@tonic-gate 			/*
18167c478bd9Sstevel@tonic-gate 			 * Finally, remove any trailing spaces
18177c478bd9Sstevel@tonic-gate 			 */
18187c478bd9Sstevel@tonic-gate 			while (--dst > cpi->cpi_brandstr)
18197c478bd9Sstevel@tonic-gate 				if (*dst == ' ')
18207c478bd9Sstevel@tonic-gate 					*dst = '\0';
18217c478bd9Sstevel@tonic-gate 				else
18227c478bd9Sstevel@tonic-gate 					break;
18237c478bd9Sstevel@tonic-gate 		} else
18247c478bd9Sstevel@tonic-gate 			fabricate_brandstr(cpi);
1825d129bde2Sesaxe 	}
18267c478bd9Sstevel@tonic-gate 	cpi->cpi_pass = 3;
18277c478bd9Sstevel@tonic-gate }
18287c478bd9Sstevel@tonic-gate 
18297c478bd9Sstevel@tonic-gate /*
18307c478bd9Sstevel@tonic-gate  * This routine is called out of bind_hwcap() much later in the life
18317c478bd9Sstevel@tonic-gate  * of the kernel (post_startup()).  The job of this routine is to resolve
18327c478bd9Sstevel@tonic-gate  * the hardware feature support and kernel support for those features into
18337c478bd9Sstevel@tonic-gate  * what we're actually going to tell applications via the aux vector.
18347c478bd9Sstevel@tonic-gate  */
18357c478bd9Sstevel@tonic-gate uint_t
18367c478bd9Sstevel@tonic-gate cpuid_pass4(cpu_t *cpu)
18377c478bd9Sstevel@tonic-gate {
18387c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi;
18397c478bd9Sstevel@tonic-gate 	uint_t hwcap_flags = 0;
18407c478bd9Sstevel@tonic-gate 
18417c478bd9Sstevel@tonic-gate 	if (cpu == NULL)
18427c478bd9Sstevel@tonic-gate 		cpu = CPU;
18437c478bd9Sstevel@tonic-gate 	cpi = cpu->cpu_m.mcpu_cpi;
18447c478bd9Sstevel@tonic-gate 
18457c478bd9Sstevel@tonic-gate 	ASSERT(cpi->cpi_pass == 3);
18467c478bd9Sstevel@tonic-gate 
18477c478bd9Sstevel@tonic-gate 	if (cpi->cpi_maxeax >= 1) {
18487c478bd9Sstevel@tonic-gate 		uint32_t *edx = &cpi->cpi_support[STD_EDX_FEATURES];
18497c478bd9Sstevel@tonic-gate 		uint32_t *ecx = &cpi->cpi_support[STD_ECX_FEATURES];
18507c478bd9Sstevel@tonic-gate 
18517c478bd9Sstevel@tonic-gate 		*edx = CPI_FEATURES_EDX(cpi);
18527c478bd9Sstevel@tonic-gate 		*ecx = CPI_FEATURES_ECX(cpi);
18537c478bd9Sstevel@tonic-gate 
18547c478bd9Sstevel@tonic-gate 		/*
18557c478bd9Sstevel@tonic-gate 		 * [these require explicit kernel support]
18567c478bd9Sstevel@tonic-gate 		 */
18577c478bd9Sstevel@tonic-gate 		if ((x86_feature & X86_SEP) == 0)
18587c478bd9Sstevel@tonic-gate 			*edx &= ~CPUID_INTC_EDX_SEP;
18597c478bd9Sstevel@tonic-gate 
18607c478bd9Sstevel@tonic-gate 		if ((x86_feature & X86_SSE) == 0)
18617c478bd9Sstevel@tonic-gate 			*edx &= ~(CPUID_INTC_EDX_FXSR|CPUID_INTC_EDX_SSE);
18627c478bd9Sstevel@tonic-gate 		if ((x86_feature & X86_SSE2) == 0)
18637c478bd9Sstevel@tonic-gate 			*edx &= ~CPUID_INTC_EDX_SSE2;
18647c478bd9Sstevel@tonic-gate 
18657c478bd9Sstevel@tonic-gate 		if ((x86_feature & X86_HTT) == 0)
18667c478bd9Sstevel@tonic-gate 			*edx &= ~CPUID_INTC_EDX_HTT;
18677c478bd9Sstevel@tonic-gate 
18687c478bd9Sstevel@tonic-gate 		if ((x86_feature & X86_SSE3) == 0)
18697c478bd9Sstevel@tonic-gate 			*ecx &= ~CPUID_INTC_ECX_SSE3;
18707c478bd9Sstevel@tonic-gate 
18717c478bd9Sstevel@tonic-gate 		/*
18727c478bd9Sstevel@tonic-gate 		 * [no explicit support required beyond x87 fp context]
18737c478bd9Sstevel@tonic-gate 		 */
18747c478bd9Sstevel@tonic-gate 		if (!fpu_exists)
18757c478bd9Sstevel@tonic-gate 			*edx &= ~(CPUID_INTC_EDX_FPU | CPUID_INTC_EDX_MMX);
18767c478bd9Sstevel@tonic-gate 
18777c478bd9Sstevel@tonic-gate 		/*
18787c478bd9Sstevel@tonic-gate 		 * Now map the supported feature vector to things that we
18797c478bd9Sstevel@tonic-gate 		 * think userland will care about.
18807c478bd9Sstevel@tonic-gate 		 */
18817c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_INTC_EDX_SEP)
18827c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_SEP;
18837c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_INTC_EDX_SSE)
18847c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_FXSR | AV_386_SSE;
18857c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_INTC_EDX_SSE2)
18867c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_SSE2;
18877c478bd9Sstevel@tonic-gate 		if (*ecx & CPUID_INTC_ECX_SSE3)
18887c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_SSE3;
1889f8801251Skk208521 		if (*ecx & CPUID_INTC_ECX_POPCNT)
1890f8801251Skk208521 			hwcap_flags |= AV_386_POPCNT;
18917c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_INTC_EDX_FPU)
18927c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_FPU;
18937c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_INTC_EDX_MMX)
18947c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_MMX;
18957c478bd9Sstevel@tonic-gate 
18967c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_INTC_EDX_TSC)
18977c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_TSC;
18987c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_INTC_EDX_CX8)
18997c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_CX8;
19007c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_INTC_EDX_CMOV)
19017c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_CMOV;
19027c478bd9Sstevel@tonic-gate 		if (*ecx & CPUID_INTC_ECX_MON)
19037c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_MON;
19047c478bd9Sstevel@tonic-gate 		if (*ecx & CPUID_INTC_ECX_CX16)
19057c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_CX16;
19067c478bd9Sstevel@tonic-gate 	}
19077c478bd9Sstevel@tonic-gate 
19088949bcd6Sandrei 	if (x86_feature & X86_HTT)
19097c478bd9Sstevel@tonic-gate 		hwcap_flags |= AV_386_PAUSE;
19107c478bd9Sstevel@tonic-gate 
19117c478bd9Sstevel@tonic-gate 	if (cpi->cpi_xmaxeax < 0x80000001)
19127c478bd9Sstevel@tonic-gate 		goto pass4_done;
19137c478bd9Sstevel@tonic-gate 
19147c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
19158949bcd6Sandrei 		struct cpuid_regs cp;
1916ae115bc7Smrj 		uint32_t *edx, *ecx;
19177c478bd9Sstevel@tonic-gate 
1918ae115bc7Smrj 	case X86_VENDOR_Intel:
1919ae115bc7Smrj 		/*
1920ae115bc7Smrj 		 * Seems like Intel duplicated what we necessary
1921ae115bc7Smrj 		 * here to make the initial crop of 64-bit OS's work.
1922ae115bc7Smrj 		 * Hopefully, those are the only "extended" bits
1923ae115bc7Smrj 		 * they'll add.
1924ae115bc7Smrj 		 */
1925ae115bc7Smrj 		/*FALLTHROUGH*/
1926ae115bc7Smrj 
19277c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
19287c478bd9Sstevel@tonic-gate 		edx = &cpi->cpi_support[AMD_EDX_FEATURES];
1929ae115bc7Smrj 		ecx = &cpi->cpi_support[AMD_ECX_FEATURES];
19307c478bd9Sstevel@tonic-gate 
19317c478bd9Sstevel@tonic-gate 		*edx = CPI_FEATURES_XTD_EDX(cpi);
1932ae115bc7Smrj 		*ecx = CPI_FEATURES_XTD_ECX(cpi);
1933ae115bc7Smrj 
1934ae115bc7Smrj 		/*
1935ae115bc7Smrj 		 * [these features require explicit kernel support]
1936ae115bc7Smrj 		 */
1937ae115bc7Smrj 		switch (cpi->cpi_vendor) {
1938ae115bc7Smrj 		case X86_VENDOR_Intel:
1939ae115bc7Smrj 			break;
1940ae115bc7Smrj 
1941ae115bc7Smrj 		case X86_VENDOR_AMD:
1942ae115bc7Smrj 			if ((x86_feature & X86_TSCP) == 0)
1943ae115bc7Smrj 				*edx &= ~CPUID_AMD_EDX_TSCP;
1944f8801251Skk208521 			if ((x86_feature & X86_SSE4A) == 0)
1945f8801251Skk208521 				*ecx &= ~CPUID_AMD_ECX_SSE4A;
1946ae115bc7Smrj 			break;
1947ae115bc7Smrj 
1948ae115bc7Smrj 		default:
1949ae115bc7Smrj 			break;
1950ae115bc7Smrj 		}
19517c478bd9Sstevel@tonic-gate 
19527c478bd9Sstevel@tonic-gate 		/*
19537c478bd9Sstevel@tonic-gate 		 * [no explicit support required beyond
19547c478bd9Sstevel@tonic-gate 		 * x87 fp context and exception handlers]
19557c478bd9Sstevel@tonic-gate 		 */
19567c478bd9Sstevel@tonic-gate 		if (!fpu_exists)
19577c478bd9Sstevel@tonic-gate 			*edx &= ~(CPUID_AMD_EDX_MMXamd |
19587c478bd9Sstevel@tonic-gate 			    CPUID_AMD_EDX_3DNow | CPUID_AMD_EDX_3DNowx);
19597c478bd9Sstevel@tonic-gate 
19607c478bd9Sstevel@tonic-gate 		if ((x86_feature & X86_NX) == 0)
19617c478bd9Sstevel@tonic-gate 			*edx &= ~CPUID_AMD_EDX_NX;
1962ae115bc7Smrj #if !defined(__amd64)
19637c478bd9Sstevel@tonic-gate 		*edx &= ~CPUID_AMD_EDX_LM;
19647c478bd9Sstevel@tonic-gate #endif
19657c478bd9Sstevel@tonic-gate 		/*
19667c478bd9Sstevel@tonic-gate 		 * Now map the supported feature vector to
19677c478bd9Sstevel@tonic-gate 		 * things that we think userland will care about.
19687c478bd9Sstevel@tonic-gate 		 */
1969ae115bc7Smrj #if defined(__amd64)
19707c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_AMD_EDX_SYSC)
19717c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_AMD_SYSC;
1972ae115bc7Smrj #endif
19737c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_AMD_EDX_MMXamd)
19747c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_AMD_MMX;
19757c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_AMD_EDX_3DNow)
19767c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_AMD_3DNow;
19777c478bd9Sstevel@tonic-gate 		if (*edx & CPUID_AMD_EDX_3DNowx)
19787c478bd9Sstevel@tonic-gate 			hwcap_flags |= AV_386_AMD_3DNowx;
1979ae115bc7Smrj 
1980ae115bc7Smrj 		switch (cpi->cpi_vendor) {
1981ae115bc7Smrj 		case X86_VENDOR_AMD:
1982ae115bc7Smrj 			if (*edx & CPUID_AMD_EDX_TSCP)
1983ae115bc7Smrj 				hwcap_flags |= AV_386_TSCP;
1984ae115bc7Smrj 			if (*ecx & CPUID_AMD_ECX_AHF64)
1985ae115bc7Smrj 				hwcap_flags |= AV_386_AHF;
1986f8801251Skk208521 			if (*ecx & CPUID_AMD_ECX_SSE4A)
1987f8801251Skk208521 				hwcap_flags |= AV_386_AMD_SSE4A;
1988f8801251Skk208521 			if (*ecx & CPUID_AMD_ECX_LZCNT)
1989f8801251Skk208521 				hwcap_flags |= AV_386_AMD_LZCNT;
1990ae115bc7Smrj 			break;
1991ae115bc7Smrj 
1992ae115bc7Smrj 		case X86_VENDOR_Intel:
1993ae115bc7Smrj 			/*
1994ae115bc7Smrj 			 * Aarrgh.
1995ae115bc7Smrj 			 * Intel uses a different bit in the same word.
1996ae115bc7Smrj 			 */
1997ae115bc7Smrj 			if (*ecx & CPUID_INTC_ECX_AHF64)
1998ae115bc7Smrj 				hwcap_flags |= AV_386_AHF;
1999ae115bc7Smrj 			break;
2000ae115bc7Smrj 
2001ae115bc7Smrj 		default:
2002ae115bc7Smrj 			break;
2003ae115bc7Smrj 		}
20047c478bd9Sstevel@tonic-gate 		break;
20057c478bd9Sstevel@tonic-gate 
20067c478bd9Sstevel@tonic-gate 	case X86_VENDOR_TM:
20078949bcd6Sandrei 		cp.cp_eax = 0x80860001;
20088949bcd6Sandrei 		(void) __cpuid_insn(&cp);
20098949bcd6Sandrei 		cpi->cpi_support[TM_EDX_FEATURES] = cp.cp_edx;
20107c478bd9Sstevel@tonic-gate 		break;
20117c478bd9Sstevel@tonic-gate 
20127c478bd9Sstevel@tonic-gate 	default:
20137c478bd9Sstevel@tonic-gate 		break;
20147c478bd9Sstevel@tonic-gate 	}
20157c478bd9Sstevel@tonic-gate 
20167c478bd9Sstevel@tonic-gate pass4_done:
20177c478bd9Sstevel@tonic-gate 	cpi->cpi_pass = 4;
20187c478bd9Sstevel@tonic-gate 	return (hwcap_flags);
20197c478bd9Sstevel@tonic-gate }
20207c478bd9Sstevel@tonic-gate 
20217c478bd9Sstevel@tonic-gate 
20227c478bd9Sstevel@tonic-gate /*
20237c478bd9Sstevel@tonic-gate  * Simulate the cpuid instruction using the data we previously
20247c478bd9Sstevel@tonic-gate  * captured about this CPU.  We try our best to return the truth
20257c478bd9Sstevel@tonic-gate  * about the hardware, independently of kernel support.
20267c478bd9Sstevel@tonic-gate  */
20277c478bd9Sstevel@tonic-gate uint32_t
20288949bcd6Sandrei cpuid_insn(cpu_t *cpu, struct cpuid_regs *cp)
20297c478bd9Sstevel@tonic-gate {
20307c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi;
20318949bcd6Sandrei 	struct cpuid_regs *xcp;
20327c478bd9Sstevel@tonic-gate 
20337c478bd9Sstevel@tonic-gate 	if (cpu == NULL)
20347c478bd9Sstevel@tonic-gate 		cpu = CPU;
20357c478bd9Sstevel@tonic-gate 	cpi = cpu->cpu_m.mcpu_cpi;
20367c478bd9Sstevel@tonic-gate 
20377c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 3));
20387c478bd9Sstevel@tonic-gate 
20397c478bd9Sstevel@tonic-gate 	/*
20407c478bd9Sstevel@tonic-gate 	 * CPUID data is cached in two separate places: cpi_std for standard
20417c478bd9Sstevel@tonic-gate 	 * CPUID functions, and cpi_extd for extended CPUID functions.
20427c478bd9Sstevel@tonic-gate 	 */
20438949bcd6Sandrei 	if (cp->cp_eax <= cpi->cpi_maxeax && cp->cp_eax < NMAX_CPI_STD)
20448949bcd6Sandrei 		xcp = &cpi->cpi_std[cp->cp_eax];
20458949bcd6Sandrei 	else if (cp->cp_eax >= 0x80000000 && cp->cp_eax <= cpi->cpi_xmaxeax &&
20468949bcd6Sandrei 	    cp->cp_eax < 0x80000000 + NMAX_CPI_EXTD)
20478949bcd6Sandrei 		xcp = &cpi->cpi_extd[cp->cp_eax - 0x80000000];
20487c478bd9Sstevel@tonic-gate 	else
20497c478bd9Sstevel@tonic-gate 		/*
20507c478bd9Sstevel@tonic-gate 		 * The caller is asking for data from an input parameter which
20517c478bd9Sstevel@tonic-gate 		 * the kernel has not cached.  In this case we go fetch from
20527c478bd9Sstevel@tonic-gate 		 * the hardware and return the data directly to the user.
20537c478bd9Sstevel@tonic-gate 		 */
20548949bcd6Sandrei 		return (__cpuid_insn(cp));
20558949bcd6Sandrei 
20568949bcd6Sandrei 	cp->cp_eax = xcp->cp_eax;
20578949bcd6Sandrei 	cp->cp_ebx = xcp->cp_ebx;
20588949bcd6Sandrei 	cp->cp_ecx = xcp->cp_ecx;
20598949bcd6Sandrei 	cp->cp_edx = xcp->cp_edx;
20607c478bd9Sstevel@tonic-gate 	return (cp->cp_eax);
20617c478bd9Sstevel@tonic-gate }
20627c478bd9Sstevel@tonic-gate 
20637c478bd9Sstevel@tonic-gate int
20647c478bd9Sstevel@tonic-gate cpuid_checkpass(cpu_t *cpu, int pass)
20657c478bd9Sstevel@tonic-gate {
20667c478bd9Sstevel@tonic-gate 	return (cpu != NULL && cpu->cpu_m.mcpu_cpi != NULL &&
20677c478bd9Sstevel@tonic-gate 	    cpu->cpu_m.mcpu_cpi->cpi_pass >= pass);
20687c478bd9Sstevel@tonic-gate }
20697c478bd9Sstevel@tonic-gate 
20707c478bd9Sstevel@tonic-gate int
20717c478bd9Sstevel@tonic-gate cpuid_getbrandstr(cpu_t *cpu, char *s, size_t n)
20727c478bd9Sstevel@tonic-gate {
20737c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 3));
20747c478bd9Sstevel@tonic-gate 
20757c478bd9Sstevel@tonic-gate 	return (snprintf(s, n, "%s", cpu->cpu_m.mcpu_cpi->cpi_brandstr));
20767c478bd9Sstevel@tonic-gate }
20777c478bd9Sstevel@tonic-gate 
20787c478bd9Sstevel@tonic-gate int
20798949bcd6Sandrei cpuid_is_cmt(cpu_t *cpu)
20807c478bd9Sstevel@tonic-gate {
20817c478bd9Sstevel@tonic-gate 	if (cpu == NULL)
20827c478bd9Sstevel@tonic-gate 		cpu = CPU;
20837c478bd9Sstevel@tonic-gate 
20847c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
20857c478bd9Sstevel@tonic-gate 
20867c478bd9Sstevel@tonic-gate 	return (cpu->cpu_m.mcpu_cpi->cpi_chipid >= 0);
20877c478bd9Sstevel@tonic-gate }
20887c478bd9Sstevel@tonic-gate 
20897c478bd9Sstevel@tonic-gate /*
20907c478bd9Sstevel@tonic-gate  * AMD and Intel both implement the 64-bit variant of the syscall
20917c478bd9Sstevel@tonic-gate  * instruction (syscallq), so if there's -any- support for syscall,
20927c478bd9Sstevel@tonic-gate  * cpuid currently says "yes, we support this".
20937c478bd9Sstevel@tonic-gate  *
20947c478bd9Sstevel@tonic-gate  * However, Intel decided to -not- implement the 32-bit variant of the
20957c478bd9Sstevel@tonic-gate  * syscall instruction, so we provide a predicate to allow our caller
20967c478bd9Sstevel@tonic-gate  * to test that subtlety here.
20977c478bd9Sstevel@tonic-gate  */
20987c478bd9Sstevel@tonic-gate /*ARGSUSED*/
20997c478bd9Sstevel@tonic-gate int
21007c478bd9Sstevel@tonic-gate cpuid_syscall32_insn(cpu_t *cpu)
21017c478bd9Sstevel@tonic-gate {
21027c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass((cpu == NULL ? CPU : cpu), 1));
21037c478bd9Sstevel@tonic-gate 
2104ae115bc7Smrj 	if (cpu == NULL)
2105ae115bc7Smrj 		cpu = CPU;
2106ae115bc7Smrj 
2107ae115bc7Smrj 	/*CSTYLED*/
2108ae115bc7Smrj 	{
2109ae115bc7Smrj 		struct cpuid_info *cpi = cpu->cpu_m.mcpu_cpi;
2110ae115bc7Smrj 
2111ae115bc7Smrj 		if (cpi->cpi_vendor == X86_VENDOR_AMD &&
2112ae115bc7Smrj 		    cpi->cpi_xmaxeax >= 0x80000001 &&
2113ae115bc7Smrj 		    (CPI_FEATURES_XTD_EDX(cpi) & CPUID_AMD_EDX_SYSC))
2114ae115bc7Smrj 			return (1);
2115ae115bc7Smrj 	}
21167c478bd9Sstevel@tonic-gate 	return (0);
21177c478bd9Sstevel@tonic-gate }
21187c478bd9Sstevel@tonic-gate 
21197c478bd9Sstevel@tonic-gate int
21207c478bd9Sstevel@tonic-gate cpuid_getidstr(cpu_t *cpu, char *s, size_t n)
21217c478bd9Sstevel@tonic-gate {
21227c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi = cpu->cpu_m.mcpu_cpi;
21237c478bd9Sstevel@tonic-gate 
21247c478bd9Sstevel@tonic-gate 	static const char fmt[] =
2125ecfa43a5Sdmick 	    "x86 (%s %X family %d model %d step %d clock %d MHz)";
21267c478bd9Sstevel@tonic-gate 	static const char fmt_ht[] =
2127ecfa43a5Sdmick 	    "x86 (chipid 0x%x %s %X family %d model %d step %d clock %d MHz)";
21287c478bd9Sstevel@tonic-gate 
21297c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
21307c478bd9Sstevel@tonic-gate 
21318949bcd6Sandrei 	if (cpuid_is_cmt(cpu))
21327c478bd9Sstevel@tonic-gate 		return (snprintf(s, n, fmt_ht, cpi->cpi_chipid,
2133ecfa43a5Sdmick 		    cpi->cpi_vendorstr, cpi->cpi_std[1].cp_eax,
2134ecfa43a5Sdmick 		    cpi->cpi_family, cpi->cpi_model,
21357c478bd9Sstevel@tonic-gate 		    cpi->cpi_step, cpu->cpu_type_info.pi_clock));
21367c478bd9Sstevel@tonic-gate 	return (snprintf(s, n, fmt,
2137ecfa43a5Sdmick 	    cpi->cpi_vendorstr, cpi->cpi_std[1].cp_eax,
2138ecfa43a5Sdmick 	    cpi->cpi_family, cpi->cpi_model,
21397c478bd9Sstevel@tonic-gate 	    cpi->cpi_step, cpu->cpu_type_info.pi_clock));
21407c478bd9Sstevel@tonic-gate }
21417c478bd9Sstevel@tonic-gate 
21427c478bd9Sstevel@tonic-gate const char *
21437c478bd9Sstevel@tonic-gate cpuid_getvendorstr(cpu_t *cpu)
21447c478bd9Sstevel@tonic-gate {
21457c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
21467c478bd9Sstevel@tonic-gate 	return ((const char *)cpu->cpu_m.mcpu_cpi->cpi_vendorstr);
21477c478bd9Sstevel@tonic-gate }
21487c478bd9Sstevel@tonic-gate 
21497c478bd9Sstevel@tonic-gate uint_t
21507c478bd9Sstevel@tonic-gate cpuid_getvendor(cpu_t *cpu)
21517c478bd9Sstevel@tonic-gate {
21527c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
21537c478bd9Sstevel@tonic-gate 	return (cpu->cpu_m.mcpu_cpi->cpi_vendor);
21547c478bd9Sstevel@tonic-gate }
21557c478bd9Sstevel@tonic-gate 
21567c478bd9Sstevel@tonic-gate uint_t
21577c478bd9Sstevel@tonic-gate cpuid_getfamily(cpu_t *cpu)
21587c478bd9Sstevel@tonic-gate {
21597c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
21607c478bd9Sstevel@tonic-gate 	return (cpu->cpu_m.mcpu_cpi->cpi_family);
21617c478bd9Sstevel@tonic-gate }
21627c478bd9Sstevel@tonic-gate 
21637c478bd9Sstevel@tonic-gate uint_t
21647c478bd9Sstevel@tonic-gate cpuid_getmodel(cpu_t *cpu)
21657c478bd9Sstevel@tonic-gate {
21667c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
21677c478bd9Sstevel@tonic-gate 	return (cpu->cpu_m.mcpu_cpi->cpi_model);
21687c478bd9Sstevel@tonic-gate }
21697c478bd9Sstevel@tonic-gate 
21707c478bd9Sstevel@tonic-gate uint_t
21717c478bd9Sstevel@tonic-gate cpuid_get_ncpu_per_chip(cpu_t *cpu)
21727c478bd9Sstevel@tonic-gate {
21737c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
21747c478bd9Sstevel@tonic-gate 	return (cpu->cpu_m.mcpu_cpi->cpi_ncpu_per_chip);
21757c478bd9Sstevel@tonic-gate }
21767c478bd9Sstevel@tonic-gate 
21777c478bd9Sstevel@tonic-gate uint_t
21788949bcd6Sandrei cpuid_get_ncore_per_chip(cpu_t *cpu)
21798949bcd6Sandrei {
21808949bcd6Sandrei 	ASSERT(cpuid_checkpass(cpu, 1));
21818949bcd6Sandrei 	return (cpu->cpu_m.mcpu_cpi->cpi_ncore_per_chip);
21828949bcd6Sandrei }
21838949bcd6Sandrei 
21848949bcd6Sandrei uint_t
2185d129bde2Sesaxe cpuid_get_ncpu_sharing_last_cache(cpu_t *cpu)
2186d129bde2Sesaxe {
2187d129bde2Sesaxe 	ASSERT(cpuid_checkpass(cpu, 2));
2188d129bde2Sesaxe 	return (cpu->cpu_m.mcpu_cpi->cpi_ncpu_shr_last_cache);
2189d129bde2Sesaxe }
2190d129bde2Sesaxe 
2191d129bde2Sesaxe id_t
2192d129bde2Sesaxe cpuid_get_last_lvl_cacheid(cpu_t *cpu)
2193d129bde2Sesaxe {
2194d129bde2Sesaxe 	ASSERT(cpuid_checkpass(cpu, 2));
2195d129bde2Sesaxe 	return (cpu->cpu_m.mcpu_cpi->cpi_last_lvl_cacheid);
2196d129bde2Sesaxe }
2197d129bde2Sesaxe 
2198d129bde2Sesaxe uint_t
21997c478bd9Sstevel@tonic-gate cpuid_getstep(cpu_t *cpu)
22007c478bd9Sstevel@tonic-gate {
22017c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
22027c478bd9Sstevel@tonic-gate 	return (cpu->cpu_m.mcpu_cpi->cpi_step);
22037c478bd9Sstevel@tonic-gate }
22047c478bd9Sstevel@tonic-gate 
22052449e17fSsherrym uint_t
22062449e17fSsherrym cpuid_getsig(struct cpu *cpu)
22072449e17fSsherrym {
22082449e17fSsherrym 	ASSERT(cpuid_checkpass(cpu, 1));
22092449e17fSsherrym 	return (cpu->cpu_m.mcpu_cpi->cpi_std[1].cp_eax);
22102449e17fSsherrym }
22112449e17fSsherrym 
22128a40a695Sgavinm uint32_t
22138a40a695Sgavinm cpuid_getchiprev(struct cpu *cpu)
22148a40a695Sgavinm {
22158a40a695Sgavinm 	ASSERT(cpuid_checkpass(cpu, 1));
22168a40a695Sgavinm 	return (cpu->cpu_m.mcpu_cpi->cpi_chiprev);
22178a40a695Sgavinm }
22188a40a695Sgavinm 
22198a40a695Sgavinm const char *
22208a40a695Sgavinm cpuid_getchiprevstr(struct cpu *cpu)
22218a40a695Sgavinm {
22228a40a695Sgavinm 	ASSERT(cpuid_checkpass(cpu, 1));
22238a40a695Sgavinm 	return (cpu->cpu_m.mcpu_cpi->cpi_chiprevstr);
22248a40a695Sgavinm }
22258a40a695Sgavinm 
22268a40a695Sgavinm uint32_t
22278a40a695Sgavinm cpuid_getsockettype(struct cpu *cpu)
22288a40a695Sgavinm {
22298a40a695Sgavinm 	ASSERT(cpuid_checkpass(cpu, 1));
22308a40a695Sgavinm 	return (cpu->cpu_m.mcpu_cpi->cpi_socket);
22318a40a695Sgavinm }
22328a40a695Sgavinm 
2233fb2f18f8Sesaxe int
2234fb2f18f8Sesaxe cpuid_get_chipid(cpu_t *cpu)
22357c478bd9Sstevel@tonic-gate {
22367c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
22377c478bd9Sstevel@tonic-gate 
22388949bcd6Sandrei 	if (cpuid_is_cmt(cpu))
22397c478bd9Sstevel@tonic-gate 		return (cpu->cpu_m.mcpu_cpi->cpi_chipid);
22407c478bd9Sstevel@tonic-gate 	return (cpu->cpu_id);
22417c478bd9Sstevel@tonic-gate }
22427c478bd9Sstevel@tonic-gate 
22438949bcd6Sandrei id_t
2244fb2f18f8Sesaxe cpuid_get_coreid(cpu_t *cpu)
22458949bcd6Sandrei {
22468949bcd6Sandrei 	ASSERT(cpuid_checkpass(cpu, 1));
22478949bcd6Sandrei 	return (cpu->cpu_m.mcpu_cpi->cpi_coreid);
22488949bcd6Sandrei }
22498949bcd6Sandrei 
22507c478bd9Sstevel@tonic-gate int
2251fb2f18f8Sesaxe cpuid_get_clogid(cpu_t *cpu)
22527c478bd9Sstevel@tonic-gate {
22537c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
22547c478bd9Sstevel@tonic-gate 	return (cpu->cpu_m.mcpu_cpi->cpi_clogid);
22557c478bd9Sstevel@tonic-gate }
22567c478bd9Sstevel@tonic-gate 
22577c478bd9Sstevel@tonic-gate void
22587c478bd9Sstevel@tonic-gate cpuid_get_addrsize(cpu_t *cpu, uint_t *pabits, uint_t *vabits)
22597c478bd9Sstevel@tonic-gate {
22607c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi;
22617c478bd9Sstevel@tonic-gate 
22627c478bd9Sstevel@tonic-gate 	if (cpu == NULL)
22637c478bd9Sstevel@tonic-gate 		cpu = CPU;
22647c478bd9Sstevel@tonic-gate 	cpi = cpu->cpu_m.mcpu_cpi;
22657c478bd9Sstevel@tonic-gate 
22667c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
22677c478bd9Sstevel@tonic-gate 
22687c478bd9Sstevel@tonic-gate 	if (pabits)
22697c478bd9Sstevel@tonic-gate 		*pabits = cpi->cpi_pabits;
22707c478bd9Sstevel@tonic-gate 	if (vabits)
22717c478bd9Sstevel@tonic-gate 		*vabits = cpi->cpi_vabits;
22727c478bd9Sstevel@tonic-gate }
22737c478bd9Sstevel@tonic-gate 
22747c478bd9Sstevel@tonic-gate /*
22757c478bd9Sstevel@tonic-gate  * Returns the number of data TLB entries for a corresponding
22767c478bd9Sstevel@tonic-gate  * pagesize.  If it can't be computed, or isn't known, the
22777c478bd9Sstevel@tonic-gate  * routine returns zero.  If you ask about an architecturally
22787c478bd9Sstevel@tonic-gate  * impossible pagesize, the routine will panic (so that the
22797c478bd9Sstevel@tonic-gate  * hat implementor knows that things are inconsistent.)
22807c478bd9Sstevel@tonic-gate  */
22817c478bd9Sstevel@tonic-gate uint_t
22827c478bd9Sstevel@tonic-gate cpuid_get_dtlb_nent(cpu_t *cpu, size_t pagesize)
22837c478bd9Sstevel@tonic-gate {
22847c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi;
22857c478bd9Sstevel@tonic-gate 	uint_t dtlb_nent = 0;
22867c478bd9Sstevel@tonic-gate 
22877c478bd9Sstevel@tonic-gate 	if (cpu == NULL)
22887c478bd9Sstevel@tonic-gate 		cpu = CPU;
22897c478bd9Sstevel@tonic-gate 	cpi = cpu->cpu_m.mcpu_cpi;
22907c478bd9Sstevel@tonic-gate 
22917c478bd9Sstevel@tonic-gate 	ASSERT(cpuid_checkpass(cpu, 1));
22927c478bd9Sstevel@tonic-gate 
22937c478bd9Sstevel@tonic-gate 	/*
22947c478bd9Sstevel@tonic-gate 	 * Check the L2 TLB info
22957c478bd9Sstevel@tonic-gate 	 */
22967c478bd9Sstevel@tonic-gate 	if (cpi->cpi_xmaxeax >= 0x80000006) {
22978949bcd6Sandrei 		struct cpuid_regs *cp = &cpi->cpi_extd[6];
22987c478bd9Sstevel@tonic-gate 
22997c478bd9Sstevel@tonic-gate 		switch (pagesize) {
23007c478bd9Sstevel@tonic-gate 
23017c478bd9Sstevel@tonic-gate 		case 4 * 1024:
23027c478bd9Sstevel@tonic-gate 			/*
23037c478bd9Sstevel@tonic-gate 			 * All zero in the top 16 bits of the register
23047c478bd9Sstevel@tonic-gate 			 * indicates a unified TLB. Size is in low 16 bits.
23057c478bd9Sstevel@tonic-gate 			 */
23067c478bd9Sstevel@tonic-gate 			if ((cp->cp_ebx & 0xffff0000) == 0)
23077c478bd9Sstevel@tonic-gate 				dtlb_nent = cp->cp_ebx & 0x0000ffff;
23087c478bd9Sstevel@tonic-gate 			else
23097c478bd9Sstevel@tonic-gate 				dtlb_nent = BITX(cp->cp_ebx, 27, 16);
23107c478bd9Sstevel@tonic-gate 			break;
23117c478bd9Sstevel@tonic-gate 
23127c478bd9Sstevel@tonic-gate 		case 2 * 1024 * 1024:
23137c478bd9Sstevel@tonic-gate 			if ((cp->cp_eax & 0xffff0000) == 0)
23147c478bd9Sstevel@tonic-gate 				dtlb_nent = cp->cp_eax & 0x0000ffff;
23157c478bd9Sstevel@tonic-gate 			else
23167c478bd9Sstevel@tonic-gate 				dtlb_nent = BITX(cp->cp_eax, 27, 16);
23177c478bd9Sstevel@tonic-gate 			break;
23187c478bd9Sstevel@tonic-gate 
23197c478bd9Sstevel@tonic-gate 		default:
23207c478bd9Sstevel@tonic-gate 			panic("unknown L2 pagesize");
23217c478bd9Sstevel@tonic-gate 			/*NOTREACHED*/
23227c478bd9Sstevel@tonic-gate 		}
23237c478bd9Sstevel@tonic-gate 	}
23247c478bd9Sstevel@tonic-gate 
23257c478bd9Sstevel@tonic-gate 	if (dtlb_nent != 0)
23267c478bd9Sstevel@tonic-gate 		return (dtlb_nent);
23277c478bd9Sstevel@tonic-gate 
23287c478bd9Sstevel@tonic-gate 	/*
23297c478bd9Sstevel@tonic-gate 	 * No L2 TLB support for this size, try L1.
23307c478bd9Sstevel@tonic-gate 	 */
23317c478bd9Sstevel@tonic-gate 	if (cpi->cpi_xmaxeax >= 0x80000005) {
23328949bcd6Sandrei 		struct cpuid_regs *cp = &cpi->cpi_extd[5];
23337c478bd9Sstevel@tonic-gate 
23347c478bd9Sstevel@tonic-gate 		switch (pagesize) {
23357c478bd9Sstevel@tonic-gate 		case 4 * 1024:
23367c478bd9Sstevel@tonic-gate 			dtlb_nent = BITX(cp->cp_ebx, 23, 16);
23377c478bd9Sstevel@tonic-gate 			break;
23387c478bd9Sstevel@tonic-gate 		case 2 * 1024 * 1024:
23397c478bd9Sstevel@tonic-gate 			dtlb_nent = BITX(cp->cp_eax, 23, 16);
23407c478bd9Sstevel@tonic-gate 			break;
23417c478bd9Sstevel@tonic-gate 		default:
23427c478bd9Sstevel@tonic-gate 			panic("unknown L1 d-TLB pagesize");
23437c478bd9Sstevel@tonic-gate 			/*NOTREACHED*/
23447c478bd9Sstevel@tonic-gate 		}
23457c478bd9Sstevel@tonic-gate 	}
23467c478bd9Sstevel@tonic-gate 
23477c478bd9Sstevel@tonic-gate 	return (dtlb_nent);
23487c478bd9Sstevel@tonic-gate }
23497c478bd9Sstevel@tonic-gate 
23507c478bd9Sstevel@tonic-gate /*
23517c478bd9Sstevel@tonic-gate  * Return 0 if the erratum is not present or not applicable, positive
23527c478bd9Sstevel@tonic-gate  * if it is, and negative if the status of the erratum is unknown.
23537c478bd9Sstevel@tonic-gate  *
23547c478bd9Sstevel@tonic-gate  * See "Revision Guide for AMD Athlon(tm) 64 and AMD Opteron(tm)
23552201b277Skucharsk  * Processors" #25759, Rev 3.57, August 2005
23567c478bd9Sstevel@tonic-gate  */
23577c478bd9Sstevel@tonic-gate int
23587c478bd9Sstevel@tonic-gate cpuid_opteron_erratum(cpu_t *cpu, uint_t erratum)
23597c478bd9Sstevel@tonic-gate {
23607c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi = cpu->cpu_m.mcpu_cpi;
23618949bcd6Sandrei 	uint_t eax;
23627c478bd9Sstevel@tonic-gate 
2363ea99987eSsethg 	/*
2364ea99987eSsethg 	 * Bail out if this CPU isn't an AMD CPU, or if it's
2365ea99987eSsethg 	 * a legacy (32-bit) AMD CPU.
2366ea99987eSsethg 	 */
2367ea99987eSsethg 	if (cpi->cpi_vendor != X86_VENDOR_AMD ||
2368875b116eSkchow 	    cpi->cpi_family == 4 || cpi->cpi_family == 5 ||
2369875b116eSkchow 	    cpi->cpi_family == 6)
23708a40a695Sgavinm 
23717c478bd9Sstevel@tonic-gate 		return (0);
23727c478bd9Sstevel@tonic-gate 
23737c478bd9Sstevel@tonic-gate 	eax = cpi->cpi_std[1].cp_eax;
23747c478bd9Sstevel@tonic-gate 
23757c478bd9Sstevel@tonic-gate #define	SH_B0(eax)	(eax == 0xf40 || eax == 0xf50)
23767c478bd9Sstevel@tonic-gate #define	SH_B3(eax) 	(eax == 0xf51)
2377ee88d2b9Skchow #define	B(eax)		(SH_B0(eax) || SH_B3(eax))
23787c478bd9Sstevel@tonic-gate 
23797c478bd9Sstevel@tonic-gate #define	SH_C0(eax)	(eax == 0xf48 || eax == 0xf58)
23807c478bd9Sstevel@tonic-gate 
23817c478bd9Sstevel@tonic-gate #define	SH_CG(eax)	(eax == 0xf4a || eax == 0xf5a || eax == 0xf7a)
23827c478bd9Sstevel@tonic-gate #define	DH_CG(eax)	(eax == 0xfc0 || eax == 0xfe0 || eax == 0xff0)
23837c478bd9Sstevel@tonic-gate #define	CH_CG(eax)	(eax == 0xf82 || eax == 0xfb2)
2384ee88d2b9Skchow #define	CG(eax)		(SH_CG(eax) || DH_CG(eax) || CH_CG(eax))
23857c478bd9Sstevel@tonic-gate 
23867c478bd9Sstevel@tonic-gate #define	SH_D0(eax)	(eax == 0x10f40 || eax == 0x10f50 || eax == 0x10f70)
23877c478bd9Sstevel@tonic-gate #define	DH_D0(eax)	(eax == 0x10fc0 || eax == 0x10ff0)
23887c478bd9Sstevel@tonic-gate #define	CH_D0(eax)	(eax == 0x10f80 || eax == 0x10fb0)
2389ee88d2b9Skchow #define	D0(eax)		(SH_D0(eax) || DH_D0(eax) || CH_D0(eax))
23907c478bd9Sstevel@tonic-gate 
23917c478bd9Sstevel@tonic-gate #define	SH_E0(eax)	(eax == 0x20f50 || eax == 0x20f40 || eax == 0x20f70)
23927c478bd9Sstevel@tonic-gate #define	JH_E1(eax)	(eax == 0x20f10)	/* JH8_E0 had 0x20f30 */
23937c478bd9Sstevel@tonic-gate #define	DH_E3(eax)	(eax == 0x20fc0 || eax == 0x20ff0)
23947c478bd9Sstevel@tonic-gate #define	SH_E4(eax)	(eax == 0x20f51 || eax == 0x20f71)
23957c478bd9Sstevel@tonic-gate #define	BH_E4(eax)	(eax == 0x20fb1)
23967c478bd9Sstevel@tonic-gate #define	SH_E5(eax)	(eax == 0x20f42)
23977c478bd9Sstevel@tonic-gate #define	DH_E6(eax)	(eax == 0x20ff2 || eax == 0x20fc2)
23987c478bd9Sstevel@tonic-gate #define	JH_E6(eax)	(eax == 0x20f12 || eax == 0x20f32)
2399ee88d2b9Skchow #define	EX(eax)		(SH_E0(eax) || JH_E1(eax) || DH_E3(eax) || \
2400ee88d2b9Skchow 			    SH_E4(eax) || BH_E4(eax) || SH_E5(eax) || \
2401ee88d2b9Skchow 			    DH_E6(eax) || JH_E6(eax))
24027c478bd9Sstevel@tonic-gate 
24037c478bd9Sstevel@tonic-gate 	switch (erratum) {
24047c478bd9Sstevel@tonic-gate 	case 1:
2405875b116eSkchow 		return (cpi->cpi_family < 0x10);
24067c478bd9Sstevel@tonic-gate 	case 51:	/* what does the asterisk mean? */
24077c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax));
24087c478bd9Sstevel@tonic-gate 	case 52:
24097c478bd9Sstevel@tonic-gate 		return (B(eax));
24107c478bd9Sstevel@tonic-gate 	case 57:
2411875b116eSkchow 		return (cpi->cpi_family <= 0x10);
24127c478bd9Sstevel@tonic-gate 	case 58:
24137c478bd9Sstevel@tonic-gate 		return (B(eax));
24147c478bd9Sstevel@tonic-gate 	case 60:
2415875b116eSkchow 		return (cpi->cpi_family <= 0x10);
24167c478bd9Sstevel@tonic-gate 	case 61:
24177c478bd9Sstevel@tonic-gate 	case 62:
24187c478bd9Sstevel@tonic-gate 	case 63:
24197c478bd9Sstevel@tonic-gate 	case 64:
24207c478bd9Sstevel@tonic-gate 	case 65:
24217c478bd9Sstevel@tonic-gate 	case 66:
24227c478bd9Sstevel@tonic-gate 	case 68:
24237c478bd9Sstevel@tonic-gate 	case 69:
24247c478bd9Sstevel@tonic-gate 	case 70:
24257c478bd9Sstevel@tonic-gate 	case 71:
24267c478bd9Sstevel@tonic-gate 		return (B(eax));
24277c478bd9Sstevel@tonic-gate 	case 72:
24287c478bd9Sstevel@tonic-gate 		return (SH_B0(eax));
24297c478bd9Sstevel@tonic-gate 	case 74:
24307c478bd9Sstevel@tonic-gate 		return (B(eax));
24317c478bd9Sstevel@tonic-gate 	case 75:
2432875b116eSkchow 		return (cpi->cpi_family < 0x10);
24337c478bd9Sstevel@tonic-gate 	case 76:
24347c478bd9Sstevel@tonic-gate 		return (B(eax));
24357c478bd9Sstevel@tonic-gate 	case 77:
2436875b116eSkchow 		return (cpi->cpi_family <= 0x10);
24377c478bd9Sstevel@tonic-gate 	case 78:
24387c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax));
24397c478bd9Sstevel@tonic-gate 	case 79:
24407c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax) || D0(eax) || EX(eax));
24417c478bd9Sstevel@tonic-gate 	case 80:
24427c478bd9Sstevel@tonic-gate 	case 81:
24437c478bd9Sstevel@tonic-gate 	case 82:
24447c478bd9Sstevel@tonic-gate 		return (B(eax));
24457c478bd9Sstevel@tonic-gate 	case 83:
24467c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax));
24477c478bd9Sstevel@tonic-gate 	case 85:
2448875b116eSkchow 		return (cpi->cpi_family < 0x10);
24497c478bd9Sstevel@tonic-gate 	case 86:
24507c478bd9Sstevel@tonic-gate 		return (SH_C0(eax) || CG(eax));
24517c478bd9Sstevel@tonic-gate 	case 88:
24527c478bd9Sstevel@tonic-gate #if !defined(__amd64)
24537c478bd9Sstevel@tonic-gate 		return (0);
24547c478bd9Sstevel@tonic-gate #else
24557c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax));
24567c478bd9Sstevel@tonic-gate #endif
24577c478bd9Sstevel@tonic-gate 	case 89:
2458875b116eSkchow 		return (cpi->cpi_family < 0x10);
24597c478bd9Sstevel@tonic-gate 	case 90:
24607c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax));
24617c478bd9Sstevel@tonic-gate 	case 91:
24627c478bd9Sstevel@tonic-gate 	case 92:
24637c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax));
24647c478bd9Sstevel@tonic-gate 	case 93:
24657c478bd9Sstevel@tonic-gate 		return (SH_C0(eax));
24667c478bd9Sstevel@tonic-gate 	case 94:
24677c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax));
24687c478bd9Sstevel@tonic-gate 	case 95:
24697c478bd9Sstevel@tonic-gate #if !defined(__amd64)
24707c478bd9Sstevel@tonic-gate 		return (0);
24717c478bd9Sstevel@tonic-gate #else
24727c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax));
24737c478bd9Sstevel@tonic-gate #endif
24747c478bd9Sstevel@tonic-gate 	case 96:
24757c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax));
24767c478bd9Sstevel@tonic-gate 	case 97:
24777c478bd9Sstevel@tonic-gate 	case 98:
24787c478bd9Sstevel@tonic-gate 		return (SH_C0(eax) || CG(eax));
24797c478bd9Sstevel@tonic-gate 	case 99:
24807c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax) || D0(eax));
24817c478bd9Sstevel@tonic-gate 	case 100:
24827c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax));
24837c478bd9Sstevel@tonic-gate 	case 101:
24847c478bd9Sstevel@tonic-gate 	case 103:
24857c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax) || D0(eax));
24867c478bd9Sstevel@tonic-gate 	case 104:
24877c478bd9Sstevel@tonic-gate 		return (SH_C0(eax) || CG(eax) || D0(eax));
24887c478bd9Sstevel@tonic-gate 	case 105:
24897c478bd9Sstevel@tonic-gate 	case 106:
24907c478bd9Sstevel@tonic-gate 	case 107:
24917c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax) || D0(eax));
24927c478bd9Sstevel@tonic-gate 	case 108:
24937c478bd9Sstevel@tonic-gate 		return (DH_CG(eax));
24947c478bd9Sstevel@tonic-gate 	case 109:
24957c478bd9Sstevel@tonic-gate 		return (SH_C0(eax) || CG(eax) || D0(eax));
24967c478bd9Sstevel@tonic-gate 	case 110:
24977c478bd9Sstevel@tonic-gate 		return (D0(eax) || EX(eax));
24987c478bd9Sstevel@tonic-gate 	case 111:
24997c478bd9Sstevel@tonic-gate 		return (CG(eax));
25007c478bd9Sstevel@tonic-gate 	case 112:
25017c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax) || D0(eax) || EX(eax));
25027c478bd9Sstevel@tonic-gate 	case 113:
25037c478bd9Sstevel@tonic-gate 		return (eax == 0x20fc0);
25047c478bd9Sstevel@tonic-gate 	case 114:
25057c478bd9Sstevel@tonic-gate 		return (SH_E0(eax) || JH_E1(eax) || DH_E3(eax));
25067c478bd9Sstevel@tonic-gate 	case 115:
25077c478bd9Sstevel@tonic-gate 		return (SH_E0(eax) || JH_E1(eax));
25087c478bd9Sstevel@tonic-gate 	case 116:
25097c478bd9Sstevel@tonic-gate 		return (SH_E0(eax) || JH_E1(eax) || DH_E3(eax));
25107c478bd9Sstevel@tonic-gate 	case 117:
25117c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax) || D0(eax));
25127c478bd9Sstevel@tonic-gate 	case 118:
25137c478bd9Sstevel@tonic-gate 		return (SH_E0(eax) || JH_E1(eax) || SH_E4(eax) || BH_E4(eax) ||
25147c478bd9Sstevel@tonic-gate 		    JH_E6(eax));
25157c478bd9Sstevel@tonic-gate 	case 121:
25167c478bd9Sstevel@tonic-gate 		return (B(eax) || SH_C0(eax) || CG(eax) || D0(eax) || EX(eax));
25177c478bd9Sstevel@tonic-gate 	case 122:
2518875b116eSkchow 		return (cpi->cpi_family < 0x10);
25197c478bd9Sstevel@tonic-gate 	case 123:
25207c478bd9Sstevel@tonic-gate 		return (JH_E1(eax) || BH_E4(eax) || JH_E6(eax));
25212201b277Skucharsk 	case 131:
2522875b116eSkchow 		return (cpi->cpi_family < 0x10);
2523ef50d8c0Sesaxe 	case 6336786:
2524ef50d8c0Sesaxe 		/*
2525ef50d8c0Sesaxe 		 * Test for AdvPowerMgmtInfo.TscPStateInvariant
2526875b116eSkchow 		 * if this is a K8 family or newer processor
2527ef50d8c0Sesaxe 		 */
2528ef50d8c0Sesaxe 		if (CPI_FAMILY(cpi) == 0xf) {
25298949bcd6Sandrei 			struct cpuid_regs regs;
25308949bcd6Sandrei 			regs.cp_eax = 0x80000007;
25318949bcd6Sandrei 			(void) __cpuid_insn(&regs);
25328949bcd6Sandrei 			return (!(regs.cp_edx & 0x100));
2533ef50d8c0Sesaxe 		}
2534ef50d8c0Sesaxe 		return (0);
2535ee88d2b9Skchow 	case 6323525:
2536ee88d2b9Skchow 		return (((((eax >> 12) & 0xff00) + (eax & 0xf00)) |
2537ee88d2b9Skchow 		    (((eax >> 4) & 0xf) | ((eax >> 12) & 0xf0))) < 0xf40);
2538ee88d2b9Skchow 
25397c478bd9Sstevel@tonic-gate 	default:
25407c478bd9Sstevel@tonic-gate 		return (-1);
25417c478bd9Sstevel@tonic-gate 	}
25427c478bd9Sstevel@tonic-gate }
25437c478bd9Sstevel@tonic-gate 
25447c478bd9Sstevel@tonic-gate static const char assoc_str[] = "associativity";
25457c478bd9Sstevel@tonic-gate static const char line_str[] = "line-size";
25467c478bd9Sstevel@tonic-gate static const char size_str[] = "size";
25477c478bd9Sstevel@tonic-gate 
25487c478bd9Sstevel@tonic-gate static void
25497c478bd9Sstevel@tonic-gate add_cache_prop(dev_info_t *devi, const char *label, const char *type,
25507c478bd9Sstevel@tonic-gate     uint32_t val)
25517c478bd9Sstevel@tonic-gate {
25527c478bd9Sstevel@tonic-gate 	char buf[128];
25537c478bd9Sstevel@tonic-gate 
25547c478bd9Sstevel@tonic-gate 	/*
25557c478bd9Sstevel@tonic-gate 	 * ndi_prop_update_int() is used because it is desirable for
25567c478bd9Sstevel@tonic-gate 	 * DDI_PROP_HW_DEF and DDI_PROP_DONTSLEEP to be set.
25577c478bd9Sstevel@tonic-gate 	 */
25587c478bd9Sstevel@tonic-gate 	if (snprintf(buf, sizeof (buf), "%s-%s", label, type) < sizeof (buf))
25597c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, devi, buf, val);
25607c478bd9Sstevel@tonic-gate }
25617c478bd9Sstevel@tonic-gate 
25627c478bd9Sstevel@tonic-gate /*
25637c478bd9Sstevel@tonic-gate  * Intel-style cache/tlb description
25647c478bd9Sstevel@tonic-gate  *
25657c478bd9Sstevel@tonic-gate  * Standard cpuid level 2 gives a randomly ordered
25667c478bd9Sstevel@tonic-gate  * selection of tags that index into a table that describes
25677c478bd9Sstevel@tonic-gate  * cache and tlb properties.
25687c478bd9Sstevel@tonic-gate  */
25697c478bd9Sstevel@tonic-gate 
25707c478bd9Sstevel@tonic-gate static const char l1_icache_str[] = "l1-icache";
25717c478bd9Sstevel@tonic-gate static const char l1_dcache_str[] = "l1-dcache";
25727c478bd9Sstevel@tonic-gate static const char l2_cache_str[] = "l2-cache";
2573ae115bc7Smrj static const char l3_cache_str[] = "l3-cache";
25747c478bd9Sstevel@tonic-gate static const char itlb4k_str[] = "itlb-4K";
25757c478bd9Sstevel@tonic-gate static const char dtlb4k_str[] = "dtlb-4K";
25767c478bd9Sstevel@tonic-gate static const char itlb4M_str[] = "itlb-4M";
25777c478bd9Sstevel@tonic-gate static const char dtlb4M_str[] = "dtlb-4M";
25787c478bd9Sstevel@tonic-gate static const char itlb424_str[] = "itlb-4K-2M-4M";
25797c478bd9Sstevel@tonic-gate static const char dtlb44_str[] = "dtlb-4K-4M";
25807c478bd9Sstevel@tonic-gate static const char sl1_dcache_str[] = "sectored-l1-dcache";
25817c478bd9Sstevel@tonic-gate static const char sl2_cache_str[] = "sectored-l2-cache";
25827c478bd9Sstevel@tonic-gate static const char itrace_str[] = "itrace-cache";
25837c478bd9Sstevel@tonic-gate static const char sl3_cache_str[] = "sectored-l3-cache";
25847c478bd9Sstevel@tonic-gate 
25857c478bd9Sstevel@tonic-gate static const struct cachetab {
25867c478bd9Sstevel@tonic-gate 	uint8_t 	ct_code;
25877c478bd9Sstevel@tonic-gate 	uint8_t		ct_assoc;
25887c478bd9Sstevel@tonic-gate 	uint16_t 	ct_line_size;
25897c478bd9Sstevel@tonic-gate 	size_t		ct_size;
25907c478bd9Sstevel@tonic-gate 	const char	*ct_label;
25917c478bd9Sstevel@tonic-gate } intel_ctab[] = {
25927c478bd9Sstevel@tonic-gate 	/* maintain descending order! */
2593ae115bc7Smrj 	{ 0xb4, 4, 0, 256, dtlb4k_str },
25947c478bd9Sstevel@tonic-gate 	{ 0xb3, 4, 0, 128, dtlb4k_str },
25957c478bd9Sstevel@tonic-gate 	{ 0xb0, 4, 0, 128, itlb4k_str },
25967c478bd9Sstevel@tonic-gate 	{ 0x87, 8, 64, 1024*1024, l2_cache_str},
25977c478bd9Sstevel@tonic-gate 	{ 0x86, 4, 64, 512*1024, l2_cache_str},
25987c478bd9Sstevel@tonic-gate 	{ 0x85, 8, 32, 2*1024*1024, l2_cache_str},
25997c478bd9Sstevel@tonic-gate 	{ 0x84, 8, 32, 1024*1024, l2_cache_str},
26007c478bd9Sstevel@tonic-gate 	{ 0x83, 8, 32, 512*1024, l2_cache_str},
26017c478bd9Sstevel@tonic-gate 	{ 0x82, 8, 32, 256*1024, l2_cache_str},
26027c478bd9Sstevel@tonic-gate 	{ 0x7f, 2, 64, 512*1024, l2_cache_str},
26037c478bd9Sstevel@tonic-gate 	{ 0x7d, 8, 64, 2*1024*1024, sl2_cache_str},
26047c478bd9Sstevel@tonic-gate 	{ 0x7c, 8, 64, 1024*1024, sl2_cache_str},
26057c478bd9Sstevel@tonic-gate 	{ 0x7b, 8, 64, 512*1024, sl2_cache_str},
26067c478bd9Sstevel@tonic-gate 	{ 0x7a, 8, 64, 256*1024, sl2_cache_str},
26077c478bd9Sstevel@tonic-gate 	{ 0x79, 8, 64, 128*1024, sl2_cache_str},
26087c478bd9Sstevel@tonic-gate 	{ 0x78, 8, 64, 1024*1024, l2_cache_str},
2609ae115bc7Smrj 	{ 0x73, 8, 0, 64*1024, itrace_str},
26107c478bd9Sstevel@tonic-gate 	{ 0x72, 8, 0, 32*1024, itrace_str},
26117c478bd9Sstevel@tonic-gate 	{ 0x71, 8, 0, 16*1024, itrace_str},
26127c478bd9Sstevel@tonic-gate 	{ 0x70, 8, 0, 12*1024, itrace_str},
26137c478bd9Sstevel@tonic-gate 	{ 0x68, 4, 64, 32*1024, sl1_dcache_str},
26147c478bd9Sstevel@tonic-gate 	{ 0x67, 4, 64, 16*1024, sl1_dcache_str},
26157c478bd9Sstevel@tonic-gate 	{ 0x66, 4, 64, 8*1024, sl1_dcache_str},
26167c478bd9Sstevel@tonic-gate 	{ 0x60, 8, 64, 16*1024, sl1_dcache_str},
26177c478bd9Sstevel@tonic-gate 	{ 0x5d, 0, 0, 256, dtlb44_str},
26187c478bd9Sstevel@tonic-gate 	{ 0x5c, 0, 0, 128, dtlb44_str},
26197c478bd9Sstevel@tonic-gate 	{ 0x5b, 0, 0, 64, dtlb44_str},
26207c478bd9Sstevel@tonic-gate 	{ 0x52, 0, 0, 256, itlb424_str},
26217c478bd9Sstevel@tonic-gate 	{ 0x51, 0, 0, 128, itlb424_str},
26227c478bd9Sstevel@tonic-gate 	{ 0x50, 0, 0, 64, itlb424_str},
2623ae115bc7Smrj 	{ 0x4d, 16, 64, 16*1024*1024, l3_cache_str},
2624ae115bc7Smrj 	{ 0x4c, 12, 64, 12*1024*1024, l3_cache_str},
2625ae115bc7Smrj 	{ 0x4b, 16, 64, 8*1024*1024, l3_cache_str},
2626ae115bc7Smrj 	{ 0x4a, 12, 64, 6*1024*1024, l3_cache_str},
2627ae115bc7Smrj 	{ 0x49, 16, 64, 4*1024*1024, l3_cache_str},
2628ae115bc7Smrj 	{ 0x47, 8, 64, 8*1024*1024, l3_cache_str},
2629ae115bc7Smrj 	{ 0x46, 4, 64, 4*1024*1024, l3_cache_str},
26307c478bd9Sstevel@tonic-gate 	{ 0x45, 4, 32, 2*1024*1024, l2_cache_str},
26317c478bd9Sstevel@tonic-gate 	{ 0x44, 4, 32, 1024*1024, l2_cache_str},
26327c478bd9Sstevel@tonic-gate 	{ 0x43, 4, 32, 512*1024, l2_cache_str},
26337c478bd9Sstevel@tonic-gate 	{ 0x42, 4, 32, 256*1024, l2_cache_str},
26347c478bd9Sstevel@tonic-gate 	{ 0x41, 4, 32, 128*1024, l2_cache_str},
2635ae115bc7Smrj 	{ 0x3e, 4, 64, 512*1024, sl2_cache_str},
2636ae115bc7Smrj 	{ 0x3d, 6, 64, 384*1024, sl2_cache_str},
26377c478bd9Sstevel@tonic-gate 	{ 0x3c, 4, 64, 256*1024, sl2_cache_str},
26387c478bd9Sstevel@tonic-gate 	{ 0x3b, 2, 64, 128*1024, sl2_cache_str},
2639ae115bc7Smrj 	{ 0x3a, 6, 64, 192*1024, sl2_cache_str},
26407c478bd9Sstevel@tonic-gate 	{ 0x39, 4, 64, 128*1024, sl2_cache_str},
26417c478bd9Sstevel@tonic-gate 	{ 0x30, 8, 64, 32*1024, l1_icache_str},
26427c478bd9Sstevel@tonic-gate 	{ 0x2c, 8, 64, 32*1024, l1_dcache_str},
26437c478bd9Sstevel@tonic-gate 	{ 0x29, 8, 64, 4096*1024, sl3_cache_str},
26447c478bd9Sstevel@tonic-gate 	{ 0x25, 8, 64, 2048*1024, sl3_cache_str},
26457c478bd9Sstevel@tonic-gate 	{ 0x23, 8, 64, 1024*1024, sl3_cache_str},
26467c478bd9Sstevel@tonic-gate 	{ 0x22, 4, 64, 512*1024, sl3_cache_str},
26477c478bd9Sstevel@tonic-gate 	{ 0x0c, 4, 32, 16*1024, l1_dcache_str},
2648ae115bc7Smrj 	{ 0x0b, 4, 0, 4, itlb4M_str},
26497c478bd9Sstevel@tonic-gate 	{ 0x0a, 2, 32, 8*1024, l1_dcache_str},
26507c478bd9Sstevel@tonic-gate 	{ 0x08, 4, 32, 16*1024, l1_icache_str},
26517c478bd9Sstevel@tonic-gate 	{ 0x06, 4, 32, 8*1024, l1_icache_str},
26527c478bd9Sstevel@tonic-gate 	{ 0x04, 4, 0, 8, dtlb4M_str},
26537c478bd9Sstevel@tonic-gate 	{ 0x03, 4, 0, 64, dtlb4k_str},
26547c478bd9Sstevel@tonic-gate 	{ 0x02, 4, 0, 2, itlb4M_str},
26557c478bd9Sstevel@tonic-gate 	{ 0x01, 4, 0, 32, itlb4k_str},
26567c478bd9Sstevel@tonic-gate 	{ 0 }
26577c478bd9Sstevel@tonic-gate };
26587c478bd9Sstevel@tonic-gate 
26597c478bd9Sstevel@tonic-gate static const struct cachetab cyrix_ctab[] = {
26607c478bd9Sstevel@tonic-gate 	{ 0x70, 4, 0, 32, "tlb-4K" },
26617c478bd9Sstevel@tonic-gate 	{ 0x80, 4, 16, 16*1024, "l1-cache" },
26627c478bd9Sstevel@tonic-gate 	{ 0 }
26637c478bd9Sstevel@tonic-gate };
26647c478bd9Sstevel@tonic-gate 
26657c478bd9Sstevel@tonic-gate /*
26667c478bd9Sstevel@tonic-gate  * Search a cache table for a matching entry
26677c478bd9Sstevel@tonic-gate  */
26687c478bd9Sstevel@tonic-gate static const struct cachetab *
26697c478bd9Sstevel@tonic-gate find_cacheent(const struct cachetab *ct, uint_t code)
26707c478bd9Sstevel@tonic-gate {
26717c478bd9Sstevel@tonic-gate 	if (code != 0) {
26727c478bd9Sstevel@tonic-gate 		for (; ct->ct_code != 0; ct++)
26737c478bd9Sstevel@tonic-gate 			if (ct->ct_code <= code)
26747c478bd9Sstevel@tonic-gate 				break;
26757c478bd9Sstevel@tonic-gate 		if (ct->ct_code == code)
26767c478bd9Sstevel@tonic-gate 			return (ct);
26777c478bd9Sstevel@tonic-gate 	}
26787c478bd9Sstevel@tonic-gate 	return (NULL);
26797c478bd9Sstevel@tonic-gate }
26807c478bd9Sstevel@tonic-gate 
26817c478bd9Sstevel@tonic-gate /*
26827c478bd9Sstevel@tonic-gate  * Walk the cacheinfo descriptor, applying 'func' to every valid element
26837c478bd9Sstevel@tonic-gate  * The walk is terminated if the walker returns non-zero.
26847c478bd9Sstevel@tonic-gate  */
26857c478bd9Sstevel@tonic-gate static void
26867c478bd9Sstevel@tonic-gate intel_walk_cacheinfo(struct cpuid_info *cpi,
26877c478bd9Sstevel@tonic-gate     void *arg, int (*func)(void *, const struct cachetab *))
26887c478bd9Sstevel@tonic-gate {
26897c478bd9Sstevel@tonic-gate 	const struct cachetab *ct;
26907c478bd9Sstevel@tonic-gate 	uint8_t *dp;
26917c478bd9Sstevel@tonic-gate 	int i;
26927c478bd9Sstevel@tonic-gate 
26937c478bd9Sstevel@tonic-gate 	if ((dp = cpi->cpi_cacheinfo) == NULL)
26947c478bd9Sstevel@tonic-gate 		return;
2695f1d742a9Sksadhukh 	for (i = 0; i < cpi->cpi_ncache; i++, dp++) {
2696f1d742a9Sksadhukh 		/*
2697f1d742a9Sksadhukh 		 * For overloaded descriptor 0x49 we use cpuid function 4
2698f1d742a9Sksadhukh 		 * if supported by the current processor, to update
2699f1d742a9Sksadhukh 		 * cache information.
2700f1d742a9Sksadhukh 		 */
2701f1d742a9Sksadhukh 		if (*dp == 0x49 && cpi->cpi_maxeax >= 0x4) {
2702f1d742a9Sksadhukh 			intel_cpuid_4_cache_info(arg, cpi);
2703f1d742a9Sksadhukh 			continue;
2704f1d742a9Sksadhukh 		}
2705f1d742a9Sksadhukh 
27067c478bd9Sstevel@tonic-gate 		if ((ct = find_cacheent(intel_ctab, *dp)) != NULL) {
27077c478bd9Sstevel@tonic-gate 			if (func(arg, ct) != 0)
27087c478bd9Sstevel@tonic-gate 				break;
27097c478bd9Sstevel@tonic-gate 		}
27107c478bd9Sstevel@tonic-gate 	}
2711f1d742a9Sksadhukh }
27127c478bd9Sstevel@tonic-gate 
27137c478bd9Sstevel@tonic-gate /*
27147c478bd9Sstevel@tonic-gate  * (Like the Intel one, except for Cyrix CPUs)
27157c478bd9Sstevel@tonic-gate  */
27167c478bd9Sstevel@tonic-gate static void
27177c478bd9Sstevel@tonic-gate cyrix_walk_cacheinfo(struct cpuid_info *cpi,
27187c478bd9Sstevel@tonic-gate     void *arg, int (*func)(void *, const struct cachetab *))
27197c478bd9Sstevel@tonic-gate {
27207c478bd9Sstevel@tonic-gate 	const struct cachetab *ct;
27217c478bd9Sstevel@tonic-gate 	uint8_t *dp;
27227c478bd9Sstevel@tonic-gate 	int i;
27237c478bd9Sstevel@tonic-gate 
27247c478bd9Sstevel@tonic-gate 	if ((dp = cpi->cpi_cacheinfo) == NULL)
27257c478bd9Sstevel@tonic-gate 		return;
27267c478bd9Sstevel@tonic-gate 	for (i = 0; i < cpi->cpi_ncache; i++, dp++) {
27277c478bd9Sstevel@tonic-gate 		/*
27287c478bd9Sstevel@tonic-gate 		 * Search Cyrix-specific descriptor table first ..
27297c478bd9Sstevel@tonic-gate 		 */
27307c478bd9Sstevel@tonic-gate 		if ((ct = find_cacheent(cyrix_ctab, *dp)) != NULL) {
27317c478bd9Sstevel@tonic-gate 			if (func(arg, ct) != 0)
27327c478bd9Sstevel@tonic-gate 				break;
27337c478bd9Sstevel@tonic-gate 			continue;
27347c478bd9Sstevel@tonic-gate 		}
27357c478bd9Sstevel@tonic-gate 		/*
27367c478bd9Sstevel@tonic-gate 		 * .. else fall back to the Intel one
27377c478bd9Sstevel@tonic-gate 		 */
27387c478bd9Sstevel@tonic-gate 		if ((ct = find_cacheent(intel_ctab, *dp)) != NULL) {
27397c478bd9Sstevel@tonic-gate 			if (func(arg, ct) != 0)
27407c478bd9Sstevel@tonic-gate 				break;
27417c478bd9Sstevel@tonic-gate 			continue;
27427c478bd9Sstevel@tonic-gate 		}
27437c478bd9Sstevel@tonic-gate 	}
27447c478bd9Sstevel@tonic-gate }
27457c478bd9Sstevel@tonic-gate 
27467c478bd9Sstevel@tonic-gate /*
27477c478bd9Sstevel@tonic-gate  * A cacheinfo walker that adds associativity, line-size, and size properties
27487c478bd9Sstevel@tonic-gate  * to the devinfo node it is passed as an argument.
27497c478bd9Sstevel@tonic-gate  */
27507c478bd9Sstevel@tonic-gate static int
27517c478bd9Sstevel@tonic-gate add_cacheent_props(void *arg, const struct cachetab *ct)
27527c478bd9Sstevel@tonic-gate {
27537c478bd9Sstevel@tonic-gate 	dev_info_t *devi = arg;
27547c478bd9Sstevel@tonic-gate 
27557c478bd9Sstevel@tonic-gate 	add_cache_prop(devi, ct->ct_label, assoc_str, ct->ct_assoc);
27567c478bd9Sstevel@tonic-gate 	if (ct->ct_line_size != 0)
27577c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, ct->ct_label, line_str,
27587c478bd9Sstevel@tonic-gate 		    ct->ct_line_size);
27597c478bd9Sstevel@tonic-gate 	add_cache_prop(devi, ct->ct_label, size_str, ct->ct_size);
27607c478bd9Sstevel@tonic-gate 	return (0);
27617c478bd9Sstevel@tonic-gate }
27627c478bd9Sstevel@tonic-gate 
2763f1d742a9Sksadhukh /*
2764f1d742a9Sksadhukh  * Add L2 or L3 cache-information using cpuid function 4. This
2765f1d742a9Sksadhukh  * function is called from intel_walk_cacheinfo() when descriptor
2766f1d742a9Sksadhukh  * 0x49 is encountered.
2767f1d742a9Sksadhukh  */
2768f1d742a9Sksadhukh static void
2769f1d742a9Sksadhukh intel_cpuid_4_cache_info(void *arg, struct cpuid_info *cpi)
2770f1d742a9Sksadhukh {
2771f1d742a9Sksadhukh 	uint32_t level, i;
2772f1d742a9Sksadhukh 
2773f1d742a9Sksadhukh 	struct cachetab ct;
2774f1d742a9Sksadhukh 
2775f1d742a9Sksadhukh 	for (i = 0; i < cpi->cpi_std_4_size; i++) {
2776f1d742a9Sksadhukh 		level = CPI_CACHE_LVL(cpi->cpi_std_4[i]);
2777f1d742a9Sksadhukh 
2778f1d742a9Sksadhukh 		if (level == 2 || level == 3) {
2779f1d742a9Sksadhukh 			ct.ct_assoc = CPI_CACHE_WAYS(cpi->cpi_std_4[i]) + 1;
2780f1d742a9Sksadhukh 			ct.ct_line_size =
2781f1d742a9Sksadhukh 			    CPI_CACHE_COH_LN_SZ(cpi->cpi_std_4[i]) + 1;
2782f1d742a9Sksadhukh 			ct.ct_size = ct.ct_assoc *
2783f1d742a9Sksadhukh 			    (CPI_CACHE_PARTS(cpi->cpi_std_4[i]) + 1) *
2784f1d742a9Sksadhukh 			    ct.ct_line_size *
2785f1d742a9Sksadhukh 			    (cpi->cpi_std_4[i]->cp_ecx + 1);
2786f1d742a9Sksadhukh 
2787f1d742a9Sksadhukh 			if (level == 2) {
2788f1d742a9Sksadhukh 				ct.ct_label = l2_cache_str;
2789f1d742a9Sksadhukh 			} else if (level == 3) {
2790f1d742a9Sksadhukh 				ct.ct_label = l3_cache_str;
2791f1d742a9Sksadhukh 			}
2792f1d742a9Sksadhukh 
2793f1d742a9Sksadhukh 			(void) add_cacheent_props(arg,
2794f1d742a9Sksadhukh 			    (const struct cachetab *) (&ct));
2795f1d742a9Sksadhukh 		}
2796f1d742a9Sksadhukh 	}
2797f1d742a9Sksadhukh }
2798f1d742a9Sksadhukh 
27997c478bd9Sstevel@tonic-gate static const char fully_assoc[] = "fully-associative?";
28007c478bd9Sstevel@tonic-gate 
28017c478bd9Sstevel@tonic-gate /*
28027c478bd9Sstevel@tonic-gate  * AMD style cache/tlb description
28037c478bd9Sstevel@tonic-gate  *
28047c478bd9Sstevel@tonic-gate  * Extended functions 5 and 6 directly describe properties of
28057c478bd9Sstevel@tonic-gate  * tlbs and various cache levels.
28067c478bd9Sstevel@tonic-gate  */
28077c478bd9Sstevel@tonic-gate static void
28087c478bd9Sstevel@tonic-gate add_amd_assoc(dev_info_t *devi, const char *label, uint_t assoc)
28097c478bd9Sstevel@tonic-gate {
28107c478bd9Sstevel@tonic-gate 	switch (assoc) {
28117c478bd9Sstevel@tonic-gate 	case 0:	/* reserved; ignore */
28127c478bd9Sstevel@tonic-gate 		break;
28137c478bd9Sstevel@tonic-gate 	default:
28147c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, label, assoc_str, assoc);
28157c478bd9Sstevel@tonic-gate 		break;
28167c478bd9Sstevel@tonic-gate 	case 0xff:
28177c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, label, fully_assoc, 1);
28187c478bd9Sstevel@tonic-gate 		break;
28197c478bd9Sstevel@tonic-gate 	}
28207c478bd9Sstevel@tonic-gate }
28217c478bd9Sstevel@tonic-gate 
28227c478bd9Sstevel@tonic-gate static void
28237c478bd9Sstevel@tonic-gate add_amd_tlb(dev_info_t *devi, const char *label, uint_t assoc, uint_t size)
28247c478bd9Sstevel@tonic-gate {
28257c478bd9Sstevel@tonic-gate 	if (size == 0)
28267c478bd9Sstevel@tonic-gate 		return;
28277c478bd9Sstevel@tonic-gate 	add_cache_prop(devi, label, size_str, size);
28287c478bd9Sstevel@tonic-gate 	add_amd_assoc(devi, label, assoc);
28297c478bd9Sstevel@tonic-gate }
28307c478bd9Sstevel@tonic-gate 
28317c478bd9Sstevel@tonic-gate static void
28327c478bd9Sstevel@tonic-gate add_amd_cache(dev_info_t *devi, const char *label,
28337c478bd9Sstevel@tonic-gate     uint_t size, uint_t assoc, uint_t lines_per_tag, uint_t line_size)
28347c478bd9Sstevel@tonic-gate {
28357c478bd9Sstevel@tonic-gate 	if (size == 0 || line_size == 0)
28367c478bd9Sstevel@tonic-gate 		return;
28377c478bd9Sstevel@tonic-gate 	add_amd_assoc(devi, label, assoc);
28387c478bd9Sstevel@tonic-gate 	/*
28397c478bd9Sstevel@tonic-gate 	 * Most AMD parts have a sectored cache. Multiple cache lines are
28407c478bd9Sstevel@tonic-gate 	 * associated with each tag. A sector consists of all cache lines
28417c478bd9Sstevel@tonic-gate 	 * associated with a tag. For example, the AMD K6-III has a sector
28427c478bd9Sstevel@tonic-gate 	 * size of 2 cache lines per tag.
28437c478bd9Sstevel@tonic-gate 	 */
28447c478bd9Sstevel@tonic-gate 	if (lines_per_tag != 0)
28457c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, label, "lines-per-tag", lines_per_tag);
28467c478bd9Sstevel@tonic-gate 	add_cache_prop(devi, label, line_str, line_size);
28477c478bd9Sstevel@tonic-gate 	add_cache_prop(devi, label, size_str, size * 1024);
28487c478bd9Sstevel@tonic-gate }
28497c478bd9Sstevel@tonic-gate 
28507c478bd9Sstevel@tonic-gate static void
28517c478bd9Sstevel@tonic-gate add_amd_l2_assoc(dev_info_t *devi, const char *label, uint_t assoc)
28527c478bd9Sstevel@tonic-gate {
28537c478bd9Sstevel@tonic-gate 	switch (assoc) {
28547c478bd9Sstevel@tonic-gate 	case 0:	/* off */
28557c478bd9Sstevel@tonic-gate 		break;
28567c478bd9Sstevel@tonic-gate 	case 1:
28577c478bd9Sstevel@tonic-gate 	case 2:
28587c478bd9Sstevel@tonic-gate 	case 4:
28597c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, label, assoc_str, assoc);
28607c478bd9Sstevel@tonic-gate 		break;
28617c478bd9Sstevel@tonic-gate 	case 6:
28627c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, label, assoc_str, 8);
28637c478bd9Sstevel@tonic-gate 		break;
28647c478bd9Sstevel@tonic-gate 	case 8:
28657c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, label, assoc_str, 16);
28667c478bd9Sstevel@tonic-gate 		break;
28677c478bd9Sstevel@tonic-gate 	case 0xf:
28687c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, label, fully_assoc, 1);
28697c478bd9Sstevel@tonic-gate 		break;
28707c478bd9Sstevel@tonic-gate 	default: /* reserved; ignore */
28717c478bd9Sstevel@tonic-gate 		break;
28727c478bd9Sstevel@tonic-gate 	}
28737c478bd9Sstevel@tonic-gate }
28747c478bd9Sstevel@tonic-gate 
28757c478bd9Sstevel@tonic-gate static void
28767c478bd9Sstevel@tonic-gate add_amd_l2_tlb(dev_info_t *devi, const char *label, uint_t assoc, uint_t size)
28777c478bd9Sstevel@tonic-gate {
28787c478bd9Sstevel@tonic-gate 	if (size == 0 || assoc == 0)
28797c478bd9Sstevel@tonic-gate 		return;
28807c478bd9Sstevel@tonic-gate 	add_amd_l2_assoc(devi, label, assoc);
28817c478bd9Sstevel@tonic-gate 	add_cache_prop(devi, label, size_str, size);
28827c478bd9Sstevel@tonic-gate }
28837c478bd9Sstevel@tonic-gate 
28847c478bd9Sstevel@tonic-gate static void
28857c478bd9Sstevel@tonic-gate add_amd_l2_cache(dev_info_t *devi, const char *label,
28867c478bd9Sstevel@tonic-gate     uint_t size, uint_t assoc, uint_t lines_per_tag, uint_t line_size)
28877c478bd9Sstevel@tonic-gate {
28887c478bd9Sstevel@tonic-gate 	if (size == 0 || assoc == 0 || line_size == 0)
28897c478bd9Sstevel@tonic-gate 		return;
28907c478bd9Sstevel@tonic-gate 	add_amd_l2_assoc(devi, label, assoc);
28917c478bd9Sstevel@tonic-gate 	if (lines_per_tag != 0)
28927c478bd9Sstevel@tonic-gate 		add_cache_prop(devi, label, "lines-per-tag", lines_per_tag);
28937c478bd9Sstevel@tonic-gate 	add_cache_prop(devi, label, line_str, line_size);
28947c478bd9Sstevel@tonic-gate 	add_cache_prop(devi, label, size_str, size * 1024);
28957c478bd9Sstevel@tonic-gate }
28967c478bd9Sstevel@tonic-gate 
28977c478bd9Sstevel@tonic-gate static void
28987c478bd9Sstevel@tonic-gate amd_cache_info(struct cpuid_info *cpi, dev_info_t *devi)
28997c478bd9Sstevel@tonic-gate {
29008949bcd6Sandrei 	struct cpuid_regs *cp;
29017c478bd9Sstevel@tonic-gate 
29027c478bd9Sstevel@tonic-gate 	if (cpi->cpi_xmaxeax < 0x80000005)
29037c478bd9Sstevel@tonic-gate 		return;
29047c478bd9Sstevel@tonic-gate 	cp = &cpi->cpi_extd[5];
29057c478bd9Sstevel@tonic-gate 
29067c478bd9Sstevel@tonic-gate 	/*
29077c478bd9Sstevel@tonic-gate 	 * 4M/2M L1 TLB configuration
29087c478bd9Sstevel@tonic-gate 	 *
29097c478bd9Sstevel@tonic-gate 	 * We report the size for 2M pages because AMD uses two
29107c478bd9Sstevel@tonic-gate 	 * TLB entries for one 4M page.
29117c478bd9Sstevel@tonic-gate 	 */
29127c478bd9Sstevel@tonic-gate 	add_amd_tlb(devi, "dtlb-2M",
29137c478bd9Sstevel@tonic-gate 	    BITX(cp->cp_eax, 31, 24), BITX(cp->cp_eax, 23, 16));
29147c478bd9Sstevel@tonic-gate 	add_amd_tlb(devi, "itlb-2M",
29157c478bd9Sstevel@tonic-gate 	    BITX(cp->cp_eax, 15, 8), BITX(cp->cp_eax, 7, 0));
29167c478bd9Sstevel@tonic-gate 
29177c478bd9Sstevel@tonic-gate 	/*
29187c478bd9Sstevel@tonic-gate 	 * 4K L1 TLB configuration
29197c478bd9Sstevel@tonic-gate 	 */
29207c478bd9Sstevel@tonic-gate 
29217c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
29227c478bd9Sstevel@tonic-gate 		uint_t nentries;
29237c478bd9Sstevel@tonic-gate 	case X86_VENDOR_TM:
29247c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family >= 5) {
29257c478bd9Sstevel@tonic-gate 			/*
29267c478bd9Sstevel@tonic-gate 			 * Crusoe processors have 256 TLB entries, but
29277c478bd9Sstevel@tonic-gate 			 * cpuid data format constrains them to only
29287c478bd9Sstevel@tonic-gate 			 * reporting 255 of them.
29297c478bd9Sstevel@tonic-gate 			 */
29307c478bd9Sstevel@tonic-gate 			if ((nentries = BITX(cp->cp_ebx, 23, 16)) == 255)
29317c478bd9Sstevel@tonic-gate 				nentries = 256;
29327c478bd9Sstevel@tonic-gate 			/*
29337c478bd9Sstevel@tonic-gate 			 * Crusoe processors also have a unified TLB
29347c478bd9Sstevel@tonic-gate 			 */
29357c478bd9Sstevel@tonic-gate 			add_amd_tlb(devi, "tlb-4K", BITX(cp->cp_ebx, 31, 24),
29367c478bd9Sstevel@tonic-gate 			    nentries);
29377c478bd9Sstevel@tonic-gate 			break;
29387c478bd9Sstevel@tonic-gate 		}
29397c478bd9Sstevel@tonic-gate 		/*FALLTHROUGH*/
29407c478bd9Sstevel@tonic-gate 	default:
29417c478bd9Sstevel@tonic-gate 		add_amd_tlb(devi, itlb4k_str,
29427c478bd9Sstevel@tonic-gate 		    BITX(cp->cp_ebx, 31, 24), BITX(cp->cp_ebx, 23, 16));
29437c478bd9Sstevel@tonic-gate 		add_amd_tlb(devi, dtlb4k_str,
29447c478bd9Sstevel@tonic-gate 		    BITX(cp->cp_ebx, 15, 8), BITX(cp->cp_ebx, 7, 0));
29457c478bd9Sstevel@tonic-gate 		break;
29467c478bd9Sstevel@tonic-gate 	}
29477c478bd9Sstevel@tonic-gate 
29487c478bd9Sstevel@tonic-gate 	/*
29497c478bd9Sstevel@tonic-gate 	 * data L1 cache configuration
29507c478bd9Sstevel@tonic-gate 	 */
29517c478bd9Sstevel@tonic-gate 
29527c478bd9Sstevel@tonic-gate 	add_amd_cache(devi, l1_dcache_str,
29537c478bd9Sstevel@tonic-gate 	    BITX(cp->cp_ecx, 31, 24), BITX(cp->cp_ecx, 23, 16),
29547c478bd9Sstevel@tonic-gate 	    BITX(cp->cp_ecx, 15, 8), BITX(cp->cp_ecx, 7, 0));
29557c478bd9Sstevel@tonic-gate 
29567c478bd9Sstevel@tonic-gate 	/*
29577c478bd9Sstevel@tonic-gate 	 * code L1 cache configuration
29587c478bd9Sstevel@tonic-gate 	 */
29597c478bd9Sstevel@tonic-gate 
29607c478bd9Sstevel@tonic-gate 	add_amd_cache(devi, l1_icache_str,
29617c478bd9Sstevel@tonic-gate 	    BITX(cp->cp_edx, 31, 24), BITX(cp->cp_edx, 23, 16),
29627c478bd9Sstevel@tonic-gate 	    BITX(cp->cp_edx, 15, 8), BITX(cp->cp_edx, 7, 0));
29637c478bd9Sstevel@tonic-gate 
29647c478bd9Sstevel@tonic-gate 	if (cpi->cpi_xmaxeax < 0x80000006)
29657c478bd9Sstevel@tonic-gate 		return;
29667c478bd9Sstevel@tonic-gate 	cp = &cpi->cpi_extd[6];
29677c478bd9Sstevel@tonic-gate 
29687c478bd9Sstevel@tonic-gate 	/* Check for a unified L2 TLB for large pages */
29697c478bd9Sstevel@tonic-gate 
29707c478bd9Sstevel@tonic-gate 	if (BITX(cp->cp_eax, 31, 16) == 0)
29717c478bd9Sstevel@tonic-gate 		add_amd_l2_tlb(devi, "l2-tlb-2M",
29727c478bd9Sstevel@tonic-gate 		    BITX(cp->cp_eax, 15, 12), BITX(cp->cp_eax, 11, 0));
29737c478bd9Sstevel@tonic-gate 	else {
29747c478bd9Sstevel@tonic-gate 		add_amd_l2_tlb(devi, "l2-dtlb-2M",
29757c478bd9Sstevel@tonic-gate 		    BITX(cp->cp_eax, 31, 28), BITX(cp->cp_eax, 27, 16));
29767c478bd9Sstevel@tonic-gate 		add_amd_l2_tlb(devi, "l2-itlb-2M",
29777c478bd9Sstevel@tonic-gate 		    BITX(cp->cp_eax, 15, 12), BITX(cp->cp_eax, 11, 0));
29787c478bd9Sstevel@tonic-gate 	}
29797c478bd9Sstevel@tonic-gate 
29807c478bd9Sstevel@tonic-gate 	/* Check for a unified L2 TLB for 4K pages */
29817c478bd9Sstevel@tonic-gate 
29827c478bd9Sstevel@tonic-gate 	if (BITX(cp->cp_ebx, 31, 16) == 0) {
29837c478bd9Sstevel@tonic-gate 		add_amd_l2_tlb(devi, "l2-tlb-4K",
29847c478bd9Sstevel@tonic-gate 		    BITX(cp->cp_eax, 15, 12), BITX(cp->cp_eax, 11, 0));
29857c478bd9Sstevel@tonic-gate 	} else {
29867c478bd9Sstevel@tonic-gate 		add_amd_l2_tlb(devi, "l2-dtlb-4K",
29877c478bd9Sstevel@tonic-gate 		    BITX(cp->cp_eax, 31, 28), BITX(cp->cp_eax, 27, 16));
29887c478bd9Sstevel@tonic-gate 		add_amd_l2_tlb(devi, "l2-itlb-4K",
29897c478bd9Sstevel@tonic-gate 		    BITX(cp->cp_eax, 15, 12), BITX(cp->cp_eax, 11, 0));
29907c478bd9Sstevel@tonic-gate 	}
29917c478bd9Sstevel@tonic-gate 
29927c478bd9Sstevel@tonic-gate 	add_amd_l2_cache(devi, l2_cache_str,
29937c478bd9Sstevel@tonic-gate 	    BITX(cp->cp_ecx, 31, 16), BITX(cp->cp_ecx, 15, 12),
29947c478bd9Sstevel@tonic-gate 	    BITX(cp->cp_ecx, 11, 8), BITX(cp->cp_ecx, 7, 0));
29957c478bd9Sstevel@tonic-gate }
29967c478bd9Sstevel@tonic-gate 
29977c478bd9Sstevel@tonic-gate /*
29987c478bd9Sstevel@tonic-gate  * There are two basic ways that the x86 world describes it cache
29997c478bd9Sstevel@tonic-gate  * and tlb architecture - Intel's way and AMD's way.
30007c478bd9Sstevel@tonic-gate  *
30017c478bd9Sstevel@tonic-gate  * Return which flavor of cache architecture we should use
30027c478bd9Sstevel@tonic-gate  */
30037c478bd9Sstevel@tonic-gate static int
30047c478bd9Sstevel@tonic-gate x86_which_cacheinfo(struct cpuid_info *cpi)
30057c478bd9Sstevel@tonic-gate {
30067c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
30077c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
30087c478bd9Sstevel@tonic-gate 		if (cpi->cpi_maxeax >= 2)
30097c478bd9Sstevel@tonic-gate 			return (X86_VENDOR_Intel);
30107c478bd9Sstevel@tonic-gate 		break;
30117c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
30127c478bd9Sstevel@tonic-gate 		/*
30137c478bd9Sstevel@tonic-gate 		 * The K5 model 1 was the first part from AMD that reported
30147c478bd9Sstevel@tonic-gate 		 * cache sizes via extended cpuid functions.
30157c478bd9Sstevel@tonic-gate 		 */
30167c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family > 5 ||
30177c478bd9Sstevel@tonic-gate 		    (cpi->cpi_family == 5 && cpi->cpi_model >= 1))
30187c478bd9Sstevel@tonic-gate 			return (X86_VENDOR_AMD);
30197c478bd9Sstevel@tonic-gate 		break;
30207c478bd9Sstevel@tonic-gate 	case X86_VENDOR_TM:
30217c478bd9Sstevel@tonic-gate 		if (cpi->cpi_family >= 5)
30227c478bd9Sstevel@tonic-gate 			return (X86_VENDOR_AMD);
30237c478bd9Sstevel@tonic-gate 		/*FALLTHROUGH*/
30247c478bd9Sstevel@tonic-gate 	default:
30257c478bd9Sstevel@tonic-gate 		/*
30267c478bd9Sstevel@tonic-gate 		 * If they have extended CPU data for 0x80000005
30277c478bd9Sstevel@tonic-gate 		 * then we assume they have AMD-format cache
30287c478bd9Sstevel@tonic-gate 		 * information.
30297c478bd9Sstevel@tonic-gate 		 *
30307c478bd9Sstevel@tonic-gate 		 * If not, and the vendor happens to be Cyrix,
30317c478bd9Sstevel@tonic-gate 		 * then try our-Cyrix specific handler.
30327c478bd9Sstevel@tonic-gate 		 *
30337c478bd9Sstevel@tonic-gate 		 * If we're not Cyrix, then assume we're using Intel's
30347c478bd9Sstevel@tonic-gate 		 * table-driven format instead.
30357c478bd9Sstevel@tonic-gate 		 */
30367c478bd9Sstevel@tonic-gate 		if (cpi->cpi_xmaxeax >= 0x80000005)
30377c478bd9Sstevel@tonic-gate 			return (X86_VENDOR_AMD);
30387c478bd9Sstevel@tonic-gate 		else if (cpi->cpi_vendor == X86_VENDOR_Cyrix)
30397c478bd9Sstevel@tonic-gate 			return (X86_VENDOR_Cyrix);
30407c478bd9Sstevel@tonic-gate 		else if (cpi->cpi_maxeax >= 2)
30417c478bd9Sstevel@tonic-gate 			return (X86_VENDOR_Intel);
30427c478bd9Sstevel@tonic-gate 		break;
30437c478bd9Sstevel@tonic-gate 	}
30447c478bd9Sstevel@tonic-gate 	return (-1);
30457c478bd9Sstevel@tonic-gate }
30467c478bd9Sstevel@tonic-gate 
30477c478bd9Sstevel@tonic-gate /*
30487c478bd9Sstevel@tonic-gate  * create a node for the given cpu under the prom root node.
30497c478bd9Sstevel@tonic-gate  * Also, create a cpu node in the device tree.
30507c478bd9Sstevel@tonic-gate  */
30517c478bd9Sstevel@tonic-gate static dev_info_t *cpu_nex_devi = NULL;
30527c478bd9Sstevel@tonic-gate static kmutex_t cpu_node_lock;
30537c478bd9Sstevel@tonic-gate 
30547c478bd9Sstevel@tonic-gate /*
30557c478bd9Sstevel@tonic-gate  * Called from post_startup() and mp_startup()
30567c478bd9Sstevel@tonic-gate  */
30577c478bd9Sstevel@tonic-gate void
30587c478bd9Sstevel@tonic-gate add_cpunode2devtree(processorid_t cpu_id, struct cpuid_info *cpi)
30597c478bd9Sstevel@tonic-gate {
30607c478bd9Sstevel@tonic-gate 	dev_info_t *cpu_devi;
30617c478bd9Sstevel@tonic-gate 	int create;
30627c478bd9Sstevel@tonic-gate 
30637c478bd9Sstevel@tonic-gate 	mutex_enter(&cpu_node_lock);
30647c478bd9Sstevel@tonic-gate 
30657c478bd9Sstevel@tonic-gate 	/*
30667c478bd9Sstevel@tonic-gate 	 * create a nexus node for all cpus identified as 'cpu_id' under
30677c478bd9Sstevel@tonic-gate 	 * the root node.
30687c478bd9Sstevel@tonic-gate 	 */
30697c478bd9Sstevel@tonic-gate 	if (cpu_nex_devi == NULL) {
30707c478bd9Sstevel@tonic-gate 		if (ndi_devi_alloc(ddi_root_node(), "cpus",
3071fa9e4066Sahrens 		    (pnode_t)DEVI_SID_NODEID, &cpu_nex_devi) != NDI_SUCCESS) {
30727c478bd9Sstevel@tonic-gate 			mutex_exit(&cpu_node_lock);
30737c478bd9Sstevel@tonic-gate 			return;
30747c478bd9Sstevel@tonic-gate 		}
30757c478bd9Sstevel@tonic-gate 		(void) ndi_devi_online(cpu_nex_devi, 0);
30767c478bd9Sstevel@tonic-gate 	}
30777c478bd9Sstevel@tonic-gate 
30787c478bd9Sstevel@tonic-gate 	/*
30797c478bd9Sstevel@tonic-gate 	 * create a child node for cpu identified as 'cpu_id'
30807c478bd9Sstevel@tonic-gate 	 */
30817c478bd9Sstevel@tonic-gate 	cpu_devi = ddi_add_child(cpu_nex_devi, "cpu", DEVI_SID_NODEID,
30827c478bd9Sstevel@tonic-gate 	    cpu_id);
30837c478bd9Sstevel@tonic-gate 	if (cpu_devi == NULL) {
30847c478bd9Sstevel@tonic-gate 		mutex_exit(&cpu_node_lock);
30857c478bd9Sstevel@tonic-gate 		return;
30867c478bd9Sstevel@tonic-gate 	}
30877c478bd9Sstevel@tonic-gate 
30887c478bd9Sstevel@tonic-gate 	/* device_type */
30897c478bd9Sstevel@tonic-gate 
30907c478bd9Sstevel@tonic-gate 	(void) ndi_prop_update_string(DDI_DEV_T_NONE, cpu_devi,
30917c478bd9Sstevel@tonic-gate 	    "device_type", "cpu");
30927c478bd9Sstevel@tonic-gate 
30937c478bd9Sstevel@tonic-gate 	/* reg */
30947c478bd9Sstevel@tonic-gate 
30957c478bd9Sstevel@tonic-gate 	(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
30967c478bd9Sstevel@tonic-gate 	    "reg", cpu_id);
30977c478bd9Sstevel@tonic-gate 
30987c478bd9Sstevel@tonic-gate 	/* cpu-mhz, and clock-frequency */
30997c478bd9Sstevel@tonic-gate 
31007c478bd9Sstevel@tonic-gate 	if (cpu_freq > 0) {
31017c478bd9Sstevel@tonic-gate 		long long mul;
31027c478bd9Sstevel@tonic-gate 
31037c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31047c478bd9Sstevel@tonic-gate 		    "cpu-mhz", cpu_freq);
31057c478bd9Sstevel@tonic-gate 
31067c478bd9Sstevel@tonic-gate 		if ((mul = cpu_freq * 1000000LL) <= INT_MAX)
31077c478bd9Sstevel@tonic-gate 			(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31087c478bd9Sstevel@tonic-gate 			    "clock-frequency", (int)mul);
31097c478bd9Sstevel@tonic-gate 	}
31107c478bd9Sstevel@tonic-gate 
31117c478bd9Sstevel@tonic-gate 	(void) ndi_devi_online(cpu_devi, 0);
31127c478bd9Sstevel@tonic-gate 
31137c478bd9Sstevel@tonic-gate 	if ((x86_feature & X86_CPUID) == 0) {
31147c478bd9Sstevel@tonic-gate 		mutex_exit(&cpu_node_lock);
31157c478bd9Sstevel@tonic-gate 		return;
31167c478bd9Sstevel@tonic-gate 	}
31177c478bd9Sstevel@tonic-gate 
31187c478bd9Sstevel@tonic-gate 	/* vendor-id */
31197c478bd9Sstevel@tonic-gate 
31207c478bd9Sstevel@tonic-gate 	(void) ndi_prop_update_string(DDI_DEV_T_NONE, cpu_devi,
31217c478bd9Sstevel@tonic-gate 	    "vendor-id", cpi->cpi_vendorstr);
31227c478bd9Sstevel@tonic-gate 
31237c478bd9Sstevel@tonic-gate 	if (cpi->cpi_maxeax == 0) {
31247c478bd9Sstevel@tonic-gate 		mutex_exit(&cpu_node_lock);
31257c478bd9Sstevel@tonic-gate 		return;
31267c478bd9Sstevel@tonic-gate 	}
31277c478bd9Sstevel@tonic-gate 
31287c478bd9Sstevel@tonic-gate 	/*
31297c478bd9Sstevel@tonic-gate 	 * family, model, and step
31307c478bd9Sstevel@tonic-gate 	 */
31317c478bd9Sstevel@tonic-gate 	(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31327c478bd9Sstevel@tonic-gate 	    "family", CPI_FAMILY(cpi));
31337c478bd9Sstevel@tonic-gate 	(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31347c478bd9Sstevel@tonic-gate 	    "cpu-model", CPI_MODEL(cpi));
31357c478bd9Sstevel@tonic-gate 	(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31367c478bd9Sstevel@tonic-gate 	    "stepping-id", CPI_STEP(cpi));
31377c478bd9Sstevel@tonic-gate 
31387c478bd9Sstevel@tonic-gate 	/* type */
31397c478bd9Sstevel@tonic-gate 
31407c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
31417c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
31427c478bd9Sstevel@tonic-gate 		create = 1;
31437c478bd9Sstevel@tonic-gate 		break;
31447c478bd9Sstevel@tonic-gate 	default:
31457c478bd9Sstevel@tonic-gate 		create = 0;
31467c478bd9Sstevel@tonic-gate 		break;
31477c478bd9Sstevel@tonic-gate 	}
31487c478bd9Sstevel@tonic-gate 	if (create)
31497c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31507c478bd9Sstevel@tonic-gate 		    "type", CPI_TYPE(cpi));
31517c478bd9Sstevel@tonic-gate 
31527c478bd9Sstevel@tonic-gate 	/* ext-family */
31537c478bd9Sstevel@tonic-gate 
31547c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
31557c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
31567c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
31577c478bd9Sstevel@tonic-gate 		create = cpi->cpi_family >= 0xf;
31587c478bd9Sstevel@tonic-gate 		break;
31597c478bd9Sstevel@tonic-gate 	default:
31607c478bd9Sstevel@tonic-gate 		create = 0;
31617c478bd9Sstevel@tonic-gate 		break;
31627c478bd9Sstevel@tonic-gate 	}
31637c478bd9Sstevel@tonic-gate 	if (create)
31647c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31657c478bd9Sstevel@tonic-gate 		    "ext-family", CPI_FAMILY_XTD(cpi));
31667c478bd9Sstevel@tonic-gate 
31677c478bd9Sstevel@tonic-gate 	/* ext-model */
31687c478bd9Sstevel@tonic-gate 
31697c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
31707c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
317168c91426Sdmick 		create = CPI_MODEL(cpi) == 0xf;
317268c91426Sdmick 		break;
31737c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
3174ee88d2b9Skchow 		create = CPI_FAMILY(cpi) == 0xf;
31757c478bd9Sstevel@tonic-gate 		break;
31767c478bd9Sstevel@tonic-gate 	default:
31777c478bd9Sstevel@tonic-gate 		create = 0;
31787c478bd9Sstevel@tonic-gate 		break;
31797c478bd9Sstevel@tonic-gate 	}
31807c478bd9Sstevel@tonic-gate 	if (create)
31817c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31827c478bd9Sstevel@tonic-gate 		    "ext-model", CPI_MODEL_XTD(cpi));
31837c478bd9Sstevel@tonic-gate 
31847c478bd9Sstevel@tonic-gate 	/* generation */
31857c478bd9Sstevel@tonic-gate 
31867c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
31877c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
31887c478bd9Sstevel@tonic-gate 		/*
31897c478bd9Sstevel@tonic-gate 		 * AMD K5 model 1 was the first part to support this
31907c478bd9Sstevel@tonic-gate 		 */
31917c478bd9Sstevel@tonic-gate 		create = cpi->cpi_xmaxeax >= 0x80000001;
31927c478bd9Sstevel@tonic-gate 		break;
31937c478bd9Sstevel@tonic-gate 	default:
31947c478bd9Sstevel@tonic-gate 		create = 0;
31957c478bd9Sstevel@tonic-gate 		break;
31967c478bd9Sstevel@tonic-gate 	}
31977c478bd9Sstevel@tonic-gate 	if (create)
31987c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
31997c478bd9Sstevel@tonic-gate 		    "generation", BITX((cpi)->cpi_extd[1].cp_eax, 11, 8));
32007c478bd9Sstevel@tonic-gate 
32017c478bd9Sstevel@tonic-gate 	/* brand-id */
32027c478bd9Sstevel@tonic-gate 
32037c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
32047c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
32057c478bd9Sstevel@tonic-gate 		/*
32067c478bd9Sstevel@tonic-gate 		 * brand id first appeared on Pentium III Xeon model 8,
32077c478bd9Sstevel@tonic-gate 		 * and Celeron model 8 processors and Opteron
32087c478bd9Sstevel@tonic-gate 		 */
32097c478bd9Sstevel@tonic-gate 		create = cpi->cpi_family > 6 ||
32107c478bd9Sstevel@tonic-gate 		    (cpi->cpi_family == 6 && cpi->cpi_model >= 8);
32117c478bd9Sstevel@tonic-gate 		break;
32127c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
32137c478bd9Sstevel@tonic-gate 		create = cpi->cpi_family >= 0xf;
32147c478bd9Sstevel@tonic-gate 		break;
32157c478bd9Sstevel@tonic-gate 	default:
32167c478bd9Sstevel@tonic-gate 		create = 0;
32177c478bd9Sstevel@tonic-gate 		break;
32187c478bd9Sstevel@tonic-gate 	}
32197c478bd9Sstevel@tonic-gate 	if (create && cpi->cpi_brandid != 0) {
32207c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32217c478bd9Sstevel@tonic-gate 		    "brand-id", cpi->cpi_brandid);
32227c478bd9Sstevel@tonic-gate 	}
32237c478bd9Sstevel@tonic-gate 
32247c478bd9Sstevel@tonic-gate 	/* chunks, and apic-id */
32257c478bd9Sstevel@tonic-gate 
32267c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
32277c478bd9Sstevel@tonic-gate 		/*
32287c478bd9Sstevel@tonic-gate 		 * first available on Pentium IV and Opteron (K8)
32297c478bd9Sstevel@tonic-gate 		 */
32305ff02082Sdmick 	case X86_VENDOR_Intel:
32315ff02082Sdmick 		create = IS_NEW_F6(cpi) || cpi->cpi_family >= 0xf;
32325ff02082Sdmick 		break;
32335ff02082Sdmick 	case X86_VENDOR_AMD:
32347c478bd9Sstevel@tonic-gate 		create = cpi->cpi_family >= 0xf;
32357c478bd9Sstevel@tonic-gate 		break;
32367c478bd9Sstevel@tonic-gate 	default:
32377c478bd9Sstevel@tonic-gate 		create = 0;
32387c478bd9Sstevel@tonic-gate 		break;
32397c478bd9Sstevel@tonic-gate 	}
32407c478bd9Sstevel@tonic-gate 	if (create) {
32417c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32427c478bd9Sstevel@tonic-gate 		    "chunks", CPI_CHUNKS(cpi));
32437c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32447c478bd9Sstevel@tonic-gate 		    "apic-id", CPI_APIC_ID(cpi));
32457aec1d6eScindi 		if (cpi->cpi_chipid >= 0) {
32467c478bd9Sstevel@tonic-gate 			(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32477c478bd9Sstevel@tonic-gate 			    "chip#", cpi->cpi_chipid);
32487aec1d6eScindi 			(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32497aec1d6eScindi 			    "clog#", cpi->cpi_clogid);
32507aec1d6eScindi 		}
32517c478bd9Sstevel@tonic-gate 	}
32527c478bd9Sstevel@tonic-gate 
32537c478bd9Sstevel@tonic-gate 	/* cpuid-features */
32547c478bd9Sstevel@tonic-gate 
32557c478bd9Sstevel@tonic-gate 	(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32567c478bd9Sstevel@tonic-gate 	    "cpuid-features", CPI_FEATURES_EDX(cpi));
32577c478bd9Sstevel@tonic-gate 
32587c478bd9Sstevel@tonic-gate 
32597c478bd9Sstevel@tonic-gate 	/* cpuid-features-ecx */
32607c478bd9Sstevel@tonic-gate 
32617c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
32627c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
32635ff02082Sdmick 		create = IS_NEW_F6(cpi) || cpi->cpi_family >= 0xf;
32647c478bd9Sstevel@tonic-gate 		break;
32657c478bd9Sstevel@tonic-gate 	default:
32667c478bd9Sstevel@tonic-gate 		create = 0;
32677c478bd9Sstevel@tonic-gate 		break;
32687c478bd9Sstevel@tonic-gate 	}
32697c478bd9Sstevel@tonic-gate 	if (create)
32707c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32717c478bd9Sstevel@tonic-gate 		    "cpuid-features-ecx", CPI_FEATURES_ECX(cpi));
32727c478bd9Sstevel@tonic-gate 
32737c478bd9Sstevel@tonic-gate 	/* ext-cpuid-features */
32747c478bd9Sstevel@tonic-gate 
32757c478bd9Sstevel@tonic-gate 	switch (cpi->cpi_vendor) {
32765ff02082Sdmick 	case X86_VENDOR_Intel:
32777c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
32787c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Cyrix:
32797c478bd9Sstevel@tonic-gate 	case X86_VENDOR_TM:
32807c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Centaur:
32817c478bd9Sstevel@tonic-gate 		create = cpi->cpi_xmaxeax >= 0x80000001;
32827c478bd9Sstevel@tonic-gate 		break;
32837c478bd9Sstevel@tonic-gate 	default:
32847c478bd9Sstevel@tonic-gate 		create = 0;
32857c478bd9Sstevel@tonic-gate 		break;
32867c478bd9Sstevel@tonic-gate 	}
32875ff02082Sdmick 	if (create) {
32887c478bd9Sstevel@tonic-gate 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32897c478bd9Sstevel@tonic-gate 		    "ext-cpuid-features", CPI_FEATURES_XTD_EDX(cpi));
32905ff02082Sdmick 		(void) ndi_prop_update_int(DDI_DEV_T_NONE, cpu_devi,
32915ff02082Sdmick 		    "ext-cpuid-features-ecx", CPI_FEATURES_XTD_ECX(cpi));
32925ff02082Sdmick 	}
32937c478bd9Sstevel@tonic-gate 
32947c478bd9Sstevel@tonic-gate 	/*
32957c478bd9Sstevel@tonic-gate 	 * Brand String first appeared in Intel Pentium IV, AMD K5
32967c478bd9Sstevel@tonic-gate 	 * model 1, and Cyrix GXm.  On earlier models we try and
32977c478bd9Sstevel@tonic-gate 	 * simulate something similar .. so this string should always
32987c478bd9Sstevel@tonic-gate 	 * same -something- about the processor, however lame.
32997c478bd9Sstevel@tonic-gate 	 */
33007c478bd9Sstevel@tonic-gate 	(void) ndi_prop_update_string(DDI_DEV_T_NONE, cpu_devi,
33017c478bd9Sstevel@tonic-gate 	    "brand-string", cpi->cpi_brandstr);
33027c478bd9Sstevel@tonic-gate 
33037c478bd9Sstevel@tonic-gate 	/*
33047c478bd9Sstevel@tonic-gate 	 * Finally, cache and tlb information
33057c478bd9Sstevel@tonic-gate 	 */
33067c478bd9Sstevel@tonic-gate 	switch (x86_which_cacheinfo(cpi)) {
33077c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
33087c478bd9Sstevel@tonic-gate 		intel_walk_cacheinfo(cpi, cpu_devi, add_cacheent_props);
33097c478bd9Sstevel@tonic-gate 		break;
33107c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Cyrix:
33117c478bd9Sstevel@tonic-gate 		cyrix_walk_cacheinfo(cpi, cpu_devi, add_cacheent_props);
33127c478bd9Sstevel@tonic-gate 		break;
33137c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
33147c478bd9Sstevel@tonic-gate 		amd_cache_info(cpi, cpu_devi);
33157c478bd9Sstevel@tonic-gate 		break;
33167c478bd9Sstevel@tonic-gate 	default:
33177c478bd9Sstevel@tonic-gate 		break;
33187c478bd9Sstevel@tonic-gate 	}
33197c478bd9Sstevel@tonic-gate 
33207c478bd9Sstevel@tonic-gate 	mutex_exit(&cpu_node_lock);
33217c478bd9Sstevel@tonic-gate }
33227c478bd9Sstevel@tonic-gate 
33237c478bd9Sstevel@tonic-gate struct l2info {
33247c478bd9Sstevel@tonic-gate 	int *l2i_csz;
33257c478bd9Sstevel@tonic-gate 	int *l2i_lsz;
33267c478bd9Sstevel@tonic-gate 	int *l2i_assoc;
33277c478bd9Sstevel@tonic-gate 	int l2i_ret;
33287c478bd9Sstevel@tonic-gate };
33297c478bd9Sstevel@tonic-gate 
33307c478bd9Sstevel@tonic-gate /*
33317c478bd9Sstevel@tonic-gate  * A cacheinfo walker that fetches the size, line-size and associativity
33327c478bd9Sstevel@tonic-gate  * of the L2 cache
33337c478bd9Sstevel@tonic-gate  */
33347c478bd9Sstevel@tonic-gate static int
33357c478bd9Sstevel@tonic-gate intel_l2cinfo(void *arg, const struct cachetab *ct)
33367c478bd9Sstevel@tonic-gate {
33377c478bd9Sstevel@tonic-gate 	struct l2info *l2i = arg;
33387c478bd9Sstevel@tonic-gate 	int *ip;
33397c478bd9Sstevel@tonic-gate 
33407c478bd9Sstevel@tonic-gate 	if (ct->ct_label != l2_cache_str &&
33417c478bd9Sstevel@tonic-gate 	    ct->ct_label != sl2_cache_str)
33427c478bd9Sstevel@tonic-gate 		return (0);	/* not an L2 -- keep walking */
33437c478bd9Sstevel@tonic-gate 
33447c478bd9Sstevel@tonic-gate 	if ((ip = l2i->l2i_csz) != NULL)
33457c478bd9Sstevel@tonic-gate 		*ip = ct->ct_size;
33467c478bd9Sstevel@tonic-gate 	if ((ip = l2i->l2i_lsz) != NULL)
33477c478bd9Sstevel@tonic-gate 		*ip = ct->ct_line_size;
33487c478bd9Sstevel@tonic-gate 	if ((ip = l2i->l2i_assoc) != NULL)
33497c478bd9Sstevel@tonic-gate 		*ip = ct->ct_assoc;
33507c478bd9Sstevel@tonic-gate 	l2i->l2i_ret = ct->ct_size;
33517c478bd9Sstevel@tonic-gate 	return (1);		/* was an L2 -- terminate walk */
33527c478bd9Sstevel@tonic-gate }
33537c478bd9Sstevel@tonic-gate 
33547c478bd9Sstevel@tonic-gate static void
33557c478bd9Sstevel@tonic-gate amd_l2cacheinfo(struct cpuid_info *cpi, struct l2info *l2i)
33567c478bd9Sstevel@tonic-gate {
33578949bcd6Sandrei 	struct cpuid_regs *cp;
33587c478bd9Sstevel@tonic-gate 	uint_t size, assoc;
33597c478bd9Sstevel@tonic-gate 	int *ip;
33607c478bd9Sstevel@tonic-gate 
33617c478bd9Sstevel@tonic-gate 	if (cpi->cpi_xmaxeax < 0x80000006)
33627c478bd9Sstevel@tonic-gate 		return;
33637c478bd9Sstevel@tonic-gate 	cp = &cpi->cpi_extd[6];
33647c478bd9Sstevel@tonic-gate 
33657c478bd9Sstevel@tonic-gate 	if ((assoc = BITX(cp->cp_ecx, 15, 12)) != 0 &&
33667c478bd9Sstevel@tonic-gate 	    (size = BITX(cp->cp_ecx, 31, 16)) != 0) {
33677c478bd9Sstevel@tonic-gate 		uint_t cachesz = size * 1024;
33687c478bd9Sstevel@tonic-gate 
33697c478bd9Sstevel@tonic-gate 
33707c478bd9Sstevel@tonic-gate 		if ((ip = l2i->l2i_csz) != NULL)
33717c478bd9Sstevel@tonic-gate 			*ip = cachesz;
33727c478bd9Sstevel@tonic-gate 		if ((ip = l2i->l2i_lsz) != NULL)
33737c478bd9Sstevel@tonic-gate 			*ip = BITX(cp->cp_ecx, 7, 0);
33747c478bd9Sstevel@tonic-gate 		if ((ip = l2i->l2i_assoc) != NULL)
33757c478bd9Sstevel@tonic-gate 			*ip = assoc;
33767c478bd9Sstevel@tonic-gate 		l2i->l2i_ret = cachesz;
33777c478bd9Sstevel@tonic-gate 	}
33787c478bd9Sstevel@tonic-gate }
33797c478bd9Sstevel@tonic-gate 
33807c478bd9Sstevel@tonic-gate int
33817c478bd9Sstevel@tonic-gate getl2cacheinfo(cpu_t *cpu, int *csz, int *lsz, int *assoc)
33827c478bd9Sstevel@tonic-gate {
33837c478bd9Sstevel@tonic-gate 	struct cpuid_info *cpi = cpu->cpu_m.mcpu_cpi;
33847c478bd9Sstevel@tonic-gate 	struct l2info __l2info, *l2i = &__l2info;
33857c478bd9Sstevel@tonic-gate 
33867c478bd9Sstevel@tonic-gate 	l2i->l2i_csz = csz;
33877c478bd9Sstevel@tonic-gate 	l2i->l2i_lsz = lsz;
33887c478bd9Sstevel@tonic-gate 	l2i->l2i_assoc = assoc;
33897c478bd9Sstevel@tonic-gate 	l2i->l2i_ret = -1;
33907c478bd9Sstevel@tonic-gate 
33917c478bd9Sstevel@tonic-gate 	switch (x86_which_cacheinfo(cpi)) {
33927c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Intel:
33937c478bd9Sstevel@tonic-gate 		intel_walk_cacheinfo(cpi, l2i, intel_l2cinfo);
33947c478bd9Sstevel@tonic-gate 		break;
33957c478bd9Sstevel@tonic-gate 	case X86_VENDOR_Cyrix:
33967c478bd9Sstevel@tonic-gate 		cyrix_walk_cacheinfo(cpi, l2i, intel_l2cinfo);
33977c478bd9Sstevel@tonic-gate 		break;
33987c478bd9Sstevel@tonic-gate 	case X86_VENDOR_AMD:
33997c478bd9Sstevel@tonic-gate 		amd_l2cacheinfo(cpi, l2i);
34007c478bd9Sstevel@tonic-gate 		break;
34017c478bd9Sstevel@tonic-gate 	default:
34027c478bd9Sstevel@tonic-gate 		break;
34037c478bd9Sstevel@tonic-gate 	}
34047c478bd9Sstevel@tonic-gate 	return (l2i->l2i_ret);
34057c478bd9Sstevel@tonic-gate }
3406f98fbcecSbholler 
3407f98fbcecSbholler size_t
3408f98fbcecSbholler cpuid_get_mwait_size(cpu_t *cpu)
3409f98fbcecSbholler {
3410f98fbcecSbholler 	ASSERT(cpuid_checkpass(cpu, 2));
3411f98fbcecSbholler 	return (cpu->cpu_m.mcpu_cpi->cpi_mwait.mon_max);
3412f98fbcecSbholler }
3413