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 /* 23c48ac12eSjohnlev * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate #include <sys/types.h> 287c478bd9Sstevel@tonic-gate #include <sys/t_lock.h> 297c478bd9Sstevel@tonic-gate #include <sys/param.h> 30ddece0baSsethg #include <sys/segments.h> 317c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h> 327c478bd9Sstevel@tonic-gate #include <sys/signal.h> 337c478bd9Sstevel@tonic-gate #include <sys/systm.h> 347c478bd9Sstevel@tonic-gate #include <sys/user.h> 357c478bd9Sstevel@tonic-gate #include <sys/mman.h> 367c478bd9Sstevel@tonic-gate #include <sys/vm.h> 377c478bd9Sstevel@tonic-gate 387c478bd9Sstevel@tonic-gate #include <sys/disp.h> 397c478bd9Sstevel@tonic-gate #include <sys/class.h> 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gate #include <sys/proc.h> 427c478bd9Sstevel@tonic-gate #include <sys/buf.h> 437c478bd9Sstevel@tonic-gate #include <sys/kmem.h> 447c478bd9Sstevel@tonic-gate 457c478bd9Sstevel@tonic-gate #include <sys/reboot.h> 467c478bd9Sstevel@tonic-gate #include <sys/uadmin.h> 477c478bd9Sstevel@tonic-gate #include <sys/callb.h> 487c478bd9Sstevel@tonic-gate 497c478bd9Sstevel@tonic-gate #include <sys/cred.h> 507c478bd9Sstevel@tonic-gate #include <sys/vnode.h> 517c478bd9Sstevel@tonic-gate #include <sys/file.h> 527c478bd9Sstevel@tonic-gate 537c478bd9Sstevel@tonic-gate #include <sys/procfs.h> 547c478bd9Sstevel@tonic-gate #include <sys/acct.h> 557c478bd9Sstevel@tonic-gate 567c478bd9Sstevel@tonic-gate #include <sys/vfs.h> 577c478bd9Sstevel@tonic-gate #include <sys/dnlc.h> 587c478bd9Sstevel@tonic-gate #include <sys/var.h> 597c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> 607c478bd9Sstevel@tonic-gate #include <sys/utsname.h> 617c478bd9Sstevel@tonic-gate #include <sys/debug.h> 627c478bd9Sstevel@tonic-gate 637c478bd9Sstevel@tonic-gate #include <sys/dumphdr.h> 647c478bd9Sstevel@tonic-gate #include <sys/bootconf.h> 657c478bd9Sstevel@tonic-gate #include <sys/varargs.h> 667c478bd9Sstevel@tonic-gate #include <sys/promif.h> 677c478bd9Sstevel@tonic-gate #include <sys/modctl.h> 687c478bd9Sstevel@tonic-gate 697c478bd9Sstevel@tonic-gate #include <sys/consdev.h> 707c478bd9Sstevel@tonic-gate #include <sys/frame.h> 717c478bd9Sstevel@tonic-gate 727c478bd9Sstevel@tonic-gate #include <sys/sunddi.h> 737c478bd9Sstevel@tonic-gate #include <sys/ddidmareq.h> 747c478bd9Sstevel@tonic-gate #include <sys/psw.h> 757c478bd9Sstevel@tonic-gate #include <sys/regset.h> 767c478bd9Sstevel@tonic-gate #include <sys/privregs.h> 777c478bd9Sstevel@tonic-gate #include <sys/clock.h> 787c478bd9Sstevel@tonic-gate #include <sys/tss.h> 797c478bd9Sstevel@tonic-gate #include <sys/cpu.h> 807c478bd9Sstevel@tonic-gate #include <sys/stack.h> 817c478bd9Sstevel@tonic-gate #include <sys/trap.h> 827c478bd9Sstevel@tonic-gate #include <sys/pic.h> 837c478bd9Sstevel@tonic-gate #include <vm/hat.h> 847c478bd9Sstevel@tonic-gate #include <vm/anon.h> 857c478bd9Sstevel@tonic-gate #include <vm/as.h> 867c478bd9Sstevel@tonic-gate #include <vm/page.h> 877c478bd9Sstevel@tonic-gate #include <vm/seg.h> 887c478bd9Sstevel@tonic-gate #include <vm/seg_kmem.h> 897c478bd9Sstevel@tonic-gate #include <vm/seg_map.h> 907c478bd9Sstevel@tonic-gate #include <vm/seg_vn.h> 917c478bd9Sstevel@tonic-gate #include <vm/seg_kp.h> 927c478bd9Sstevel@tonic-gate #include <vm/hat_i86.h> 937c478bd9Sstevel@tonic-gate #include <sys/swap.h> 947c478bd9Sstevel@tonic-gate #include <sys/thread.h> 957c478bd9Sstevel@tonic-gate #include <sys/sysconf.h> 967c478bd9Sstevel@tonic-gate #include <sys/vm_machparam.h> 977c478bd9Sstevel@tonic-gate #include <sys/archsystm.h> 987c478bd9Sstevel@tonic-gate #include <sys/machsystm.h> 997c478bd9Sstevel@tonic-gate #include <sys/machlock.h> 1007c478bd9Sstevel@tonic-gate #include <sys/x_call.h> 1017c478bd9Sstevel@tonic-gate #include <sys/instance.h> 1027c478bd9Sstevel@tonic-gate 1037c478bd9Sstevel@tonic-gate #include <sys/time.h> 1047c478bd9Sstevel@tonic-gate #include <sys/smp_impldefs.h> 1057c478bd9Sstevel@tonic-gate #include <sys/psm_types.h> 1067c478bd9Sstevel@tonic-gate #include <sys/atomic.h> 1077c478bd9Sstevel@tonic-gate #include <sys/panic.h> 1087c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h> 1097c478bd9Sstevel@tonic-gate #include <sys/dtrace.h> 1107c478bd9Sstevel@tonic-gate #include <sys/bl.h> 1117c478bd9Sstevel@tonic-gate #include <sys/nvpair.h> 1127c478bd9Sstevel@tonic-gate #include <sys/x86_archext.h> 1137c478bd9Sstevel@tonic-gate #include <sys/pool_pset.h> 1147c478bd9Sstevel@tonic-gate #include <sys/autoconf.h> 115ae115bc7Smrj #include <sys/mem.h> 116ae115bc7Smrj #include <sys/dumphdr.h> 117ae115bc7Smrj #include <sys/compress.h> 118e4b86885SCheng Sean Ye #include <sys/cpu_module.h> 119843e1988Sjohnlev #if defined(__xpv) 120843e1988Sjohnlev #include <sys/hypervisor.h> 121843e1988Sjohnlev #include <sys/xpv_panic.h> 122843e1988Sjohnlev #endif 1237c478bd9Sstevel@tonic-gate 12419397407SSherry Moore #include <sys/fastboot.h> 12519397407SSherry Moore #include <sys/machelf.h> 12619397407SSherry Moore #include <sys/kobj.h> 12719397407SSherry Moore #include <sys/multiboot.h> 12819397407SSherry Moore 1297c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE 1307c478bd9Sstevel@tonic-gate #include <sys/traptrace.h> 1317c478bd9Sstevel@tonic-gate #endif /* TRAPTRACE */ 1327c478bd9Sstevel@tonic-gate 1337c478bd9Sstevel@tonic-gate extern void audit_enterprom(int); 1347c478bd9Sstevel@tonic-gate extern void audit_exitprom(int); 1357c478bd9Sstevel@tonic-gate 1367c478bd9Sstevel@tonic-gate /* 137c48ac12eSjohnlev * Occassionally the kernel knows better whether to power-off or reboot. 138c48ac12eSjohnlev */ 139c48ac12eSjohnlev int force_shutdown_method = AD_UNKNOWN; 140c48ac12eSjohnlev 141c48ac12eSjohnlev /* 1427c478bd9Sstevel@tonic-gate * The panicbuf array is used to record messages and state: 1437c478bd9Sstevel@tonic-gate */ 1447c478bd9Sstevel@tonic-gate char panicbuf[PANICBUFSIZE]; 1457c478bd9Sstevel@tonic-gate 1467c478bd9Sstevel@tonic-gate /* 1477c478bd9Sstevel@tonic-gate * maxphys - used during physio 1487c478bd9Sstevel@tonic-gate * klustsize - used for klustering by swapfs and specfs 1497c478bd9Sstevel@tonic-gate */ 1507c478bd9Sstevel@tonic-gate int maxphys = 56 * 1024; /* XXX See vm_subr.c - max b_count in physio */ 1517c478bd9Sstevel@tonic-gate int klustsize = 56 * 1024; 1527c478bd9Sstevel@tonic-gate 1537c478bd9Sstevel@tonic-gate caddr_t p0_va; /* Virtual address for accessing physical page 0 */ 1547c478bd9Sstevel@tonic-gate 1557c478bd9Sstevel@tonic-gate /* 1567c478bd9Sstevel@tonic-gate * defined here, though unused on x86, 1577c478bd9Sstevel@tonic-gate * to make kstat_fr.c happy. 1587c478bd9Sstevel@tonic-gate */ 1597c478bd9Sstevel@tonic-gate int vac; 1607c478bd9Sstevel@tonic-gate 1617c478bd9Sstevel@tonic-gate void stop_other_cpus(); 1627c478bd9Sstevel@tonic-gate void debug_enter(char *); 1637c478bd9Sstevel@tonic-gate 1647c478bd9Sstevel@tonic-gate extern void pm_cfb_check_and_powerup(void); 1657c478bd9Sstevel@tonic-gate extern void pm_cfb_rele(void); 1667c478bd9Sstevel@tonic-gate 16719397407SSherry Moore extern fastboot_info_t newkernel; 16819397407SSherry Moore 16919397407SSherry Moore int quiesce_active = 0; 17019397407SSherry Moore 1717c478bd9Sstevel@tonic-gate /* 1727c478bd9Sstevel@tonic-gate * Machine dependent code to reboot. 1737c478bd9Sstevel@tonic-gate * "mdep" is interpreted as a character pointer; if non-null, it is a pointer 1747c478bd9Sstevel@tonic-gate * to a string to be used as the argument string when rebooting. 175edc40228Sachartre * 176edc40228Sachartre * "invoke_cb" is a boolean. It is set to true when mdboot() can safely 177edc40228Sachartre * invoke CB_CL_MDBOOT callbacks before shutting the system down, i.e. when 178edc40228Sachartre * we are in a normal shutdown sequence (interrupts are not blocked, the 179edc40228Sachartre * system is not panic'ing or being suspended). 1807c478bd9Sstevel@tonic-gate */ 1817c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 1827c478bd9Sstevel@tonic-gate void 183edc40228Sachartre mdboot(int cmd, int fcn, char *mdep, boolean_t invoke_cb) 1847c478bd9Sstevel@tonic-gate { 18519397407SSherry Moore processorid_t bootcpuid = 0; 18619397407SSherry Moore 18719397407SSherry Moore if (fcn == AD_FASTREBOOT && !newkernel.fi_valid) 18819397407SSherry Moore fcn = AD_BOOT; 18919397407SSherry Moore 1907c478bd9Sstevel@tonic-gate if (!panicstr) { 1917c478bd9Sstevel@tonic-gate kpreempt_disable(); 19219397407SSherry Moore if (fcn == AD_FASTREBOOT) { 19319397407SSherry Moore mutex_enter(&cpu_lock); 19419397407SSherry Moore if (CPU_ACTIVE(cpu_get(bootcpuid))) { 19519397407SSherry Moore affinity_set(bootcpuid); 19619397407SSherry Moore } 19719397407SSherry Moore mutex_exit(&cpu_lock); 19819397407SSherry Moore } else { 199d90554ebSdmick affinity_set(CPU_CURRENT); 2007c478bd9Sstevel@tonic-gate } 20119397407SSherry Moore } 2027c478bd9Sstevel@tonic-gate 203c48ac12eSjohnlev if (force_shutdown_method != AD_UNKNOWN) 204c48ac12eSjohnlev fcn = force_shutdown_method; 205c48ac12eSjohnlev 2067c478bd9Sstevel@tonic-gate /* 207281888b3Sjbeck * XXX - rconsvp is set to NULL to ensure that output messages 208281888b3Sjbeck * are sent to the underlying "hardware" device using the 209281888b3Sjbeck * monitor's printf routine since we are in the process of 210281888b3Sjbeck * either rebooting or halting the machine. 211281888b3Sjbeck */ 212281888b3Sjbeck rconsvp = NULL; 213281888b3Sjbeck 214281888b3Sjbeck /* 2157c478bd9Sstevel@tonic-gate * Print the reboot message now, before pausing other cpus. 2167c478bd9Sstevel@tonic-gate * There is a race condition in the printing support that 2177c478bd9Sstevel@tonic-gate * can deadlock multiprocessor machines. 2187c478bd9Sstevel@tonic-gate */ 2197c478bd9Sstevel@tonic-gate if (!(fcn == AD_HALT || fcn == AD_POWEROFF)) 2207c478bd9Sstevel@tonic-gate prom_printf("rebooting...\n"); 2217c478bd9Sstevel@tonic-gate 222843e1988Sjohnlev if (IN_XPV_PANIC()) 223843e1988Sjohnlev reset(); 224843e1988Sjohnlev 2257c478bd9Sstevel@tonic-gate /* 2267c478bd9Sstevel@tonic-gate * We can't bring up the console from above lock level, so do it now 2277c478bd9Sstevel@tonic-gate */ 2287c478bd9Sstevel@tonic-gate pm_cfb_check_and_powerup(); 2297c478bd9Sstevel@tonic-gate 2307c478bd9Sstevel@tonic-gate /* make sure there are no more changes to the device tree */ 2317c478bd9Sstevel@tonic-gate devtree_freeze(); 2327c478bd9Sstevel@tonic-gate 233edc40228Sachartre if (invoke_cb) 234edc40228Sachartre (void) callb_execute_class(CB_CL_MDBOOT, NULL); 235edc40228Sachartre 2368b464eb8Smec /* 2378b464eb8Smec * Clear any unresolved UEs from memory. 2388b464eb8Smec */ 2398b464eb8Smec page_retire_mdboot(); 240db874c57Selowe 241843e1988Sjohnlev #if defined(__xpv) 242843e1988Sjohnlev /* 243843e1988Sjohnlev * XXPV Should probably think some more about how we deal 244843e1988Sjohnlev * with panicing before it's really safe to panic. 245843e1988Sjohnlev * On hypervisors, we reboot very quickly.. Perhaps panic 246843e1988Sjohnlev * should only attempt to recover by rebooting if, 247843e1988Sjohnlev * say, we were able to mount the root filesystem, 248843e1988Sjohnlev * or if we successfully launched init(1m). 249843e1988Sjohnlev */ 250843e1988Sjohnlev if (panicstr && proc_init == NULL) 251843e1988Sjohnlev (void) HYPERVISOR_shutdown(SHUTDOWN_poweroff); 252843e1988Sjohnlev #endif 2537c478bd9Sstevel@tonic-gate /* 2547c478bd9Sstevel@tonic-gate * stop other cpus and raise our priority. since there is only 2557c478bd9Sstevel@tonic-gate * one active cpu after this, and our priority will be too high 2567c478bd9Sstevel@tonic-gate * for us to be preempted, we're essentially single threaded 2577c478bd9Sstevel@tonic-gate * from here on out. 2587c478bd9Sstevel@tonic-gate */ 2597c478bd9Sstevel@tonic-gate (void) spl6(); 2607c478bd9Sstevel@tonic-gate if (!panicstr) { 2617c478bd9Sstevel@tonic-gate mutex_enter(&cpu_lock); 2627c478bd9Sstevel@tonic-gate pause_cpus(NULL); 2637c478bd9Sstevel@tonic-gate mutex_exit(&cpu_lock); 2647c478bd9Sstevel@tonic-gate } 2657c478bd9Sstevel@tonic-gate 2667c478bd9Sstevel@tonic-gate /* 26719397407SSherry Moore * Try to quiesce devices. 2687c478bd9Sstevel@tonic-gate */ 26919397407SSherry Moore if (!panicstr) { 27019397407SSherry Moore int reset_status = 0; 27119397407SSherry Moore 27219397407SSherry Moore quiesce_active = 1; 27319397407SSherry Moore 27419397407SSherry Moore quiesce_devices(ddi_root_node(), &reset_status); 275*abe65fd9SSherry Moore if (reset_status == -1) { 276*abe65fd9SSherry Moore if (fcn == AD_FASTREBOOT && !force_fastreboot) { 277*abe65fd9SSherry Moore prom_printf("Driver(s) not capable of fast " 278*abe65fd9SSherry Moore "reboot. Fall back to regular reboot.\n"); 279*abe65fd9SSherry Moore fastreboot_capable = 0; 280*abe65fd9SSherry Moore } else if (fcn != AD_FASTREBOOT) 28119397407SSherry Moore fastreboot_capable = 0; 28219397407SSherry Moore } 28319397407SSherry Moore 28419397407SSherry Moore quiesce_active = 0; 28519397407SSherry Moore } 28619397407SSherry Moore 28719397407SSherry Moore /* 28819397407SSherry Moore * try to reset devices. reset_leaves() should only be called when 28919397407SSherry Moore * there are no other threads that could be accessing devices 29019397407SSherry Moore */ 291*abe65fd9SSherry Moore if (!panicstr && !fastreboot_capable) 2927c478bd9Sstevel@tonic-gate reset_leaves(); 2937c478bd9Sstevel@tonic-gate 2947c478bd9Sstevel@tonic-gate (void) spl8(); 2957c478bd9Sstevel@tonic-gate (*psm_shutdownf)(cmd, fcn); 2967c478bd9Sstevel@tonic-gate 29719397407SSherry Moore if (fcn == AD_FASTREBOOT && !panicstr && fastreboot_capable) 29819397407SSherry Moore fast_reboot(); 29919397407SSherry Moore else if (fcn == AD_HALT || fcn == AD_POWEROFF) 3007c478bd9Sstevel@tonic-gate halt((char *)NULL); 3017c478bd9Sstevel@tonic-gate else 3027c478bd9Sstevel@tonic-gate prom_reboot(""); 3037c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 3047c478bd9Sstevel@tonic-gate } 3057c478bd9Sstevel@tonic-gate 3067c478bd9Sstevel@tonic-gate /* mdpreboot - may be called prior to mdboot while root fs still mounted */ 3077c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 3087c478bd9Sstevel@tonic-gate void 3097c478bd9Sstevel@tonic-gate mdpreboot(int cmd, int fcn, char *mdep) 3107c478bd9Sstevel@tonic-gate { 31119397407SSherry Moore if (fcn == AD_FASTREBOOT && !fastreboot_capable) { 31219397407SSherry Moore fcn = AD_BOOT; 31319397407SSherry Moore #ifdef __xpv 31419397407SSherry Moore cmn_err(CE_WARN, "Fast reboot not supported on xVM"); 31519397407SSherry Moore #else 31619397407SSherry Moore cmn_err(CE_WARN, "Fast reboot not supported on this platform"); 31719397407SSherry Moore #endif 31819397407SSherry Moore } 31919397407SSherry Moore 32019397407SSherry Moore if (fcn == AD_FASTREBOOT) { 32119397407SSherry Moore load_kernel(mdep); 32219397407SSherry Moore if (!newkernel.fi_valid) 32319397407SSherry Moore fcn = AD_BOOT; 32419397407SSherry Moore } 32519397407SSherry Moore 3267c478bd9Sstevel@tonic-gate (*psm_preshutdownf)(cmd, fcn); 3277c478bd9Sstevel@tonic-gate } 3287c478bd9Sstevel@tonic-gate 3297c478bd9Sstevel@tonic-gate void 3307c478bd9Sstevel@tonic-gate idle_other_cpus() 3317c478bd9Sstevel@tonic-gate { 3327c478bd9Sstevel@tonic-gate int cpuid = CPU->cpu_id; 3337c478bd9Sstevel@tonic-gate cpuset_t xcset; 3347c478bd9Sstevel@tonic-gate 3357c478bd9Sstevel@tonic-gate ASSERT(cpuid < NCPU); 3367c478bd9Sstevel@tonic-gate CPUSET_ALL_BUT(xcset, cpuid); 3377c478bd9Sstevel@tonic-gate xc_capture_cpus(xcset); 3387c478bd9Sstevel@tonic-gate } 3397c478bd9Sstevel@tonic-gate 3407c478bd9Sstevel@tonic-gate void 3417c478bd9Sstevel@tonic-gate resume_other_cpus() 3427c478bd9Sstevel@tonic-gate { 3437c478bd9Sstevel@tonic-gate ASSERT(CPU->cpu_id < NCPU); 3447c478bd9Sstevel@tonic-gate 3457c478bd9Sstevel@tonic-gate xc_release_cpus(); 3467c478bd9Sstevel@tonic-gate } 3477c478bd9Sstevel@tonic-gate 3487c478bd9Sstevel@tonic-gate void 3497c478bd9Sstevel@tonic-gate stop_other_cpus() 3507c478bd9Sstevel@tonic-gate { 3517c478bd9Sstevel@tonic-gate int cpuid = CPU->cpu_id; 3527c478bd9Sstevel@tonic-gate cpuset_t xcset; 3537c478bd9Sstevel@tonic-gate 3547c478bd9Sstevel@tonic-gate ASSERT(cpuid < NCPU); 3557c478bd9Sstevel@tonic-gate 3567c478bd9Sstevel@tonic-gate /* 357ae115bc7Smrj * xc_trycall will attempt to make all other CPUs execute mach_cpu_halt, 3587c478bd9Sstevel@tonic-gate * and will return immediately regardless of whether or not it was 3597c478bd9Sstevel@tonic-gate * able to make them do it. 3607c478bd9Sstevel@tonic-gate */ 3617c478bd9Sstevel@tonic-gate CPUSET_ALL_BUT(xcset, cpuid); 362ae115bc7Smrj xc_trycall(NULL, NULL, NULL, xcset, (int (*)())mach_cpu_halt); 3637c478bd9Sstevel@tonic-gate } 3647c478bd9Sstevel@tonic-gate 3657c478bd9Sstevel@tonic-gate /* 3667c478bd9Sstevel@tonic-gate * Machine dependent abort sequence handling 3677c478bd9Sstevel@tonic-gate */ 3687c478bd9Sstevel@tonic-gate void 3697c478bd9Sstevel@tonic-gate abort_sequence_enter(char *msg) 3707c478bd9Sstevel@tonic-gate { 3717c478bd9Sstevel@tonic-gate if (abort_enable == 0) { 3727c478bd9Sstevel@tonic-gate if (audit_active) 3737c478bd9Sstevel@tonic-gate audit_enterprom(0); 3747c478bd9Sstevel@tonic-gate return; 3757c478bd9Sstevel@tonic-gate } 3767c478bd9Sstevel@tonic-gate if (audit_active) 3777c478bd9Sstevel@tonic-gate audit_enterprom(1); 3787c478bd9Sstevel@tonic-gate debug_enter(msg); 3797c478bd9Sstevel@tonic-gate if (audit_active) 3807c478bd9Sstevel@tonic-gate audit_exitprom(1); 3817c478bd9Sstevel@tonic-gate } 3827c478bd9Sstevel@tonic-gate 3837c478bd9Sstevel@tonic-gate /* 3847c478bd9Sstevel@tonic-gate * Enter debugger. Called when the user types ctrl-alt-d or whenever 3857c478bd9Sstevel@tonic-gate * code wants to enter the debugger and possibly resume later. 3867c478bd9Sstevel@tonic-gate */ 3877c478bd9Sstevel@tonic-gate void 3887c478bd9Sstevel@tonic-gate debug_enter( 3897c478bd9Sstevel@tonic-gate char *msg) /* message to print, possibly NULL */ 3907c478bd9Sstevel@tonic-gate { 3917c478bd9Sstevel@tonic-gate if (dtrace_debugger_init != NULL) 3927c478bd9Sstevel@tonic-gate (*dtrace_debugger_init)(); 3937c478bd9Sstevel@tonic-gate 3947c478bd9Sstevel@tonic-gate if (msg) 3957c478bd9Sstevel@tonic-gate prom_printf("%s\n", msg); 3967c478bd9Sstevel@tonic-gate 3977c478bd9Sstevel@tonic-gate if (boothowto & RB_DEBUG) 398ae115bc7Smrj kmdb_enter(); 3997c478bd9Sstevel@tonic-gate 4007c478bd9Sstevel@tonic-gate if (dtrace_debugger_fini != NULL) 4017c478bd9Sstevel@tonic-gate (*dtrace_debugger_fini)(); 4027c478bd9Sstevel@tonic-gate } 4037c478bd9Sstevel@tonic-gate 4047c478bd9Sstevel@tonic-gate void 4057c478bd9Sstevel@tonic-gate reset(void) 4067c478bd9Sstevel@tonic-gate { 407843e1988Sjohnlev #if !defined(__xpv) 4087c478bd9Sstevel@tonic-gate ushort_t *bios_memchk; 4097c478bd9Sstevel@tonic-gate 4107c478bd9Sstevel@tonic-gate /* 4117c478bd9Sstevel@tonic-gate * Can't use psm_map_phys before the hat is initialized. 4127c478bd9Sstevel@tonic-gate */ 4137c478bd9Sstevel@tonic-gate if (khat_running) { 4147c478bd9Sstevel@tonic-gate bios_memchk = (ushort_t *)psm_map_phys(0x472, 4157c478bd9Sstevel@tonic-gate sizeof (ushort_t), PROT_READ | PROT_WRITE); 4167c478bd9Sstevel@tonic-gate if (bios_memchk) 4177c478bd9Sstevel@tonic-gate *bios_memchk = 0x1234; /* bios memory check disable */ 4187c478bd9Sstevel@tonic-gate } 4197c478bd9Sstevel@tonic-gate 420f2be5148Sszhou if (ddi_prop_exists(DDI_DEV_T_ANY, ddi_root_node(), 0, "efi-systab")) 421f2be5148Sszhou efi_reset(); 4227c478bd9Sstevel@tonic-gate pc_reset(); 423843e1988Sjohnlev #else 424843e1988Sjohnlev if (IN_XPV_PANIC()) 425843e1988Sjohnlev pc_reset(); 426843e1988Sjohnlev (void) HYPERVISOR_shutdown(SHUTDOWN_reboot); 427843e1988Sjohnlev panic("HYPERVISOR_shutdown() failed"); 428843e1988Sjohnlev #endif 4297c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 4307c478bd9Sstevel@tonic-gate } 4317c478bd9Sstevel@tonic-gate 4327c478bd9Sstevel@tonic-gate /* 4337c478bd9Sstevel@tonic-gate * Halt the machine and return to the monitor 4347c478bd9Sstevel@tonic-gate */ 4357c478bd9Sstevel@tonic-gate void 4367c478bd9Sstevel@tonic-gate halt(char *s) 4377c478bd9Sstevel@tonic-gate { 4387c478bd9Sstevel@tonic-gate stop_other_cpus(); /* send stop signal to other CPUs */ 4397c478bd9Sstevel@tonic-gate if (s) 4407c478bd9Sstevel@tonic-gate prom_printf("(%s) \n", s); 4417c478bd9Sstevel@tonic-gate prom_exit_to_mon(); 4427c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 4437c478bd9Sstevel@tonic-gate } 4447c478bd9Sstevel@tonic-gate 4457c478bd9Sstevel@tonic-gate /* 4467c478bd9Sstevel@tonic-gate * Initiate interrupt redistribution. 4477c478bd9Sstevel@tonic-gate */ 4487c478bd9Sstevel@tonic-gate void 4497c478bd9Sstevel@tonic-gate i_ddi_intr_redist_all_cpus() 4507c478bd9Sstevel@tonic-gate { 4517c478bd9Sstevel@tonic-gate } 4527c478bd9Sstevel@tonic-gate 4537c478bd9Sstevel@tonic-gate /* 4547c478bd9Sstevel@tonic-gate * XXX These probably ought to live somewhere else 4557c478bd9Sstevel@tonic-gate * XXX They are called from mem.c 4567c478bd9Sstevel@tonic-gate */ 4577c478bd9Sstevel@tonic-gate 4587c478bd9Sstevel@tonic-gate /* 4597c478bd9Sstevel@tonic-gate * Convert page frame number to an OBMEM page frame number 4607c478bd9Sstevel@tonic-gate * (i.e. put in the type bits -- zero for this implementation) 4617c478bd9Sstevel@tonic-gate */ 4627c478bd9Sstevel@tonic-gate pfn_t 4637c478bd9Sstevel@tonic-gate impl_obmem_pfnum(pfn_t pf) 4647c478bd9Sstevel@tonic-gate { 4657c478bd9Sstevel@tonic-gate return (pf); 4667c478bd9Sstevel@tonic-gate } 4677c478bd9Sstevel@tonic-gate 4687c478bd9Sstevel@tonic-gate #ifdef NM_DEBUG 4697c478bd9Sstevel@tonic-gate int nmi_test = 0; /* checked in intentry.s during clock int */ 4707c478bd9Sstevel@tonic-gate int nmtest = -1; 4717c478bd9Sstevel@tonic-gate nmfunc1(arg, rp) 4727c478bd9Sstevel@tonic-gate int arg; 4737c478bd9Sstevel@tonic-gate struct regs *rp; 4747c478bd9Sstevel@tonic-gate { 4757c478bd9Sstevel@tonic-gate printf("nmi called with arg = %x, regs = %x\n", arg, rp); 4767c478bd9Sstevel@tonic-gate nmtest += 50; 4777c478bd9Sstevel@tonic-gate if (arg == nmtest) { 4787c478bd9Sstevel@tonic-gate printf("ip = %x\n", rp->r_pc); 4797c478bd9Sstevel@tonic-gate return (1); 4807c478bd9Sstevel@tonic-gate } 4817c478bd9Sstevel@tonic-gate return (0); 4827c478bd9Sstevel@tonic-gate } 4837c478bd9Sstevel@tonic-gate 4847c478bd9Sstevel@tonic-gate #endif 4857c478bd9Sstevel@tonic-gate 4867c478bd9Sstevel@tonic-gate #include <sys/bootsvcs.h> 4877c478bd9Sstevel@tonic-gate 4887c478bd9Sstevel@tonic-gate /* Hacked up initialization for initial kernel check out is HERE. */ 4897c478bd9Sstevel@tonic-gate /* The basic steps are: */ 4907c478bd9Sstevel@tonic-gate /* kernel bootfuncs definition/initialization for KADB */ 4917c478bd9Sstevel@tonic-gate /* kadb bootfuncs pointer initialization */ 4927c478bd9Sstevel@tonic-gate /* putchar/getchar (interrupts disabled) */ 4937c478bd9Sstevel@tonic-gate 4947c478bd9Sstevel@tonic-gate /* kadb bootfuncs pointer initialization */ 4957c478bd9Sstevel@tonic-gate 4967c478bd9Sstevel@tonic-gate int 4977c478bd9Sstevel@tonic-gate sysp_getchar() 4987c478bd9Sstevel@tonic-gate { 4997c478bd9Sstevel@tonic-gate int i; 500ae115bc7Smrj ulong_t s; 5017c478bd9Sstevel@tonic-gate 5027c478bd9Sstevel@tonic-gate if (cons_polledio == NULL) { 5037c478bd9Sstevel@tonic-gate /* Uh oh */ 5047c478bd9Sstevel@tonic-gate prom_printf("getchar called with no console\n"); 5057c478bd9Sstevel@tonic-gate for (;;) 5067c478bd9Sstevel@tonic-gate /* LOOP FOREVER */; 5077c478bd9Sstevel@tonic-gate } 5087c478bd9Sstevel@tonic-gate 5097c478bd9Sstevel@tonic-gate s = clear_int_flag(); 5107c478bd9Sstevel@tonic-gate i = cons_polledio->cons_polledio_getchar( 5117c478bd9Sstevel@tonic-gate cons_polledio->cons_polledio_argument); 5127c478bd9Sstevel@tonic-gate restore_int_flag(s); 5137c478bd9Sstevel@tonic-gate return (i); 5147c478bd9Sstevel@tonic-gate } 5157c478bd9Sstevel@tonic-gate 5167c478bd9Sstevel@tonic-gate void 5177c478bd9Sstevel@tonic-gate sysp_putchar(int c) 5187c478bd9Sstevel@tonic-gate { 519ae115bc7Smrj ulong_t s; 5207c478bd9Sstevel@tonic-gate 5217c478bd9Sstevel@tonic-gate /* 5227c478bd9Sstevel@tonic-gate * We have no alternative but to drop the output on the floor. 5237c478bd9Sstevel@tonic-gate */ 524fea9cb91Slq150181 if (cons_polledio == NULL || 525fea9cb91Slq150181 cons_polledio->cons_polledio_putchar == NULL) 5267c478bd9Sstevel@tonic-gate return; 5277c478bd9Sstevel@tonic-gate 5287c478bd9Sstevel@tonic-gate s = clear_int_flag(); 5297c478bd9Sstevel@tonic-gate cons_polledio->cons_polledio_putchar( 5307c478bd9Sstevel@tonic-gate cons_polledio->cons_polledio_argument, c); 5317c478bd9Sstevel@tonic-gate restore_int_flag(s); 5327c478bd9Sstevel@tonic-gate } 5337c478bd9Sstevel@tonic-gate 5347c478bd9Sstevel@tonic-gate int 5357c478bd9Sstevel@tonic-gate sysp_ischar() 5367c478bd9Sstevel@tonic-gate { 5377c478bd9Sstevel@tonic-gate int i; 538ae115bc7Smrj ulong_t s; 5397c478bd9Sstevel@tonic-gate 540fea9cb91Slq150181 if (cons_polledio == NULL || 541fea9cb91Slq150181 cons_polledio->cons_polledio_ischar == NULL) 5427c478bd9Sstevel@tonic-gate return (0); 5437c478bd9Sstevel@tonic-gate 5447c478bd9Sstevel@tonic-gate s = clear_int_flag(); 5457c478bd9Sstevel@tonic-gate i = cons_polledio->cons_polledio_ischar( 5467c478bd9Sstevel@tonic-gate cons_polledio->cons_polledio_argument); 5477c478bd9Sstevel@tonic-gate restore_int_flag(s); 5487c478bd9Sstevel@tonic-gate return (i); 5497c478bd9Sstevel@tonic-gate } 5507c478bd9Sstevel@tonic-gate 5517c478bd9Sstevel@tonic-gate int 5527c478bd9Sstevel@tonic-gate goany(void) 5537c478bd9Sstevel@tonic-gate { 5547c478bd9Sstevel@tonic-gate prom_printf("Type any key to continue "); 5557c478bd9Sstevel@tonic-gate (void) prom_getchar(); 5567c478bd9Sstevel@tonic-gate prom_printf("\n"); 5577c478bd9Sstevel@tonic-gate return (1); 5587c478bd9Sstevel@tonic-gate } 5597c478bd9Sstevel@tonic-gate 5607c478bd9Sstevel@tonic-gate static struct boot_syscalls kern_sysp = { 5617c478bd9Sstevel@tonic-gate sysp_getchar, /* unchar (*getchar)(); 7 */ 5627c478bd9Sstevel@tonic-gate sysp_putchar, /* int (*putchar)(); 8 */ 5637c478bd9Sstevel@tonic-gate sysp_ischar, /* int (*ischar)(); 9 */ 5647c478bd9Sstevel@tonic-gate }; 5657c478bd9Sstevel@tonic-gate 566843e1988Sjohnlev #if defined(__xpv) 567843e1988Sjohnlev int using_kern_polledio; 568843e1988Sjohnlev #endif 569843e1988Sjohnlev 5707c478bd9Sstevel@tonic-gate void 5717c478bd9Sstevel@tonic-gate kadb_uses_kernel() 5727c478bd9Sstevel@tonic-gate { 5737c478bd9Sstevel@tonic-gate /* 5747c478bd9Sstevel@tonic-gate * This routine is now totally misnamed, since it does not in fact 5757c478bd9Sstevel@tonic-gate * control kadb's I/O; it only controls the kernel's prom_* I/O. 5767c478bd9Sstevel@tonic-gate */ 5777c478bd9Sstevel@tonic-gate sysp = &kern_sysp; 578843e1988Sjohnlev #if defined(__xpv) 579843e1988Sjohnlev using_kern_polledio = 1; 580843e1988Sjohnlev #endif 5817c478bd9Sstevel@tonic-gate } 5827c478bd9Sstevel@tonic-gate 5837c478bd9Sstevel@tonic-gate /* 5847c478bd9Sstevel@tonic-gate * the interface to the outside world 5857c478bd9Sstevel@tonic-gate */ 5867c478bd9Sstevel@tonic-gate 5877c478bd9Sstevel@tonic-gate /* 5887c478bd9Sstevel@tonic-gate * poll_port -- wait for a register to achieve a 5897c478bd9Sstevel@tonic-gate * specific state. Arguments are a mask of bits we care about, 5907c478bd9Sstevel@tonic-gate * and two sub-masks. To return normally, all the bits in the 5917c478bd9Sstevel@tonic-gate * first sub-mask must be ON, all the bits in the second sub- 5927c478bd9Sstevel@tonic-gate * mask must be OFF. If about seconds pass without the register 5937c478bd9Sstevel@tonic-gate * achieving the desired bit configuration, we return 1, else 5947c478bd9Sstevel@tonic-gate * 0. 5957c478bd9Sstevel@tonic-gate */ 5967c478bd9Sstevel@tonic-gate int 5977c478bd9Sstevel@tonic-gate poll_port(ushort_t port, ushort_t mask, ushort_t onbits, ushort_t offbits) 5987c478bd9Sstevel@tonic-gate { 5997c478bd9Sstevel@tonic-gate int i; 6007c478bd9Sstevel@tonic-gate ushort_t maskval; 6017c478bd9Sstevel@tonic-gate 6027c478bd9Sstevel@tonic-gate for (i = 500000; i; i--) { 6037c478bd9Sstevel@tonic-gate maskval = inb(port) & mask; 6047c478bd9Sstevel@tonic-gate if (((maskval & onbits) == onbits) && 6057c478bd9Sstevel@tonic-gate ((maskval & offbits) == 0)) 6067c478bd9Sstevel@tonic-gate return (0); 6077c478bd9Sstevel@tonic-gate drv_usecwait(10); 6087c478bd9Sstevel@tonic-gate } 6097c478bd9Sstevel@tonic-gate return (1); 6107c478bd9Sstevel@tonic-gate } 6117c478bd9Sstevel@tonic-gate 6127c478bd9Sstevel@tonic-gate /* 6137c478bd9Sstevel@tonic-gate * set_idle_cpu is called from idle() when a CPU becomes idle. 6147c478bd9Sstevel@tonic-gate */ 6157c478bd9Sstevel@tonic-gate /*LINTED: static unused */ 6167c478bd9Sstevel@tonic-gate static uint_t last_idle_cpu; 6177c478bd9Sstevel@tonic-gate 6187c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 6197c478bd9Sstevel@tonic-gate void 6207c478bd9Sstevel@tonic-gate set_idle_cpu(int cpun) 6217c478bd9Sstevel@tonic-gate { 6227c478bd9Sstevel@tonic-gate last_idle_cpu = cpun; 6237c478bd9Sstevel@tonic-gate (*psm_set_idle_cpuf)(cpun); 6247c478bd9Sstevel@tonic-gate } 6257c478bd9Sstevel@tonic-gate 6267c478bd9Sstevel@tonic-gate /* 6277c478bd9Sstevel@tonic-gate * unset_idle_cpu is called from idle() when a CPU is no longer idle. 6287c478bd9Sstevel@tonic-gate */ 6297c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 6307c478bd9Sstevel@tonic-gate void 6317c478bd9Sstevel@tonic-gate unset_idle_cpu(int cpun) 6327c478bd9Sstevel@tonic-gate { 6337c478bd9Sstevel@tonic-gate (*psm_unset_idle_cpuf)(cpun); 6347c478bd9Sstevel@tonic-gate } 6357c478bd9Sstevel@tonic-gate 6367c478bd9Sstevel@tonic-gate /* 6377c478bd9Sstevel@tonic-gate * This routine is almost correct now, but not quite. It still needs the 6387c478bd9Sstevel@tonic-gate * equivalent concept of "hres_last_tick", just like on the sparc side. 6397c478bd9Sstevel@tonic-gate * The idea is to take a snapshot of the hi-res timer while doing the 6407c478bd9Sstevel@tonic-gate * hrestime_adj updates under hres_lock in locore, so that the small 6417c478bd9Sstevel@tonic-gate * interval between interrupt assertion and interrupt processing is 6427c478bd9Sstevel@tonic-gate * accounted for correctly. Once we have this, the code below should 6437c478bd9Sstevel@tonic-gate * be modified to subtract off hres_last_tick rather than hrtime_base. 6447c478bd9Sstevel@tonic-gate * 6457c478bd9Sstevel@tonic-gate * I'd have done this myself, but I don't have source to all of the 6467c478bd9Sstevel@tonic-gate * vendor-specific hi-res timer routines (grrr...). The generic hook I 6477c478bd9Sstevel@tonic-gate * need is something like "gethrtime_unlocked()", which would be just like 6487c478bd9Sstevel@tonic-gate * gethrtime() but would assume that you're already holding CLOCK_LOCK(). 6497c478bd9Sstevel@tonic-gate * This is what the GET_HRTIME() macro is for on sparc (although it also 6507c478bd9Sstevel@tonic-gate * serves the function of making time available without a function call 6517c478bd9Sstevel@tonic-gate * so you don't take a register window overflow while traps are disabled). 6527c478bd9Sstevel@tonic-gate */ 6537c478bd9Sstevel@tonic-gate void 6547c478bd9Sstevel@tonic-gate pc_gethrestime(timestruc_t *tp) 6557c478bd9Sstevel@tonic-gate { 6567c478bd9Sstevel@tonic-gate int lock_prev; 6577c478bd9Sstevel@tonic-gate timestruc_t now; 6587c478bd9Sstevel@tonic-gate int nslt; /* nsec since last tick */ 6597c478bd9Sstevel@tonic-gate int adj; /* amount of adjustment to apply */ 6607c478bd9Sstevel@tonic-gate 6617c478bd9Sstevel@tonic-gate loop: 6627c478bd9Sstevel@tonic-gate lock_prev = hres_lock; 6637c478bd9Sstevel@tonic-gate now = hrestime; 6647c478bd9Sstevel@tonic-gate nslt = (int)(gethrtime() - hres_last_tick); 6657c478bd9Sstevel@tonic-gate if (nslt < 0) { 6667c478bd9Sstevel@tonic-gate /* 6677c478bd9Sstevel@tonic-gate * nslt < 0 means a tick came between sampling 6687c478bd9Sstevel@tonic-gate * gethrtime() and hres_last_tick; restart the loop 6697c478bd9Sstevel@tonic-gate */ 6707c478bd9Sstevel@tonic-gate 6717c478bd9Sstevel@tonic-gate goto loop; 6727c478bd9Sstevel@tonic-gate } 6737c478bd9Sstevel@tonic-gate now.tv_nsec += nslt; 6747c478bd9Sstevel@tonic-gate if (hrestime_adj != 0) { 6757c478bd9Sstevel@tonic-gate if (hrestime_adj > 0) { 6767c478bd9Sstevel@tonic-gate adj = (nslt >> ADJ_SHIFT); 6777c478bd9Sstevel@tonic-gate if (adj > hrestime_adj) 6787c478bd9Sstevel@tonic-gate adj = (int)hrestime_adj; 6797c478bd9Sstevel@tonic-gate } else { 6807c478bd9Sstevel@tonic-gate adj = -(nslt >> ADJ_SHIFT); 6817c478bd9Sstevel@tonic-gate if (adj < hrestime_adj) 6827c478bd9Sstevel@tonic-gate adj = (int)hrestime_adj; 6837c478bd9Sstevel@tonic-gate } 6847c478bd9Sstevel@tonic-gate now.tv_nsec += adj; 6857c478bd9Sstevel@tonic-gate } 6867c478bd9Sstevel@tonic-gate while ((unsigned long)now.tv_nsec >= NANOSEC) { 6877c478bd9Sstevel@tonic-gate 6887c478bd9Sstevel@tonic-gate /* 6897c478bd9Sstevel@tonic-gate * We might have a large adjustment or have been in the 6907c478bd9Sstevel@tonic-gate * debugger for a long time; take care of (at most) four 6917c478bd9Sstevel@tonic-gate * of those missed seconds (tv_nsec is 32 bits, so 6927c478bd9Sstevel@tonic-gate * anything >4s will be wrapping around). However, 6937c478bd9Sstevel@tonic-gate * anything more than 2 seconds out of sync will trigger 6947c478bd9Sstevel@tonic-gate * timedelta from clock() to go correct the time anyway, 6957c478bd9Sstevel@tonic-gate * so do what we can, and let the big crowbar do the 6967c478bd9Sstevel@tonic-gate * rest. A similar correction while loop exists inside 6977c478bd9Sstevel@tonic-gate * hres_tick(); in all cases we'd like tv_nsec to 6987c478bd9Sstevel@tonic-gate * satisfy 0 <= tv_nsec < NANOSEC to avoid confusing 6997c478bd9Sstevel@tonic-gate * user processes, but if tv_sec's a little behind for a 7007c478bd9Sstevel@tonic-gate * little while, that's OK; time still monotonically 7017c478bd9Sstevel@tonic-gate * increases. 7027c478bd9Sstevel@tonic-gate */ 7037c478bd9Sstevel@tonic-gate 7047c478bd9Sstevel@tonic-gate now.tv_nsec -= NANOSEC; 7057c478bd9Sstevel@tonic-gate now.tv_sec++; 7067c478bd9Sstevel@tonic-gate } 7077c478bd9Sstevel@tonic-gate if ((hres_lock & ~1) != lock_prev) 7087c478bd9Sstevel@tonic-gate goto loop; 7097c478bd9Sstevel@tonic-gate 7107c478bd9Sstevel@tonic-gate *tp = now; 7117c478bd9Sstevel@tonic-gate } 7127c478bd9Sstevel@tonic-gate 7137c478bd9Sstevel@tonic-gate void 7147c478bd9Sstevel@tonic-gate gethrestime_lasttick(timespec_t *tp) 7157c478bd9Sstevel@tonic-gate { 7167c478bd9Sstevel@tonic-gate int s; 7177c478bd9Sstevel@tonic-gate 7187c478bd9Sstevel@tonic-gate s = hr_clock_lock(); 7197c478bd9Sstevel@tonic-gate *tp = hrestime; 7207c478bd9Sstevel@tonic-gate hr_clock_unlock(s); 7217c478bd9Sstevel@tonic-gate } 7227c478bd9Sstevel@tonic-gate 7237c478bd9Sstevel@tonic-gate time_t 7247c478bd9Sstevel@tonic-gate gethrestime_sec(void) 7257c478bd9Sstevel@tonic-gate { 7267c478bd9Sstevel@tonic-gate timestruc_t now; 7277c478bd9Sstevel@tonic-gate 7287c478bd9Sstevel@tonic-gate gethrestime(&now); 7297c478bd9Sstevel@tonic-gate return (now.tv_sec); 7307c478bd9Sstevel@tonic-gate } 7317c478bd9Sstevel@tonic-gate 7327c478bd9Sstevel@tonic-gate /* 7337c478bd9Sstevel@tonic-gate * Initialize a kernel thread's stack 7347c478bd9Sstevel@tonic-gate */ 7357c478bd9Sstevel@tonic-gate 7367c478bd9Sstevel@tonic-gate caddr_t 7377c478bd9Sstevel@tonic-gate thread_stk_init(caddr_t stk) 7387c478bd9Sstevel@tonic-gate { 7397c478bd9Sstevel@tonic-gate ASSERT(((uintptr_t)stk & (STACK_ALIGN - 1)) == 0); 7407c478bd9Sstevel@tonic-gate return (stk - SA(MINFRAME)); 7417c478bd9Sstevel@tonic-gate } 7427c478bd9Sstevel@tonic-gate 7437c478bd9Sstevel@tonic-gate /* 7447c478bd9Sstevel@tonic-gate * Initialize lwp's kernel stack. 7457c478bd9Sstevel@tonic-gate */ 7467c478bd9Sstevel@tonic-gate 7477c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE 7487c478bd9Sstevel@tonic-gate /* 7497c478bd9Sstevel@tonic-gate * There's a tricky interdependency here between use of sysenter and 7507c478bd9Sstevel@tonic-gate * TRAPTRACE which needs recording to avoid future confusion (this is 7517c478bd9Sstevel@tonic-gate * about the third time I've re-figured this out ..) 7527c478bd9Sstevel@tonic-gate * 7537c478bd9Sstevel@tonic-gate * Here's how debugging lcall works with TRAPTRACE. 7547c478bd9Sstevel@tonic-gate * 7557c478bd9Sstevel@tonic-gate * 1 We're in userland with a breakpoint on the lcall instruction. 7567c478bd9Sstevel@tonic-gate * 2 We execute the instruction - the instruction pushes the userland 7577c478bd9Sstevel@tonic-gate * %ss, %esp, %efl, %cs, %eip on the stack and zips into the kernel 7587c478bd9Sstevel@tonic-gate * via the call gate. 7597c478bd9Sstevel@tonic-gate * 3 The hardware raises a debug trap in kernel mode, the hardware 7607c478bd9Sstevel@tonic-gate * pushes %efl, %cs, %eip and gets to dbgtrap via the idt. 7617c478bd9Sstevel@tonic-gate * 4 dbgtrap pushes the error code and trapno and calls cmntrap 7627c478bd9Sstevel@tonic-gate * 5 cmntrap finishes building a trap frame 7637c478bd9Sstevel@tonic-gate * 6 The TRACE_REGS macros in cmntrap copy a REGSIZE worth chunk 7647c478bd9Sstevel@tonic-gate * off the stack into the traptrace buffer. 7657c478bd9Sstevel@tonic-gate * 7667c478bd9Sstevel@tonic-gate * This means that the traptrace buffer contains the wrong values in 7677c478bd9Sstevel@tonic-gate * %esp and %ss, but everything else in there is correct. 7687c478bd9Sstevel@tonic-gate * 7697c478bd9Sstevel@tonic-gate * Here's how debugging sysenter works with TRAPTRACE. 7707c478bd9Sstevel@tonic-gate * 7717c478bd9Sstevel@tonic-gate * a We're in userland with a breakpoint on the sysenter instruction. 7727c478bd9Sstevel@tonic-gate * b We execute the instruction - the instruction pushes -nothing- 7737c478bd9Sstevel@tonic-gate * on the stack, but sets %cs, %eip, %ss, %esp to prearranged 7747c478bd9Sstevel@tonic-gate * values to take us to sys_sysenter, at the top of the lwp's 7757c478bd9Sstevel@tonic-gate * stack. 7767c478bd9Sstevel@tonic-gate * c goto 3 7777c478bd9Sstevel@tonic-gate * 7787c478bd9Sstevel@tonic-gate * At this point, because we got into the kernel without the requisite 7797c478bd9Sstevel@tonic-gate * five pushes on the stack, if we didn't make extra room, we'd 7807c478bd9Sstevel@tonic-gate * end up with the TRACE_REGS macro fetching the saved %ss and %esp 7817c478bd9Sstevel@tonic-gate * values from negative (unmapped) stack addresses -- which really bites. 7827c478bd9Sstevel@tonic-gate * That's why we do the '-= 8' below. 7837c478bd9Sstevel@tonic-gate * 7847c478bd9Sstevel@tonic-gate * XXX Note that reading "up" lwp0's stack works because t0 is declared 7857c478bd9Sstevel@tonic-gate * right next to t0stack in locore.s 7867c478bd9Sstevel@tonic-gate */ 7877c478bd9Sstevel@tonic-gate #endif 7887c478bd9Sstevel@tonic-gate 7897c478bd9Sstevel@tonic-gate caddr_t 7907c478bd9Sstevel@tonic-gate lwp_stk_init(klwp_t *lwp, caddr_t stk) 7917c478bd9Sstevel@tonic-gate { 7927c478bd9Sstevel@tonic-gate caddr_t oldstk; 7937c478bd9Sstevel@tonic-gate struct pcb *pcb = &lwp->lwp_pcb; 7947c478bd9Sstevel@tonic-gate 7957c478bd9Sstevel@tonic-gate oldstk = stk; 7967c478bd9Sstevel@tonic-gate stk -= SA(sizeof (struct regs) + SA(MINFRAME)); 7977c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE 7987c478bd9Sstevel@tonic-gate stk -= 2 * sizeof (greg_t); /* space for phony %ss:%sp (see above) */ 7997c478bd9Sstevel@tonic-gate #endif 8007c478bd9Sstevel@tonic-gate stk = (caddr_t)((uintptr_t)stk & ~(STACK_ALIGN - 1ul)); 8017c478bd9Sstevel@tonic-gate bzero(stk, oldstk - stk); 8027c478bd9Sstevel@tonic-gate lwp->lwp_regs = (void *)(stk + SA(MINFRAME)); 8037c478bd9Sstevel@tonic-gate 8047c478bd9Sstevel@tonic-gate /* 8057c478bd9Sstevel@tonic-gate * Arrange that the virtualized %fs and %gs GDT descriptors 8067c478bd9Sstevel@tonic-gate * have a well-defined initial state (present, ring 3 8077c478bd9Sstevel@tonic-gate * and of type data). 8087c478bd9Sstevel@tonic-gate */ 8097c478bd9Sstevel@tonic-gate #if defined(__amd64) 8107c478bd9Sstevel@tonic-gate if (lwp_getdatamodel(lwp) == DATAMODEL_NATIVE) 8117c478bd9Sstevel@tonic-gate pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_udesc; 8127c478bd9Sstevel@tonic-gate else 8137c478bd9Sstevel@tonic-gate pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_u32desc; 8147c478bd9Sstevel@tonic-gate #elif defined(__i386) 8157c478bd9Sstevel@tonic-gate pcb->pcb_fsdesc = pcb->pcb_gsdesc = zero_udesc; 8167c478bd9Sstevel@tonic-gate #endif /* __i386 */ 8177c478bd9Sstevel@tonic-gate lwp_installctx(lwp); 8187c478bd9Sstevel@tonic-gate return (stk); 8197c478bd9Sstevel@tonic-gate } 8207c478bd9Sstevel@tonic-gate 8217c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 8227c478bd9Sstevel@tonic-gate void 8237c478bd9Sstevel@tonic-gate lwp_stk_fini(klwp_t *lwp) 8247c478bd9Sstevel@tonic-gate {} 8257c478bd9Sstevel@tonic-gate 8267c478bd9Sstevel@tonic-gate /* 827d90554ebSdmick * If we're not the panic CPU, we wait in panic_idle for reboot. 8287c478bd9Sstevel@tonic-gate */ 8297c478bd9Sstevel@tonic-gate static void 8307c478bd9Sstevel@tonic-gate panic_idle(void) 8317c478bd9Sstevel@tonic-gate { 8327c478bd9Sstevel@tonic-gate splx(ipltospl(CLOCK_LEVEL)); 8337c478bd9Sstevel@tonic-gate (void) setjmp(&curthread->t_pcb); 8347c478bd9Sstevel@tonic-gate 835ae115bc7Smrj for (;;) 836ae115bc7Smrj ; 8377c478bd9Sstevel@tonic-gate } 8387c478bd9Sstevel@tonic-gate 8397c478bd9Sstevel@tonic-gate /* 8407c478bd9Sstevel@tonic-gate * Stop the other CPUs by cross-calling them and forcing them to enter 8417c478bd9Sstevel@tonic-gate * the panic_idle() loop above. 8427c478bd9Sstevel@tonic-gate */ 8437c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 8447c478bd9Sstevel@tonic-gate void 8457c478bd9Sstevel@tonic-gate panic_stopcpus(cpu_t *cp, kthread_t *t, int spl) 8467c478bd9Sstevel@tonic-gate { 8477c478bd9Sstevel@tonic-gate processorid_t i; 8487c478bd9Sstevel@tonic-gate cpuset_t xcset; 8497c478bd9Sstevel@tonic-gate 850843e1988Sjohnlev /* 851843e1988Sjohnlev * In the case of a Xen panic, the hypervisor has already stopped 852843e1988Sjohnlev * all of the CPUs. 853843e1988Sjohnlev */ 854843e1988Sjohnlev if (!IN_XPV_PANIC()) { 8557c478bd9Sstevel@tonic-gate (void) splzs(); 8567c478bd9Sstevel@tonic-gate 8577c478bd9Sstevel@tonic-gate CPUSET_ALL_BUT(xcset, cp->cpu_id); 8587c478bd9Sstevel@tonic-gate xc_trycall(NULL, NULL, NULL, xcset, (int (*)())panic_idle); 859843e1988Sjohnlev } 8607c478bd9Sstevel@tonic-gate 8617c478bd9Sstevel@tonic-gate for (i = 0; i < NCPU; i++) { 8627c478bd9Sstevel@tonic-gate if (i != cp->cpu_id && cpu[i] != NULL && 8637c478bd9Sstevel@tonic-gate (cpu[i]->cpu_flags & CPU_EXISTS)) 8647c478bd9Sstevel@tonic-gate cpu[i]->cpu_flags |= CPU_QUIESCED; 8657c478bd9Sstevel@tonic-gate } 8667c478bd9Sstevel@tonic-gate } 8677c478bd9Sstevel@tonic-gate 8687c478bd9Sstevel@tonic-gate /* 8697c478bd9Sstevel@tonic-gate * Platform callback following each entry to panicsys(). 8707c478bd9Sstevel@tonic-gate */ 8717c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 8727c478bd9Sstevel@tonic-gate void 8737c478bd9Sstevel@tonic-gate panic_enter_hw(int spl) 8747c478bd9Sstevel@tonic-gate { 8757c478bd9Sstevel@tonic-gate /* Nothing to do here */ 8767c478bd9Sstevel@tonic-gate } 8777c478bd9Sstevel@tonic-gate 8787c478bd9Sstevel@tonic-gate /* 8797c478bd9Sstevel@tonic-gate * Platform-specific code to execute after panicstr is set: we invoke 8807c478bd9Sstevel@tonic-gate * the PSM entry point to indicate that a panic has occurred. 8817c478bd9Sstevel@tonic-gate */ 8827c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 8837c478bd9Sstevel@tonic-gate void 8847c478bd9Sstevel@tonic-gate panic_quiesce_hw(panic_data_t *pdp) 8857c478bd9Sstevel@tonic-gate { 8867c478bd9Sstevel@tonic-gate psm_notifyf(PSM_PANIC_ENTER); 8877c478bd9Sstevel@tonic-gate 888e4b86885SCheng Sean Ye cmi_panic_callback(); 889e4b86885SCheng Sean Ye 8907c478bd9Sstevel@tonic-gate #ifdef TRAPTRACE 8917c478bd9Sstevel@tonic-gate /* 8927c478bd9Sstevel@tonic-gate * Turn off TRAPTRACE 8937c478bd9Sstevel@tonic-gate */ 8947c478bd9Sstevel@tonic-gate TRAPTRACE_FREEZE; 8957c478bd9Sstevel@tonic-gate #endif /* TRAPTRACE */ 8967c478bd9Sstevel@tonic-gate } 8977c478bd9Sstevel@tonic-gate 8987c478bd9Sstevel@tonic-gate /* 8997c478bd9Sstevel@tonic-gate * Platform callback prior to writing crash dump. 9007c478bd9Sstevel@tonic-gate */ 9017c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 9027c478bd9Sstevel@tonic-gate void 9037c478bd9Sstevel@tonic-gate panic_dump_hw(int spl) 9047c478bd9Sstevel@tonic-gate { 9057c478bd9Sstevel@tonic-gate /* Nothing to do here */ 9067c478bd9Sstevel@tonic-gate } 9077c478bd9Sstevel@tonic-gate 908843e1988Sjohnlev void * 909843e1988Sjohnlev plat_traceback(void *fpreg) 910843e1988Sjohnlev { 911843e1988Sjohnlev #ifdef __xpv 912843e1988Sjohnlev if (IN_XPV_PANIC()) 913843e1988Sjohnlev return (xpv_traceback(fpreg)); 914843e1988Sjohnlev #endif 915843e1988Sjohnlev return (fpreg); 916843e1988Sjohnlev } 917843e1988Sjohnlev 9187c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 9197c478bd9Sstevel@tonic-gate void 9207c478bd9Sstevel@tonic-gate plat_tod_fault(enum tod_fault_type tod_bad) 921ae115bc7Smrj {} 9227c478bd9Sstevel@tonic-gate 9237c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 9247c478bd9Sstevel@tonic-gate int 9257c478bd9Sstevel@tonic-gate blacklist(int cmd, const char *scheme, nvlist_t *fmri, const char *class) 9267c478bd9Sstevel@tonic-gate { 9277c478bd9Sstevel@tonic-gate return (ENOTSUP); 9287c478bd9Sstevel@tonic-gate } 9297c478bd9Sstevel@tonic-gate 9307c478bd9Sstevel@tonic-gate /* 9317c478bd9Sstevel@tonic-gate * The underlying console output routines are protected by raising IPL in case 9327c478bd9Sstevel@tonic-gate * we are still calling into the early boot services. Once we start calling 9337c478bd9Sstevel@tonic-gate * the kernel console emulator, it will disable interrupts completely during 9347c478bd9Sstevel@tonic-gate * character rendering (see sysp_putchar, for example). Refer to the comments 9357c478bd9Sstevel@tonic-gate * and code in common/os/console.c for more information on these callbacks. 9367c478bd9Sstevel@tonic-gate */ 9377c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 9387c478bd9Sstevel@tonic-gate int 9397c478bd9Sstevel@tonic-gate console_enter(int busy) 9407c478bd9Sstevel@tonic-gate { 9417c478bd9Sstevel@tonic-gate return (splzs()); 9427c478bd9Sstevel@tonic-gate } 9437c478bd9Sstevel@tonic-gate 9447c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 9457c478bd9Sstevel@tonic-gate void 9467c478bd9Sstevel@tonic-gate console_exit(int busy, int spl) 9477c478bd9Sstevel@tonic-gate { 9487c478bd9Sstevel@tonic-gate splx(spl); 9497c478bd9Sstevel@tonic-gate } 9507c478bd9Sstevel@tonic-gate 9517c478bd9Sstevel@tonic-gate /* 9527c478bd9Sstevel@tonic-gate * Allocate a region of virtual address space, unmapped. 9537c478bd9Sstevel@tonic-gate * Stubbed out except on sparc, at least for now. 9547c478bd9Sstevel@tonic-gate */ 9557c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 9567c478bd9Sstevel@tonic-gate void * 9577c478bd9Sstevel@tonic-gate boot_virt_alloc(void *addr, size_t size) 9587c478bd9Sstevel@tonic-gate { 9597c478bd9Sstevel@tonic-gate return (addr); 9607c478bd9Sstevel@tonic-gate } 9617c478bd9Sstevel@tonic-gate 9627c478bd9Sstevel@tonic-gate volatile unsigned long tenmicrodata; 9637c478bd9Sstevel@tonic-gate 9647c478bd9Sstevel@tonic-gate void 9657c478bd9Sstevel@tonic-gate tenmicrosec(void) 9667c478bd9Sstevel@tonic-gate { 967843e1988Sjohnlev extern int gethrtime_hires; 9687c478bd9Sstevel@tonic-gate 969843e1988Sjohnlev if (gethrtime_hires) { 9707c478bd9Sstevel@tonic-gate hrtime_t start, end; 9717c478bd9Sstevel@tonic-gate start = end = gethrtime(); 9727c478bd9Sstevel@tonic-gate while ((end - start) < (10 * (NANOSEC / MICROSEC))) { 9737c478bd9Sstevel@tonic-gate SMT_PAUSE(); 9747c478bd9Sstevel@tonic-gate end = gethrtime(); 9757c478bd9Sstevel@tonic-gate } 9767c478bd9Sstevel@tonic-gate } else { 977843e1988Sjohnlev #if defined(__xpv) 978843e1988Sjohnlev hrtime_t newtime; 979843e1988Sjohnlev 980843e1988Sjohnlev newtime = xpv_gethrtime() + 10000; /* now + 10 us */ 981843e1988Sjohnlev while (xpv_gethrtime() < newtime) 982843e1988Sjohnlev SMT_PAUSE(); 983843e1988Sjohnlev #else /* __xpv */ 984ae115bc7Smrj int i; 985ae115bc7Smrj 9867c478bd9Sstevel@tonic-gate /* 9877c478bd9Sstevel@tonic-gate * Artificial loop to induce delay. 9887c478bd9Sstevel@tonic-gate */ 9897c478bd9Sstevel@tonic-gate for (i = 0; i < microdata; i++) 9907c478bd9Sstevel@tonic-gate tenmicrodata = microdata; 991843e1988Sjohnlev #endif /* __xpv */ 9927c478bd9Sstevel@tonic-gate } 9937c478bd9Sstevel@tonic-gate } 994eda89462Sesolom 995eda89462Sesolom /* 996eda89462Sesolom * get_cpu_mstate() is passed an array of timestamps, NCMSTATES 997eda89462Sesolom * long, and it fills in the array with the time spent on cpu in 998eda89462Sesolom * each of the mstates, where time is returned in nsec. 999eda89462Sesolom * 1000eda89462Sesolom * No guarantee is made that the returned values in times[] will 1001eda89462Sesolom * monotonically increase on sequential calls, although this will 1002eda89462Sesolom * be true in the long run. Any such guarantee must be handled by 1003eda89462Sesolom * the caller, if needed. This can happen if we fail to account 1004eda89462Sesolom * for elapsed time due to a generation counter conflict, yet we 1005eda89462Sesolom * did account for it on a prior call (see below). 1006eda89462Sesolom * 1007eda89462Sesolom * The complication is that the cpu in question may be updating 1008eda89462Sesolom * its microstate at the same time that we are reading it. 1009eda89462Sesolom * Because the microstate is only updated when the CPU's state 1010eda89462Sesolom * changes, the values in cpu_intracct[] can be indefinitely out 1011eda89462Sesolom * of date. To determine true current values, it is necessary to 1012eda89462Sesolom * compare the current time with cpu_mstate_start, and add the 1013eda89462Sesolom * difference to times[cpu_mstate]. 1014eda89462Sesolom * 1015eda89462Sesolom * This can be a problem if those values are changing out from 1016eda89462Sesolom * under us. Because the code path in new_cpu_mstate() is 1017eda89462Sesolom * performance critical, we have not added a lock to it. Instead, 1018eda89462Sesolom * we have added a generation counter. Before beginning 1019eda89462Sesolom * modifications, the counter is set to 0. After modifications, 1020eda89462Sesolom * it is set to the old value plus one. 1021eda89462Sesolom * 1022eda89462Sesolom * get_cpu_mstate() will not consider the values of cpu_mstate 1023eda89462Sesolom * and cpu_mstate_start to be usable unless the value of 1024eda89462Sesolom * cpu_mstate_gen is both non-zero and unchanged, both before and 1025eda89462Sesolom * after reading the mstate information. Note that we must 1026eda89462Sesolom * protect against out-of-order loads around accesses to the 1027eda89462Sesolom * generation counter. Also, this is a best effort approach in 1028eda89462Sesolom * that we do not retry should the counter be found to have 1029eda89462Sesolom * changed. 1030eda89462Sesolom * 1031eda89462Sesolom * cpu_intracct[] is used to identify time spent in each CPU 1032eda89462Sesolom * mstate while handling interrupts. Such time should be reported 1033eda89462Sesolom * against system time, and so is subtracted out from its 1034eda89462Sesolom * corresponding cpu_acct[] time and added to 1035eda89462Sesolom * cpu_acct[CMS_SYSTEM]. 1036eda89462Sesolom */ 1037eda89462Sesolom 1038eda89462Sesolom void 1039eda89462Sesolom get_cpu_mstate(cpu_t *cpu, hrtime_t *times) 1040eda89462Sesolom { 1041eda89462Sesolom int i; 1042eda89462Sesolom hrtime_t now, start; 1043eda89462Sesolom uint16_t gen; 1044eda89462Sesolom uint16_t state; 1045eda89462Sesolom hrtime_t intracct[NCMSTATES]; 1046eda89462Sesolom 1047eda89462Sesolom /* 1048eda89462Sesolom * Load all volatile state under the protection of membar. 1049eda89462Sesolom * cpu_acct[cpu_mstate] must be loaded to avoid double counting 1050eda89462Sesolom * of (now - cpu_mstate_start) by a change in CPU mstate that 1051eda89462Sesolom * arrives after we make our last check of cpu_mstate_gen. 1052eda89462Sesolom */ 1053eda89462Sesolom 1054eda89462Sesolom now = gethrtime_unscaled(); 1055eda89462Sesolom gen = cpu->cpu_mstate_gen; 1056eda89462Sesolom 1057eda89462Sesolom membar_consumer(); /* guarantee load ordering */ 1058eda89462Sesolom start = cpu->cpu_mstate_start; 1059eda89462Sesolom state = cpu->cpu_mstate; 1060eda89462Sesolom for (i = 0; i < NCMSTATES; i++) { 1061eda89462Sesolom intracct[i] = cpu->cpu_intracct[i]; 1062eda89462Sesolom times[i] = cpu->cpu_acct[i]; 1063eda89462Sesolom } 1064eda89462Sesolom membar_consumer(); /* guarantee load ordering */ 1065eda89462Sesolom 1066eda89462Sesolom if (gen != 0 && gen == cpu->cpu_mstate_gen && now > start) 1067eda89462Sesolom times[state] += now - start; 1068eda89462Sesolom 1069eda89462Sesolom for (i = 0; i < NCMSTATES; i++) { 1070eda89462Sesolom if (i == CMS_SYSTEM) 1071eda89462Sesolom continue; 1072eda89462Sesolom times[i] -= intracct[i]; 1073eda89462Sesolom if (times[i] < 0) { 1074eda89462Sesolom intracct[i] += times[i]; 1075eda89462Sesolom times[i] = 0; 1076eda89462Sesolom } 1077eda89462Sesolom times[CMS_SYSTEM] += intracct[i]; 1078eda89462Sesolom scalehrtime(×[i]); 1079eda89462Sesolom } 1080eda89462Sesolom scalehrtime(×[CMS_SYSTEM]); 1081eda89462Sesolom } 1082ae115bc7Smrj 1083ae115bc7Smrj /* 1084ae115bc7Smrj * This is a version of the rdmsr instruction that allows 1085ae115bc7Smrj * an error code to be returned in the case of failure. 1086ae115bc7Smrj */ 1087ae115bc7Smrj int 1088ae115bc7Smrj checked_rdmsr(uint_t msr, uint64_t *value) 1089ae115bc7Smrj { 1090ae115bc7Smrj if ((x86_feature & X86_MSR) == 0) 1091ae115bc7Smrj return (ENOTSUP); 1092ae115bc7Smrj *value = rdmsr(msr); 1093ae115bc7Smrj return (0); 1094ae115bc7Smrj } 1095ae115bc7Smrj 1096ae115bc7Smrj /* 1097ae115bc7Smrj * This is a version of the wrmsr instruction that allows 1098ae115bc7Smrj * an error code to be returned in the case of failure. 1099ae115bc7Smrj */ 1100ae115bc7Smrj int 1101ae115bc7Smrj checked_wrmsr(uint_t msr, uint64_t value) 1102ae115bc7Smrj { 1103ae115bc7Smrj if ((x86_feature & X86_MSR) == 0) 1104ae115bc7Smrj return (ENOTSUP); 1105ae115bc7Smrj wrmsr(msr, value); 1106ae115bc7Smrj return (0); 1107ae115bc7Smrj } 1108ae115bc7Smrj 1109ae115bc7Smrj /* 1110843e1988Sjohnlev * The mem driver's usual method of using hat_devload() to establish a 1111843e1988Sjohnlev * temporary mapping will not work for foreign pages mapped into this 1112843e1988Sjohnlev * domain or for the special hypervisor-provided pages. For the foreign 1113843e1988Sjohnlev * pages, we often don't know which domain owns them, so we can't ask the 1114843e1988Sjohnlev * hypervisor to set up a new mapping. For the other pages, we don't have 1115843e1988Sjohnlev * a pfn, so we can't create a new PTE. For these special cases, we do a 1116843e1988Sjohnlev * direct uiomove() from the existing kernel virtual address. 1117ae115bc7Smrj */ 1118ae115bc7Smrj /*ARGSUSED*/ 1119ae115bc7Smrj int 1120843e1988Sjohnlev plat_mem_do_mmio(struct uio *uio, enum uio_rw rw) 1121ae115bc7Smrj { 1122843e1988Sjohnlev #if defined(__xpv) 1123843e1988Sjohnlev void *va = (void *)(uintptr_t)uio->uio_loffset; 1124843e1988Sjohnlev off_t pageoff = uio->uio_loffset & PAGEOFFSET; 1125843e1988Sjohnlev size_t nbytes = MIN((size_t)(PAGESIZE - pageoff), 1126843e1988Sjohnlev (size_t)uio->uio_iov->iov_len); 1127843e1988Sjohnlev 1128843e1988Sjohnlev if ((rw == UIO_READ && 1129843e1988Sjohnlev (va == HYPERVISOR_shared_info || va == xen_info)) || 1130843e1988Sjohnlev (pfn_is_foreign(hat_getpfnum(kas.a_hat, va)))) 1131843e1988Sjohnlev return (uiomove(va, nbytes, rw, uio)); 1132843e1988Sjohnlev #endif 1133843e1988Sjohnlev return (ENOTSUP); 1134843e1988Sjohnlev } 1135843e1988Sjohnlev 1136843e1988Sjohnlev pgcnt_t 1137843e1988Sjohnlev num_phys_pages() 1138843e1988Sjohnlev { 1139843e1988Sjohnlev pgcnt_t npages = 0; 1140843e1988Sjohnlev struct memlist *mp; 1141843e1988Sjohnlev 1142843e1988Sjohnlev #if defined(__xpv) 1143843e1988Sjohnlev if (DOMAIN_IS_INITDOMAIN(xen_info)) { 1144843e1988Sjohnlev xen_sysctl_t op; 1145843e1988Sjohnlev 1146843e1988Sjohnlev op.cmd = XEN_SYSCTL_physinfo; 1147843e1988Sjohnlev op.interface_version = XEN_SYSCTL_INTERFACE_VERSION; 1148843e1988Sjohnlev if (HYPERVISOR_sysctl(&op) != 0) 1149843e1988Sjohnlev panic("physinfo op refused"); 1150843e1988Sjohnlev 1151843e1988Sjohnlev return ((pgcnt_t)op.u.physinfo.total_pages); 1152843e1988Sjohnlev } 1153843e1988Sjohnlev #endif /* __xpv */ 1154843e1988Sjohnlev 1155843e1988Sjohnlev for (mp = phys_install; mp != NULL; mp = mp->next) 1156843e1988Sjohnlev npages += mp->size >> PAGESHIFT; 1157843e1988Sjohnlev 1158843e1988Sjohnlev return (npages); 1159ae115bc7Smrj } 1160ae115bc7Smrj 1161ae115bc7Smrj int 1162ae115bc7Smrj dump_plat_addr() 1163ae115bc7Smrj { 1164843e1988Sjohnlev #ifdef __xpv 1165843e1988Sjohnlev pfn_t pfn = mmu_btop(xen_info->shared_info) | PFN_IS_FOREIGN_MFN; 1166843e1988Sjohnlev mem_vtop_t mem_vtop; 1167843e1988Sjohnlev int cnt; 1168843e1988Sjohnlev 1169843e1988Sjohnlev /* 1170843e1988Sjohnlev * On the hypervisor, we want to dump the page with shared_info on it. 1171843e1988Sjohnlev */ 1172843e1988Sjohnlev if (!IN_XPV_PANIC()) { 1173843e1988Sjohnlev mem_vtop.m_as = &kas; 1174843e1988Sjohnlev mem_vtop.m_va = HYPERVISOR_shared_info; 1175843e1988Sjohnlev mem_vtop.m_pfn = pfn; 1176843e1988Sjohnlev dumpvp_write(&mem_vtop, sizeof (mem_vtop_t)); 1177843e1988Sjohnlev cnt = 1; 1178843e1988Sjohnlev } else { 1179843e1988Sjohnlev cnt = dump_xpv_addr(); 1180843e1988Sjohnlev } 1181843e1988Sjohnlev return (cnt); 1182843e1988Sjohnlev #else 1183ae115bc7Smrj return (0); 1184843e1988Sjohnlev #endif 1185ae115bc7Smrj } 1186ae115bc7Smrj 1187ae115bc7Smrj void 1188ae115bc7Smrj dump_plat_pfn() 1189ae115bc7Smrj { 1190843e1988Sjohnlev #ifdef __xpv 1191843e1988Sjohnlev pfn_t pfn = mmu_btop(xen_info->shared_info) | PFN_IS_FOREIGN_MFN; 1192843e1988Sjohnlev 1193843e1988Sjohnlev if (!IN_XPV_PANIC()) 1194843e1988Sjohnlev dumpvp_write(&pfn, sizeof (pfn)); 1195843e1988Sjohnlev else 1196843e1988Sjohnlev dump_xpv_pfn(); 1197843e1988Sjohnlev #endif 1198ae115bc7Smrj } 1199ae115bc7Smrj 1200ae115bc7Smrj /*ARGSUSED*/ 1201ae115bc7Smrj int 1202ae115bc7Smrj dump_plat_data(void *dump_cbuf) 1203ae115bc7Smrj { 1204843e1988Sjohnlev #ifdef __xpv 1205843e1988Sjohnlev uint32_t csize; 1206843e1988Sjohnlev int cnt; 1207843e1988Sjohnlev 1208843e1988Sjohnlev if (!IN_XPV_PANIC()) { 1209843e1988Sjohnlev csize = (uint32_t)compress(HYPERVISOR_shared_info, dump_cbuf, 1210843e1988Sjohnlev PAGESIZE); 1211843e1988Sjohnlev dumpvp_write(&csize, sizeof (uint32_t)); 1212843e1988Sjohnlev dumpvp_write(dump_cbuf, csize); 1213843e1988Sjohnlev cnt = 1; 1214843e1988Sjohnlev } else { 1215843e1988Sjohnlev cnt = dump_xpv_data(dump_cbuf); 1216843e1988Sjohnlev } 1217843e1988Sjohnlev return (cnt); 1218843e1988Sjohnlev #else 1219ae115bc7Smrj return (0); 1220843e1988Sjohnlev #endif 1221ae115bc7Smrj } 1222ddece0baSsethg 1223ddece0baSsethg /* 1224ddece0baSsethg * Calculates a linear address, given the CS selector and PC values 1225ddece0baSsethg * by looking up the %cs selector process's LDT or the CPU's GDT. 1226ddece0baSsethg * proc->p_ldtlock must be held across this call. 1227ddece0baSsethg */ 1228ddece0baSsethg int 1229ddece0baSsethg linear_pc(struct regs *rp, proc_t *p, caddr_t *linearp) 1230ddece0baSsethg { 1231ddece0baSsethg user_desc_t *descrp; 1232ddece0baSsethg caddr_t baseaddr; 1233ddece0baSsethg uint16_t idx = SELTOIDX(rp->r_cs); 1234ddece0baSsethg 1235ddece0baSsethg ASSERT(rp->r_cs <= 0xFFFF); 1236ddece0baSsethg ASSERT(MUTEX_HELD(&p->p_ldtlock)); 1237ddece0baSsethg 1238ddece0baSsethg if (SELISLDT(rp->r_cs)) { 1239ddece0baSsethg /* 1240ddece0baSsethg * Currently 64 bit processes cannot have private LDTs. 1241ddece0baSsethg */ 1242ddece0baSsethg ASSERT(p->p_model != DATAMODEL_LP64); 1243ddece0baSsethg 1244ddece0baSsethg if (p->p_ldt == NULL) 1245ddece0baSsethg return (-1); 1246ddece0baSsethg 1247ddece0baSsethg descrp = &p->p_ldt[idx]; 1248ddece0baSsethg baseaddr = (caddr_t)(uintptr_t)USEGD_GETBASE(descrp); 1249ddece0baSsethg 1250ddece0baSsethg /* 1251ddece0baSsethg * Calculate the linear address (wraparound is not only ok, 1252ddece0baSsethg * it's expected behavior). The cast to uint32_t is because 1253ddece0baSsethg * LDT selectors are only allowed in 32-bit processes. 1254ddece0baSsethg */ 1255ddece0baSsethg *linearp = (caddr_t)(uintptr_t)(uint32_t)((uintptr_t)baseaddr + 1256ddece0baSsethg rp->r_pc); 1257ddece0baSsethg } else { 1258ddece0baSsethg #ifdef DEBUG 1259ddece0baSsethg descrp = &CPU->cpu_gdt[idx]; 1260ddece0baSsethg baseaddr = (caddr_t)(uintptr_t)USEGD_GETBASE(descrp); 1261ddece0baSsethg /* GDT-based descriptors' base addresses should always be 0 */ 1262ddece0baSsethg ASSERT(baseaddr == 0); 1263ddece0baSsethg #endif 1264ddece0baSsethg *linearp = (caddr_t)(uintptr_t)rp->r_pc; 1265ddece0baSsethg } 1266ddece0baSsethg 1267ddece0baSsethg return (0); 1268ddece0baSsethg } 1269ddece0baSsethg 1270ddece0baSsethg /* 1271ddece0baSsethg * The implementation of dtrace_linear_pc is similar to the that of 1272ddece0baSsethg * linear_pc, above, but here we acquire p_ldtlock before accessing 1273ddece0baSsethg * p_ldt. This implementation is used by the pid provider; we prefix 1274ddece0baSsethg * it with "dtrace_" to avoid inducing spurious tracing events. 1275ddece0baSsethg */ 1276ddece0baSsethg int 1277ddece0baSsethg dtrace_linear_pc(struct regs *rp, proc_t *p, caddr_t *linearp) 1278ddece0baSsethg { 1279ddece0baSsethg user_desc_t *descrp; 1280ddece0baSsethg caddr_t baseaddr; 1281ddece0baSsethg uint16_t idx = SELTOIDX(rp->r_cs); 1282ddece0baSsethg 1283ddece0baSsethg ASSERT(rp->r_cs <= 0xFFFF); 1284ddece0baSsethg 1285ddece0baSsethg if (SELISLDT(rp->r_cs)) { 1286ddece0baSsethg /* 1287ddece0baSsethg * Currently 64 bit processes cannot have private LDTs. 1288ddece0baSsethg */ 1289ddece0baSsethg ASSERT(p->p_model != DATAMODEL_LP64); 1290ddece0baSsethg 1291ddece0baSsethg mutex_enter(&p->p_ldtlock); 1292ddece0baSsethg if (p->p_ldt == NULL) { 1293ddece0baSsethg mutex_exit(&p->p_ldtlock); 1294ddece0baSsethg return (-1); 1295ddece0baSsethg } 1296ddece0baSsethg descrp = &p->p_ldt[idx]; 1297ddece0baSsethg baseaddr = (caddr_t)(uintptr_t)USEGD_GETBASE(descrp); 1298ddece0baSsethg mutex_exit(&p->p_ldtlock); 1299ddece0baSsethg 1300ddece0baSsethg /* 1301ddece0baSsethg * Calculate the linear address (wraparound is not only ok, 1302ddece0baSsethg * it's expected behavior). The cast to uint32_t is because 1303ddece0baSsethg * LDT selectors are only allowed in 32-bit processes. 1304ddece0baSsethg */ 1305ddece0baSsethg *linearp = (caddr_t)(uintptr_t)(uint32_t)((uintptr_t)baseaddr + 1306ddece0baSsethg rp->r_pc); 1307ddece0baSsethg } else { 1308ddece0baSsethg #ifdef DEBUG 1309ddece0baSsethg descrp = &CPU->cpu_gdt[idx]; 1310ddece0baSsethg baseaddr = (caddr_t)(uintptr_t)USEGD_GETBASE(descrp); 1311ddece0baSsethg /* GDT-based descriptors' base addresses should always be 0 */ 1312ddece0baSsethg ASSERT(baseaddr == 0); 1313ddece0baSsethg #endif 1314ddece0baSsethg *linearp = (caddr_t)(uintptr_t)rp->r_pc; 1315ddece0baSsethg } 1316ddece0baSsethg 1317ddece0baSsethg return (0); 1318ddece0baSsethg } 1319