xref: /illumos-gate/usr/src/uts/i86pc/os/mlsetup.c (revision 799823bbed51a695d01e13511bbb1369980bb714)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2012 Gary Mills
23  *
24  * Copyright (c) 1993, 2010, Oracle and/or its affiliates. All rights reserved.
25  * Copyright (c) 2011 by Delphix. All rights reserved.
26  */
27 /*
28  * Copyright (c) 2010, Intel Corporation.
29  * All rights reserved.
30  */
31 
32 #include <sys/types.h>
33 #include <sys/sysmacros.h>
34 #include <sys/disp.h>
35 #include <sys/promif.h>
36 #include <sys/clock.h>
37 #include <sys/cpuvar.h>
38 #include <sys/stack.h>
39 #include <vm/as.h>
40 #include <vm/hat.h>
41 #include <sys/reboot.h>
42 #include <sys/avintr.h>
43 #include <sys/vtrace.h>
44 #include <sys/proc.h>
45 #include <sys/thread.h>
46 #include <sys/cpupart.h>
47 #include <sys/pset.h>
48 #include <sys/copyops.h>
49 #include <sys/pg.h>
50 #include <sys/disp.h>
51 #include <sys/debug.h>
52 #include <sys/sunddi.h>
53 #include <sys/x86_archext.h>
54 #include <sys/privregs.h>
55 #include <sys/machsystm.h>
56 #include <sys/ontrap.h>
57 #include <sys/bootconf.h>
58 #include <sys/boot_console.h>
59 #include <sys/kdi_machimpl.h>
60 #include <sys/archsystm.h>
61 #include <sys/promif.h>
62 #include <sys/pci_cfgspace.h>
63 #ifdef __xpv
64 #include <sys/hypervisor.h>
65 #else
66 #include <sys/xpv_support.h>
67 #endif
68 
69 /*
70  * some globals for patching the result of cpuid
71  * to solve problems w/ creative cpu vendors
72  */
73 
74 extern uint32_t cpuid_feature_ecx_include;
75 extern uint32_t cpuid_feature_ecx_exclude;
76 extern uint32_t cpuid_feature_edx_include;
77 extern uint32_t cpuid_feature_edx_exclude;
78 
79 /*
80  * Set console mode
81  */
82 static void
83 set_console_mode(uint8_t val)
84 {
85 	struct bop_regs rp = {0};
86 
87 	rp.eax.byte.ah = 0x0;
88 	rp.eax.byte.al = val;
89 	rp.ebx.word.bx = 0x0;
90 
91 	BOP_DOINT(bootops, 0x10, &rp);
92 }
93 
94 
95 /*
96  * Setup routine called right before main(). Interposing this function
97  * before main() allows us to call it in a machine-independent fashion.
98  */
99 void
100 mlsetup(struct regs *rp)
101 {
102 	u_longlong_t prop_value;
103 	extern struct classfuncs sys_classfuncs;
104 	extern disp_t cpu0_disp;
105 	extern char t0stack[];
106 	extern int post_fastreboot;
107 	extern uint64_t plat_dr_options;
108 
109 	ASSERT_STACK_ALIGNED();
110 
111 	/*
112 	 * initialize cpu_self
113 	 */
114 	cpu[0]->cpu_self = cpu[0];
115 
116 #if defined(__xpv)
117 	/*
118 	 * Point at the hypervisor's virtual cpu structure
119 	 */
120 	cpu[0]->cpu_m.mcpu_vcpu_info = &HYPERVISOR_shared_info->vcpu_info[0];
121 #endif
122 
123 	/*
124 	 * check if we've got special bits to clear or set
125 	 * when checking cpu features
126 	 */
127 
128 	if (bootprop_getval("cpuid_feature_ecx_include", &prop_value) != 0)
129 		cpuid_feature_ecx_include = 0;
130 	else
131 		cpuid_feature_ecx_include = (uint32_t)prop_value;
132 
133 	if (bootprop_getval("cpuid_feature_ecx_exclude", &prop_value) != 0)
134 		cpuid_feature_ecx_exclude = 0;
135 	else
136 		cpuid_feature_ecx_exclude = (uint32_t)prop_value;
137 
138 	if (bootprop_getval("cpuid_feature_edx_include", &prop_value) != 0)
139 		cpuid_feature_edx_include = 0;
140 	else
141 		cpuid_feature_edx_include = (uint32_t)prop_value;
142 
143 	if (bootprop_getval("cpuid_feature_edx_exclude", &prop_value) != 0)
144 		cpuid_feature_edx_exclude = 0;
145 	else
146 		cpuid_feature_edx_exclude = (uint32_t)prop_value;
147 
148 	/*
149 	 * Initialize idt0, gdt0, ldt0_default, ktss0 and dftss.
150 	 */
151 	init_desctbls();
152 
153 	/*
154 	 * lgrp_init() and possibly cpuid_pass1() need PCI config
155 	 * space access
156 	 */
157 #if defined(__xpv)
158 	if (DOMAIN_IS_INITDOMAIN(xen_info))
159 		pci_cfgspace_init();
160 #else
161 	pci_cfgspace_init();
162 	/*
163 	 * Initialize the platform type from CPU 0 to ensure that
164 	 * determine_platform() is only ever called once.
165 	 */
166 	determine_platform();
167 #endif
168 
169 	/*
170 	 * The first lightweight pass (pass0) through the cpuid data
171 	 * was done in locore before mlsetup was called.  Do the next
172 	 * pass in C code.
173 	 *
174 	 * The x86_featureset is initialized here based on the capabilities
175 	 * of the boot CPU.  Note that if we choose to support CPUs that have
176 	 * different feature sets (at which point we would almost certainly
177 	 * want to set the feature bits to correspond to the feature
178 	 * minimum) this value may be altered.
179 	 */
180 	cpuid_pass1(cpu[0], x86_featureset);
181 
182 #if !defined(__xpv)
183 	if ((get_hwenv() & HW_XEN_HVM) != 0)
184 		xen_hvm_init();
185 
186 	/*
187 	 * Before we do anything with the TSCs, we need to work around
188 	 * Intel erratum BT81.  On some CPUs, warm reset does not
189 	 * clear the TSC.  If we are on such a CPU, we will clear TSC ourselves
190 	 * here.  Other CPUs will clear it when we boot them later, and the
191 	 * resulting skew will be handled by tsc_sync_master()/_slave();
192 	 * note that such skew already exists and has to be handled anyway.
193 	 *
194 	 * We do this only on metal.  This same problem can occur with a
195 	 * hypervisor that does not happen to virtualise a TSC that starts from
196 	 * zero, regardless of CPU type; however, we do not expect hypervisors
197 	 * that do not virtualise TSC that way to handle writes to TSC
198 	 * correctly, either.
199 	 */
200 	if (get_hwenv() == HW_NATIVE &&
201 	    cpuid_getvendor(CPU) == X86_VENDOR_Intel &&
202 	    cpuid_getfamily(CPU) == 6 &&
203 	    (cpuid_getmodel(CPU) == 0x2d || cpuid_getmodel(CPU) == 0x3e) &&
204 	    is_x86_feature(x86_featureset, X86FSET_TSC)) {
205 		(void) wrmsr(REG_TSC, 0UL);
206 	}
207 
208 	/*
209 	 * Patch the tsc_read routine with appropriate set of instructions,
210 	 * depending on the processor family and architecure, to read the
211 	 * time-stamp counter while ensuring no out-of-order execution.
212 	 * Patch it while the kernel text is still writable.
213 	 *
214 	 * Note: tsc_read is not patched for intel processors whose family
215 	 * is >6 and for amd whose family >f (in case they don't support rdtscp
216 	 * instruction, unlikely). By default tsc_read will use cpuid for
217 	 * serialization in such cases. The following code needs to be
218 	 * revisited if intel processors of family >= f retains the
219 	 * instruction serialization nature of mfence instruction.
220 	 * Note: tsc_read is not patched for x86 processors which do
221 	 * not support "mfence". By default tsc_read will use cpuid for
222 	 * serialization in such cases.
223 	 *
224 	 * The Xen hypervisor does not correctly report whether rdtscp is
225 	 * supported or not, so we must assume that it is not.
226 	 */
227 	if ((get_hwenv() & HW_XEN_HVM) == 0 &&
228 	    is_x86_feature(x86_featureset, X86FSET_TSCP))
229 		patch_tsc_read(X86_HAVE_TSCP);
230 	else if (cpuid_getvendor(CPU) == X86_VENDOR_AMD &&
231 	    cpuid_getfamily(CPU) <= 0xf &&
232 	    is_x86_feature(x86_featureset, X86FSET_SSE2))
233 		patch_tsc_read(X86_TSC_MFENCE);
234 	else if (cpuid_getvendor(CPU) == X86_VENDOR_Intel &&
235 	    cpuid_getfamily(CPU) <= 6 &&
236 	    is_x86_feature(x86_featureset, X86FSET_SSE2))
237 		patch_tsc_read(X86_TSC_LFENCE);
238 
239 #endif	/* !__xpv */
240 
241 #if defined(__i386) && !defined(__xpv)
242 	/*
243 	 * Some i386 processors do not implement the rdtsc instruction,
244 	 * or at least they do not implement it correctly. Patch them to
245 	 * return 0.
246 	 */
247 	if (!is_x86_feature(x86_featureset, X86FSET_TSC))
248 		patch_tsc_read(X86_NO_TSC);
249 #endif	/* __i386 && !__xpv */
250 
251 #if defined(__amd64) && !defined(__xpv)
252 	patch_memops(cpuid_getvendor(CPU));
253 #endif	/* __amd64 && !__xpv */
254 
255 #if !defined(__xpv)
256 	/* XXPV	what, if anything, should be dorked with here under xen? */
257 
258 	/*
259 	 * While we're thinking about the TSC, let's set up %cr4 so that
260 	 * userland can issue rdtsc, and initialize the TSC_AUX value
261 	 * (the cpuid) for the rdtscp instruction on appropriately
262 	 * capable hardware.
263 	 */
264 	if (is_x86_feature(x86_featureset, X86FSET_TSC))
265 		setcr4(getcr4() & ~CR4_TSD);
266 
267 	if (is_x86_feature(x86_featureset, X86FSET_TSCP))
268 		(void) wrmsr(MSR_AMD_TSCAUX, 0);
269 
270 	/*
271 	 * Let's get the other %cr4 stuff while we're here.
272 	 */
273 	if (is_x86_feature(x86_featureset, X86FSET_DE))
274 		setcr4(getcr4() | CR4_DE);
275 
276 	if (is_x86_feature(x86_featureset, X86FSET_SMEP))
277 		setcr4(getcr4() | CR4_SMEP);
278 #endif /* __xpv */
279 
280 	/*
281 	 * initialize t0
282 	 */
283 	t0.t_stk = (caddr_t)rp - MINFRAME;
284 	t0.t_stkbase = t0stack;
285 	t0.t_pri = maxclsyspri - 3;
286 	t0.t_schedflag = TS_LOAD | TS_DONT_SWAP;
287 	t0.t_procp = &p0;
288 	t0.t_plockp = &p0lock.pl_lock;
289 	t0.t_lwp = &lwp0;
290 	t0.t_forw = &t0;
291 	t0.t_back = &t0;
292 	t0.t_next = &t0;
293 	t0.t_prev = &t0;
294 	t0.t_cpu = cpu[0];
295 	t0.t_disp_queue = &cpu0_disp;
296 	t0.t_bind_cpu = PBIND_NONE;
297 	t0.t_bind_pset = PS_NONE;
298 	t0.t_bindflag = (uchar_t)default_binding_mode;
299 	t0.t_cpupart = &cp_default;
300 	t0.t_clfuncs = &sys_classfuncs.thread;
301 	t0.t_copyops = NULL;
302 	THREAD_ONPROC(&t0, CPU);
303 
304 	lwp0.lwp_thread = &t0;
305 	lwp0.lwp_regs = (void *)rp;
306 	lwp0.lwp_procp = &p0;
307 	t0.t_tid = p0.p_lwpcnt = p0.p_lwprcnt = p0.p_lwpid = 1;
308 
309 	p0.p_exec = NULL;
310 	p0.p_stat = SRUN;
311 	p0.p_flag = SSYS;
312 	p0.p_tlist = &t0;
313 	p0.p_stksize = 2*PAGESIZE;
314 	p0.p_stkpageszc = 0;
315 	p0.p_as = &kas;
316 	p0.p_lockp = &p0lock;
317 	p0.p_brkpageszc = 0;
318 	p0.p_t1_lgrpid = LGRP_NONE;
319 	p0.p_tr_lgrpid = LGRP_NONE;
320 	sigorset(&p0.p_ignore, &ignoredefault);
321 
322 	CPU->cpu_thread = &t0;
323 	bzero(&cpu0_disp, sizeof (disp_t));
324 	CPU->cpu_disp = &cpu0_disp;
325 	CPU->cpu_disp->disp_cpu = CPU;
326 	CPU->cpu_dispthread = &t0;
327 	CPU->cpu_idle_thread = &t0;
328 	CPU->cpu_flags = CPU_READY | CPU_RUNNING | CPU_EXISTS | CPU_ENABLE;
329 	CPU->cpu_dispatch_pri = t0.t_pri;
330 
331 	CPU->cpu_id = 0;
332 
333 	CPU->cpu_pri = 12;		/* initial PIL for the boot CPU */
334 
335 	/*
336 	 * The kernel doesn't use LDTs unless a process explicitly requests one.
337 	 */
338 	p0.p_ldt_desc = null_sdesc;
339 
340 	/*
341 	 * Initialize thread/cpu microstate accounting
342 	 */
343 	init_mstate(&t0, LMS_SYSTEM);
344 	init_cpu_mstate(CPU, CMS_SYSTEM);
345 
346 	/*
347 	 * Initialize lists of available and active CPUs.
348 	 */
349 	cpu_list_init(CPU);
350 
351 	pg_cpu_bootstrap(CPU);
352 
353 	/*
354 	 * Now that we have taken over the GDT, IDT and have initialized
355 	 * active CPU list it's time to inform kmdb if present.
356 	 */
357 	if (boothowto & RB_DEBUG)
358 		kdi_idt_sync();
359 
360 	/*
361 	 * Explicitly set console to text mode (0x3) if this is a boot
362 	 * post Fast Reboot, and the console is set to CONS_SCREEN_TEXT.
363 	 */
364 	if (post_fastreboot && boot_console_type(NULL) == CONS_SCREEN_TEXT)
365 		set_console_mode(0x3);
366 
367 	/*
368 	 * If requested (boot -d) drop into kmdb.
369 	 *
370 	 * This must be done after cpu_list_init() on the 64-bit kernel
371 	 * since taking a trap requires that we re-compute gsbase based
372 	 * on the cpu list.
373 	 */
374 	if (boothowto & RB_DEBUGENTER)
375 		kmdb_enter();
376 
377 	cpu_vm_data_init(CPU);
378 
379 	rp->r_fp = 0;	/* terminate kernel stack traces! */
380 
381 	prom_init("kernel", (void *)NULL);
382 
383 	/* User-set option overrides firmware value. */
384 	if (bootprop_getval(PLAT_DR_OPTIONS_NAME, &prop_value) == 0) {
385 		plat_dr_options = (uint64_t)prop_value;
386 	}
387 #if defined(__xpv)
388 	/* No support of DR operations on xpv */
389 	plat_dr_options = 0;
390 #else	/* __xpv */
391 	/* Flag PLAT_DR_FEATURE_ENABLED should only be set by DR driver. */
392 	plat_dr_options &= ~PLAT_DR_FEATURE_ENABLED;
393 #ifndef	__amd64
394 	/* Only enable CPU/memory DR on 64 bits kernel. */
395 	plat_dr_options &= ~PLAT_DR_FEATURE_MEMORY;
396 	plat_dr_options &= ~PLAT_DR_FEATURE_CPU;
397 #endif	/* __amd64 */
398 #endif	/* __xpv */
399 
400 	/*
401 	 * Get value of "plat_dr_physmax" boot option.
402 	 * It overrides values calculated from MSCT or SRAT table.
403 	 */
404 	if (bootprop_getval(PLAT_DR_PHYSMAX_NAME, &prop_value) == 0) {
405 		plat_dr_physmax = ((uint64_t)prop_value) >> PAGESHIFT;
406 	}
407 
408 	/* Get value of boot_ncpus. */
409 	if (bootprop_getval(BOOT_NCPUS_NAME, &prop_value) != 0) {
410 		boot_ncpus = NCPU;
411 	} else {
412 		boot_ncpus = (int)prop_value;
413 		if (boot_ncpus <= 0 || boot_ncpus > NCPU)
414 			boot_ncpus = NCPU;
415 	}
416 
417 	/*
418 	 * Set max_ncpus and boot_max_ncpus to boot_ncpus if platform doesn't
419 	 * support CPU DR operations.
420 	 */
421 	if (plat_dr_support_cpu() == 0) {
422 		max_ncpus = boot_max_ncpus = boot_ncpus;
423 	} else {
424 		if (bootprop_getval(PLAT_MAX_NCPUS_NAME, &prop_value) != 0) {
425 			max_ncpus = NCPU;
426 		} else {
427 			max_ncpus = (int)prop_value;
428 			if (max_ncpus <= 0 || max_ncpus > NCPU) {
429 				max_ncpus = NCPU;
430 			}
431 			if (boot_ncpus > max_ncpus) {
432 				boot_ncpus = max_ncpus;
433 			}
434 		}
435 
436 		if (bootprop_getval(BOOT_MAX_NCPUS_NAME, &prop_value) != 0) {
437 			boot_max_ncpus = boot_ncpus;
438 		} else {
439 			boot_max_ncpus = (int)prop_value;
440 			if (boot_max_ncpus <= 0 || boot_max_ncpus > NCPU) {
441 				boot_max_ncpus = boot_ncpus;
442 			} else if (boot_max_ncpus > max_ncpus) {
443 				boot_max_ncpus = max_ncpus;
444 			}
445 		}
446 	}
447 
448 	/*
449 	 * Initialize the lgrp framework
450 	 */
451 	lgrp_init(LGRP_INIT_STAGE1);
452 
453 	if (boothowto & RB_HALT) {
454 		prom_printf("unix: kernel halted by -h flag\n");
455 		prom_enter_mon();
456 	}
457 
458 	ASSERT_STACK_ALIGNED();
459 
460 	/*
461 	 * Fill out cpu_ucode_info.  Update microcode if necessary.
462 	 */
463 	ucode_check(CPU);
464 
465 	if (workaround_errata(CPU) != 0)
466 		panic("critical workaround(s) missing for boot cpu");
467 }
468 
469 
470 void
471 mach_modpath(char *path, const char *filename)
472 {
473 	/*
474 	 * Construct the directory path from the filename.
475 	 */
476 
477 	int len;
478 	char *p;
479 	const char isastr[] = "/amd64";
480 	size_t isalen = strlen(isastr);
481 
482 	if ((p = strrchr(filename, '/')) == NULL)
483 		return;
484 
485 	while (p > filename && *(p - 1) == '/')
486 		p--;	/* remove trailing '/' characters */
487 	if (p == filename)
488 		p++;	/* so "/" -is- the modpath in this case */
489 
490 	/*
491 	 * Remove optional isa-dependent directory name - the module
492 	 * subsystem will put this back again (!)
493 	 */
494 	len = p - filename;
495 	if (len > isalen &&
496 	    strncmp(&filename[len - isalen], isastr, isalen) == 0)
497 		p -= isalen;
498 
499 	/*
500 	 * "/platform/mumblefrotz" + " " + MOD_DEFPATH
501 	 */
502 	len += (p - filename) + 1 + strlen(MOD_DEFPATH) + 1;
503 	(void) strncpy(path, filename, p - filename);
504 }
505