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$ 415b81b6b3SRodney W. Grimes */ 425b81b6b3SRodney W. Grimes 439676a785SDavid E. O'Brien #include <sys/cdefs.h> 449676a785SDavid E. O'Brien __FBSDID("$FreeBSD$"); 459676a785SDavid E. O'Brien 466d7d4649SBruce Evans #include "opt_isa.h" 47558226eaSPeter Wemm #include "opt_npx.h" 480d74cc48SPeter Wemm #include "opt_reset.h" 49883bd55aSPoul-Henning Kamp #include "opt_cpu.h" 5051ef421dSWarner Losh #include "opt_xbox.h" 518890984dSGarrett Wollman 5226f9a767SRodney W. Grimes #include <sys/param.h> 5326f9a767SRodney W. Grimes #include <sys/systm.h> 549626b608SPoul-Henning Kamp #include <sys/bio.h> 5526f9a767SRodney W. Grimes #include <sys/buf.h> 5666095752SJohn Dyson #include <sys/kernel.h> 570384fff8SJason Evans #include <sys/ktr.h> 586d7d4649SBruce Evans #include <sys/lock.h> 596d7d4649SBruce Evans #include <sys/malloc.h> 60411d10a6SAlan Cox #include <sys/mbuf.h> 6113b0500fSJohn Baldwin #include <sys/mutex.h> 625ad5504cSKelly Yancey #include <sys/pioctl.h> 636d7d4649SBruce Evans #include <sys/proc.h> 64e45db9b8SAlan Cox #include <sys/sf_buf.h> 656d7d4649SBruce Evans #include <sys/smp.h> 664c0e268aSStephan Uphoff #include <sys/sched.h> 6766095752SJohn Dyson #include <sys/sysctl.h> 6891c28bfdSLuoqi Chen #include <sys/unistd.h> 696d7d4649SBruce Evans #include <sys/vnode.h> 706d7d4649SBruce Evans #include <sys/vmmeter.h> 715b81b6b3SRodney W. Grimes 72a2a1c95cSPeter Wemm #include <machine/cpu.h> 7341ee9f1cSPoul-Henning Kamp #include <machine/cputypes.h> 741f8745a9SPeter Wemm #include <machine/md_var.h> 7591c28bfdSLuoqi Chen #include <machine/pcb.h> 7691c28bfdSLuoqi Chen #include <machine/pcb_ext.h> 775c0db7c7SAlan Cox #include <machine/smp.h> 7891c28bfdSLuoqi Chen #include <machine/vm86.h> 795b81b6b3SRodney W. Grimes 80883bd55aSPoul-Henning Kamp #ifdef CPU_ELAN 81883bd55aSPoul-Henning Kamp #include <machine/elan_mmcr.h> 82883bd55aSPoul-Henning Kamp #endif 83883bd55aSPoul-Henning Kamp 8426f9a767SRodney W. Grimes #include <vm/vm.h> 856d7d4649SBruce Evans #include <vm/vm_extern.h> 8626f9a767SRodney W. Grimes #include <vm/vm_kern.h> 8724a1cce3SDavid Greenman #include <vm/vm_page.h> 88efeaf95aSDavid Greenman #include <vm/vm_map.h> 896d7d4649SBruce Evans #include <vm/vm_param.h> 905b81b6b3SRodney W. Grimes 9193ee134aSKip Macy #ifdef XEN 923a6d1fcfSKip Macy #include <xen/hypervisor.h> 9393ee134aSKip Macy #endif 94e30f0011SSatoshi Asami #ifdef PC98 95d1725ef7SYoshihiro Takahashi #include <pc98/cbus/cbus.h> 96e30f0011SSatoshi Asami #else 972320728fSRodney W. Grimes #include <i386/isa/isa.h> 98e30f0011SSatoshi Asami #endif 992320728fSRodney W. Grimes 10051ef421dSWarner Losh #ifdef XBOX 10151ef421dSWarner Losh #include <machine/xbox.h> 10251ef421dSWarner Losh #endif 10351ef421dSWarner Losh 104099a0e58SBosko Milekic #ifndef NSFBUFS 105099a0e58SBosko Milekic #define NSFBUFS (512 + maxusers * 16) 106099a0e58SBosko Milekic #endif 107099a0e58SBosko Milekic 10815fe3067SAlfred Perlstein static void cpu_reset_real(void); 1094260b00aSNate Lawson #ifdef SMP 1104260b00aSNate Lawson static void cpu_reset_proxy(void); 1114260b00aSNate Lawson static u_int cpu_reset_proxyid; 1124260b00aSNate Lawson static volatile u_int cpu_reset_proxy_active; 1134260b00aSNate Lawson #endif 114411d10a6SAlan Cox static void sf_buf_init(void *arg); 115237fdd78SRobert Watson SYSINIT(sock_sf, SI_SUB_MBUF, SI_ORDER_ANY, sf_buf_init, NULL); 116411d10a6SAlan Cox 1170543fa53SAlan Cox LIST_HEAD(sf_head, sf_buf); 118411d10a6SAlan Cox 1190543fa53SAlan Cox /* 1200543fa53SAlan Cox * A hash table of active sendfile(2) buffers 1210543fa53SAlan Cox */ 1220543fa53SAlan Cox static struct sf_head *sf_buf_active; 1230543fa53SAlan Cox static u_long sf_buf_hashmask; 1240543fa53SAlan Cox 1250543fa53SAlan Cox #define SF_BUF_HASH(m) (((m) - vm_page_array) & sf_buf_hashmask) 1260543fa53SAlan Cox 127a5819cb5SAlan Cox static TAILQ_HEAD(, sf_buf) sf_buf_freelist; 128411d10a6SAlan Cox static u_int sf_buf_alloc_want; 129411d10a6SAlan Cox 1300543fa53SAlan Cox /* 1310543fa53SAlan Cox * A lock used to synchronize access to the hash table and free list 1320543fa53SAlan Cox */ 1330543fa53SAlan Cox static struct mtx sf_buf_lock; 1340543fa53SAlan Cox 13537b087a6SPeter Wemm extern int _ucodesel, _udatasel; 1362f1e7069STor Egge 137a4f7a4c9SDavid Greenman /* 1385b81b6b3SRodney W. Grimes * Finish a fork operation, with process p2 nearly set up. 139a2a1c95cSPeter Wemm * Copy and update the pcb, set up the stack so that the child 140a2a1c95cSPeter Wemm * ready to run and return to user mode. 1415b81b6b3SRodney W. Grimes */ 142a2a1c95cSPeter Wemm void 143079b7badSJulian Elischer cpu_fork(td1, p2, td2, flags) 144b40ce416SJulian Elischer register struct thread *td1; 145b40ce416SJulian Elischer register struct proc *p2; 146079b7badSJulian Elischer struct thread *td2; 14791c28bfdSLuoqi Chen int flags; 1485b81b6b3SRodney W. Grimes { 149b40ce416SJulian Elischer register struct proc *p1; 15091c28bfdSLuoqi Chen struct pcb *pcb2; 15124db0459SJohn Baldwin struct mdproc *mdp2; 152a4b8c657SBruce Evans #ifdef DEV_NPX 153ba74981eSWarner Losh register_t savecrit; 154a4b8c657SBruce Evans #endif 15591c28bfdSLuoqi Chen 156b40ce416SJulian Elischer p1 = td1->td_proc; 15791c28bfdSLuoqi Chen if ((flags & RFPROC) == 0) { 15891c28bfdSLuoqi Chen if ((flags & RFMEM) == 0) { 15991c28bfdSLuoqi Chen /* unshare user LDT */ 16045449f84SJulian Elischer struct mdproc *mdp1 = &p1->p_md; 1619719da13SKonstantin Belousov struct proc_ldt *pldt, *pldt1; 162bc2e774aSJohn Baldwin 1630ad5e7f3SJeff Roberson mtx_lock_spin(&dt_lock); 1649719da13SKonstantin Belousov if ((pldt1 = mdp1->md_ldt) != NULL && 1659719da13SKonstantin Belousov pldt1->ldt_refcnt > 1) { 1669719da13SKonstantin Belousov pldt = user_ldt_alloc(mdp1, pldt1->ldt_len); 16724db0459SJohn Baldwin if (pldt == NULL) 1681acf256dSJohn Baldwin panic("could not copy LDT"); 16924db0459SJohn Baldwin mdp1->md_ldt = pldt; 17024db0459SJohn Baldwin set_user_ldt(mdp1); 1719719da13SKonstantin Belousov user_ldt_deref(pldt1); 17202b0a160SAttilio Rao } else 1730ad5e7f3SJeff Roberson mtx_unlock_spin(&dt_lock); 17491c28bfdSLuoqi Chen } 17591c28bfdSLuoqi Chen return; 17691c28bfdSLuoqi Chen } 1775b81b6b3SRodney W. Grimes 1781f8745a9SPeter Wemm /* Ensure that p1's pcb is up to date. */ 179b40ce416SJulian Elischer if (td1 == curthread) 180b40ce416SJulian Elischer td1->td_pcb->pcb_gs = rgs(); 18190a693f8SDavid Xu #ifdef DEV_NPX 182ba74981eSWarner Losh savecrit = intr_disable(); 1830bbc8826SJohn Baldwin if (PCPU_GET(fpcurthread) == td1) 184b40ce416SJulian Elischer npxsave(&td1->td_pcb->pcb_save); 185ba74981eSWarner Losh intr_restore(savecrit); 1869f449d2aSBruce Evans #endif 1871f8745a9SPeter Wemm 188b40ce416SJulian Elischer /* Point the pcb to the top of the stack */ 1896041f1a5SBill Paul pcb2 = (struct pcb *)(td2->td_kstack + 1906041f1a5SBill Paul td2->td_kstack_pages * PAGE_SIZE) - 1; 191b40ce416SJulian Elischer td2->td_pcb = pcb2; 192b40ce416SJulian Elischer 19324db0459SJohn Baldwin /* Copy p1's pcb */ 194b40ce416SJulian Elischer bcopy(td1->td_pcb, pcb2, sizeof(*pcb2)); 195a2a1c95cSPeter Wemm 19624db0459SJohn Baldwin /* Point mdproc and then copy over td1's contents */ 19745449f84SJulian Elischer mdp2 = &p2->p_md; 19845449f84SJulian Elischer bcopy(&p1->p_md, mdp2, sizeof(*mdp2)); 19924db0459SJohn Baldwin 200a2a1c95cSPeter Wemm /* 201a2a1c95cSPeter Wemm * Create a new fresh stack for the new process. 2021f8745a9SPeter Wemm * Copy the trap frame for the return to user mode as if from a 203a4b8c657SBruce Evans * syscall. This copies most of the user mode register values. 204e5a860ebSPeter Wemm * The -16 is so we can expand the trapframe if we go to vm86. 205a2a1c95cSPeter Wemm */ 206e5a860ebSPeter Wemm td2->td_frame = (struct trapframe *)((caddr_t)td2->td_pcb - 16) - 1; 207b40ce416SJulian Elischer bcopy(td1->td_frame, td2->td_frame, sizeof(struct trapframe)); 208a2a1c95cSPeter Wemm 209b40ce416SJulian Elischer td2->td_frame->tf_eax = 0; /* Child returns zero */ 210b40ce416SJulian Elischer td2->td_frame->tf_eflags &= ~PSL_C; /* success */ 211b40ce416SJulian Elischer td2->td_frame->tf_edx = 1; 2120d54b9d1SJohn Baldwin 213a2a1c95cSPeter Wemm /* 2145ad5504cSKelly Yancey * If the parent process has the trap bit set (i.e. a debugger had 2155ad5504cSKelly Yancey * single stepped the process to the system call), we need to clear 2165ad5504cSKelly Yancey * the trap flag from the new frame unless the debugger had set PF_FORK 2175ad5504cSKelly Yancey * on the parent. Otherwise, the child will receive a (likely 2185ad5504cSKelly Yancey * unexpected) SIGTRAP when it executes the first instruction after 2195ad5504cSKelly Yancey * returning to userland. 2205ad5504cSKelly Yancey */ 2215ad5504cSKelly Yancey if ((p1->p_pfsflags & PF_FORK) == 0) 2225ad5504cSKelly Yancey td2->td_frame->tf_eflags &= ~PSL_T; 2235ad5504cSKelly Yancey 2245ad5504cSKelly Yancey /* 225a2a1c95cSPeter Wemm * Set registers for trampoline to user mode. Leave space for the 226a2a1c95cSPeter Wemm * return address on stack. These are the kernel mode register values. 227a2a1c95cSPeter Wemm */ 2287ab9b220SJake Burkholder #ifdef PAE 2297ab9b220SJake Burkholder pcb2->pcb_cr3 = vtophys(vmspace_pmap(p2->p_vmspace)->pm_pdpt); 2307ab9b220SJake Burkholder #else 231b1028ad1SLuoqi Chen pcb2->pcb_cr3 = vtophys(vmspace_pmap(p2->p_vmspace)->pm_pdir); 2327ab9b220SJake Burkholder #endif 23337b087a6SPeter Wemm pcb2->pcb_edi = 0; 23437b087a6SPeter Wemm pcb2->pcb_esi = (int)fork_return; /* fork_trampoline argument */ 23537b087a6SPeter Wemm pcb2->pcb_ebp = 0; 236b40ce416SJulian Elischer pcb2->pcb_esp = (int)td2->td_frame - sizeof(void *); 237b40ce416SJulian Elischer pcb2->pcb_ebx = (int)td2; /* fork_trampoline argument */ 2381f8745a9SPeter Wemm pcb2->pcb_eip = (int)fork_trampoline; 239a93b6bf5SThomas Moestl pcb2->pcb_psl = PSL_KERNEL; /* ints disabled */ 240a4b8c657SBruce Evans /*- 241a4b8c657SBruce Evans * pcb2->pcb_dr*: cloned above. 2421f8745a9SPeter Wemm * pcb2->pcb_savefpu: cloned above. 243a4b8c657SBruce Evans * pcb2->pcb_flags: cloned above. 2441f8745a9SPeter Wemm * pcb2->pcb_onfault: cloned above (always NULL here?). 245a4b8c657SBruce Evans * pcb2->pcb_gs: cloned above. 246a4b8c657SBruce Evans * pcb2->pcb_ext: cleared below. 2471f8745a9SPeter Wemm */ 2485b81b6b3SRodney W. Grimes 24948a09cf2SJohn Dyson /* 25048a09cf2SJohn Dyson * XXX don't copy the i/o pages. this should probably be fixed. 25148a09cf2SJohn Dyson */ 25248a09cf2SJohn Dyson pcb2->pcb_ext = 0; 25348a09cf2SJohn Dyson 2548c39a127SStefan Eßer /* Copy the LDT, if necessary. */ 2550ad5e7f3SJeff Roberson mtx_lock_spin(&dt_lock); 256753d1af1SJohn Baldwin if (mdp2->md_ldt != NULL) { 25791c28bfdSLuoqi Chen if (flags & RFMEM) { 25805dfa22fSAttilio Rao mdp2->md_ldt->ldt_refcnt++; 25991c28bfdSLuoqi Chen } else { 26024db0459SJohn Baldwin mdp2->md_ldt = user_ldt_alloc(mdp2, 26124db0459SJohn Baldwin mdp2->md_ldt->ldt_len); 26224db0459SJohn Baldwin if (mdp2->md_ldt == NULL) 263df4d012bSJohn Baldwin panic("could not copy LDT"); 26491c28bfdSLuoqi Chen } 2658c39a127SStefan Eßer } 2660ad5e7f3SJeff Roberson mtx_unlock_spin(&dt_lock); 2678c39a127SStefan Eßer 2681b1618fbSJeff Roberson /* Setup to release spin count in fork_exit(). */ 269c6a37e84SJohn Baldwin td2->td_md.md_spinlock_count = 1; 27093ee134aSKip Macy /* 27193ee134aSKip Macy * XXX XEN need to check on PSL_USER is handled 27293ee134aSKip Macy */ 2731c833c08SKip Macy #ifdef XEN 27418bad857SKip Macy td2->td_md.md_saved_flags = 0; 27518bad857SKip Macy #else 276c6a37e84SJohn Baldwin td2->td_md.md_saved_flags = PSL_KERNEL | PSL_I; 27718bad857SKip Macy #endif 278a2a1c95cSPeter Wemm /* 279a2a1c95cSPeter Wemm * Now, cpu_switch() can schedule the new process. 280a2a1c95cSPeter Wemm * pcb_esp is loaded pointing to the cpu_switch() stack frame 281a2a1c95cSPeter Wemm * containing the return address when exiting cpu_switch. 28237b087a6SPeter Wemm * This will normally be to fork_trampoline(), which will have 28337b087a6SPeter Wemm * %ebx loaded with the new proc's pointer. fork_trampoline() 284a2a1c95cSPeter Wemm * will set up a stack to call fork_return(p, frame); to complete 285a2a1c95cSPeter Wemm * the return to user-mode. 286a2a1c95cSPeter Wemm */ 287a2a1c95cSPeter Wemm } 288a2a1c95cSPeter Wemm 289a2a1c95cSPeter Wemm /* 290a2a1c95cSPeter Wemm * Intercept the return address from a freshly forked process that has NOT 291a2a1c95cSPeter Wemm * been scheduled yet. 292a2a1c95cSPeter Wemm * 293a2a1c95cSPeter Wemm * This is needed to make kernel threads stay in kernel mode. 294a2a1c95cSPeter Wemm */ 295a2a1c95cSPeter Wemm void 296b40ce416SJulian Elischer cpu_set_fork_handler(td, func, arg) 297b40ce416SJulian Elischer struct thread *td; 29815fe3067SAlfred Perlstein void (*func)(void *); 2999c8b8baaSPeter Wemm void *arg; 300a2a1c95cSPeter Wemm { 301a2a1c95cSPeter Wemm /* 302a2a1c95cSPeter Wemm * Note that the trap frame follows the args, so the function 303a2a1c95cSPeter Wemm * is really called like this: func(arg, frame); 304a2a1c95cSPeter Wemm */ 305b40ce416SJulian Elischer td->td_pcb->pcb_esi = (int) func; /* function */ 306b40ce416SJulian Elischer td->td_pcb->pcb_ebx = (int) arg; /* first arg */ 3075b81b6b3SRodney W. Grimes } 3085b81b6b3SRodney W. Grimes 3097c2b54e8SNate Williams void 310e602ba25SJulian Elischer cpu_exit(struct thread *td) 311e602ba25SJulian Elischer { 312e602ba25SJulian Elischer 313bc2e774aSJohn Baldwin /* 314bc2e774aSJohn Baldwin * If this process has a custom LDT, release it. Reset pc->pcb_gs 315bc2e774aSJohn Baldwin * and %gs before we free it in case they refer to an LDT entry. 316bc2e774aSJohn Baldwin */ 3170ad5e7f3SJeff Roberson mtx_lock_spin(&dt_lock); 318bc2e774aSJohn Baldwin if (td->td_proc->p_md.md_ldt) { 31966250360SDavid Xu td->td_pcb->pcb_gs = _udatasel; 32066250360SDavid Xu load_gs(_udatasel); 321e602ba25SJulian Elischer user_ldt_free(td); 32202b0a160SAttilio Rao } else 3230ad5e7f3SJeff Roberson mtx_unlock_spin(&dt_lock); 324e602ba25SJulian Elischer } 325e602ba25SJulian Elischer 326e602ba25SJulian Elischer void 327e602ba25SJulian Elischer cpu_thread_exit(struct thread *td) 3285b81b6b3SRodney W. Grimes { 3294cc99cf6SJohn Baldwin 330558226eaSPeter Wemm #ifdef DEV_NPX 331d5e1f581SDavid Xu if (td == PCPU_GET(fpcurthread)) 332d5e1f581SDavid Xu npxdrop(); 333558226eaSPeter Wemm #endif 334bc2e774aSJohn Baldwin 335bc2e774aSJohn Baldwin /* Disable any hardware breakpoints. */ 336bc2e774aSJohn Baldwin if (td->td_pcb->pcb_flags & PCB_DBREGS) { 337b19d9defSMaxime Henrion reset_dbregs(); 338bc2e774aSJohn Baldwin td->td_pcb->pcb_flags &= ~PCB_DBREGS; 339b19d9defSMaxime Henrion } 340b19d9defSMaxime Henrion } 341b19d9defSMaxime Henrion 342b19d9defSMaxime Henrion void 343696058c3SJulian Elischer cpu_thread_clean(struct thread *td) 344b19d9defSMaxime Henrion { 345b19d9defSMaxime Henrion struct pcb *pcb; 346b19d9defSMaxime Henrion 347b19d9defSMaxime Henrion pcb = td->td_pcb; 348ae3676c4SJohn Baldwin if (pcb->pcb_ext != NULL) { 349e602ba25SJulian Elischer /* if (pcb->pcb_ext->ext_refcount-- == 1) ?? */ 35048a09cf2SJohn Dyson /* 35148a09cf2SJohn Dyson * XXX do we need to move the TSS off the allocated pages 35248a09cf2SJohn Dyson * before freeing them? (not done here) 35348a09cf2SJohn Dyson */ 35448a09cf2SJohn Dyson kmem_free(kernel_map, (vm_offset_t)pcb->pcb_ext, 35548a09cf2SJohn Dyson ctob(IOPAGES + 1)); 356ae3676c4SJohn Baldwin pcb->pcb_ext = NULL; 35748a09cf2SJohn Dyson } 3585b81b6b3SRodney W. Grimes } 3595b81b6b3SRodney W. Grimes 360381fe1aaSGarrett Wollman void 361710338e9SMarcel Moolenaar cpu_thread_swapin(struct thread *td) 362710338e9SMarcel Moolenaar { 363710338e9SMarcel Moolenaar } 364710338e9SMarcel Moolenaar 365710338e9SMarcel Moolenaar void 366710338e9SMarcel Moolenaar cpu_thread_swapout(struct thread *td) 367710338e9SMarcel Moolenaar { 368710338e9SMarcel Moolenaar } 369710338e9SMarcel Moolenaar 370710338e9SMarcel Moolenaar void 3710c3967e7SMarcel Moolenaar cpu_thread_alloc(struct thread *td) 372e602ba25SJulian Elischer { 373e602ba25SJulian Elischer 3746041f1a5SBill Paul td->td_pcb = (struct pcb *)(td->td_kstack + 3756041f1a5SBill Paul td->td_kstack_pages * PAGE_SIZE) - 1; 376e602ba25SJulian Elischer td->td_frame = (struct trapframe *)((caddr_t)td->td_pcb - 16) - 1; 377c7251aedSTor Egge td->td_pcb->pcb_ext = NULL; 378e602ba25SJulian Elischer } 379e602ba25SJulian Elischer 3800c3967e7SMarcel Moolenaar void 3810c3967e7SMarcel Moolenaar cpu_thread_free(struct thread *td) 3820c3967e7SMarcel Moolenaar { 3830c3967e7SMarcel Moolenaar 3840c3967e7SMarcel Moolenaar cpu_thread_clean(td); 3850c3967e7SMarcel Moolenaar } 3860c3967e7SMarcel Moolenaar 387e602ba25SJulian Elischer /* 388575525a0SJonathan Mini * Initialize machine state (pcb and trap frame) for a new thread about to 38948bfcdddSJulian Elischer * upcall. Put enough state in the new thread's PCB to get it to go back 39048bfcdddSJulian Elischer * userret(), where we can intercept it again to set the return (upcall) 39148bfcdddSJulian Elischer * Address and stack, along with those from upcals that are from other sources 39248bfcdddSJulian Elischer * such as those generated in thread_userret() itself. 393e602ba25SJulian Elischer */ 394e602ba25SJulian Elischer void 39511e0f8e1SMarcel Moolenaar cpu_set_upcall(struct thread *td, struct thread *td0) 396e602ba25SJulian Elischer { 397e602ba25SJulian Elischer struct pcb *pcb2; 398e602ba25SJulian Elischer 399e602ba25SJulian Elischer /* Point the pcb to the top of the stack. */ 400e602ba25SJulian Elischer pcb2 = td->td_pcb; 401e602ba25SJulian Elischer 402e602ba25SJulian Elischer /* 403e602ba25SJulian Elischer * Copy the upcall pcb. This loads kernel regs. 404e602ba25SJulian Elischer * Those not loaded individually below get their default 405e602ba25SJulian Elischer * values here. 406e602ba25SJulian Elischer */ 40711e0f8e1SMarcel Moolenaar bcopy(td0->td_pcb, pcb2, sizeof(*pcb2)); 4085d84379dSDavid Xu pcb2->pcb_flags &= ~(PCB_NPXTRAP|PCB_NPXINITDONE); 409e602ba25SJulian Elischer 410e602ba25SJulian Elischer /* 411e602ba25SJulian Elischer * Create a new fresh stack for the new thread. 412e602ba25SJulian Elischer */ 41311e0f8e1SMarcel Moolenaar bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe)); 414e602ba25SJulian Elischer 4157ce5e15eSDavid Xu /* If the current thread has the trap bit set (i.e. a debugger had 4167ce5e15eSDavid Xu * single stepped the process to the system call), we need to clear 4177ce5e15eSDavid Xu * the trap flag from the new frame. Otherwise, the new thread will 4187ce5e15eSDavid Xu * receive a (likely unexpected) SIGTRAP when it executes the first 4197ce5e15eSDavid Xu * instruction after returning to userland. 4207ce5e15eSDavid Xu */ 4217ce5e15eSDavid Xu td->td_frame->tf_eflags &= ~PSL_T; 4227ce5e15eSDavid Xu 423e602ba25SJulian Elischer /* 424e602ba25SJulian Elischer * Set registers for trampoline to user mode. Leave space for the 425e602ba25SJulian Elischer * return address on stack. These are the kernel mode register values. 426e602ba25SJulian Elischer */ 427e602ba25SJulian Elischer pcb2->pcb_edi = 0; 428e602ba25SJulian Elischer pcb2->pcb_esi = (int)fork_return; /* trampoline arg */ 429e602ba25SJulian Elischer pcb2->pcb_ebp = 0; 430e602ba25SJulian Elischer pcb2->pcb_esp = (int)td->td_frame - sizeof(void *); /* trampoline arg */ 431e602ba25SJulian Elischer pcb2->pcb_ebx = (int)td; /* trampoline arg */ 432e602ba25SJulian Elischer pcb2->pcb_eip = (int)fork_trampoline; 433e602ba25SJulian Elischer pcb2->pcb_psl &= ~(PSL_I); /* interrupts must be disabled */ 4342257a44fSDavid Xu pcb2->pcb_gs = rgs(); 435e602ba25SJulian Elischer /* 436e602ba25SJulian Elischer * If we didn't copy the pcb, we'd need to do the following registers: 4379624b51aSAlan Cox * pcb2->pcb_cr3: cloned above. 438e602ba25SJulian Elischer * pcb2->pcb_dr*: cloned above. 439e602ba25SJulian Elischer * pcb2->pcb_savefpu: cloned above. 440e602ba25SJulian Elischer * pcb2->pcb_flags: cloned above. 441e602ba25SJulian Elischer * pcb2->pcb_onfault: cloned above (always NULL here?). 4426617724cSJeff Roberson * pcb2->pcb_gs: cloned above. 443e602ba25SJulian Elischer * pcb2->pcb_ext: cleared below. 444e602ba25SJulian Elischer */ 445e602ba25SJulian Elischer pcb2->pcb_ext = NULL; 446c6a37e84SJohn Baldwin 4471b1618fbSJeff Roberson /* Setup to release spin count in fork_exit(). */ 448c6a37e84SJohn Baldwin td->td_md.md_spinlock_count = 1; 44918bad857SKip Macy #ifdef XEN 45018bad857SKip Macy td->td_md.md_saved_flags = 0; 45118bad857SKip Macy #else 452c6a37e84SJohn Baldwin td->td_md.md_saved_flags = PSL_KERNEL | PSL_I; 45318bad857SKip Macy #endif 454e602ba25SJulian Elischer } 455e602ba25SJulian Elischer 456e602ba25SJulian Elischer /* 45748bfcdddSJulian Elischer * Set that machine state for performing an upcall that has to 45848bfcdddSJulian Elischer * be done in thread_userret() so that those upcalls generated 45948bfcdddSJulian Elischer * in thread_userret() itself can be done as well. 460e602ba25SJulian Elischer */ 461575525a0SJonathan Mini void 46221fc3164SDavid Xu cpu_set_upcall_kse(struct thread *td, void (*entry)(void *), void *arg, 46321fc3164SDavid Xu stack_t *stack) 464575525a0SJonathan Mini { 465575525a0SJonathan Mini 466575525a0SJonathan Mini /* 467696058c3SJulian Elischer * Do any extra cleaning that needs to be done. 468696058c3SJulian Elischer * The thread may have optional components 469696058c3SJulian Elischer * that are not present in a fresh thread. 470696058c3SJulian Elischer * This may be a recycled thread so make it look 471696058c3SJulian Elischer * as though it's newly allocated. 472696058c3SJulian Elischer */ 473696058c3SJulian Elischer cpu_thread_clean(td); 474696058c3SJulian Elischer 475696058c3SJulian Elischer /* 476575525a0SJonathan Mini * Set the trap frame to point at the beginning of the uts 477575525a0SJonathan Mini * function. 478575525a0SJonathan Mini */ 4792396628bSDavid Xu td->td_frame->tf_ebp = 0; 480575525a0SJonathan Mini td->td_frame->tf_esp = 481fc643048SDavid Xu (((int)stack->ss_sp + stack->ss_size - 4) & ~0x0f) - 4; 48221fc3164SDavid Xu td->td_frame->tf_eip = (int)entry; 483575525a0SJonathan Mini 484575525a0SJonathan Mini /* 485575525a0SJonathan Mini * Pass the address of the mailbox for this kse to the uts 486575525a0SJonathan Mini * function as a parameter on the stack. 487575525a0SJonathan Mini */ 488575525a0SJonathan Mini suword((void *)(td->td_frame->tf_esp + sizeof(void *)), 48921fc3164SDavid Xu (int)arg); 49021fc3164SDavid Xu } 49121fc3164SDavid Xu 492740fd64dSDavid Xu int 49321fc3164SDavid Xu cpu_set_user_tls(struct thread *td, void *tls_base) 49421fc3164SDavid Xu { 49521fc3164SDavid Xu struct segment_descriptor sd; 49621fc3164SDavid Xu uint32_t base; 49721fc3164SDavid Xu 49821fc3164SDavid Xu /* 49921fc3164SDavid Xu * Construct a descriptor and store it in the pcb for 50021fc3164SDavid Xu * the next context switch. Also store it in the gdt 50121fc3164SDavid Xu * so that the load of tf_fs into %fs will activate it 50221fc3164SDavid Xu * at return to userland. 50321fc3164SDavid Xu */ 50421fc3164SDavid Xu base = (uint32_t)tls_base; 50521fc3164SDavid Xu sd.sd_lobase = base & 0xffffff; 50621fc3164SDavid Xu sd.sd_hibase = (base >> 24) & 0xff; 50721fc3164SDavid Xu sd.sd_lolimit = 0xffff; /* 4GB limit, wraps around */ 50821fc3164SDavid Xu sd.sd_hilimit = 0xf; 50921fc3164SDavid Xu sd.sd_type = SDT_MEMRWA; 51021fc3164SDavid Xu sd.sd_dpl = SEL_UPL; 51121fc3164SDavid Xu sd.sd_p = 1; 51221fc3164SDavid Xu sd.sd_xx = 0; 51321fc3164SDavid Xu sd.sd_def32 = 1; 51421fc3164SDavid Xu sd.sd_gran = 1; 51521fc3164SDavid Xu critical_enter(); 51621fc3164SDavid Xu /* set %gs */ 51721fc3164SDavid Xu td->td_pcb->pcb_gsd = sd; 51821fc3164SDavid Xu if (td == curthread) { 51921fc3164SDavid Xu PCPU_GET(fsgs_gdt)[1] = sd; 52021fc3164SDavid Xu load_gs(GSEL(GUGS_SEL, SEL_UPL)); 52121fc3164SDavid Xu } 52221fc3164SDavid Xu critical_exit(); 523740fd64dSDavid Xu return (0); 524e602ba25SJulian Elischer } 525e602ba25SJulian Elischer 5265b81b6b3SRodney W. Grimes /* 5275b81b6b3SRodney W. Grimes * Convert kernel VA to physical address 5285b81b6b3SRodney W. Grimes */ 529227f9a1cSJake Burkholder vm_paddr_t 5307f8cb368SDavid Greenman kvtop(void *addr) 5315b81b6b3SRodney W. Grimes { 532227f9a1cSJake Burkholder vm_paddr_t pa; 5335b81b6b3SRodney W. Grimes 534227f9a1cSJake Burkholder pa = pmap_kextract((vm_offset_t)addr); 535227f9a1cSJake Burkholder if (pa == 0) 5365b81b6b3SRodney W. Grimes panic("kvtop: zero page frame"); 537227f9a1cSJake Burkholder return (pa); 5385b81b6b3SRodney W. Grimes } 5395b81b6b3SRodney W. Grimes 5404260b00aSNate Lawson #ifdef SMP 5414260b00aSNate Lawson static void 5424260b00aSNate Lawson cpu_reset_proxy() 5434260b00aSNate Lawson { 5444260b00aSNate Lawson 5454260b00aSNate Lawson cpu_reset_proxy_active = 1; 5464260b00aSNate Lawson while (cpu_reset_proxy_active == 1) 5474260b00aSNate Lawson ; /* Wait for other cpu to see that we've started */ 5484260b00aSNate Lawson stop_cpus((1<<cpu_reset_proxyid)); 5494260b00aSNate Lawson printf("cpu_reset_proxy: Stopped CPU %d\n", cpu_reset_proxyid); 5504260b00aSNate Lawson DELAY(1000000); 5514260b00aSNate Lawson cpu_reset_real(); 5524260b00aSNate Lawson } 5534260b00aSNate Lawson #endif 5544260b00aSNate Lawson 5557f8cb368SDavid Greenman void 556d447dbeeSBruce Evans cpu_reset() 557d447dbeeSBruce Evans { 55851ef421dSWarner Losh #ifdef XBOX 55951ef421dSWarner Losh if (arch_i386_is_xbox) { 56051ef421dSWarner Losh /* Kick the PIC16L, it can reboot the box */ 56151ef421dSWarner Losh pic16l_reboot(); 56251ef421dSWarner Losh for (;;); 56351ef421dSWarner Losh } 56451ef421dSWarner Losh #endif 56551ef421dSWarner Losh 5662f1e7069STor Egge #ifdef SMP 5674260b00aSNate Lawson u_int cnt, map; 5682f1e7069STor Egge 56963a6daf6SNate Lawson if (smp_active) { 570ef73ae4bSJake Burkholder map = PCPU_GET(other_cpus) & ~stopped_cpus; 5712f1e7069STor Egge if (map != 0) { 5722f1e7069STor Egge printf("cpu_reset: Stopping other CPUs\n"); 57363a6daf6SNate Lawson stop_cpus(map); 5742f1e7069STor Egge } 5754260b00aSNate Lawson 5764260b00aSNate Lawson if (PCPU_GET(cpuid) != 0) { 5774260b00aSNate Lawson cpu_reset_proxyid = PCPU_GET(cpuid); 5784260b00aSNate Lawson cpustop_restartfunc = cpu_reset_proxy; 5794260b00aSNate Lawson cpu_reset_proxy_active = 0; 5804260b00aSNate Lawson printf("cpu_reset: Restarting BSP\n"); 581301268b8SJohn Baldwin 582301268b8SJohn Baldwin /* Restart CPU #0. */ 583301268b8SJohn Baldwin /* XXX: restart_cpus(1 << 0); */ 584301268b8SJohn Baldwin atomic_store_rel_int(&started_cpus, (1 << 0)); 5854260b00aSNate Lawson 5864260b00aSNate Lawson cnt = 0; 5874260b00aSNate Lawson while (cpu_reset_proxy_active == 0 && cnt < 10000000) 5884260b00aSNate Lawson cnt++; /* Wait for BSP to announce restart */ 5894260b00aSNate Lawson if (cpu_reset_proxy_active == 0) 5904260b00aSNate Lawson printf("cpu_reset: Failed to restart BSP\n"); 5914260b00aSNate Lawson enable_intr(); 5924260b00aSNate Lawson cpu_reset_proxy_active = 2; 5934260b00aSNate Lawson 5944260b00aSNate Lawson while (1); 5954260b00aSNate Lawson /* NOTREACHED */ 5964260b00aSNate Lawson } 5974260b00aSNate Lawson 5982f1e7069STor Egge DELAY(1000000); 5992f1e7069STor Egge } 6002f1e7069STor Egge #endif 60163a6daf6SNate Lawson cpu_reset_real(); 60263a6daf6SNate Lawson /* NOTREACHED */ 6032f1e7069STor Egge } 6042f1e7069STor Egge 6052f1e7069STor Egge static void 6062f1e7069STor Egge cpu_reset_real() 6072f1e7069STor Egge { 608a5b6b9a6SJohn Baldwin struct region_descriptor null_idt; 609ab395433SMaxim Sobolev #ifndef PC98 610897f1917SMaxim Sobolev int b; 611ab395433SMaxim Sobolev #endif 612d447dbeeSBruce Evans 613897f1917SMaxim Sobolev disable_intr(); 61493ee134aSKip Macy #ifdef XEN 6153655b5e6SKip Macy if (smp_processor_id() == 0) 6163655b5e6SKip Macy HYPERVISOR_shutdown(SHUTDOWN_reboot); 6173655b5e6SKip Macy else 618cba4003cSKip Macy HYPERVISOR_shutdown(SHUTDOWN_poweroff); 61993ee134aSKip Macy #endif 620883bd55aSPoul-Henning Kamp #ifdef CPU_ELAN 621883bd55aSPoul-Henning Kamp if (elan_mmcr != NULL) 622883bd55aSPoul-Henning Kamp elan_mmcr->RESCFG = 1; 623883bd55aSPoul-Henning Kamp #endif 624883bd55aSPoul-Henning Kamp 62502d12d93SPoul-Henning Kamp if (cpu == CPU_GEODE1100) { 62602d12d93SPoul-Henning Kamp /* Attempt Geode's own reset */ 62702d12d93SPoul-Henning Kamp outl(0xcf8, 0x80009044ul); 62802d12d93SPoul-Henning Kamp outl(0xcfc, 0xf); 62902d12d93SPoul-Henning Kamp } 63002d12d93SPoul-Henning Kamp 63103245f09SKATO Takenori #ifdef PC98 63203245f09SKATO Takenori /* 63303245f09SKATO Takenori * Attempt to do a CPU reset via CPU reset port. 63403245f09SKATO Takenori */ 6358e929d65SKATO Takenori if ((inb(0x35) & 0xa0) != 0xa0) { 63603245f09SKATO Takenori outb(0x37, 0x0f); /* SHUT0 = 0. */ 63703245f09SKATO Takenori outb(0x37, 0x0b); /* SHUT1 = 0. */ 6388e929d65SKATO Takenori } 63903245f09SKATO Takenori outb(0xf0, 0x00); /* Reset. */ 64003245f09SKATO Takenori #else 64163a6daf6SNate Lawson #if !defined(BROKEN_KEYBOARD_RESET) 6422320728fSRodney W. Grimes /* 6432320728fSRodney W. Grimes * Attempt to do a CPU reset via the keyboard controller, 64463a6daf6SNate Lawson * do not turn off GateA20, as any machine that fails 6452320728fSRodney W. Grimes * to do the reset here would then end up in no man's land. 6462320728fSRodney W. Grimes */ 6472320728fSRodney W. Grimes outb(IO_KBD + 4, 0xFE); 6482320728fSRodney W. Grimes DELAY(500000); /* wait 0.5 sec to see if that did it */ 6495eb46edfSDavid Greenman #endif 650b72d374cSJohn Baldwin 651b72d374cSJohn Baldwin /* 652b72d374cSJohn Baldwin * Attempt to force a reset via the Reset Control register at 653289f40c6SJohn Baldwin * I/O port 0xcf9. Bit 2 forces a system reset when it 654289f40c6SJohn Baldwin * transitions from 0 to 1. Bit 1 selects the type of reset 655289f40c6SJohn Baldwin * to attempt: 0 selects a "soft" reset, and 1 selects a 656289f40c6SJohn Baldwin * "hard" reset. We try a "hard" reset. The first write sets 657289f40c6SJohn Baldwin * bit 1 to select a "hard" reset and clears bit 2. The 658289f40c6SJohn Baldwin * second write forces a 0 -> 1 transition in bit 2 to trigger 659289f40c6SJohn Baldwin * a reset. 660b72d374cSJohn Baldwin */ 661897f1917SMaxim Sobolev outb(0xcf9, 0x2); 662897f1917SMaxim Sobolev outb(0xcf9, 0x6); 663897f1917SMaxim Sobolev DELAY(500000); /* wait 0.5 sec to see if that did it */ 664897f1917SMaxim Sobolev 665b72d374cSJohn Baldwin /* 666b72d374cSJohn Baldwin * Attempt to force a reset via the Fast A20 and Init register 667b72d374cSJohn Baldwin * at I/O port 0x92. Bit 1 serves as an alternate A20 gate. 668b72d374cSJohn Baldwin * Bit 0 asserts INIT# when set to 1. We are careful to only 669b72d374cSJohn Baldwin * preserve bit 1 while setting bit 0. We also must clear bit 670b72d374cSJohn Baldwin * 0 before setting it if it isn't already clear. 671b72d374cSJohn Baldwin */ 672897f1917SMaxim Sobolev b = inb(0x92); 673897f1917SMaxim Sobolev if (b != 0xff) { 674897f1917SMaxim Sobolev if ((b & 0x1) != 0) 675897f1917SMaxim Sobolev outb(0x92, b & 0xfe); 676897f1917SMaxim Sobolev outb(0x92, b | 0x1); 677897f1917SMaxim Sobolev DELAY(500000); /* wait 0.5 sec to see if that did it */ 678897f1917SMaxim Sobolev } 67903245f09SKATO Takenori #endif /* PC98 */ 68063a6daf6SNate Lawson 68119461776SJohn Baldwin printf("No known reset method worked, attempting CPU shutdown\n"); 682897f1917SMaxim Sobolev DELAY(1000000); /* wait 1 sec for printf to complete */ 683897f1917SMaxim Sobolev 684a5b6b9a6SJohn Baldwin /* Wipe the IDT. */ 685a5b6b9a6SJohn Baldwin null_idt.rd_limit = 0; 686a5b6b9a6SJohn Baldwin null_idt.rd_base = 0; 687a5b6b9a6SJohn Baldwin lidt(&null_idt); 6885b81b6b3SRodney W. Grimes 6895b81b6b3SRodney W. Grimes /* "good night, sweet prince .... <THUNK!>" */ 690a5b6b9a6SJohn Baldwin breakpoint(); 691a5b6b9a6SJohn Baldwin 6925b81b6b3SRodney W. Grimes /* NOTREACHED */ 6937f8cb368SDavid Greenman while(1); 6945b81b6b3SRodney W. Grimes } 695b9d60b3fSDavid Greenman 696e0b78e19SJoerg Wunsch /* 697411d10a6SAlan Cox * Allocate a pool of sf_bufs (sendfile(2) or "super-fast" if you prefer. :-)) 698411d10a6SAlan Cox */ 699411d10a6SAlan Cox static void 700411d10a6SAlan Cox sf_buf_init(void *arg) 701411d10a6SAlan Cox { 702411d10a6SAlan Cox struct sf_buf *sf_bufs; 703411d10a6SAlan Cox vm_offset_t sf_base; 704411d10a6SAlan Cox int i; 705411d10a6SAlan Cox 706099a0e58SBosko Milekic nsfbufs = NSFBUFS; 707099a0e58SBosko Milekic TUNABLE_INT_FETCH("kern.ipc.nsfbufs", &nsfbufs); 708099a0e58SBosko Milekic 7090543fa53SAlan Cox sf_buf_active = hashinit(nsfbufs, M_TEMP, &sf_buf_hashmask); 710a5819cb5SAlan Cox TAILQ_INIT(&sf_buf_freelist); 711411d10a6SAlan Cox sf_base = kmem_alloc_nofault(kernel_map, nsfbufs * PAGE_SIZE); 712411d10a6SAlan Cox sf_bufs = malloc(nsfbufs * sizeof(struct sf_buf), M_TEMP, 713411d10a6SAlan Cox M_NOWAIT | M_ZERO); 714411d10a6SAlan Cox for (i = 0; i < nsfbufs; i++) { 715411d10a6SAlan Cox sf_bufs[i].kva = sf_base + i * PAGE_SIZE; 716a5819cb5SAlan Cox TAILQ_INSERT_TAIL(&sf_buf_freelist, &sf_bufs[i], free_entry); 717411d10a6SAlan Cox } 718411d10a6SAlan Cox sf_buf_alloc_want = 0; 7190543fa53SAlan Cox mtx_init(&sf_buf_lock, "sf_buf", NULL, MTX_DEF); 720411d10a6SAlan Cox } 721411d10a6SAlan Cox 722411d10a6SAlan Cox /* 7238a5ac5d5SKonstantin Belousov * Invalidate the cache lines that may belong to the page, if 7248a5ac5d5SKonstantin Belousov * (possibly old) mapping of the page by sf buffer exists. Returns 7258a5ac5d5SKonstantin Belousov * TRUE when mapping was found and cache invalidated. 7268a5ac5d5SKonstantin Belousov */ 7278a5ac5d5SKonstantin Belousov boolean_t 7288a5ac5d5SKonstantin Belousov sf_buf_invalidate_cache(vm_page_t m) 7298a5ac5d5SKonstantin Belousov { 7308a5ac5d5SKonstantin Belousov struct sf_head *hash_list; 7318a5ac5d5SKonstantin Belousov struct sf_buf *sf; 7328a5ac5d5SKonstantin Belousov boolean_t ret; 7338a5ac5d5SKonstantin Belousov 7348a5ac5d5SKonstantin Belousov hash_list = &sf_buf_active[SF_BUF_HASH(m)]; 7358a5ac5d5SKonstantin Belousov ret = FALSE; 7368a5ac5d5SKonstantin Belousov mtx_lock(&sf_buf_lock); 7378a5ac5d5SKonstantin Belousov LIST_FOREACH(sf, hash_list, list_entry) { 7388a5ac5d5SKonstantin Belousov if (sf->m == m) { 7398a5ac5d5SKonstantin Belousov /* 7408a5ac5d5SKonstantin Belousov * Use pmap_qenter to update the pte for 7418a5ac5d5SKonstantin Belousov * existing mapping, in particular, the PAT 7428a5ac5d5SKonstantin Belousov * settings are recalculated. 7438a5ac5d5SKonstantin Belousov */ 7448a5ac5d5SKonstantin Belousov pmap_qenter(sf->kva, &m, 1); 7458a5ac5d5SKonstantin Belousov pmap_invalidate_cache_range(sf->kva, sf->kva + 7468a5ac5d5SKonstantin Belousov PAGE_SIZE); 7478a5ac5d5SKonstantin Belousov ret = TRUE; 7488a5ac5d5SKonstantin Belousov break; 7498a5ac5d5SKonstantin Belousov } 7508a5ac5d5SKonstantin Belousov } 7518a5ac5d5SKonstantin Belousov mtx_unlock(&sf_buf_lock); 7528a5ac5d5SKonstantin Belousov return (ret); 7538a5ac5d5SKonstantin Belousov } 7548a5ac5d5SKonstantin Belousov 7558a5ac5d5SKonstantin Belousov /* 756b1e5dcf7SRobert Watson * Get an sf_buf from the freelist. May block if none are available. 757411d10a6SAlan Cox */ 758411d10a6SAlan Cox struct sf_buf * 759d3cb0d99SAlan Cox sf_buf_alloc(struct vm_page *m, int flags) 760411d10a6SAlan Cox { 76120351fafSAlan Cox pt_entry_t opte, *ptep; 7620543fa53SAlan Cox struct sf_head *hash_list; 763411d10a6SAlan Cox struct sf_buf *sf; 7645c0db7c7SAlan Cox #ifdef SMP 7655c0db7c7SAlan Cox cpumask_t cpumask, other_cpus; 7665c0db7c7SAlan Cox #endif 767411d10a6SAlan Cox int error; 768411d10a6SAlan Cox 7695c0db7c7SAlan Cox KASSERT(curthread->td_pinned > 0 || (flags & SFB_CPUPRIVATE) == 0, 7705c0db7c7SAlan Cox ("sf_buf_alloc(SFB_CPUPRIVATE): curthread not pinned")); 7710543fa53SAlan Cox hash_list = &sf_buf_active[SF_BUF_HASH(m)]; 7720543fa53SAlan Cox mtx_lock(&sf_buf_lock); 7730543fa53SAlan Cox LIST_FOREACH(sf, hash_list, list_entry) { 7740543fa53SAlan Cox if (sf->m == m) { 7750543fa53SAlan Cox sf->ref_count++; 7765eda9873SMike Silbersack if (sf->ref_count == 1) { 7779a63fc0dSAlan Cox TAILQ_REMOVE(&sf_buf_freelist, sf, free_entry); 7785eda9873SMike Silbersack nsfbufsused++; 7795caf2b00SMike Silbersack nsfbufspeak = imax(nsfbufspeak, nsfbufsused); 7805eda9873SMike Silbersack } 7815c0db7c7SAlan Cox #ifdef SMP 782f6f67ea9SStephan Uphoff goto shootdown; 783f6f67ea9SStephan Uphoff #else 7840543fa53SAlan Cox goto done; 785f6f67ea9SStephan Uphoff #endif 7860543fa53SAlan Cox } 7870543fa53SAlan Cox } 788a5819cb5SAlan Cox while ((sf = TAILQ_FIRST(&sf_buf_freelist)) == NULL) { 789d3cb0d99SAlan Cox if (flags & SFB_NOWAIT) 790d3cb0d99SAlan Cox goto done; 791411d10a6SAlan Cox sf_buf_alloc_want++; 792ddeb5b24SMike Silbersack mbstat.sf_allocwait++; 793d3cb0d99SAlan Cox error = msleep(&sf_buf_freelist, &sf_buf_lock, 794d3cb0d99SAlan Cox (flags & SFB_CATCH) ? PCATCH | PVM : PVM, "sfbufa", 0); 795411d10a6SAlan Cox sf_buf_alloc_want--; 796411d10a6SAlan Cox 797411d10a6SAlan Cox /* 798411d10a6SAlan Cox * If we got a signal, don't risk going back to sleep. 799411d10a6SAlan Cox */ 800411d10a6SAlan Cox if (error) 8010543fa53SAlan Cox goto done; 802411d10a6SAlan Cox } 803a5819cb5SAlan Cox TAILQ_REMOVE(&sf_buf_freelist, sf, free_entry); 804a5819cb5SAlan Cox if (sf->m != NULL) 8050543fa53SAlan Cox LIST_REMOVE(sf, list_entry); 8060543fa53SAlan Cox LIST_INSERT_HEAD(hash_list, sf, list_entry); 8070543fa53SAlan Cox sf->ref_count = 1; 808411d10a6SAlan Cox sf->m = m; 8095eda9873SMike Silbersack nsfbufsused++; 8105caf2b00SMike Silbersack nsfbufspeak = imax(nsfbufspeak, nsfbufsused); 81120351fafSAlan Cox 81220351fafSAlan Cox /* 81320351fafSAlan Cox * Update the sf_buf's virtual-to-physical mapping, flushing the 8144c0e268aSStephan Uphoff * virtual address from the TLB. Since the reference count for 8154c0e268aSStephan Uphoff * the sf_buf's old mapping was zero, that mapping is not 8164c0e268aSStephan Uphoff * currently in use. Consequently, there is no need to exchange 8174c0e268aSStephan Uphoff * the old and new PTEs atomically, even under PAE. 81820351fafSAlan Cox */ 81920351fafSAlan Cox ptep = vtopte(sf->kva); 82020351fafSAlan Cox opte = *ptep; 82193ee134aSKip Macy #ifdef XEN 82293ee134aSKip Macy PT_SET_MA(sf->kva, xpmap_ptom(VM_PAGE_TO_PHYS(m)) | pgeflag 8238a5ac5d5SKonstantin Belousov | PG_RW | PG_V | pmap_cache_bits(m->md.pat_mode, 0)); 82493ee134aSKip Macy #else 8258a5ac5d5SKonstantin Belousov *ptep = VM_PAGE_TO_PHYS(m) | pgeflag | PG_RW | PG_V | 8268a5ac5d5SKonstantin Belousov pmap_cache_bits(m->md.pat_mode, 0); 82793ee134aSKip Macy #endif 828c71c8706SAlan Cox 829c71c8706SAlan Cox /* 830c71c8706SAlan Cox * Avoid unnecessary TLB invalidations: If the sf_buf's old 831c71c8706SAlan Cox * virtual-to-physical mapping was not used, then any processor 832c71c8706SAlan Cox * that has invalidated the sf_buf's virtual address from its TLB 833c71c8706SAlan Cox * since the last used mapping need not invalidate again. 834c71c8706SAlan Cox */ 8355c0db7c7SAlan Cox #ifdef SMP 836f6f67ea9SStephan Uphoff if ((opte & (PG_V | PG_A)) == (PG_V | PG_A)) 837f6f67ea9SStephan Uphoff sf->cpumask = 0; 838f6f67ea9SStephan Uphoff shootdown: 839f6f67ea9SStephan Uphoff sched_pin(); 840f6f67ea9SStephan Uphoff cpumask = PCPU_GET(cpumask); 841f6f67ea9SStephan Uphoff if ((sf->cpumask & cpumask) == 0) { 842f6f67ea9SStephan Uphoff sf->cpumask |= cpumask; 8435c0db7c7SAlan Cox invlpg(sf->kva); 8444c0e268aSStephan Uphoff } 845f6f67ea9SStephan Uphoff if ((flags & SFB_CPUPRIVATE) == 0) { 846f6f67ea9SStephan Uphoff other_cpus = PCPU_GET(other_cpus) & ~sf->cpumask; 847f6f67ea9SStephan Uphoff if (other_cpus != 0) { 848f6f67ea9SStephan Uphoff sf->cpumask |= other_cpus; 849f6f67ea9SStephan Uphoff smp_masked_invlpg(other_cpus, sf->kva); 850f6f67ea9SStephan Uphoff } 851f6f67ea9SStephan Uphoff } 852f6f67ea9SStephan Uphoff sched_unpin(); 853f6f67ea9SStephan Uphoff #else 854c71c8706SAlan Cox if ((opte & (PG_V | PG_A)) == (PG_V | PG_A)) 85520351fafSAlan Cox pmap_invalidate_page(kernel_pmap, sf->kva); 856f6f67ea9SStephan Uphoff #endif 8570543fa53SAlan Cox done: 8580543fa53SAlan Cox mtx_unlock(&sf_buf_lock); 859411d10a6SAlan Cox return (sf); 860411d10a6SAlan Cox } 861411d10a6SAlan Cox 862411d10a6SAlan Cox /* 86390ecfebdSAlan Cox * Remove a reference from the given sf_buf, adding it to the free 86490ecfebdSAlan Cox * list when its reference count reaches zero. A freed sf_buf still, 86590ecfebdSAlan Cox * however, retains its virtual-to-physical mapping until it is 86690ecfebdSAlan Cox * recycled or reactivated by sf_buf_alloc(9). 867411d10a6SAlan Cox */ 868411d10a6SAlan Cox void 86990ecfebdSAlan Cox sf_buf_free(struct sf_buf *sf) 870411d10a6SAlan Cox { 871411d10a6SAlan Cox 8720543fa53SAlan Cox mtx_lock(&sf_buf_lock); 8730543fa53SAlan Cox sf->ref_count--; 8740543fa53SAlan Cox if (sf->ref_count == 0) { 875a5819cb5SAlan Cox TAILQ_INSERT_TAIL(&sf_buf_freelist, sf, free_entry); 87690ecfebdSAlan Cox nsfbufsused--; 87793ee134aSKip Macy #ifdef XEN 87893ee134aSKip Macy /* 87993ee134aSKip Macy * Xen doesn't like having dangling R/W mappings 88093ee134aSKip Macy */ 88193ee134aSKip Macy pmap_qremove(sf->kva, 1); 88293ee134aSKip Macy sf->m = NULL; 88393ee134aSKip Macy LIST_REMOVE(sf, list_entry); 88493ee134aSKip Macy #endif 8850543fa53SAlan Cox if (sf_buf_alloc_want > 0) 8860543fa53SAlan Cox wakeup_one(&sf_buf_freelist); 8870543fa53SAlan Cox } 8880543fa53SAlan Cox mtx_unlock(&sf_buf_lock); 889411d10a6SAlan Cox } 890411d10a6SAlan Cox 891411d10a6SAlan Cox /* 89257d7d7b3SJustin T. Gibbs * Software interrupt handler for queued VM system processing. 89357d7d7b3SJustin T. Gibbs */ 89457d7d7b3SJustin T. Gibbs void 8958088699fSJohn Baldwin swi_vm(void *dummy) 89657d7d7b3SJustin T. Gibbs { 89757d7d7b3SJustin T. Gibbs if (busdma_swi_pending != 0) 89857d7d7b3SJustin T. Gibbs busdma_swi(); 89957d7d7b3SJustin T. Gibbs } 90057d7d7b3SJustin T. Gibbs 90157d7d7b3SJustin T. Gibbs /* 902cae6f73aSJoerg Wunsch * Tell whether this address is in some physical memory region. 903e0b78e19SJoerg Wunsch * Currently used by the kernel coredump code in order to avoid 904e0b78e19SJoerg Wunsch * dumping the ``ISA memory hole'' which could cause indefinite hangs, 905e0b78e19SJoerg Wunsch * or other unpredictable behaviour. 906e0b78e19SJoerg Wunsch */ 907e0b78e19SJoerg Wunsch 908e0b78e19SJoerg Wunsch int 9092c38d78eSAlan Cox is_physical_memory(vm_paddr_t addr) 910e0b78e19SJoerg Wunsch { 911e0b78e19SJoerg Wunsch 91203927d3cSPeter Wemm #ifdef DEV_ISA 913e0b78e19SJoerg Wunsch /* The ISA ``memory hole''. */ 914e0b78e19SJoerg Wunsch if (addr >= 0xa0000 && addr < 0x100000) 915cae6f73aSJoerg Wunsch return 0; 916e0b78e19SJoerg Wunsch #endif 917e0b78e19SJoerg Wunsch 918e0b78e19SJoerg Wunsch /* 919e0b78e19SJoerg Wunsch * stuff other tests for known memory-mapped devices (PCI?) 920e0b78e19SJoerg Wunsch * here 921e0b78e19SJoerg Wunsch */ 922e0b78e19SJoerg Wunsch 923cae6f73aSJoerg Wunsch return 1; 924e0b78e19SJoerg Wunsch } 925