xref: /illumos-gate/usr/src/uts/i86pc/os/mp_startup.c (revision 761dea5e)
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
5100b72f4Sandrei  * Common Development and Distribution License (the "License").
6100b72f4Sandrei  * 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  */
21ae115bc7Smrj 
227c478bd9Sstevel@tonic-gate /*
237417cfdeSKuriakose Kuruvilla  * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved.
247c478bd9Sstevel@tonic-gate  */
25a3114836SGerry Liu /*
26a3114836SGerry Liu  * Copyright (c) 2010, Intel Corporation.
27a3114836SGerry Liu  * All rights reserved.
28a3114836SGerry Liu  */
29ebb8ac07SRobert Mustacchi /*
30e25cb0e7SJohn Levon  * Copyright 2020 Joyent, Inc.
31850ad55aSHans Rosenfeld  * Copyright 2013 Nexenta Systems, Inc.  All rights reserved.
3239df76fbSAndy Fiddaman  * Copyright 2018 OmniOS Community Edition (OmniOSce) Association.
33ebb8ac07SRobert Mustacchi  */
347c478bd9Sstevel@tonic-gate 
357c478bd9Sstevel@tonic-gate #include <sys/types.h>
367c478bd9Sstevel@tonic-gate #include <sys/thread.h>
377c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
38a3114836SGerry Liu #include <sys/cpu.h>
397c478bd9Sstevel@tonic-gate #include <sys/t_lock.h>
407c478bd9Sstevel@tonic-gate #include <sys/param.h>
417c478bd9Sstevel@tonic-gate #include <sys/proc.h>
427c478bd9Sstevel@tonic-gate #include <sys/disp.h>
437c478bd9Sstevel@tonic-gate #include <sys/class.h>
447c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
457c478bd9Sstevel@tonic-gate #include <sys/debug.h>
46a3114836SGerry Liu #include <sys/note.h>
477c478bd9Sstevel@tonic-gate #include <sys/asm_linkage.h>
487c478bd9Sstevel@tonic-gate #include <sys/x_call.h>
497c478bd9Sstevel@tonic-gate #include <sys/systm.h>
507c478bd9Sstevel@tonic-gate #include <sys/var.h>
517c478bd9Sstevel@tonic-gate #include <sys/vtrace.h>
527c478bd9Sstevel@tonic-gate #include <vm/hat.h>
537c478bd9Sstevel@tonic-gate #include <vm/as.h>
547c478bd9Sstevel@tonic-gate #include <vm/seg_kmem.h>
55ae115bc7Smrj #include <vm/seg_kp.h>
567c478bd9Sstevel@tonic-gate #include <sys/segments.h>
577c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
587c478bd9Sstevel@tonic-gate #include <sys/stack.h>
597c478bd9Sstevel@tonic-gate #include <sys/smp_impldefs.h>
607c478bd9Sstevel@tonic-gate #include <sys/x86_archext.h>
617c478bd9Sstevel@tonic-gate #include <sys/machsystm.h>
627c478bd9Sstevel@tonic-gate #include <sys/traptrace.h>
637c478bd9Sstevel@tonic-gate #include <sys/clock.h>
647c478bd9Sstevel@tonic-gate #include <sys/cpc_impl.h>
65fb2f18f8Sesaxe #include <sys/pg.h>
66fb2f18f8Sesaxe #include <sys/cmt.h>
677c478bd9Sstevel@tonic-gate #include <sys/dtrace.h>
687c478bd9Sstevel@tonic-gate #include <sys/archsystm.h>
697c478bd9Sstevel@tonic-gate #include <sys/fp.h>
707c478bd9Sstevel@tonic-gate #include <sys/reboot.h>
71ae115bc7Smrj #include <sys/kdi_machimpl.h>
727c478bd9Sstevel@tonic-gate #include <vm/hat_i86.h>
73a3114836SGerry Liu #include <vm/vm_dep.h>
747c478bd9Sstevel@tonic-gate #include <sys/memnode.h>
75ef50d8c0Sesaxe #include <sys/pci_cfgspace.h>
76ae115bc7Smrj #include <sys/mach_mmu.h>
77ae115bc7Smrj #include <sys/sysmacros.h>
78843e1988Sjohnlev #if defined(__xpv)
79843e1988Sjohnlev #include <sys/hypervisor.h>
80*761dea5eSPatrick Mooney #else
81*761dea5eSPatrick Mooney #include <sys/hma.h>
82843e1988Sjohnlev #endif
837aec1d6eScindi #include <sys/cpu_module.h>
84850ad55aSHans Rosenfeld #include <sys/ontrap.h>
857c478bd9Sstevel@tonic-gate 
8674ecdb51SJohn Levon struct cpu	cpus[1] __aligned(MMU_PAGESIZE);
8774ecdb51SJohn Levon struct cpu	*cpu[NCPU] = {&cpus[0]};
8874ecdb51SJohn Levon struct cpu	*cpu_free_list;
8974ecdb51SJohn Levon cpu_core_t	cpu_core[NCPU];
907c478bd9Sstevel@tonic-gate 
91a3114836SGerry Liu #define	cpu_next_free	cpu_prev
92a3114836SGerry Liu 
937c478bd9Sstevel@tonic-gate /*
94ae115bc7Smrj  * Useful for disabling MP bring-up on a MP capable system.
957c478bd9Sstevel@tonic-gate  */
967c478bd9Sstevel@tonic-gate int use_mp = 1;
977c478bd9Sstevel@tonic-gate 
9841791439Sandrei /*
99ae115bc7Smrj  * to be set by a PSM to indicate what cpus
100ae115bc7Smrj  * are sitting around on the system.
10141791439Sandrei  */
102ae115bc7Smrj cpuset_t mp_cpus;
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate /*
1057c478bd9Sstevel@tonic-gate  * This variable is used by the hat layer to decide whether or not
1067c478bd9Sstevel@tonic-gate  * critical sections are needed to prevent race conditions.  For sun4m,
1077c478bd9Sstevel@tonic-gate  * this variable is set once enough MP initialization has been done in
1087c478bd9Sstevel@tonic-gate  * order to allow cross calls.
1097c478bd9Sstevel@tonic-gate  */
110ae115bc7Smrj int flushes_require_xcalls;
111a563a037Sbholler 
112a563a037Sbholler cpuset_t cpu_ready_set;		/* initialized in startup() */
1137c478bd9Sstevel@tonic-gate 
114a3114836SGerry Liu static void mp_startup_boot(void);
115a3114836SGerry Liu static void mp_startup_hotplug(void);
1167c478bd9Sstevel@tonic-gate 
1177c478bd9Sstevel@tonic-gate static void cpu_sep_enable(void);
1187c478bd9Sstevel@tonic-gate static void cpu_sep_disable(void);
1197c478bd9Sstevel@tonic-gate static void cpu_asysc_enable(void);
1207c478bd9Sstevel@tonic-gate static void cpu_asysc_disable(void);
1217c478bd9Sstevel@tonic-gate 
1227c478bd9Sstevel@tonic-gate /*
1237c478bd9Sstevel@tonic-gate  * Init CPU info - get CPU type info for processor_info system call.
1247c478bd9Sstevel@tonic-gate  */
1257c478bd9Sstevel@tonic-gate void
1267c478bd9Sstevel@tonic-gate init_cpu_info(struct cpu *cp)
1277c478bd9Sstevel@tonic-gate {
1287c478bd9Sstevel@tonic-gate 	processor_info_t *pi = &cp->cpu_type_info;
1297c478bd9Sstevel@tonic-gate 
1307c478bd9Sstevel@tonic-gate 	/*
1317c478bd9Sstevel@tonic-gate 	 * Get clock-frequency property for the CPU.
1327c478bd9Sstevel@tonic-gate 	 */
1337c478bd9Sstevel@tonic-gate 	pi->pi_clock = cpu_freq;
1347c478bd9Sstevel@tonic-gate 
1355cff7825Smh 	/*
1365cff7825Smh 	 * Current frequency in Hz.
1375cff7825Smh 	 */
138cf74e62bSmh 	cp->cpu_curr_clock = cpu_freq_hz;
1395cff7825Smh 
14037d22dc0SAnup Pemmaiah 	/*
14137d22dc0SAnup Pemmaiah 	 * Supported frequencies.
14237d22dc0SAnup Pemmaiah 	 */
14337d22dc0SAnup Pemmaiah 	if (cp->cpu_supp_freqs == NULL) {
14437d22dc0SAnup Pemmaiah 		cpu_set_supp_freqs(cp, NULL);
14537d22dc0SAnup Pemmaiah 	}
14637d22dc0SAnup Pemmaiah 
1477c478bd9Sstevel@tonic-gate 	(void) strcpy(pi->pi_processor_type, "i386");
1487c478bd9Sstevel@tonic-gate 	if (fpu_exists)
1497c478bd9Sstevel@tonic-gate 		(void) strcpy(pi->pi_fputypes, "i387 compatible");
1507c478bd9Sstevel@tonic-gate 
151a3114836SGerry Liu 	cp->cpu_idstr = kmem_zalloc(CPU_IDSTRLEN, KM_SLEEP);
152a3114836SGerry Liu 	cp->cpu_brandstr = kmem_zalloc(CPU_IDSTRLEN, KM_SLEEP);
1537c478bd9Sstevel@tonic-gate 
154a3114836SGerry Liu 	/*
155a3114836SGerry Liu 	 * If called for the BSP, cp is equal to current CPU.
156a3114836SGerry Liu 	 * For non-BSPs, cpuid info of cp is not ready yet, so use cpuid info
157a3114836SGerry Liu 	 * of current CPU as default values for cpu_idstr and cpu_brandstr.
158a3114836SGerry Liu 	 * They will be corrected in mp_startup_common() after cpuid_pass1()
159a3114836SGerry Liu 	 * has been invoked on target CPU.
160a3114836SGerry Liu 	 */
161a3114836SGerry Liu 	(void) cpuid_getidstr(CPU, cp->cpu_idstr, CPU_IDSTRLEN);
162a3114836SGerry Liu 	(void) cpuid_getbrandstr(CPU, cp->cpu_brandstr, CPU_IDSTRLEN);
1637c478bd9Sstevel@tonic-gate }
1647c478bd9Sstevel@tonic-gate 
1657c478bd9Sstevel@tonic-gate /*
1667c478bd9Sstevel@tonic-gate  * Configure syscall support on this CPU.
1677c478bd9Sstevel@tonic-gate  */
1687c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1692df1fe9cSrandyf void
1707c478bd9Sstevel@tonic-gate init_cpu_syscall(struct cpu *cp)
1717c478bd9Sstevel@tonic-gate {
1727c478bd9Sstevel@tonic-gate 	kpreempt_disable();
1737c478bd9Sstevel@tonic-gate 
1747417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
1757417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_ASYSC)) {
1763ce2fcdcSRobert Mustacchi 		uint64_t flags;
1777c478bd9Sstevel@tonic-gate 
17874ecdb51SJohn Levon #if !defined(__xpv)
1797c478bd9Sstevel@tonic-gate 		/*
1807c478bd9Sstevel@tonic-gate 		 * The syscall instruction imposes a certain ordering on
1817c478bd9Sstevel@tonic-gate 		 * segment selectors, so we double-check that ordering
1827c478bd9Sstevel@tonic-gate 		 * here.
1837c478bd9Sstevel@tonic-gate 		 */
18474ecdb51SJohn Levon 		CTASSERT(KDS_SEL == KCS_SEL + 8);
18574ecdb51SJohn Levon 		CTASSERT(UDS_SEL == U32CS_SEL + 8);
18674ecdb51SJohn Levon 		CTASSERT(UCS_SEL == U32CS_SEL + 16);
1877c478bd9Sstevel@tonic-gate #endif
18874ecdb51SJohn Levon 
1897c478bd9Sstevel@tonic-gate 		/*
1907c478bd9Sstevel@tonic-gate 		 * Turn syscall/sysret extensions on.
1917c478bd9Sstevel@tonic-gate 		 */
1927c478bd9Sstevel@tonic-gate 		cpu_asysc_enable();
1937c478bd9Sstevel@tonic-gate 
1947c478bd9Sstevel@tonic-gate 		/*
1957c478bd9Sstevel@tonic-gate 		 * Program the magic registers ..
1967c478bd9Sstevel@tonic-gate 		 */
197ae115bc7Smrj 		wrmsr(MSR_AMD_STAR,
198ae115bc7Smrj 		    ((uint64_t)(U32CS_SEL << 16 | KCS_SEL)) << 32);
19974ecdb51SJohn Levon 		if (kpti_enable == 1) {
20074ecdb51SJohn Levon 			wrmsr(MSR_AMD_LSTAR,
20174ecdb51SJohn Levon 			    (uint64_t)(uintptr_t)tr_sys_syscall);
20274ecdb51SJohn Levon 			wrmsr(MSR_AMD_CSTAR,
20374ecdb51SJohn Levon 			    (uint64_t)(uintptr_t)tr_sys_syscall32);
20474ecdb51SJohn Levon 		} else {
20574ecdb51SJohn Levon 			wrmsr(MSR_AMD_LSTAR,
20674ecdb51SJohn Levon 			    (uint64_t)(uintptr_t)sys_syscall);
20774ecdb51SJohn Levon 			wrmsr(MSR_AMD_CSTAR,
20874ecdb51SJohn Levon 			    (uint64_t)(uintptr_t)sys_syscall32);
20974ecdb51SJohn Levon 		}
2107c478bd9Sstevel@tonic-gate 
2117c478bd9Sstevel@tonic-gate 		/*
2127c478bd9Sstevel@tonic-gate 		 * This list of flags is masked off the incoming
2137c478bd9Sstevel@tonic-gate 		 * %rfl when we enter the kernel.
2147c478bd9Sstevel@tonic-gate 		 */
2153ce2fcdcSRobert Mustacchi 		flags = PS_IE | PS_T;
2163ce2fcdcSRobert Mustacchi 		if (is_x86_feature(x86_featureset, X86FSET_SMAP) == B_TRUE)
2173ce2fcdcSRobert Mustacchi 			flags |= PS_ACHK;
2183ce2fcdcSRobert Mustacchi 		wrmsr(MSR_AMD_SFMASK, flags);
2197c478bd9Sstevel@tonic-gate 	}
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate 	/*
2227c478bd9Sstevel@tonic-gate 	 * On 64-bit kernels on Nocona machines, the 32-bit syscall
2237c478bd9Sstevel@tonic-gate 	 * variant isn't available to 32-bit applications, but sysenter is.
2247c478bd9Sstevel@tonic-gate 	 */
2257417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
2267417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_SEP)) {
2277c478bd9Sstevel@tonic-gate 
22874ecdb51SJohn Levon #if !defined(__xpv)
2297c478bd9Sstevel@tonic-gate 		/*
2307c478bd9Sstevel@tonic-gate 		 * The sysenter instruction imposes a certain ordering on
2317c478bd9Sstevel@tonic-gate 		 * segment selectors, so we double-check that ordering
2327c478bd9Sstevel@tonic-gate 		 * here. See "sysenter" in Intel document 245471-012, "IA-32
2337c478bd9Sstevel@tonic-gate 		 * Intel Architecture Software Developer's Manual Volume 2:
2347c478bd9Sstevel@tonic-gate 		 * Instruction Set Reference"
2357c478bd9Sstevel@tonic-gate 		 */
23674ecdb51SJohn Levon 		CTASSERT(KDS_SEL == KCS_SEL + 8);
2377c478bd9Sstevel@tonic-gate 
23874ecdb51SJohn Levon 		CTASSERT(U32CS_SEL == ((KCS_SEL + 16) | 3));
23974ecdb51SJohn Levon 		CTASSERT(UDS_SEL == U32CS_SEL + 8);
2407c478bd9Sstevel@tonic-gate #endif
2417c478bd9Sstevel@tonic-gate 
2427c478bd9Sstevel@tonic-gate 		cpu_sep_enable();
2437c478bd9Sstevel@tonic-gate 
2447c478bd9Sstevel@tonic-gate 		/*
2457c478bd9Sstevel@tonic-gate 		 * resume() sets this value to the base of the threads stack
2467c478bd9Sstevel@tonic-gate 		 * via a context handler.
2477c478bd9Sstevel@tonic-gate 		 */
248ae115bc7Smrj 		wrmsr(MSR_INTC_SEP_ESP, 0);
24974ecdb51SJohn Levon 
25074ecdb51SJohn Levon 		if (kpti_enable == 1) {
25174ecdb51SJohn Levon 			wrmsr(MSR_INTC_SEP_EIP,
25274ecdb51SJohn Levon 			    (uint64_t)(uintptr_t)tr_sys_sysenter);
25374ecdb51SJohn Levon 		} else {
25474ecdb51SJohn Levon 			wrmsr(MSR_INTC_SEP_EIP,
25574ecdb51SJohn Levon 			    (uint64_t)(uintptr_t)sys_sysenter);
25674ecdb51SJohn Levon 		}
2577c478bd9Sstevel@tonic-gate 	}
2587c478bd9Sstevel@tonic-gate 
2597c478bd9Sstevel@tonic-gate 	kpreempt_enable();
2607c478bd9Sstevel@tonic-gate }
2617c478bd9Sstevel@tonic-gate 
2622428aad8SPatrick Mooney #if !defined(__xpv)
2632428aad8SPatrick Mooney /*
2642428aad8SPatrick Mooney  * Configure per-cpu ID GDT
2652428aad8SPatrick Mooney  */
2662428aad8SPatrick Mooney static void
2672428aad8SPatrick Mooney init_cpu_id_gdt(struct cpu *cp)
2682428aad8SPatrick Mooney {
2692428aad8SPatrick Mooney 	/* Write cpu_id into limit field of GDT for usermode retrieval */
2702428aad8SPatrick Mooney #if defined(__amd64)
2712428aad8SPatrick Mooney 	set_usegd(&cp->cpu_gdt[GDT_CPUID], SDP_SHORT, NULL, cp->cpu_id,
2722428aad8SPatrick Mooney 	    SDT_MEMRODA, SEL_UPL, SDP_BYTES, SDP_OP32);
2732428aad8SPatrick Mooney #elif defined(__i386)
2742428aad8SPatrick Mooney 	set_usegd(&cp->cpu_gdt[GDT_CPUID], NULL, cp->cpu_id, SDT_MEMRODA,
2752428aad8SPatrick Mooney 	    SEL_UPL, SDP_BYTES, SDP_OP32);
2762428aad8SPatrick Mooney #endif
2772428aad8SPatrick Mooney }
2782428aad8SPatrick Mooney #endif /* !defined(__xpv) */
2792428aad8SPatrick Mooney 
2807c478bd9Sstevel@tonic-gate /*
2817c478bd9Sstevel@tonic-gate  * Multiprocessor initialization.
2827c478bd9Sstevel@tonic-gate  *
2837c478bd9Sstevel@tonic-gate  * Allocate and initialize the cpu structure, TRAPTRACE buffer, and the
2847c478bd9Sstevel@tonic-gate  * startup and idle threads for the specified CPU.
285a3114836SGerry Liu  * Parameter boot is true for boot time operations and is false for CPU
286a3114836SGerry Liu  * DR operations.
2877c478bd9Sstevel@tonic-gate  */
288a3114836SGerry Liu static struct cpu *
289a3114836SGerry Liu mp_cpu_configure_common(int cpun, boolean_t boot)
2907c478bd9Sstevel@tonic-gate {
2917c478bd9Sstevel@tonic-gate 	struct cpu *cp;
2927c478bd9Sstevel@tonic-gate 	kthread_id_t tp;
2937c478bd9Sstevel@tonic-gate 	caddr_t	sp;
2947c478bd9Sstevel@tonic-gate 	proc_t *procp;
295843e1988Sjohnlev #if !defined(__xpv)
2965b8a6efeSbholler 	extern int idle_cpu_prefer_mwait;
2970e751525SEric Saxe 	extern void cpu_idle_mwait();
298843e1988Sjohnlev #endif
2997c478bd9Sstevel@tonic-gate 	extern void idle();
3000e751525SEric Saxe 	extern void cpu_idle();
3017c478bd9Sstevel@tonic-gate 
3027c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE
3037c478bd9Sstevel@tonic-gate 	trap_trace_ctl_t *ttc = &trap_trace_ctl[cpun];
3047c478bd9Sstevel@tonic-gate #endif
3057c478bd9Sstevel@tonic-gate 
306a3114836SGerry Liu 	ASSERT(MUTEX_HELD(&cpu_lock));
3077c478bd9Sstevel@tonic-gate 	ASSERT(cpun < NCPU && cpu[cpun] == NULL);
3087c478bd9Sstevel@tonic-gate 
309a3114836SGerry Liu 	if (cpu_free_list == NULL) {
310a3114836SGerry Liu 		cp = kmem_zalloc(sizeof (*cp), KM_SLEEP);
311a3114836SGerry Liu 	} else {
312a3114836SGerry Liu 		cp = cpu_free_list;
313a3114836SGerry Liu 		cpu_free_list = cp->cpu_next_free;
314a3114836SGerry Liu 	}
315f98fbcecSbholler 
3163006ae82SFrank Van Der Linden 	cp->cpu_m.mcpu_istamp = cpun << 16;
3173006ae82SFrank Van Der Linden 
318a3114836SGerry Liu 	/* Create per CPU specific threads in the process p0. */
319a3114836SGerry Liu 	procp = &p0;
3207c478bd9Sstevel@tonic-gate 
3217c478bd9Sstevel@tonic-gate 	/*
3227c478bd9Sstevel@tonic-gate 	 * Initialize the dispatcher first.
3237c478bd9Sstevel@tonic-gate 	 */
3247c478bd9Sstevel@tonic-gate 	disp_cpu_init(cp);
3257c478bd9Sstevel@tonic-gate 
326affbd3ccSkchow 	cpu_vm_data_init(cp);
327affbd3ccSkchow 
3287c478bd9Sstevel@tonic-gate 	/*
3297c478bd9Sstevel@tonic-gate 	 * Allocate and initialize the startup thread for this CPU.
3307c478bd9Sstevel@tonic-gate 	 * Interrupt and process switch stacks get allocated later
3317c478bd9Sstevel@tonic-gate 	 * when the CPU starts running.
3327c478bd9Sstevel@tonic-gate 	 */
3337c478bd9Sstevel@tonic-gate 	tp = thread_create(NULL, 0, NULL, NULL, 0, procp,
3347c478bd9Sstevel@tonic-gate 	    TS_STOPPED, maxclsyspri);
3357c478bd9Sstevel@tonic-gate 
3367c478bd9Sstevel@tonic-gate 	/*
3377c478bd9Sstevel@tonic-gate 	 * Set state to TS_ONPROC since this thread will start running
3387c478bd9Sstevel@tonic-gate 	 * as soon as the CPU comes online.
3397c478bd9Sstevel@tonic-gate 	 *
3407c478bd9Sstevel@tonic-gate 	 * All the other fields of the thread structure are setup by
3417c478bd9Sstevel@tonic-gate 	 * thread_create().
3427c478bd9Sstevel@tonic-gate 	 */
3437c478bd9Sstevel@tonic-gate 	THREAD_ONPROC(tp, cp);
3447c478bd9Sstevel@tonic-gate 	tp->t_preempt = 1;
3457c478bd9Sstevel@tonic-gate 	tp->t_bound_cpu = cp;
3467c478bd9Sstevel@tonic-gate 	tp->t_affinitycnt = 1;
3477c478bd9Sstevel@tonic-gate 	tp->t_cpu = cp;
3487c478bd9Sstevel@tonic-gate 	tp->t_disp_queue = cp->cpu_disp;
3497c478bd9Sstevel@tonic-gate 
3507c478bd9Sstevel@tonic-gate 	/*
351a3114836SGerry Liu 	 * Setup thread to start in mp_startup_common.
3527c478bd9Sstevel@tonic-gate 	 */
3537c478bd9Sstevel@tonic-gate 	sp = tp->t_stk;
3547c478bd9Sstevel@tonic-gate 	tp->t_sp = (uintptr_t)(sp - MINFRAME);
355ae115bc7Smrj #if defined(__amd64)
356ae115bc7Smrj 	tp->t_sp -= STACK_ENTRY_ALIGN;		/* fake a call */
357ae115bc7Smrj #endif
358a3114836SGerry Liu 	/*
359a3114836SGerry Liu 	 * Setup thread start entry point for boot or hotplug.
360a3114836SGerry Liu 	 */
361a3114836SGerry Liu 	if (boot) {
362a3114836SGerry Liu 		tp->t_pc = (uintptr_t)mp_startup_boot;
363a3114836SGerry Liu 	} else {
364a3114836SGerry Liu 		tp->t_pc = (uintptr_t)mp_startup_hotplug;
365a3114836SGerry Liu 	}
3667c478bd9Sstevel@tonic-gate 
3677c478bd9Sstevel@tonic-gate 	cp->cpu_id = cpun;
3687c478bd9Sstevel@tonic-gate 	cp->cpu_self = cp;
3697c478bd9Sstevel@tonic-gate 	cp->cpu_thread = tp;
3707c478bd9Sstevel@tonic-gate 	cp->cpu_lwp = NULL;
3717c478bd9Sstevel@tonic-gate 	cp->cpu_dispthread = tp;
3727c478bd9Sstevel@tonic-gate 	cp->cpu_dispatch_pri = DISP_PRIO(tp);
3737c478bd9Sstevel@tonic-gate 
374da43ceabSsethg 	/*
375da43ceabSsethg 	 * cpu_base_spl must be set explicitly here to prevent any blocking
376a3114836SGerry Liu 	 * operations in mp_startup_common from causing the spl of the cpu
377a3114836SGerry Liu 	 * to drop to 0 (allowing device interrupts before we're ready) in
378a3114836SGerry Liu 	 * resume().
379da43ceabSsethg 	 * cpu_base_spl MUST remain at LOCK_LEVEL until the cpu is CPU_READY.
380da43ceabSsethg 	 * As an extra bit of security on DEBUG kernels, this is enforced with
381a3114836SGerry Liu 	 * an assertion in mp_startup_common() -- before cpu_base_spl is set
382a3114836SGerry Liu 	 * to its proper value.
383da43ceabSsethg 	 */
384da43ceabSsethg 	cp->cpu_base_spl = ipltospl(LOCK_LEVEL);
385da43ceabSsethg 
3867c478bd9Sstevel@tonic-gate 	/*
3877c478bd9Sstevel@tonic-gate 	 * Now, initialize per-CPU idle thread for this CPU.
3887c478bd9Sstevel@tonic-gate 	 */
3897c478bd9Sstevel@tonic-gate 	tp = thread_create(NULL, PAGESIZE, idle, NULL, 0, procp, TS_ONPROC, -1);
3907c478bd9Sstevel@tonic-gate 
3917c478bd9Sstevel@tonic-gate 	cp->cpu_idle_thread = tp;
3927c478bd9Sstevel@tonic-gate 
3937c478bd9Sstevel@tonic-gate 	tp->t_preempt = 1;
3947c478bd9Sstevel@tonic-gate 	tp->t_bound_cpu = cp;
3957c478bd9Sstevel@tonic-gate 	tp->t_affinitycnt = 1;
3967c478bd9Sstevel@tonic-gate 	tp->t_cpu = cp;
3977c478bd9Sstevel@tonic-gate 	tp->t_disp_queue = cp->cpu_disp;
3987c478bd9Sstevel@tonic-gate 
399394b433dSesaxe 	/*
400fb2f18f8Sesaxe 	 * Bootstrap the CPU's PG data
401394b433dSesaxe 	 */
402fb2f18f8Sesaxe 	pg_cpu_bootstrap(cp);
403394b433dSesaxe 
4047c478bd9Sstevel@tonic-gate 	/*
405ae115bc7Smrj 	 * Perform CPC initialization on the new CPU.
4067c478bd9Sstevel@tonic-gate 	 */
4077c478bd9Sstevel@tonic-gate 	kcpc_hw_init(cp);
4087c478bd9Sstevel@tonic-gate 
4097c478bd9Sstevel@tonic-gate 	/*
4107c478bd9Sstevel@tonic-gate 	 * Allocate virtual addresses for cpu_caddr1 and cpu_caddr2
4117c478bd9Sstevel@tonic-gate 	 * for each CPU.
4127c478bd9Sstevel@tonic-gate 	 */
4137c478bd9Sstevel@tonic-gate 	setup_vaddr_for_ppcopy(cp);
4147c478bd9Sstevel@tonic-gate 
4157c478bd9Sstevel@tonic-gate 	/*
416ae115bc7Smrj 	 * Allocate page for new GDT and initialize from current GDT.
4177c478bd9Sstevel@tonic-gate 	 */
418ae115bc7Smrj #if !defined(__lint)
419ae115bc7Smrj 	ASSERT((sizeof (*cp->cpu_gdt) * NGDT) <= PAGESIZE);
420ae115bc7Smrj #endif
4210cfdb603Sjosephb 	cp->cpu_gdt = kmem_zalloc(PAGESIZE, KM_SLEEP);
4220cfdb603Sjosephb 	bcopy(CPU->cpu_gdt, cp->cpu_gdt, (sizeof (*cp->cpu_gdt) * NGDT));
4237c478bd9Sstevel@tonic-gate 
424ae115bc7Smrj #if defined(__i386)
4257c478bd9Sstevel@tonic-gate 	/*
4267c478bd9Sstevel@tonic-gate 	 * setup kernel %gs.
4277c478bd9Sstevel@tonic-gate 	 */
4287c478bd9Sstevel@tonic-gate 	set_usegd(&cp->cpu_gdt[GDT_GS], cp, sizeof (struct cpu) -1, SDT_MEMRWA,
4297c478bd9Sstevel@tonic-gate 	    SEL_KPL, 0, 1);
430ae115bc7Smrj #endif
4317c478bd9Sstevel@tonic-gate 
4327c478bd9Sstevel@tonic-gate 	/*
43374ecdb51SJohn Levon 	 * Allocate pages for the CPU LDT.
43474ecdb51SJohn Levon 	 */
43574ecdb51SJohn Levon 	cp->cpu_m.mcpu_ldt = kmem_zalloc(LDT_CPU_SIZE, KM_SLEEP);
43674ecdb51SJohn Levon 	cp->cpu_m.mcpu_ldt_len = 0;
43774ecdb51SJohn Levon 
43874ecdb51SJohn Levon 	/*
43974ecdb51SJohn Levon 	 * Allocate a per-CPU IDT and initialize the new IDT to the currently
44074ecdb51SJohn Levon 	 * runing CPU.
4417c478bd9Sstevel@tonic-gate 	 */
4420cfdb603Sjosephb #if !defined(__lint)
44374ecdb51SJohn Levon 	ASSERT((sizeof (*CPU->cpu_idt) * NIDT) <= PAGESIZE);
4440cfdb603Sjosephb #endif
44574ecdb51SJohn Levon 	cp->cpu_idt = kmem_alloc(PAGESIZE, KM_SLEEP);
44674ecdb51SJohn Levon 	bcopy(CPU->cpu_idt, cp->cpu_idt, PAGESIZE);
4477c478bd9Sstevel@tonic-gate 
4487c478bd9Sstevel@tonic-gate 	/*
449ae115bc7Smrj 	 * alloc space for cpuid info
4507c478bd9Sstevel@tonic-gate 	 */
451ae115bc7Smrj 	cpuid_alloc_space(cp);
452a3114836SGerry Liu #if !defined(__xpv)
4537417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MWAIT) &&
4547417cfdeSKuriakose Kuruvilla 	    idle_cpu_prefer_mwait) {
455a3114836SGerry Liu 		cp->cpu_m.mcpu_mwait = cpuid_mwait_alloc(cp);
456a3114836SGerry Liu 		cp->cpu_m.mcpu_idle_cpu = cpu_idle_mwait;
457a3114836SGerry Liu 	} else
458a3114836SGerry Liu #endif
459a3114836SGerry Liu 		cp->cpu_m.mcpu_idle_cpu = cpu_idle;
460a3114836SGerry Liu 
461a3114836SGerry Liu 	init_cpu_info(cp);
4627c478bd9Sstevel@tonic-gate 
4632428aad8SPatrick Mooney #if !defined(__xpv)
4642428aad8SPatrick Mooney 	init_cpu_id_gdt(cp);
4652428aad8SPatrick Mooney #endif
4662428aad8SPatrick Mooney 
4672449e17fSsherrym 	/*
4682449e17fSsherrym 	 * alloc space for ucode_info
4692449e17fSsherrym 	 */
4702449e17fSsherrym 	ucode_alloc_space(cp);
471f34a7178SJoe Bonasera 	xc_init_cpu(cp);
472ae115bc7Smrj 	hat_cpu_online(cp);
4737c478bd9Sstevel@tonic-gate 
4747c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE
4757c478bd9Sstevel@tonic-gate 	/*
476ae115bc7Smrj 	 * If this is a TRAPTRACE kernel, allocate TRAPTRACE buffers
4777c478bd9Sstevel@tonic-gate 	 */
4787c478bd9Sstevel@tonic-gate 	ttc->ttc_first = (uintptr_t)kmem_zalloc(trap_trace_bufsize, KM_SLEEP);
4797c478bd9Sstevel@tonic-gate 	ttc->ttc_next = ttc->ttc_first;
4807c478bd9Sstevel@tonic-gate 	ttc->ttc_limit = ttc->ttc_first + trap_trace_bufsize;
4817c478bd9Sstevel@tonic-gate #endif
482a3114836SGerry Liu 
4837c478bd9Sstevel@tonic-gate 	/*
4847c478bd9Sstevel@tonic-gate 	 * Record that we have another CPU.
4857c478bd9Sstevel@tonic-gate 	 */
4867c478bd9Sstevel@tonic-gate 	/*
4877c478bd9Sstevel@tonic-gate 	 * Initialize the interrupt threads for this CPU
4887c478bd9Sstevel@tonic-gate 	 */
489100b72f4Sandrei 	cpu_intr_alloc(cp, NINTR_THREADS);
490a3114836SGerry Liu 
491a3114836SGerry Liu 	cp->cpu_flags = CPU_OFFLINE | CPU_QUIESCED | CPU_POWEROFF;
492a3114836SGerry Liu 	cpu_set_state(cp);
493a3114836SGerry Liu 
4947c478bd9Sstevel@tonic-gate 	/*
4957c478bd9Sstevel@tonic-gate 	 * Add CPU to list of available CPUs.  It'll be on the active list
496a3114836SGerry Liu 	 * after mp_startup_common().
4977c478bd9Sstevel@tonic-gate 	 */
4987c478bd9Sstevel@tonic-gate 	cpu_add_unit(cp);
499ae115bc7Smrj 
500ae115bc7Smrj 	return (cp);
501ae115bc7Smrj }
502ae115bc7Smrj 
503ae115bc7Smrj /*
504a3114836SGerry Liu  * Undo what was done in mp_cpu_configure_common
505ae115bc7Smrj  */
506ae115bc7Smrj static void
507a3114836SGerry Liu mp_cpu_unconfigure_common(struct cpu *cp, int error)
508ae115bc7Smrj {
509a3114836SGerry Liu 	ASSERT(MUTEX_HELD(&cpu_lock));
510ae115bc7Smrj 
511ae115bc7Smrj 	/*
512ae115bc7Smrj 	 * Remove the CPU from the list of available CPUs.
513ae115bc7Smrj 	 */
514ae115bc7Smrj 	cpu_del_unit(cp->cpu_id);
515ae115bc7Smrj 
516ae115bc7Smrj 	if (error == ETIMEDOUT) {
517ae115bc7Smrj 		/*
518ae115bc7Smrj 		 * The cpu was started, but never *seemed* to run any
519ae115bc7Smrj 		 * code in the kernel; it's probably off spinning in its
520ae115bc7Smrj 		 * own private world, though with potential references to
521ae115bc7Smrj 		 * our kmem-allocated IDTs and GDTs (for example).
522ae115bc7Smrj 		 *
523ae115bc7Smrj 		 * Worse still, it may actually wake up some time later,
524ae115bc7Smrj 		 * so rather than guess what it might or might not do, we
525ae115bc7Smrj 		 * leave the fundamental data structures intact.
526ae115bc7Smrj 		 */
527ae115bc7Smrj 		cp->cpu_flags = 0;
528ae115bc7Smrj 		return;
529ae115bc7Smrj 	}
530ae115bc7Smrj 
531ae115bc7Smrj 	/*
532ae115bc7Smrj 	 * At this point, the only threads bound to this CPU should
533ae115bc7Smrj 	 * special per-cpu threads: it's idle thread, it's pause threads,
534ae115bc7Smrj 	 * and it's interrupt threads.  Clean these up.
535ae115bc7Smrj 	 */
536ae115bc7Smrj 	cpu_destroy_bound_threads(cp);
537ae115bc7Smrj 	cp->cpu_idle_thread = NULL;
538ae115bc7Smrj 
539ae115bc7Smrj 	/*
540ae115bc7Smrj 	 * Free the interrupt stack.
541ae115bc7Smrj 	 */
542ae115bc7Smrj 	segkp_release(segkp,
543ae115bc7Smrj 	    cp->cpu_intr_stack - (INTR_STACK_SIZE - SA(MINFRAME)));
544a3114836SGerry Liu 	cp->cpu_intr_stack = NULL;
545ae115bc7Smrj 
546ae115bc7Smrj #ifdef TRAPTRACE
547ae115bc7Smrj 	/*
548ae115bc7Smrj 	 * Discard the trap trace buffer
549ae115bc7Smrj 	 */
550ae115bc7Smrj 	{
551ae115bc7Smrj 		trap_trace_ctl_t *ttc = &trap_trace_ctl[cp->cpu_id];
552ae115bc7Smrj 
553ae115bc7Smrj 		kmem_free((void *)ttc->ttc_first, trap_trace_bufsize);
5548f22c1dfSToomas Soome 		ttc->ttc_first = (uintptr_t)NULL;
555ae115bc7Smrj 	}
556ae115bc7Smrj #endif
557ae115bc7Smrj 
558ae115bc7Smrj 	hat_cpu_offline(cp);
559ae115bc7Smrj 
5602449e17fSsherrym 	ucode_free_space(cp);
5612449e17fSsherrym 
562a3114836SGerry Liu 	/* Free CPU ID string and brand string. */
563a3114836SGerry Liu 	if (cp->cpu_idstr) {
564a3114836SGerry Liu 		kmem_free(cp->cpu_idstr, CPU_IDSTRLEN);
565a3114836SGerry Liu 		cp->cpu_idstr = NULL;
566a3114836SGerry Liu 	}
567a3114836SGerry Liu 	if (cp->cpu_brandstr) {
568a3114836SGerry Liu 		kmem_free(cp->cpu_brandstr, CPU_IDSTRLEN);
569a3114836SGerry Liu 		cp->cpu_brandstr = NULL;
570a3114836SGerry Liu 	}
571a3114836SGerry Liu 
572a3114836SGerry Liu #if !defined(__xpv)
573a3114836SGerry Liu 	if (cp->cpu_m.mcpu_mwait != NULL) {
574a3114836SGerry Liu 		cpuid_mwait_free(cp);
575a3114836SGerry Liu 		cp->cpu_m.mcpu_mwait = NULL;
576a3114836SGerry Liu 	}
577a3114836SGerry Liu #endif
578a3114836SGerry Liu 	cpuid_free_space(cp);
579a3114836SGerry Liu 
5800cfdb603Sjosephb 	if (cp->cpu_idt != CPU->cpu_idt)
5810cfdb603Sjosephb 		kmem_free(cp->cpu_idt, PAGESIZE);
5820cfdb603Sjosephb 	cp->cpu_idt = NULL;
583ae115bc7Smrj 
58474ecdb51SJohn Levon 	kmem_free(cp->cpu_m.mcpu_ldt, LDT_CPU_SIZE);
58574ecdb51SJohn Levon 	cp->cpu_m.mcpu_ldt = NULL;
58674ecdb51SJohn Levon 	cp->cpu_m.mcpu_ldt_len = 0;
58774ecdb51SJohn Levon 
5880cfdb603Sjosephb 	kmem_free(cp->cpu_gdt, PAGESIZE);
5890cfdb603Sjosephb 	cp->cpu_gdt = NULL;
590ae115bc7Smrj 
591a3114836SGerry Liu 	if (cp->cpu_supp_freqs != NULL) {
592a3114836SGerry Liu 		size_t len = strlen(cp->cpu_supp_freqs) + 1;
593a3114836SGerry Liu 		kmem_free(cp->cpu_supp_freqs, len);
594a3114836SGerry Liu 		cp->cpu_supp_freqs = NULL;
595a3114836SGerry Liu 	}
596a3114836SGerry Liu 
597ae115bc7Smrj 	teardown_vaddr_for_ppcopy(cp);
598ae115bc7Smrj 
599ae115bc7Smrj 	kcpc_hw_fini(cp);
600ae115bc7Smrj 
601ae115bc7Smrj 	cp->cpu_dispthread = NULL;
602ae115bc7Smrj 	cp->cpu_thread = NULL;	/* discarded by cpu_destroy_bound_threads() */
603ae115bc7Smrj 
604ae115bc7Smrj 	cpu_vm_data_destroy(cp);
605ae115bc7Smrj 
606a3114836SGerry Liu 	xc_fini_cpu(cp);
607ae115bc7Smrj 	disp_cpu_fini(cp);
608ae115bc7Smrj 
609a3114836SGerry Liu 	ASSERT(cp != CPU0);
610a3114836SGerry Liu 	bzero(cp, sizeof (*cp));
611a3114836SGerry Liu 	cp->cpu_next_free = cpu_free_list;
612a3114836SGerry Liu 	cpu_free_list = cp;
6137c478bd9Sstevel@tonic-gate }
6147c478bd9Sstevel@tonic-gate 
6157c478bd9Sstevel@tonic-gate /*
6167c478bd9Sstevel@tonic-gate  * Apply workarounds for known errata, and warn about those that are absent.
6177c478bd9Sstevel@tonic-gate  *
6187c478bd9Sstevel@tonic-gate  * System vendors occasionally create configurations which contain different
6197c478bd9Sstevel@tonic-gate  * revisions of the CPUs that are almost but not exactly the same.  At the
6207c478bd9Sstevel@tonic-gate  * time of writing, this meant that their clock rates were the same, their
6217c478bd9Sstevel@tonic-gate  * feature sets were the same, but the required workaround were -not-
6227c478bd9Sstevel@tonic-gate  * necessarily the same.  So, this routine is invoked on -every- CPU soon
6237c478bd9Sstevel@tonic-gate  * after starting to make sure that the resulting system contains the most
6247c478bd9Sstevel@tonic-gate  * pessimal set of workarounds needed to cope with *any* of the CPUs in the
6257c478bd9Sstevel@tonic-gate  * system.
6267c478bd9Sstevel@tonic-gate  *
627ef50d8c0Sesaxe  * workaround_errata is invoked early in mlsetup() for CPU 0, and in
628a3114836SGerry Liu  * mp_startup_common() for all slave CPUs. Slaves process workaround_errata
629a3114836SGerry Liu  * prior to acknowledging their readiness to the master, so this routine will
630ef50d8c0Sesaxe  * never be executed by multiple CPUs in parallel, thus making updates to
631ef50d8c0Sesaxe  * global data safe.
632ef50d8c0Sesaxe  *
6332201b277Skucharsk  * These workarounds are based on Rev 3.57 of the Revision Guide for
6342201b277Skucharsk  * AMD Athlon(tm) 64 and AMD Opteron(tm) Processors, August 2005.
6357c478bd9Sstevel@tonic-gate  */
6367c478bd9Sstevel@tonic-gate 
637ae115bc7Smrj #if defined(OPTERON_ERRATUM_88)
638ae115bc7Smrj int opteron_erratum_88;		/* if non-zero -> at least one cpu has it */
639ae115bc7Smrj #endif
640ae115bc7Smrj 
6417c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_91)
6427c478bd9Sstevel@tonic-gate int opteron_erratum_91;		/* if non-zero -> at least one cpu has it */
6437c478bd9Sstevel@tonic-gate #endif
6447c478bd9Sstevel@tonic-gate 
6457c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_93)
6467c478bd9Sstevel@tonic-gate int opteron_erratum_93;		/* if non-zero -> at least one cpu has it */
6477c478bd9Sstevel@tonic-gate #endif
6487c478bd9Sstevel@tonic-gate 
649ae115bc7Smrj #if defined(OPTERON_ERRATUM_95)
650ae115bc7Smrj int opteron_erratum_95;		/* if non-zero -> at least one cpu has it */
651ae115bc7Smrj #endif
652ae115bc7Smrj 
6537c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_100)
6547c478bd9Sstevel@tonic-gate int opteron_erratum_100;	/* if non-zero -> at least one cpu has it */
6557c478bd9Sstevel@tonic-gate #endif
6567c478bd9Sstevel@tonic-gate 
657ae115bc7Smrj #if defined(OPTERON_ERRATUM_108)
658ae115bc7Smrj int opteron_erratum_108;	/* if non-zero -> at least one cpu has it */
659ae115bc7Smrj #endif
660ae115bc7Smrj 
6617c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_109)
6627c478bd9Sstevel@tonic-gate int opteron_erratum_109;	/* if non-zero -> at least one cpu has it */
6637c478bd9Sstevel@tonic-gate #endif
6647c478bd9Sstevel@tonic-gate 
6657c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_121)
6667c478bd9Sstevel@tonic-gate int opteron_erratum_121;	/* if non-zero -> at least one cpu has it */
6677c478bd9Sstevel@tonic-gate #endif
6687c478bd9Sstevel@tonic-gate 
6697c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_122)
6707c478bd9Sstevel@tonic-gate int opteron_erratum_122;	/* if non-zero -> at least one cpu has it */
6717c478bd9Sstevel@tonic-gate #endif
6727c478bd9Sstevel@tonic-gate 
6737c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_123)
6747c478bd9Sstevel@tonic-gate int opteron_erratum_123;	/* if non-zero -> at least one cpu has it */
6757c478bd9Sstevel@tonic-gate #endif
6767c478bd9Sstevel@tonic-gate 
6772201b277Skucharsk #if defined(OPTERON_ERRATUM_131)
6782201b277Skucharsk int opteron_erratum_131;	/* if non-zero -> at least one cpu has it */
6792201b277Skucharsk #endif
6807c478bd9Sstevel@tonic-gate 
681ef50d8c0Sesaxe #if defined(OPTERON_WORKAROUND_6336786)
682ef50d8c0Sesaxe int opteron_workaround_6336786;	/* non-zero -> WA relevant and applied */
683ef50d8c0Sesaxe int opteron_workaround_6336786_UP = 0;	/* Not needed for UP */
684ef50d8c0Sesaxe #endif
685ef50d8c0Sesaxe 
686ee88d2b9Skchow #if defined(OPTERON_WORKAROUND_6323525)
687ee88d2b9Skchow int opteron_workaround_6323525;	/* if non-zero -> at least one cpu has it */
688ee88d2b9Skchow #endif
689ee88d2b9Skchow 
690512cf780Skchow #if defined(OPTERON_ERRATUM_298)
691512cf780Skchow int opteron_erratum_298;
692512cf780Skchow #endif
693512cf780Skchow 
6945e54b56dSHans Rosenfeld #if defined(OPTERON_ERRATUM_721)
6955e54b56dSHans Rosenfeld int opteron_erratum_721;
6965e54b56dSHans Rosenfeld #endif
6975e54b56dSHans Rosenfeld 
698ae115bc7Smrj static void
699ae115bc7Smrj workaround_warning(cpu_t *cp, uint_t erratum)
700ae115bc7Smrj {
701ae115bc7Smrj 	cmn_err(CE_WARN, "cpu%d: no workaround for erratum %u",
702ae115bc7Smrj 	    cp->cpu_id, erratum);
703ae115bc7Smrj }
704ae115bc7Smrj 
705ae115bc7Smrj static void
706ae115bc7Smrj workaround_applied(uint_t erratum)
707ae115bc7Smrj {
708ae115bc7Smrj 	if (erratum > 1000000)
709ae115bc7Smrj 		cmn_err(CE_CONT, "?workaround applied for cpu issue #%d\n",
710ae115bc7Smrj 		    erratum);
711ae115bc7Smrj 	else
712ae115bc7Smrj 		cmn_err(CE_CONT, "?workaround applied for cpu erratum #%d\n",
713ae115bc7Smrj 		    erratum);
714ae115bc7Smrj }
715ae115bc7Smrj 
716ae115bc7Smrj static void
717ae115bc7Smrj msr_warning(cpu_t *cp, const char *rw, uint_t msr, int error)
718ae115bc7Smrj {
719ae115bc7Smrj 	cmn_err(CE_WARN, "cpu%d: couldn't %smsr 0x%x, error %d",
720ae115bc7Smrj 	    cp->cpu_id, rw, msr, error);
721ae115bc7Smrj }
7227c478bd9Sstevel@tonic-gate 
72392564cb1Sesaxe /*
724d2aeaf66SEric Saxe  * Determine the number of nodes in a Hammer / Greyhound / Griffin family
725d2aeaf66SEric Saxe  * system.
72692564cb1Sesaxe  */
72792564cb1Sesaxe static uint_t
72892564cb1Sesaxe opteron_get_nnodes(void)
72992564cb1Sesaxe {
73092564cb1Sesaxe 	static uint_t nnodes = 0;
73192564cb1Sesaxe 
732d2aeaf66SEric Saxe 	if (nnodes == 0) {
73392564cb1Sesaxe #ifdef	DEBUG
734d2aeaf66SEric Saxe 		uint_t family;
73592564cb1Sesaxe 
736d2aeaf66SEric Saxe 		/*
737d2aeaf66SEric Saxe 		 * This routine uses a PCI config space based mechanism
738d2aeaf66SEric Saxe 		 * for retrieving the number of nodes in the system.
739d2aeaf66SEric Saxe 		 * Device 24, function 0, offset 0x60 as used here is not
740d2aeaf66SEric Saxe 		 * AMD processor architectural, and may not work on processor
741d2aeaf66SEric Saxe 		 * families other than those listed below.
742d2aeaf66SEric Saxe 		 *
743d2aeaf66SEric Saxe 		 * Callers of this routine must ensure that we're running on
744d2aeaf66SEric Saxe 		 * a processor which supports this mechanism.
745d2aeaf66SEric Saxe 		 * The assertion below is meant to catch calls on unsupported
746d2aeaf66SEric Saxe 		 * processors.
747d2aeaf66SEric Saxe 		 */
748d2aeaf66SEric Saxe 		family = cpuid_getfamily(CPU);
749d2aeaf66SEric Saxe 		ASSERT(family == 0xf || family == 0x10 || family == 0x11);
75092564cb1Sesaxe #endif	/* DEBUG */
75192564cb1Sesaxe 
75292564cb1Sesaxe 		/*
75392564cb1Sesaxe 		 * Obtain the number of nodes in the system from
75492564cb1Sesaxe 		 * bits [6:4] of the Node ID register on node 0.
75592564cb1Sesaxe 		 *
75692564cb1Sesaxe 		 * The actual node count is NodeID[6:4] + 1
75792564cb1Sesaxe 		 *
75892564cb1Sesaxe 		 * The Node ID register is accessed via function 0,
75992564cb1Sesaxe 		 * offset 0x60. Node 0 is device 24.
76092564cb1Sesaxe 		 */
76192564cb1Sesaxe 		nnodes = ((pci_getl_func(0, 24, 0, 0x60) & 0x70) >> 4) + 1;
76292564cb1Sesaxe 	}
76392564cb1Sesaxe 	return (nnodes);
76492564cb1Sesaxe }
76592564cb1Sesaxe 
766512cf780Skchow uint_t
767512cf780Skchow do_erratum_298(struct cpu *cpu)
768512cf780Skchow {
769512cf780Skchow 	static int	osvwrc = -3;
770512cf780Skchow 	extern int	osvw_opteron_erratum(cpu_t *, uint_t);
771512cf780Skchow 
772512cf780Skchow 	/*
773512cf780Skchow 	 * L2 Eviction May Occur During Processor Operation To Set
774512cf780Skchow 	 * Accessed or Dirty Bit.
775512cf780Skchow 	 */
776512cf780Skchow 	if (osvwrc == -3) {
777512cf780Skchow 		osvwrc = osvw_opteron_erratum(cpu, 298);
778512cf780Skchow 	} else {
779512cf780Skchow 		/* osvw return codes should be consistent for all cpus */
780512cf780Skchow 		ASSERT(osvwrc == osvw_opteron_erratum(cpu, 298));
781512cf780Skchow 	}
782512cf780Skchow 
783512cf780Skchow 	switch (osvwrc) {
784512cf780Skchow 	case 0:		/* erratum is not present: do nothing */
785512cf780Skchow 		break;
786512cf780Skchow 	case 1:		/* erratum is present: BIOS workaround applied */
787512cf780Skchow 		/*
788512cf780Skchow 		 * check if workaround is actually in place and issue warning
789512cf780Skchow 		 * if not.
790512cf780Skchow 		 */
791512cf780Skchow 		if (((rdmsr(MSR_AMD_HWCR) & AMD_HWCR_TLBCACHEDIS) == 0) ||
792512cf780Skchow 		    ((rdmsr(MSR_AMD_BU_CFG) & AMD_BU_CFG_E298) == 0)) {
793512cf780Skchow #if defined(OPTERON_ERRATUM_298)
794512cf780Skchow 			opteron_erratum_298++;
795512cf780Skchow #else
796512cf780Skchow 			workaround_warning(cpu, 298);
797512cf780Skchow 			return (1);
798512cf780Skchow #endif
799512cf780Skchow 		}
800512cf780Skchow 		break;
801512cf780Skchow 	case -1:	/* cannot determine via osvw: check cpuid */
802512cf780Skchow 		if ((cpuid_opteron_erratum(cpu, 298) > 0) &&
803512cf780Skchow 		    (((rdmsr(MSR_AMD_HWCR) & AMD_HWCR_TLBCACHEDIS) == 0) ||
804512cf780Skchow 		    ((rdmsr(MSR_AMD_BU_CFG) & AMD_BU_CFG_E298) == 0))) {
805512cf780Skchow #if defined(OPTERON_ERRATUM_298)
806512cf780Skchow 			opteron_erratum_298++;
807512cf780Skchow #else
808512cf780Skchow 			workaround_warning(cpu, 298);
809512cf780Skchow 			return (1);
810512cf780Skchow #endif
811512cf780Skchow 		}
812512cf780Skchow 		break;
813512cf780Skchow 	}
814512cf780Skchow 	return (0);
815512cf780Skchow }
816512cf780Skchow 
8177c478bd9Sstevel@tonic-gate uint_t
8187c478bd9Sstevel@tonic-gate workaround_errata(struct cpu *cpu)
8197c478bd9Sstevel@tonic-gate {
8207c478bd9Sstevel@tonic-gate 	uint_t missing = 0;
8217c478bd9Sstevel@tonic-gate 
8227c478bd9Sstevel@tonic-gate 	ASSERT(cpu == CPU);
8237c478bd9Sstevel@tonic-gate 
8247c478bd9Sstevel@tonic-gate 	/*LINTED*/
8257c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 88) > 0) {
8267c478bd9Sstevel@tonic-gate 		/*
8277c478bd9Sstevel@tonic-gate 		 * SWAPGS May Fail To Read Correct GS Base
8287c478bd9Sstevel@tonic-gate 		 */
8297c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_88)
8307c478bd9Sstevel@tonic-gate 		/*
8317c478bd9Sstevel@tonic-gate 		 * The workaround is an mfence in the relevant assembler code
8327c478bd9Sstevel@tonic-gate 		 */
833ae115bc7Smrj 		opteron_erratum_88++;
8347c478bd9Sstevel@tonic-gate #else
835ae115bc7Smrj 		workaround_warning(cpu, 88);
8367c478bd9Sstevel@tonic-gate 		missing++;
8377c478bd9Sstevel@tonic-gate #endif
8387c478bd9Sstevel@tonic-gate 	}
8397c478bd9Sstevel@tonic-gate 
8407c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 91) > 0) {
8417c478bd9Sstevel@tonic-gate 		/*
8427c478bd9Sstevel@tonic-gate 		 * Software Prefetches May Report A Page Fault
8437c478bd9Sstevel@tonic-gate 		 */
8447c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_91)
8457c478bd9Sstevel@tonic-gate 		/*
8467c478bd9Sstevel@tonic-gate 		 * fix is in trap.c
8477c478bd9Sstevel@tonic-gate 		 */
8487c478bd9Sstevel@tonic-gate 		opteron_erratum_91++;
8497c478bd9Sstevel@tonic-gate #else
850ae115bc7Smrj 		workaround_warning(cpu, 91);
8517c478bd9Sstevel@tonic-gate 		missing++;
8527c478bd9Sstevel@tonic-gate #endif
8537c478bd9Sstevel@tonic-gate 	}
8547c478bd9Sstevel@tonic-gate 
8557c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 93) > 0) {
8567c478bd9Sstevel@tonic-gate 		/*
8577c478bd9Sstevel@tonic-gate 		 * RSM Auto-Halt Restart Returns to Incorrect RIP
8587c478bd9Sstevel@tonic-gate 		 */
8597c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_93)
8607c478bd9Sstevel@tonic-gate 		/*
8617c478bd9Sstevel@tonic-gate 		 * fix is in trap.c
8627c478bd9Sstevel@tonic-gate 		 */
8637c478bd9Sstevel@tonic-gate 		opteron_erratum_93++;
8647c478bd9Sstevel@tonic-gate #else
865ae115bc7Smrj 		workaround_warning(cpu, 93);
8667c478bd9Sstevel@tonic-gate 		missing++;
8677c478bd9Sstevel@tonic-gate #endif
8687c478bd9Sstevel@tonic-gate 	}
8697c478bd9Sstevel@tonic-gate 
8707c478bd9Sstevel@tonic-gate 	/*LINTED*/
8717c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 95) > 0) {
8727c478bd9Sstevel@tonic-gate 		/*
8737c478bd9Sstevel@tonic-gate 		 * RET Instruction May Return to Incorrect EIP
8747c478bd9Sstevel@tonic-gate 		 */
8757c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_95)
8767c478bd9Sstevel@tonic-gate #if defined(_LP64)
8777c478bd9Sstevel@tonic-gate 		/*
8787c478bd9Sstevel@tonic-gate 		 * Workaround this by ensuring that 32-bit user code and
8797c478bd9Sstevel@tonic-gate 		 * 64-bit kernel code never occupy the same address
8807c478bd9Sstevel@tonic-gate 		 * range mod 4G.
8817c478bd9Sstevel@tonic-gate 		 */
8827c478bd9Sstevel@tonic-gate 		if (_userlimit32 > 0xc0000000ul)
8837c478bd9Sstevel@tonic-gate 			*(uintptr_t *)&_userlimit32 = 0xc0000000ul;
8847c478bd9Sstevel@tonic-gate 
8857c478bd9Sstevel@tonic-gate 		/*LINTED*/
8867c478bd9Sstevel@tonic-gate 		ASSERT((uint32_t)COREHEAP_BASE == 0xc0000000u);
887ae115bc7Smrj 		opteron_erratum_95++;
8887c478bd9Sstevel@tonic-gate #endif	/* _LP64 */
8897c478bd9Sstevel@tonic-gate #else
890ae115bc7Smrj 		workaround_warning(cpu, 95);
8917c478bd9Sstevel@tonic-gate 		missing++;
892ae115bc7Smrj #endif
8937c478bd9Sstevel@tonic-gate 	}
8947c478bd9Sstevel@tonic-gate 
8957c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 100) > 0) {
8967c478bd9Sstevel@tonic-gate 		/*
8977c478bd9Sstevel@tonic-gate 		 * Compatibility Mode Branches Transfer to Illegal Address
8987c478bd9Sstevel@tonic-gate 		 */
8997c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_100)
9007c478bd9Sstevel@tonic-gate 		/*
9017c478bd9Sstevel@tonic-gate 		 * fix is in trap.c
9027c478bd9Sstevel@tonic-gate 		 */
9037c478bd9Sstevel@tonic-gate 		opteron_erratum_100++;
9047c478bd9Sstevel@tonic-gate #else
905ae115bc7Smrj 		workaround_warning(cpu, 100);
9067c478bd9Sstevel@tonic-gate 		missing++;
9077c478bd9Sstevel@tonic-gate #endif
9087c478bd9Sstevel@tonic-gate 	}
9097c478bd9Sstevel@tonic-gate 
9107c478bd9Sstevel@tonic-gate 	/*LINTED*/
9117c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 108) > 0) {
9127c478bd9Sstevel@tonic-gate 		/*
9137c478bd9Sstevel@tonic-gate 		 * CPUID Instruction May Return Incorrect Model Number In
9147c478bd9Sstevel@tonic-gate 		 * Some Processors
9157c478bd9Sstevel@tonic-gate 		 */
9167c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_108)
9177c478bd9Sstevel@tonic-gate 		/*
9187c478bd9Sstevel@tonic-gate 		 * (Our cpuid-handling code corrects the model number on
9197c478bd9Sstevel@tonic-gate 		 * those processors)
9207c478bd9Sstevel@tonic-gate 		 */
9217c478bd9Sstevel@tonic-gate #else
922ae115bc7Smrj 		workaround_warning(cpu, 108);
9237c478bd9Sstevel@tonic-gate 		missing++;
9247c478bd9Sstevel@tonic-gate #endif
9257c478bd9Sstevel@tonic-gate 	}
9267c478bd9Sstevel@tonic-gate 
9277c478bd9Sstevel@tonic-gate 	/*LINTED*/
928ae115bc7Smrj 	if (cpuid_opteron_erratum(cpu, 109) > 0) do {
9297c478bd9Sstevel@tonic-gate 		/*
930fb2caebeSRandy Fishel 		 * Certain Reverse REP MOVS May Produce Unpredictable Behavior
9317c478bd9Sstevel@tonic-gate 		 */
9327c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_109)
933ae115bc7Smrj 		/*
934ae115bc7Smrj 		 * The "workaround" is to print a warning to upgrade the BIOS
935ae115bc7Smrj 		 */
936ae115bc7Smrj 		uint64_t value;
937ae115bc7Smrj 		const uint_t msr = MSR_AMD_PATCHLEVEL;
938ae115bc7Smrj 		int err;
939ae115bc7Smrj 
940ae115bc7Smrj 		if ((err = checked_rdmsr(msr, &value)) != 0) {
941ae115bc7Smrj 			msr_warning(cpu, "rd", msr, err);
942ae115bc7Smrj 			workaround_warning(cpu, 109);
943ae115bc7Smrj 			missing++;
944ae115bc7Smrj 		}
945ae115bc7Smrj 		if (value == 0)
9467c478bd9Sstevel@tonic-gate 			opteron_erratum_109++;
9477c478bd9Sstevel@tonic-gate #else
948ae115bc7Smrj 		workaround_warning(cpu, 109);
9497c478bd9Sstevel@tonic-gate 		missing++;
9507c478bd9Sstevel@tonic-gate #endif
951ae115bc7Smrj 	/*CONSTANTCONDITION*/
952ae115bc7Smrj 	} while (0);
953ae115bc7Smrj 
9547c478bd9Sstevel@tonic-gate 	/*LINTED*/
9557c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 121) > 0) {
9567c478bd9Sstevel@tonic-gate 		/*
9577c478bd9Sstevel@tonic-gate 		 * Sequential Execution Across Non_Canonical Boundary Caused
9587c478bd9Sstevel@tonic-gate 		 * Processor Hang
9597c478bd9Sstevel@tonic-gate 		 */
9607c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_121)
961ae115bc7Smrj #if defined(_LP64)
9627c478bd9Sstevel@tonic-gate 		/*
9637c478bd9Sstevel@tonic-gate 		 * Erratum 121 is only present in long (64 bit) mode.
9647c478bd9Sstevel@tonic-gate 		 * Workaround is to include the page immediately before the
9657c478bd9Sstevel@tonic-gate 		 * va hole to eliminate the possibility of system hangs due to
9667c478bd9Sstevel@tonic-gate 		 * sequential execution across the va hole boundary.
9677c478bd9Sstevel@tonic-gate 		 */
968ae115bc7Smrj 		if (opteron_erratum_121)
969ae115bc7Smrj 			opteron_erratum_121++;
970ae115bc7Smrj 		else {
971ae115bc7Smrj 			if (hole_start) {
972ae115bc7Smrj 				hole_start -= PAGESIZE;
973ae115bc7Smrj 			} else {
974ae115bc7Smrj 				/*
975ae115bc7Smrj 				 * hole_start not yet initialized by
976ae115bc7Smrj 				 * mmu_init. Initialize hole_start
977ae115bc7Smrj 				 * with value to be subtracted.
978ae115bc7Smrj 				 */
979ae115bc7Smrj 				hole_start = PAGESIZE;
9807c478bd9Sstevel@tonic-gate 			}
981ae115bc7Smrj 			opteron_erratum_121++;
9827c478bd9Sstevel@tonic-gate 		}
983ae115bc7Smrj #endif	/* _LP64 */
9847c478bd9Sstevel@tonic-gate #else
985ae115bc7Smrj 		workaround_warning(cpu, 121);
9867c478bd9Sstevel@tonic-gate 		missing++;
9877c478bd9Sstevel@tonic-gate #endif
9887c478bd9Sstevel@tonic-gate 	}
9897c478bd9Sstevel@tonic-gate 
9907c478bd9Sstevel@tonic-gate 	/*LINTED*/
991ae115bc7Smrj 	if (cpuid_opteron_erratum(cpu, 122) > 0) do {
9927c478bd9Sstevel@tonic-gate 		/*
993ae115bc7Smrj 		 * TLB Flush Filter May Cause Coherency Problem in
9947c478bd9Sstevel@tonic-gate 		 * Multiprocessor Systems
9957c478bd9Sstevel@tonic-gate 		 */
9967c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_122)
997ae115bc7Smrj 		uint64_t value;
998ae115bc7Smrj 		const uint_t msr = MSR_AMD_HWCR;
999ae115bc7Smrj 		int error;
1000ae115bc7Smrj 
10017c478bd9Sstevel@tonic-gate 		/*
10027c478bd9Sstevel@tonic-gate 		 * Erratum 122 is only present in MP configurations (multi-core
10037c478bd9Sstevel@tonic-gate 		 * or multi-processor).
10047c478bd9Sstevel@tonic-gate 		 */
1005843e1988Sjohnlev #if defined(__xpv)
1006843e1988Sjohnlev 		if (!DOMAIN_IS_INITDOMAIN(xen_info))
1007843e1988Sjohnlev 			break;
1008349b53ddSStuart Maybee 		if (!opteron_erratum_122 && xpv_nr_phys_cpus() == 1)
1009843e1988Sjohnlev 			break;
1010843e1988Sjohnlev #else
101192564cb1Sesaxe 		if (!opteron_erratum_122 && opteron_get_nnodes() == 1 &&
1012ae115bc7Smrj 		    cpuid_get_ncpu_per_chip(cpu) == 1)
1013ae115bc7Smrj 			break;
1014843e1988Sjohnlev #endif
1015ae115bc7Smrj 		/* disable TLB Flush Filter */
1016ae115bc7Smrj 
1017ae115bc7Smrj 		if ((error = checked_rdmsr(msr, &value)) != 0) {
1018ae115bc7Smrj 			msr_warning(cpu, "rd", msr, error);
1019ae115bc7Smrj 			workaround_warning(cpu, 122);
1020ae115bc7Smrj 			missing++;
1021ae115bc7Smrj 		} else {
1022ae115bc7Smrj 			value |= (uint64_t)AMD_HWCR_FFDIS;
1023ae115bc7Smrj 			if ((error = checked_wrmsr(msr, value)) != 0) {
1024ae115bc7Smrj 				msr_warning(cpu, "wr", msr, error);
1025ae115bc7Smrj 				workaround_warning(cpu, 122);
1026ae115bc7Smrj 				missing++;
1027ae115bc7Smrj 			}
10287c478bd9Sstevel@tonic-gate 		}
1029ae115bc7Smrj 		opteron_erratum_122++;
10307c478bd9Sstevel@tonic-gate #else
1031ae115bc7Smrj 		workaround_warning(cpu, 122);
10327c478bd9Sstevel@tonic-gate 		missing++;
10337c478bd9Sstevel@tonic-gate #endif
1034ae115bc7Smrj 	/*CONSTANTCONDITION*/
1035ae115bc7Smrj 	} while (0);
1036403c216aSkchow 
10377c478bd9Sstevel@tonic-gate 	/*LINTED*/
1038ae115bc7Smrj 	if (cpuid_opteron_erratum(cpu, 123) > 0) do {
10397c478bd9Sstevel@tonic-gate 		/*
10407c478bd9Sstevel@tonic-gate 		 * Bypassed Reads May Cause Data Corruption of System Hang in
10417c478bd9Sstevel@tonic-gate 		 * Dual Core Processors
10427c478bd9Sstevel@tonic-gate 		 */
1043ae115bc7Smrj #if defined(OPTERON_ERRATUM_123)
1044ae115bc7Smrj 		uint64_t value;
1045ae115bc7Smrj 		const uint_t msr = MSR_AMD_PATCHLEVEL;
1046ae115bc7Smrj 		int err;
1047ae115bc7Smrj 
10487c478bd9Sstevel@tonic-gate 		/*
10497c478bd9Sstevel@tonic-gate 		 * Erratum 123 applies only to multi-core cpus.
10507c478bd9Sstevel@tonic-gate 		 */
1051ae115bc7Smrj 		if (cpuid_get_ncpu_per_chip(cpu) < 2)
1052ae115bc7Smrj 			break;
1053843e1988Sjohnlev #if defined(__xpv)
1054843e1988Sjohnlev 		if (!DOMAIN_IS_INITDOMAIN(xen_info))
1055843e1988Sjohnlev 			break;
1056843e1988Sjohnlev #endif
1057ae115bc7Smrj 		/*
1058ae115bc7Smrj 		 * The "workaround" is to print a warning to upgrade the BIOS
1059ae115bc7Smrj 		 */
1060ae115bc7Smrj 		if ((err = checked_rdmsr(msr, &value)) != 0) {
1061ae115bc7Smrj 			msr_warning(cpu, "rd", msr, err);
1062ae115bc7Smrj 			workaround_warning(cpu, 123);
1063ae115bc7Smrj 			missing++;
10647c478bd9Sstevel@tonic-gate 		}
1065ae115bc7Smrj 		if (value == 0)
1066ae115bc7Smrj 			opteron_erratum_123++;
1067ae115bc7Smrj #else
1068ae115bc7Smrj 		workaround_warning(cpu, 123);
1069ae115bc7Smrj 		missing++;
1070ae115bc7Smrj 
1071403c216aSkchow #endif
1072ae115bc7Smrj 	/*CONSTANTCONDITION*/
1073ae115bc7Smrj 	} while (0);
10742201b277Skucharsk 
10752201b277Skucharsk 	/*LINTED*/
1076ae115bc7Smrj 	if (cpuid_opteron_erratum(cpu, 131) > 0) do {
10772201b277Skucharsk 		/*
10782201b277Skucharsk 		 * Multiprocessor Systems with Four or More Cores May Deadlock
10792201b277Skucharsk 		 * Waiting for a Probe Response
10802201b277Skucharsk 		 */
1081ae115bc7Smrj #if defined(OPTERON_ERRATUM_131)
1082ae115bc7Smrj 		uint64_t nbcfg;
1083ae115bc7Smrj 		const uint_t msr = MSR_AMD_NB_CFG;
1084ae115bc7Smrj 		const uint64_t wabits =
1085ae115bc7Smrj 		    AMD_NB_CFG_SRQ_HEARTBEAT | AMD_NB_CFG_SRQ_SPR;
1086ae115bc7Smrj 		int error;
1087ae115bc7Smrj 
10882201b277Skucharsk 		/*
10892201b277Skucharsk 		 * Erratum 131 applies to any system with four or more cores.
10902201b277Skucharsk 		 */
1091ae115bc7Smrj 		if (opteron_erratum_131)
1092ae115bc7Smrj 			break;
1093843e1988Sjohnlev #if defined(__xpv)
1094843e1988Sjohnlev 		if (!DOMAIN_IS_INITDOMAIN(xen_info))
1095843e1988Sjohnlev 			break;
1096349b53ddSStuart Maybee 		if (xpv_nr_phys_cpus() < 4)
1097843e1988Sjohnlev 			break;
1098843e1988Sjohnlev #else
109992564cb1Sesaxe 		if (opteron_get_nnodes() * cpuid_get_ncpu_per_chip(cpu) < 4)
1100ae115bc7Smrj 			break;
1101843e1988Sjohnlev #endif
1102ae115bc7Smrj 		/*
1103ae115bc7Smrj 		 * Print a warning if neither of the workarounds for
1104ae115bc7Smrj 		 * erratum 131 is present.
1105ae115bc7Smrj 		 */
1106ae115bc7Smrj 		if ((error = checked_rdmsr(msr, &nbcfg)) != 0) {
1107ae115bc7Smrj 			msr_warning(cpu, "rd", msr, error);
1108ae115bc7Smrj 			workaround_warning(cpu, 131);
1109ae115bc7Smrj 			missing++;
1110ae115bc7Smrj 		} else if ((nbcfg & wabits) == 0) {
1111ae115bc7Smrj 			opteron_erratum_131++;
1112ae115bc7Smrj 		} else {
1113ae115bc7Smrj 			/* cannot have both workarounds set */
1114ae115bc7Smrj 			ASSERT((nbcfg & wabits) != wabits);
11152201b277Skucharsk 		}
1116ae115bc7Smrj #else
1117ae115bc7Smrj 		workaround_warning(cpu, 131);
1118ae115bc7Smrj 		missing++;
11192201b277Skucharsk #endif
1120ae115bc7Smrj 	/*CONSTANTCONDITION*/
1121ae115bc7Smrj 	} while (0);
1122ef50d8c0Sesaxe 
1123ef50d8c0Sesaxe 	/*
1124ae115bc7Smrj 	 * This isn't really an erratum, but for convenience the
1125ef50d8c0Sesaxe 	 * detection/workaround code lives here and in cpuid_opteron_erratum.
1126bf9b145bSRobert Mustacchi 	 * Note, the technique only is valid on families before 12h and
1127bf9b145bSRobert Mustacchi 	 * certainly doesn't work when we're virtualized. This is checked for in
1128bf9b145bSRobert Mustacchi 	 * the erratum workaround.
1129ef50d8c0Sesaxe 	 */
1130ef50d8c0Sesaxe 	if (cpuid_opteron_erratum(cpu, 6336786) > 0) {
1131ae115bc7Smrj #if defined(OPTERON_WORKAROUND_6336786)
1132ef50d8c0Sesaxe 		/*
1133ef50d8c0Sesaxe 		 * Disable C1-Clock ramping on multi-core/multi-processor
1134ef50d8c0Sesaxe 		 * K8 platforms to guard against TSC drift.
1135ef50d8c0Sesaxe 		 */
1136ef50d8c0Sesaxe 		if (opteron_workaround_6336786) {
1137ef50d8c0Sesaxe 			opteron_workaround_6336786++;
1138843e1988Sjohnlev #if defined(__xpv)
1139843e1988Sjohnlev 		} else if ((DOMAIN_IS_INITDOMAIN(xen_info) &&
1140349b53ddSStuart Maybee 		    xpv_nr_phys_cpus() > 1) ||
1141843e1988Sjohnlev 		    opteron_workaround_6336786_UP) {
1142843e1988Sjohnlev 			/*
114392564cb1Sesaxe 			 * XXPV	Hmm.  We can't walk the Northbridges on
1144843e1988Sjohnlev 			 *	the hypervisor; so just complain and drive
1145843e1988Sjohnlev 			 *	on.  This probably needs to be fixed in
1146843e1988Sjohnlev 			 *	the hypervisor itself.
1147843e1988Sjohnlev 			 */
1148843e1988Sjohnlev 			opteron_workaround_6336786++;
1149843e1988Sjohnlev 			workaround_warning(cpu, 6336786);
1150843e1988Sjohnlev #else	/* __xpv */
115192564cb1Sesaxe 		} else if ((opteron_get_nnodes() *
1152d38257c4Sesaxe 		    cpuid_get_ncpu_per_chip(cpu) > 1) ||
1153ef50d8c0Sesaxe 		    opteron_workaround_6336786_UP) {
115492564cb1Sesaxe 
115592564cb1Sesaxe 			uint_t	node, nnodes;
1156ae115bc7Smrj 			uint8_t data;
1157ae115bc7Smrj 
115892564cb1Sesaxe 			nnodes = opteron_get_nnodes();
115992564cb1Sesaxe 			for (node = 0; node < nnodes; node++) {
1160ef50d8c0Sesaxe 				/*
1161ef50d8c0Sesaxe 				 * Clear PMM7[1:0] (function 3, offset 0x87)
1162ef50d8c0Sesaxe 				 * Northbridge device is the node id + 24.
1163ef50d8c0Sesaxe 				 */
1164ef50d8c0Sesaxe 				data = pci_getb_func(0, node + 24, 3, 0x87);
1165ef50d8c0Sesaxe 				data &= 0xFC;
1166ef50d8c0Sesaxe 				pci_putb_func(0, node + 24, 3, 0x87, data);
1167ef50d8c0Sesaxe 			}
1168ef50d8c0Sesaxe 			opteron_workaround_6336786++;
1169843e1988Sjohnlev #endif	/* __xpv */
1170ef50d8c0Sesaxe 		}
1171ae115bc7Smrj #else
1172ae115bc7Smrj 		workaround_warning(cpu, 6336786);
1173ae115bc7Smrj 		missing++;
1174ef50d8c0Sesaxe #endif
1175ae115bc7Smrj 	}
1176ee88d2b9Skchow 
1177ee88d2b9Skchow 	/*LINTED*/
1178ee88d2b9Skchow 	/*
1179bf9b145bSRobert Mustacchi 	 * Mutex primitives don't work as expected. This is erratum #147 from
1180bf9b145bSRobert Mustacchi 	 * 'Revision Guide for AMD Athlon 64 and AMD Opteron Processors'
1181bf9b145bSRobert Mustacchi 	 * document 25759.
1182ee88d2b9Skchow 	 */
1183ee88d2b9Skchow 	if (cpuid_opteron_erratum(cpu, 6323525) > 0) {
1184ae115bc7Smrj #if defined(OPTERON_WORKAROUND_6323525)
1185ee88d2b9Skchow 		/*
1186ae115bc7Smrj 		 * This problem only occurs with 2 or more cores. If bit in
1187512cf780Skchow 		 * MSR_AMD_BU_CFG set, then not applicable. The workaround
1188ee88d2b9Skchow 		 * is to patch the semaphone routines with the lfence
1189ee88d2b9Skchow 		 * instruction to provide necessary load memory barrier with
1190ee88d2b9Skchow 		 * possible subsequent read-modify-write ops.
1191ee88d2b9Skchow 		 *
1192ee88d2b9Skchow 		 * It is too early in boot to call the patch routine so
1193ee88d2b9Skchow 		 * set erratum variable to be done in startup_end().
1194ee88d2b9Skchow 		 */
1195ee88d2b9Skchow 		if (opteron_workaround_6323525) {
1196ee88d2b9Skchow 			opteron_workaround_6323525++;
1197843e1988Sjohnlev #if defined(__xpv)
11987417cfdeSKuriakose Kuruvilla 		} else if (is_x86_feature(x86_featureset, X86FSET_SSE2)) {
1199843e1988Sjohnlev 			if (DOMAIN_IS_INITDOMAIN(xen_info)) {
1200843e1988Sjohnlev 				/*
1201843e1988Sjohnlev 				 * XXPV	Use dom0_msr here when extended
1202843e1988Sjohnlev 				 *	operations are supported?
1203843e1988Sjohnlev 				 */
1204349b53ddSStuart Maybee 				if (xpv_nr_phys_cpus() > 1)
1205843e1988Sjohnlev 					opteron_workaround_6323525++;
1206843e1988Sjohnlev 			} else {
1207843e1988Sjohnlev 				/*
1208843e1988Sjohnlev 				 * We have no way to tell how many physical
1209843e1988Sjohnlev 				 * cpus there are, or even if this processor
1210843e1988Sjohnlev 				 * has the problem, so enable the workaround
1211843e1988Sjohnlev 				 * unconditionally (at some performance cost).
1212843e1988Sjohnlev 				 */
1213843e1988Sjohnlev 				opteron_workaround_6323525++;
1214843e1988Sjohnlev 			}
1215843e1988Sjohnlev #else	/* __xpv */
12167417cfdeSKuriakose Kuruvilla 		} else if (is_x86_feature(x86_featureset, X86FSET_SSE2) &&
12177417cfdeSKuriakose Kuruvilla 		    ((opteron_get_nnodes() *
1218ae115bc7Smrj 		    cpuid_get_ncpu_per_chip(cpu)) > 1)) {
121948b2bf45SKit Chow 			if ((xrdmsr(MSR_AMD_BU_CFG) & (UINT64_C(1) << 33)) == 0)
1220ee88d2b9Skchow 				opteron_workaround_6323525++;
1221843e1988Sjohnlev #endif	/* __xpv */
1222ee88d2b9Skchow 		}
1223ae115bc7Smrj #else
1224ae115bc7Smrj 		workaround_warning(cpu, 6323525);
1225ae115bc7Smrj 		missing++;
1226ee88d2b9Skchow #endif
1227ae115bc7Smrj 	}
1228ae115bc7Smrj 
1229512cf780Skchow 	missing += do_erratum_298(cpu);
1230512cf780Skchow 
12315e54b56dSHans Rosenfeld 	if (cpuid_opteron_erratum(cpu, 721) > 0) {
12325e54b56dSHans Rosenfeld #if defined(OPTERON_ERRATUM_721)
1233850ad55aSHans Rosenfeld 		on_trap_data_t otd;
1234850ad55aSHans Rosenfeld 
1235850ad55aSHans Rosenfeld 		if (!on_trap(&otd, OT_DATA_ACCESS))
1236850ad55aSHans Rosenfeld 			wrmsr(MSR_AMD_DE_CFG,
1237850ad55aSHans Rosenfeld 			    rdmsr(MSR_AMD_DE_CFG) | AMD_DE_CFG_E721);
1238850ad55aSHans Rosenfeld 		no_trap();
1239850ad55aSHans Rosenfeld 
12405e54b56dSHans Rosenfeld 		opteron_erratum_721++;
12415e54b56dSHans Rosenfeld #else
12425e54b56dSHans Rosenfeld 		workaround_warning(cpu, 721);
12435e54b56dSHans Rosenfeld 		missing++;
12445e54b56dSHans Rosenfeld #endif
12455e54b56dSHans Rosenfeld 	}
12465e54b56dSHans Rosenfeld 
1247843e1988Sjohnlev #ifdef __xpv
1248843e1988Sjohnlev 	return (0);
1249843e1988Sjohnlev #else
12507c478bd9Sstevel@tonic-gate 	return (missing);
1251843e1988Sjohnlev #endif
12527c478bd9Sstevel@tonic-gate }
12537c478bd9Sstevel@tonic-gate 
12547c478bd9Sstevel@tonic-gate void
12557c478bd9Sstevel@tonic-gate workaround_errata_end()
12567c478bd9Sstevel@tonic-gate {
1257ae115bc7Smrj #if defined(OPTERON_ERRATUM_88)
1258ae115bc7Smrj 	if (opteron_erratum_88)
1259ae115bc7Smrj 		workaround_applied(88);
1260ae115bc7Smrj #endif
1261ae115bc7Smrj #if defined(OPTERON_ERRATUM_91)
1262ae115bc7Smrj 	if (opteron_erratum_91)
1263ae115bc7Smrj 		workaround_applied(91);
1264ae115bc7Smrj #endif
1265ae115bc7Smrj #if defined(OPTERON_ERRATUM_93)
1266ae115bc7Smrj 	if (opteron_erratum_93)
1267ae115bc7Smrj 		workaround_applied(93);
1268ae115bc7Smrj #endif
1269ae115bc7Smrj #if defined(OPTERON_ERRATUM_95)
1270ae115bc7Smrj 	if (opteron_erratum_95)
1271ae115bc7Smrj 		workaround_applied(95);
1272ae115bc7Smrj #endif
1273ae115bc7Smrj #if defined(OPTERON_ERRATUM_100)
1274ae115bc7Smrj 	if (opteron_erratum_100)
1275ae115bc7Smrj 		workaround_applied(100);
1276ae115bc7Smrj #endif
1277ae115bc7Smrj #if defined(OPTERON_ERRATUM_108)
1278ae115bc7Smrj 	if (opteron_erratum_108)
1279ae115bc7Smrj 		workaround_applied(108);
1280ae115bc7Smrj #endif
12817c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_109)
12827c478bd9Sstevel@tonic-gate 	if (opteron_erratum_109) {
12832201b277Skucharsk 		cmn_err(CE_WARN,
12842201b277Skucharsk 		    "BIOS microcode patch for AMD Athlon(tm) 64/Opteron(tm)"
12852201b277Skucharsk 		    " processor\nerratum 109 was not detected; updating your"
12862201b277Skucharsk 		    " system's BIOS to a version\ncontaining this"
12872201b277Skucharsk 		    " microcode patch is HIGHLY recommended or erroneous"
12882201b277Skucharsk 		    " system\noperation may occur.\n");
12897c478bd9Sstevel@tonic-gate 	}
1290ae115bc7Smrj #endif
1291ae115bc7Smrj #if defined(OPTERON_ERRATUM_121)
1292ae115bc7Smrj 	if (opteron_erratum_121)
1293ae115bc7Smrj 		workaround_applied(121);
1294ae115bc7Smrj #endif
1295ae115bc7Smrj #if defined(OPTERON_ERRATUM_122)
1296ae115bc7Smrj 	if (opteron_erratum_122)
1297ae115bc7Smrj 		workaround_applied(122);
1298ae115bc7Smrj #endif
12997c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_123)
13007c478bd9Sstevel@tonic-gate 	if (opteron_erratum_123) {
13012201b277Skucharsk 		cmn_err(CE_WARN,
13022201b277Skucharsk 		    "BIOS microcode patch for AMD Athlon(tm) 64/Opteron(tm)"
13032201b277Skucharsk 		    " processor\nerratum 123 was not detected; updating your"
13042201b277Skucharsk 		    " system's BIOS to a version\ncontaining this"
13052201b277Skucharsk 		    " microcode patch is HIGHLY recommended or erroneous"
13062201b277Skucharsk 		    " system\noperation may occur.\n");
13077c478bd9Sstevel@tonic-gate 	}
1308ae115bc7Smrj #endif
13092201b277Skucharsk #if defined(OPTERON_ERRATUM_131)
13102201b277Skucharsk 	if (opteron_erratum_131) {
13112201b277Skucharsk 		cmn_err(CE_WARN,
13122201b277Skucharsk 		    "BIOS microcode patch for AMD Athlon(tm) 64/Opteron(tm)"
13132201b277Skucharsk 		    " processor\nerratum 131 was not detected; updating your"
13142201b277Skucharsk 		    " system's BIOS to a version\ncontaining this"
13152201b277Skucharsk 		    " microcode patch is HIGHLY recommended or erroneous"
13162201b277Skucharsk 		    " system\noperation may occur.\n");
13172201b277Skucharsk 	}
1318ae115bc7Smrj #endif
1319ae115bc7Smrj #if defined(OPTERON_WORKAROUND_6336786)
1320ae115bc7Smrj 	if (opteron_workaround_6336786)
1321ae115bc7Smrj 		workaround_applied(6336786);
1322ae115bc7Smrj #endif
1323ae115bc7Smrj #if defined(OPTERON_WORKAROUND_6323525)
1324ae115bc7Smrj 	if (opteron_workaround_6323525)
1325ae115bc7Smrj 		workaround_applied(6323525);
1326ae115bc7Smrj #endif
1327512cf780Skchow #if defined(OPTERON_ERRATUM_298)
1328512cf780Skchow 	if (opteron_erratum_298) {
1329512cf780Skchow 		cmn_err(CE_WARN,
1330512cf780Skchow 		    "BIOS microcode patch for AMD 64/Opteron(tm)"
1331512cf780Skchow 		    " processor\nerratum 298 was not detected; updating your"
1332512cf780Skchow 		    " system's BIOS to a version\ncontaining this"
1333512cf780Skchow 		    " microcode patch is HIGHLY recommended or erroneous"
1334512cf780Skchow 		    " system\noperation may occur.\n");
1335512cf780Skchow 	}
1336512cf780Skchow #endif
13375e54b56dSHans Rosenfeld #if defined(OPTERON_ERRATUM_721)
13385e54b56dSHans Rosenfeld 	if (opteron_erratum_721)
13395e54b56dSHans Rosenfeld 		workaround_applied(721);
13405e54b56dSHans Rosenfeld #endif
13417c478bd9Sstevel@tonic-gate }
13427c478bd9Sstevel@tonic-gate 
1343ae115bc7Smrj /*
1344a3114836SGerry Liu  * The procset_slave and procset_master are used to synchronize
1345a3114836SGerry Liu  * between the control CPU and the target CPU when starting CPUs.
1346ae115bc7Smrj  */
1347a3114836SGerry Liu static cpuset_t procset_slave, procset_master;
1348a3114836SGerry Liu 
1349a3114836SGerry Liu static void
1350a3114836SGerry Liu mp_startup_wait(cpuset_t *sp, processorid_t cpuid)
1351a3114836SGerry Liu {
1352a3114836SGerry Liu 	cpuset_t tempset;
1353a3114836SGerry Liu 
1354a3114836SGerry Liu 	for (tempset = *sp; !CPU_IN_SET(tempset, cpuid);
1355a3114836SGerry Liu 	    tempset = *(volatile cpuset_t *)sp) {
1356a3114836SGerry Liu 		SMT_PAUSE();
1357a3114836SGerry Liu 	}
1358a3114836SGerry Liu 	CPUSET_ATOMIC_DEL(*(cpuset_t *)sp, cpuid);
1359a3114836SGerry Liu }
1360a3114836SGerry Liu 
1361a3114836SGerry Liu static void
1362a3114836SGerry Liu mp_startup_signal(cpuset_t *sp, processorid_t cpuid)
1363a3114836SGerry Liu {
1364a3114836SGerry Liu 	cpuset_t tempset;
1365a3114836SGerry Liu 
1366a3114836SGerry Liu 	CPUSET_ATOMIC_ADD(*(cpuset_t *)sp, cpuid);
1367a3114836SGerry Liu 	for (tempset = *sp; CPU_IN_SET(tempset, cpuid);
1368a3114836SGerry Liu 	    tempset = *(volatile cpuset_t *)sp) {
1369a3114836SGerry Liu 		SMT_PAUSE();
1370a3114836SGerry Liu 	}
1371a3114836SGerry Liu }
1372a3114836SGerry Liu 
1373ae115bc7Smrj int
1374a3114836SGerry Liu mp_start_cpu_common(cpu_t *cp, boolean_t boot)
1375ae115bc7Smrj {
1376a3114836SGerry Liu 	_NOTE(ARGUNUSED(boot));
1377a3114836SGerry Liu 
1378ae115bc7Smrj 	void *ctx;
1379ae115bc7Smrj 	int delays;
1380ae115bc7Smrj 	int error = 0;
1381a3114836SGerry Liu 	cpuset_t tempset;
1382a3114836SGerry Liu 	processorid_t cpuid;
1383a3114836SGerry Liu #ifndef __xpv
1384a3114836SGerry Liu 	extern void cpupm_init(cpu_t *);
1385a3114836SGerry Liu #endif
1386ae115bc7Smrj 
1387a3114836SGerry Liu 	ASSERT(cp != NULL);
1388a3114836SGerry Liu 	cpuid = cp->cpu_id;
1389a3114836SGerry Liu 	ctx = mach_cpucontext_alloc(cp);
1390a3114836SGerry Liu 	if (ctx == NULL) {
1391a3114836SGerry Liu 		cmn_err(CE_WARN,
1392a3114836SGerry Liu 		    "cpu%d: failed to allocate context", cp->cpu_id);
1393a3114836SGerry Liu 		return (EAGAIN);
1394ae115bc7Smrj 	}
1395a3114836SGerry Liu 	error = mach_cpu_start(cp, ctx);
1396a3114836SGerry Liu 	if (error != 0) {
1397a3114836SGerry Liu 		cmn_err(CE_WARN,
1398a3114836SGerry Liu 		    "cpu%d: failed to start, error %d", cp->cpu_id, error);
1399a3114836SGerry Liu 		mach_cpucontext_free(cp, ctx, error);
1400ae115bc7Smrj 		return (error);
1401ae115bc7Smrj 	}
1402ae115bc7Smrj 
1403a3114836SGerry Liu 	for (delays = 0, tempset = procset_slave; !CPU_IN_SET(tempset, cpuid);
1404a3114836SGerry Liu 	    delays++) {
1405ae115bc7Smrj 		if (delays == 500) {
1406ae115bc7Smrj 			/*
1407ae115bc7Smrj 			 * After five seconds, things are probably looking
1408ae115bc7Smrj 			 * a bit bleak - explain the hang.
1409ae115bc7Smrj 			 */
1410ae115bc7Smrj 			cmn_err(CE_NOTE, "cpu%d: started, "
1411a3114836SGerry Liu 			    "but not running in the kernel yet", cpuid);
1412ae115bc7Smrj 		} else if (delays > 2000) {
1413ae115bc7Smrj 			/*
1414ae115bc7Smrj 			 * We waited at least 20 seconds, bail ..
1415ae115bc7Smrj 			 */
1416ae115bc7Smrj 			error = ETIMEDOUT;
1417a3114836SGerry Liu 			cmn_err(CE_WARN, "cpu%d: timed out", cpuid);
1418ae115bc7Smrj 			mach_cpucontext_free(cp, ctx, error);
1419ae115bc7Smrj 			return (error);
1420ae115bc7Smrj 		}
1421ae115bc7Smrj 
1422ae115bc7Smrj 		/*
1423ae115bc7Smrj 		 * wait at least 10ms, then check again..
1424ae115bc7Smrj 		 */
1425ae115bc7Smrj 		delay(USEC_TO_TICK_ROUNDUP(10000));
1426a3114836SGerry Liu 		tempset = *((volatile cpuset_t *)&procset_slave);
1427ae115bc7Smrj 	}
1428a3114836SGerry Liu 	CPUSET_ATOMIC_DEL(procset_slave, cpuid);
1429ae115bc7Smrj 
1430ae115bc7Smrj 	mach_cpucontext_free(cp, ctx, 0);
1431ae115bc7Smrj 
1432843e1988Sjohnlev #ifndef __xpv
1433ae115bc7Smrj 	if (tsc_gethrtime_enable)
1434a3114836SGerry Liu 		tsc_sync_master(cpuid);
1435843e1988Sjohnlev #endif
1436ae115bc7Smrj 
1437ae115bc7Smrj 	if (dtrace_cpu_init != NULL) {
1438a3114836SGerry Liu 		(*dtrace_cpu_init)(cpuid);
1439a3114836SGerry Liu 	}
1440a3114836SGerry Liu 
1441a3114836SGerry Liu 	/*
1442a3114836SGerry Liu 	 * During CPU DR operations, the cpu_lock is held by current
1443a3114836SGerry Liu 	 * (the control) thread. We can't release the cpu_lock here
1444a3114836SGerry Liu 	 * because that will break the CPU DR logic.
1445a3114836SGerry Liu 	 * On the other hand, CPUPM and processor group initialization
1446a3114836SGerry Liu 	 * routines need to access the cpu_lock. So we invoke those
1447a3114836SGerry Liu 	 * routines here on behalf of mp_startup_common().
1448a3114836SGerry Liu 	 *
1449a3114836SGerry Liu 	 * CPUPM and processor group initialization routines depend
1450a3114836SGerry Liu 	 * on the cpuid probing results. Wait for mp_startup_common()
1451a3114836SGerry Liu 	 * to signal that cpuid probing is done.
1452a3114836SGerry Liu 	 */
1453a3114836SGerry Liu 	mp_startup_wait(&procset_slave, cpuid);
1454a3114836SGerry Liu #ifndef __xpv
1455a3114836SGerry Liu 	cpupm_init(cp);
1456a3114836SGerry Liu #endif
1457a3114836SGerry Liu 	(void) pg_cpu_init(cp, B_FALSE);
1458a3114836SGerry Liu 	cpu_set_state(cp);
1459a3114836SGerry Liu 	mp_startup_signal(&procset_master, cpuid);
1460a3114836SGerry Liu 
1461a3114836SGerry Liu 	return (0);
1462a3114836SGerry Liu }
1463a3114836SGerry Liu 
1464a3114836SGerry Liu /*
1465a3114836SGerry Liu  * Start a single cpu, assuming that the kernel context is available
1466a3114836SGerry Liu  * to successfully start another cpu.
1467a3114836SGerry Liu  *
1468a3114836SGerry Liu  * (For example, real mode code is mapped into the right place
1469a3114836SGerry Liu  * in memory and is ready to be run.)
1470a3114836SGerry Liu  */
1471a3114836SGerry Liu int
1472a3114836SGerry Liu start_cpu(processorid_t who)
1473a3114836SGerry Liu {
1474a3114836SGerry Liu 	cpu_t *cp;
1475a3114836SGerry Liu 	int error = 0;
1476a3114836SGerry Liu 	cpuset_t tempset;
1477a3114836SGerry Liu 
1478a3114836SGerry Liu 	ASSERT(who != 0);
1479a3114836SGerry Liu 
1480a3114836SGerry Liu 	/*
1481a3114836SGerry Liu 	 * Check if there's at least a Mbyte of kmem available
1482a3114836SGerry Liu 	 * before attempting to start the cpu.
1483a3114836SGerry Liu 	 */
1484a3114836SGerry Liu 	if (kmem_avail() < 1024 * 1024) {
1485ae115bc7Smrj 		/*
1486a3114836SGerry Liu 		 * Kick off a reap in case that helps us with
1487a3114836SGerry Liu 		 * later attempts ..
1488ae115bc7Smrj 		 */
1489a3114836SGerry Liu 		kmem_reap();
1490a3114836SGerry Liu 		return (ENOMEM);
1491a3114836SGerry Liu 	}
1492a3114836SGerry Liu 
1493a3114836SGerry Liu 	/*
1494a3114836SGerry Liu 	 * First configure cpu.
1495a3114836SGerry Liu 	 */
1496a3114836SGerry Liu 	cp = mp_cpu_configure_common(who, B_TRUE);
1497a3114836SGerry Liu 	ASSERT(cp != NULL);
1498a3114836SGerry Liu 
1499a3114836SGerry Liu 	/*
1500a3114836SGerry Liu 	 * Then start cpu.
1501a3114836SGerry Liu 	 */
1502a3114836SGerry Liu 	error = mp_start_cpu_common(cp, B_TRUE);
1503a3114836SGerry Liu 	if (error != 0) {
1504a3114836SGerry Liu 		mp_cpu_unconfigure_common(cp, error);
1505a3114836SGerry Liu 		return (error);
1506ae115bc7Smrj 	}
1507ae115bc7Smrj 
1508a3114836SGerry Liu 	mutex_exit(&cpu_lock);
1509a3114836SGerry Liu 	tempset = cpu_ready_set;
1510a3114836SGerry Liu 	while (!CPU_IN_SET(tempset, who)) {
1511a3114836SGerry Liu 		drv_usecwait(1);
1512a3114836SGerry Liu 		tempset = *((volatile cpuset_t *)&cpu_ready_set);
1513a3114836SGerry Liu 	}
1514a3114836SGerry Liu 	mutex_enter(&cpu_lock);
1515ae115bc7Smrj 
1516ae115bc7Smrj 	return (0);
1517ae115bc7Smrj }
15187c478bd9Sstevel@tonic-gate 
15197c478bd9Sstevel@tonic-gate void
15207c478bd9Sstevel@tonic-gate start_other_cpus(int cprboot)
15217c478bd9Sstevel@tonic-gate {
1522a3114836SGerry Liu 	_NOTE(ARGUNUSED(cprboot));
1523a3114836SGerry Liu 
1524ae115bc7Smrj 	uint_t who;
1525ae115bc7Smrj 	uint_t bootcpuid = 0;
15267c478bd9Sstevel@tonic-gate 
15277c478bd9Sstevel@tonic-gate 	/*
15287c478bd9Sstevel@tonic-gate 	 * Initialize our own cpu_info.
15297c478bd9Sstevel@tonic-gate 	 */
15307c478bd9Sstevel@tonic-gate 	init_cpu_info(CPU);
15317c478bd9Sstevel@tonic-gate 
15322428aad8SPatrick Mooney #if !defined(__xpv)
15332428aad8SPatrick Mooney 	init_cpu_id_gdt(CPU);
15342428aad8SPatrick Mooney #endif
15352428aad8SPatrick Mooney 
153619397407SSherry Moore 	cmn_err(CE_CONT, "?cpu%d: %s\n", CPU->cpu_id, CPU->cpu_idstr);
153719397407SSherry Moore 	cmn_err(CE_CONT, "?cpu%d: %s\n", CPU->cpu_id, CPU->cpu_brandstr);
153819397407SSherry Moore 
153939df76fbSAndy Fiddaman 	/*
154039df76fbSAndy Fiddaman 	 * KPTI initialisation happens very early in boot, before logging is
154139df76fbSAndy Fiddaman 	 * set up. Output a status message now as the boot CPU comes online.
154239df76fbSAndy Fiddaman 	 */
154339df76fbSAndy Fiddaman 	cmn_err(CE_CONT, "?KPTI %s (PCID %s, INVPCID %s)\n",
154439df76fbSAndy Fiddaman 	    kpti_enable ? "enabled" : "disabled",
154539df76fbSAndy Fiddaman 	    x86_use_pcid == 1 ? "in use" :
154639df76fbSAndy Fiddaman 	    (is_x86_feature(x86_featureset, X86FSET_PCID) ? "disabled" :
154739df76fbSAndy Fiddaman 	    "not supported"),
154839df76fbSAndy Fiddaman 	    x86_use_pcid == 1 && x86_use_invpcid == 1 ? "in use" :
154939df76fbSAndy Fiddaman 	    (is_x86_feature(x86_featureset, X86FSET_INVPCID) ? "disabled" :
155039df76fbSAndy Fiddaman 	    "not supported"));
155139df76fbSAndy Fiddaman 
15527c478bd9Sstevel@tonic-gate 	/*
15537c478bd9Sstevel@tonic-gate 	 * Initialize our syscall handlers
15547c478bd9Sstevel@tonic-gate 	 */
15557c478bd9Sstevel@tonic-gate 	init_cpu_syscall(CPU);
15567c478bd9Sstevel@tonic-gate 
1557ae115bc7Smrj 	/*
1558ae115bc7Smrj 	 * Take the boot cpu out of the mp_cpus set because we know
1559ae115bc7Smrj 	 * it's already running.  Add it to the cpu_ready_set for
1560ae115bc7Smrj 	 * precisely the same reason.
1561ae115bc7Smrj 	 */
1562ae115bc7Smrj 	CPUSET_DEL(mp_cpus, bootcpuid);
1563ae115bc7Smrj 	CPUSET_ADD(cpu_ready_set, bootcpuid);
1564ae115bc7Smrj 
15657c478bd9Sstevel@tonic-gate 	/*
1566a3114836SGerry Liu 	 * skip the rest of this if
1567a3114836SGerry Liu 	 * . only 1 cpu dectected and system isn't hotplug-capable
1568a3114836SGerry Liu 	 * . not using MP
15697c478bd9Sstevel@tonic-gate 	 */
1570a3114836SGerry Liu 	if ((CPUSET_ISNULL(mp_cpus) && plat_dr_support_cpu() == 0) ||
1571a3114836SGerry Liu 	    use_mp == 0) {
15727c478bd9Sstevel@tonic-gate 		if (use_mp == 0)
15737c478bd9Sstevel@tonic-gate 			cmn_err(CE_CONT, "?***** Not in MP mode\n");
15747c478bd9Sstevel@tonic-gate 		goto done;
15757c478bd9Sstevel@tonic-gate 	}
15767c478bd9Sstevel@tonic-gate 
15777c478bd9Sstevel@tonic-gate 	/*
15787c478bd9Sstevel@tonic-gate 	 * perform such initialization as is needed
15797c478bd9Sstevel@tonic-gate 	 * to be able to take CPUs on- and off-line.
15807c478bd9Sstevel@tonic-gate 	 */
15817c478bd9Sstevel@tonic-gate 	cpu_pause_init();
15827c478bd9Sstevel@tonic-gate 
1583f34a7178SJoe Bonasera 	xc_init_cpu(CPU);		/* initialize processor crosscalls */
15847c478bd9Sstevel@tonic-gate 
1585ae115bc7Smrj 	if (mach_cpucontext_init() != 0)
15867c478bd9Sstevel@tonic-gate 		goto done;
15877c478bd9Sstevel@tonic-gate 
15887c478bd9Sstevel@tonic-gate 	flushes_require_xcalls = 1;
15897c478bd9Sstevel@tonic-gate 
15905205ae23Snf 	/*
15915205ae23Snf 	 * We lock our affinity to the master CPU to ensure that all slave CPUs
15925205ae23Snf 	 * do their TSC syncs with the same CPU.
15935205ae23Snf 	 */
15947c478bd9Sstevel@tonic-gate 	affinity_set(CPU_CURRENT);
15957c478bd9Sstevel@tonic-gate 
15967c478bd9Sstevel@tonic-gate 	for (who = 0; who < NCPU; who++) {
159741791439Sandrei 		if (!CPU_IN_SET(mp_cpus, who))
159841791439Sandrei 			continue;
1599ae115bc7Smrj 		ASSERT(who != bootcpuid);
1600b9e93c10SJonathan Haslam 
1601b9e93c10SJonathan Haslam 		mutex_enter(&cpu_lock);
1602a3114836SGerry Liu 		if (start_cpu(who) != 0)
1603a3114836SGerry Liu 			CPUSET_DEL(mp_cpus, who);
1604b9e93c10SJonathan Haslam 		cpu_state_change_notify(who, CPU_SETUP);
1605b9e93c10SJonathan Haslam 		mutex_exit(&cpu_lock);
16067c478bd9Sstevel@tonic-gate 	}
16077c478bd9Sstevel@tonic-gate 
16082449e17fSsherrym 	/* Free the space allocated to hold the microcode file */
1609adc586deSMark Johnson 	ucode_cleanup();
16102449e17fSsherrym 
16117c478bd9Sstevel@tonic-gate 	affinity_clear();
16127c478bd9Sstevel@tonic-gate 
1613a3114836SGerry Liu 	mach_cpucontext_fini();
1614a3114836SGerry Liu 
1615a3114836SGerry Liu done:
1616a3114836SGerry Liu 	if (get_hwenv() == HW_NATIVE)
1617a3114836SGerry Liu 		workaround_errata_end();
1618a3114836SGerry Liu 	cmi_post_mpstartup();
1619a3114836SGerry Liu 
1620*761dea5eSPatrick Mooney #if !defined(__xpv)
1621*761dea5eSPatrick Mooney 	/*
1622*761dea5eSPatrick Mooney 	 * Once other CPUs have completed startup procedures, perform
1623*761dea5eSPatrick Mooney 	 * initialization of hypervisor resources for HMA.
1624*761dea5eSPatrick Mooney 	 */
1625*761dea5eSPatrick Mooney 	hma_init();
1626*761dea5eSPatrick Mooney #endif
1627*761dea5eSPatrick Mooney 
1628a3114836SGerry Liu 	if (use_mp && ncpus != boot_max_ncpus) {
162941791439Sandrei 		cmn_err(CE_NOTE,
1630ae115bc7Smrj 		    "System detected %d cpus, but "
1631ae115bc7Smrj 		    "only %d cpu(s) were enabled during boot.",
1632a3114836SGerry Liu 		    boot_max_ncpus, ncpus);
163341791439Sandrei 		cmn_err(CE_NOTE,
163441791439Sandrei 		    "Use \"boot-ncpus\" parameter to enable more CPU(s). "
163541791439Sandrei 		    "See eeprom(1M).");
163641791439Sandrei 	}
16377c478bd9Sstevel@tonic-gate }
16387c478bd9Sstevel@tonic-gate 
16397c478bd9Sstevel@tonic-gate int
16407c478bd9Sstevel@tonic-gate mp_cpu_configure(int cpuid)
16417c478bd9Sstevel@tonic-gate {
1642a3114836SGerry Liu 	cpu_t *cp;
1643a3114836SGerry Liu 
1644a3114836SGerry Liu 	if (use_mp == 0 || plat_dr_support_cpu() == 0) {
1645a3114836SGerry Liu 		return (ENOTSUP);
1646a3114836SGerry Liu 	}
1647a3114836SGerry Liu 
1648a3114836SGerry Liu 	cp = cpu_get(cpuid);
1649a3114836SGerry Liu 	if (cp != NULL) {
1650a3114836SGerry Liu 		return (EALREADY);
1651a3114836SGerry Liu 	}
1652a3114836SGerry Liu 
1653a3114836SGerry Liu 	/*
1654a3114836SGerry Liu 	 * Check if there's at least a Mbyte of kmem available
1655a3114836SGerry Liu 	 * before attempting to start the cpu.
1656a3114836SGerry Liu 	 */
1657a3114836SGerry Liu 	if (kmem_avail() < 1024 * 1024) {
1658a3114836SGerry Liu 		/*
1659a3114836SGerry Liu 		 * Kick off a reap in case that helps us with
1660a3114836SGerry Liu 		 * later attempts ..
1661a3114836SGerry Liu 		 */
1662a3114836SGerry Liu 		kmem_reap();
1663a3114836SGerry Liu 		return (ENOMEM);
1664a3114836SGerry Liu 	}
1665a3114836SGerry Liu 
1666a3114836SGerry Liu 	cp = mp_cpu_configure_common(cpuid, B_FALSE);
1667a3114836SGerry Liu 	ASSERT(cp != NULL && cpu_get(cpuid) == cp);
1668a3114836SGerry Liu 
1669a3114836SGerry Liu 	return (cp != NULL ? 0 : EAGAIN);
16707c478bd9Sstevel@tonic-gate }
16717c478bd9Sstevel@tonic-gate 
16727c478bd9Sstevel@tonic-gate int
16737c478bd9Sstevel@tonic-gate mp_cpu_unconfigure(int cpuid)
16747c478bd9Sstevel@tonic-gate {
1675a3114836SGerry Liu 	cpu_t *cp;
1676a3114836SGerry Liu 
1677a3114836SGerry Liu 	if (use_mp == 0 || plat_dr_support_cpu() == 0) {
1678a3114836SGerry Liu 		return (ENOTSUP);
1679a3114836SGerry Liu 	} else if (cpuid < 0 || cpuid >= max_ncpus) {
1680a3114836SGerry Liu 		return (EINVAL);
1681a3114836SGerry Liu 	}
1682a3114836SGerry Liu 
1683a3114836SGerry Liu 	cp = cpu_get(cpuid);
1684a3114836SGerry Liu 	if (cp == NULL) {
1685a3114836SGerry Liu 		return (ENODEV);
1686a3114836SGerry Liu 	}
1687a3114836SGerry Liu 	mp_cpu_unconfigure_common(cp, 0);
1688a3114836SGerry Liu 
1689a3114836SGerry Liu 	return (0);
16907c478bd9Sstevel@tonic-gate }
16917c478bd9Sstevel@tonic-gate 
16927c478bd9Sstevel@tonic-gate /*
16937c478bd9Sstevel@tonic-gate  * Startup function for 'other' CPUs (besides boot cpu).
1694498697c5Sdmick  * Called from real_mode_start.
1695b4b46911Skchow  *
1696a3114836SGerry Liu  * WARNING: until CPU_READY is set, mp_startup_common and routines called by
1697a3114836SGerry Liu  * mp_startup_common should not call routines (e.g. kmem_free) that could call
1698b4b46911Skchow  * hat_unload which requires CPU_READY to be set.
16997c478bd9Sstevel@tonic-gate  */
1700a3114836SGerry Liu static void
1701a3114836SGerry Liu mp_startup_common(boolean_t boot)
17027c478bd9Sstevel@tonic-gate {
1703a3114836SGerry Liu 	cpu_t *cp = CPU;
1704dfea898aSKuriakose Kuruvilla 	uchar_t new_x86_featureset[BT_SIZEOFMAP(NUM_X86_FEATURES)];
1705a3114836SGerry Liu 	extern void cpu_event_init_cpu(cpu_t *);
17067c478bd9Sstevel@tonic-gate 
170724a74e86Sdmick 	/*
170824a74e86Sdmick 	 * We need to get TSC on this proc synced (i.e., any delta
170924a74e86Sdmick 	 * from cpu0 accounted for) as soon as we can, because many
171024a74e86Sdmick 	 * many things use gethrtime/pc_gethrestime, including
17114948216cSKeith M Wesolowski 	 * interrupts, cmn_err, etc.  Before we can do that, we want to
17124948216cSKeith M Wesolowski 	 * clear TSC if we're on a buggy Sandy/Ivy Bridge CPU, so do that
17134948216cSKeith M Wesolowski 	 * right away.
171424a74e86Sdmick 	 */
17154948216cSKeith M Wesolowski 	bzero(new_x86_featureset, BT_SIZEOFMAP(NUM_X86_FEATURES));
17164948216cSKeith M Wesolowski 	cpuid_pass1(cp, new_x86_featureset);
17174948216cSKeith M Wesolowski 
17184948216cSKeith M Wesolowski 	if (boot && get_hwenv() == HW_NATIVE &&
17194948216cSKeith M Wesolowski 	    cpuid_getvendor(CPU) == X86_VENDOR_Intel &&
17204948216cSKeith M Wesolowski 	    cpuid_getfamily(CPU) == 6 &&
17214948216cSKeith M Wesolowski 	    (cpuid_getmodel(CPU) == 0x2d || cpuid_getmodel(CPU) == 0x3e) &&
17224948216cSKeith M Wesolowski 	    is_x86_feature(new_x86_featureset, X86FSET_TSC)) {
17234948216cSKeith M Wesolowski 		(void) wrmsr(REG_TSC, 0UL);
17244948216cSKeith M Wesolowski 	}
172524a74e86Sdmick 
1726a3114836SGerry Liu 	/* Let the control CPU continue into tsc_sync_master() */
1727a3114836SGerry Liu 	mp_startup_signal(&procset_slave, cp->cpu_id);
172824a74e86Sdmick 
1729843e1988Sjohnlev #ifndef __xpv
173024a74e86Sdmick 	if (tsc_gethrtime_enable)
173124a74e86Sdmick 		tsc_sync_slave();
1732843e1988Sjohnlev #endif
173324a74e86Sdmick 
1734498697c5Sdmick 	/*
1735498697c5Sdmick 	 * Once this was done from assembly, but it's safer here; if
1736498697c5Sdmick 	 * it blocks, we need to be able to swtch() to and from, and
1737498697c5Sdmick 	 * since we get here by calling t_pc, we need to do that call
1738498697c5Sdmick 	 * before swtch() overwrites it.
1739498697c5Sdmick 	 */
1740498697c5Sdmick 	(void) (*ap_mlsetup)();
1741498697c5Sdmick 
1742843e1988Sjohnlev #ifndef __xpv
17437c478bd9Sstevel@tonic-gate 	/*
17441d03c31eSjohnlev 	 * Program this cpu's PAT
17457c478bd9Sstevel@tonic-gate 	 */
174658865bb7SJosef 'Jeff' Sipek 	pat_sync();
1747843e1988Sjohnlev #endif
17487c478bd9Sstevel@tonic-gate 
1749ae115bc7Smrj 	/*
1750ae115bc7Smrj 	 * Set up TSC_AUX to contain the cpuid for this processor
1751ae115bc7Smrj 	 * for the rdtscp instruction.
1752ae115bc7Smrj 	 */
17537417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_TSCP))
1754ae115bc7Smrj 		(void) wrmsr(MSR_AMD_TSCAUX, cp->cpu_id);
1755ae115bc7Smrj 
17567c478bd9Sstevel@tonic-gate 	/*
17577c478bd9Sstevel@tonic-gate 	 * Initialize this CPU's syscall handlers
17587c478bd9Sstevel@tonic-gate 	 */
17597c478bd9Sstevel@tonic-gate 	init_cpu_syscall(cp);
17607c478bd9Sstevel@tonic-gate 
17617c478bd9Sstevel@tonic-gate 	/*
17627c478bd9Sstevel@tonic-gate 	 * Enable interrupts with spl set to LOCK_LEVEL. LOCK_LEVEL is the
17637c478bd9Sstevel@tonic-gate 	 * highest level at which a routine is permitted to block on
17647c478bd9Sstevel@tonic-gate 	 * an adaptive mutex (allows for cpu poke interrupt in case
17657c478bd9Sstevel@tonic-gate 	 * the cpu is blocked on a mutex and halts). Setting LOCK_LEVEL blocks
17667c478bd9Sstevel@tonic-gate 	 * device interrupts that may end up in the hat layer issuing cross
17677c478bd9Sstevel@tonic-gate 	 * calls before CPU_READY is set.
17687c478bd9Sstevel@tonic-gate 	 */
1769ae115bc7Smrj 	splx(ipltospl(LOCK_LEVEL));
1770ae115bc7Smrj 	sti();
17717c478bd9Sstevel@tonic-gate 
1772f98fbcecSbholler 	/*
17734d4b4953SPatrick Mooney 	 * There exists a small subset of systems which expose differing
17744d4b4953SPatrick Mooney 	 * MWAIT/MONITOR support between CPUs.  If MWAIT support is absent from
17754d4b4953SPatrick Mooney 	 * the boot CPU, but is found on a later CPU, the system continues to
17764d4b4953SPatrick Mooney 	 * operate as if no MWAIT support is available.
17774d4b4953SPatrick Mooney 	 *
17784d4b4953SPatrick Mooney 	 * The reverse case, where MWAIT is available on the boot CPU but not
17794d4b4953SPatrick Mooney 	 * on a subsequently initialized CPU, is not presently allowed and will
17804d4b4953SPatrick Mooney 	 * result in a panic.
1781f98fbcecSbholler 	 */
17827417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MWAIT) !=
17834d4b4953SPatrick Mooney 	    is_x86_feature(new_x86_featureset, X86FSET_MWAIT)) {
17844d4b4953SPatrick Mooney 		if (!is_x86_feature(x86_featureset, X86FSET_MWAIT)) {
17854d4b4953SPatrick Mooney 			remove_x86_feature(new_x86_featureset, X86FSET_MWAIT);
17864d4b4953SPatrick Mooney 		} else {
17874d4b4953SPatrick Mooney 			panic("unsupported mixed cpu mwait support detected");
17884d4b4953SPatrick Mooney 		}
17894d4b4953SPatrick Mooney 	}
1790f98fbcecSbholler 
17917c478bd9Sstevel@tonic-gate 	/*
17927c478bd9Sstevel@tonic-gate 	 * We could be more sophisticated here, and just mark the CPU
17937c478bd9Sstevel@tonic-gate 	 * as "faulted" but at this point we'll opt for the easier
1794fb2caebeSRandy Fishel 	 * answer of dying horribly.  Provided the boot cpu is ok,
17957c478bd9Sstevel@tonic-gate 	 * the system can be recovered by booting with use_mp set to zero.
17967c478bd9Sstevel@tonic-gate 	 */
17977c478bd9Sstevel@tonic-gate 	if (workaround_errata(cp) != 0)
17987c478bd9Sstevel@tonic-gate 		panic("critical workaround(s) missing for cpu%d", cp->cpu_id);
17997c478bd9Sstevel@tonic-gate 
1800a3114836SGerry Liu 	/*
1801a3114836SGerry Liu 	 * We can touch cpu_flags here without acquiring the cpu_lock here
1802a3114836SGerry Liu 	 * because the cpu_lock is held by the control CPU which is running
1803a3114836SGerry Liu 	 * mp_start_cpu_common().
1804a3114836SGerry Liu 	 * Need to clear CPU_QUIESCED flag before calling any function which
1805a3114836SGerry Liu 	 * may cause thread context switching, such as kmem_alloc() etc.
1806a3114836SGerry Liu 	 * The idle thread checks for CPU_QUIESCED flag and loops for ever if
1807a3114836SGerry Liu 	 * it's set. So the startup thread may have no chance to switch back
1808a3114836SGerry Liu 	 * again if it's switched away with CPU_QUIESCED set.
1809a3114836SGerry Liu 	 */
1810a3114836SGerry Liu 	cp->cpu_flags &= ~(CPU_POWEROFF | CPU_QUIESCED);
1811a3114836SGerry Liu 
181274ecdb51SJohn Levon 	enable_pcid();
181374ecdb51SJohn Levon 
18147af88ac7SKuriakose Kuruvilla 	/*
18157af88ac7SKuriakose Kuruvilla 	 * Setup this processor for XSAVE.
18167af88ac7SKuriakose Kuruvilla 	 */
18177af88ac7SKuriakose Kuruvilla 	if (fp_save_mech == FP_XSAVE) {
18187af88ac7SKuriakose Kuruvilla 		xsave_setup_msr(cp);
18197af88ac7SKuriakose Kuruvilla 	}
18207af88ac7SKuriakose Kuruvilla 
18217c478bd9Sstevel@tonic-gate 	cpuid_pass2(cp);
18227c478bd9Sstevel@tonic-gate 	cpuid_pass3(cp);
1823ebb8ac07SRobert Mustacchi 	cpuid_pass4(cp, NULL);
18247c478bd9Sstevel@tonic-gate 
18252449e17fSsherrym 	/*
1826a3114836SGerry Liu 	 * Correct cpu_idstr and cpu_brandstr on target CPU after
1827a3114836SGerry Liu 	 * cpuid_pass1() is done.
18282449e17fSsherrym 	 */
1829a3114836SGerry Liu 	(void) cpuid_getidstr(cp, cp->cpu_idstr, CPU_IDSTRLEN);
1830a3114836SGerry Liu 	(void) cpuid_getbrandstr(cp, cp->cpu_brandstr, CPU_IDSTRLEN);
18312449e17fSsherrym 
1832a3114836SGerry Liu 	cp->cpu_flags |= CPU_RUNNING | CPU_READY | CPU_EXISTS;
18337c478bd9Sstevel@tonic-gate 
1834e774b42bSBill Holler 	post_startup_cpu_fixups();
1835e774b42bSBill Holler 
1836a3114836SGerry Liu 	cpu_event_init_cpu(cp);
1837a3114836SGerry Liu 
1838aa7b6435Ssethg 	/*
1839aa7b6435Ssethg 	 * Enable preemption here so that contention for any locks acquired
1840a3114836SGerry Liu 	 * later in mp_startup_common may be preempted if the thread owning
1841a3114836SGerry Liu 	 * those locks is continuously executing on other CPUs (for example,
1842a3114836SGerry Liu 	 * this CPU must be preemptible to allow other CPUs to pause it during
1843a3114836SGerry Liu 	 * their startup phases).  It's safe to enable preemption here because
1844a3114836SGerry Liu 	 * the CPU state is pretty-much fully constructed.
1845aa7b6435Ssethg 	 */
1846aa7b6435Ssethg 	curthread->t_preempt = 0;
1847aa7b6435Ssethg 
1848da43ceabSsethg 	/* The base spl should still be at LOCK LEVEL here */
1849da43ceabSsethg 	ASSERT(cp->cpu_base_spl == ipltospl(LOCK_LEVEL));
1850da43ceabSsethg 	set_base_spl();		/* Restore the spl to its proper value */
1851da43ceabSsethg 
1852a3114836SGerry Liu 	pghw_physid_create(cp);
18530e751525SEric Saxe 	/*
1854a3114836SGerry Liu 	 * Delegate initialization tasks, which need to access the cpu_lock,
1855a3114836SGerry Liu 	 * to mp_start_cpu_common() because we can't acquire the cpu_lock here
1856a3114836SGerry Liu 	 * during CPU DR operations.
18570e751525SEric Saxe 	 */
1858a3114836SGerry Liu 	mp_startup_signal(&procset_slave, cp->cpu_id);
1859a3114836SGerry Liu 	mp_startup_wait(&procset_master, cp->cpu_id);
18600e751525SEric Saxe 	pg_cmt_cpu_startup(cp);
1861a3114836SGerry Liu 
1862a3114836SGerry Liu 	if (boot) {
1863a3114836SGerry Liu 		mutex_enter(&cpu_lock);
1864a3114836SGerry Liu 		cp->cpu_flags &= ~CPU_OFFLINE;
1865a3114836SGerry Liu 		cpu_enable_intr(cp);
1866a3114836SGerry Liu 		cpu_add_active(cp);
1867a3114836SGerry Liu 		mutex_exit(&cpu_lock);
1868a3114836SGerry Liu 	}
18690e751525SEric Saxe 
1870afbc4541Ssherrym 	/* Enable interrupts */
1871afbc4541Ssherrym 	(void) spl0();
18720e751525SEric Saxe 
1873a3114836SGerry Liu 	/*
1874e25cb0e7SJohn Levon 	 * Fill out cpu_ucode_info.  Update microcode if necessary. Note that
1875e25cb0e7SJohn Levon 	 * this is done after pass1 on the boot CPU, but it needs to be later on
1876e25cb0e7SJohn Levon 	 * for the other CPUs.
1877a3114836SGerry Liu 	 */
1878a3114836SGerry Liu 	ucode_check(cp);
187901add34aSRobert Mustacchi 	cpuid_pass_ucode(cp, new_x86_featureset);
188001add34aSRobert Mustacchi 
188101add34aSRobert Mustacchi 	/*
188201add34aSRobert Mustacchi 	 * Do a sanity check to make sure this new CPU is a sane thing
188301add34aSRobert Mustacchi 	 * to add to the collection of processors running this system.
188401add34aSRobert Mustacchi 	 *
188501add34aSRobert Mustacchi 	 * XXX	Clearly this needs to get more sophisticated, if x86
188601add34aSRobert Mustacchi 	 * systems start to get built out of heterogenous CPUs; as is
188701add34aSRobert Mustacchi 	 * likely to happen once the number of processors in a configuration
188801add34aSRobert Mustacchi 	 * gets large enough.
188901add34aSRobert Mustacchi 	 */
189001add34aSRobert Mustacchi 	if (compare_x86_featureset(x86_featureset, new_x86_featureset) ==
189101add34aSRobert Mustacchi 	    B_FALSE) {
189201add34aSRobert Mustacchi 		cmn_err(CE_CONT, "cpu%d: featureset\n", cp->cpu_id);
189301add34aSRobert Mustacchi 		print_x86_featureset(new_x86_featureset);
189401add34aSRobert Mustacchi 		cmn_err(CE_WARN, "cpu%d feature mismatch", cp->cpu_id);
189501add34aSRobert Mustacchi 	}
1896afbc4541Ssherrym 
189720c794b3Sgavinm #ifndef __xpv
189820c794b3Sgavinm 	{
189920c794b3Sgavinm 		/*
190020c794b3Sgavinm 		 * Set up the CPU module for this CPU.  This can't be done
190120c794b3Sgavinm 		 * before this CPU is made CPU_READY, because we may (in
190220c794b3Sgavinm 		 * heterogeneous systems) need to go load another CPU module.
190320c794b3Sgavinm 		 * The act of attempting to load a module may trigger a
190420c794b3Sgavinm 		 * cross-call, which will ASSERT unless this cpu is CPU_READY.
190520c794b3Sgavinm 		 */
190620c794b3Sgavinm 		cmi_hdl_t hdl;
19077aec1d6eScindi 
190820c794b3Sgavinm 		if ((hdl = cmi_init(CMI_HDL_NATIVE, cmi_ntv_hwchipid(CPU),
1909e4b86885SCheng Sean Ye 		    cmi_ntv_hwcoreid(CPU), cmi_ntv_hwstrandid(CPU))) != NULL) {
19107417cfdeSKuriakose Kuruvilla 			if (is_x86_feature(x86_featureset, X86FSET_MCA))
191120c794b3Sgavinm 				cmi_mca_init(hdl);
1912a3114836SGerry Liu 			cp->cpu_m.mcpu_cmi_hdl = hdl;
191320c794b3Sgavinm 		}
191420c794b3Sgavinm 	}
191520c794b3Sgavinm #endif /* __xpv */
19167aec1d6eScindi 
19177c478bd9Sstevel@tonic-gate 	if (boothowto & RB_DEBUG)
1918ae115bc7Smrj 		kdi_cpu_init();
19197c478bd9Sstevel@tonic-gate 
1920af1da5d8SJason King 	(void) mach_cpu_create_device_node(cp, NULL);
1921af1da5d8SJason King 
19227c478bd9Sstevel@tonic-gate 	/*
19237c478bd9Sstevel@tonic-gate 	 * Setting the bit in cpu_ready_set must be the last operation in
19247c478bd9Sstevel@tonic-gate 	 * processor initialization; the boot CPU will continue to boot once
19257c478bd9Sstevel@tonic-gate 	 * it sees this bit set for all active CPUs.
19267c478bd9Sstevel@tonic-gate 	 */
19277c478bd9Sstevel@tonic-gate 	CPUSET_ATOMIC_ADD(cpu_ready_set, cp->cpu_id);
19287c478bd9Sstevel@tonic-gate 
1929a3114836SGerry Liu 	cmn_err(CE_CONT, "?cpu%d: %s\n", cp->cpu_id, cp->cpu_idstr);
1930a3114836SGerry Liu 	cmn_err(CE_CONT, "?cpu%d: %s\n", cp->cpu_id, cp->cpu_brandstr);
1931a3114836SGerry Liu 	cmn_err(CE_CONT, "?cpu%d initialization complete - online\n",
1932a3114836SGerry Liu 	    cp->cpu_id);
1933a3114836SGerry Liu 
19347c478bd9Sstevel@tonic-gate 	/*
19357c478bd9Sstevel@tonic-gate 	 * Now we are done with the startup thread, so free it up.
19367c478bd9Sstevel@tonic-gate 	 */
19377c478bd9Sstevel@tonic-gate 	thread_exit();
19387c478bd9Sstevel@tonic-gate 	/*NOTREACHED*/
19397c478bd9Sstevel@tonic-gate }
19407c478bd9Sstevel@tonic-gate 
1941a3114836SGerry Liu /*
1942a3114836SGerry Liu  * Startup function for 'other' CPUs at boot time (besides boot cpu).
1943a3114836SGerry Liu  */
1944a3114836SGerry Liu static void
1945a3114836SGerry Liu mp_startup_boot(void)
1946a3114836SGerry Liu {
1947a3114836SGerry Liu 	mp_startup_common(B_TRUE);
1948a3114836SGerry Liu }
1949a3114836SGerry Liu 
1950a3114836SGerry Liu /*
1951a3114836SGerry Liu  * Startup function for hotplug CPUs at runtime.
1952a3114836SGerry Liu  */
1953a3114836SGerry Liu void
1954a3114836SGerry Liu mp_startup_hotplug(void)
1955a3114836SGerry Liu {
1956a3114836SGerry Liu 	mp_startup_common(B_FALSE);
1957a3114836SGerry Liu }
19587c478bd9Sstevel@tonic-gate 
19597c478bd9Sstevel@tonic-gate /*
19607c478bd9Sstevel@tonic-gate  * Start CPU on user request.
19617c478bd9Sstevel@tonic-gate  */
19627c478bd9Sstevel@tonic-gate /* ARGSUSED */
19637c478bd9Sstevel@tonic-gate int
19647c478bd9Sstevel@tonic-gate mp_cpu_start(struct cpu *cp)
19657c478bd9Sstevel@tonic-gate {
19667c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
19677c478bd9Sstevel@tonic-gate 	return (0);
19687c478bd9Sstevel@tonic-gate }
19697c478bd9Sstevel@tonic-gate 
19707c478bd9Sstevel@tonic-gate /*
19717c478bd9Sstevel@tonic-gate  * Stop CPU on user request.
19727c478bd9Sstevel@tonic-gate  */
19737c478bd9Sstevel@tonic-gate int
19747c478bd9Sstevel@tonic-gate mp_cpu_stop(struct cpu *cp)
19757c478bd9Sstevel@tonic-gate {
1976d90554ebSdmick 	extern int cbe_psm_timer_mode;
19777c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
1978d90554ebSdmick 
1979843e1988Sjohnlev #ifdef __xpv
1980843e1988Sjohnlev 	/*
1981843e1988Sjohnlev 	 * We can't offline vcpu0.
1982843e1988Sjohnlev 	 */
1983843e1988Sjohnlev 	if (cp->cpu_id == 0)
1984843e1988Sjohnlev 		return (EBUSY);
1985843e1988Sjohnlev #endif
1986843e1988Sjohnlev 
1987d90554ebSdmick 	/*
1988d90554ebSdmick 	 * If TIMER_PERIODIC mode is used, CPU0 is the one running it;
1989d90554ebSdmick 	 * can't stop it.  (This is true only for machines with no TSC.)
1990d90554ebSdmick 	 */
1991d90554ebSdmick 
1992d90554ebSdmick 	if ((cbe_psm_timer_mode == TIMER_PERIODIC) && (cp->cpu_id == 0))
1993843e1988Sjohnlev 		return (EBUSY);
19947c478bd9Sstevel@tonic-gate 
19957c478bd9Sstevel@tonic-gate 	return (0);
19967c478bd9Sstevel@tonic-gate }
19977c478bd9Sstevel@tonic-gate 
19987c478bd9Sstevel@tonic-gate /*
19997c478bd9Sstevel@tonic-gate  * Take the specified CPU out of participation in interrupts.
2000c3377ee9SJohn Levon  *
2001c3377ee9SJohn Levon  * Usually, we hold cpu_lock. But we cannot assert as such due to the
2002c3377ee9SJohn Levon  * exception - i_cpr_save_context() - where we have mutual exclusion via a
2003c3377ee9SJohn Levon  * separate mechanism.
20047c478bd9Sstevel@tonic-gate  */
20057c478bd9Sstevel@tonic-gate int
20067c478bd9Sstevel@tonic-gate cpu_disable_intr(struct cpu *cp)
20077c478bd9Sstevel@tonic-gate {
20087c478bd9Sstevel@tonic-gate 	if (psm_disable_intr(cp->cpu_id) != DDI_SUCCESS)
20097c478bd9Sstevel@tonic-gate 		return (EBUSY);
20107c478bd9Sstevel@tonic-gate 
20117c478bd9Sstevel@tonic-gate 	cp->cpu_flags &= ~CPU_ENABLE;
2012c3377ee9SJohn Levon 	ncpus_intr_enabled--;
20137c478bd9Sstevel@tonic-gate 	return (0);
20147c478bd9Sstevel@tonic-gate }
20157c478bd9Sstevel@tonic-gate 
20167c478bd9Sstevel@tonic-gate /*
20177c478bd9Sstevel@tonic-gate  * Allow the specified CPU to participate in interrupts.
20187c478bd9Sstevel@tonic-gate  */
20197c478bd9Sstevel@tonic-gate void
20207c478bd9Sstevel@tonic-gate cpu_enable_intr(struct cpu *cp)
20217c478bd9Sstevel@tonic-gate {
20227c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
20237c478bd9Sstevel@tonic-gate 	cp->cpu_flags |= CPU_ENABLE;
2024c3377ee9SJohn Levon 	ncpus_intr_enabled++;
20257c478bd9Sstevel@tonic-gate 	psm_enable_intr(cp->cpu_id);
20267c478bd9Sstevel@tonic-gate }
20277c478bd9Sstevel@tonic-gate 
20287c478bd9Sstevel@tonic-gate void
20297c478bd9Sstevel@tonic-gate mp_cpu_faulted_enter(struct cpu *cp)
20307aec1d6eScindi {
2031a3114836SGerry Liu #ifdef __xpv
2032a3114836SGerry Liu 	_NOTE(ARGUNUSED(cp));
2033a3114836SGerry Liu #else
2034a3114836SGerry Liu 	cmi_hdl_t hdl = cp->cpu_m.mcpu_cmi_hdl;
203520c794b3Sgavinm 
2036a3114836SGerry Liu 	if (hdl != NULL) {
2037a3114836SGerry Liu 		cmi_hdl_hold(hdl);
2038a3114836SGerry Liu 	} else {
2039a3114836SGerry Liu 		hdl = cmi_hdl_lookup(CMI_HDL_NATIVE, cmi_ntv_hwchipid(cp),
2040a3114836SGerry Liu 		    cmi_ntv_hwcoreid(cp), cmi_ntv_hwstrandid(cp));
2041a3114836SGerry Liu 	}
204220c794b3Sgavinm 	if (hdl != NULL) {
204320c794b3Sgavinm 		cmi_faulted_enter(hdl);
204420c794b3Sgavinm 		cmi_hdl_rele(hdl);
204520c794b3Sgavinm 	}
204620c794b3Sgavinm #endif
20477aec1d6eScindi }
20487c478bd9Sstevel@tonic-gate 
20497c478bd9Sstevel@tonic-gate void
20507c478bd9Sstevel@tonic-gate mp_cpu_faulted_exit(struct cpu *cp)
20517aec1d6eScindi {
2052a3114836SGerry Liu #ifdef __xpv
2053a3114836SGerry Liu 	_NOTE(ARGUNUSED(cp));
2054a3114836SGerry Liu #else
2055a3114836SGerry Liu 	cmi_hdl_t hdl = cp->cpu_m.mcpu_cmi_hdl;
205620c794b3Sgavinm 
2057a3114836SGerry Liu 	if (hdl != NULL) {
2058a3114836SGerry Liu 		cmi_hdl_hold(hdl);
2059a3114836SGerry Liu 	} else {
2060a3114836SGerry Liu 		hdl = cmi_hdl_lookup(CMI_HDL_NATIVE, cmi_ntv_hwchipid(cp),
2061a3114836SGerry Liu 		    cmi_ntv_hwcoreid(cp), cmi_ntv_hwstrandid(cp));
2062a3114836SGerry Liu 	}
206320c794b3Sgavinm 	if (hdl != NULL) {
206420c794b3Sgavinm 		cmi_faulted_exit(hdl);
206520c794b3Sgavinm 		cmi_hdl_rele(hdl);
206620c794b3Sgavinm 	}
206720c794b3Sgavinm #endif
20687aec1d6eScindi }
20697c478bd9Sstevel@tonic-gate 
20707c478bd9Sstevel@tonic-gate /*
20717c478bd9Sstevel@tonic-gate  * The following two routines are used as context operators on threads belonging
20727c478bd9Sstevel@tonic-gate  * to processes with a private LDT (see sysi86).  Due to the rarity of such
20737c478bd9Sstevel@tonic-gate  * processes, these routines are currently written for best code readability and
20747417cfdeSKuriakose Kuruvilla  * organization rather than speed.  We could avoid checking x86_featureset at
20757417cfdeSKuriakose Kuruvilla  * every context switch by installing different context ops, depending on
20767417cfdeSKuriakose Kuruvilla  * x86_featureset, at LDT creation time -- one for each combination of fast
20777417cfdeSKuriakose Kuruvilla  * syscall features.
20787c478bd9Sstevel@tonic-gate  */
20797c478bd9Sstevel@tonic-gate 
20807c478bd9Sstevel@tonic-gate void
2081a0955b86SJohn Levon cpu_fast_syscall_disable(void)
20827c478bd9Sstevel@tonic-gate {
20837417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
20847417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_SEP))
20857c478bd9Sstevel@tonic-gate 		cpu_sep_disable();
20867417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
20877417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_ASYSC))
20887c478bd9Sstevel@tonic-gate 		cpu_asysc_disable();
20897c478bd9Sstevel@tonic-gate }
20907c478bd9Sstevel@tonic-gate 
20917c478bd9Sstevel@tonic-gate void
2092a0955b86SJohn Levon cpu_fast_syscall_enable(void)
20937c478bd9Sstevel@tonic-gate {
20947417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
20957417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_SEP))
20967c478bd9Sstevel@tonic-gate 		cpu_sep_enable();
20977417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
20987417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_ASYSC))
20997c478bd9Sstevel@tonic-gate 		cpu_asysc_enable();
21007c478bd9Sstevel@tonic-gate }
21017c478bd9Sstevel@tonic-gate 
21027c478bd9Sstevel@tonic-gate static void
21037c478bd9Sstevel@tonic-gate cpu_sep_enable(void)
21047c478bd9Sstevel@tonic-gate {
21057417cfdeSKuriakose Kuruvilla 	ASSERT(is_x86_feature(x86_featureset, X86FSET_SEP));
21067c478bd9Sstevel@tonic-gate 	ASSERT(curthread->t_preempt || getpil() >= LOCK_LEVEL);
21077c478bd9Sstevel@tonic-gate 
21080ac7d7d8Skucharsk 	wrmsr(MSR_INTC_SEP_CS, (uint64_t)(uintptr_t)KCS_SEL);
21097c478bd9Sstevel@tonic-gate }
21107c478bd9Sstevel@tonic-gate 
21117c478bd9Sstevel@tonic-gate static void
21127c478bd9Sstevel@tonic-gate cpu_sep_disable(void)
21137c478bd9Sstevel@tonic-gate {
21147417cfdeSKuriakose Kuruvilla 	ASSERT(is_x86_feature(x86_featureset, X86FSET_SEP));
21157c478bd9Sstevel@tonic-gate 	ASSERT(curthread->t_preempt || getpil() >= LOCK_LEVEL);
21167c478bd9Sstevel@tonic-gate 
21177c478bd9Sstevel@tonic-gate 	/*
21187c478bd9Sstevel@tonic-gate 	 * Setting the SYSENTER_CS_MSR register to 0 causes software executing
21197c478bd9Sstevel@tonic-gate 	 * the sysenter or sysexit instruction to trigger a #gp fault.
21207c478bd9Sstevel@tonic-gate 	 */
2121ae115bc7Smrj 	wrmsr(MSR_INTC_SEP_CS, 0);
21227c478bd9Sstevel@tonic-gate }
21237c478bd9Sstevel@tonic-gate 
21247c478bd9Sstevel@tonic-gate static void
21257c478bd9Sstevel@tonic-gate cpu_asysc_enable(void)
21267c478bd9Sstevel@tonic-gate {
21277417cfdeSKuriakose Kuruvilla 	ASSERT(is_x86_feature(x86_featureset, X86FSET_ASYSC));
21287c478bd9Sstevel@tonic-gate 	ASSERT(curthread->t_preempt || getpil() >= LOCK_LEVEL);
21297c478bd9Sstevel@tonic-gate 
21300ac7d7d8Skucharsk 	wrmsr(MSR_AMD_EFER, rdmsr(MSR_AMD_EFER) |
21310ac7d7d8Skucharsk 	    (uint64_t)(uintptr_t)AMD_EFER_SCE);
21327c478bd9Sstevel@tonic-gate }
21337c478bd9Sstevel@tonic-gate 
21347c478bd9Sstevel@tonic-gate static void
21357c478bd9Sstevel@tonic-gate cpu_asysc_disable(void)
21367c478bd9Sstevel@tonic-gate {
21377417cfdeSKuriakose Kuruvilla 	ASSERT(is_x86_feature(x86_featureset, X86FSET_ASYSC));
21387c478bd9Sstevel@tonic-gate 	ASSERT(curthread->t_preempt || getpil() >= LOCK_LEVEL);
21397c478bd9Sstevel@tonic-gate 
21407c478bd9Sstevel@tonic-gate 	/*
21417c478bd9Sstevel@tonic-gate 	 * Turn off the SCE (syscall enable) bit in the EFER register. Software
21427c478bd9Sstevel@tonic-gate 	 * executing syscall or sysret with this bit off will incur a #ud trap.
21437c478bd9Sstevel@tonic-gate 	 */
21440ac7d7d8Skucharsk 	wrmsr(MSR_AMD_EFER, rdmsr(MSR_AMD_EFER) &
21450ac7d7d8Skucharsk 	    ~((uint64_t)(uintptr_t)AMD_EFER_SCE));
21467c478bd9Sstevel@tonic-gate }
2147