xref: /titanic_53/usr/src/uts/i86pc/os/machdep.c (revision ae115bc77f6fcde83175c75b4206dc2e50747966)
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
5fea9cb91Slq150181  * Common Development and Distribution License (the "License").
6fea9cb91Slq150181  * 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  */
21fea9cb91Slq150181 
227c478bd9Sstevel@tonic-gate /*
23*ae115bc7Smrj  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #include <sys/types.h>
307c478bd9Sstevel@tonic-gate #include <sys/t_lock.h>
317c478bd9Sstevel@tonic-gate #include <sys/param.h>
327c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
337c478bd9Sstevel@tonic-gate #include <sys/signal.h>
347c478bd9Sstevel@tonic-gate #include <sys/systm.h>
357c478bd9Sstevel@tonic-gate #include <sys/user.h>
367c478bd9Sstevel@tonic-gate #include <sys/mman.h>
377c478bd9Sstevel@tonic-gate #include <sys/vm.h>
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate #include <sys/disp.h>
407c478bd9Sstevel@tonic-gate #include <sys/class.h>
417c478bd9Sstevel@tonic-gate 
427c478bd9Sstevel@tonic-gate #include <sys/proc.h>
437c478bd9Sstevel@tonic-gate #include <sys/buf.h>
447c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate #include <sys/reboot.h>
477c478bd9Sstevel@tonic-gate #include <sys/uadmin.h>
487c478bd9Sstevel@tonic-gate #include <sys/callb.h>
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate #include <sys/cred.h>
517c478bd9Sstevel@tonic-gate #include <sys/vnode.h>
527c478bd9Sstevel@tonic-gate #include <sys/file.h>
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate #include <sys/procfs.h>
557c478bd9Sstevel@tonic-gate #include <sys/acct.h>
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate #include <sys/vfs.h>
587c478bd9Sstevel@tonic-gate #include <sys/dnlc.h>
597c478bd9Sstevel@tonic-gate #include <sys/var.h>
607c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
617c478bd9Sstevel@tonic-gate #include <sys/utsname.h>
627c478bd9Sstevel@tonic-gate #include <sys/debug.h>
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate #include <sys/dumphdr.h>
657c478bd9Sstevel@tonic-gate #include <sys/bootconf.h>
667c478bd9Sstevel@tonic-gate #include <sys/varargs.h>
677c478bd9Sstevel@tonic-gate #include <sys/promif.h>
687c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate #include <sys/consdev.h>
717c478bd9Sstevel@tonic-gate #include <sys/frame.h>
727c478bd9Sstevel@tonic-gate 
737c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
747c478bd9Sstevel@tonic-gate #include <sys/ddidmareq.h>
757c478bd9Sstevel@tonic-gate #include <sys/psw.h>
767c478bd9Sstevel@tonic-gate #include <sys/regset.h>
777c478bd9Sstevel@tonic-gate #include <sys/privregs.h>
787c478bd9Sstevel@tonic-gate #include <sys/clock.h>
797c478bd9Sstevel@tonic-gate #include <sys/tss.h>
807c478bd9Sstevel@tonic-gate #include <sys/cpu.h>
817c478bd9Sstevel@tonic-gate #include <sys/stack.h>
827c478bd9Sstevel@tonic-gate #include <sys/trap.h>
837c478bd9Sstevel@tonic-gate #include <sys/pic.h>
847c478bd9Sstevel@tonic-gate #include <vm/hat.h>
857c478bd9Sstevel@tonic-gate #include <vm/anon.h>
867c478bd9Sstevel@tonic-gate #include <vm/as.h>
877c478bd9Sstevel@tonic-gate #include <vm/page.h>
887c478bd9Sstevel@tonic-gate #include <vm/seg.h>
897c478bd9Sstevel@tonic-gate #include <vm/seg_kmem.h>
907c478bd9Sstevel@tonic-gate #include <vm/seg_map.h>
917c478bd9Sstevel@tonic-gate #include <vm/seg_vn.h>
927c478bd9Sstevel@tonic-gate #include <vm/seg_kp.h>
937c478bd9Sstevel@tonic-gate #include <vm/hat_i86.h>
947c478bd9Sstevel@tonic-gate #include <sys/swap.h>
957c478bd9Sstevel@tonic-gate #include <sys/thread.h>
967c478bd9Sstevel@tonic-gate #include <sys/sysconf.h>
977c478bd9Sstevel@tonic-gate #include <sys/vm_machparam.h>
987c478bd9Sstevel@tonic-gate #include <sys/archsystm.h>
997c478bd9Sstevel@tonic-gate #include <sys/machsystm.h>
1007c478bd9Sstevel@tonic-gate #include <sys/machlock.h>
1017c478bd9Sstevel@tonic-gate #include <sys/x_call.h>
1027c478bd9Sstevel@tonic-gate #include <sys/instance.h>
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate #include <sys/time.h>
1057c478bd9Sstevel@tonic-gate #include <sys/smp_impldefs.h>
1067c478bd9Sstevel@tonic-gate #include <sys/psm_types.h>
1077c478bd9Sstevel@tonic-gate #include <sys/atomic.h>
1087c478bd9Sstevel@tonic-gate #include <sys/panic.h>
1097c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
1107c478bd9Sstevel@tonic-gate #include <sys/dtrace.h>
1117c478bd9Sstevel@tonic-gate #include <sys/bl.h>
1127c478bd9Sstevel@tonic-gate #include <sys/nvpair.h>
1137c478bd9Sstevel@tonic-gate #include <sys/x86_archext.h>
1147c478bd9Sstevel@tonic-gate #include <sys/pool_pset.h>
1157c478bd9Sstevel@tonic-gate #include <sys/autoconf.h>
116*ae115bc7Smrj #include <sys/mem.h>
117*ae115bc7Smrj #include <sys/dumphdr.h>
118*ae115bc7Smrj #include <sys/compress.h>
1197c478bd9Sstevel@tonic-gate 
1207c478bd9Sstevel@tonic-gate #ifdef	TRAPTRACE
1217c478bd9Sstevel@tonic-gate #include <sys/traptrace.h>
1227c478bd9Sstevel@tonic-gate #endif	/* TRAPTRACE */
1237c478bd9Sstevel@tonic-gate 
1247c478bd9Sstevel@tonic-gate #ifdef C2_AUDIT
1257c478bd9Sstevel@tonic-gate extern void audit_enterprom(int);
1267c478bd9Sstevel@tonic-gate extern void audit_exitprom(int);
1277c478bd9Sstevel@tonic-gate #endif
1287c478bd9Sstevel@tonic-gate 
1297c478bd9Sstevel@tonic-gate /*
1307c478bd9Sstevel@tonic-gate  * The panicbuf array is used to record messages and state:
1317c478bd9Sstevel@tonic-gate  */
1327c478bd9Sstevel@tonic-gate char panicbuf[PANICBUFSIZE];
1337c478bd9Sstevel@tonic-gate 
1347c478bd9Sstevel@tonic-gate /*
1357c478bd9Sstevel@tonic-gate  * maxphys - used during physio
1367c478bd9Sstevel@tonic-gate  * klustsize - used for klustering by swapfs and specfs
1377c478bd9Sstevel@tonic-gate  */
1387c478bd9Sstevel@tonic-gate int maxphys = 56 * 1024;    /* XXX See vm_subr.c - max b_count in physio */
1397c478bd9Sstevel@tonic-gate int klustsize = 56 * 1024;
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate caddr_t	p0_va;		/* Virtual address for accessing physical page 0 */
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate /*
1447c478bd9Sstevel@tonic-gate  * defined here, though unused on x86,
1457c478bd9Sstevel@tonic-gate  * to make kstat_fr.c happy.
1467c478bd9Sstevel@tonic-gate  */
1477c478bd9Sstevel@tonic-gate int vac;
1487c478bd9Sstevel@tonic-gate 
1497c478bd9Sstevel@tonic-gate void stop_other_cpus();
1507c478bd9Sstevel@tonic-gate void debug_enter(char *);
1517c478bd9Sstevel@tonic-gate 
1527c478bd9Sstevel@tonic-gate extern void pm_cfb_check_and_powerup(void);
1537c478bd9Sstevel@tonic-gate extern void pm_cfb_rele(void);
1547c478bd9Sstevel@tonic-gate 
1557c478bd9Sstevel@tonic-gate /*
1567c478bd9Sstevel@tonic-gate  * Machine dependent code to reboot.
1577c478bd9Sstevel@tonic-gate  * "mdep" is interpreted as a character pointer; if non-null, it is a pointer
1587c478bd9Sstevel@tonic-gate  * to a string to be used as the argument string when rebooting.
159edc40228Sachartre  *
160edc40228Sachartre  * "invoke_cb" is a boolean. It is set to true when mdboot() can safely
161edc40228Sachartre  * invoke CB_CL_MDBOOT callbacks before shutting the system down, i.e. when
162edc40228Sachartre  * we are in a normal shutdown sequence (interrupts are not blocked, the
163edc40228Sachartre  * system is not panic'ing or being suspended).
1647c478bd9Sstevel@tonic-gate  */
1657c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1667c478bd9Sstevel@tonic-gate void
167edc40228Sachartre mdboot(int cmd, int fcn, char *mdep, boolean_t invoke_cb)
1687c478bd9Sstevel@tonic-gate {
1697c478bd9Sstevel@tonic-gate 	extern void mtrr_resync(void);
1707c478bd9Sstevel@tonic-gate 
1717c478bd9Sstevel@tonic-gate 	if (!panicstr) {
1727c478bd9Sstevel@tonic-gate 		kpreempt_disable();
173d90554ebSdmick 		affinity_set(CPU_CURRENT);
1747c478bd9Sstevel@tonic-gate 	}
1757c478bd9Sstevel@tonic-gate 
1767c478bd9Sstevel@tonic-gate 	/*
1777c478bd9Sstevel@tonic-gate 	 * XXX - rconsvp is set to NULL to ensure that output messages
1787c478bd9Sstevel@tonic-gate 	 * are sent to the underlying "hardware" device using the
1797c478bd9Sstevel@tonic-gate 	 * monitor's printf routine since we are in the process of
1807c478bd9Sstevel@tonic-gate 	 * either rebooting or halting the machine.
1817c478bd9Sstevel@tonic-gate 	 */
1827c478bd9Sstevel@tonic-gate 	rconsvp = NULL;
1837c478bd9Sstevel@tonic-gate 
1847c478bd9Sstevel@tonic-gate 	/*
1857c478bd9Sstevel@tonic-gate 	 * Print the reboot message now, before pausing other cpus.
1867c478bd9Sstevel@tonic-gate 	 * There is a race condition in the printing support that
1877c478bd9Sstevel@tonic-gate 	 * can deadlock multiprocessor machines.
1887c478bd9Sstevel@tonic-gate 	 */
1897c478bd9Sstevel@tonic-gate 	if (!(fcn == AD_HALT || fcn == AD_POWEROFF))
1907c478bd9Sstevel@tonic-gate 		prom_printf("rebooting...\n");
1917c478bd9Sstevel@tonic-gate 
1927c478bd9Sstevel@tonic-gate 	/*
1937c478bd9Sstevel@tonic-gate 	 * We can't bring up the console from above lock level, so do it now
1947c478bd9Sstevel@tonic-gate 	 */
1957c478bd9Sstevel@tonic-gate 	pm_cfb_check_and_powerup();
1967c478bd9Sstevel@tonic-gate 
1977c478bd9Sstevel@tonic-gate 	/* make sure there are no more changes to the device tree */
1987c478bd9Sstevel@tonic-gate 	devtree_freeze();
1997c478bd9Sstevel@tonic-gate 
200edc40228Sachartre 	if (invoke_cb)
201edc40228Sachartre 		(void) callb_execute_class(CB_CL_MDBOOT, NULL);
202edc40228Sachartre 
2038b464eb8Smec 	/*
2048b464eb8Smec 	 * Clear any unresolved UEs from memory.
2058b464eb8Smec 	 */
2068b464eb8Smec 	page_retire_mdboot();
207db874c57Selowe 
2087c478bd9Sstevel@tonic-gate 	/*
2097c478bd9Sstevel@tonic-gate 	 * stop other cpus and raise our priority.  since there is only
2107c478bd9Sstevel@tonic-gate 	 * one active cpu after this, and our priority will be too high
2117c478bd9Sstevel@tonic-gate 	 * for us to be preempted, we're essentially single threaded
2127c478bd9Sstevel@tonic-gate 	 * from here on out.
2137c478bd9Sstevel@tonic-gate 	 */
2147c478bd9Sstevel@tonic-gate 	(void) spl6();
2157c478bd9Sstevel@tonic-gate 	if (!panicstr) {
2167c478bd9Sstevel@tonic-gate 		mutex_enter(&cpu_lock);
2177c478bd9Sstevel@tonic-gate 		pause_cpus(NULL);
2187c478bd9Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
2197c478bd9Sstevel@tonic-gate 	}
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate 	/*
2227c478bd9Sstevel@tonic-gate 	 * try and reset leaf devices.  reset_leaves() should only
2237c478bd9Sstevel@tonic-gate 	 * be called when there are no other threads that could be
2247c478bd9Sstevel@tonic-gate 	 * accessing devices
2257c478bd9Sstevel@tonic-gate 	 */
2267c478bd9Sstevel@tonic-gate 	reset_leaves();
2277c478bd9Sstevel@tonic-gate 
2287c478bd9Sstevel@tonic-gate 	(void) spl8();
2297c478bd9Sstevel@tonic-gate 	(*psm_shutdownf)(cmd, fcn);
2307c478bd9Sstevel@tonic-gate 
2317c478bd9Sstevel@tonic-gate 	mtrr_resync();
2327c478bd9Sstevel@tonic-gate 
2337c478bd9Sstevel@tonic-gate 	if (fcn == AD_HALT || fcn == AD_POWEROFF)
2347c478bd9Sstevel@tonic-gate 		halt((char *)NULL);
2357c478bd9Sstevel@tonic-gate 	else
2367c478bd9Sstevel@tonic-gate 		prom_reboot("");
2377c478bd9Sstevel@tonic-gate 	/*NOTREACHED*/
2387c478bd9Sstevel@tonic-gate }
2397c478bd9Sstevel@tonic-gate 
2407c478bd9Sstevel@tonic-gate /* mdpreboot - may be called prior to mdboot while root fs still mounted */
2417c478bd9Sstevel@tonic-gate /*ARGSUSED*/
2427c478bd9Sstevel@tonic-gate void
2437c478bd9Sstevel@tonic-gate mdpreboot(int cmd, int fcn, char *mdep)
2447c478bd9Sstevel@tonic-gate {
2457c478bd9Sstevel@tonic-gate 	(*psm_preshutdownf)(cmd, fcn);
2467c478bd9Sstevel@tonic-gate }
2477c478bd9Sstevel@tonic-gate 
2487c478bd9Sstevel@tonic-gate void
2497c478bd9Sstevel@tonic-gate idle_other_cpus()
2507c478bd9Sstevel@tonic-gate {
2517c478bd9Sstevel@tonic-gate 	int cpuid = CPU->cpu_id;
2527c478bd9Sstevel@tonic-gate 	cpuset_t xcset;
2537c478bd9Sstevel@tonic-gate 
2547c478bd9Sstevel@tonic-gate 	ASSERT(cpuid < NCPU);
2557c478bd9Sstevel@tonic-gate 	CPUSET_ALL_BUT(xcset, cpuid);
2567c478bd9Sstevel@tonic-gate 	xc_capture_cpus(xcset);
2577c478bd9Sstevel@tonic-gate }
2587c478bd9Sstevel@tonic-gate 
2597c478bd9Sstevel@tonic-gate void
2607c478bd9Sstevel@tonic-gate resume_other_cpus()
2617c478bd9Sstevel@tonic-gate {
2627c478bd9Sstevel@tonic-gate 	ASSERT(CPU->cpu_id < NCPU);
2637c478bd9Sstevel@tonic-gate 
2647c478bd9Sstevel@tonic-gate 	xc_release_cpus();
2657c478bd9Sstevel@tonic-gate }
2667c478bd9Sstevel@tonic-gate 
2677c478bd9Sstevel@tonic-gate void
2687c478bd9Sstevel@tonic-gate stop_other_cpus()
2697c478bd9Sstevel@tonic-gate {
2707c478bd9Sstevel@tonic-gate 	int cpuid = CPU->cpu_id;
2717c478bd9Sstevel@tonic-gate 	cpuset_t xcset;
2727c478bd9Sstevel@tonic-gate 
2737c478bd9Sstevel@tonic-gate 	ASSERT(cpuid < NCPU);
2747c478bd9Sstevel@tonic-gate 
2757c478bd9Sstevel@tonic-gate 	/*
276*ae115bc7Smrj 	 * xc_trycall will attempt to make all other CPUs execute mach_cpu_halt,
2777c478bd9Sstevel@tonic-gate 	 * and will return immediately regardless of whether or not it was
2787c478bd9Sstevel@tonic-gate 	 * able to make them do it.
2797c478bd9Sstevel@tonic-gate 	 */
2807c478bd9Sstevel@tonic-gate 	CPUSET_ALL_BUT(xcset, cpuid);
281*ae115bc7Smrj 	xc_trycall(NULL, NULL, NULL, xcset, (int (*)())mach_cpu_halt);
2827c478bd9Sstevel@tonic-gate }
2837c478bd9Sstevel@tonic-gate 
2847c478bd9Sstevel@tonic-gate /*
2857c478bd9Sstevel@tonic-gate  *	Machine dependent abort sequence handling
2867c478bd9Sstevel@tonic-gate  */
2877c478bd9Sstevel@tonic-gate void
2887c478bd9Sstevel@tonic-gate abort_sequence_enter(char *msg)
2897c478bd9Sstevel@tonic-gate {
2907c478bd9Sstevel@tonic-gate 	if (abort_enable == 0) {
2917c478bd9Sstevel@tonic-gate #ifdef C2_AUDIT
2927c478bd9Sstevel@tonic-gate 		if (audit_active)
2937c478bd9Sstevel@tonic-gate 			audit_enterprom(0);
2947c478bd9Sstevel@tonic-gate #endif /* C2_AUDIT */
2957c478bd9Sstevel@tonic-gate 		return;
2967c478bd9Sstevel@tonic-gate 	}
2977c478bd9Sstevel@tonic-gate #ifdef C2_AUDIT
2987c478bd9Sstevel@tonic-gate 	if (audit_active)
2997c478bd9Sstevel@tonic-gate 		audit_enterprom(1);
3007c478bd9Sstevel@tonic-gate #endif /* C2_AUDIT */
3017c478bd9Sstevel@tonic-gate 	debug_enter(msg);
3027c478bd9Sstevel@tonic-gate #ifdef C2_AUDIT
3037c478bd9Sstevel@tonic-gate 	if (audit_active)
3047c478bd9Sstevel@tonic-gate 		audit_exitprom(1);
3057c478bd9Sstevel@tonic-gate #endif /* C2_AUDIT */
3067c478bd9Sstevel@tonic-gate }
3077c478bd9Sstevel@tonic-gate 
3087c478bd9Sstevel@tonic-gate /*
3097c478bd9Sstevel@tonic-gate  * Enter debugger.  Called when the user types ctrl-alt-d or whenever
3107c478bd9Sstevel@tonic-gate  * code wants to enter the debugger and possibly resume later.
3117c478bd9Sstevel@tonic-gate  */
3127c478bd9Sstevel@tonic-gate void
3137c478bd9Sstevel@tonic-gate debug_enter(
3147c478bd9Sstevel@tonic-gate 	char	*msg)		/* message to print, possibly NULL */
3157c478bd9Sstevel@tonic-gate {
3167c478bd9Sstevel@tonic-gate 	if (dtrace_debugger_init != NULL)
3177c478bd9Sstevel@tonic-gate 		(*dtrace_debugger_init)();
3187c478bd9Sstevel@tonic-gate 
3197c478bd9Sstevel@tonic-gate 	if (msg)
3207c478bd9Sstevel@tonic-gate 		prom_printf("%s\n", msg);
3217c478bd9Sstevel@tonic-gate 
3227c478bd9Sstevel@tonic-gate 	if (boothowto & RB_DEBUG)
323*ae115bc7Smrj 		kmdb_enter();
3247c478bd9Sstevel@tonic-gate 
3257c478bd9Sstevel@tonic-gate 	if (dtrace_debugger_fini != NULL)
3267c478bd9Sstevel@tonic-gate 		(*dtrace_debugger_fini)();
3277c478bd9Sstevel@tonic-gate }
3287c478bd9Sstevel@tonic-gate 
3297c478bd9Sstevel@tonic-gate void
3307c478bd9Sstevel@tonic-gate reset(void)
3317c478bd9Sstevel@tonic-gate {
3327c478bd9Sstevel@tonic-gate 	ushort_t *bios_memchk;
3337c478bd9Sstevel@tonic-gate 
3347c478bd9Sstevel@tonic-gate 	/*
3357c478bd9Sstevel@tonic-gate 	 * Can't use psm_map_phys before the hat is initialized.
3367c478bd9Sstevel@tonic-gate 	 */
3377c478bd9Sstevel@tonic-gate 	if (khat_running) {
3387c478bd9Sstevel@tonic-gate 		bios_memchk = (ushort_t *)psm_map_phys(0x472,
3397c478bd9Sstevel@tonic-gate 		    sizeof (ushort_t), PROT_READ | PROT_WRITE);
3407c478bd9Sstevel@tonic-gate 		if (bios_memchk)
3417c478bd9Sstevel@tonic-gate 			*bios_memchk = 0x1234;	/* bios memory check disable */
3427c478bd9Sstevel@tonic-gate 	}
3437c478bd9Sstevel@tonic-gate 
344f2be5148Sszhou 	if (ddi_prop_exists(DDI_DEV_T_ANY, ddi_root_node(), 0, "efi-systab"))
345f2be5148Sszhou 		efi_reset();
3467c478bd9Sstevel@tonic-gate 	pc_reset();
3477c478bd9Sstevel@tonic-gate 	/*NOTREACHED*/
3487c478bd9Sstevel@tonic-gate }
3497c478bd9Sstevel@tonic-gate 
3507c478bd9Sstevel@tonic-gate /*
3517c478bd9Sstevel@tonic-gate  * Halt the machine and return to the monitor
3527c478bd9Sstevel@tonic-gate  */
3537c478bd9Sstevel@tonic-gate void
3547c478bd9Sstevel@tonic-gate halt(char *s)
3557c478bd9Sstevel@tonic-gate {
3567c478bd9Sstevel@tonic-gate 	stop_other_cpus();	/* send stop signal to other CPUs */
3577c478bd9Sstevel@tonic-gate 	if (s)
3587c478bd9Sstevel@tonic-gate 		prom_printf("(%s) \n", s);
3597c478bd9Sstevel@tonic-gate 	prom_exit_to_mon();
3607c478bd9Sstevel@tonic-gate 	/*NOTREACHED*/
3617c478bd9Sstevel@tonic-gate }
3627c478bd9Sstevel@tonic-gate 
3637c478bd9Sstevel@tonic-gate /*
3647c478bd9Sstevel@tonic-gate  * Initiate interrupt redistribution.
3657c478bd9Sstevel@tonic-gate  */
3667c478bd9Sstevel@tonic-gate void
3677c478bd9Sstevel@tonic-gate i_ddi_intr_redist_all_cpus()
3687c478bd9Sstevel@tonic-gate {
3697c478bd9Sstevel@tonic-gate }
3707c478bd9Sstevel@tonic-gate 
3717c478bd9Sstevel@tonic-gate /*
3727c478bd9Sstevel@tonic-gate  * XXX These probably ought to live somewhere else
3737c478bd9Sstevel@tonic-gate  * XXX They are called from mem.c
3747c478bd9Sstevel@tonic-gate  */
3757c478bd9Sstevel@tonic-gate 
3767c478bd9Sstevel@tonic-gate /*
3777c478bd9Sstevel@tonic-gate  * Convert page frame number to an OBMEM page frame number
3787c478bd9Sstevel@tonic-gate  * (i.e. put in the type bits -- zero for this implementation)
3797c478bd9Sstevel@tonic-gate  */
3807c478bd9Sstevel@tonic-gate pfn_t
3817c478bd9Sstevel@tonic-gate impl_obmem_pfnum(pfn_t pf)
3827c478bd9Sstevel@tonic-gate {
3837c478bd9Sstevel@tonic-gate 	return (pf);
3847c478bd9Sstevel@tonic-gate }
3857c478bd9Sstevel@tonic-gate 
3867c478bd9Sstevel@tonic-gate #ifdef	NM_DEBUG
3877c478bd9Sstevel@tonic-gate int nmi_test = 0;	/* checked in intentry.s during clock int */
3887c478bd9Sstevel@tonic-gate int nmtest = -1;
3897c478bd9Sstevel@tonic-gate nmfunc1(arg, rp)
3907c478bd9Sstevel@tonic-gate int	arg;
3917c478bd9Sstevel@tonic-gate struct regs *rp;
3927c478bd9Sstevel@tonic-gate {
3937c478bd9Sstevel@tonic-gate 	printf("nmi called with arg = %x, regs = %x\n", arg, rp);
3947c478bd9Sstevel@tonic-gate 	nmtest += 50;
3957c478bd9Sstevel@tonic-gate 	if (arg == nmtest) {
3967c478bd9Sstevel@tonic-gate 		printf("ip = %x\n", rp->r_pc);
3977c478bd9Sstevel@tonic-gate 		return (1);
3987c478bd9Sstevel@tonic-gate 	}
3997c478bd9Sstevel@tonic-gate 	return (0);
4007c478bd9Sstevel@tonic-gate }
4017c478bd9Sstevel@tonic-gate 
4027c478bd9Sstevel@tonic-gate #endif
4037c478bd9Sstevel@tonic-gate 
4047c478bd9Sstevel@tonic-gate #include <sys/bootsvcs.h>
4057c478bd9Sstevel@tonic-gate 
4067c478bd9Sstevel@tonic-gate /* Hacked up initialization for initial kernel check out is HERE. */
4077c478bd9Sstevel@tonic-gate /* The basic steps are: */
4087c478bd9Sstevel@tonic-gate /*	kernel bootfuncs definition/initialization for KADB */
4097c478bd9Sstevel@tonic-gate /*	kadb bootfuncs pointer initialization */
4107c478bd9Sstevel@tonic-gate /*	putchar/getchar (interrupts disabled) */
4117c478bd9Sstevel@tonic-gate 
4127c478bd9Sstevel@tonic-gate /* kadb bootfuncs pointer initialization */
4137c478bd9Sstevel@tonic-gate 
4147c478bd9Sstevel@tonic-gate int
4157c478bd9Sstevel@tonic-gate sysp_getchar()
4167c478bd9Sstevel@tonic-gate {
4177c478bd9Sstevel@tonic-gate 	int i;
418*ae115bc7Smrj 	ulong_t s;
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate 	if (cons_polledio == NULL) {
4217c478bd9Sstevel@tonic-gate 		/* Uh oh */
4227c478bd9Sstevel@tonic-gate 		prom_printf("getchar called with no console\n");
4237c478bd9Sstevel@tonic-gate 		for (;;)
4247c478bd9Sstevel@tonic-gate 			/* LOOP FOREVER */;
4257c478bd9Sstevel@tonic-gate 	}
4267c478bd9Sstevel@tonic-gate 
4277c478bd9Sstevel@tonic-gate 	s = clear_int_flag();
4287c478bd9Sstevel@tonic-gate 	i = cons_polledio->cons_polledio_getchar(
4297c478bd9Sstevel@tonic-gate 		cons_polledio->cons_polledio_argument);
4307c478bd9Sstevel@tonic-gate 	restore_int_flag(s);
4317c478bd9Sstevel@tonic-gate 	return (i);
4327c478bd9Sstevel@tonic-gate }
4337c478bd9Sstevel@tonic-gate 
4347c478bd9Sstevel@tonic-gate void
4357c478bd9Sstevel@tonic-gate sysp_putchar(int c)
4367c478bd9Sstevel@tonic-gate {
437*ae115bc7Smrj 	ulong_t s;
4387c478bd9Sstevel@tonic-gate 
4397c478bd9Sstevel@tonic-gate 	/*
4407c478bd9Sstevel@tonic-gate 	 * We have no alternative but to drop the output on the floor.
4417c478bd9Sstevel@tonic-gate 	 */
442fea9cb91Slq150181 	if (cons_polledio == NULL ||
443fea9cb91Slq150181 	    cons_polledio->cons_polledio_putchar == NULL)
4447c478bd9Sstevel@tonic-gate 		return;
4457c478bd9Sstevel@tonic-gate 
4467c478bd9Sstevel@tonic-gate 	s = clear_int_flag();
4477c478bd9Sstevel@tonic-gate 	cons_polledio->cons_polledio_putchar(
4487c478bd9Sstevel@tonic-gate 		cons_polledio->cons_polledio_argument, c);
4497c478bd9Sstevel@tonic-gate 	restore_int_flag(s);
4507c478bd9Sstevel@tonic-gate }
4517c478bd9Sstevel@tonic-gate 
4527c478bd9Sstevel@tonic-gate int
4537c478bd9Sstevel@tonic-gate sysp_ischar()
4547c478bd9Sstevel@tonic-gate {
4557c478bd9Sstevel@tonic-gate 	int i;
456*ae115bc7Smrj 	ulong_t s;
4577c478bd9Sstevel@tonic-gate 
458fea9cb91Slq150181 	if (cons_polledio == NULL ||
459fea9cb91Slq150181 	    cons_polledio->cons_polledio_ischar == NULL)
4607c478bd9Sstevel@tonic-gate 		return (0);
4617c478bd9Sstevel@tonic-gate 
4627c478bd9Sstevel@tonic-gate 	s = clear_int_flag();
4637c478bd9Sstevel@tonic-gate 	i = cons_polledio->cons_polledio_ischar(
4647c478bd9Sstevel@tonic-gate 		cons_polledio->cons_polledio_argument);
4657c478bd9Sstevel@tonic-gate 	restore_int_flag(s);
4667c478bd9Sstevel@tonic-gate 	return (i);
4677c478bd9Sstevel@tonic-gate }
4687c478bd9Sstevel@tonic-gate 
4697c478bd9Sstevel@tonic-gate int
4707c478bd9Sstevel@tonic-gate goany(void)
4717c478bd9Sstevel@tonic-gate {
4727c478bd9Sstevel@tonic-gate 	prom_printf("Type any key to continue ");
4737c478bd9Sstevel@tonic-gate 	(void) prom_getchar();
4747c478bd9Sstevel@tonic-gate 	prom_printf("\n");
4757c478bd9Sstevel@tonic-gate 	return (1);
4767c478bd9Sstevel@tonic-gate }
4777c478bd9Sstevel@tonic-gate 
4787c478bd9Sstevel@tonic-gate static struct boot_syscalls kern_sysp = {
4797c478bd9Sstevel@tonic-gate 	sysp_getchar,	/*	unchar	(*getchar)();	7  */
4807c478bd9Sstevel@tonic-gate 	sysp_putchar,	/*	int	(*putchar)();	8  */
4817c478bd9Sstevel@tonic-gate 	sysp_ischar,	/*	int	(*ischar)();	9  */
4827c478bd9Sstevel@tonic-gate };
4837c478bd9Sstevel@tonic-gate 
4847c478bd9Sstevel@tonic-gate void
4857c478bd9Sstevel@tonic-gate kadb_uses_kernel()
4867c478bd9Sstevel@tonic-gate {
4877c478bd9Sstevel@tonic-gate 	/*
4887c478bd9Sstevel@tonic-gate 	 * This routine is now totally misnamed, since it does not in fact
4897c478bd9Sstevel@tonic-gate 	 * control kadb's I/O; it only controls the kernel's prom_* I/O.
4907c478bd9Sstevel@tonic-gate 	 */
4917c478bd9Sstevel@tonic-gate 	sysp = &kern_sysp;
4927c478bd9Sstevel@tonic-gate }
4937c478bd9Sstevel@tonic-gate 
4947c478bd9Sstevel@tonic-gate /*
4957c478bd9Sstevel@tonic-gate  *	the interface to the outside world
4967c478bd9Sstevel@tonic-gate  */
4977c478bd9Sstevel@tonic-gate 
4987c478bd9Sstevel@tonic-gate /*
4997c478bd9Sstevel@tonic-gate  * poll_port -- wait for a register to achieve a
5007c478bd9Sstevel@tonic-gate  *		specific state.  Arguments are a mask of bits we care about,
5017c478bd9Sstevel@tonic-gate  *		and two sub-masks.  To return normally, all the bits in the
5027c478bd9Sstevel@tonic-gate  *		first sub-mask must be ON, all the bits in the second sub-
5037c478bd9Sstevel@tonic-gate  *		mask must be OFF.  If about seconds pass without the register
5047c478bd9Sstevel@tonic-gate  *		achieving the desired bit configuration, we return 1, else
5057c478bd9Sstevel@tonic-gate  *		0.
5067c478bd9Sstevel@tonic-gate  */
5077c478bd9Sstevel@tonic-gate int
5087c478bd9Sstevel@tonic-gate poll_port(ushort_t port, ushort_t mask, ushort_t onbits, ushort_t offbits)
5097c478bd9Sstevel@tonic-gate {
5107c478bd9Sstevel@tonic-gate 	int i;
5117c478bd9Sstevel@tonic-gate 	ushort_t maskval;
5127c478bd9Sstevel@tonic-gate 
5137c478bd9Sstevel@tonic-gate 	for (i = 500000; i; i--) {
5147c478bd9Sstevel@tonic-gate 		maskval = inb(port) & mask;
5157c478bd9Sstevel@tonic-gate 		if (((maskval & onbits) == onbits) &&
5167c478bd9Sstevel@tonic-gate 			((maskval & offbits) == 0))
5177c478bd9Sstevel@tonic-gate 			return (0);
5187c478bd9Sstevel@tonic-gate 		drv_usecwait(10);
5197c478bd9Sstevel@tonic-gate 	}
5207c478bd9Sstevel@tonic-gate 	return (1);
5217c478bd9Sstevel@tonic-gate }
5227c478bd9Sstevel@tonic-gate 
5237c478bd9Sstevel@tonic-gate /*
5247c478bd9Sstevel@tonic-gate  * set_idle_cpu is called from idle() when a CPU becomes idle.
5257c478bd9Sstevel@tonic-gate  */
5267c478bd9Sstevel@tonic-gate /*LINTED: static unused */
5277c478bd9Sstevel@tonic-gate static uint_t last_idle_cpu;
5287c478bd9Sstevel@tonic-gate 
5297c478bd9Sstevel@tonic-gate /*ARGSUSED*/
5307c478bd9Sstevel@tonic-gate void
5317c478bd9Sstevel@tonic-gate set_idle_cpu(int cpun)
5327c478bd9Sstevel@tonic-gate {
5337c478bd9Sstevel@tonic-gate 	last_idle_cpu = cpun;
5347c478bd9Sstevel@tonic-gate 	(*psm_set_idle_cpuf)(cpun);
5357c478bd9Sstevel@tonic-gate }
5367c478bd9Sstevel@tonic-gate 
5377c478bd9Sstevel@tonic-gate /*
5387c478bd9Sstevel@tonic-gate  * unset_idle_cpu is called from idle() when a CPU is no longer idle.
5397c478bd9Sstevel@tonic-gate  */
5407c478bd9Sstevel@tonic-gate /*ARGSUSED*/
5417c478bd9Sstevel@tonic-gate void
5427c478bd9Sstevel@tonic-gate unset_idle_cpu(int cpun)
5437c478bd9Sstevel@tonic-gate {
5447c478bd9Sstevel@tonic-gate 	(*psm_unset_idle_cpuf)(cpun);
5457c478bd9Sstevel@tonic-gate }
5467c478bd9Sstevel@tonic-gate 
5477c478bd9Sstevel@tonic-gate /*
5487c478bd9Sstevel@tonic-gate  * This routine is almost correct now, but not quite.  It still needs the
5497c478bd9Sstevel@tonic-gate  * equivalent concept of "hres_last_tick", just like on the sparc side.
5507c478bd9Sstevel@tonic-gate  * The idea is to take a snapshot of the hi-res timer while doing the
5517c478bd9Sstevel@tonic-gate  * hrestime_adj updates under hres_lock in locore, so that the small
5527c478bd9Sstevel@tonic-gate  * interval between interrupt assertion and interrupt processing is
5537c478bd9Sstevel@tonic-gate  * accounted for correctly.  Once we have this, the code below should
5547c478bd9Sstevel@tonic-gate  * be modified to subtract off hres_last_tick rather than hrtime_base.
5557c478bd9Sstevel@tonic-gate  *
5567c478bd9Sstevel@tonic-gate  * I'd have done this myself, but I don't have source to all of the
5577c478bd9Sstevel@tonic-gate  * vendor-specific hi-res timer routines (grrr...).  The generic hook I
5587c478bd9Sstevel@tonic-gate  * need is something like "gethrtime_unlocked()", which would be just like
5597c478bd9Sstevel@tonic-gate  * gethrtime() but would assume that you're already holding CLOCK_LOCK().
5607c478bd9Sstevel@tonic-gate  * This is what the GET_HRTIME() macro is for on sparc (although it also
5617c478bd9Sstevel@tonic-gate  * serves the function of making time available without a function call
5627c478bd9Sstevel@tonic-gate  * so you don't take a register window overflow while traps are disabled).
5637c478bd9Sstevel@tonic-gate  */
5647c478bd9Sstevel@tonic-gate void
5657c478bd9Sstevel@tonic-gate pc_gethrestime(timestruc_t *tp)
5667c478bd9Sstevel@tonic-gate {
5677c478bd9Sstevel@tonic-gate 	int lock_prev;
5687c478bd9Sstevel@tonic-gate 	timestruc_t now;
5697c478bd9Sstevel@tonic-gate 	int nslt;		/* nsec since last tick */
5707c478bd9Sstevel@tonic-gate 	int adj;		/* amount of adjustment to apply */
5717c478bd9Sstevel@tonic-gate 
5727c478bd9Sstevel@tonic-gate loop:
5737c478bd9Sstevel@tonic-gate 	lock_prev = hres_lock;
5747c478bd9Sstevel@tonic-gate 	now = hrestime;
5757c478bd9Sstevel@tonic-gate 	nslt = (int)(gethrtime() - hres_last_tick);
5767c478bd9Sstevel@tonic-gate 	if (nslt < 0) {
5777c478bd9Sstevel@tonic-gate 		/*
5787c478bd9Sstevel@tonic-gate 		 * nslt < 0 means a tick came between sampling
5797c478bd9Sstevel@tonic-gate 		 * gethrtime() and hres_last_tick; restart the loop
5807c478bd9Sstevel@tonic-gate 		 */
5817c478bd9Sstevel@tonic-gate 
5827c478bd9Sstevel@tonic-gate 		goto loop;
5837c478bd9Sstevel@tonic-gate 	}
5847c478bd9Sstevel@tonic-gate 	now.tv_nsec += nslt;
5857c478bd9Sstevel@tonic-gate 	if (hrestime_adj != 0) {
5867c478bd9Sstevel@tonic-gate 		if (hrestime_adj > 0) {
5877c478bd9Sstevel@tonic-gate 			adj = (nslt >> ADJ_SHIFT);
5887c478bd9Sstevel@tonic-gate 			if (adj > hrestime_adj)
5897c478bd9Sstevel@tonic-gate 				adj = (int)hrestime_adj;
5907c478bd9Sstevel@tonic-gate 		} else {
5917c478bd9Sstevel@tonic-gate 			adj = -(nslt >> ADJ_SHIFT);
5927c478bd9Sstevel@tonic-gate 			if (adj < hrestime_adj)
5937c478bd9Sstevel@tonic-gate 				adj = (int)hrestime_adj;
5947c478bd9Sstevel@tonic-gate 		}
5957c478bd9Sstevel@tonic-gate 		now.tv_nsec += adj;
5967c478bd9Sstevel@tonic-gate 	}
5977c478bd9Sstevel@tonic-gate 	while ((unsigned long)now.tv_nsec >= NANOSEC) {
5987c478bd9Sstevel@tonic-gate 
5997c478bd9Sstevel@tonic-gate 		/*
6007c478bd9Sstevel@tonic-gate 		 * We might have a large adjustment or have been in the
6017c478bd9Sstevel@tonic-gate 		 * debugger for a long time; take care of (at most) four
6027c478bd9Sstevel@tonic-gate 		 * of those missed seconds (tv_nsec is 32 bits, so
6037c478bd9Sstevel@tonic-gate 		 * anything >4s will be wrapping around).  However,
6047c478bd9Sstevel@tonic-gate 		 * anything more than 2 seconds out of sync will trigger
6057c478bd9Sstevel@tonic-gate 		 * timedelta from clock() to go correct the time anyway,
6067c478bd9Sstevel@tonic-gate 		 * so do what we can, and let the big crowbar do the
6077c478bd9Sstevel@tonic-gate 		 * rest.  A similar correction while loop exists inside
6087c478bd9Sstevel@tonic-gate 		 * hres_tick(); in all cases we'd like tv_nsec to
6097c478bd9Sstevel@tonic-gate 		 * satisfy 0 <= tv_nsec < NANOSEC to avoid confusing
6107c478bd9Sstevel@tonic-gate 		 * user processes, but if tv_sec's a little behind for a
6117c478bd9Sstevel@tonic-gate 		 * little while, that's OK; time still monotonically
6127c478bd9Sstevel@tonic-gate 		 * increases.
6137c478bd9Sstevel@tonic-gate 		 */
6147c478bd9Sstevel@tonic-gate 
6157c478bd9Sstevel@tonic-gate 		now.tv_nsec -= NANOSEC;
6167c478bd9Sstevel@tonic-gate 		now.tv_sec++;
6177c478bd9Sstevel@tonic-gate 	}
6187c478bd9Sstevel@tonic-gate 	if ((hres_lock & ~1) != lock_prev)
6197c478bd9Sstevel@tonic-gate 		goto loop;
6207c478bd9Sstevel@tonic-gate 
6217c478bd9Sstevel@tonic-gate 	*tp = now;
6227c478bd9Sstevel@tonic-gate }
6237c478bd9Sstevel@tonic-gate 
6247c478bd9Sstevel@tonic-gate void
6257c478bd9Sstevel@tonic-gate gethrestime_lasttick(timespec_t *tp)
6267c478bd9Sstevel@tonic-gate {
6277c478bd9Sstevel@tonic-gate 	int s;
6287c478bd9Sstevel@tonic-gate 
6297c478bd9Sstevel@tonic-gate 	s = hr_clock_lock();
6307c478bd9Sstevel@tonic-gate 	*tp = hrestime;
6317c478bd9Sstevel@tonic-gate 	hr_clock_unlock(s);
6327c478bd9Sstevel@tonic-gate }
6337c478bd9Sstevel@tonic-gate 
6347c478bd9Sstevel@tonic-gate time_t
6357c478bd9Sstevel@tonic-gate gethrestime_sec(void)
6367c478bd9Sstevel@tonic-gate {
6377c478bd9Sstevel@tonic-gate 	timestruc_t now;
6387c478bd9Sstevel@tonic-gate 
6397c478bd9Sstevel@tonic-gate 	gethrestime(&now);
6407c478bd9Sstevel@tonic-gate 	return (now.tv_sec);
6417c478bd9Sstevel@tonic-gate }
6427c478bd9Sstevel@tonic-gate 
6437c478bd9Sstevel@tonic-gate /*
6447c478bd9Sstevel@tonic-gate  * Initialize a kernel thread's stack
6457c478bd9Sstevel@tonic-gate  */
6467c478bd9Sstevel@tonic-gate 
6477c478bd9Sstevel@tonic-gate caddr_t
6487c478bd9Sstevel@tonic-gate thread_stk_init(caddr_t stk)
6497c478bd9Sstevel@tonic-gate {
6507c478bd9Sstevel@tonic-gate 	ASSERT(((uintptr_t)stk & (STACK_ALIGN - 1)) == 0);
6517c478bd9Sstevel@tonic-gate 	return (stk - SA(MINFRAME));
6527c478bd9Sstevel@tonic-gate }
6537c478bd9Sstevel@tonic-gate 
6547c478bd9Sstevel@tonic-gate /*
6557c478bd9Sstevel@tonic-gate  * Initialize lwp's kernel stack.
6567c478bd9Sstevel@tonic-gate  */
6577c478bd9Sstevel@tonic-gate 
6587c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE
6597c478bd9Sstevel@tonic-gate /*
6607c478bd9Sstevel@tonic-gate  * There's a tricky interdependency here between use of sysenter and
6617c478bd9Sstevel@tonic-gate  * TRAPTRACE which needs recording to avoid future confusion (this is
6627c478bd9Sstevel@tonic-gate  * about the third time I've re-figured this out ..)
6637c478bd9Sstevel@tonic-gate  *
6647c478bd9Sstevel@tonic-gate  * Here's how debugging lcall works with TRAPTRACE.
6657c478bd9Sstevel@tonic-gate  *
6667c478bd9Sstevel@tonic-gate  * 1 We're in userland with a breakpoint on the lcall instruction.
6677c478bd9Sstevel@tonic-gate  * 2 We execute the instruction - the instruction pushes the userland
6687c478bd9Sstevel@tonic-gate  *   %ss, %esp, %efl, %cs, %eip on the stack and zips into the kernel
6697c478bd9Sstevel@tonic-gate  *   via the call gate.
6707c478bd9Sstevel@tonic-gate  * 3 The hardware raises a debug trap in kernel mode, the hardware
6717c478bd9Sstevel@tonic-gate  *   pushes %efl, %cs, %eip and gets to dbgtrap via the idt.
6727c478bd9Sstevel@tonic-gate  * 4 dbgtrap pushes the error code and trapno and calls cmntrap
6737c478bd9Sstevel@tonic-gate  * 5 cmntrap finishes building a trap frame
6747c478bd9Sstevel@tonic-gate  * 6 The TRACE_REGS macros in cmntrap copy a REGSIZE worth chunk
6757c478bd9Sstevel@tonic-gate  *   off the stack into the traptrace buffer.
6767c478bd9Sstevel@tonic-gate  *
6777c478bd9Sstevel@tonic-gate  * This means that the traptrace buffer contains the wrong values in
6787c478bd9Sstevel@tonic-gate  * %esp and %ss, but everything else in there is correct.
6797c478bd9Sstevel@tonic-gate  *
6807c478bd9Sstevel@tonic-gate  * Here's how debugging sysenter works with TRAPTRACE.
6817c478bd9Sstevel@tonic-gate  *
6827c478bd9Sstevel@tonic-gate  * a We're in userland with a breakpoint on the sysenter instruction.
6837c478bd9Sstevel@tonic-gate  * b We execute the instruction - the instruction pushes -nothing-
6847c478bd9Sstevel@tonic-gate  *   on the stack, but sets %cs, %eip, %ss, %esp to prearranged
6857c478bd9Sstevel@tonic-gate  *   values to take us to sys_sysenter, at the top of the lwp's
6867c478bd9Sstevel@tonic-gate  *   stack.
6877c478bd9Sstevel@tonic-gate  * c goto 3
6887c478bd9Sstevel@tonic-gate  *
6897c478bd9Sstevel@tonic-gate  * At this point, because we got into the kernel without the requisite
6907c478bd9Sstevel@tonic-gate  * five pushes on the stack, if we didn't make extra room, we'd
6917c478bd9Sstevel@tonic-gate  * end up with the TRACE_REGS macro fetching the saved %ss and %esp
6927c478bd9Sstevel@tonic-gate  * values from negative (unmapped) stack addresses -- which really bites.
6937c478bd9Sstevel@tonic-gate  * That's why we do the '-= 8' below.
6947c478bd9Sstevel@tonic-gate  *
6957c478bd9Sstevel@tonic-gate  * XXX	Note that reading "up" lwp0's stack works because t0 is declared
6967c478bd9Sstevel@tonic-gate  *	right next to t0stack in locore.s
6977c478bd9Sstevel@tonic-gate  */
6987c478bd9Sstevel@tonic-gate #endif
6997c478bd9Sstevel@tonic-gate 
7007c478bd9Sstevel@tonic-gate caddr_t
7017c478bd9Sstevel@tonic-gate lwp_stk_init(klwp_t *lwp, caddr_t stk)
7027c478bd9Sstevel@tonic-gate {
7037c478bd9Sstevel@tonic-gate 	caddr_t oldstk;
7047c478bd9Sstevel@tonic-gate 	struct pcb *pcb = &lwp->lwp_pcb;
7057c478bd9Sstevel@tonic-gate 
7067c478bd9Sstevel@tonic-gate 	oldstk = stk;
7077c478bd9Sstevel@tonic-gate 	stk -= SA(sizeof (struct regs) + SA(MINFRAME));
7087c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE
7097c478bd9Sstevel@tonic-gate 	stk -= 2 * sizeof (greg_t); /* space for phony %ss:%sp (see above) */
7107c478bd9Sstevel@tonic-gate #endif
7117c478bd9Sstevel@tonic-gate 	stk = (caddr_t)((uintptr_t)stk & ~(STACK_ALIGN - 1ul));
7127c478bd9Sstevel@tonic-gate 	bzero(stk, oldstk - stk);
7137c478bd9Sstevel@tonic-gate 	lwp->lwp_regs = (void *)(stk + SA(MINFRAME));
7147c478bd9Sstevel@tonic-gate 
7157c478bd9Sstevel@tonic-gate 	/*
7167c478bd9Sstevel@tonic-gate 	 * Arrange that the virtualized %fs and %gs GDT descriptors
7177c478bd9Sstevel@tonic-gate 	 * have a well-defined initial state (present, ring 3
7187c478bd9Sstevel@tonic-gate 	 * and of type data).
7197c478bd9Sstevel@tonic-gate 	 */
7207c478bd9Sstevel@tonic-gate #if defined(__amd64)
7217c478bd9Sstevel@tonic-gate 	if (lwp_getdatamodel(lwp) == DATAMODEL_NATIVE)
7227c478bd9Sstevel@tonic-gate 		pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_udesc;
7237c478bd9Sstevel@tonic-gate 	else
7247c478bd9Sstevel@tonic-gate 		pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_u32desc;
7257c478bd9Sstevel@tonic-gate #elif defined(__i386)
7267c478bd9Sstevel@tonic-gate 	pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_udesc;
7277c478bd9Sstevel@tonic-gate #endif	/* __i386 */
7287c478bd9Sstevel@tonic-gate 	lwp_installctx(lwp);
7297c478bd9Sstevel@tonic-gate 	return (stk);
7307c478bd9Sstevel@tonic-gate }
7317c478bd9Sstevel@tonic-gate 
7327c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7337c478bd9Sstevel@tonic-gate void
7347c478bd9Sstevel@tonic-gate lwp_stk_fini(klwp_t *lwp)
7357c478bd9Sstevel@tonic-gate {}
7367c478bd9Sstevel@tonic-gate 
7377c478bd9Sstevel@tonic-gate /*
738d90554ebSdmick  * If we're not the panic CPU, we wait in panic_idle for reboot.
7397c478bd9Sstevel@tonic-gate  */
7407c478bd9Sstevel@tonic-gate static void
7417c478bd9Sstevel@tonic-gate panic_idle(void)
7427c478bd9Sstevel@tonic-gate {
7437c478bd9Sstevel@tonic-gate 	splx(ipltospl(CLOCK_LEVEL));
7447c478bd9Sstevel@tonic-gate 	(void) setjmp(&curthread->t_pcb);
7457c478bd9Sstevel@tonic-gate 
746*ae115bc7Smrj 	for (;;)
747*ae115bc7Smrj 		;
7487c478bd9Sstevel@tonic-gate }
7497c478bd9Sstevel@tonic-gate 
7507c478bd9Sstevel@tonic-gate /*
7517c478bd9Sstevel@tonic-gate  * Stop the other CPUs by cross-calling them and forcing them to enter
7527c478bd9Sstevel@tonic-gate  * the panic_idle() loop above.
7537c478bd9Sstevel@tonic-gate  */
7547c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7557c478bd9Sstevel@tonic-gate void
7567c478bd9Sstevel@tonic-gate panic_stopcpus(cpu_t *cp, kthread_t *t, int spl)
7577c478bd9Sstevel@tonic-gate {
7587c478bd9Sstevel@tonic-gate 	processorid_t i;
7597c478bd9Sstevel@tonic-gate 	cpuset_t xcset;
7607c478bd9Sstevel@tonic-gate 
7617c478bd9Sstevel@tonic-gate 	(void) splzs();
7627c478bd9Sstevel@tonic-gate 
7637c478bd9Sstevel@tonic-gate 	CPUSET_ALL_BUT(xcset, cp->cpu_id);
7647c478bd9Sstevel@tonic-gate 	xc_trycall(NULL, NULL, NULL, xcset, (int (*)())panic_idle);
7657c478bd9Sstevel@tonic-gate 
7667c478bd9Sstevel@tonic-gate 	for (i = 0; i < NCPU; i++) {
7677c478bd9Sstevel@tonic-gate 		if (i != cp->cpu_id && cpu[i] != NULL &&
7687c478bd9Sstevel@tonic-gate 		    (cpu[i]->cpu_flags & CPU_EXISTS))
7697c478bd9Sstevel@tonic-gate 			cpu[i]->cpu_flags |= CPU_QUIESCED;
7707c478bd9Sstevel@tonic-gate 	}
7717c478bd9Sstevel@tonic-gate }
7727c478bd9Sstevel@tonic-gate 
7737c478bd9Sstevel@tonic-gate /*
7747c478bd9Sstevel@tonic-gate  * Platform callback following each entry to panicsys().
7757c478bd9Sstevel@tonic-gate  */
7767c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7777c478bd9Sstevel@tonic-gate void
7787c478bd9Sstevel@tonic-gate panic_enter_hw(int spl)
7797c478bd9Sstevel@tonic-gate {
7807c478bd9Sstevel@tonic-gate 	/* Nothing to do here */
7817c478bd9Sstevel@tonic-gate }
7827c478bd9Sstevel@tonic-gate 
7837c478bd9Sstevel@tonic-gate /*
7847c478bd9Sstevel@tonic-gate  * Platform-specific code to execute after panicstr is set: we invoke
7857c478bd9Sstevel@tonic-gate  * the PSM entry point to indicate that a panic has occurred.
7867c478bd9Sstevel@tonic-gate  */
7877c478bd9Sstevel@tonic-gate /*ARGSUSED*/
7887c478bd9Sstevel@tonic-gate void
7897c478bd9Sstevel@tonic-gate panic_quiesce_hw(panic_data_t *pdp)
7907c478bd9Sstevel@tonic-gate {
7917c478bd9Sstevel@tonic-gate 	psm_notifyf(PSM_PANIC_ENTER);
7927c478bd9Sstevel@tonic-gate 
7937c478bd9Sstevel@tonic-gate #ifdef	TRAPTRACE
7947c478bd9Sstevel@tonic-gate 	/*
7957c478bd9Sstevel@tonic-gate 	 * Turn off TRAPTRACE
7967c478bd9Sstevel@tonic-gate 	 */
7977c478bd9Sstevel@tonic-gate 	TRAPTRACE_FREEZE;
7987c478bd9Sstevel@tonic-gate #endif	/* TRAPTRACE */
7997c478bd9Sstevel@tonic-gate }
8007c478bd9Sstevel@tonic-gate 
8017c478bd9Sstevel@tonic-gate /*
8027c478bd9Sstevel@tonic-gate  * Platform callback prior to writing crash dump.
8037c478bd9Sstevel@tonic-gate  */
8047c478bd9Sstevel@tonic-gate /*ARGSUSED*/
8057c478bd9Sstevel@tonic-gate void
8067c478bd9Sstevel@tonic-gate panic_dump_hw(int spl)
8077c478bd9Sstevel@tonic-gate {
8087c478bd9Sstevel@tonic-gate 	/* Nothing to do here */
8097c478bd9Sstevel@tonic-gate }
8107c478bd9Sstevel@tonic-gate 
8117c478bd9Sstevel@tonic-gate /*ARGSUSED*/
8127c478bd9Sstevel@tonic-gate void
8137c478bd9Sstevel@tonic-gate plat_tod_fault(enum tod_fault_type tod_bad)
814*ae115bc7Smrj {}
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate /*ARGSUSED*/
8177c478bd9Sstevel@tonic-gate int
8187c478bd9Sstevel@tonic-gate blacklist(int cmd, const char *scheme, nvlist_t *fmri, const char *class)
8197c478bd9Sstevel@tonic-gate {
8207c478bd9Sstevel@tonic-gate 	return (ENOTSUP);
8217c478bd9Sstevel@tonic-gate }
8227c478bd9Sstevel@tonic-gate 
8237c478bd9Sstevel@tonic-gate /*
8247c478bd9Sstevel@tonic-gate  * The underlying console output routines are protected by raising IPL in case
8257c478bd9Sstevel@tonic-gate  * we are still calling into the early boot services.  Once we start calling
8267c478bd9Sstevel@tonic-gate  * the kernel console emulator, it will disable interrupts completely during
8277c478bd9Sstevel@tonic-gate  * character rendering (see sysp_putchar, for example).  Refer to the comments
8287c478bd9Sstevel@tonic-gate  * and code in common/os/console.c for more information on these callbacks.
8297c478bd9Sstevel@tonic-gate  */
8307c478bd9Sstevel@tonic-gate /*ARGSUSED*/
8317c478bd9Sstevel@tonic-gate int
8327c478bd9Sstevel@tonic-gate console_enter(int busy)
8337c478bd9Sstevel@tonic-gate {
8347c478bd9Sstevel@tonic-gate 	return (splzs());
8357c478bd9Sstevel@tonic-gate }
8367c478bd9Sstevel@tonic-gate 
8377c478bd9Sstevel@tonic-gate /*ARGSUSED*/
8387c478bd9Sstevel@tonic-gate void
8397c478bd9Sstevel@tonic-gate console_exit(int busy, int spl)
8407c478bd9Sstevel@tonic-gate {
8417c478bd9Sstevel@tonic-gate 	splx(spl);
8427c478bd9Sstevel@tonic-gate }
8437c478bd9Sstevel@tonic-gate 
8447c478bd9Sstevel@tonic-gate /*
8457c478bd9Sstevel@tonic-gate  * Allocate a region of virtual address space, unmapped.
8467c478bd9Sstevel@tonic-gate  * Stubbed out except on sparc, at least for now.
8477c478bd9Sstevel@tonic-gate  */
8487c478bd9Sstevel@tonic-gate /*ARGSUSED*/
8497c478bd9Sstevel@tonic-gate void *
8507c478bd9Sstevel@tonic-gate boot_virt_alloc(void *addr, size_t size)
8517c478bd9Sstevel@tonic-gate {
8527c478bd9Sstevel@tonic-gate 	return (addr);
8537c478bd9Sstevel@tonic-gate }
8547c478bd9Sstevel@tonic-gate 
8557c478bd9Sstevel@tonic-gate volatile unsigned long	tenmicrodata;
8567c478bd9Sstevel@tonic-gate 
8577c478bd9Sstevel@tonic-gate void
8587c478bd9Sstevel@tonic-gate tenmicrosec(void)
8597c478bd9Sstevel@tonic-gate {
8607c478bd9Sstevel@tonic-gate 	extern int	tsc_gethrtime_initted;
8617c478bd9Sstevel@tonic-gate 
8627c478bd9Sstevel@tonic-gate 	if (tsc_gethrtime_initted) {
8637c478bd9Sstevel@tonic-gate 		hrtime_t start, end;
8647c478bd9Sstevel@tonic-gate 		start = end =  gethrtime();
8657c478bd9Sstevel@tonic-gate 		while ((end - start) < (10 * (NANOSEC / MICROSEC))) {
8667c478bd9Sstevel@tonic-gate 			SMT_PAUSE();
8677c478bd9Sstevel@tonic-gate 			end = gethrtime();
8687c478bd9Sstevel@tonic-gate 		}
8697c478bd9Sstevel@tonic-gate 	} else {
870*ae115bc7Smrj 		int i;
871*ae115bc7Smrj 
8727c478bd9Sstevel@tonic-gate 		/*
8737c478bd9Sstevel@tonic-gate 		 * Artificial loop to induce delay.
8747c478bd9Sstevel@tonic-gate 		 */
8757c478bd9Sstevel@tonic-gate 		for (i = 0; i < microdata; i++)
8767c478bd9Sstevel@tonic-gate 			tenmicrodata = microdata;
8777c478bd9Sstevel@tonic-gate 	}
8787c478bd9Sstevel@tonic-gate }
879eda89462Sesolom 
880eda89462Sesolom /*
881eda89462Sesolom  * get_cpu_mstate() is passed an array of timestamps, NCMSTATES
882eda89462Sesolom  * long, and it fills in the array with the time spent on cpu in
883eda89462Sesolom  * each of the mstates, where time is returned in nsec.
884eda89462Sesolom  *
885eda89462Sesolom  * No guarantee is made that the returned values in times[] will
886eda89462Sesolom  * monotonically increase on sequential calls, although this will
887eda89462Sesolom  * be true in the long run. Any such guarantee must be handled by
888eda89462Sesolom  * the caller, if needed. This can happen if we fail to account
889eda89462Sesolom  * for elapsed time due to a generation counter conflict, yet we
890eda89462Sesolom  * did account for it on a prior call (see below).
891eda89462Sesolom  *
892eda89462Sesolom  * The complication is that the cpu in question may be updating
893eda89462Sesolom  * its microstate at the same time that we are reading it.
894eda89462Sesolom  * Because the microstate is only updated when the CPU's state
895eda89462Sesolom  * changes, the values in cpu_intracct[] can be indefinitely out
896eda89462Sesolom  * of date. To determine true current values, it is necessary to
897eda89462Sesolom  * compare the current time with cpu_mstate_start, and add the
898eda89462Sesolom  * difference to times[cpu_mstate].
899eda89462Sesolom  *
900eda89462Sesolom  * This can be a problem if those values are changing out from
901eda89462Sesolom  * under us. Because the code path in new_cpu_mstate() is
902eda89462Sesolom  * performance critical, we have not added a lock to it. Instead,
903eda89462Sesolom  * we have added a generation counter. Before beginning
904eda89462Sesolom  * modifications, the counter is set to 0. After modifications,
905eda89462Sesolom  * it is set to the old value plus one.
906eda89462Sesolom  *
907eda89462Sesolom  * get_cpu_mstate() will not consider the values of cpu_mstate
908eda89462Sesolom  * and cpu_mstate_start to be usable unless the value of
909eda89462Sesolom  * cpu_mstate_gen is both non-zero and unchanged, both before and
910eda89462Sesolom  * after reading the mstate information. Note that we must
911eda89462Sesolom  * protect against out-of-order loads around accesses to the
912eda89462Sesolom  * generation counter. Also, this is a best effort approach in
913eda89462Sesolom  * that we do not retry should the counter be found to have
914eda89462Sesolom  * changed.
915eda89462Sesolom  *
916eda89462Sesolom  * cpu_intracct[] is used to identify time spent in each CPU
917eda89462Sesolom  * mstate while handling interrupts. Such time should be reported
918eda89462Sesolom  * against system time, and so is subtracted out from its
919eda89462Sesolom  * corresponding cpu_acct[] time and added to
920eda89462Sesolom  * cpu_acct[CMS_SYSTEM].
921eda89462Sesolom  */
922eda89462Sesolom 
923eda89462Sesolom void
924eda89462Sesolom get_cpu_mstate(cpu_t *cpu, hrtime_t *times)
925eda89462Sesolom {
926eda89462Sesolom 	int i;
927eda89462Sesolom 	hrtime_t now, start;
928eda89462Sesolom 	uint16_t gen;
929eda89462Sesolom 	uint16_t state;
930eda89462Sesolom 	hrtime_t intracct[NCMSTATES];
931eda89462Sesolom 
932eda89462Sesolom 	/*
933eda89462Sesolom 	 * Load all volatile state under the protection of membar.
934eda89462Sesolom 	 * cpu_acct[cpu_mstate] must be loaded to avoid double counting
935eda89462Sesolom 	 * of (now - cpu_mstate_start) by a change in CPU mstate that
936eda89462Sesolom 	 * arrives after we make our last check of cpu_mstate_gen.
937eda89462Sesolom 	 */
938eda89462Sesolom 
939eda89462Sesolom 	now = gethrtime_unscaled();
940eda89462Sesolom 	gen = cpu->cpu_mstate_gen;
941eda89462Sesolom 
942eda89462Sesolom 	membar_consumer();	/* guarantee load ordering */
943eda89462Sesolom 	start = cpu->cpu_mstate_start;
944eda89462Sesolom 	state = cpu->cpu_mstate;
945eda89462Sesolom 	for (i = 0; i < NCMSTATES; i++) {
946eda89462Sesolom 		intracct[i] = cpu->cpu_intracct[i];
947eda89462Sesolom 		times[i] = cpu->cpu_acct[i];
948eda89462Sesolom 	}
949eda89462Sesolom 	membar_consumer();	/* guarantee load ordering */
950eda89462Sesolom 
951eda89462Sesolom 	if (gen != 0 && gen == cpu->cpu_mstate_gen && now > start)
952eda89462Sesolom 		times[state] += now - start;
953eda89462Sesolom 
954eda89462Sesolom 	for (i = 0; i < NCMSTATES; i++) {
955eda89462Sesolom 		if (i == CMS_SYSTEM)
956eda89462Sesolom 			continue;
957eda89462Sesolom 		times[i] -= intracct[i];
958eda89462Sesolom 		if (times[i] < 0) {
959eda89462Sesolom 			intracct[i] += times[i];
960eda89462Sesolom 			times[i] = 0;
961eda89462Sesolom 		}
962eda89462Sesolom 		times[CMS_SYSTEM] += intracct[i];
963eda89462Sesolom 		scalehrtime(&times[i]);
964eda89462Sesolom 	}
965eda89462Sesolom 	scalehrtime(&times[CMS_SYSTEM]);
966eda89462Sesolom }
967*ae115bc7Smrj 
968*ae115bc7Smrj 
969*ae115bc7Smrj /*
970*ae115bc7Smrj  * This is a version of the rdmsr instruction that allows
971*ae115bc7Smrj  * an error code to be returned in the case of failure.
972*ae115bc7Smrj  */
973*ae115bc7Smrj int
974*ae115bc7Smrj checked_rdmsr(uint_t msr, uint64_t *value)
975*ae115bc7Smrj {
976*ae115bc7Smrj 	if ((x86_feature & X86_MSR) == 0)
977*ae115bc7Smrj 		return (ENOTSUP);
978*ae115bc7Smrj 	*value = rdmsr(msr);
979*ae115bc7Smrj 	return (0);
980*ae115bc7Smrj }
981*ae115bc7Smrj 
982*ae115bc7Smrj /*
983*ae115bc7Smrj  * This is a version of the wrmsr instruction that allows
984*ae115bc7Smrj  * an error code to be returned in the case of failure.
985*ae115bc7Smrj  */
986*ae115bc7Smrj int
987*ae115bc7Smrj checked_wrmsr(uint_t msr, uint64_t value)
988*ae115bc7Smrj {
989*ae115bc7Smrj 	if ((x86_feature & X86_MSR) == 0)
990*ae115bc7Smrj 		return (ENOTSUP);
991*ae115bc7Smrj 	wrmsr(msr, value);
992*ae115bc7Smrj 	return (0);
993*ae115bc7Smrj }
994*ae115bc7Smrj 
995*ae115bc7Smrj /*
996*ae115bc7Smrj  * Return true if the given page VA can be read via /dev/kmem.
997*ae115bc7Smrj  */
998*ae115bc7Smrj /*ARGSUSED*/
999*ae115bc7Smrj int
1000*ae115bc7Smrj plat_mem_valid_page(uintptr_t pageaddr, uio_rw_t rw)
1001*ae115bc7Smrj {
1002*ae115bc7Smrj 	return (0);
1003*ae115bc7Smrj }
1004*ae115bc7Smrj 
1005*ae115bc7Smrj int
1006*ae115bc7Smrj dump_plat_addr()
1007*ae115bc7Smrj {
1008*ae115bc7Smrj 	return (0);
1009*ae115bc7Smrj }
1010*ae115bc7Smrj 
1011*ae115bc7Smrj void
1012*ae115bc7Smrj dump_plat_pfn()
1013*ae115bc7Smrj {
1014*ae115bc7Smrj }
1015*ae115bc7Smrj 
1016*ae115bc7Smrj /*ARGSUSED*/
1017*ae115bc7Smrj int
1018*ae115bc7Smrj dump_plat_data(void *dump_cbuf)
1019*ae115bc7Smrj {
1020*ae115bc7Smrj 	return (0);
1021*ae115bc7Smrj }
1022