xref: /freebsd/sys/i386/i386/vm_machdep.c (revision 9c8b8baa38c9a8135d7602f127cb0c735010837d)
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$
419c8b8baaSPeter Wemm  *	$Id: vm_machdep.c,v 1.122 1999/06/01 18:19:50 jlemon Exp $
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/proc.h>
5326f9a767SRodney W. Grimes #include <sys/malloc.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>
595b81b6b3SRodney W. Grimes 
602320728fSRodney W. Grimes #include <machine/clock.h>
61a2a1c95cSPeter Wemm #include <machine/cpu.h>
621f8745a9SPeter Wemm #include <machine/md_var.h>
638fa40736SBruce Evans #ifdef SMP
648fa40736SBruce Evans #include <machine/smp.h>
658fa40736SBruce Evans #endif
66640c4313SJonathan Lemon #include <machine/pcb_ext.h>
67640c4313SJonathan Lemon #include <machine/vm86.h>
685b81b6b3SRodney W. Grimes 
6926f9a767SRodney W. Grimes #include <vm/vm.h>
70efeaf95aSDavid Greenman #include <vm/vm_param.h>
71efeaf95aSDavid Greenman #include <vm/vm_prot.h>
72996c772fSJohn Dyson #include <sys/lock.h>
7326f9a767SRodney W. Grimes #include <vm/vm_kern.h>
7424a1cce3SDavid Greenman #include <vm/vm_page.h>
75efeaf95aSDavid Greenman #include <vm/vm_map.h>
76efeaf95aSDavid Greenman #include <vm/vm_extern.h>
77efeaf95aSDavid Greenman 
78efeaf95aSDavid Greenman #include <sys/user.h>
795b81b6b3SRodney W. Grimes 
80e30f0011SSatoshi Asami #ifdef PC98
81e30f0011SSatoshi Asami #include <pc98/pc98/pc98.h>
82e30f0011SSatoshi Asami #else
832320728fSRodney W. Grimes #include <i386/isa/isa.h>
84e30f0011SSatoshi Asami #endif
852320728fSRodney W. Grimes 
862f1e7069STor Egge static void	cpu_reset_real __P((void));
872f1e7069STor Egge #ifdef SMP
882f1e7069STor Egge static void	cpu_reset_proxy __P((void));
892f1e7069STor Egge static u_int	cpu_reset_proxyid;
902f1e7069STor Egge static volatile u_int	cpu_reset_proxy_active;
912f1e7069STor Egge #endif
922f1e7069STor Egge 
93a4f7a4c9SDavid Greenman /*
94a4f7a4c9SDavid Greenman  * quick version of vm_fault
95a4f7a4c9SDavid Greenman  */
96dca51299SJohn Dyson void
97a4f7a4c9SDavid Greenman vm_fault_quick(v, prot)
986c146e28SBruce Evans 	caddr_t v;
99a4f7a4c9SDavid Greenman 	int prot;
100a4f7a4c9SDavid Greenman {
1011d1b971bSDavid Greenman 	if (prot & VM_PROT_WRITE)
1026c146e28SBruce Evans 		subyte(v, fubyte(v));
103a4f7a4c9SDavid Greenman 	else
1046c146e28SBruce Evans 		fubyte(v);
105a4f7a4c9SDavid Greenman }
106a4f7a4c9SDavid Greenman 
1071561d038SDavid Greenman /*
1085b81b6b3SRodney W. Grimes  * Finish a fork operation, with process p2 nearly set up.
109a2a1c95cSPeter Wemm  * Copy and update the pcb, set up the stack so that the child
110a2a1c95cSPeter Wemm  * ready to run and return to user mode.
1115b81b6b3SRodney W. Grimes  */
112a2a1c95cSPeter Wemm void
1135b81b6b3SRodney W. Grimes cpu_fork(p1, p2)
1145b81b6b3SRodney W. Grimes 	register struct proc *p1, *p2;
1155b81b6b3SRodney W. Grimes {
116f83a01b6SDavid Greenman 	struct pcb *pcb2 = &p2->p_addr->u_pcb;
1175b81b6b3SRodney W. Grimes 
1189f449d2aSBruce Evans #if NNPX > 0
1191f8745a9SPeter Wemm 	/* Ensure that p1's pcb is up to date. */
1201f8745a9SPeter Wemm 	if (npxproc == p1)
1211f8745a9SPeter Wemm 		npxsave(&p1->p_addr->u_pcb.pcb_savefpu);
1229f449d2aSBruce Evans #endif
1231f8745a9SPeter Wemm 
1241f8745a9SPeter Wemm 	/* Copy p1's pcb. */
1251f8745a9SPeter Wemm 	p2->p_addr->u_pcb = p1->p_addr->u_pcb;
126a2a1c95cSPeter Wemm 
127a2a1c95cSPeter Wemm 	/*
128a2a1c95cSPeter Wemm 	 * Create a new fresh stack for the new process.
1291f8745a9SPeter Wemm 	 * Copy the trap frame for the return to user mode as if from a
1301f8745a9SPeter Wemm 	 * syscall.  This copies the user mode register values.
131a2a1c95cSPeter Wemm 	 */
1321f8745a9SPeter Wemm 	p2->p_md.md_regs = (struct trapframe *)
133640c4313SJonathan Lemon 			   ((int)p2->p_addr + UPAGES * PAGE_SIZE - 16) - 1;
1341f8745a9SPeter Wemm 	*p2->p_md.md_regs = *p1->p_md.md_regs;
135a2a1c95cSPeter Wemm 
136a2a1c95cSPeter Wemm 	/*
137a2a1c95cSPeter Wemm 	 * Set registers for trampoline to user mode.  Leave space for the
138a2a1c95cSPeter Wemm 	 * return address on stack.  These are the kernel mode register values.
139a2a1c95cSPeter Wemm 	 */
140b1028ad1SLuoqi Chen 	pcb2->pcb_cr3 = vtophys(vmspace_pmap(p2->p_vmspace)->pm_pdir);
1411f8745a9SPeter Wemm 	pcb2->pcb_edi = p2->p_md.md_regs->tf_edi;
142a2a1c95cSPeter Wemm 	pcb2->pcb_esi = (int)fork_return;
1431f8745a9SPeter Wemm 	pcb2->pcb_ebp = p2->p_md.md_regs->tf_ebp;
144a2a1c95cSPeter Wemm 	pcb2->pcb_esp = (int)p2->p_md.md_regs - sizeof(void *);
1451f8745a9SPeter Wemm 	pcb2->pcb_ebx = (int)p2;
1461f8745a9SPeter Wemm 	pcb2->pcb_eip = (int)fork_trampoline;
1471f8745a9SPeter Wemm 	/*
1481f8745a9SPeter Wemm 	 * pcb2->pcb_ldt:	duplicated below, if necessary.
1491f8745a9SPeter Wemm 	 * pcb2->pcb_ldt_len:	cloned above.
1501f8745a9SPeter Wemm 	 * pcb2->pcb_savefpu:	cloned above.
1511f8745a9SPeter Wemm 	 * pcb2->pcb_flags:	cloned above (always 0 here?).
1521f8745a9SPeter Wemm 	 * pcb2->pcb_onfault:	cloned above (always NULL here?).
1531f8745a9SPeter Wemm 	 */
1545b81b6b3SRodney W. Grimes 
155a16edda3STor Egge #ifdef SMP
156a16edda3STor Egge 	pcb2->pcb_mpnest = 1;
157a16edda3STor Egge #endif
15848a09cf2SJohn Dyson 	/*
15948a09cf2SJohn Dyson 	 * XXX don't copy the i/o pages.  this should probably be fixed.
16048a09cf2SJohn Dyson 	 */
16148a09cf2SJohn Dyson 	pcb2->pcb_ext = 0;
16248a09cf2SJohn Dyson 
1638c39a127SStefan Eßer #ifdef USER_LDT
1648c39a127SStefan Eßer         /* Copy the LDT, if necessary. */
165a2a1c95cSPeter Wemm         if (pcb2->pcb_ldt != 0) {
1668c39a127SStefan Eßer                 union descriptor *new_ldt;
167a2a1c95cSPeter Wemm                 size_t len = pcb2->pcb_ldt_len * sizeof(union descriptor);
1688c39a127SStefan Eßer 
1698c39a127SStefan Eßer                 new_ldt = (union descriptor *)kmem_alloc(kernel_map, len);
170a2a1c95cSPeter Wemm                 bcopy(pcb2->pcb_ldt, new_ldt, len);
171a2a1c95cSPeter Wemm                 pcb2->pcb_ldt = (caddr_t)new_ldt;
1728c39a127SStefan Eßer         }
1738c39a127SStefan Eßer #endif
1748c39a127SStefan Eßer 
175a2a1c95cSPeter Wemm 	/*
176a2a1c95cSPeter Wemm 	 * Now, cpu_switch() can schedule the new process.
177a2a1c95cSPeter Wemm 	 * pcb_esp is loaded pointing to the cpu_switch() stack frame
178a2a1c95cSPeter Wemm 	 * containing the return address when exiting cpu_switch.
179a2a1c95cSPeter Wemm 	 * This will normally be to proc_trampoline(), which will have
180a2a1c95cSPeter Wemm 	 * %ebx loaded with the new proc's pointer.  proc_trampoline()
181a2a1c95cSPeter Wemm 	 * will set up a stack to call fork_return(p, frame); to complete
182a2a1c95cSPeter Wemm 	 * the return to user-mode.
183a2a1c95cSPeter Wemm 	 */
184a2a1c95cSPeter Wemm }
185a2a1c95cSPeter Wemm 
186a2a1c95cSPeter Wemm /*
187a2a1c95cSPeter Wemm  * Intercept the return address from a freshly forked process that has NOT
188a2a1c95cSPeter Wemm  * been scheduled yet.
189a2a1c95cSPeter Wemm  *
190a2a1c95cSPeter Wemm  * This is needed to make kernel threads stay in kernel mode.
191a2a1c95cSPeter Wemm  */
192a2a1c95cSPeter Wemm void
193a2a1c95cSPeter Wemm cpu_set_fork_handler(p, func, arg)
194a2a1c95cSPeter Wemm 	struct proc *p;
1959c8b8baaSPeter Wemm 	void (*func) __P((void *));
1969c8b8baaSPeter Wemm 	void *arg;
197a2a1c95cSPeter Wemm {
198a2a1c95cSPeter Wemm 	/*
199a2a1c95cSPeter Wemm 	 * Note that the trap frame follows the args, so the function
200a2a1c95cSPeter Wemm 	 * is really called like this:  func(arg, frame);
201a2a1c95cSPeter Wemm 	 */
202a2a1c95cSPeter Wemm 	p->p_addr->u_pcb.pcb_esi = (int) func;	/* function */
203a2a1c95cSPeter Wemm 	p->p_addr->u_pcb.pcb_ebx = (int) arg;	/* first arg */
2045b81b6b3SRodney W. Grimes }
2055b81b6b3SRodney W. Grimes 
2067c2b54e8SNate Williams void
2075b81b6b3SRodney W. Grimes cpu_exit(p)
2085b81b6b3SRodney W. Grimes 	register struct proc *p;
2095b81b6b3SRodney W. Grimes {
21048a09cf2SJohn Dyson 	struct pcb *pcb = &p->p_addr->u_pcb;
2115b81b6b3SRodney W. Grimes 
212960173b9SRodney W. Grimes #if NNPX > 0
2135b81b6b3SRodney W. Grimes 	npxexit(p);
214960173b9SRodney W. Grimes #endif	/* NNPX */
21548a09cf2SJohn Dyson 	if (pcb->pcb_ext != 0) {
21648a09cf2SJohn Dyson 	        /*
21748a09cf2SJohn Dyson 		 * XXX do we need to move the TSS off the allocated pages
21848a09cf2SJohn Dyson 		 * before freeing them?  (not done here)
21948a09cf2SJohn Dyson 		 */
22048a09cf2SJohn Dyson 		kmem_free(kernel_map, (vm_offset_t)pcb->pcb_ext,
22148a09cf2SJohn Dyson 		    ctob(IOPAGES + 1));
22248a09cf2SJohn Dyson 		pcb->pcb_ext = 0;
22348a09cf2SJohn Dyson 	}
2240dbf6d73SJordan K. Hubbard #ifdef USER_LDT
2250dbf6d73SJordan K. Hubbard 	if (pcb->pcb_ldt != 0) {
226287e61c3SMike Smith 		if (pcb == curpcb) {
227287e61c3SMike Smith 			lldt(_default_ldt);
228287e61c3SMike Smith 			currentldt = _default_ldt;
229287e61c3SMike Smith 		}
2300dbf6d73SJordan K. Hubbard 		kmem_free(kernel_map, (vm_offset_t)pcb->pcb_ldt,
2310dbf6d73SJordan K. Hubbard 			pcb->pcb_ldt_len * sizeof(union descriptor));
2320dbf6d73SJordan K. Hubbard 		pcb->pcb_ldt_len = (int)pcb->pcb_ldt = 0;
2330dbf6d73SJordan K. Hubbard 	}
2340dbf6d73SJordan K. Hubbard #endif
2351a051896SBruce Evans 	cnt.v_swtch++;
2361a051896SBruce Evans 	cpu_switch(p);
2377c2b54e8SNate Williams 	panic("cpu_exit");
2385b81b6b3SRodney W. Grimes }
2395b81b6b3SRodney W. Grimes 
240381fe1aaSGarrett Wollman void
241bd7e5f99SJohn Dyson cpu_wait(p)
242bd7e5f99SJohn Dyson 	struct proc *p;
243bd7e5f99SJohn Dyson {
2445b81b6b3SRodney W. Grimes 	/* drop per-process resources */
245675878e7SJohn Dyson 	pmap_dispose_proc(p);
2462d8acc0fSJohn Dyson 
2472d8acc0fSJohn Dyson 	/* and clean-out the vmspace */
2487f8cb368SDavid Greenman 	vmspace_free(p->p_vmspace);
2495b81b6b3SRodney W. Grimes }
2505b81b6b3SRodney W. Grimes 
2515b81b6b3SRodney W. Grimes /*
25226f9a767SRodney W. Grimes  * Dump the machine specific header information at the start of a core dump.
25326f9a767SRodney W. Grimes  */
25426f9a767SRodney W. Grimes int
25526f9a767SRodney W. Grimes cpu_coredump(p, vp, cred)
25626f9a767SRodney W. Grimes 	struct proc *p;
25726f9a767SRodney W. Grimes 	struct vnode *vp;
25826f9a767SRodney W. Grimes 	struct ucred *cred;
25926f9a767SRodney W. Grimes {
260afc6ea23STor Egge 	int error;
261afc6ea23STor Egge 	caddr_t tempuser;
26226f9a767SRodney W. Grimes 
263afc6ea23STor Egge 	tempuser = malloc(ctob(UPAGES), M_TEMP, M_WAITOK);
264afc6ea23STor Egge 	if (!tempuser)
265afc6ea23STor Egge 		return EINVAL;
266afc6ea23STor Egge 
267afc6ea23STor Egge 	bzero(tempuser, ctob(UPAGES));
268afc6ea23STor Egge 	bcopy(p->p_addr, tempuser, sizeof(struct user));
269afc6ea23STor Egge 	bcopy(p->p_md.md_regs,
270afc6ea23STor Egge 	      tempuser + ((caddr_t) p->p_md.md_regs - (caddr_t) p->p_addr),
271afc6ea23STor Egge 	      sizeof(struct trapframe));
272afc6ea23STor Egge 
273afc6ea23STor Egge 	error = vn_rdwr(UIO_WRITE, vp, (caddr_t) tempuser,
274afc6ea23STor Egge 			ctob(UPAGES),
275afc6ea23STor Egge 			(off_t)0, UIO_SYSSPACE, IO_NODELOCKED|IO_UNIT,
276afc6ea23STor Egge 			cred, (int *)NULL, p);
277afc6ea23STor Egge 
278afc6ea23STor Egge 	free(tempuser, M_TEMP);
279afc6ea23STor Egge 
280afc6ea23STor Egge 	return error;
28126f9a767SRodney W. Grimes }
28226f9a767SRodney W. Grimes 
28387b6de2bSPoul-Henning Kamp #ifdef notyet
28487b91157SPoul-Henning Kamp static void
2855b81b6b3SRodney W. Grimes setredzone(pte, vaddr)
2865b81b6b3SRodney W. Grimes 	u_short *pte;
2875b81b6b3SRodney W. Grimes 	caddr_t vaddr;
2885b81b6b3SRodney W. Grimes {
2895b81b6b3SRodney W. Grimes /* eventually do this by setting up an expand-down stack segment
2905b81b6b3SRodney W. Grimes    for ss0: selector, allowing stack access down to top of u.
2915b81b6b3SRodney W. Grimes    this means though that protection violations need to be handled
2925b81b6b3SRodney W. Grimes    thru a double fault exception that must do an integral task
2935b81b6b3SRodney W. Grimes    switch to a known good context, within which a dump can be
2945b81b6b3SRodney W. Grimes    taken. a sensible scheme might be to save the initial context
2955b81b6b3SRodney W. Grimes    used by sched (that has physical memory mapped 1:1 at bottom)
2965b81b6b3SRodney W. Grimes    and take the dump while still in mapped mode */
2975b81b6b3SRodney W. Grimes }
29887b6de2bSPoul-Henning Kamp #endif
29926f9a767SRodney W. Grimes 
30026f9a767SRodney W. Grimes /*
3015b81b6b3SRodney W. Grimes  * Convert kernel VA to physical address
3025b81b6b3SRodney W. Grimes  */
303aaf08d94SGarrett Wollman u_long
3047f8cb368SDavid Greenman kvtop(void *addr)
3055b81b6b3SRodney W. Grimes {
3065b81b6b3SRodney W. Grimes 	vm_offset_t va;
3075b81b6b3SRodney W. Grimes 
308ed7fcbd0SDavid Greenman 	va = pmap_kextract((vm_offset_t)addr);
3095b81b6b3SRodney W. Grimes 	if (va == 0)
3105b81b6b3SRodney W. Grimes 		panic("kvtop: zero page frame");
3117f8cb368SDavid Greenman 	return((int)va);
3125b81b6b3SRodney W. Grimes }
3135b81b6b3SRodney W. Grimes 
3145b81b6b3SRodney W. Grimes /*
315ac322158SDavid Greenman  * Map an IO request into kernel virtual address space.
3165b81b6b3SRodney W. Grimes  *
317ac322158SDavid Greenman  * All requests are (re)mapped into kernel VA space.
318ac322158SDavid Greenman  * Notice that we use b_bufsize for the size of the buffer
319ac322158SDavid Greenman  * to be mapped.  b_bcount might be modified by the driver.
3205b81b6b3SRodney W. Grimes  */
321381fe1aaSGarrett Wollman void
3225b81b6b3SRodney W. Grimes vmapbuf(bp)
3235b81b6b3SRodney W. Grimes 	register struct buf *bp;
3245b81b6b3SRodney W. Grimes {
3250157d6d9SJohn Dyson 	register caddr_t addr, v, kva;
32607658526SPoul-Henning Kamp 	vm_offset_t pa;
3275b81b6b3SRodney W. Grimes 
32826f9a767SRodney W. Grimes 	if ((bp->b_flags & B_PHYS) == 0)
3295b81b6b3SRodney W. Grimes 		panic("vmapbuf");
33026f9a767SRodney W. Grimes 
3316cde7a16SDavid Greenman 	for (v = bp->b_saveaddr, addr = (caddr_t)trunc_page((vm_offset_t)bp->b_data);
33226f9a767SRodney W. Grimes 	    addr < bp->b_data + bp->b_bufsize;
3330157d6d9SJohn Dyson 	    addr += PAGE_SIZE, v += PAGE_SIZE) {
33426f9a767SRodney W. Grimes 		/*
335ac269d78SDavid Greenman 		 * Do the vm_fault if needed; do the copy-on-write thing
336ac269d78SDavid Greenman 		 * when reading stuff off device into memory.
33726f9a767SRodney W. Grimes 		 */
33826f9a767SRodney W. Grimes 		vm_fault_quick(addr,
33926f9a767SRodney W. Grimes 			(bp->b_flags&B_READ)?(VM_PROT_READ|VM_PROT_WRITE):VM_PROT_READ);
3400157d6d9SJohn Dyson 		pa = trunc_page(pmap_kextract((vm_offset_t) addr));
341641a27e6SJohn Dyson 		if (pa == 0)
342641a27e6SJohn Dyson 			panic("vmapbuf: page not present");
34326f9a767SRodney W. Grimes 		vm_page_hold(PHYS_TO_VM_PAGE(pa));
3440157d6d9SJohn Dyson 		pmap_kenter((vm_offset_t) v, pa);
34526f9a767SRodney W. Grimes 	}
34626f9a767SRodney W. Grimes 
3470157d6d9SJohn Dyson 	kva = bp->b_saveaddr;
3480157d6d9SJohn Dyson 	bp->b_saveaddr = bp->b_data;
3490157d6d9SJohn Dyson 	bp->b_data = kva + (((vm_offset_t) bp->b_data) & PAGE_MASK);
3505b81b6b3SRodney W. Grimes }
3515b81b6b3SRodney W. Grimes 
3525b81b6b3SRodney W. Grimes /*
3535b81b6b3SRodney W. Grimes  * Free the io map PTEs associated with this IO operation.
3545b81b6b3SRodney W. Grimes  * We also invalidate the TLB entries and restore the original b_addr.
3555b81b6b3SRodney W. Grimes  */
356381fe1aaSGarrett Wollman void
3575b81b6b3SRodney W. Grimes vunmapbuf(bp)
3585b81b6b3SRodney W. Grimes 	register struct buf *bp;
3595b81b6b3SRodney W. Grimes {
360c564966bSDavid Greenman 	register caddr_t addr;
36107658526SPoul-Henning Kamp 	vm_offset_t pa;
3625b81b6b3SRodney W. Grimes 
3635b81b6b3SRodney W. Grimes 	if ((bp->b_flags & B_PHYS) == 0)
3645b81b6b3SRodney W. Grimes 		panic("vunmapbuf");
365c564966bSDavid Greenman 
3666cde7a16SDavid Greenman 	for (addr = (caddr_t)trunc_page((vm_offset_t)bp->b_data);
36712936855SDavid Greenman 	    addr < bp->b_data + bp->b_bufsize;
368f8845af0SPoul-Henning Kamp 	    addr += PAGE_SIZE) {
3690157d6d9SJohn Dyson 		pa = trunc_page(pmap_kextract((vm_offset_t) addr));
3700157d6d9SJohn Dyson 		pmap_kremove((vm_offset_t) addr);
37126f9a767SRodney W. Grimes 		vm_page_unhold(PHYS_TO_VM_PAGE(pa));
37226f9a767SRodney W. Grimes 	}
3730157d6d9SJohn Dyson 
3740157d6d9SJohn Dyson 	bp->b_data = bp->b_saveaddr;
3755b81b6b3SRodney W. Grimes }
3765b81b6b3SRodney W. Grimes 
3775b81b6b3SRodney W. Grimes /*
3785b81b6b3SRodney W. Grimes  * Force reset the processor by invalidating the entire address space!
3795b81b6b3SRodney W. Grimes  */
3802f1e7069STor Egge 
3812f1e7069STor Egge #ifdef SMP
3822f1e7069STor Egge static void
3832f1e7069STor Egge cpu_reset_proxy()
3842f1e7069STor Egge {
3852f1e7069STor Egge 	u_int saved_mp_lock;
3862f1e7069STor Egge 
3872f1e7069STor Egge 	cpu_reset_proxy_active = 1;
3882f1e7069STor Egge 	while (cpu_reset_proxy_active == 1)
3892f1e7069STor Egge 		;	 /* Wait for other cpu to disable interupts */
3902f1e7069STor Egge 	saved_mp_lock = mp_lock;
3912f1e7069STor Egge 	mp_lock = 1;
3922f1e7069STor Egge 	printf("cpu_reset_proxy: Grabbed mp lock for BSP\n");
3932f1e7069STor Egge 	cpu_reset_proxy_active = 3;
3942f1e7069STor Egge 	while (cpu_reset_proxy_active == 3)
3952f1e7069STor Egge 		;	/* Wait for other cpu to enable interrupts */
3962f1e7069STor Egge 	stop_cpus((1<<cpu_reset_proxyid));
3972f1e7069STor Egge 	printf("cpu_reset_proxy: Stopped CPU %d\n", cpu_reset_proxyid);
3982f1e7069STor Egge 	DELAY(1000000);
3992f1e7069STor Egge 	cpu_reset_real();
4002f1e7069STor Egge }
4012f1e7069STor Egge #endif
4022f1e7069STor Egge 
4037f8cb368SDavid Greenman void
404d447dbeeSBruce Evans cpu_reset()
405d447dbeeSBruce Evans {
4062f1e7069STor Egge #ifdef SMP
4072f1e7069STor Egge 	if (smp_active == 0) {
4082f1e7069STor Egge 		cpu_reset_real();
4092f1e7069STor Egge 		/* NOTREACHED */
4102f1e7069STor Egge 	} else {
4112f1e7069STor Egge 
4122f1e7069STor Egge 		u_int map;
4132f1e7069STor Egge 		int cnt;
4142f1e7069STor Egge 		printf("cpu_reset called on cpu#%d\n",cpuid);
4152f1e7069STor Egge 
4162f1e7069STor Egge 		map = other_cpus & ~ stopped_cpus;
4172f1e7069STor Egge 
4182f1e7069STor Egge 		if (map != 0) {
4192f1e7069STor Egge 			printf("cpu_reset: Stopping other CPUs\n");
4202f1e7069STor Egge 			stop_cpus(map);		/* Stop all other CPUs */
4212f1e7069STor Egge 		}
4222f1e7069STor Egge 
4232f1e7069STor Egge 		if (cpuid == 0) {
4242f1e7069STor Egge 			DELAY(1000000);
4252f1e7069STor Egge 			cpu_reset_real();
4262f1e7069STor Egge 			/* NOTREACHED */
4272f1e7069STor Egge 		} else {
4282f1e7069STor Egge 			/* We are not BSP (CPU #0) */
4292f1e7069STor Egge 
4302f1e7069STor Egge 			cpu_reset_proxyid = cpuid;
4312f1e7069STor Egge 			cpustop_restartfunc = cpu_reset_proxy;
4322f1e7069STor Egge 			printf("cpu_reset: Restarting BSP\n");
4332f1e7069STor Egge 			started_cpus = (1<<0);		/* Restart CPU #0 */
4342f1e7069STor Egge 
4352f1e7069STor Egge 			cnt = 0;
4362f1e7069STor Egge 			while (cpu_reset_proxy_active == 0 && cnt < 10000000)
4372f1e7069STor Egge 				cnt++;	/* Wait for BSP to announce restart */
4382f1e7069STor Egge 			if (cpu_reset_proxy_active == 0)
4392f1e7069STor Egge 				printf("cpu_reset: Failed to restart BSP\n");
4402f1e7069STor Egge 			__asm __volatile("cli" : : : "memory");
4412f1e7069STor Egge 			cpu_reset_proxy_active = 2;
4422f1e7069STor Egge 			cnt = 0;
4432f1e7069STor Egge 			while (cpu_reset_proxy_active == 2 && cnt < 10000000)
4442f1e7069STor Egge 				cnt++;	/* Do nothing */
4452f1e7069STor Egge 			if (cpu_reset_proxy_active == 2) {
4462f1e7069STor Egge 				printf("cpu_reset: BSP did not grab mp lock\n");
4472f1e7069STor Egge 				cpu_reset_real();	/* XXX: Bogus ? */
4482f1e7069STor Egge 			}
4492f1e7069STor Egge 			cpu_reset_proxy_active = 4;
4502f1e7069STor Egge 			__asm __volatile("sti" : : : "memory");
4512f1e7069STor Egge 			while (1);
4522f1e7069STor Egge 			/* NOTREACHED */
4532f1e7069STor Egge 		}
4542f1e7069STor Egge 	}
4552f1e7069STor Egge #else
4562f1e7069STor Egge 	cpu_reset_real();
4572f1e7069STor Egge #endif
4582f1e7069STor Egge }
4592f1e7069STor Egge 
4602f1e7069STor Egge static void
4612f1e7069STor Egge cpu_reset_real()
4622f1e7069STor Egge {
463d447dbeeSBruce Evans 
46403245f09SKATO Takenori #ifdef PC98
46503245f09SKATO Takenori 	/*
46603245f09SKATO Takenori 	 * Attempt to do a CPU reset via CPU reset port.
46703245f09SKATO Takenori 	 */
468d447dbeeSBruce Evans 	disable_intr();
4698e929d65SKATO Takenori 	if ((inb(0x35) & 0xa0) != 0xa0) {
47003245f09SKATO Takenori 		outb(0x37, 0x0f);		/* SHUT0 = 0. */
47103245f09SKATO Takenori 		outb(0x37, 0x0b);		/* SHUT1 = 0. */
4728e929d65SKATO Takenori 	}
47303245f09SKATO Takenori 	outb(0xf0, 0x00);		/* Reset. */
47403245f09SKATO Takenori #else
4752320728fSRodney W. Grimes 	/*
4762320728fSRodney W. Grimes 	 * Attempt to do a CPU reset via the keyboard controller,
4772320728fSRodney W. Grimes 	 * do not turn of the GateA20, as any machine that fails
4782320728fSRodney W. Grimes 	 * to do the reset here would then end up in no man's land.
4792320728fSRodney W. Grimes 	 */
4805eb46edfSDavid Greenman 
48103245f09SKATO Takenori #if !defined(BROKEN_KEYBOARD_RESET)
4822320728fSRodney W. Grimes 	outb(IO_KBD + 4, 0xFE);
4832320728fSRodney W. Grimes 	DELAY(500000);	/* wait 0.5 sec to see if that did it */
4842320728fSRodney W. Grimes 	printf("Keyboard reset did not work, attempting CPU shutdown\n");
4852320728fSRodney W. Grimes 	DELAY(1000000);	/* wait 1 sec for printf to complete */
4865eb46edfSDavid Greenman #endif
48703245f09SKATO Takenori #endif /* PC98 */
4885b81b6b3SRodney W. Grimes 	/* force a shutdown by unmapping entire address space ! */
489f8845af0SPoul-Henning Kamp 	bzero((caddr_t) PTD, PAGE_SIZE);
4905b81b6b3SRodney W. Grimes 
4915b81b6b3SRodney W. Grimes 	/* "good night, sweet prince .... <THUNK!>" */
49227e9b35eSJohn Dyson 	invltlb();
4935b81b6b3SRodney W. Grimes 	/* NOTREACHED */
4947f8cb368SDavid Greenman 	while(1);
4955b81b6b3SRodney W. Grimes }
496b9d60b3fSDavid Greenman 
4972267af78SJulian Elischer int
4982267af78SJulian Elischer grow_stack(p, sp)
4992267af78SJulian Elischer 	struct proc *p;
5002267af78SJulian Elischer 	u_int sp;
5012267af78SJulian Elischer {
5022267af78SJulian Elischer 	int rv;
5032267af78SJulian Elischer 
5042267af78SJulian Elischer 	rv = vm_map_growstack (p, sp);
5052267af78SJulian Elischer 	if (rv != KERN_SUCCESS)
5062267af78SJulian Elischer 		return (0);
5072267af78SJulian Elischer 
5082267af78SJulian Elischer 	return (1);
5092267af78SJulian Elischer }
5102267af78SJulian Elischer 
511ce02431fSDoug Rabson SYSCTL_DECL(_vm_stats_misc);
512a29b63cbSJohn Dyson 
5137762bc7bSBruce Evans static int cnt_prezero;
51466095752SJohn Dyson 
515b0359e2cSPeter Wemm SYSCTL_INT(_vm_stats_misc, OID_AUTO,
516b0359e2cSPeter Wemm 	cnt_prezero, CTLFLAG_RD, &cnt_prezero, 0, "");
51766095752SJohn Dyson 
518a29b63cbSJohn Dyson /*
51983eab616SBruce Evans  * Implement the pre-zeroed page mechanism.
52083eab616SBruce Evans  * This routine is called from the idle loop.
521a29b63cbSJohn Dyson  */
522dd2f9956SMatthew Dillon 
523dd2f9956SMatthew Dillon #define ZIDLE_LO(v)	((v) * 2 / 3)
524dd2f9956SMatthew Dillon #define ZIDLE_HI(v)	((v) * 4 / 5)
525dd2f9956SMatthew Dillon 
526a29b63cbSJohn Dyson int
52783eab616SBruce Evans vm_page_zero_idle()
52883eab616SBruce Evans {
52983eab616SBruce Evans 	static int free_rover;
530faa273d5SMatthew Dillon 	static int zero_state;
531a29b63cbSJohn Dyson 	vm_page_t m;
53283eab616SBruce Evans 	int s;
53383eab616SBruce Evans 
53483eab616SBruce Evans 	/*
535faa273d5SMatthew Dillon 	 * Attempt to maintain approximately 1/2 of our free pages in a
536faa273d5SMatthew Dillon 	 * PG_ZERO'd state.   Add some hysteresis to (attempt to) avoid
537faa273d5SMatthew Dillon 	 * generally zeroing a page when the system is near steady-state.
538faa273d5SMatthew Dillon 	 * Otherwise we might get 'flutter' during disk I/O / IPC or
539faa273d5SMatthew Dillon 	 * fast sleeps.  We also do not want to be continuously zeroing
540faa273d5SMatthew Dillon 	 * pages because doing so may flush our L1 and L2 caches too much.
5418e56e561SJohn Dyson 	 */
542faa273d5SMatthew Dillon 
543dd2f9956SMatthew Dillon 	if (zero_state && vm_page_zero_count >= ZIDLE_LO(cnt.v_free_count))
54483eab616SBruce Evans 		return(0);
545dd2f9956SMatthew Dillon 	if (vm_page_zero_count >= ZIDLE_HI(cnt.v_free_count))
546faa273d5SMatthew Dillon 		return(0);
547faa273d5SMatthew Dillon 
5489a3b3e8bSPeter Wemm #ifdef SMP
54966095752SJohn Dyson 	if (try_mplock()) {
5509a3b3e8bSPeter Wemm #endif
55183eab616SBruce Evans 		s = splvm();
552d20d60beSTor Egge 		__asm __volatile("sti" : : : "memory");
553faa273d5SMatthew Dillon 		zero_state = 0;
554faa273d5SMatthew Dillon 		m = vm_page_list_find(PQ_FREE, free_rover, FALSE);
555faa273d5SMatthew Dillon 		if (m != NULL && (m->flags & PG_ZERO) == 0) {
5565070c7f8SJohn Dyson 			--(*vm_page_queues[m->queue].lcnt);
5575070c7f8SJohn Dyson 			TAILQ_REMOVE(vm_page_queues[m->queue].pl, m, pageq);
55895f67de2STor Egge 			m->queue = PQ_NONE;
55983eab616SBruce Evans 			splx(s);
56066095752SJohn Dyson #if 0
5619a3b3e8bSPeter Wemm 			rel_mplock();
5629a3b3e8bSPeter Wemm #endif
563a29b63cbSJohn Dyson 			pmap_zero_page(VM_PAGE_TO_PHYS(m));
5647762bc7bSBruce Evans #if 0
5659a3b3e8bSPeter Wemm 			get_mplock();
5669a3b3e8bSPeter Wemm #endif
56783eab616SBruce Evans 			(void)splvm();
568faa273d5SMatthew Dillon 			vm_page_flag_set(m, PG_ZERO);
569faa273d5SMatthew Dillon 			m->queue = PQ_FREE + m->pc;
5705070c7f8SJohn Dyson 			++(*vm_page_queues[m->queue].lcnt);
571faa273d5SMatthew Dillon 			TAILQ_INSERT_TAIL(vm_page_queues[m->queue].pl, m,
5727762bc7bSBruce Evans 			    pageq);
573a316d390SJohn Dyson 			++vm_page_zero_count;
57466095752SJohn Dyson 			++cnt_prezero;
575dd2f9956SMatthew Dillon 			if (vm_page_zero_count >= ZIDLE_HI(cnt.v_free_count))
576faa273d5SMatthew Dillon 				zero_state = 1;
577a29b63cbSJohn Dyson 		}
578faa273d5SMatthew Dillon 		free_rover = (free_rover + PQ_PRIME3) & PQ_L2_MASK;
57983eab616SBruce Evans 		splx(s);
580d20d60beSTor Egge 		__asm __volatile("cli" : : : "memory");
5819a3b3e8bSPeter Wemm #ifdef SMP
5829a3b3e8bSPeter Wemm 		rel_mplock();
5837762bc7bSBruce Evans #endif
58483eab616SBruce Evans 		return (1);
5857762bc7bSBruce Evans #ifdef SMP
586a29b63cbSJohn Dyson 	}
58766095752SJohn Dyson #endif
58866095752SJohn Dyson 	return (0);
58966095752SJohn Dyson }
590e0b78e19SJoerg Wunsch 
591e0b78e19SJoerg Wunsch /*
59257d7d7b3SJustin T. Gibbs  * Software interrupt handler for queued VM system processing.
59357d7d7b3SJustin T. Gibbs  */
59457d7d7b3SJustin T. Gibbs void
59557d7d7b3SJustin T. Gibbs swi_vm()
59657d7d7b3SJustin T. Gibbs {
59757d7d7b3SJustin T. Gibbs 	if (busdma_swi_pending != 0)
59857d7d7b3SJustin T. Gibbs 		busdma_swi();
59957d7d7b3SJustin T. Gibbs }
60057d7d7b3SJustin T. Gibbs 
60157d7d7b3SJustin T. Gibbs /*
602cae6f73aSJoerg Wunsch  * Tell whether this address is in some physical memory region.
603e0b78e19SJoerg Wunsch  * Currently used by the kernel coredump code in order to avoid
604e0b78e19SJoerg Wunsch  * dumping the ``ISA memory hole'' which could cause indefinite hangs,
605e0b78e19SJoerg Wunsch  * or other unpredictable behaviour.
606e0b78e19SJoerg Wunsch  */
607e0b78e19SJoerg Wunsch 
608e0b78e19SJoerg Wunsch #include "isa.h"
609e0b78e19SJoerg Wunsch 
610e0b78e19SJoerg Wunsch int
611cae6f73aSJoerg Wunsch is_physical_memory(addr)
612e0b78e19SJoerg Wunsch 	vm_offset_t addr;
613e0b78e19SJoerg Wunsch {
614e0b78e19SJoerg Wunsch 
615e0b78e19SJoerg Wunsch #if NISA > 0
616e0b78e19SJoerg Wunsch 	/* The ISA ``memory hole''. */
617e0b78e19SJoerg Wunsch 	if (addr >= 0xa0000 && addr < 0x100000)
618cae6f73aSJoerg Wunsch 		return 0;
619e0b78e19SJoerg Wunsch #endif
620e0b78e19SJoerg Wunsch 
621e0b78e19SJoerg Wunsch 	/*
622e0b78e19SJoerg Wunsch 	 * stuff other tests for known memory-mapped devices (PCI?)
623e0b78e19SJoerg Wunsch 	 * here
624e0b78e19SJoerg Wunsch 	 */
625e0b78e19SJoerg Wunsch 
626cae6f73aSJoerg Wunsch 	return 1;
627e0b78e19SJoerg Wunsch }
628