15b81b6b3SRodney W. Grimes /*- 25b81b6b3SRodney W. Grimes * Copyright (c) 1982, 1986 The Regents of the University of California. 35b81b6b3SRodney W. Grimes * Copyright (c) 1989, 1990 William Jolitz 41561d038SDavid Greenman * Copyright (c) 1994 John Dyson 55b81b6b3SRodney W. Grimes * All rights reserved. 65b81b6b3SRodney W. Grimes * 75b81b6b3SRodney W. Grimes * This code is derived from software contributed to Berkeley by 85b81b6b3SRodney W. Grimes * the Systems Programming Group of the University of Utah Computer 95b81b6b3SRodney W. Grimes * Science Department, and William Jolitz. 105b81b6b3SRodney W. Grimes * 115b81b6b3SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 125b81b6b3SRodney W. Grimes * modification, are permitted provided that the following conditions 135b81b6b3SRodney W. Grimes * are met: 145b81b6b3SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 155b81b6b3SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 165b81b6b3SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 175b81b6b3SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 185b81b6b3SRodney W. Grimes * documentation and/or other materials provided with the distribution. 195b81b6b3SRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 205b81b6b3SRodney W. Grimes * must display the following acknowledgement: 215b81b6b3SRodney W. Grimes * This product includes software developed by the University of 225b81b6b3SRodney W. Grimes * California, Berkeley and its contributors. 235b81b6b3SRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 245b81b6b3SRodney W. Grimes * may be used to endorse or promote products derived from this software 255b81b6b3SRodney W. Grimes * without specific prior written permission. 265b81b6b3SRodney W. Grimes * 275b81b6b3SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 285b81b6b3SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 295b81b6b3SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 305b81b6b3SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 315b81b6b3SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 325b81b6b3SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 335b81b6b3SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 345b81b6b3SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 355b81b6b3SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 365b81b6b3SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 375b81b6b3SRodney W. Grimes * SUCH DAMAGE. 385b81b6b3SRodney W. Grimes * 39960173b9SRodney W. Grimes * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91 405b81b6b3SRodney W. Grimes * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$ 41c3aac50fSPeter Wemm * $FreeBSD$ 425b81b6b3SRodney W. Grimes */ 435b81b6b3SRodney W. Grimes 44960173b9SRodney W. Grimes #include "npx.h" 4519d768b8SPeter Wemm #include "opt_user_ldt.h" 4661324207SKATO Takenori #ifdef PC98 4761324207SKATO Takenori #include "opt_pc98.h" 4861324207SKATO Takenori #endif 498890984dSGarrett Wollman 5026f9a767SRodney W. Grimes #include <sys/param.h> 5126f9a767SRodney W. Grimes #include <sys/systm.h> 5226f9a767SRodney W. Grimes #include <sys/malloc.h> 5391c28bfdSLuoqi Chen #include <sys/proc.h> 5426f9a767SRodney W. Grimes #include <sys/buf.h> 5526f9a767SRodney W. Grimes #include <sys/vnode.h> 56efeaf95aSDavid Greenman #include <sys/vmmeter.h> 5766095752SJohn Dyson #include <sys/kernel.h> 5866095752SJohn Dyson #include <sys/sysctl.h> 5991c28bfdSLuoqi Chen #include <sys/unistd.h> 605b81b6b3SRodney W. Grimes 612320728fSRodney W. Grimes #include <machine/clock.h> 62a2a1c95cSPeter Wemm #include <machine/cpu.h> 631f8745a9SPeter Wemm #include <machine/md_var.h> 648fa40736SBruce Evans #ifdef SMP 658fa40736SBruce Evans #include <machine/smp.h> 668fa40736SBruce Evans #endif 6791c28bfdSLuoqi Chen #include <machine/pcb.h> 6891c28bfdSLuoqi Chen #include <machine/pcb_ext.h> 6991c28bfdSLuoqi Chen #include <machine/vm86.h> 705b81b6b3SRodney W. Grimes 7126f9a767SRodney W. Grimes #include <vm/vm.h> 72efeaf95aSDavid Greenman #include <vm/vm_param.h> 73996c772fSJohn Dyson #include <sys/lock.h> 7426f9a767SRodney W. Grimes #include <vm/vm_kern.h> 7524a1cce3SDavid Greenman #include <vm/vm_page.h> 76efeaf95aSDavid Greenman #include <vm/vm_map.h> 77efeaf95aSDavid Greenman #include <vm/vm_extern.h> 78efeaf95aSDavid Greenman 79efeaf95aSDavid Greenman #include <sys/user.h> 805b81b6b3SRodney W. Grimes 81e30f0011SSatoshi Asami #ifdef PC98 82e30f0011SSatoshi Asami #include <pc98/pc98/pc98.h> 83e30f0011SSatoshi Asami #else 842320728fSRodney W. Grimes #include <i386/isa/isa.h> 85e30f0011SSatoshi Asami #endif 862320728fSRodney W. Grimes 872f1e7069STor Egge static void cpu_reset_real __P((void)); 882f1e7069STor Egge #ifdef SMP 892f1e7069STor Egge static void cpu_reset_proxy __P((void)); 902f1e7069STor Egge static u_int cpu_reset_proxyid; 912f1e7069STor Egge static volatile u_int cpu_reset_proxy_active; 922f1e7069STor Egge #endif 932f1e7069STor Egge 94a4f7a4c9SDavid Greenman /* 95a4f7a4c9SDavid Greenman * quick version of vm_fault 96a4f7a4c9SDavid Greenman */ 974cc71200SMatthew Dillon int 98a4f7a4c9SDavid Greenman vm_fault_quick(v, prot) 996c146e28SBruce Evans caddr_t v; 100a4f7a4c9SDavid Greenman int prot; 101a4f7a4c9SDavid Greenman { 1024cc71200SMatthew Dillon int r; 1034cc71200SMatthew Dillon 1041d1b971bSDavid Greenman if (prot & VM_PROT_WRITE) 1054cc71200SMatthew Dillon r = subyte(v, fubyte(v)); 106a4f7a4c9SDavid Greenman else 1074cc71200SMatthew Dillon r = fubyte(v); 1084cc71200SMatthew Dillon return(r); 109a4f7a4c9SDavid Greenman } 110a4f7a4c9SDavid Greenman 1111561d038SDavid Greenman /* 1125b81b6b3SRodney W. Grimes * Finish a fork operation, with process p2 nearly set up. 113a2a1c95cSPeter Wemm * Copy and update the pcb, set up the stack so that the child 114a2a1c95cSPeter Wemm * ready to run and return to user mode. 1155b81b6b3SRodney W. Grimes */ 116a2a1c95cSPeter Wemm void 11791c28bfdSLuoqi Chen cpu_fork(p1, p2, flags) 1185b81b6b3SRodney W. Grimes register struct proc *p1, *p2; 11991c28bfdSLuoqi Chen int flags; 1205b81b6b3SRodney W. Grimes { 12191c28bfdSLuoqi Chen struct pcb *pcb2; 12291c28bfdSLuoqi Chen 12391c28bfdSLuoqi Chen if ((flags & RFPROC) == 0) { 12491c28bfdSLuoqi Chen #ifdef USER_LDT 12591c28bfdSLuoqi Chen if ((flags & RFMEM) == 0) { 12691c28bfdSLuoqi Chen /* unshare user LDT */ 12791c28bfdSLuoqi Chen struct pcb *pcb1 = &p1->p_addr->u_pcb; 12891c28bfdSLuoqi Chen struct pcb_ldt *pcb_ldt = pcb1->pcb_ldt; 12991c28bfdSLuoqi Chen if (pcb_ldt && pcb_ldt->ldt_refcnt > 1) { 13091c28bfdSLuoqi Chen pcb_ldt = user_ldt_alloc(pcb1,pcb_ldt->ldt_len); 13191c28bfdSLuoqi Chen user_ldt_free(pcb1); 13291c28bfdSLuoqi Chen pcb1->pcb_ldt = pcb_ldt; 13391c28bfdSLuoqi Chen set_user_ldt(pcb1); 13491c28bfdSLuoqi Chen } 13591c28bfdSLuoqi Chen } 13691c28bfdSLuoqi Chen #endif 13791c28bfdSLuoqi Chen return; 13891c28bfdSLuoqi Chen } 1395b81b6b3SRodney W. Grimes 1409f449d2aSBruce Evans #if NNPX > 0 1411f8745a9SPeter Wemm /* Ensure that p1's pcb is up to date. */ 1421f8745a9SPeter Wemm if (npxproc == p1) 1431f8745a9SPeter Wemm npxsave(&p1->p_addr->u_pcb.pcb_savefpu); 1449f449d2aSBruce Evans #endif 1451f8745a9SPeter Wemm 1461f8745a9SPeter Wemm /* Copy p1's pcb. */ 1471f8745a9SPeter Wemm p2->p_addr->u_pcb = p1->p_addr->u_pcb; 14891c28bfdSLuoqi Chen pcb2 = &p2->p_addr->u_pcb; 149a2a1c95cSPeter Wemm 150a2a1c95cSPeter Wemm /* 151a2a1c95cSPeter Wemm * Create a new fresh stack for the new process. 1521f8745a9SPeter Wemm * Copy the trap frame for the return to user mode as if from a 1531f8745a9SPeter Wemm * syscall. This copies the user mode register values. 154a2a1c95cSPeter Wemm */ 1551f8745a9SPeter Wemm p2->p_md.md_regs = (struct trapframe *) 156640c4313SJonathan Lemon ((int)p2->p_addr + UPAGES * PAGE_SIZE - 16) - 1; 1571f8745a9SPeter Wemm *p2->p_md.md_regs = *p1->p_md.md_regs; 158a2a1c95cSPeter Wemm 159a2a1c95cSPeter Wemm /* 160a2a1c95cSPeter Wemm * Set registers for trampoline to user mode. Leave space for the 161a2a1c95cSPeter Wemm * return address on stack. These are the kernel mode register values. 162a2a1c95cSPeter Wemm */ 163b1028ad1SLuoqi Chen pcb2->pcb_cr3 = vtophys(vmspace_pmap(p2->p_vmspace)->pm_pdir); 1641f8745a9SPeter Wemm pcb2->pcb_edi = p2->p_md.md_regs->tf_edi; 165a2a1c95cSPeter Wemm pcb2->pcb_esi = (int)fork_return; 1661f8745a9SPeter Wemm pcb2->pcb_ebp = p2->p_md.md_regs->tf_ebp; 167a2a1c95cSPeter Wemm pcb2->pcb_esp = (int)p2->p_md.md_regs - sizeof(void *); 1681f8745a9SPeter Wemm pcb2->pcb_ebx = (int)p2; 1691f8745a9SPeter Wemm pcb2->pcb_eip = (int)fork_trampoline; 1701f8745a9SPeter Wemm /* 1711f8745a9SPeter Wemm * pcb2->pcb_ldt: duplicated below, if necessary. 1721f8745a9SPeter Wemm * pcb2->pcb_savefpu: cloned above. 1731f8745a9SPeter Wemm * pcb2->pcb_flags: cloned above (always 0 here?). 1741f8745a9SPeter Wemm * pcb2->pcb_onfault: cloned above (always NULL here?). 1751f8745a9SPeter Wemm */ 1765b81b6b3SRodney W. Grimes 177a16edda3STor Egge #ifdef SMP 178a16edda3STor Egge pcb2->pcb_mpnest = 1; 179a16edda3STor Egge #endif 18048a09cf2SJohn Dyson /* 18148a09cf2SJohn Dyson * XXX don't copy the i/o pages. this should probably be fixed. 18248a09cf2SJohn Dyson */ 18348a09cf2SJohn Dyson pcb2->pcb_ext = 0; 18448a09cf2SJohn Dyson 1858c39a127SStefan Eßer #ifdef USER_LDT 1868c39a127SStefan Eßer /* Copy the LDT, if necessary. */ 187a2a1c95cSPeter Wemm if (pcb2->pcb_ldt != 0) { 18891c28bfdSLuoqi Chen if (flags & RFMEM) { 18991c28bfdSLuoqi Chen pcb2->pcb_ldt->ldt_refcnt++; 19091c28bfdSLuoqi Chen } else { 19191c28bfdSLuoqi Chen pcb2->pcb_ldt = user_ldt_alloc(pcb2, 19291c28bfdSLuoqi Chen pcb2->pcb_ldt->ldt_len); 19391c28bfdSLuoqi Chen } 1948c39a127SStefan Eßer } 1958c39a127SStefan Eßer #endif 1968c39a127SStefan Eßer 197a2a1c95cSPeter Wemm /* 198a2a1c95cSPeter Wemm * Now, cpu_switch() can schedule the new process. 199a2a1c95cSPeter Wemm * pcb_esp is loaded pointing to the cpu_switch() stack frame 200a2a1c95cSPeter Wemm * containing the return address when exiting cpu_switch. 201a2a1c95cSPeter Wemm * This will normally be to proc_trampoline(), which will have 202a2a1c95cSPeter Wemm * %ebx loaded with the new proc's pointer. proc_trampoline() 203a2a1c95cSPeter Wemm * will set up a stack to call fork_return(p, frame); to complete 204a2a1c95cSPeter Wemm * the return to user-mode. 205a2a1c95cSPeter Wemm */ 206a2a1c95cSPeter Wemm } 207a2a1c95cSPeter Wemm 208a2a1c95cSPeter Wemm /* 209a2a1c95cSPeter Wemm * Intercept the return address from a freshly forked process that has NOT 210a2a1c95cSPeter Wemm * been scheduled yet. 211a2a1c95cSPeter Wemm * 212a2a1c95cSPeter Wemm * This is needed to make kernel threads stay in kernel mode. 213a2a1c95cSPeter Wemm */ 214a2a1c95cSPeter Wemm void 215a2a1c95cSPeter Wemm cpu_set_fork_handler(p, func, arg) 216a2a1c95cSPeter Wemm struct proc *p; 2179c8b8baaSPeter Wemm void (*func) __P((void *)); 2189c8b8baaSPeter Wemm void *arg; 219a2a1c95cSPeter Wemm { 220a2a1c95cSPeter Wemm /* 221a2a1c95cSPeter Wemm * Note that the trap frame follows the args, so the function 222a2a1c95cSPeter Wemm * is really called like this: func(arg, frame); 223a2a1c95cSPeter Wemm */ 224a2a1c95cSPeter Wemm p->p_addr->u_pcb.pcb_esi = (int) func; /* function */ 225a2a1c95cSPeter Wemm p->p_addr->u_pcb.pcb_ebx = (int) arg; /* first arg */ 2265b81b6b3SRodney W. Grimes } 2275b81b6b3SRodney W. Grimes 2287c2b54e8SNate Williams void 2295b81b6b3SRodney W. Grimes cpu_exit(p) 2305b81b6b3SRodney W. Grimes register struct proc *p; 2315b81b6b3SRodney W. Grimes { 23248a09cf2SJohn Dyson struct pcb *pcb = &p->p_addr->u_pcb; 2335b81b6b3SRodney W. Grimes 234960173b9SRodney W. Grimes #if NNPX > 0 2355b81b6b3SRodney W. Grimes npxexit(p); 236960173b9SRodney W. Grimes #endif /* NNPX */ 23748a09cf2SJohn Dyson if (pcb->pcb_ext != 0) { 23848a09cf2SJohn Dyson /* 23948a09cf2SJohn Dyson * XXX do we need to move the TSS off the allocated pages 24048a09cf2SJohn Dyson * before freeing them? (not done here) 24148a09cf2SJohn Dyson */ 24248a09cf2SJohn Dyson kmem_free(kernel_map, (vm_offset_t)pcb->pcb_ext, 24348a09cf2SJohn Dyson ctob(IOPAGES + 1)); 24448a09cf2SJohn Dyson pcb->pcb_ext = 0; 24548a09cf2SJohn Dyson } 2460dbf6d73SJordan K. Hubbard #ifdef USER_LDT 24791c28bfdSLuoqi Chen user_ldt_free(pcb); 2480dbf6d73SJordan K. Hubbard #endif 249de8050f9SBrian S. Dean if (pcb->pcb_flags & PCB_DBREGS) { 250de8050f9SBrian S. Dean /* 251de8050f9SBrian S. Dean * disable all hardware breakpoints 252de8050f9SBrian S. Dean */ 253de8050f9SBrian S. Dean reset_dbregs(); 254de8050f9SBrian S. Dean pcb->pcb_flags &= ~PCB_DBREGS; 255de8050f9SBrian S. Dean } 2561a051896SBruce Evans cnt.v_swtch++; 2571a051896SBruce Evans cpu_switch(p); 2587c2b54e8SNate Williams panic("cpu_exit"); 2595b81b6b3SRodney W. Grimes } 2605b81b6b3SRodney W. Grimes 261381fe1aaSGarrett Wollman void 262bd7e5f99SJohn Dyson cpu_wait(p) 263bd7e5f99SJohn Dyson struct proc *p; 264bd7e5f99SJohn Dyson { 2655b81b6b3SRodney W. Grimes /* drop per-process resources */ 266675878e7SJohn Dyson pmap_dispose_proc(p); 2672d8acc0fSJohn Dyson 2682d8acc0fSJohn Dyson /* and clean-out the vmspace */ 2697f8cb368SDavid Greenman vmspace_free(p->p_vmspace); 2705b81b6b3SRodney W. Grimes } 2715b81b6b3SRodney W. Grimes 2725b81b6b3SRodney W. Grimes /* 27326f9a767SRodney W. Grimes * Dump the machine specific header information at the start of a core dump. 27426f9a767SRodney W. Grimes */ 27526f9a767SRodney W. Grimes int 27626f9a767SRodney W. Grimes cpu_coredump(p, vp, cred) 27726f9a767SRodney W. Grimes struct proc *p; 27826f9a767SRodney W. Grimes struct vnode *vp; 27926f9a767SRodney W. Grimes struct ucred *cred; 28026f9a767SRodney W. Grimes { 281afc6ea23STor Egge int error; 282afc6ea23STor Egge caddr_t tempuser; 28326f9a767SRodney W. Grimes 284afc6ea23STor Egge tempuser = malloc(ctob(UPAGES), M_TEMP, M_WAITOK); 285afc6ea23STor Egge if (!tempuser) 286afc6ea23STor Egge return EINVAL; 287afc6ea23STor Egge 288afc6ea23STor Egge bzero(tempuser, ctob(UPAGES)); 289afc6ea23STor Egge bcopy(p->p_addr, tempuser, sizeof(struct user)); 290afc6ea23STor Egge bcopy(p->p_md.md_regs, 291afc6ea23STor Egge tempuser + ((caddr_t) p->p_md.md_regs - (caddr_t) p->p_addr), 292afc6ea23STor Egge sizeof(struct trapframe)); 293afc6ea23STor Egge 294afc6ea23STor Egge error = vn_rdwr(UIO_WRITE, vp, (caddr_t) tempuser, 295afc6ea23STor Egge ctob(UPAGES), 296afc6ea23STor Egge (off_t)0, UIO_SYSSPACE, IO_NODELOCKED|IO_UNIT, 297afc6ea23STor Egge cred, (int *)NULL, p); 298afc6ea23STor Egge 299afc6ea23STor Egge free(tempuser, M_TEMP); 300afc6ea23STor Egge 301afc6ea23STor Egge return error; 30226f9a767SRodney W. Grimes } 30326f9a767SRodney W. Grimes 30487b6de2bSPoul-Henning Kamp #ifdef notyet 30587b91157SPoul-Henning Kamp static void 3065b81b6b3SRodney W. Grimes setredzone(pte, vaddr) 3075b81b6b3SRodney W. Grimes u_short *pte; 3085b81b6b3SRodney W. Grimes caddr_t vaddr; 3095b81b6b3SRodney W. Grimes { 3105b81b6b3SRodney W. Grimes /* eventually do this by setting up an expand-down stack segment 3115b81b6b3SRodney W. Grimes for ss0: selector, allowing stack access down to top of u. 3125b81b6b3SRodney W. Grimes this means though that protection violations need to be handled 3135b81b6b3SRodney W. Grimes thru a double fault exception that must do an integral task 3145b81b6b3SRodney W. Grimes switch to a known good context, within which a dump can be 3155b81b6b3SRodney W. Grimes taken. a sensible scheme might be to save the initial context 3165b81b6b3SRodney W. Grimes used by sched (that has physical memory mapped 1:1 at bottom) 3175b81b6b3SRodney W. Grimes and take the dump while still in mapped mode */ 3185b81b6b3SRodney W. Grimes } 31987b6de2bSPoul-Henning Kamp #endif 32026f9a767SRodney W. Grimes 32126f9a767SRodney W. Grimes /* 3225b81b6b3SRodney W. Grimes * Convert kernel VA to physical address 3235b81b6b3SRodney W. Grimes */ 324aaf08d94SGarrett Wollman u_long 3257f8cb368SDavid Greenman kvtop(void *addr) 3265b81b6b3SRodney W. Grimes { 3275b81b6b3SRodney W. Grimes vm_offset_t va; 3285b81b6b3SRodney W. Grimes 329ed7fcbd0SDavid Greenman va = pmap_kextract((vm_offset_t)addr); 3305b81b6b3SRodney W. Grimes if (va == 0) 3315b81b6b3SRodney W. Grimes panic("kvtop: zero page frame"); 3327f8cb368SDavid Greenman return((int)va); 3335b81b6b3SRodney W. Grimes } 3345b81b6b3SRodney W. Grimes 3355b81b6b3SRodney W. Grimes /* 336ac322158SDavid Greenman * Map an IO request into kernel virtual address space. 3375b81b6b3SRodney W. Grimes * 338ac322158SDavid Greenman * All requests are (re)mapped into kernel VA space. 339ac322158SDavid Greenman * Notice that we use b_bufsize for the size of the buffer 340ac322158SDavid Greenman * to be mapped. b_bcount might be modified by the driver. 3415b81b6b3SRodney W. Grimes */ 342381fe1aaSGarrett Wollman void 3435b81b6b3SRodney W. Grimes vmapbuf(bp) 3445b81b6b3SRodney W. Grimes register struct buf *bp; 3455b81b6b3SRodney W. Grimes { 3460157d6d9SJohn Dyson register caddr_t addr, v, kva; 34707658526SPoul-Henning Kamp vm_offset_t pa; 3485b81b6b3SRodney W. Grimes 34926f9a767SRodney W. Grimes if ((bp->b_flags & B_PHYS) == 0) 3505b81b6b3SRodney W. Grimes panic("vmapbuf"); 35126f9a767SRodney W. Grimes 3526cde7a16SDavid Greenman for (v = bp->b_saveaddr, addr = (caddr_t)trunc_page((vm_offset_t)bp->b_data); 35326f9a767SRodney W. Grimes addr < bp->b_data + bp->b_bufsize; 3540157d6d9SJohn Dyson addr += PAGE_SIZE, v += PAGE_SIZE) { 35526f9a767SRodney W. Grimes /* 356ac269d78SDavid Greenman * Do the vm_fault if needed; do the copy-on-write thing 357ac269d78SDavid Greenman * when reading stuff off device into memory. 35826f9a767SRodney W. Grimes */ 35926f9a767SRodney W. Grimes vm_fault_quick(addr, 36021144e3bSPoul-Henning Kamp (bp->b_iocmd == BIO_READ)?(VM_PROT_READ|VM_PROT_WRITE):VM_PROT_READ); 3610157d6d9SJohn Dyson pa = trunc_page(pmap_kextract((vm_offset_t) addr)); 362641a27e6SJohn Dyson if (pa == 0) 363641a27e6SJohn Dyson panic("vmapbuf: page not present"); 36426f9a767SRodney W. Grimes vm_page_hold(PHYS_TO_VM_PAGE(pa)); 3650157d6d9SJohn Dyson pmap_kenter((vm_offset_t) v, pa); 36626f9a767SRodney W. Grimes } 36726f9a767SRodney W. Grimes 3680157d6d9SJohn Dyson kva = bp->b_saveaddr; 3690157d6d9SJohn Dyson bp->b_saveaddr = bp->b_data; 3700157d6d9SJohn Dyson bp->b_data = kva + (((vm_offset_t) bp->b_data) & PAGE_MASK); 3715b81b6b3SRodney W. Grimes } 3725b81b6b3SRodney W. Grimes 3735b81b6b3SRodney W. Grimes /* 3745b81b6b3SRodney W. Grimes * Free the io map PTEs associated with this IO operation. 3755b81b6b3SRodney W. Grimes * We also invalidate the TLB entries and restore the original b_addr. 3765b81b6b3SRodney W. Grimes */ 377381fe1aaSGarrett Wollman void 3785b81b6b3SRodney W. Grimes vunmapbuf(bp) 3795b81b6b3SRodney W. Grimes register struct buf *bp; 3805b81b6b3SRodney W. Grimes { 381c564966bSDavid Greenman register caddr_t addr; 38207658526SPoul-Henning Kamp vm_offset_t pa; 3835b81b6b3SRodney W. Grimes 3845b81b6b3SRodney W. Grimes if ((bp->b_flags & B_PHYS) == 0) 3855b81b6b3SRodney W. Grimes panic("vunmapbuf"); 386c564966bSDavid Greenman 3876cde7a16SDavid Greenman for (addr = (caddr_t)trunc_page((vm_offset_t)bp->b_data); 38812936855SDavid Greenman addr < bp->b_data + bp->b_bufsize; 389f8845af0SPoul-Henning Kamp addr += PAGE_SIZE) { 3900157d6d9SJohn Dyson pa = trunc_page(pmap_kextract((vm_offset_t) addr)); 3910157d6d9SJohn Dyson pmap_kremove((vm_offset_t) addr); 39226f9a767SRodney W. Grimes vm_page_unhold(PHYS_TO_VM_PAGE(pa)); 39326f9a767SRodney W. Grimes } 3940157d6d9SJohn Dyson 3950157d6d9SJohn Dyson bp->b_data = bp->b_saveaddr; 3965b81b6b3SRodney W. Grimes } 3975b81b6b3SRodney W. Grimes 3985b81b6b3SRodney W. Grimes /* 3995b81b6b3SRodney W. Grimes * Force reset the processor by invalidating the entire address space! 4005b81b6b3SRodney W. Grimes */ 4012f1e7069STor Egge 4022f1e7069STor Egge #ifdef SMP 4032f1e7069STor Egge static void 4042f1e7069STor Egge cpu_reset_proxy() 4052f1e7069STor Egge { 4062f1e7069STor Egge u_int saved_mp_lock; 4072f1e7069STor Egge 4082f1e7069STor Egge cpu_reset_proxy_active = 1; 4092f1e7069STor Egge while (cpu_reset_proxy_active == 1) 4102f1e7069STor Egge ; /* Wait for other cpu to disable interupts */ 4112f1e7069STor Egge saved_mp_lock = mp_lock; 4122f1e7069STor Egge mp_lock = 1; 4132f1e7069STor Egge printf("cpu_reset_proxy: Grabbed mp lock for BSP\n"); 4142f1e7069STor Egge cpu_reset_proxy_active = 3; 4152f1e7069STor Egge while (cpu_reset_proxy_active == 3) 4162f1e7069STor Egge ; /* Wait for other cpu to enable interrupts */ 4172f1e7069STor Egge stop_cpus((1<<cpu_reset_proxyid)); 4182f1e7069STor Egge printf("cpu_reset_proxy: Stopped CPU %d\n", cpu_reset_proxyid); 4192f1e7069STor Egge DELAY(1000000); 4202f1e7069STor Egge cpu_reset_real(); 4212f1e7069STor Egge } 4222f1e7069STor Egge #endif 4232f1e7069STor Egge 4247f8cb368SDavid Greenman void 425d447dbeeSBruce Evans cpu_reset() 426d447dbeeSBruce Evans { 4272f1e7069STor Egge #ifdef SMP 4282f1e7069STor Egge if (smp_active == 0) { 4292f1e7069STor Egge cpu_reset_real(); 4302f1e7069STor Egge /* NOTREACHED */ 4312f1e7069STor Egge } else { 4322f1e7069STor Egge 4332f1e7069STor Egge u_int map; 4342f1e7069STor Egge int cnt; 4352f1e7069STor Egge printf("cpu_reset called on cpu#%d\n",cpuid); 4362f1e7069STor Egge 4372f1e7069STor Egge map = other_cpus & ~ stopped_cpus; 4382f1e7069STor Egge 4392f1e7069STor Egge if (map != 0) { 4402f1e7069STor Egge printf("cpu_reset: Stopping other CPUs\n"); 4412f1e7069STor Egge stop_cpus(map); /* Stop all other CPUs */ 4422f1e7069STor Egge } 4432f1e7069STor Egge 4442f1e7069STor Egge if (cpuid == 0) { 4452f1e7069STor Egge DELAY(1000000); 4462f1e7069STor Egge cpu_reset_real(); 4472f1e7069STor Egge /* NOTREACHED */ 4482f1e7069STor Egge } else { 4492f1e7069STor Egge /* We are not BSP (CPU #0) */ 4502f1e7069STor Egge 4512f1e7069STor Egge cpu_reset_proxyid = cpuid; 4522f1e7069STor Egge cpustop_restartfunc = cpu_reset_proxy; 4532f1e7069STor Egge printf("cpu_reset: Restarting BSP\n"); 4542f1e7069STor Egge started_cpus = (1<<0); /* Restart CPU #0 */ 4552f1e7069STor Egge 4562f1e7069STor Egge cnt = 0; 4572f1e7069STor Egge while (cpu_reset_proxy_active == 0 && cnt < 10000000) 4582f1e7069STor Egge cnt++; /* Wait for BSP to announce restart */ 4592f1e7069STor Egge if (cpu_reset_proxy_active == 0) 4602f1e7069STor Egge printf("cpu_reset: Failed to restart BSP\n"); 4612f1e7069STor Egge __asm __volatile("cli" : : : "memory"); 4622f1e7069STor Egge cpu_reset_proxy_active = 2; 4632f1e7069STor Egge cnt = 0; 4642f1e7069STor Egge while (cpu_reset_proxy_active == 2 && cnt < 10000000) 4652f1e7069STor Egge cnt++; /* Do nothing */ 4662f1e7069STor Egge if (cpu_reset_proxy_active == 2) { 4672f1e7069STor Egge printf("cpu_reset: BSP did not grab mp lock\n"); 4682f1e7069STor Egge cpu_reset_real(); /* XXX: Bogus ? */ 4692f1e7069STor Egge } 4702f1e7069STor Egge cpu_reset_proxy_active = 4; 4712f1e7069STor Egge __asm __volatile("sti" : : : "memory"); 4722f1e7069STor Egge while (1); 4732f1e7069STor Egge /* NOTREACHED */ 4742f1e7069STor Egge } 4752f1e7069STor Egge } 4762f1e7069STor Egge #else 4772f1e7069STor Egge cpu_reset_real(); 4782f1e7069STor Egge #endif 4792f1e7069STor Egge } 4802f1e7069STor Egge 4812f1e7069STor Egge static void 4822f1e7069STor Egge cpu_reset_real() 4832f1e7069STor Egge { 484d447dbeeSBruce Evans 48503245f09SKATO Takenori #ifdef PC98 48603245f09SKATO Takenori /* 48703245f09SKATO Takenori * Attempt to do a CPU reset via CPU reset port. 48803245f09SKATO Takenori */ 489d447dbeeSBruce Evans disable_intr(); 4908e929d65SKATO Takenori if ((inb(0x35) & 0xa0) != 0xa0) { 49103245f09SKATO Takenori outb(0x37, 0x0f); /* SHUT0 = 0. */ 49203245f09SKATO Takenori outb(0x37, 0x0b); /* SHUT1 = 0. */ 4938e929d65SKATO Takenori } 49403245f09SKATO Takenori outb(0xf0, 0x00); /* Reset. */ 49503245f09SKATO Takenori #else 4962320728fSRodney W. Grimes /* 4972320728fSRodney W. Grimes * Attempt to do a CPU reset via the keyboard controller, 4982320728fSRodney W. Grimes * do not turn of the GateA20, as any machine that fails 4992320728fSRodney W. Grimes * to do the reset here would then end up in no man's land. 5002320728fSRodney W. Grimes */ 5015eb46edfSDavid Greenman 50203245f09SKATO Takenori #if !defined(BROKEN_KEYBOARD_RESET) 5032320728fSRodney W. Grimes outb(IO_KBD + 4, 0xFE); 5042320728fSRodney W. Grimes DELAY(500000); /* wait 0.5 sec to see if that did it */ 5052320728fSRodney W. Grimes printf("Keyboard reset did not work, attempting CPU shutdown\n"); 5062320728fSRodney W. Grimes DELAY(1000000); /* wait 1 sec for printf to complete */ 5075eb46edfSDavid Greenman #endif 50803245f09SKATO Takenori #endif /* PC98 */ 5095b81b6b3SRodney W. Grimes /* force a shutdown by unmapping entire address space ! */ 510f8845af0SPoul-Henning Kamp bzero((caddr_t) PTD, PAGE_SIZE); 5115b81b6b3SRodney W. Grimes 5125b81b6b3SRodney W. Grimes /* "good night, sweet prince .... <THUNK!>" */ 51327e9b35eSJohn Dyson invltlb(); 5145b81b6b3SRodney W. Grimes /* NOTREACHED */ 5157f8cb368SDavid Greenman while(1); 5165b81b6b3SRodney W. Grimes } 517b9d60b3fSDavid Greenman 5182267af78SJulian Elischer int 5192267af78SJulian Elischer grow_stack(p, sp) 5202267af78SJulian Elischer struct proc *p; 5212267af78SJulian Elischer u_int sp; 5222267af78SJulian Elischer { 5232267af78SJulian Elischer int rv; 5242267af78SJulian Elischer 5252267af78SJulian Elischer rv = vm_map_growstack (p, sp); 5262267af78SJulian Elischer if (rv != KERN_SUCCESS) 5272267af78SJulian Elischer return (0); 5282267af78SJulian Elischer 5292267af78SJulian Elischer return (1); 5302267af78SJulian Elischer } 5312267af78SJulian Elischer 532ce02431fSDoug Rabson SYSCTL_DECL(_vm_stats_misc); 533a29b63cbSJohn Dyson 5347762bc7bSBruce Evans static int cnt_prezero; 53566095752SJohn Dyson 536b0359e2cSPeter Wemm SYSCTL_INT(_vm_stats_misc, OID_AUTO, 537b0359e2cSPeter Wemm cnt_prezero, CTLFLAG_RD, &cnt_prezero, 0, ""); 53866095752SJohn Dyson 539a29b63cbSJohn Dyson /* 54083eab616SBruce Evans * Implement the pre-zeroed page mechanism. 54183eab616SBruce Evans * This routine is called from the idle loop. 542a29b63cbSJohn Dyson */ 543dd2f9956SMatthew Dillon 544dd2f9956SMatthew Dillon #define ZIDLE_LO(v) ((v) * 2 / 3) 545dd2f9956SMatthew Dillon #define ZIDLE_HI(v) ((v) * 4 / 5) 546dd2f9956SMatthew Dillon 547a29b63cbSJohn Dyson int 54883eab616SBruce Evans vm_page_zero_idle() 54983eab616SBruce Evans { 55083eab616SBruce Evans static int free_rover; 551faa273d5SMatthew Dillon static int zero_state; 552a29b63cbSJohn Dyson vm_page_t m; 55383eab616SBruce Evans int s; 55483eab616SBruce Evans 55583eab616SBruce Evans /* 556faa273d5SMatthew Dillon * Attempt to maintain approximately 1/2 of our free pages in a 557faa273d5SMatthew Dillon * PG_ZERO'd state. Add some hysteresis to (attempt to) avoid 558faa273d5SMatthew Dillon * generally zeroing a page when the system is near steady-state. 559faa273d5SMatthew Dillon * Otherwise we might get 'flutter' during disk I/O / IPC or 560faa273d5SMatthew Dillon * fast sleeps. We also do not want to be continuously zeroing 561faa273d5SMatthew Dillon * pages because doing so may flush our L1 and L2 caches too much. 5628e56e561SJohn Dyson */ 563faa273d5SMatthew Dillon 564dd2f9956SMatthew Dillon if (zero_state && vm_page_zero_count >= ZIDLE_LO(cnt.v_free_count)) 56583eab616SBruce Evans return(0); 566dd2f9956SMatthew Dillon if (vm_page_zero_count >= ZIDLE_HI(cnt.v_free_count)) 567faa273d5SMatthew Dillon return(0); 568faa273d5SMatthew Dillon 5699a3b3e8bSPeter Wemm #ifdef SMP 57066095752SJohn Dyson if (try_mplock()) { 5719a3b3e8bSPeter Wemm #endif 57283eab616SBruce Evans s = splvm(); 573d20d60beSTor Egge __asm __volatile("sti" : : : "memory"); 574faa273d5SMatthew Dillon zero_state = 0; 575faa273d5SMatthew Dillon m = vm_page_list_find(PQ_FREE, free_rover, FALSE); 576faa273d5SMatthew Dillon if (m != NULL && (m->flags & PG_ZERO) == 0) { 5775d2aec89SAlan Cox vm_page_queues[m->queue].lcnt--; 578be72f788SAlan Cox TAILQ_REMOVE(&vm_page_queues[m->queue].pl, m, pageq); 57995f67de2STor Egge m->queue = PQ_NONE; 58083eab616SBruce Evans splx(s); 581a29b63cbSJohn Dyson pmap_zero_page(VM_PAGE_TO_PHYS(m)); 58283eab616SBruce Evans (void)splvm(); 583faa273d5SMatthew Dillon vm_page_flag_set(m, PG_ZERO); 584faa273d5SMatthew Dillon m->queue = PQ_FREE + m->pc; 5855d2aec89SAlan Cox vm_page_queues[m->queue].lcnt++; 586be72f788SAlan Cox TAILQ_INSERT_TAIL(&vm_page_queues[m->queue].pl, m, 5877762bc7bSBruce Evans pageq); 588a316d390SJohn Dyson ++vm_page_zero_count; 58966095752SJohn Dyson ++cnt_prezero; 590dd2f9956SMatthew Dillon if (vm_page_zero_count >= ZIDLE_HI(cnt.v_free_count)) 591faa273d5SMatthew Dillon zero_state = 1; 592a29b63cbSJohn Dyson } 5933b213483SAlan Cox free_rover = (free_rover + PQ_PRIME2) & PQ_L2_MASK; 59483eab616SBruce Evans splx(s); 595d20d60beSTor Egge __asm __volatile("cli" : : : "memory"); 5969a3b3e8bSPeter Wemm #ifdef SMP 5979a3b3e8bSPeter Wemm rel_mplock(); 5987762bc7bSBruce Evans #endif 59983eab616SBruce Evans return (1); 6007762bc7bSBruce Evans #ifdef SMP 601a29b63cbSJohn Dyson } 60266095752SJohn Dyson #endif 60336e9f877SMatthew Dillon /* 60436e9f877SMatthew Dillon * We have to enable interrupts for a moment if the try_mplock fails 60536e9f877SMatthew Dillon * in order to potentially take an IPI. XXX this should be in 60636e9f877SMatthew Dillon * swtch.s 60736e9f877SMatthew Dillon */ 60836e9f877SMatthew Dillon __asm __volatile("sti; nop; cli" : : : "memory"); 60966095752SJohn Dyson return (0); 61066095752SJohn Dyson } 611e0b78e19SJoerg Wunsch 612e0b78e19SJoerg Wunsch /* 61357d7d7b3SJustin T. Gibbs * Software interrupt handler for queued VM system processing. 61457d7d7b3SJustin T. Gibbs */ 61557d7d7b3SJustin T. Gibbs void 61657d7d7b3SJustin T. Gibbs swi_vm() 61757d7d7b3SJustin T. Gibbs { 61857d7d7b3SJustin T. Gibbs if (busdma_swi_pending != 0) 61957d7d7b3SJustin T. Gibbs busdma_swi(); 62057d7d7b3SJustin T. Gibbs } 62157d7d7b3SJustin T. Gibbs 62257d7d7b3SJustin T. Gibbs /* 623cae6f73aSJoerg Wunsch * Tell whether this address is in some physical memory region. 624e0b78e19SJoerg Wunsch * Currently used by the kernel coredump code in order to avoid 625e0b78e19SJoerg Wunsch * dumping the ``ISA memory hole'' which could cause indefinite hangs, 626e0b78e19SJoerg Wunsch * or other unpredictable behaviour. 627e0b78e19SJoerg Wunsch */ 628e0b78e19SJoerg Wunsch 629e0b78e19SJoerg Wunsch #include "isa.h" 630e0b78e19SJoerg Wunsch 631e0b78e19SJoerg Wunsch int 632cae6f73aSJoerg Wunsch is_physical_memory(addr) 633e0b78e19SJoerg Wunsch vm_offset_t addr; 634e0b78e19SJoerg Wunsch { 635e0b78e19SJoerg Wunsch 636e0b78e19SJoerg Wunsch #if NISA > 0 637e0b78e19SJoerg Wunsch /* The ISA ``memory hole''. */ 638e0b78e19SJoerg Wunsch if (addr >= 0xa0000 && addr < 0x100000) 639cae6f73aSJoerg Wunsch return 0; 640e0b78e19SJoerg Wunsch #endif 641e0b78e19SJoerg Wunsch 642e0b78e19SJoerg Wunsch /* 643e0b78e19SJoerg Wunsch * stuff other tests for known memory-mapped devices (PCI?) 644e0b78e19SJoerg Wunsch * here 645e0b78e19SJoerg Wunsch */ 646e0b78e19SJoerg Wunsch 647cae6f73aSJoerg Wunsch return 1; 648e0b78e19SJoerg Wunsch } 649