xref: /illumos-gate/usr/src/uts/i86pc/os/mp_startup.c (revision 2428aad8462660fad2b105777063fea6f4192308)
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 /*
30*2428aad8SPatrick Mooney  * Copyright 2016 Joyent, Inc.
31850ad55aSHans Rosenfeld  * Copyright 2013 Nexenta Systems, Inc.  All rights reserved.
32ebb8ac07SRobert Mustacchi  */
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #include <sys/types.h>
357c478bd9Sstevel@tonic-gate #include <sys/thread.h>
367c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
37a3114836SGerry Liu #include <sys/cpu.h>
387c478bd9Sstevel@tonic-gate #include <sys/t_lock.h>
397c478bd9Sstevel@tonic-gate #include <sys/param.h>
407c478bd9Sstevel@tonic-gate #include <sys/proc.h>
417c478bd9Sstevel@tonic-gate #include <sys/disp.h>
427c478bd9Sstevel@tonic-gate #include <sys/class.h>
437c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
447c478bd9Sstevel@tonic-gate #include <sys/debug.h>
45a3114836SGerry Liu #include <sys/note.h>
467c478bd9Sstevel@tonic-gate #include <sys/asm_linkage.h>
477c478bd9Sstevel@tonic-gate #include <sys/x_call.h>
487c478bd9Sstevel@tonic-gate #include <sys/systm.h>
497c478bd9Sstevel@tonic-gate #include <sys/var.h>
507c478bd9Sstevel@tonic-gate #include <sys/vtrace.h>
517c478bd9Sstevel@tonic-gate #include <vm/hat.h>
527c478bd9Sstevel@tonic-gate #include <vm/as.h>
537c478bd9Sstevel@tonic-gate #include <vm/seg_kmem.h>
54ae115bc7Smrj #include <vm/seg_kp.h>
557c478bd9Sstevel@tonic-gate #include <sys/segments.h>
567c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
577c478bd9Sstevel@tonic-gate #include <sys/stack.h>
587c478bd9Sstevel@tonic-gate #include <sys/smp_impldefs.h>
597c478bd9Sstevel@tonic-gate #include <sys/x86_archext.h>
607c478bd9Sstevel@tonic-gate #include <sys/machsystm.h>
617c478bd9Sstevel@tonic-gate #include <sys/traptrace.h>
627c478bd9Sstevel@tonic-gate #include <sys/clock.h>
637c478bd9Sstevel@tonic-gate #include <sys/cpc_impl.h>
64fb2f18f8Sesaxe #include <sys/pg.h>
65fb2f18f8Sesaxe #include <sys/cmt.h>
667c478bd9Sstevel@tonic-gate #include <sys/dtrace.h>
677c478bd9Sstevel@tonic-gate #include <sys/archsystm.h>
687c478bd9Sstevel@tonic-gate #include <sys/fp.h>
697c478bd9Sstevel@tonic-gate #include <sys/reboot.h>
70ae115bc7Smrj #include <sys/kdi_machimpl.h>
717c478bd9Sstevel@tonic-gate #include <vm/hat_i86.h>
72a3114836SGerry Liu #include <vm/vm_dep.h>
737c478bd9Sstevel@tonic-gate #include <sys/memnode.h>
74ef50d8c0Sesaxe #include <sys/pci_cfgspace.h>
75ae115bc7Smrj #include <sys/mach_mmu.h>
76ae115bc7Smrj #include <sys/sysmacros.h>
77843e1988Sjohnlev #if defined(__xpv)
78843e1988Sjohnlev #include <sys/hypervisor.h>
79843e1988Sjohnlev #endif
807aec1d6eScindi #include <sys/cpu_module.h>
81850ad55aSHans Rosenfeld #include <sys/ontrap.h>
827c478bd9Sstevel@tonic-gate 
837c478bd9Sstevel@tonic-gate struct cpu	cpus[1];			/* CPU data */
847c478bd9Sstevel@tonic-gate struct cpu	*cpu[NCPU] = {&cpus[0]};	/* pointers to all CPUs */
85a3114836SGerry Liu struct cpu	*cpu_free_list;			/* list for released CPUs */
867c478bd9Sstevel@tonic-gate cpu_core_t	cpu_core[NCPU];			/* cpu_core structures */
877c478bd9Sstevel@tonic-gate 
88a3114836SGerry Liu #define	cpu_next_free	cpu_prev
89a3114836SGerry Liu 
907c478bd9Sstevel@tonic-gate /*
91ae115bc7Smrj  * Useful for disabling MP bring-up on a MP capable system.
927c478bd9Sstevel@tonic-gate  */
937c478bd9Sstevel@tonic-gate int use_mp = 1;
947c478bd9Sstevel@tonic-gate 
9541791439Sandrei /*
96ae115bc7Smrj  * to be set by a PSM to indicate what cpus
97ae115bc7Smrj  * are sitting around on the system.
9841791439Sandrei  */
99ae115bc7Smrj cpuset_t mp_cpus;
1007c478bd9Sstevel@tonic-gate 
1017c478bd9Sstevel@tonic-gate /*
1027c478bd9Sstevel@tonic-gate  * This variable is used by the hat layer to decide whether or not
1037c478bd9Sstevel@tonic-gate  * critical sections are needed to prevent race conditions.  For sun4m,
1047c478bd9Sstevel@tonic-gate  * this variable is set once enough MP initialization has been done in
1057c478bd9Sstevel@tonic-gate  * order to allow cross calls.
1067c478bd9Sstevel@tonic-gate  */
107ae115bc7Smrj int flushes_require_xcalls;
108a563a037Sbholler 
109a563a037Sbholler cpuset_t cpu_ready_set;		/* initialized in startup() */
1107c478bd9Sstevel@tonic-gate 
111a3114836SGerry Liu static void mp_startup_boot(void);
112a3114836SGerry Liu static void mp_startup_hotplug(void);
1137c478bd9Sstevel@tonic-gate 
1147c478bd9Sstevel@tonic-gate static void cpu_sep_enable(void);
1157c478bd9Sstevel@tonic-gate static void cpu_sep_disable(void);
1167c478bd9Sstevel@tonic-gate static void cpu_asysc_enable(void);
1177c478bd9Sstevel@tonic-gate static void cpu_asysc_disable(void);
1187c478bd9Sstevel@tonic-gate 
1197c478bd9Sstevel@tonic-gate /*
1207c478bd9Sstevel@tonic-gate  * Init CPU info - get CPU type info for processor_info system call.
1217c478bd9Sstevel@tonic-gate  */
1227c478bd9Sstevel@tonic-gate void
1237c478bd9Sstevel@tonic-gate init_cpu_info(struct cpu *cp)
1247c478bd9Sstevel@tonic-gate {
1257c478bd9Sstevel@tonic-gate 	processor_info_t *pi = &cp->cpu_type_info;
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate 	/*
1287c478bd9Sstevel@tonic-gate 	 * Get clock-frequency property for the CPU.
1297c478bd9Sstevel@tonic-gate 	 */
1307c478bd9Sstevel@tonic-gate 	pi->pi_clock = cpu_freq;
1317c478bd9Sstevel@tonic-gate 
1325cff7825Smh 	/*
1335cff7825Smh 	 * Current frequency in Hz.
1345cff7825Smh 	 */
135cf74e62bSmh 	cp->cpu_curr_clock = cpu_freq_hz;
1365cff7825Smh 
13737d22dc0SAnup Pemmaiah 	/*
13837d22dc0SAnup Pemmaiah 	 * Supported frequencies.
13937d22dc0SAnup Pemmaiah 	 */
14037d22dc0SAnup Pemmaiah 	if (cp->cpu_supp_freqs == NULL) {
14137d22dc0SAnup Pemmaiah 		cpu_set_supp_freqs(cp, NULL);
14237d22dc0SAnup Pemmaiah 	}
14337d22dc0SAnup Pemmaiah 
1447c478bd9Sstevel@tonic-gate 	(void) strcpy(pi->pi_processor_type, "i386");
1457c478bd9Sstevel@tonic-gate 	if (fpu_exists)
1467c478bd9Sstevel@tonic-gate 		(void) strcpy(pi->pi_fputypes, "i387 compatible");
1477c478bd9Sstevel@tonic-gate 
148a3114836SGerry Liu 	cp->cpu_idstr = kmem_zalloc(CPU_IDSTRLEN, KM_SLEEP);
149a3114836SGerry Liu 	cp->cpu_brandstr = kmem_zalloc(CPU_IDSTRLEN, KM_SLEEP);
1507c478bd9Sstevel@tonic-gate 
151a3114836SGerry Liu 	/*
152a3114836SGerry Liu 	 * If called for the BSP, cp is equal to current CPU.
153a3114836SGerry Liu 	 * For non-BSPs, cpuid info of cp is not ready yet, so use cpuid info
154a3114836SGerry Liu 	 * of current CPU as default values for cpu_idstr and cpu_brandstr.
155a3114836SGerry Liu 	 * They will be corrected in mp_startup_common() after cpuid_pass1()
156a3114836SGerry Liu 	 * has been invoked on target CPU.
157a3114836SGerry Liu 	 */
158a3114836SGerry Liu 	(void) cpuid_getidstr(CPU, cp->cpu_idstr, CPU_IDSTRLEN);
159a3114836SGerry Liu 	(void) cpuid_getbrandstr(CPU, cp->cpu_brandstr, CPU_IDSTRLEN);
1607c478bd9Sstevel@tonic-gate }
1617c478bd9Sstevel@tonic-gate 
1627c478bd9Sstevel@tonic-gate /*
1637c478bd9Sstevel@tonic-gate  * Configure syscall support on this CPU.
1647c478bd9Sstevel@tonic-gate  */
1657c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1662df1fe9cSrandyf void
1677c478bd9Sstevel@tonic-gate init_cpu_syscall(struct cpu *cp)
1687c478bd9Sstevel@tonic-gate {
1697c478bd9Sstevel@tonic-gate 	kpreempt_disable();
1707c478bd9Sstevel@tonic-gate 
1717c478bd9Sstevel@tonic-gate #if defined(__amd64)
1727417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
1737417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_ASYSC)) {
1743ce2fcdcSRobert Mustacchi 		uint64_t flags;
1757c478bd9Sstevel@tonic-gate 
1767c478bd9Sstevel@tonic-gate #if !defined(__lint)
1777c478bd9Sstevel@tonic-gate 		/*
1787c478bd9Sstevel@tonic-gate 		 * The syscall instruction imposes a certain ordering on
1797c478bd9Sstevel@tonic-gate 		 * segment selectors, so we double-check that ordering
1807c478bd9Sstevel@tonic-gate 		 * here.
1817c478bd9Sstevel@tonic-gate 		 */
1827c478bd9Sstevel@tonic-gate 		ASSERT(KDS_SEL == KCS_SEL + 8);
1837c478bd9Sstevel@tonic-gate 		ASSERT(UDS_SEL == U32CS_SEL + 8);
1847c478bd9Sstevel@tonic-gate 		ASSERT(UCS_SEL == U32CS_SEL + 16);
1857c478bd9Sstevel@tonic-gate #endif
1867c478bd9Sstevel@tonic-gate 		/*
1877c478bd9Sstevel@tonic-gate 		 * Turn syscall/sysret extensions on.
1887c478bd9Sstevel@tonic-gate 		 */
1897c478bd9Sstevel@tonic-gate 		cpu_asysc_enable();
1907c478bd9Sstevel@tonic-gate 
1917c478bd9Sstevel@tonic-gate 		/*
1927c478bd9Sstevel@tonic-gate 		 * Program the magic registers ..
1937c478bd9Sstevel@tonic-gate 		 */
194ae115bc7Smrj 		wrmsr(MSR_AMD_STAR,
195ae115bc7Smrj 		    ((uint64_t)(U32CS_SEL << 16 | KCS_SEL)) << 32);
1960ac7d7d8Skucharsk 		wrmsr(MSR_AMD_LSTAR, (uint64_t)(uintptr_t)sys_syscall);
1970ac7d7d8Skucharsk 		wrmsr(MSR_AMD_CSTAR, (uint64_t)(uintptr_t)sys_syscall32);
1987c478bd9Sstevel@tonic-gate 
1997c478bd9Sstevel@tonic-gate 		/*
2007c478bd9Sstevel@tonic-gate 		 * This list of flags is masked off the incoming
2017c478bd9Sstevel@tonic-gate 		 * %rfl when we enter the kernel.
2027c478bd9Sstevel@tonic-gate 		 */
2033ce2fcdcSRobert Mustacchi 		flags = PS_IE | PS_T;
2043ce2fcdcSRobert Mustacchi 		if (is_x86_feature(x86_featureset, X86FSET_SMAP) == B_TRUE)
2053ce2fcdcSRobert Mustacchi 			flags |= PS_ACHK;
2063ce2fcdcSRobert Mustacchi 		wrmsr(MSR_AMD_SFMASK, flags);
2077c478bd9Sstevel@tonic-gate 	}
2087c478bd9Sstevel@tonic-gate #endif
2097c478bd9Sstevel@tonic-gate 
2107c478bd9Sstevel@tonic-gate 	/*
2117c478bd9Sstevel@tonic-gate 	 * On 32-bit kernels, we use sysenter/sysexit because it's too
2127c478bd9Sstevel@tonic-gate 	 * hard to use syscall/sysret, and it is more portable anyway.
2137c478bd9Sstevel@tonic-gate 	 *
2147c478bd9Sstevel@tonic-gate 	 * On 64-bit kernels on Nocona machines, the 32-bit syscall
2157c478bd9Sstevel@tonic-gate 	 * variant isn't available to 32-bit applications, but sysenter is.
2167c478bd9Sstevel@tonic-gate 	 */
2177417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
2187417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_SEP)) {
2197c478bd9Sstevel@tonic-gate 
2207c478bd9Sstevel@tonic-gate #if !defined(__lint)
2217c478bd9Sstevel@tonic-gate 		/*
2227c478bd9Sstevel@tonic-gate 		 * The sysenter instruction imposes a certain ordering on
2237c478bd9Sstevel@tonic-gate 		 * segment selectors, so we double-check that ordering
2247c478bd9Sstevel@tonic-gate 		 * here. See "sysenter" in Intel document 245471-012, "IA-32
2257c478bd9Sstevel@tonic-gate 		 * Intel Architecture Software Developer's Manual Volume 2:
2267c478bd9Sstevel@tonic-gate 		 * Instruction Set Reference"
2277c478bd9Sstevel@tonic-gate 		 */
2287c478bd9Sstevel@tonic-gate 		ASSERT(KDS_SEL == KCS_SEL + 8);
2297c478bd9Sstevel@tonic-gate 
2307c478bd9Sstevel@tonic-gate 		ASSERT32(UCS_SEL == ((KCS_SEL + 16) | 3));
2317c478bd9Sstevel@tonic-gate 		ASSERT32(UDS_SEL == UCS_SEL + 8);
2327c478bd9Sstevel@tonic-gate 
2337c478bd9Sstevel@tonic-gate 		ASSERT64(U32CS_SEL == ((KCS_SEL + 16) | 3));
2347c478bd9Sstevel@tonic-gate 		ASSERT64(UDS_SEL == U32CS_SEL + 8);
2357c478bd9Sstevel@tonic-gate #endif
2367c478bd9Sstevel@tonic-gate 
2377c478bd9Sstevel@tonic-gate 		cpu_sep_enable();
2387c478bd9Sstevel@tonic-gate 
2397c478bd9Sstevel@tonic-gate 		/*
2407c478bd9Sstevel@tonic-gate 		 * resume() sets this value to the base of the threads stack
2417c478bd9Sstevel@tonic-gate 		 * via a context handler.
2427c478bd9Sstevel@tonic-gate 		 */
243ae115bc7Smrj 		wrmsr(MSR_INTC_SEP_ESP, 0);
2440ac7d7d8Skucharsk 		wrmsr(MSR_INTC_SEP_EIP, (uint64_t)(uintptr_t)sys_sysenter);
2457c478bd9Sstevel@tonic-gate 	}
2467c478bd9Sstevel@tonic-gate 
2477c478bd9Sstevel@tonic-gate 	kpreempt_enable();
2487c478bd9Sstevel@tonic-gate }
2497c478bd9Sstevel@tonic-gate 
250*2428aad8SPatrick Mooney #if !defined(__xpv)
251*2428aad8SPatrick Mooney /*
252*2428aad8SPatrick Mooney  * Configure per-cpu ID GDT
253*2428aad8SPatrick Mooney  */
254*2428aad8SPatrick Mooney static void
255*2428aad8SPatrick Mooney init_cpu_id_gdt(struct cpu *cp)
256*2428aad8SPatrick Mooney {
257*2428aad8SPatrick Mooney 	/* Write cpu_id into limit field of GDT for usermode retrieval */
258*2428aad8SPatrick Mooney #if defined(__amd64)
259*2428aad8SPatrick Mooney 	set_usegd(&cp->cpu_gdt[GDT_CPUID], SDP_SHORT, NULL, cp->cpu_id,
260*2428aad8SPatrick Mooney 	    SDT_MEMRODA, SEL_UPL, SDP_BYTES, SDP_OP32);
261*2428aad8SPatrick Mooney #elif defined(__i386)
262*2428aad8SPatrick Mooney 	set_usegd(&cp->cpu_gdt[GDT_CPUID], NULL, cp->cpu_id, SDT_MEMRODA,
263*2428aad8SPatrick Mooney 	    SEL_UPL, SDP_BYTES, SDP_OP32);
264*2428aad8SPatrick Mooney #endif
265*2428aad8SPatrick Mooney }
266*2428aad8SPatrick Mooney #endif /* !defined(__xpv) */
267*2428aad8SPatrick Mooney 
2687c478bd9Sstevel@tonic-gate /*
2697c478bd9Sstevel@tonic-gate  * Multiprocessor initialization.
2707c478bd9Sstevel@tonic-gate  *
2717c478bd9Sstevel@tonic-gate  * Allocate and initialize the cpu structure, TRAPTRACE buffer, and the
2727c478bd9Sstevel@tonic-gate  * startup and idle threads for the specified CPU.
273a3114836SGerry Liu  * Parameter boot is true for boot time operations and is false for CPU
274a3114836SGerry Liu  * DR operations.
2757c478bd9Sstevel@tonic-gate  */
276a3114836SGerry Liu static struct cpu *
277a3114836SGerry Liu mp_cpu_configure_common(int cpun, boolean_t boot)
2787c478bd9Sstevel@tonic-gate {
2797c478bd9Sstevel@tonic-gate 	struct cpu *cp;
2807c478bd9Sstevel@tonic-gate 	kthread_id_t tp;
2817c478bd9Sstevel@tonic-gate 	caddr_t	sp;
2827c478bd9Sstevel@tonic-gate 	proc_t *procp;
283843e1988Sjohnlev #if !defined(__xpv)
2845b8a6efeSbholler 	extern int idle_cpu_prefer_mwait;
2850e751525SEric Saxe 	extern void cpu_idle_mwait();
286843e1988Sjohnlev #endif
2877c478bd9Sstevel@tonic-gate 	extern void idle();
2880e751525SEric Saxe 	extern void cpu_idle();
2897c478bd9Sstevel@tonic-gate 
2907c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE
2917c478bd9Sstevel@tonic-gate 	trap_trace_ctl_t *ttc = &trap_trace_ctl[cpun];
2927c478bd9Sstevel@tonic-gate #endif
2937c478bd9Sstevel@tonic-gate 
294a3114836SGerry Liu 	ASSERT(MUTEX_HELD(&cpu_lock));
2957c478bd9Sstevel@tonic-gate 	ASSERT(cpun < NCPU && cpu[cpun] == NULL);
2967c478bd9Sstevel@tonic-gate 
297a3114836SGerry Liu 	if (cpu_free_list == NULL) {
298a3114836SGerry Liu 		cp = kmem_zalloc(sizeof (*cp), KM_SLEEP);
299a3114836SGerry Liu 	} else {
300a3114836SGerry Liu 		cp = cpu_free_list;
301a3114836SGerry Liu 		cpu_free_list = cp->cpu_next_free;
302a3114836SGerry Liu 	}
303f98fbcecSbholler 
3043006ae82SFrank Van Der Linden 	cp->cpu_m.mcpu_istamp = cpun << 16;
3053006ae82SFrank Van Der Linden 
306a3114836SGerry Liu 	/* Create per CPU specific threads in the process p0. */
307a3114836SGerry Liu 	procp = &p0;
3087c478bd9Sstevel@tonic-gate 
3097c478bd9Sstevel@tonic-gate 	/*
3107c478bd9Sstevel@tonic-gate 	 * Initialize the dispatcher first.
3117c478bd9Sstevel@tonic-gate 	 */
3127c478bd9Sstevel@tonic-gate 	disp_cpu_init(cp);
3137c478bd9Sstevel@tonic-gate 
314affbd3ccSkchow 	cpu_vm_data_init(cp);
315affbd3ccSkchow 
3167c478bd9Sstevel@tonic-gate 	/*
3177c478bd9Sstevel@tonic-gate 	 * Allocate and initialize the startup thread for this CPU.
3187c478bd9Sstevel@tonic-gate 	 * Interrupt and process switch stacks get allocated later
3197c478bd9Sstevel@tonic-gate 	 * when the CPU starts running.
3207c478bd9Sstevel@tonic-gate 	 */
3217c478bd9Sstevel@tonic-gate 	tp = thread_create(NULL, 0, NULL, NULL, 0, procp,
3227c478bd9Sstevel@tonic-gate 	    TS_STOPPED, maxclsyspri);
3237c478bd9Sstevel@tonic-gate 
3247c478bd9Sstevel@tonic-gate 	/*
3257c478bd9Sstevel@tonic-gate 	 * Set state to TS_ONPROC since this thread will start running
3267c478bd9Sstevel@tonic-gate 	 * as soon as the CPU comes online.
3277c478bd9Sstevel@tonic-gate 	 *
3287c478bd9Sstevel@tonic-gate 	 * All the other fields of the thread structure are setup by
3297c478bd9Sstevel@tonic-gate 	 * thread_create().
3307c478bd9Sstevel@tonic-gate 	 */
3317c478bd9Sstevel@tonic-gate 	THREAD_ONPROC(tp, cp);
3327c478bd9Sstevel@tonic-gate 	tp->t_preempt = 1;
3337c478bd9Sstevel@tonic-gate 	tp->t_bound_cpu = cp;
3347c478bd9Sstevel@tonic-gate 	tp->t_affinitycnt = 1;
3357c478bd9Sstevel@tonic-gate 	tp->t_cpu = cp;
3367c478bd9Sstevel@tonic-gate 	tp->t_disp_queue = cp->cpu_disp;
3377c478bd9Sstevel@tonic-gate 
3387c478bd9Sstevel@tonic-gate 	/*
339a3114836SGerry Liu 	 * Setup thread to start in mp_startup_common.
3407c478bd9Sstevel@tonic-gate 	 */
3417c478bd9Sstevel@tonic-gate 	sp = tp->t_stk;
3427c478bd9Sstevel@tonic-gate 	tp->t_sp = (uintptr_t)(sp - MINFRAME);
343ae115bc7Smrj #if defined(__amd64)
344ae115bc7Smrj 	tp->t_sp -= STACK_ENTRY_ALIGN;		/* fake a call */
345ae115bc7Smrj #endif
346a3114836SGerry Liu 	/*
347a3114836SGerry Liu 	 * Setup thread start entry point for boot or hotplug.
348a3114836SGerry Liu 	 */
349a3114836SGerry Liu 	if (boot) {
350a3114836SGerry Liu 		tp->t_pc = (uintptr_t)mp_startup_boot;
351a3114836SGerry Liu 	} else {
352a3114836SGerry Liu 		tp->t_pc = (uintptr_t)mp_startup_hotplug;
353a3114836SGerry Liu 	}
3547c478bd9Sstevel@tonic-gate 
3557c478bd9Sstevel@tonic-gate 	cp->cpu_id = cpun;
3567c478bd9Sstevel@tonic-gate 	cp->cpu_self = cp;
3577c478bd9Sstevel@tonic-gate 	cp->cpu_thread = tp;
3587c478bd9Sstevel@tonic-gate 	cp->cpu_lwp = NULL;
3597c478bd9Sstevel@tonic-gate 	cp->cpu_dispthread = tp;
3607c478bd9Sstevel@tonic-gate 	cp->cpu_dispatch_pri = DISP_PRIO(tp);
3617c478bd9Sstevel@tonic-gate 
362da43ceabSsethg 	/*
363da43ceabSsethg 	 * cpu_base_spl must be set explicitly here to prevent any blocking
364a3114836SGerry Liu 	 * operations in mp_startup_common from causing the spl of the cpu
365a3114836SGerry Liu 	 * to drop to 0 (allowing device interrupts before we're ready) in
366a3114836SGerry Liu 	 * resume().
367da43ceabSsethg 	 * cpu_base_spl MUST remain at LOCK_LEVEL until the cpu is CPU_READY.
368da43ceabSsethg 	 * As an extra bit of security on DEBUG kernels, this is enforced with
369a3114836SGerry Liu 	 * an assertion in mp_startup_common() -- before cpu_base_spl is set
370a3114836SGerry Liu 	 * to its proper value.
371da43ceabSsethg 	 */
372da43ceabSsethg 	cp->cpu_base_spl = ipltospl(LOCK_LEVEL);
373da43ceabSsethg 
3747c478bd9Sstevel@tonic-gate 	/*
3757c478bd9Sstevel@tonic-gate 	 * Now, initialize per-CPU idle thread for this CPU.
3767c478bd9Sstevel@tonic-gate 	 */
3777c478bd9Sstevel@tonic-gate 	tp = thread_create(NULL, PAGESIZE, idle, NULL, 0, procp, TS_ONPROC, -1);
3787c478bd9Sstevel@tonic-gate 
3797c478bd9Sstevel@tonic-gate 	cp->cpu_idle_thread = tp;
3807c478bd9Sstevel@tonic-gate 
3817c478bd9Sstevel@tonic-gate 	tp->t_preempt = 1;
3827c478bd9Sstevel@tonic-gate 	tp->t_bound_cpu = cp;
3837c478bd9Sstevel@tonic-gate 	tp->t_affinitycnt = 1;
3847c478bd9Sstevel@tonic-gate 	tp->t_cpu = cp;
3857c478bd9Sstevel@tonic-gate 	tp->t_disp_queue = cp->cpu_disp;
3867c478bd9Sstevel@tonic-gate 
387394b433dSesaxe 	/*
388fb2f18f8Sesaxe 	 * Bootstrap the CPU's PG data
389394b433dSesaxe 	 */
390fb2f18f8Sesaxe 	pg_cpu_bootstrap(cp);
391394b433dSesaxe 
3927c478bd9Sstevel@tonic-gate 	/*
393ae115bc7Smrj 	 * Perform CPC initialization on the new CPU.
3947c478bd9Sstevel@tonic-gate 	 */
3957c478bd9Sstevel@tonic-gate 	kcpc_hw_init(cp);
3967c478bd9Sstevel@tonic-gate 
3977c478bd9Sstevel@tonic-gate 	/*
3987c478bd9Sstevel@tonic-gate 	 * Allocate virtual addresses for cpu_caddr1 and cpu_caddr2
3997c478bd9Sstevel@tonic-gate 	 * for each CPU.
4007c478bd9Sstevel@tonic-gate 	 */
4017c478bd9Sstevel@tonic-gate 	setup_vaddr_for_ppcopy(cp);
4027c478bd9Sstevel@tonic-gate 
4037c478bd9Sstevel@tonic-gate 	/*
404ae115bc7Smrj 	 * Allocate page for new GDT and initialize from current GDT.
4057c478bd9Sstevel@tonic-gate 	 */
406ae115bc7Smrj #if !defined(__lint)
407ae115bc7Smrj 	ASSERT((sizeof (*cp->cpu_gdt) * NGDT) <= PAGESIZE);
408ae115bc7Smrj #endif
4090cfdb603Sjosephb 	cp->cpu_gdt = kmem_zalloc(PAGESIZE, KM_SLEEP);
4100cfdb603Sjosephb 	bcopy(CPU->cpu_gdt, cp->cpu_gdt, (sizeof (*cp->cpu_gdt) * NGDT));
4117c478bd9Sstevel@tonic-gate 
412ae115bc7Smrj #if defined(__i386)
4137c478bd9Sstevel@tonic-gate 	/*
4147c478bd9Sstevel@tonic-gate 	 * setup kernel %gs.
4157c478bd9Sstevel@tonic-gate 	 */
4167c478bd9Sstevel@tonic-gate 	set_usegd(&cp->cpu_gdt[GDT_GS], cp, sizeof (struct cpu) -1, SDT_MEMRWA,
4177c478bd9Sstevel@tonic-gate 	    SEL_KPL, 0, 1);
418ae115bc7Smrj #endif
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate 	/*
4217c478bd9Sstevel@tonic-gate 	 * If we have more than one node, each cpu gets a copy of IDT
4227c478bd9Sstevel@tonic-gate 	 * local to its node. If this is a Pentium box, we use cpu 0's
4237c478bd9Sstevel@tonic-gate 	 * IDT. cpu 0's IDT has been made read-only to workaround the
4247c478bd9Sstevel@tonic-gate 	 * cmpxchgl register bug
4257c478bd9Sstevel@tonic-gate 	 */
4267c478bd9Sstevel@tonic-gate 	if (system_hardware.hd_nodes && x86_type != X86_TYPE_P5) {
4270cfdb603Sjosephb #if !defined(__lint)
4280cfdb603Sjosephb 		ASSERT((sizeof (*CPU->cpu_idt) * NIDT) <= PAGESIZE);
4290cfdb603Sjosephb #endif
4300cfdb603Sjosephb 		cp->cpu_idt = kmem_zalloc(PAGESIZE, KM_SLEEP);
4310cfdb603Sjosephb 		bcopy(CPU->cpu_idt, cp->cpu_idt, PAGESIZE);
432ae115bc7Smrj 	} else {
4330cfdb603Sjosephb 		cp->cpu_idt = CPU->cpu_idt;
4347c478bd9Sstevel@tonic-gate 	}
4357c478bd9Sstevel@tonic-gate 
4367c478bd9Sstevel@tonic-gate 	/*
437ae115bc7Smrj 	 * alloc space for cpuid info
4387c478bd9Sstevel@tonic-gate 	 */
439ae115bc7Smrj 	cpuid_alloc_space(cp);
440a3114836SGerry Liu #if !defined(__xpv)
4417417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MWAIT) &&
4427417cfdeSKuriakose Kuruvilla 	    idle_cpu_prefer_mwait) {
443a3114836SGerry Liu 		cp->cpu_m.mcpu_mwait = cpuid_mwait_alloc(cp);
444a3114836SGerry Liu 		cp->cpu_m.mcpu_idle_cpu = cpu_idle_mwait;
445a3114836SGerry Liu 	} else
446a3114836SGerry Liu #endif
447a3114836SGerry Liu 		cp->cpu_m.mcpu_idle_cpu = cpu_idle;
448a3114836SGerry Liu 
449a3114836SGerry Liu 	init_cpu_info(cp);
4507c478bd9Sstevel@tonic-gate 
451*2428aad8SPatrick Mooney #if !defined(__xpv)
452*2428aad8SPatrick Mooney 	init_cpu_id_gdt(cp);
453*2428aad8SPatrick Mooney #endif
454*2428aad8SPatrick Mooney 
4552449e17fSsherrym 	/*
4562449e17fSsherrym 	 * alloc space for ucode_info
4572449e17fSsherrym 	 */
4582449e17fSsherrym 	ucode_alloc_space(cp);
459f34a7178SJoe Bonasera 	xc_init_cpu(cp);
460ae115bc7Smrj 	hat_cpu_online(cp);
4617c478bd9Sstevel@tonic-gate 
4627c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE
4637c478bd9Sstevel@tonic-gate 	/*
464ae115bc7Smrj 	 * If this is a TRAPTRACE kernel, allocate TRAPTRACE buffers
4657c478bd9Sstevel@tonic-gate 	 */
4667c478bd9Sstevel@tonic-gate 	ttc->ttc_first = (uintptr_t)kmem_zalloc(trap_trace_bufsize, KM_SLEEP);
4677c478bd9Sstevel@tonic-gate 	ttc->ttc_next = ttc->ttc_first;
4687c478bd9Sstevel@tonic-gate 	ttc->ttc_limit = ttc->ttc_first + trap_trace_bufsize;
4697c478bd9Sstevel@tonic-gate #endif
470a3114836SGerry Liu 
4717c478bd9Sstevel@tonic-gate 	/*
4727c478bd9Sstevel@tonic-gate 	 * Record that we have another CPU.
4737c478bd9Sstevel@tonic-gate 	 */
4747c478bd9Sstevel@tonic-gate 	/*
4757c478bd9Sstevel@tonic-gate 	 * Initialize the interrupt threads for this CPU
4767c478bd9Sstevel@tonic-gate 	 */
477100b72f4Sandrei 	cpu_intr_alloc(cp, NINTR_THREADS);
478a3114836SGerry Liu 
479a3114836SGerry Liu 	cp->cpu_flags = CPU_OFFLINE | CPU_QUIESCED | CPU_POWEROFF;
480a3114836SGerry Liu 	cpu_set_state(cp);
481a3114836SGerry Liu 
4827c478bd9Sstevel@tonic-gate 	/*
4837c478bd9Sstevel@tonic-gate 	 * Add CPU to list of available CPUs.  It'll be on the active list
484a3114836SGerry Liu 	 * after mp_startup_common().
4857c478bd9Sstevel@tonic-gate 	 */
4867c478bd9Sstevel@tonic-gate 	cpu_add_unit(cp);
487ae115bc7Smrj 
488ae115bc7Smrj 	return (cp);
489ae115bc7Smrj }
490ae115bc7Smrj 
491ae115bc7Smrj /*
492a3114836SGerry Liu  * Undo what was done in mp_cpu_configure_common
493ae115bc7Smrj  */
494ae115bc7Smrj static void
495a3114836SGerry Liu mp_cpu_unconfigure_common(struct cpu *cp, int error)
496ae115bc7Smrj {
497a3114836SGerry Liu 	ASSERT(MUTEX_HELD(&cpu_lock));
498ae115bc7Smrj 
499ae115bc7Smrj 	/*
500ae115bc7Smrj 	 * Remove the CPU from the list of available CPUs.
501ae115bc7Smrj 	 */
502ae115bc7Smrj 	cpu_del_unit(cp->cpu_id);
503ae115bc7Smrj 
504ae115bc7Smrj 	if (error == ETIMEDOUT) {
505ae115bc7Smrj 		/*
506ae115bc7Smrj 		 * The cpu was started, but never *seemed* to run any
507ae115bc7Smrj 		 * code in the kernel; it's probably off spinning in its
508ae115bc7Smrj 		 * own private world, though with potential references to
509ae115bc7Smrj 		 * our kmem-allocated IDTs and GDTs (for example).
510ae115bc7Smrj 		 *
511ae115bc7Smrj 		 * Worse still, it may actually wake up some time later,
512ae115bc7Smrj 		 * so rather than guess what it might or might not do, we
513ae115bc7Smrj 		 * leave the fundamental data structures intact.
514ae115bc7Smrj 		 */
515ae115bc7Smrj 		cp->cpu_flags = 0;
516ae115bc7Smrj 		return;
517ae115bc7Smrj 	}
518ae115bc7Smrj 
519ae115bc7Smrj 	/*
520ae115bc7Smrj 	 * At this point, the only threads bound to this CPU should
521ae115bc7Smrj 	 * special per-cpu threads: it's idle thread, it's pause threads,
522ae115bc7Smrj 	 * and it's interrupt threads.  Clean these up.
523ae115bc7Smrj 	 */
524ae115bc7Smrj 	cpu_destroy_bound_threads(cp);
525ae115bc7Smrj 	cp->cpu_idle_thread = NULL;
526ae115bc7Smrj 
527ae115bc7Smrj 	/*
528ae115bc7Smrj 	 * Free the interrupt stack.
529ae115bc7Smrj 	 */
530ae115bc7Smrj 	segkp_release(segkp,
531ae115bc7Smrj 	    cp->cpu_intr_stack - (INTR_STACK_SIZE - SA(MINFRAME)));
532a3114836SGerry Liu 	cp->cpu_intr_stack = NULL;
533ae115bc7Smrj 
534ae115bc7Smrj #ifdef TRAPTRACE
535ae115bc7Smrj 	/*
536ae115bc7Smrj 	 * Discard the trap trace buffer
537ae115bc7Smrj 	 */
538ae115bc7Smrj 	{
539ae115bc7Smrj 		trap_trace_ctl_t *ttc = &trap_trace_ctl[cp->cpu_id];
540ae115bc7Smrj 
541ae115bc7Smrj 		kmem_free((void *)ttc->ttc_first, trap_trace_bufsize);
542ae115bc7Smrj 		ttc->ttc_first = NULL;
543ae115bc7Smrj 	}
544ae115bc7Smrj #endif
545ae115bc7Smrj 
546ae115bc7Smrj 	hat_cpu_offline(cp);
547ae115bc7Smrj 
5482449e17fSsherrym 	ucode_free_space(cp);
5492449e17fSsherrym 
550a3114836SGerry Liu 	/* Free CPU ID string and brand string. */
551a3114836SGerry Liu 	if (cp->cpu_idstr) {
552a3114836SGerry Liu 		kmem_free(cp->cpu_idstr, CPU_IDSTRLEN);
553a3114836SGerry Liu 		cp->cpu_idstr = NULL;
554a3114836SGerry Liu 	}
555a3114836SGerry Liu 	if (cp->cpu_brandstr) {
556a3114836SGerry Liu 		kmem_free(cp->cpu_brandstr, CPU_IDSTRLEN);
557a3114836SGerry Liu 		cp->cpu_brandstr = NULL;
558a3114836SGerry Liu 	}
559a3114836SGerry Liu 
560a3114836SGerry Liu #if !defined(__xpv)
561a3114836SGerry Liu 	if (cp->cpu_m.mcpu_mwait != NULL) {
562a3114836SGerry Liu 		cpuid_mwait_free(cp);
563a3114836SGerry Liu 		cp->cpu_m.mcpu_mwait = NULL;
564a3114836SGerry Liu 	}
565a3114836SGerry Liu #endif
566a3114836SGerry Liu 	cpuid_free_space(cp);
567a3114836SGerry Liu 
5680cfdb603Sjosephb 	if (cp->cpu_idt != CPU->cpu_idt)
5690cfdb603Sjosephb 		kmem_free(cp->cpu_idt, PAGESIZE);
5700cfdb603Sjosephb 	cp->cpu_idt = NULL;
571ae115bc7Smrj 
5720cfdb603Sjosephb 	kmem_free(cp->cpu_gdt, PAGESIZE);
5730cfdb603Sjosephb 	cp->cpu_gdt = NULL;
574ae115bc7Smrj 
575a3114836SGerry Liu 	if (cp->cpu_supp_freqs != NULL) {
576a3114836SGerry Liu 		size_t len = strlen(cp->cpu_supp_freqs) + 1;
577a3114836SGerry Liu 		kmem_free(cp->cpu_supp_freqs, len);
578a3114836SGerry Liu 		cp->cpu_supp_freqs = NULL;
579a3114836SGerry Liu 	}
580a3114836SGerry Liu 
581ae115bc7Smrj 	teardown_vaddr_for_ppcopy(cp);
582ae115bc7Smrj 
583ae115bc7Smrj 	kcpc_hw_fini(cp);
584ae115bc7Smrj 
585ae115bc7Smrj 	cp->cpu_dispthread = NULL;
586ae115bc7Smrj 	cp->cpu_thread = NULL;	/* discarded by cpu_destroy_bound_threads() */
587ae115bc7Smrj 
588ae115bc7Smrj 	cpu_vm_data_destroy(cp);
589ae115bc7Smrj 
590a3114836SGerry Liu 	xc_fini_cpu(cp);
591ae115bc7Smrj 	disp_cpu_fini(cp);
592ae115bc7Smrj 
593a3114836SGerry Liu 	ASSERT(cp != CPU0);
594a3114836SGerry Liu 	bzero(cp, sizeof (*cp));
595a3114836SGerry Liu 	cp->cpu_next_free = cpu_free_list;
596a3114836SGerry Liu 	cpu_free_list = cp;
5977c478bd9Sstevel@tonic-gate }
5987c478bd9Sstevel@tonic-gate 
5997c478bd9Sstevel@tonic-gate /*
6007c478bd9Sstevel@tonic-gate  * Apply workarounds for known errata, and warn about those that are absent.
6017c478bd9Sstevel@tonic-gate  *
6027c478bd9Sstevel@tonic-gate  * System vendors occasionally create configurations which contain different
6037c478bd9Sstevel@tonic-gate  * revisions of the CPUs that are almost but not exactly the same.  At the
6047c478bd9Sstevel@tonic-gate  * time of writing, this meant that their clock rates were the same, their
6057c478bd9Sstevel@tonic-gate  * feature sets were the same, but the required workaround were -not-
6067c478bd9Sstevel@tonic-gate  * necessarily the same.  So, this routine is invoked on -every- CPU soon
6077c478bd9Sstevel@tonic-gate  * after starting to make sure that the resulting system contains the most
6087c478bd9Sstevel@tonic-gate  * pessimal set of workarounds needed to cope with *any* of the CPUs in the
6097c478bd9Sstevel@tonic-gate  * system.
6107c478bd9Sstevel@tonic-gate  *
611ef50d8c0Sesaxe  * workaround_errata is invoked early in mlsetup() for CPU 0, and in
612a3114836SGerry Liu  * mp_startup_common() for all slave CPUs. Slaves process workaround_errata
613a3114836SGerry Liu  * prior to acknowledging their readiness to the master, so this routine will
614ef50d8c0Sesaxe  * never be executed by multiple CPUs in parallel, thus making updates to
615ef50d8c0Sesaxe  * global data safe.
616ef50d8c0Sesaxe  *
6172201b277Skucharsk  * These workarounds are based on Rev 3.57 of the Revision Guide for
6182201b277Skucharsk  * AMD Athlon(tm) 64 and AMD Opteron(tm) Processors, August 2005.
6197c478bd9Sstevel@tonic-gate  */
6207c478bd9Sstevel@tonic-gate 
621ae115bc7Smrj #if defined(OPTERON_ERRATUM_88)
622ae115bc7Smrj int opteron_erratum_88;		/* if non-zero -> at least one cpu has it */
623ae115bc7Smrj #endif
624ae115bc7Smrj 
6257c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_91)
6267c478bd9Sstevel@tonic-gate int opteron_erratum_91;		/* if non-zero -> at least one cpu has it */
6277c478bd9Sstevel@tonic-gate #endif
6287c478bd9Sstevel@tonic-gate 
6297c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_93)
6307c478bd9Sstevel@tonic-gate int opteron_erratum_93;		/* if non-zero -> at least one cpu has it */
6317c478bd9Sstevel@tonic-gate #endif
6327c478bd9Sstevel@tonic-gate 
633ae115bc7Smrj #if defined(OPTERON_ERRATUM_95)
634ae115bc7Smrj int opteron_erratum_95;		/* if non-zero -> at least one cpu has it */
635ae115bc7Smrj #endif
636ae115bc7Smrj 
6377c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_100)
6387c478bd9Sstevel@tonic-gate int opteron_erratum_100;	/* if non-zero -> at least one cpu has it */
6397c478bd9Sstevel@tonic-gate #endif
6407c478bd9Sstevel@tonic-gate 
641ae115bc7Smrj #if defined(OPTERON_ERRATUM_108)
642ae115bc7Smrj int opteron_erratum_108;	/* if non-zero -> at least one cpu has it */
643ae115bc7Smrj #endif
644ae115bc7Smrj 
6457c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_109)
6467c478bd9Sstevel@tonic-gate int opteron_erratum_109;	/* if non-zero -> at least one cpu has it */
6477c478bd9Sstevel@tonic-gate #endif
6487c478bd9Sstevel@tonic-gate 
6497c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_121)
6507c478bd9Sstevel@tonic-gate int opteron_erratum_121;	/* if non-zero -> at least one cpu has it */
6517c478bd9Sstevel@tonic-gate #endif
6527c478bd9Sstevel@tonic-gate 
6537c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_122)
6547c478bd9Sstevel@tonic-gate int opteron_erratum_122;	/* if non-zero -> at least one cpu has it */
6557c478bd9Sstevel@tonic-gate #endif
6567c478bd9Sstevel@tonic-gate 
6577c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_123)
6587c478bd9Sstevel@tonic-gate int opteron_erratum_123;	/* if non-zero -> at least one cpu has it */
6597c478bd9Sstevel@tonic-gate #endif
6607c478bd9Sstevel@tonic-gate 
6612201b277Skucharsk #if defined(OPTERON_ERRATUM_131)
6622201b277Skucharsk int opteron_erratum_131;	/* if non-zero -> at least one cpu has it */
6632201b277Skucharsk #endif
6647c478bd9Sstevel@tonic-gate 
665ef50d8c0Sesaxe #if defined(OPTERON_WORKAROUND_6336786)
666ef50d8c0Sesaxe int opteron_workaround_6336786;	/* non-zero -> WA relevant and applied */
667ef50d8c0Sesaxe int opteron_workaround_6336786_UP = 0;	/* Not needed for UP */
668ef50d8c0Sesaxe #endif
669ef50d8c0Sesaxe 
670ee88d2b9Skchow #if defined(OPTERON_WORKAROUND_6323525)
671ee88d2b9Skchow int opteron_workaround_6323525;	/* if non-zero -> at least one cpu has it */
672ee88d2b9Skchow #endif
673ee88d2b9Skchow 
674512cf780Skchow #if defined(OPTERON_ERRATUM_298)
675512cf780Skchow int opteron_erratum_298;
676512cf780Skchow #endif
677512cf780Skchow 
6785e54b56dSHans Rosenfeld #if defined(OPTERON_ERRATUM_721)
6795e54b56dSHans Rosenfeld int opteron_erratum_721;
6805e54b56dSHans Rosenfeld #endif
6815e54b56dSHans Rosenfeld 
682ae115bc7Smrj static void
683ae115bc7Smrj workaround_warning(cpu_t *cp, uint_t erratum)
684ae115bc7Smrj {
685ae115bc7Smrj 	cmn_err(CE_WARN, "cpu%d: no workaround for erratum %u",
686ae115bc7Smrj 	    cp->cpu_id, erratum);
687ae115bc7Smrj }
688ae115bc7Smrj 
689ae115bc7Smrj static void
690ae115bc7Smrj workaround_applied(uint_t erratum)
691ae115bc7Smrj {
692ae115bc7Smrj 	if (erratum > 1000000)
693ae115bc7Smrj 		cmn_err(CE_CONT, "?workaround applied for cpu issue #%d\n",
694ae115bc7Smrj 		    erratum);
695ae115bc7Smrj 	else
696ae115bc7Smrj 		cmn_err(CE_CONT, "?workaround applied for cpu erratum #%d\n",
697ae115bc7Smrj 		    erratum);
698ae115bc7Smrj }
699ae115bc7Smrj 
700ae115bc7Smrj static void
701ae115bc7Smrj msr_warning(cpu_t *cp, const char *rw, uint_t msr, int error)
702ae115bc7Smrj {
703ae115bc7Smrj 	cmn_err(CE_WARN, "cpu%d: couldn't %smsr 0x%x, error %d",
704ae115bc7Smrj 	    cp->cpu_id, rw, msr, error);
705ae115bc7Smrj }
7067c478bd9Sstevel@tonic-gate 
70792564cb1Sesaxe /*
708d2aeaf66SEric Saxe  * Determine the number of nodes in a Hammer / Greyhound / Griffin family
709d2aeaf66SEric Saxe  * system.
71092564cb1Sesaxe  */
71192564cb1Sesaxe static uint_t
71292564cb1Sesaxe opteron_get_nnodes(void)
71392564cb1Sesaxe {
71492564cb1Sesaxe 	static uint_t nnodes = 0;
71592564cb1Sesaxe 
716d2aeaf66SEric Saxe 	if (nnodes == 0) {
71792564cb1Sesaxe #ifdef	DEBUG
718d2aeaf66SEric Saxe 		uint_t family;
71992564cb1Sesaxe 
720d2aeaf66SEric Saxe 		/*
721d2aeaf66SEric Saxe 		 * This routine uses a PCI config space based mechanism
722d2aeaf66SEric Saxe 		 * for retrieving the number of nodes in the system.
723d2aeaf66SEric Saxe 		 * Device 24, function 0, offset 0x60 as used here is not
724d2aeaf66SEric Saxe 		 * AMD processor architectural, and may not work on processor
725d2aeaf66SEric Saxe 		 * families other than those listed below.
726d2aeaf66SEric Saxe 		 *
727d2aeaf66SEric Saxe 		 * Callers of this routine must ensure that we're running on
728d2aeaf66SEric Saxe 		 * a processor which supports this mechanism.
729d2aeaf66SEric Saxe 		 * The assertion below is meant to catch calls on unsupported
730d2aeaf66SEric Saxe 		 * processors.
731d2aeaf66SEric Saxe 		 */
732d2aeaf66SEric Saxe 		family = cpuid_getfamily(CPU);
733d2aeaf66SEric Saxe 		ASSERT(family == 0xf || family == 0x10 || family == 0x11);
73492564cb1Sesaxe #endif	/* DEBUG */
73592564cb1Sesaxe 
73692564cb1Sesaxe 		/*
73792564cb1Sesaxe 		 * Obtain the number of nodes in the system from
73892564cb1Sesaxe 		 * bits [6:4] of the Node ID register on node 0.
73992564cb1Sesaxe 		 *
74092564cb1Sesaxe 		 * The actual node count is NodeID[6:4] + 1
74192564cb1Sesaxe 		 *
74292564cb1Sesaxe 		 * The Node ID register is accessed via function 0,
74392564cb1Sesaxe 		 * offset 0x60. Node 0 is device 24.
74492564cb1Sesaxe 		 */
74592564cb1Sesaxe 		nnodes = ((pci_getl_func(0, 24, 0, 0x60) & 0x70) >> 4) + 1;
74692564cb1Sesaxe 	}
74792564cb1Sesaxe 	return (nnodes);
74892564cb1Sesaxe }
74992564cb1Sesaxe 
750512cf780Skchow uint_t
751512cf780Skchow do_erratum_298(struct cpu *cpu)
752512cf780Skchow {
753512cf780Skchow 	static int	osvwrc = -3;
754512cf780Skchow 	extern int	osvw_opteron_erratum(cpu_t *, uint_t);
755512cf780Skchow 
756512cf780Skchow 	/*
757512cf780Skchow 	 * L2 Eviction May Occur During Processor Operation To Set
758512cf780Skchow 	 * Accessed or Dirty Bit.
759512cf780Skchow 	 */
760512cf780Skchow 	if (osvwrc == -3) {
761512cf780Skchow 		osvwrc = osvw_opteron_erratum(cpu, 298);
762512cf780Skchow 	} else {
763512cf780Skchow 		/* osvw return codes should be consistent for all cpus */
764512cf780Skchow 		ASSERT(osvwrc == osvw_opteron_erratum(cpu, 298));
765512cf780Skchow 	}
766512cf780Skchow 
767512cf780Skchow 	switch (osvwrc) {
768512cf780Skchow 	case 0:		/* erratum is not present: do nothing */
769512cf780Skchow 		break;
770512cf780Skchow 	case 1:		/* erratum is present: BIOS workaround applied */
771512cf780Skchow 		/*
772512cf780Skchow 		 * check if workaround is actually in place and issue warning
773512cf780Skchow 		 * if not.
774512cf780Skchow 		 */
775512cf780Skchow 		if (((rdmsr(MSR_AMD_HWCR) & AMD_HWCR_TLBCACHEDIS) == 0) ||
776512cf780Skchow 		    ((rdmsr(MSR_AMD_BU_CFG) & AMD_BU_CFG_E298) == 0)) {
777512cf780Skchow #if defined(OPTERON_ERRATUM_298)
778512cf780Skchow 			opteron_erratum_298++;
779512cf780Skchow #else
780512cf780Skchow 			workaround_warning(cpu, 298);
781512cf780Skchow 			return (1);
782512cf780Skchow #endif
783512cf780Skchow 		}
784512cf780Skchow 		break;
785512cf780Skchow 	case -1:	/* cannot determine via osvw: check cpuid */
786512cf780Skchow 		if ((cpuid_opteron_erratum(cpu, 298) > 0) &&
787512cf780Skchow 		    (((rdmsr(MSR_AMD_HWCR) & AMD_HWCR_TLBCACHEDIS) == 0) ||
788512cf780Skchow 		    ((rdmsr(MSR_AMD_BU_CFG) & AMD_BU_CFG_E298) == 0))) {
789512cf780Skchow #if defined(OPTERON_ERRATUM_298)
790512cf780Skchow 			opteron_erratum_298++;
791512cf780Skchow #else
792512cf780Skchow 			workaround_warning(cpu, 298);
793512cf780Skchow 			return (1);
794512cf780Skchow #endif
795512cf780Skchow 		}
796512cf780Skchow 		break;
797512cf780Skchow 	}
798512cf780Skchow 	return (0);
799512cf780Skchow }
800512cf780Skchow 
8017c478bd9Sstevel@tonic-gate uint_t
8027c478bd9Sstevel@tonic-gate workaround_errata(struct cpu *cpu)
8037c478bd9Sstevel@tonic-gate {
8047c478bd9Sstevel@tonic-gate 	uint_t missing = 0;
8057c478bd9Sstevel@tonic-gate 
8067c478bd9Sstevel@tonic-gate 	ASSERT(cpu == CPU);
8077c478bd9Sstevel@tonic-gate 
8087c478bd9Sstevel@tonic-gate 	/*LINTED*/
8097c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 88) > 0) {
8107c478bd9Sstevel@tonic-gate 		/*
8117c478bd9Sstevel@tonic-gate 		 * SWAPGS May Fail To Read Correct GS Base
8127c478bd9Sstevel@tonic-gate 		 */
8137c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_88)
8147c478bd9Sstevel@tonic-gate 		/*
8157c478bd9Sstevel@tonic-gate 		 * The workaround is an mfence in the relevant assembler code
8167c478bd9Sstevel@tonic-gate 		 */
817ae115bc7Smrj 		opteron_erratum_88++;
8187c478bd9Sstevel@tonic-gate #else
819ae115bc7Smrj 		workaround_warning(cpu, 88);
8207c478bd9Sstevel@tonic-gate 		missing++;
8217c478bd9Sstevel@tonic-gate #endif
8227c478bd9Sstevel@tonic-gate 	}
8237c478bd9Sstevel@tonic-gate 
8247c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 91) > 0) {
8257c478bd9Sstevel@tonic-gate 		/*
8267c478bd9Sstevel@tonic-gate 		 * Software Prefetches May Report A Page Fault
8277c478bd9Sstevel@tonic-gate 		 */
8287c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_91)
8297c478bd9Sstevel@tonic-gate 		/*
8307c478bd9Sstevel@tonic-gate 		 * fix is in trap.c
8317c478bd9Sstevel@tonic-gate 		 */
8327c478bd9Sstevel@tonic-gate 		opteron_erratum_91++;
8337c478bd9Sstevel@tonic-gate #else
834ae115bc7Smrj 		workaround_warning(cpu, 91);
8357c478bd9Sstevel@tonic-gate 		missing++;
8367c478bd9Sstevel@tonic-gate #endif
8377c478bd9Sstevel@tonic-gate 	}
8387c478bd9Sstevel@tonic-gate 
8397c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 93) > 0) {
8407c478bd9Sstevel@tonic-gate 		/*
8417c478bd9Sstevel@tonic-gate 		 * RSM Auto-Halt Restart Returns to Incorrect RIP
8427c478bd9Sstevel@tonic-gate 		 */
8437c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_93)
8447c478bd9Sstevel@tonic-gate 		/*
8457c478bd9Sstevel@tonic-gate 		 * fix is in trap.c
8467c478bd9Sstevel@tonic-gate 		 */
8477c478bd9Sstevel@tonic-gate 		opteron_erratum_93++;
8487c478bd9Sstevel@tonic-gate #else
849ae115bc7Smrj 		workaround_warning(cpu, 93);
8507c478bd9Sstevel@tonic-gate 		missing++;
8517c478bd9Sstevel@tonic-gate #endif
8527c478bd9Sstevel@tonic-gate 	}
8537c478bd9Sstevel@tonic-gate 
8547c478bd9Sstevel@tonic-gate 	/*LINTED*/
8557c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 95) > 0) {
8567c478bd9Sstevel@tonic-gate 		/*
8577c478bd9Sstevel@tonic-gate 		 * RET Instruction May Return to Incorrect EIP
8587c478bd9Sstevel@tonic-gate 		 */
8597c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_95)
8607c478bd9Sstevel@tonic-gate #if defined(_LP64)
8617c478bd9Sstevel@tonic-gate 		/*
8627c478bd9Sstevel@tonic-gate 		 * Workaround this by ensuring that 32-bit user code and
8637c478bd9Sstevel@tonic-gate 		 * 64-bit kernel code never occupy the same address
8647c478bd9Sstevel@tonic-gate 		 * range mod 4G.
8657c478bd9Sstevel@tonic-gate 		 */
8667c478bd9Sstevel@tonic-gate 		if (_userlimit32 > 0xc0000000ul)
8677c478bd9Sstevel@tonic-gate 			*(uintptr_t *)&_userlimit32 = 0xc0000000ul;
8687c478bd9Sstevel@tonic-gate 
8697c478bd9Sstevel@tonic-gate 		/*LINTED*/
8707c478bd9Sstevel@tonic-gate 		ASSERT((uint32_t)COREHEAP_BASE == 0xc0000000u);
871ae115bc7Smrj 		opteron_erratum_95++;
8727c478bd9Sstevel@tonic-gate #endif	/* _LP64 */
8737c478bd9Sstevel@tonic-gate #else
874ae115bc7Smrj 		workaround_warning(cpu, 95);
8757c478bd9Sstevel@tonic-gate 		missing++;
876ae115bc7Smrj #endif
8777c478bd9Sstevel@tonic-gate 	}
8787c478bd9Sstevel@tonic-gate 
8797c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 100) > 0) {
8807c478bd9Sstevel@tonic-gate 		/*
8817c478bd9Sstevel@tonic-gate 		 * Compatibility Mode Branches Transfer to Illegal Address
8827c478bd9Sstevel@tonic-gate 		 */
8837c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_100)
8847c478bd9Sstevel@tonic-gate 		/*
8857c478bd9Sstevel@tonic-gate 		 * fix is in trap.c
8867c478bd9Sstevel@tonic-gate 		 */
8877c478bd9Sstevel@tonic-gate 		opteron_erratum_100++;
8887c478bd9Sstevel@tonic-gate #else
889ae115bc7Smrj 		workaround_warning(cpu, 100);
8907c478bd9Sstevel@tonic-gate 		missing++;
8917c478bd9Sstevel@tonic-gate #endif
8927c478bd9Sstevel@tonic-gate 	}
8937c478bd9Sstevel@tonic-gate 
8947c478bd9Sstevel@tonic-gate 	/*LINTED*/
8957c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 108) > 0) {
8967c478bd9Sstevel@tonic-gate 		/*
8977c478bd9Sstevel@tonic-gate 		 * CPUID Instruction May Return Incorrect Model Number In
8987c478bd9Sstevel@tonic-gate 		 * Some Processors
8997c478bd9Sstevel@tonic-gate 		 */
9007c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_108)
9017c478bd9Sstevel@tonic-gate 		/*
9027c478bd9Sstevel@tonic-gate 		 * (Our cpuid-handling code corrects the model number on
9037c478bd9Sstevel@tonic-gate 		 * those processors)
9047c478bd9Sstevel@tonic-gate 		 */
9057c478bd9Sstevel@tonic-gate #else
906ae115bc7Smrj 		workaround_warning(cpu, 108);
9077c478bd9Sstevel@tonic-gate 		missing++;
9087c478bd9Sstevel@tonic-gate #endif
9097c478bd9Sstevel@tonic-gate 	}
9107c478bd9Sstevel@tonic-gate 
9117c478bd9Sstevel@tonic-gate 	/*LINTED*/
912ae115bc7Smrj 	if (cpuid_opteron_erratum(cpu, 109) > 0) do {
9137c478bd9Sstevel@tonic-gate 		/*
914fb2caebeSRandy Fishel 		 * Certain Reverse REP MOVS May Produce Unpredictable Behavior
9157c478bd9Sstevel@tonic-gate 		 */
9167c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_109)
917ae115bc7Smrj 		/*
918ae115bc7Smrj 		 * The "workaround" is to print a warning to upgrade the BIOS
919ae115bc7Smrj 		 */
920ae115bc7Smrj 		uint64_t value;
921ae115bc7Smrj 		const uint_t msr = MSR_AMD_PATCHLEVEL;
922ae115bc7Smrj 		int err;
923ae115bc7Smrj 
924ae115bc7Smrj 		if ((err = checked_rdmsr(msr, &value)) != 0) {
925ae115bc7Smrj 			msr_warning(cpu, "rd", msr, err);
926ae115bc7Smrj 			workaround_warning(cpu, 109);
927ae115bc7Smrj 			missing++;
928ae115bc7Smrj 		}
929ae115bc7Smrj 		if (value == 0)
9307c478bd9Sstevel@tonic-gate 			opteron_erratum_109++;
9317c478bd9Sstevel@tonic-gate #else
932ae115bc7Smrj 		workaround_warning(cpu, 109);
9337c478bd9Sstevel@tonic-gate 		missing++;
9347c478bd9Sstevel@tonic-gate #endif
935ae115bc7Smrj 	/*CONSTANTCONDITION*/
936ae115bc7Smrj 	} while (0);
937ae115bc7Smrj 
9387c478bd9Sstevel@tonic-gate 	/*LINTED*/
9397c478bd9Sstevel@tonic-gate 	if (cpuid_opteron_erratum(cpu, 121) > 0) {
9407c478bd9Sstevel@tonic-gate 		/*
9417c478bd9Sstevel@tonic-gate 		 * Sequential Execution Across Non_Canonical Boundary Caused
9427c478bd9Sstevel@tonic-gate 		 * Processor Hang
9437c478bd9Sstevel@tonic-gate 		 */
9447c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_121)
945ae115bc7Smrj #if defined(_LP64)
9467c478bd9Sstevel@tonic-gate 		/*
9477c478bd9Sstevel@tonic-gate 		 * Erratum 121 is only present in long (64 bit) mode.
9487c478bd9Sstevel@tonic-gate 		 * Workaround is to include the page immediately before the
9497c478bd9Sstevel@tonic-gate 		 * va hole to eliminate the possibility of system hangs due to
9507c478bd9Sstevel@tonic-gate 		 * sequential execution across the va hole boundary.
9517c478bd9Sstevel@tonic-gate 		 */
952ae115bc7Smrj 		if (opteron_erratum_121)
953ae115bc7Smrj 			opteron_erratum_121++;
954ae115bc7Smrj 		else {
955ae115bc7Smrj 			if (hole_start) {
956ae115bc7Smrj 				hole_start -= PAGESIZE;
957ae115bc7Smrj 			} else {
958ae115bc7Smrj 				/*
959ae115bc7Smrj 				 * hole_start not yet initialized by
960ae115bc7Smrj 				 * mmu_init. Initialize hole_start
961ae115bc7Smrj 				 * with value to be subtracted.
962ae115bc7Smrj 				 */
963ae115bc7Smrj 				hole_start = PAGESIZE;
9647c478bd9Sstevel@tonic-gate 			}
965ae115bc7Smrj 			opteron_erratum_121++;
9667c478bd9Sstevel@tonic-gate 		}
967ae115bc7Smrj #endif	/* _LP64 */
9687c478bd9Sstevel@tonic-gate #else
969ae115bc7Smrj 		workaround_warning(cpu, 121);
9707c478bd9Sstevel@tonic-gate 		missing++;
9717c478bd9Sstevel@tonic-gate #endif
9727c478bd9Sstevel@tonic-gate 	}
9737c478bd9Sstevel@tonic-gate 
9747c478bd9Sstevel@tonic-gate 	/*LINTED*/
975ae115bc7Smrj 	if (cpuid_opteron_erratum(cpu, 122) > 0) do {
9767c478bd9Sstevel@tonic-gate 		/*
977ae115bc7Smrj 		 * TLB Flush Filter May Cause Coherency Problem in
9787c478bd9Sstevel@tonic-gate 		 * Multiprocessor Systems
9797c478bd9Sstevel@tonic-gate 		 */
9807c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_122)
981ae115bc7Smrj 		uint64_t value;
982ae115bc7Smrj 		const uint_t msr = MSR_AMD_HWCR;
983ae115bc7Smrj 		int error;
984ae115bc7Smrj 
9857c478bd9Sstevel@tonic-gate 		/*
9867c478bd9Sstevel@tonic-gate 		 * Erratum 122 is only present in MP configurations (multi-core
9877c478bd9Sstevel@tonic-gate 		 * or multi-processor).
9887c478bd9Sstevel@tonic-gate 		 */
989843e1988Sjohnlev #if defined(__xpv)
990843e1988Sjohnlev 		if (!DOMAIN_IS_INITDOMAIN(xen_info))
991843e1988Sjohnlev 			break;
992349b53ddSStuart Maybee 		if (!opteron_erratum_122 && xpv_nr_phys_cpus() == 1)
993843e1988Sjohnlev 			break;
994843e1988Sjohnlev #else
99592564cb1Sesaxe 		if (!opteron_erratum_122 && opteron_get_nnodes() == 1 &&
996ae115bc7Smrj 		    cpuid_get_ncpu_per_chip(cpu) == 1)
997ae115bc7Smrj 			break;
998843e1988Sjohnlev #endif
999ae115bc7Smrj 		/* disable TLB Flush Filter */
1000ae115bc7Smrj 
1001ae115bc7Smrj 		if ((error = checked_rdmsr(msr, &value)) != 0) {
1002ae115bc7Smrj 			msr_warning(cpu, "rd", msr, error);
1003ae115bc7Smrj 			workaround_warning(cpu, 122);
1004ae115bc7Smrj 			missing++;
1005ae115bc7Smrj 		} else {
1006ae115bc7Smrj 			value |= (uint64_t)AMD_HWCR_FFDIS;
1007ae115bc7Smrj 			if ((error = checked_wrmsr(msr, value)) != 0) {
1008ae115bc7Smrj 				msr_warning(cpu, "wr", msr, error);
1009ae115bc7Smrj 				workaround_warning(cpu, 122);
1010ae115bc7Smrj 				missing++;
1011ae115bc7Smrj 			}
10127c478bd9Sstevel@tonic-gate 		}
1013ae115bc7Smrj 		opteron_erratum_122++;
10147c478bd9Sstevel@tonic-gate #else
1015ae115bc7Smrj 		workaround_warning(cpu, 122);
10167c478bd9Sstevel@tonic-gate 		missing++;
10177c478bd9Sstevel@tonic-gate #endif
1018ae115bc7Smrj 	/*CONSTANTCONDITION*/
1019ae115bc7Smrj 	} while (0);
1020403c216aSkchow 
10217c478bd9Sstevel@tonic-gate 	/*LINTED*/
1022ae115bc7Smrj 	if (cpuid_opteron_erratum(cpu, 123) > 0) do {
10237c478bd9Sstevel@tonic-gate 		/*
10247c478bd9Sstevel@tonic-gate 		 * Bypassed Reads May Cause Data Corruption of System Hang in
10257c478bd9Sstevel@tonic-gate 		 * Dual Core Processors
10267c478bd9Sstevel@tonic-gate 		 */
1027ae115bc7Smrj #if defined(OPTERON_ERRATUM_123)
1028ae115bc7Smrj 		uint64_t value;
1029ae115bc7Smrj 		const uint_t msr = MSR_AMD_PATCHLEVEL;
1030ae115bc7Smrj 		int err;
1031ae115bc7Smrj 
10327c478bd9Sstevel@tonic-gate 		/*
10337c478bd9Sstevel@tonic-gate 		 * Erratum 123 applies only to multi-core cpus.
10347c478bd9Sstevel@tonic-gate 		 */
1035ae115bc7Smrj 		if (cpuid_get_ncpu_per_chip(cpu) < 2)
1036ae115bc7Smrj 			break;
1037843e1988Sjohnlev #if defined(__xpv)
1038843e1988Sjohnlev 		if (!DOMAIN_IS_INITDOMAIN(xen_info))
1039843e1988Sjohnlev 			break;
1040843e1988Sjohnlev #endif
1041ae115bc7Smrj 		/*
1042ae115bc7Smrj 		 * The "workaround" is to print a warning to upgrade the BIOS
1043ae115bc7Smrj 		 */
1044ae115bc7Smrj 		if ((err = checked_rdmsr(msr, &value)) != 0) {
1045ae115bc7Smrj 			msr_warning(cpu, "rd", msr, err);
1046ae115bc7Smrj 			workaround_warning(cpu, 123);
1047ae115bc7Smrj 			missing++;
10487c478bd9Sstevel@tonic-gate 		}
1049ae115bc7Smrj 		if (value == 0)
1050ae115bc7Smrj 			opteron_erratum_123++;
1051ae115bc7Smrj #else
1052ae115bc7Smrj 		workaround_warning(cpu, 123);
1053ae115bc7Smrj 		missing++;
1054ae115bc7Smrj 
1055403c216aSkchow #endif
1056ae115bc7Smrj 	/*CONSTANTCONDITION*/
1057ae115bc7Smrj 	} while (0);
10582201b277Skucharsk 
10592201b277Skucharsk 	/*LINTED*/
1060ae115bc7Smrj 	if (cpuid_opteron_erratum(cpu, 131) > 0) do {
10612201b277Skucharsk 		/*
10622201b277Skucharsk 		 * Multiprocessor Systems with Four or More Cores May Deadlock
10632201b277Skucharsk 		 * Waiting for a Probe Response
10642201b277Skucharsk 		 */
1065ae115bc7Smrj #if defined(OPTERON_ERRATUM_131)
1066ae115bc7Smrj 		uint64_t nbcfg;
1067ae115bc7Smrj 		const uint_t msr = MSR_AMD_NB_CFG;
1068ae115bc7Smrj 		const uint64_t wabits =
1069ae115bc7Smrj 		    AMD_NB_CFG_SRQ_HEARTBEAT | AMD_NB_CFG_SRQ_SPR;
1070ae115bc7Smrj 		int error;
1071ae115bc7Smrj 
10722201b277Skucharsk 		/*
10732201b277Skucharsk 		 * Erratum 131 applies to any system with four or more cores.
10742201b277Skucharsk 		 */
1075ae115bc7Smrj 		if (opteron_erratum_131)
1076ae115bc7Smrj 			break;
1077843e1988Sjohnlev #if defined(__xpv)
1078843e1988Sjohnlev 		if (!DOMAIN_IS_INITDOMAIN(xen_info))
1079843e1988Sjohnlev 			break;
1080349b53ddSStuart Maybee 		if (xpv_nr_phys_cpus() < 4)
1081843e1988Sjohnlev 			break;
1082843e1988Sjohnlev #else
108392564cb1Sesaxe 		if (opteron_get_nnodes() * cpuid_get_ncpu_per_chip(cpu) < 4)
1084ae115bc7Smrj 			break;
1085843e1988Sjohnlev #endif
1086ae115bc7Smrj 		/*
1087ae115bc7Smrj 		 * Print a warning if neither of the workarounds for
1088ae115bc7Smrj 		 * erratum 131 is present.
1089ae115bc7Smrj 		 */
1090ae115bc7Smrj 		if ((error = checked_rdmsr(msr, &nbcfg)) != 0) {
1091ae115bc7Smrj 			msr_warning(cpu, "rd", msr, error);
1092ae115bc7Smrj 			workaround_warning(cpu, 131);
1093ae115bc7Smrj 			missing++;
1094ae115bc7Smrj 		} else if ((nbcfg & wabits) == 0) {
1095ae115bc7Smrj 			opteron_erratum_131++;
1096ae115bc7Smrj 		} else {
1097ae115bc7Smrj 			/* cannot have both workarounds set */
1098ae115bc7Smrj 			ASSERT((nbcfg & wabits) != wabits);
10992201b277Skucharsk 		}
1100ae115bc7Smrj #else
1101ae115bc7Smrj 		workaround_warning(cpu, 131);
1102ae115bc7Smrj 		missing++;
11032201b277Skucharsk #endif
1104ae115bc7Smrj 	/*CONSTANTCONDITION*/
1105ae115bc7Smrj 	} while (0);
1106ef50d8c0Sesaxe 
1107ef50d8c0Sesaxe 	/*
1108ae115bc7Smrj 	 * This isn't really an erratum, but for convenience the
1109ef50d8c0Sesaxe 	 * detection/workaround code lives here and in cpuid_opteron_erratum.
1110ef50d8c0Sesaxe 	 */
1111ef50d8c0Sesaxe 	if (cpuid_opteron_erratum(cpu, 6336786) > 0) {
1112ae115bc7Smrj #if defined(OPTERON_WORKAROUND_6336786)
1113ef50d8c0Sesaxe 		/*
1114ef50d8c0Sesaxe 		 * Disable C1-Clock ramping on multi-core/multi-processor
1115ef50d8c0Sesaxe 		 * K8 platforms to guard against TSC drift.
1116ef50d8c0Sesaxe 		 */
1117ef50d8c0Sesaxe 		if (opteron_workaround_6336786) {
1118ef50d8c0Sesaxe 			opteron_workaround_6336786++;
1119843e1988Sjohnlev #if defined(__xpv)
1120843e1988Sjohnlev 		} else if ((DOMAIN_IS_INITDOMAIN(xen_info) &&
1121349b53ddSStuart Maybee 		    xpv_nr_phys_cpus() > 1) ||
1122843e1988Sjohnlev 		    opteron_workaround_6336786_UP) {
1123843e1988Sjohnlev 			/*
112492564cb1Sesaxe 			 * XXPV	Hmm.  We can't walk the Northbridges on
1125843e1988Sjohnlev 			 *	the hypervisor; so just complain and drive
1126843e1988Sjohnlev 			 *	on.  This probably needs to be fixed in
1127843e1988Sjohnlev 			 *	the hypervisor itself.
1128843e1988Sjohnlev 			 */
1129843e1988Sjohnlev 			opteron_workaround_6336786++;
1130843e1988Sjohnlev 			workaround_warning(cpu, 6336786);
1131843e1988Sjohnlev #else	/* __xpv */
113292564cb1Sesaxe 		} else if ((opteron_get_nnodes() *
1133d38257c4Sesaxe 		    cpuid_get_ncpu_per_chip(cpu) > 1) ||
1134ef50d8c0Sesaxe 		    opteron_workaround_6336786_UP) {
113592564cb1Sesaxe 
113692564cb1Sesaxe 			uint_t	node, nnodes;
1137ae115bc7Smrj 			uint8_t data;
1138ae115bc7Smrj 
113992564cb1Sesaxe 			nnodes = opteron_get_nnodes();
114092564cb1Sesaxe 			for (node = 0; node < nnodes; node++) {
1141ef50d8c0Sesaxe 				/*
1142ef50d8c0Sesaxe 				 * Clear PMM7[1:0] (function 3, offset 0x87)
1143ef50d8c0Sesaxe 				 * Northbridge device is the node id + 24.
1144ef50d8c0Sesaxe 				 */
1145ef50d8c0Sesaxe 				data = pci_getb_func(0, node + 24, 3, 0x87);
1146ef50d8c0Sesaxe 				data &= 0xFC;
1147ef50d8c0Sesaxe 				pci_putb_func(0, node + 24, 3, 0x87, data);
1148ef50d8c0Sesaxe 			}
1149ef50d8c0Sesaxe 			opteron_workaround_6336786++;
1150843e1988Sjohnlev #endif	/* __xpv */
1151ef50d8c0Sesaxe 		}
1152ae115bc7Smrj #else
1153ae115bc7Smrj 		workaround_warning(cpu, 6336786);
1154ae115bc7Smrj 		missing++;
1155ef50d8c0Sesaxe #endif
1156ae115bc7Smrj 	}
1157ee88d2b9Skchow 
1158ee88d2b9Skchow 	/*LINTED*/
1159ee88d2b9Skchow 	/*
1160ee88d2b9Skchow 	 * Mutex primitives don't work as expected.
1161ee88d2b9Skchow 	 */
1162ee88d2b9Skchow 	if (cpuid_opteron_erratum(cpu, 6323525) > 0) {
1163ae115bc7Smrj #if defined(OPTERON_WORKAROUND_6323525)
1164ee88d2b9Skchow 		/*
1165ae115bc7Smrj 		 * This problem only occurs with 2 or more cores. If bit in
1166512cf780Skchow 		 * MSR_AMD_BU_CFG set, then not applicable. The workaround
1167ee88d2b9Skchow 		 * is to patch the semaphone routines with the lfence
1168ee88d2b9Skchow 		 * instruction to provide necessary load memory barrier with
1169ee88d2b9Skchow 		 * possible subsequent read-modify-write ops.
1170ee88d2b9Skchow 		 *
1171ee88d2b9Skchow 		 * It is too early in boot to call the patch routine so
1172ee88d2b9Skchow 		 * set erratum variable to be done in startup_end().
1173ee88d2b9Skchow 		 */
1174ee88d2b9Skchow 		if (opteron_workaround_6323525) {
1175ee88d2b9Skchow 			opteron_workaround_6323525++;
1176843e1988Sjohnlev #if defined(__xpv)
11777417cfdeSKuriakose Kuruvilla 		} else if (is_x86_feature(x86_featureset, X86FSET_SSE2)) {
1178843e1988Sjohnlev 			if (DOMAIN_IS_INITDOMAIN(xen_info)) {
1179843e1988Sjohnlev 				/*
1180843e1988Sjohnlev 				 * XXPV	Use dom0_msr here when extended
1181843e1988Sjohnlev 				 *	operations are supported?
1182843e1988Sjohnlev 				 */
1183349b53ddSStuart Maybee 				if (xpv_nr_phys_cpus() > 1)
1184843e1988Sjohnlev 					opteron_workaround_6323525++;
1185843e1988Sjohnlev 			} else {
1186843e1988Sjohnlev 				/*
1187843e1988Sjohnlev 				 * We have no way to tell how many physical
1188843e1988Sjohnlev 				 * cpus there are, or even if this processor
1189843e1988Sjohnlev 				 * has the problem, so enable the workaround
1190843e1988Sjohnlev 				 * unconditionally (at some performance cost).
1191843e1988Sjohnlev 				 */
1192843e1988Sjohnlev 				opteron_workaround_6323525++;
1193843e1988Sjohnlev 			}
1194843e1988Sjohnlev #else	/* __xpv */
11957417cfdeSKuriakose Kuruvilla 		} else if (is_x86_feature(x86_featureset, X86FSET_SSE2) &&
11967417cfdeSKuriakose Kuruvilla 		    ((opteron_get_nnodes() *
1197ae115bc7Smrj 		    cpuid_get_ncpu_per_chip(cpu)) > 1)) {
119848b2bf45SKit Chow 			if ((xrdmsr(MSR_AMD_BU_CFG) & (UINT64_C(1) << 33)) == 0)
1199ee88d2b9Skchow 				opteron_workaround_6323525++;
1200843e1988Sjohnlev #endif	/* __xpv */
1201ee88d2b9Skchow 		}
1202ae115bc7Smrj #else
1203ae115bc7Smrj 		workaround_warning(cpu, 6323525);
1204ae115bc7Smrj 		missing++;
1205ee88d2b9Skchow #endif
1206ae115bc7Smrj 	}
1207ae115bc7Smrj 
1208512cf780Skchow 	missing += do_erratum_298(cpu);
1209512cf780Skchow 
12105e54b56dSHans Rosenfeld 	if (cpuid_opteron_erratum(cpu, 721) > 0) {
12115e54b56dSHans Rosenfeld #if defined(OPTERON_ERRATUM_721)
1212850ad55aSHans Rosenfeld 		on_trap_data_t otd;
1213850ad55aSHans Rosenfeld 
1214850ad55aSHans Rosenfeld 		if (!on_trap(&otd, OT_DATA_ACCESS))
1215850ad55aSHans Rosenfeld 			wrmsr(MSR_AMD_DE_CFG,
1216850ad55aSHans Rosenfeld 			    rdmsr(MSR_AMD_DE_CFG) | AMD_DE_CFG_E721);
1217850ad55aSHans Rosenfeld 		no_trap();
1218850ad55aSHans Rosenfeld 
12195e54b56dSHans Rosenfeld 		opteron_erratum_721++;
12205e54b56dSHans Rosenfeld #else
12215e54b56dSHans Rosenfeld 		workaround_warning(cpu, 721);
12225e54b56dSHans Rosenfeld 		missing++;
12235e54b56dSHans Rosenfeld #endif
12245e54b56dSHans Rosenfeld 	}
12255e54b56dSHans Rosenfeld 
1226843e1988Sjohnlev #ifdef __xpv
1227843e1988Sjohnlev 	return (0);
1228843e1988Sjohnlev #else
12297c478bd9Sstevel@tonic-gate 	return (missing);
1230843e1988Sjohnlev #endif
12317c478bd9Sstevel@tonic-gate }
12327c478bd9Sstevel@tonic-gate 
12337c478bd9Sstevel@tonic-gate void
12347c478bd9Sstevel@tonic-gate workaround_errata_end()
12357c478bd9Sstevel@tonic-gate {
1236ae115bc7Smrj #if defined(OPTERON_ERRATUM_88)
1237ae115bc7Smrj 	if (opteron_erratum_88)
1238ae115bc7Smrj 		workaround_applied(88);
1239ae115bc7Smrj #endif
1240ae115bc7Smrj #if defined(OPTERON_ERRATUM_91)
1241ae115bc7Smrj 	if (opteron_erratum_91)
1242ae115bc7Smrj 		workaround_applied(91);
1243ae115bc7Smrj #endif
1244ae115bc7Smrj #if defined(OPTERON_ERRATUM_93)
1245ae115bc7Smrj 	if (opteron_erratum_93)
1246ae115bc7Smrj 		workaround_applied(93);
1247ae115bc7Smrj #endif
1248ae115bc7Smrj #if defined(OPTERON_ERRATUM_95)
1249ae115bc7Smrj 	if (opteron_erratum_95)
1250ae115bc7Smrj 		workaround_applied(95);
1251ae115bc7Smrj #endif
1252ae115bc7Smrj #if defined(OPTERON_ERRATUM_100)
1253ae115bc7Smrj 	if (opteron_erratum_100)
1254ae115bc7Smrj 		workaround_applied(100);
1255ae115bc7Smrj #endif
1256ae115bc7Smrj #if defined(OPTERON_ERRATUM_108)
1257ae115bc7Smrj 	if (opteron_erratum_108)
1258ae115bc7Smrj 		workaround_applied(108);
1259ae115bc7Smrj #endif
12607c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_109)
12617c478bd9Sstevel@tonic-gate 	if (opteron_erratum_109) {
12622201b277Skucharsk 		cmn_err(CE_WARN,
12632201b277Skucharsk 		    "BIOS microcode patch for AMD Athlon(tm) 64/Opteron(tm)"
12642201b277Skucharsk 		    " processor\nerratum 109 was not detected; updating your"
12652201b277Skucharsk 		    " system's BIOS to a version\ncontaining this"
12662201b277Skucharsk 		    " microcode patch is HIGHLY recommended or erroneous"
12672201b277Skucharsk 		    " system\noperation may occur.\n");
12687c478bd9Sstevel@tonic-gate 	}
1269ae115bc7Smrj #endif
1270ae115bc7Smrj #if defined(OPTERON_ERRATUM_121)
1271ae115bc7Smrj 	if (opteron_erratum_121)
1272ae115bc7Smrj 		workaround_applied(121);
1273ae115bc7Smrj #endif
1274ae115bc7Smrj #if defined(OPTERON_ERRATUM_122)
1275ae115bc7Smrj 	if (opteron_erratum_122)
1276ae115bc7Smrj 		workaround_applied(122);
1277ae115bc7Smrj #endif
12787c478bd9Sstevel@tonic-gate #if defined(OPTERON_ERRATUM_123)
12797c478bd9Sstevel@tonic-gate 	if (opteron_erratum_123) {
12802201b277Skucharsk 		cmn_err(CE_WARN,
12812201b277Skucharsk 		    "BIOS microcode patch for AMD Athlon(tm) 64/Opteron(tm)"
12822201b277Skucharsk 		    " processor\nerratum 123 was not detected; updating your"
12832201b277Skucharsk 		    " system's BIOS to a version\ncontaining this"
12842201b277Skucharsk 		    " microcode patch is HIGHLY recommended or erroneous"
12852201b277Skucharsk 		    " system\noperation may occur.\n");
12867c478bd9Sstevel@tonic-gate 	}
1287ae115bc7Smrj #endif
12882201b277Skucharsk #if defined(OPTERON_ERRATUM_131)
12892201b277Skucharsk 	if (opteron_erratum_131) {
12902201b277Skucharsk 		cmn_err(CE_WARN,
12912201b277Skucharsk 		    "BIOS microcode patch for AMD Athlon(tm) 64/Opteron(tm)"
12922201b277Skucharsk 		    " processor\nerratum 131 was not detected; updating your"
12932201b277Skucharsk 		    " system's BIOS to a version\ncontaining this"
12942201b277Skucharsk 		    " microcode patch is HIGHLY recommended or erroneous"
12952201b277Skucharsk 		    " system\noperation may occur.\n");
12962201b277Skucharsk 	}
1297ae115bc7Smrj #endif
1298ae115bc7Smrj #if defined(OPTERON_WORKAROUND_6336786)
1299ae115bc7Smrj 	if (opteron_workaround_6336786)
1300ae115bc7Smrj 		workaround_applied(6336786);
1301ae115bc7Smrj #endif
1302ae115bc7Smrj #if defined(OPTERON_WORKAROUND_6323525)
1303ae115bc7Smrj 	if (opteron_workaround_6323525)
1304ae115bc7Smrj 		workaround_applied(6323525);
1305ae115bc7Smrj #endif
1306512cf780Skchow #if defined(OPTERON_ERRATUM_298)
1307512cf780Skchow 	if (opteron_erratum_298) {
1308512cf780Skchow 		cmn_err(CE_WARN,
1309512cf780Skchow 		    "BIOS microcode patch for AMD 64/Opteron(tm)"
1310512cf780Skchow 		    " processor\nerratum 298 was not detected; updating your"
1311512cf780Skchow 		    " system's BIOS to a version\ncontaining this"
1312512cf780Skchow 		    " microcode patch is HIGHLY recommended or erroneous"
1313512cf780Skchow 		    " system\noperation may occur.\n");
1314512cf780Skchow 	}
1315512cf780Skchow #endif
13165e54b56dSHans Rosenfeld #if defined(OPTERON_ERRATUM_721)
13175e54b56dSHans Rosenfeld 	if (opteron_erratum_721)
13185e54b56dSHans Rosenfeld 		workaround_applied(721);
13195e54b56dSHans Rosenfeld #endif
13207c478bd9Sstevel@tonic-gate }
13217c478bd9Sstevel@tonic-gate 
1322ae115bc7Smrj /*
1323a3114836SGerry Liu  * The procset_slave and procset_master are used to synchronize
1324a3114836SGerry Liu  * between the control CPU and the target CPU when starting CPUs.
1325ae115bc7Smrj  */
1326a3114836SGerry Liu static cpuset_t procset_slave, procset_master;
1327a3114836SGerry Liu 
1328a3114836SGerry Liu static void
1329a3114836SGerry Liu mp_startup_wait(cpuset_t *sp, processorid_t cpuid)
1330a3114836SGerry Liu {
1331a3114836SGerry Liu 	cpuset_t tempset;
1332a3114836SGerry Liu 
1333a3114836SGerry Liu 	for (tempset = *sp; !CPU_IN_SET(tempset, cpuid);
1334a3114836SGerry Liu 	    tempset = *(volatile cpuset_t *)sp) {
1335a3114836SGerry Liu 		SMT_PAUSE();
1336a3114836SGerry Liu 	}
1337a3114836SGerry Liu 	CPUSET_ATOMIC_DEL(*(cpuset_t *)sp, cpuid);
1338a3114836SGerry Liu }
1339a3114836SGerry Liu 
1340a3114836SGerry Liu static void
1341a3114836SGerry Liu mp_startup_signal(cpuset_t *sp, processorid_t cpuid)
1342a3114836SGerry Liu {
1343a3114836SGerry Liu 	cpuset_t tempset;
1344a3114836SGerry Liu 
1345a3114836SGerry Liu 	CPUSET_ATOMIC_ADD(*(cpuset_t *)sp, cpuid);
1346a3114836SGerry Liu 	for (tempset = *sp; CPU_IN_SET(tempset, cpuid);
1347a3114836SGerry Liu 	    tempset = *(volatile cpuset_t *)sp) {
1348a3114836SGerry Liu 		SMT_PAUSE();
1349a3114836SGerry Liu 	}
1350a3114836SGerry Liu }
1351a3114836SGerry Liu 
1352ae115bc7Smrj int
1353a3114836SGerry Liu mp_start_cpu_common(cpu_t *cp, boolean_t boot)
1354ae115bc7Smrj {
1355a3114836SGerry Liu 	_NOTE(ARGUNUSED(boot));
1356a3114836SGerry Liu 
1357ae115bc7Smrj 	void *ctx;
1358ae115bc7Smrj 	int delays;
1359ae115bc7Smrj 	int error = 0;
1360a3114836SGerry Liu 	cpuset_t tempset;
1361a3114836SGerry Liu 	processorid_t cpuid;
1362a3114836SGerry Liu #ifndef __xpv
1363a3114836SGerry Liu 	extern void cpupm_init(cpu_t *);
1364a3114836SGerry Liu #endif
1365ae115bc7Smrj 
1366a3114836SGerry Liu 	ASSERT(cp != NULL);
1367a3114836SGerry Liu 	cpuid = cp->cpu_id;
1368a3114836SGerry Liu 	ctx = mach_cpucontext_alloc(cp);
1369a3114836SGerry Liu 	if (ctx == NULL) {
1370a3114836SGerry Liu 		cmn_err(CE_WARN,
1371a3114836SGerry Liu 		    "cpu%d: failed to allocate context", cp->cpu_id);
1372a3114836SGerry Liu 		return (EAGAIN);
1373ae115bc7Smrj 	}
1374a3114836SGerry Liu 	error = mach_cpu_start(cp, ctx);
1375a3114836SGerry Liu 	if (error != 0) {
1376a3114836SGerry Liu 		cmn_err(CE_WARN,
1377a3114836SGerry Liu 		    "cpu%d: failed to start, error %d", cp->cpu_id, error);
1378a3114836SGerry Liu 		mach_cpucontext_free(cp, ctx, error);
1379ae115bc7Smrj 		return (error);
1380ae115bc7Smrj 	}
1381ae115bc7Smrj 
1382a3114836SGerry Liu 	for (delays = 0, tempset = procset_slave; !CPU_IN_SET(tempset, cpuid);
1383a3114836SGerry Liu 	    delays++) {
1384ae115bc7Smrj 		if (delays == 500) {
1385ae115bc7Smrj 			/*
1386ae115bc7Smrj 			 * After five seconds, things are probably looking
1387ae115bc7Smrj 			 * a bit bleak - explain the hang.
1388ae115bc7Smrj 			 */
1389ae115bc7Smrj 			cmn_err(CE_NOTE, "cpu%d: started, "
1390a3114836SGerry Liu 			    "but not running in the kernel yet", cpuid);
1391ae115bc7Smrj 		} else if (delays > 2000) {
1392ae115bc7Smrj 			/*
1393ae115bc7Smrj 			 * We waited at least 20 seconds, bail ..
1394ae115bc7Smrj 			 */
1395ae115bc7Smrj 			error = ETIMEDOUT;
1396a3114836SGerry Liu 			cmn_err(CE_WARN, "cpu%d: timed out", cpuid);
1397ae115bc7Smrj 			mach_cpucontext_free(cp, ctx, error);
1398ae115bc7Smrj 			return (error);
1399ae115bc7Smrj 		}
1400ae115bc7Smrj 
1401ae115bc7Smrj 		/*
1402ae115bc7Smrj 		 * wait at least 10ms, then check again..
1403ae115bc7Smrj 		 */
1404ae115bc7Smrj 		delay(USEC_TO_TICK_ROUNDUP(10000));
1405a3114836SGerry Liu 		tempset = *((volatile cpuset_t *)&procset_slave);
1406ae115bc7Smrj 	}
1407a3114836SGerry Liu 	CPUSET_ATOMIC_DEL(procset_slave, cpuid);
1408ae115bc7Smrj 
1409ae115bc7Smrj 	mach_cpucontext_free(cp, ctx, 0);
1410ae115bc7Smrj 
1411843e1988Sjohnlev #ifndef __xpv
1412ae115bc7Smrj 	if (tsc_gethrtime_enable)
1413a3114836SGerry Liu 		tsc_sync_master(cpuid);
1414843e1988Sjohnlev #endif
1415ae115bc7Smrj 
1416ae115bc7Smrj 	if (dtrace_cpu_init != NULL) {
1417a3114836SGerry Liu 		(*dtrace_cpu_init)(cpuid);
1418a3114836SGerry Liu 	}
1419a3114836SGerry Liu 
1420a3114836SGerry Liu 	/*
1421a3114836SGerry Liu 	 * During CPU DR operations, the cpu_lock is held by current
1422a3114836SGerry Liu 	 * (the control) thread. We can't release the cpu_lock here
1423a3114836SGerry Liu 	 * because that will break the CPU DR logic.
1424a3114836SGerry Liu 	 * On the other hand, CPUPM and processor group initialization
1425a3114836SGerry Liu 	 * routines need to access the cpu_lock. So we invoke those
1426a3114836SGerry Liu 	 * routines here on behalf of mp_startup_common().
1427a3114836SGerry Liu 	 *
1428a3114836SGerry Liu 	 * CPUPM and processor group initialization routines depend
1429a3114836SGerry Liu 	 * on the cpuid probing results. Wait for mp_startup_common()
1430a3114836SGerry Liu 	 * to signal that cpuid probing is done.
1431a3114836SGerry Liu 	 */
1432a3114836SGerry Liu 	mp_startup_wait(&procset_slave, cpuid);
1433a3114836SGerry Liu #ifndef __xpv
1434a3114836SGerry Liu 	cpupm_init(cp);
1435a3114836SGerry Liu #endif
1436a3114836SGerry Liu 	(void) pg_cpu_init(cp, B_FALSE);
1437a3114836SGerry Liu 	cpu_set_state(cp);
1438a3114836SGerry Liu 	mp_startup_signal(&procset_master, cpuid);
1439a3114836SGerry Liu 
1440a3114836SGerry Liu 	return (0);
1441a3114836SGerry Liu }
1442a3114836SGerry Liu 
1443a3114836SGerry Liu /*
1444a3114836SGerry Liu  * Start a single cpu, assuming that the kernel context is available
1445a3114836SGerry Liu  * to successfully start another cpu.
1446a3114836SGerry Liu  *
1447a3114836SGerry Liu  * (For example, real mode code is mapped into the right place
1448a3114836SGerry Liu  * in memory and is ready to be run.)
1449a3114836SGerry Liu  */
1450a3114836SGerry Liu int
1451a3114836SGerry Liu start_cpu(processorid_t who)
1452a3114836SGerry Liu {
1453a3114836SGerry Liu 	cpu_t *cp;
1454a3114836SGerry Liu 	int error = 0;
1455a3114836SGerry Liu 	cpuset_t tempset;
1456a3114836SGerry Liu 
1457a3114836SGerry Liu 	ASSERT(who != 0);
1458a3114836SGerry Liu 
1459a3114836SGerry Liu 	/*
1460a3114836SGerry Liu 	 * Check if there's at least a Mbyte of kmem available
1461a3114836SGerry Liu 	 * before attempting to start the cpu.
1462a3114836SGerry Liu 	 */
1463a3114836SGerry Liu 	if (kmem_avail() < 1024 * 1024) {
1464ae115bc7Smrj 		/*
1465a3114836SGerry Liu 		 * Kick off a reap in case that helps us with
1466a3114836SGerry Liu 		 * later attempts ..
1467ae115bc7Smrj 		 */
1468a3114836SGerry Liu 		kmem_reap();
1469a3114836SGerry Liu 		return (ENOMEM);
1470a3114836SGerry Liu 	}
1471a3114836SGerry Liu 
1472a3114836SGerry Liu 	/*
1473a3114836SGerry Liu 	 * First configure cpu.
1474a3114836SGerry Liu 	 */
1475a3114836SGerry Liu 	cp = mp_cpu_configure_common(who, B_TRUE);
1476a3114836SGerry Liu 	ASSERT(cp != NULL);
1477a3114836SGerry Liu 
1478a3114836SGerry Liu 	/*
1479a3114836SGerry Liu 	 * Then start cpu.
1480a3114836SGerry Liu 	 */
1481a3114836SGerry Liu 	error = mp_start_cpu_common(cp, B_TRUE);
1482a3114836SGerry Liu 	if (error != 0) {
1483a3114836SGerry Liu 		mp_cpu_unconfigure_common(cp, error);
1484a3114836SGerry Liu 		return (error);
1485ae115bc7Smrj 	}
1486ae115bc7Smrj 
1487a3114836SGerry Liu 	mutex_exit(&cpu_lock);
1488a3114836SGerry Liu 	tempset = cpu_ready_set;
1489a3114836SGerry Liu 	while (!CPU_IN_SET(tempset, who)) {
1490a3114836SGerry Liu 		drv_usecwait(1);
1491a3114836SGerry Liu 		tempset = *((volatile cpuset_t *)&cpu_ready_set);
1492a3114836SGerry Liu 	}
1493a3114836SGerry Liu 	mutex_enter(&cpu_lock);
1494ae115bc7Smrj 
1495ae115bc7Smrj 	return (0);
1496ae115bc7Smrj }
14977c478bd9Sstevel@tonic-gate 
14987c478bd9Sstevel@tonic-gate void
14997c478bd9Sstevel@tonic-gate start_other_cpus(int cprboot)
15007c478bd9Sstevel@tonic-gate {
1501a3114836SGerry Liu 	_NOTE(ARGUNUSED(cprboot));
1502a3114836SGerry Liu 
1503ae115bc7Smrj 	uint_t who;
1504ae115bc7Smrj 	uint_t bootcpuid = 0;
15057c478bd9Sstevel@tonic-gate 
15067c478bd9Sstevel@tonic-gate 	/*
15077c478bd9Sstevel@tonic-gate 	 * Initialize our own cpu_info.
15087c478bd9Sstevel@tonic-gate 	 */
15097c478bd9Sstevel@tonic-gate 	init_cpu_info(CPU);
15107c478bd9Sstevel@tonic-gate 
1511*2428aad8SPatrick Mooney #if !defined(__xpv)
1512*2428aad8SPatrick Mooney 	init_cpu_id_gdt(CPU);
1513*2428aad8SPatrick Mooney #endif
1514*2428aad8SPatrick Mooney 
151519397407SSherry Moore 	cmn_err(CE_CONT, "?cpu%d: %s\n", CPU->cpu_id, CPU->cpu_idstr);
151619397407SSherry Moore 	cmn_err(CE_CONT, "?cpu%d: %s\n", CPU->cpu_id, CPU->cpu_brandstr);
151719397407SSherry Moore 
15187c478bd9Sstevel@tonic-gate 	/*
15197c478bd9Sstevel@tonic-gate 	 * Initialize our syscall handlers
15207c478bd9Sstevel@tonic-gate 	 */
15217c478bd9Sstevel@tonic-gate 	init_cpu_syscall(CPU);
15227c478bd9Sstevel@tonic-gate 
1523ae115bc7Smrj 	/*
1524ae115bc7Smrj 	 * Take the boot cpu out of the mp_cpus set because we know
1525ae115bc7Smrj 	 * it's already running.  Add it to the cpu_ready_set for
1526ae115bc7Smrj 	 * precisely the same reason.
1527ae115bc7Smrj 	 */
1528ae115bc7Smrj 	CPUSET_DEL(mp_cpus, bootcpuid);
1529ae115bc7Smrj 	CPUSET_ADD(cpu_ready_set, bootcpuid);
1530ae115bc7Smrj 
15317c478bd9Sstevel@tonic-gate 	/*
1532a3114836SGerry Liu 	 * skip the rest of this if
1533a3114836SGerry Liu 	 * . only 1 cpu dectected and system isn't hotplug-capable
1534a3114836SGerry Liu 	 * . not using MP
15357c478bd9Sstevel@tonic-gate 	 */
1536a3114836SGerry Liu 	if ((CPUSET_ISNULL(mp_cpus) && plat_dr_support_cpu() == 0) ||
1537a3114836SGerry Liu 	    use_mp == 0) {
15387c478bd9Sstevel@tonic-gate 		if (use_mp == 0)
15397c478bd9Sstevel@tonic-gate 			cmn_err(CE_CONT, "?***** Not in MP mode\n");
15407c478bd9Sstevel@tonic-gate 		goto done;
15417c478bd9Sstevel@tonic-gate 	}
15427c478bd9Sstevel@tonic-gate 
15437c478bd9Sstevel@tonic-gate 	/*
15447c478bd9Sstevel@tonic-gate 	 * perform such initialization as is needed
15457c478bd9Sstevel@tonic-gate 	 * to be able to take CPUs on- and off-line.
15467c478bd9Sstevel@tonic-gate 	 */
15477c478bd9Sstevel@tonic-gate 	cpu_pause_init();
15487c478bd9Sstevel@tonic-gate 
1549f34a7178SJoe Bonasera 	xc_init_cpu(CPU);		/* initialize processor crosscalls */
15507c478bd9Sstevel@tonic-gate 
1551ae115bc7Smrj 	if (mach_cpucontext_init() != 0)
15527c478bd9Sstevel@tonic-gate 		goto done;
15537c478bd9Sstevel@tonic-gate 
15547c478bd9Sstevel@tonic-gate 	flushes_require_xcalls = 1;
15557c478bd9Sstevel@tonic-gate 
15565205ae23Snf 	/*
15575205ae23Snf 	 * We lock our affinity to the master CPU to ensure that all slave CPUs
15585205ae23Snf 	 * do their TSC syncs with the same CPU.
15595205ae23Snf 	 */
15607c478bd9Sstevel@tonic-gate 	affinity_set(CPU_CURRENT);
15617c478bd9Sstevel@tonic-gate 
15627c478bd9Sstevel@tonic-gate 	for (who = 0; who < NCPU; who++) {
156341791439Sandrei 		if (!CPU_IN_SET(mp_cpus, who))
156441791439Sandrei 			continue;
1565ae115bc7Smrj 		ASSERT(who != bootcpuid);
1566b9e93c10SJonathan Haslam 
1567b9e93c10SJonathan Haslam 		mutex_enter(&cpu_lock);
1568a3114836SGerry Liu 		if (start_cpu(who) != 0)
1569a3114836SGerry Liu 			CPUSET_DEL(mp_cpus, who);
1570b9e93c10SJonathan Haslam 		cpu_state_change_notify(who, CPU_SETUP);
1571b9e93c10SJonathan Haslam 		mutex_exit(&cpu_lock);
15727c478bd9Sstevel@tonic-gate 	}
15737c478bd9Sstevel@tonic-gate 
15742449e17fSsherrym 	/* Free the space allocated to hold the microcode file */
1575adc586deSMark Johnson 	ucode_cleanup();
15762449e17fSsherrym 
15777c478bd9Sstevel@tonic-gate 	affinity_clear();
15787c478bd9Sstevel@tonic-gate 
1579a3114836SGerry Liu 	mach_cpucontext_fini();
1580a3114836SGerry Liu 
1581a3114836SGerry Liu done:
1582a3114836SGerry Liu 	if (get_hwenv() == HW_NATIVE)
1583a3114836SGerry Liu 		workaround_errata_end();
1584a3114836SGerry Liu 	cmi_post_mpstartup();
1585a3114836SGerry Liu 
1586a3114836SGerry Liu 	if (use_mp && ncpus != boot_max_ncpus) {
158741791439Sandrei 		cmn_err(CE_NOTE,
1588ae115bc7Smrj 		    "System detected %d cpus, but "
1589ae115bc7Smrj 		    "only %d cpu(s) were enabled during boot.",
1590a3114836SGerry Liu 		    boot_max_ncpus, ncpus);
159141791439Sandrei 		cmn_err(CE_NOTE,
159241791439Sandrei 		    "Use \"boot-ncpus\" parameter to enable more CPU(s). "
159341791439Sandrei 		    "See eeprom(1M).");
159441791439Sandrei 	}
15957c478bd9Sstevel@tonic-gate }
15967c478bd9Sstevel@tonic-gate 
15977c478bd9Sstevel@tonic-gate int
15987c478bd9Sstevel@tonic-gate mp_cpu_configure(int cpuid)
15997c478bd9Sstevel@tonic-gate {
1600a3114836SGerry Liu 	cpu_t *cp;
1601a3114836SGerry Liu 
1602a3114836SGerry Liu 	if (use_mp == 0 || plat_dr_support_cpu() == 0) {
1603a3114836SGerry Liu 		return (ENOTSUP);
1604a3114836SGerry Liu 	}
1605a3114836SGerry Liu 
1606a3114836SGerry Liu 	cp = cpu_get(cpuid);
1607a3114836SGerry Liu 	if (cp != NULL) {
1608a3114836SGerry Liu 		return (EALREADY);
1609a3114836SGerry Liu 	}
1610a3114836SGerry Liu 
1611a3114836SGerry Liu 	/*
1612a3114836SGerry Liu 	 * Check if there's at least a Mbyte of kmem available
1613a3114836SGerry Liu 	 * before attempting to start the cpu.
1614a3114836SGerry Liu 	 */
1615a3114836SGerry Liu 	if (kmem_avail() < 1024 * 1024) {
1616a3114836SGerry Liu 		/*
1617a3114836SGerry Liu 		 * Kick off a reap in case that helps us with
1618a3114836SGerry Liu 		 * later attempts ..
1619a3114836SGerry Liu 		 */
1620a3114836SGerry Liu 		kmem_reap();
1621a3114836SGerry Liu 		return (ENOMEM);
1622a3114836SGerry Liu 	}
1623a3114836SGerry Liu 
1624a3114836SGerry Liu 	cp = mp_cpu_configure_common(cpuid, B_FALSE);
1625a3114836SGerry Liu 	ASSERT(cp != NULL && cpu_get(cpuid) == cp);
1626a3114836SGerry Liu 
1627a3114836SGerry Liu 	return (cp != NULL ? 0 : EAGAIN);
16287c478bd9Sstevel@tonic-gate }
16297c478bd9Sstevel@tonic-gate 
16307c478bd9Sstevel@tonic-gate int
16317c478bd9Sstevel@tonic-gate mp_cpu_unconfigure(int cpuid)
16327c478bd9Sstevel@tonic-gate {
1633a3114836SGerry Liu 	cpu_t *cp;
1634a3114836SGerry Liu 
1635a3114836SGerry Liu 	if (use_mp == 0 || plat_dr_support_cpu() == 0) {
1636a3114836SGerry Liu 		return (ENOTSUP);
1637a3114836SGerry Liu 	} else if (cpuid < 0 || cpuid >= max_ncpus) {
1638a3114836SGerry Liu 		return (EINVAL);
1639a3114836SGerry Liu 	}
1640a3114836SGerry Liu 
1641a3114836SGerry Liu 	cp = cpu_get(cpuid);
1642a3114836SGerry Liu 	if (cp == NULL) {
1643a3114836SGerry Liu 		return (ENODEV);
1644a3114836SGerry Liu 	}
1645a3114836SGerry Liu 	mp_cpu_unconfigure_common(cp, 0);
1646a3114836SGerry Liu 
1647a3114836SGerry Liu 	return (0);
16487c478bd9Sstevel@tonic-gate }
16497c478bd9Sstevel@tonic-gate 
16507c478bd9Sstevel@tonic-gate /*
16517c478bd9Sstevel@tonic-gate  * Startup function for 'other' CPUs (besides boot cpu).
1652498697c5Sdmick  * Called from real_mode_start.
1653b4b46911Skchow  *
1654a3114836SGerry Liu  * WARNING: until CPU_READY is set, mp_startup_common and routines called by
1655a3114836SGerry Liu  * mp_startup_common should not call routines (e.g. kmem_free) that could call
1656b4b46911Skchow  * hat_unload which requires CPU_READY to be set.
16577c478bd9Sstevel@tonic-gate  */
1658a3114836SGerry Liu static void
1659a3114836SGerry Liu mp_startup_common(boolean_t boot)
16607c478bd9Sstevel@tonic-gate {
1661a3114836SGerry Liu 	cpu_t *cp = CPU;
1662dfea898aSKuriakose Kuruvilla 	uchar_t new_x86_featureset[BT_SIZEOFMAP(NUM_X86_FEATURES)];
1663a3114836SGerry Liu 	extern void cpu_event_init_cpu(cpu_t *);
16647c478bd9Sstevel@tonic-gate 
166524a74e86Sdmick 	/*
166624a74e86Sdmick 	 * We need to get TSC on this proc synced (i.e., any delta
166724a74e86Sdmick 	 * from cpu0 accounted for) as soon as we can, because many
166824a74e86Sdmick 	 * many things use gethrtime/pc_gethrestime, including
16694948216cSKeith M Wesolowski 	 * interrupts, cmn_err, etc.  Before we can do that, we want to
16704948216cSKeith M Wesolowski 	 * clear TSC if we're on a buggy Sandy/Ivy Bridge CPU, so do that
16714948216cSKeith M Wesolowski 	 * right away.
167224a74e86Sdmick 	 */
16734948216cSKeith M Wesolowski 	bzero(new_x86_featureset, BT_SIZEOFMAP(NUM_X86_FEATURES));
16744948216cSKeith M Wesolowski 	cpuid_pass1(cp, new_x86_featureset);
16754948216cSKeith M Wesolowski 
16764948216cSKeith M Wesolowski 	if (boot && get_hwenv() == HW_NATIVE &&
16774948216cSKeith M Wesolowski 	    cpuid_getvendor(CPU) == X86_VENDOR_Intel &&
16784948216cSKeith M Wesolowski 	    cpuid_getfamily(CPU) == 6 &&
16794948216cSKeith M Wesolowski 	    (cpuid_getmodel(CPU) == 0x2d || cpuid_getmodel(CPU) == 0x3e) &&
16804948216cSKeith M Wesolowski 	    is_x86_feature(new_x86_featureset, X86FSET_TSC)) {
16814948216cSKeith M Wesolowski 		(void) wrmsr(REG_TSC, 0UL);
16824948216cSKeith M Wesolowski 	}
168324a74e86Sdmick 
1684a3114836SGerry Liu 	/* Let the control CPU continue into tsc_sync_master() */
1685a3114836SGerry Liu 	mp_startup_signal(&procset_slave, cp->cpu_id);
168624a74e86Sdmick 
1687843e1988Sjohnlev #ifndef __xpv
168824a74e86Sdmick 	if (tsc_gethrtime_enable)
168924a74e86Sdmick 		tsc_sync_slave();
1690843e1988Sjohnlev #endif
169124a74e86Sdmick 
1692498697c5Sdmick 	/*
1693498697c5Sdmick 	 * Once this was done from assembly, but it's safer here; if
1694498697c5Sdmick 	 * it blocks, we need to be able to swtch() to and from, and
1695498697c5Sdmick 	 * since we get here by calling t_pc, we need to do that call
1696498697c5Sdmick 	 * before swtch() overwrites it.
1697498697c5Sdmick 	 */
1698498697c5Sdmick 	(void) (*ap_mlsetup)();
1699498697c5Sdmick 
1700843e1988Sjohnlev #ifndef __xpv
17017c478bd9Sstevel@tonic-gate 	/*
17021d03c31eSjohnlev 	 * Program this cpu's PAT
17037c478bd9Sstevel@tonic-gate 	 */
170458865bb7SJosef 'Jeff' Sipek 	pat_sync();
1705843e1988Sjohnlev #endif
17067c478bd9Sstevel@tonic-gate 
1707ae115bc7Smrj 	/*
1708ae115bc7Smrj 	 * Set up TSC_AUX to contain the cpuid for this processor
1709ae115bc7Smrj 	 * for the rdtscp instruction.
1710ae115bc7Smrj 	 */
17117417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_TSCP))
1712ae115bc7Smrj 		(void) wrmsr(MSR_AMD_TSCAUX, cp->cpu_id);
1713ae115bc7Smrj 
17147c478bd9Sstevel@tonic-gate 	/*
17157c478bd9Sstevel@tonic-gate 	 * Initialize this CPU's syscall handlers
17167c478bd9Sstevel@tonic-gate 	 */
17177c478bd9Sstevel@tonic-gate 	init_cpu_syscall(cp);
17187c478bd9Sstevel@tonic-gate 
17197c478bd9Sstevel@tonic-gate 	/*
17207c478bd9Sstevel@tonic-gate 	 * Enable interrupts with spl set to LOCK_LEVEL. LOCK_LEVEL is the
17217c478bd9Sstevel@tonic-gate 	 * highest level at which a routine is permitted to block on
17227c478bd9Sstevel@tonic-gate 	 * an adaptive mutex (allows for cpu poke interrupt in case
17237c478bd9Sstevel@tonic-gate 	 * the cpu is blocked on a mutex and halts). Setting LOCK_LEVEL blocks
17247c478bd9Sstevel@tonic-gate 	 * device interrupts that may end up in the hat layer issuing cross
17257c478bd9Sstevel@tonic-gate 	 * calls before CPU_READY is set.
17267c478bd9Sstevel@tonic-gate 	 */
1727ae115bc7Smrj 	splx(ipltospl(LOCK_LEVEL));
1728ae115bc7Smrj 	sti();
17297c478bd9Sstevel@tonic-gate 
17307c478bd9Sstevel@tonic-gate 	/*
17317c478bd9Sstevel@tonic-gate 	 * Do a sanity check to make sure this new CPU is a sane thing
17327c478bd9Sstevel@tonic-gate 	 * to add to the collection of processors running this system.
17337c478bd9Sstevel@tonic-gate 	 *
17347c478bd9Sstevel@tonic-gate 	 * XXX	Clearly this needs to get more sophisticated, if x86
17357c478bd9Sstevel@tonic-gate 	 * systems start to get built out of heterogenous CPUs; as is
17367c478bd9Sstevel@tonic-gate 	 * likely to happen once the number of processors in a configuration
17377c478bd9Sstevel@tonic-gate 	 * gets large enough.
17387c478bd9Sstevel@tonic-gate 	 */
17397417cfdeSKuriakose Kuruvilla 	if (compare_x86_featureset(x86_featureset, new_x86_featureset) ==
17407417cfdeSKuriakose Kuruvilla 	    B_FALSE) {
17417417cfdeSKuriakose Kuruvilla 		cmn_err(CE_CONT, "cpu%d: featureset\n", cp->cpu_id);
17427417cfdeSKuriakose Kuruvilla 		print_x86_featureset(new_x86_featureset);
17437c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "cpu%d feature mismatch", cp->cpu_id);
17447c478bd9Sstevel@tonic-gate 	}
17457c478bd9Sstevel@tonic-gate 
1746f98fbcecSbholler 	/*
17474d4b4953SPatrick Mooney 	 * There exists a small subset of systems which expose differing
17484d4b4953SPatrick Mooney 	 * MWAIT/MONITOR support between CPUs.  If MWAIT support is absent from
17494d4b4953SPatrick Mooney 	 * the boot CPU, but is found on a later CPU, the system continues to
17504d4b4953SPatrick Mooney 	 * operate as if no MWAIT support is available.
17514d4b4953SPatrick Mooney 	 *
17524d4b4953SPatrick Mooney 	 * The reverse case, where MWAIT is available on the boot CPU but not
17534d4b4953SPatrick Mooney 	 * on a subsequently initialized CPU, is not presently allowed and will
17544d4b4953SPatrick Mooney 	 * result in a panic.
1755f98fbcecSbholler 	 */
17567417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MWAIT) !=
17574d4b4953SPatrick Mooney 	    is_x86_feature(new_x86_featureset, X86FSET_MWAIT)) {
17584d4b4953SPatrick Mooney 		if (!is_x86_feature(x86_featureset, X86FSET_MWAIT)) {
17594d4b4953SPatrick Mooney 			remove_x86_feature(new_x86_featureset, X86FSET_MWAIT);
17604d4b4953SPatrick Mooney 		} else {
17614d4b4953SPatrick Mooney 			panic("unsupported mixed cpu mwait support detected");
17624d4b4953SPatrick Mooney 		}
17634d4b4953SPatrick Mooney 	}
1764f98fbcecSbholler 
17657c478bd9Sstevel@tonic-gate 	/*
17667c478bd9Sstevel@tonic-gate 	 * We could be more sophisticated here, and just mark the CPU
17677c478bd9Sstevel@tonic-gate 	 * as "faulted" but at this point we'll opt for the easier
1768fb2caebeSRandy Fishel 	 * answer of dying horribly.  Provided the boot cpu is ok,
17697c478bd9Sstevel@tonic-gate 	 * the system can be recovered by booting with use_mp set to zero.
17707c478bd9Sstevel@tonic-gate 	 */
17717c478bd9Sstevel@tonic-gate 	if (workaround_errata(cp) != 0)
17727c478bd9Sstevel@tonic-gate 		panic("critical workaround(s) missing for cpu%d", cp->cpu_id);
17737c478bd9Sstevel@tonic-gate 
1774a3114836SGerry Liu 	/*
1775a3114836SGerry Liu 	 * We can touch cpu_flags here without acquiring the cpu_lock here
1776a3114836SGerry Liu 	 * because the cpu_lock is held by the control CPU which is running
1777a3114836SGerry Liu 	 * mp_start_cpu_common().
1778a3114836SGerry Liu 	 * Need to clear CPU_QUIESCED flag before calling any function which
1779a3114836SGerry Liu 	 * may cause thread context switching, such as kmem_alloc() etc.
1780a3114836SGerry Liu 	 * The idle thread checks for CPU_QUIESCED flag and loops for ever if
1781a3114836SGerry Liu 	 * it's set. So the startup thread may have no chance to switch back
1782a3114836SGerry Liu 	 * again if it's switched away with CPU_QUIESCED set.
1783a3114836SGerry Liu 	 */
1784a3114836SGerry Liu 	cp->cpu_flags &= ~(CPU_POWEROFF | CPU_QUIESCED);
1785a3114836SGerry Liu 
17867af88ac7SKuriakose Kuruvilla 	/*
17877af88ac7SKuriakose Kuruvilla 	 * Setup this processor for XSAVE.
17887af88ac7SKuriakose Kuruvilla 	 */
17897af88ac7SKuriakose Kuruvilla 	if (fp_save_mech == FP_XSAVE) {
17907af88ac7SKuriakose Kuruvilla 		xsave_setup_msr(cp);
17917af88ac7SKuriakose Kuruvilla 	}
17927af88ac7SKuriakose Kuruvilla 
17937c478bd9Sstevel@tonic-gate 	cpuid_pass2(cp);
17947c478bd9Sstevel@tonic-gate 	cpuid_pass3(cp);
1795ebb8ac07SRobert Mustacchi 	cpuid_pass4(cp, NULL);
17967c478bd9Sstevel@tonic-gate 
17972449e17fSsherrym 	/*
1798a3114836SGerry Liu 	 * Correct cpu_idstr and cpu_brandstr on target CPU after
1799a3114836SGerry Liu 	 * cpuid_pass1() is done.
18002449e17fSsherrym 	 */
1801a3114836SGerry Liu 	(void) cpuid_getidstr(cp, cp->cpu_idstr, CPU_IDSTRLEN);
1802a3114836SGerry Liu 	(void) cpuid_getbrandstr(cp, cp->cpu_brandstr, CPU_IDSTRLEN);
18032449e17fSsherrym 
1804a3114836SGerry Liu 	cp->cpu_flags |= CPU_RUNNING | CPU_READY | CPU_EXISTS;
18057c478bd9Sstevel@tonic-gate 
1806e774b42bSBill Holler 	post_startup_cpu_fixups();
1807e774b42bSBill Holler 
1808a3114836SGerry Liu 	cpu_event_init_cpu(cp);
1809a3114836SGerry Liu 
1810aa7b6435Ssethg 	/*
1811aa7b6435Ssethg 	 * Enable preemption here so that contention for any locks acquired
1812a3114836SGerry Liu 	 * later in mp_startup_common may be preempted if the thread owning
1813a3114836SGerry Liu 	 * those locks is continuously executing on other CPUs (for example,
1814a3114836SGerry Liu 	 * this CPU must be preemptible to allow other CPUs to pause it during
1815a3114836SGerry Liu 	 * their startup phases).  It's safe to enable preemption here because
1816a3114836SGerry Liu 	 * the CPU state is pretty-much fully constructed.
1817aa7b6435Ssethg 	 */
1818aa7b6435Ssethg 	curthread->t_preempt = 0;
1819aa7b6435Ssethg 
1820da43ceabSsethg 	/* The base spl should still be at LOCK LEVEL here */
1821da43ceabSsethg 	ASSERT(cp->cpu_base_spl == ipltospl(LOCK_LEVEL));
1822da43ceabSsethg 	set_base_spl();		/* Restore the spl to its proper value */
1823da43ceabSsethg 
1824a3114836SGerry Liu 	pghw_physid_create(cp);
18250e751525SEric Saxe 	/*
1826a3114836SGerry Liu 	 * Delegate initialization tasks, which need to access the cpu_lock,
1827a3114836SGerry Liu 	 * to mp_start_cpu_common() because we can't acquire the cpu_lock here
1828a3114836SGerry Liu 	 * during CPU DR operations.
18290e751525SEric Saxe 	 */
1830a3114836SGerry Liu 	mp_startup_signal(&procset_slave, cp->cpu_id);
1831a3114836SGerry Liu 	mp_startup_wait(&procset_master, cp->cpu_id);
18320e751525SEric Saxe 	pg_cmt_cpu_startup(cp);
1833a3114836SGerry Liu 
1834a3114836SGerry Liu 	if (boot) {
1835a3114836SGerry Liu 		mutex_enter(&cpu_lock);
1836a3114836SGerry Liu 		cp->cpu_flags &= ~CPU_OFFLINE;
1837a3114836SGerry Liu 		cpu_enable_intr(cp);
1838a3114836SGerry Liu 		cpu_add_active(cp);
1839a3114836SGerry Liu 		mutex_exit(&cpu_lock);
1840a3114836SGerry Liu 	}
18410e751525SEric Saxe 
1842afbc4541Ssherrym 	/* Enable interrupts */
1843afbc4541Ssherrym 	(void) spl0();
18440e751525SEric Saxe 
1845a3114836SGerry Liu 	/*
1846a3114836SGerry Liu 	 * Fill out cpu_ucode_info.  Update microcode if necessary.
1847a3114836SGerry Liu 	 */
1848a3114836SGerry Liu 	ucode_check(cp);
1849afbc4541Ssherrym 
185020c794b3Sgavinm #ifndef __xpv
185120c794b3Sgavinm 	{
185220c794b3Sgavinm 		/*
185320c794b3Sgavinm 		 * Set up the CPU module for this CPU.  This can't be done
185420c794b3Sgavinm 		 * before this CPU is made CPU_READY, because we may (in
185520c794b3Sgavinm 		 * heterogeneous systems) need to go load another CPU module.
185620c794b3Sgavinm 		 * The act of attempting to load a module may trigger a
185720c794b3Sgavinm 		 * cross-call, which will ASSERT unless this cpu is CPU_READY.
185820c794b3Sgavinm 		 */
185920c794b3Sgavinm 		cmi_hdl_t hdl;
18607aec1d6eScindi 
186120c794b3Sgavinm 		if ((hdl = cmi_init(CMI_HDL_NATIVE, cmi_ntv_hwchipid(CPU),
1862e4b86885SCheng Sean Ye 		    cmi_ntv_hwcoreid(CPU), cmi_ntv_hwstrandid(CPU))) != NULL) {
18637417cfdeSKuriakose Kuruvilla 			if (is_x86_feature(x86_featureset, X86FSET_MCA))
186420c794b3Sgavinm 				cmi_mca_init(hdl);
1865a3114836SGerry Liu 			cp->cpu_m.mcpu_cmi_hdl = hdl;
186620c794b3Sgavinm 		}
186720c794b3Sgavinm 	}
186820c794b3Sgavinm #endif /* __xpv */
18697aec1d6eScindi 
18707c478bd9Sstevel@tonic-gate 	if (boothowto & RB_DEBUG)
1871ae115bc7Smrj 		kdi_cpu_init();
18727c478bd9Sstevel@tonic-gate 
18737c478bd9Sstevel@tonic-gate 	/*
18747c478bd9Sstevel@tonic-gate 	 * Setting the bit in cpu_ready_set must be the last operation in
18757c478bd9Sstevel@tonic-gate 	 * processor initialization; the boot CPU will continue to boot once
18767c478bd9Sstevel@tonic-gate 	 * it sees this bit set for all active CPUs.
18777c478bd9Sstevel@tonic-gate 	 */
18787c478bd9Sstevel@tonic-gate 	CPUSET_ATOMIC_ADD(cpu_ready_set, cp->cpu_id);
18797c478bd9Sstevel@tonic-gate 
1880fa96bd91SMichael Corcoran 	(void) mach_cpu_create_device_node(cp, NULL);
1881fa96bd91SMichael Corcoran 
1882a3114836SGerry Liu 	cmn_err(CE_CONT, "?cpu%d: %s\n", cp->cpu_id, cp->cpu_idstr);
1883a3114836SGerry Liu 	cmn_err(CE_CONT, "?cpu%d: %s\n", cp->cpu_id, cp->cpu_brandstr);
1884a3114836SGerry Liu 	cmn_err(CE_CONT, "?cpu%d initialization complete - online\n",
1885a3114836SGerry Liu 	    cp->cpu_id);
1886a3114836SGerry Liu 
18877c478bd9Sstevel@tonic-gate 	/*
18887c478bd9Sstevel@tonic-gate 	 * Now we are done with the startup thread, so free it up.
18897c478bd9Sstevel@tonic-gate 	 */
18907c478bd9Sstevel@tonic-gate 	thread_exit();
18917c478bd9Sstevel@tonic-gate 	panic("mp_startup: cannot return");
18927c478bd9Sstevel@tonic-gate 	/*NOTREACHED*/
18937c478bd9Sstevel@tonic-gate }
18947c478bd9Sstevel@tonic-gate 
1895a3114836SGerry Liu /*
1896a3114836SGerry Liu  * Startup function for 'other' CPUs at boot time (besides boot cpu).
1897a3114836SGerry Liu  */
1898a3114836SGerry Liu static void
1899a3114836SGerry Liu mp_startup_boot(void)
1900a3114836SGerry Liu {
1901a3114836SGerry Liu 	mp_startup_common(B_TRUE);
1902a3114836SGerry Liu }
1903a3114836SGerry Liu 
1904a3114836SGerry Liu /*
1905a3114836SGerry Liu  * Startup function for hotplug CPUs at runtime.
1906a3114836SGerry Liu  */
1907a3114836SGerry Liu void
1908a3114836SGerry Liu mp_startup_hotplug(void)
1909a3114836SGerry Liu {
1910a3114836SGerry Liu 	mp_startup_common(B_FALSE);
1911a3114836SGerry Liu }
19127c478bd9Sstevel@tonic-gate 
19137c478bd9Sstevel@tonic-gate /*
19147c478bd9Sstevel@tonic-gate  * Start CPU on user request.
19157c478bd9Sstevel@tonic-gate  */
19167c478bd9Sstevel@tonic-gate /* ARGSUSED */
19177c478bd9Sstevel@tonic-gate int
19187c478bd9Sstevel@tonic-gate mp_cpu_start(struct cpu *cp)
19197c478bd9Sstevel@tonic-gate {
19207c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
19217c478bd9Sstevel@tonic-gate 	return (0);
19227c478bd9Sstevel@tonic-gate }
19237c478bd9Sstevel@tonic-gate 
19247c478bd9Sstevel@tonic-gate /*
19257c478bd9Sstevel@tonic-gate  * Stop CPU on user request.
19267c478bd9Sstevel@tonic-gate  */
19277c478bd9Sstevel@tonic-gate int
19287c478bd9Sstevel@tonic-gate mp_cpu_stop(struct cpu *cp)
19297c478bd9Sstevel@tonic-gate {
1930d90554ebSdmick 	extern int cbe_psm_timer_mode;
19317c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
1932d90554ebSdmick 
1933843e1988Sjohnlev #ifdef __xpv
1934843e1988Sjohnlev 	/*
1935843e1988Sjohnlev 	 * We can't offline vcpu0.
1936843e1988Sjohnlev 	 */
1937843e1988Sjohnlev 	if (cp->cpu_id == 0)
1938843e1988Sjohnlev 		return (EBUSY);
1939843e1988Sjohnlev #endif
1940843e1988Sjohnlev 
1941d90554ebSdmick 	/*
1942d90554ebSdmick 	 * If TIMER_PERIODIC mode is used, CPU0 is the one running it;
1943d90554ebSdmick 	 * can't stop it.  (This is true only for machines with no TSC.)
1944d90554ebSdmick 	 */
1945d90554ebSdmick 
1946d90554ebSdmick 	if ((cbe_psm_timer_mode == TIMER_PERIODIC) && (cp->cpu_id == 0))
1947843e1988Sjohnlev 		return (EBUSY);
19487c478bd9Sstevel@tonic-gate 
19497c478bd9Sstevel@tonic-gate 	return (0);
19507c478bd9Sstevel@tonic-gate }
19517c478bd9Sstevel@tonic-gate 
19527c478bd9Sstevel@tonic-gate /*
19537c478bd9Sstevel@tonic-gate  * Take the specified CPU out of participation in interrupts.
19547c478bd9Sstevel@tonic-gate  */
19557c478bd9Sstevel@tonic-gate int
19567c478bd9Sstevel@tonic-gate cpu_disable_intr(struct cpu *cp)
19577c478bd9Sstevel@tonic-gate {
19587c478bd9Sstevel@tonic-gate 	if (psm_disable_intr(cp->cpu_id) != DDI_SUCCESS)
19597c478bd9Sstevel@tonic-gate 		return (EBUSY);
19607c478bd9Sstevel@tonic-gate 
19617c478bd9Sstevel@tonic-gate 	cp->cpu_flags &= ~CPU_ENABLE;
19627c478bd9Sstevel@tonic-gate 	return (0);
19637c478bd9Sstevel@tonic-gate }
19647c478bd9Sstevel@tonic-gate 
19657c478bd9Sstevel@tonic-gate /*
19667c478bd9Sstevel@tonic-gate  * Allow the specified CPU to participate in interrupts.
19677c478bd9Sstevel@tonic-gate  */
19687c478bd9Sstevel@tonic-gate void
19697c478bd9Sstevel@tonic-gate cpu_enable_intr(struct cpu *cp)
19707c478bd9Sstevel@tonic-gate {
19717c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&cpu_lock));
19727c478bd9Sstevel@tonic-gate 	cp->cpu_flags |= CPU_ENABLE;
19737c478bd9Sstevel@tonic-gate 	psm_enable_intr(cp->cpu_id);
19747c478bd9Sstevel@tonic-gate }
19757c478bd9Sstevel@tonic-gate 
19767c478bd9Sstevel@tonic-gate void
19777c478bd9Sstevel@tonic-gate mp_cpu_faulted_enter(struct cpu *cp)
19787aec1d6eScindi {
1979a3114836SGerry Liu #ifdef __xpv
1980a3114836SGerry Liu 	_NOTE(ARGUNUSED(cp));
1981a3114836SGerry Liu #else
1982a3114836SGerry Liu 	cmi_hdl_t hdl = cp->cpu_m.mcpu_cmi_hdl;
198320c794b3Sgavinm 
1984a3114836SGerry Liu 	if (hdl != NULL) {
1985a3114836SGerry Liu 		cmi_hdl_hold(hdl);
1986a3114836SGerry Liu 	} else {
1987a3114836SGerry Liu 		hdl = cmi_hdl_lookup(CMI_HDL_NATIVE, cmi_ntv_hwchipid(cp),
1988a3114836SGerry Liu 		    cmi_ntv_hwcoreid(cp), cmi_ntv_hwstrandid(cp));
1989a3114836SGerry Liu 	}
199020c794b3Sgavinm 	if (hdl != NULL) {
199120c794b3Sgavinm 		cmi_faulted_enter(hdl);
199220c794b3Sgavinm 		cmi_hdl_rele(hdl);
199320c794b3Sgavinm 	}
199420c794b3Sgavinm #endif
19957aec1d6eScindi }
19967c478bd9Sstevel@tonic-gate 
19977c478bd9Sstevel@tonic-gate void
19987c478bd9Sstevel@tonic-gate mp_cpu_faulted_exit(struct cpu *cp)
19997aec1d6eScindi {
2000a3114836SGerry Liu #ifdef __xpv
2001a3114836SGerry Liu 	_NOTE(ARGUNUSED(cp));
2002a3114836SGerry Liu #else
2003a3114836SGerry Liu 	cmi_hdl_t hdl = cp->cpu_m.mcpu_cmi_hdl;
200420c794b3Sgavinm 
2005a3114836SGerry Liu 	if (hdl != NULL) {
2006a3114836SGerry Liu 		cmi_hdl_hold(hdl);
2007a3114836SGerry Liu 	} else {
2008a3114836SGerry Liu 		hdl = cmi_hdl_lookup(CMI_HDL_NATIVE, cmi_ntv_hwchipid(cp),
2009a3114836SGerry Liu 		    cmi_ntv_hwcoreid(cp), cmi_ntv_hwstrandid(cp));
2010a3114836SGerry Liu 	}
201120c794b3Sgavinm 	if (hdl != NULL) {
201220c794b3Sgavinm 		cmi_faulted_exit(hdl);
201320c794b3Sgavinm 		cmi_hdl_rele(hdl);
201420c794b3Sgavinm 	}
201520c794b3Sgavinm #endif
20167aec1d6eScindi }
20177c478bd9Sstevel@tonic-gate 
20187c478bd9Sstevel@tonic-gate /*
20197c478bd9Sstevel@tonic-gate  * The following two routines are used as context operators on threads belonging
20207c478bd9Sstevel@tonic-gate  * to processes with a private LDT (see sysi86).  Due to the rarity of such
20217c478bd9Sstevel@tonic-gate  * processes, these routines are currently written for best code readability and
20227417cfdeSKuriakose Kuruvilla  * organization rather than speed.  We could avoid checking x86_featureset at
20237417cfdeSKuriakose Kuruvilla  * every context switch by installing different context ops, depending on
20247417cfdeSKuriakose Kuruvilla  * x86_featureset, at LDT creation time -- one for each combination of fast
20257417cfdeSKuriakose Kuruvilla  * syscall features.
20267c478bd9Sstevel@tonic-gate  */
20277c478bd9Sstevel@tonic-gate 
20287c478bd9Sstevel@tonic-gate /*ARGSUSED*/
20297c478bd9Sstevel@tonic-gate void
20307c478bd9Sstevel@tonic-gate cpu_fast_syscall_disable(void *arg)
20317c478bd9Sstevel@tonic-gate {
20327417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
20337417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_SEP))
20347c478bd9Sstevel@tonic-gate 		cpu_sep_disable();
20357417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
20367417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_ASYSC))
20377c478bd9Sstevel@tonic-gate 		cpu_asysc_disable();
20387c478bd9Sstevel@tonic-gate }
20397c478bd9Sstevel@tonic-gate 
20407c478bd9Sstevel@tonic-gate /*ARGSUSED*/
20417c478bd9Sstevel@tonic-gate void
20427c478bd9Sstevel@tonic-gate cpu_fast_syscall_enable(void *arg)
20437c478bd9Sstevel@tonic-gate {
20447417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
20457417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_SEP))
20467c478bd9Sstevel@tonic-gate 		cpu_sep_enable();
20477417cfdeSKuriakose Kuruvilla 	if (is_x86_feature(x86_featureset, X86FSET_MSR) &&
20487417cfdeSKuriakose Kuruvilla 	    is_x86_feature(x86_featureset, X86FSET_ASYSC))
20497c478bd9Sstevel@tonic-gate 		cpu_asysc_enable();
20507c478bd9Sstevel@tonic-gate }
20517c478bd9Sstevel@tonic-gate 
20527c478bd9Sstevel@tonic-gate static void
20537c478bd9Sstevel@tonic-gate cpu_sep_enable(void)
20547c478bd9Sstevel@tonic-gate {
20557417cfdeSKuriakose Kuruvilla 	ASSERT(is_x86_feature(x86_featureset, X86FSET_SEP));
20567c478bd9Sstevel@tonic-gate 	ASSERT(curthread->t_preempt || getpil() >= LOCK_LEVEL);
20577c478bd9Sstevel@tonic-gate 
20580ac7d7d8Skucharsk 	wrmsr(MSR_INTC_SEP_CS, (uint64_t)(uintptr_t)KCS_SEL);
20597c478bd9Sstevel@tonic-gate }
20607c478bd9Sstevel@tonic-gate 
20617c478bd9Sstevel@tonic-gate static void
20627c478bd9Sstevel@tonic-gate cpu_sep_disable(void)
20637c478bd9Sstevel@tonic-gate {
20647417cfdeSKuriakose Kuruvilla 	ASSERT(is_x86_feature(x86_featureset, X86FSET_SEP));
20657c478bd9Sstevel@tonic-gate 	ASSERT(curthread->t_preempt || getpil() >= LOCK_LEVEL);
20667c478bd9Sstevel@tonic-gate 
20677c478bd9Sstevel@tonic-gate 	/*
20687c478bd9Sstevel@tonic-gate 	 * Setting the SYSENTER_CS_MSR register to 0 causes software executing
20697c478bd9Sstevel@tonic-gate 	 * the sysenter or sysexit instruction to trigger a #gp fault.
20707c478bd9Sstevel@tonic-gate 	 */
2071ae115bc7Smrj 	wrmsr(MSR_INTC_SEP_CS, 0);
20727c478bd9Sstevel@tonic-gate }
20737c478bd9Sstevel@tonic-gate 
20747c478bd9Sstevel@tonic-gate static void
20757c478bd9Sstevel@tonic-gate cpu_asysc_enable(void)
20767c478bd9Sstevel@tonic-gate {
20777417cfdeSKuriakose Kuruvilla 	ASSERT(is_x86_feature(x86_featureset, X86FSET_ASYSC));
20787c478bd9Sstevel@tonic-gate 	ASSERT(curthread->t_preempt || getpil() >= LOCK_LEVEL);
20797c478bd9Sstevel@tonic-gate 
20800ac7d7d8Skucharsk 	wrmsr(MSR_AMD_EFER, rdmsr(MSR_AMD_EFER) |
20810ac7d7d8Skucharsk 	    (uint64_t)(uintptr_t)AMD_EFER_SCE);
20827c478bd9Sstevel@tonic-gate }
20837c478bd9Sstevel@tonic-gate 
20847c478bd9Sstevel@tonic-gate static void
20857c478bd9Sstevel@tonic-gate cpu_asysc_disable(void)
20867c478bd9Sstevel@tonic-gate {
20877417cfdeSKuriakose Kuruvilla 	ASSERT(is_x86_feature(x86_featureset, X86FSET_ASYSC));
20887c478bd9Sstevel@tonic-gate 	ASSERT(curthread->t_preempt || getpil() >= LOCK_LEVEL);
20897c478bd9Sstevel@tonic-gate 
20907c478bd9Sstevel@tonic-gate 	/*
20917c478bd9Sstevel@tonic-gate 	 * Turn off the SCE (syscall enable) bit in the EFER register. Software
20927c478bd9Sstevel@tonic-gate 	 * executing syscall or sysret with this bit off will incur a #ud trap.
20937c478bd9Sstevel@tonic-gate 	 */
20940ac7d7d8Skucharsk 	wrmsr(MSR_AMD_EFER, rdmsr(MSR_AMD_EFER) &
20950ac7d7d8Skucharsk 	    ~((uint64_t)(uintptr_t)AMD_EFER_SCE));
20967c478bd9Sstevel@tonic-gate }
2097