xref: /freebsd/sys/i386/i386/vm_machdep.c (revision 0cddd8f02397756cbeca5c5777d5895f3e419d88)
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 
44558226eaSPeter Wemm #include "opt_npx.h"
4561324207SKATO Takenori #ifdef PC98
4661324207SKATO Takenori #include "opt_pc98.h"
4761324207SKATO Takenori #endif
480d74cc48SPeter Wemm #include "opt_reset.h"
4903927d3cSPeter Wemm #include "opt_isa.h"
508890984dSGarrett Wollman 
5126f9a767SRodney W. Grimes #include <sys/param.h>
5226f9a767SRodney W. Grimes #include <sys/systm.h>
5326f9a767SRodney W. Grimes #include <sys/malloc.h>
5491c28bfdSLuoqi Chen #include <sys/proc.h>
559626b608SPoul-Henning Kamp #include <sys/bio.h>
5626f9a767SRodney W. Grimes #include <sys/buf.h>
5726f9a767SRodney W. Grimes #include <sys/vnode.h>
58efeaf95aSDavid Greenman #include <sys/vmmeter.h>
5966095752SJohn Dyson #include <sys/kernel.h>
600384fff8SJason Evans #include <sys/ktr.h>
6113b0500fSJohn Baldwin #include <sys/mutex.h>
626caa8a15SJohn Baldwin #include <sys/smp.h>
6366095752SJohn Dyson #include <sys/sysctl.h>
6491c28bfdSLuoqi Chen #include <sys/unistd.h>
655b81b6b3SRodney W. Grimes 
66a2a1c95cSPeter Wemm #include <machine/cpu.h>
671f8745a9SPeter Wemm #include <machine/md_var.h>
6891c28bfdSLuoqi Chen #include <machine/pcb.h>
6991c28bfdSLuoqi Chen #include <machine/pcb_ext.h>
7091c28bfdSLuoqi Chen #include <machine/vm86.h>
715b81b6b3SRodney W. Grimes 
7226f9a767SRodney W. Grimes #include <vm/vm.h>
73efeaf95aSDavid Greenman #include <vm/vm_param.h>
74996c772fSJohn Dyson #include <sys/lock.h>
7526f9a767SRodney W. Grimes #include <vm/vm_kern.h>
7624a1cce3SDavid Greenman #include <vm/vm_page.h>
77efeaf95aSDavid Greenman #include <vm/vm_map.h>
78efeaf95aSDavid Greenman #include <vm/vm_extern.h>
79efeaf95aSDavid Greenman 
80efeaf95aSDavid Greenman #include <sys/user.h>
815b81b6b3SRodney W. Grimes 
82e30f0011SSatoshi Asami #ifdef PC98
83e30f0011SSatoshi Asami #include <pc98/pc98/pc98.h>
84e30f0011SSatoshi Asami #else
852320728fSRodney W. Grimes #include <i386/isa/isa.h>
86e30f0011SSatoshi Asami #endif
872320728fSRodney W. Grimes 
882f1e7069STor Egge static void	cpu_reset_real __P((void));
892f1e7069STor Egge #ifdef SMP
902f1e7069STor Egge static void	cpu_reset_proxy __P((void));
912f1e7069STor Egge static u_int	cpu_reset_proxyid;
922f1e7069STor Egge static volatile u_int	cpu_reset_proxy_active;
932f1e7069STor Egge #endif
9437b087a6SPeter Wemm extern int	_ucodesel, _udatasel;
952f1e7069STor Egge 
96a4f7a4c9SDavid Greenman /*
97a4f7a4c9SDavid Greenman  * quick version of vm_fault
98a4f7a4c9SDavid Greenman  */
994cc71200SMatthew Dillon int
100a4f7a4c9SDavid Greenman vm_fault_quick(v, prot)
1016c146e28SBruce Evans 	caddr_t v;
102a4f7a4c9SDavid Greenman 	int prot;
103a4f7a4c9SDavid Greenman {
1044cc71200SMatthew Dillon 	int r;
1054cc71200SMatthew Dillon 
1061d1b971bSDavid Greenman 	if (prot & VM_PROT_WRITE)
1074cc71200SMatthew Dillon 		r = subyte(v, fubyte(v));
108a4f7a4c9SDavid Greenman 	else
1094cc71200SMatthew Dillon 		r = fubyte(v);
1104cc71200SMatthew Dillon 	return(r);
111a4f7a4c9SDavid Greenman }
112a4f7a4c9SDavid Greenman 
1131561d038SDavid Greenman /*
1145b81b6b3SRodney W. Grimes  * Finish a fork operation, with process p2 nearly set up.
115a2a1c95cSPeter Wemm  * Copy and update the pcb, set up the stack so that the child
116a2a1c95cSPeter Wemm  * ready to run and return to user mode.
1175b81b6b3SRodney W. Grimes  */
118a2a1c95cSPeter Wemm void
11991c28bfdSLuoqi Chen cpu_fork(p1, p2, flags)
1205b81b6b3SRodney W. Grimes 	register struct proc *p1, *p2;
12191c28bfdSLuoqi Chen 	int flags;
1225b81b6b3SRodney W. Grimes {
12391c28bfdSLuoqi Chen 	struct pcb *pcb2;
124a4b8c657SBruce Evans #ifdef DEV_NPX
125a4b8c657SBruce Evans 	int savecrit;
126a4b8c657SBruce Evans #endif
12791c28bfdSLuoqi Chen 
12891c28bfdSLuoqi Chen 	if ((flags & RFPROC) == 0) {
12991c28bfdSLuoqi Chen 		if ((flags & RFMEM) == 0) {
13091c28bfdSLuoqi Chen 			/* unshare user LDT */
13191c28bfdSLuoqi Chen 			struct pcb *pcb1 = &p1->p_addr->u_pcb;
13291c28bfdSLuoqi Chen 			struct pcb_ldt *pcb_ldt = pcb1->pcb_ldt;
13391c28bfdSLuoqi Chen 			if (pcb_ldt && pcb_ldt->ldt_refcnt > 1) {
13491c28bfdSLuoqi Chen 				pcb_ldt = user_ldt_alloc(pcb1,pcb_ldt->ldt_len);
1351acf256dSJohn Baldwin 				if (pcb_ldt == NULL)
1361acf256dSJohn Baldwin 					panic("could not copy LDT");
13791c28bfdSLuoqi Chen 				pcb1->pcb_ldt = pcb_ldt;
13891c28bfdSLuoqi Chen 				set_user_ldt(pcb1);
1391acf256dSJohn Baldwin 				user_ldt_free(pcb1);
14091c28bfdSLuoqi Chen 			}
14191c28bfdSLuoqi Chen 		}
14291c28bfdSLuoqi Chen 		return;
14391c28bfdSLuoqi Chen 	}
1445b81b6b3SRodney W. Grimes 
1451f8745a9SPeter Wemm 	/* Ensure that p1's pcb is up to date. */
146a4b8c657SBruce Evans #ifdef DEV_NPX
147a4b8c657SBruce Evans 	if (p1 == curproc)
148a4b8c657SBruce Evans 		p1->p_addr->u_pcb.pcb_gs = rgs();
149a4b8c657SBruce Evans 	savecrit = critical_enter();
150ef73ae4bSJake Burkholder 	if (PCPU_GET(npxproc) == p1)
1511f8745a9SPeter Wemm 		npxsave(&p1->p_addr->u_pcb.pcb_savefpu);
152a4b8c657SBruce Evans 	critical_exit(savecrit);
1539f449d2aSBruce Evans #endif
1541f8745a9SPeter Wemm 
1551f8745a9SPeter Wemm 	/* Copy p1's pcb. */
1561f8745a9SPeter Wemm 	p2->p_addr->u_pcb = p1->p_addr->u_pcb;
15791c28bfdSLuoqi Chen 	pcb2 = &p2->p_addr->u_pcb;
158a2a1c95cSPeter Wemm 
159a2a1c95cSPeter Wemm 	/*
160a2a1c95cSPeter Wemm 	 * Create a new fresh stack for the new process.
1611f8745a9SPeter Wemm 	 * Copy the trap frame for the return to user mode as if from a
162a4b8c657SBruce Evans 	 * syscall.  This copies most of the user mode register values.
163a2a1c95cSPeter Wemm 	 */
1646be523bcSJohn Baldwin 	p2->p_frame = (struct trapframe *)
165640c4313SJonathan Lemon 			   ((int)p2->p_addr + UPAGES * PAGE_SIZE - 16) - 1;
1666be523bcSJohn Baldwin 	bcopy(p1->p_frame, p2->p_frame, sizeof(struct trapframe));
167a2a1c95cSPeter Wemm 
1686be523bcSJohn Baldwin 	p2->p_frame->tf_eax = 0;		/* Child returns zero */
1696be523bcSJohn Baldwin 	p2->p_frame->tf_eflags &= ~PSL_C;	/* success */
1706be523bcSJohn Baldwin 	p2->p_frame->tf_edx = 1;
1710d54b9d1SJohn Baldwin 
172a2a1c95cSPeter Wemm 	/*
173a2a1c95cSPeter Wemm 	 * Set registers for trampoline to user mode.  Leave space for the
174a2a1c95cSPeter Wemm 	 * return address on stack.  These are the kernel mode register values.
175a2a1c95cSPeter Wemm 	 */
176b1028ad1SLuoqi Chen 	pcb2->pcb_cr3 = vtophys(vmspace_pmap(p2->p_vmspace)->pm_pdir);
17737b087a6SPeter Wemm 	pcb2->pcb_edi = 0;
17837b087a6SPeter Wemm 	pcb2->pcb_esi = (int)fork_return;	/* fork_trampoline argument */
17937b087a6SPeter Wemm 	pcb2->pcb_ebp = 0;
1806be523bcSJohn Baldwin 	pcb2->pcb_esp = (int)p2->p_frame - sizeof(void *);
18137b087a6SPeter Wemm 	pcb2->pcb_ebx = (int)p2;		/* fork_trampoline argument */
1821f8745a9SPeter Wemm 	pcb2->pcb_eip = (int)fork_trampoline;
183a4b8c657SBruce Evans 	/*-
184a4b8c657SBruce Evans 	 * pcb2->pcb_dr*:	cloned above.
1851f8745a9SPeter Wemm 	 * pcb2->pcb_ldt:	duplicated below, if necessary.
1861f8745a9SPeter Wemm 	 * pcb2->pcb_savefpu:	cloned above.
187a4b8c657SBruce Evans 	 * pcb2->pcb_flags:	cloned above.
1881f8745a9SPeter Wemm 	 * pcb2->pcb_onfault:	cloned above (always NULL here?).
189a4b8c657SBruce Evans 	 * pcb2->pcb_gs:	cloned above.
190a4b8c657SBruce Evans 	 * pcb2->pcb_ext:	cleared below.
1911f8745a9SPeter Wemm 	 */
1925b81b6b3SRodney W. Grimes 
19348a09cf2SJohn Dyson 	/*
19448a09cf2SJohn Dyson 	 * XXX don't copy the i/o pages.  this should probably be fixed.
19548a09cf2SJohn Dyson 	 */
19648a09cf2SJohn Dyson 	pcb2->pcb_ext = 0;
19748a09cf2SJohn Dyson 
1988c39a127SStefan Eßer         /* Copy the LDT, if necessary. */
199df4d012bSJohn Baldwin 	mtx_lock_spin(&sched_lock);
200a2a1c95cSPeter Wemm         if (pcb2->pcb_ldt != 0) {
20191c28bfdSLuoqi Chen 		if (flags & RFMEM) {
20291c28bfdSLuoqi Chen 			pcb2->pcb_ldt->ldt_refcnt++;
20391c28bfdSLuoqi Chen 		} else {
20491c28bfdSLuoqi Chen 			pcb2->pcb_ldt = user_ldt_alloc(pcb2,
20591c28bfdSLuoqi Chen 				pcb2->pcb_ldt->ldt_len);
206df4d012bSJohn Baldwin 			if (pcb2->pcb_ldt == NULL)
207df4d012bSJohn Baldwin 				panic("could not copy LDT");
20891c28bfdSLuoqi Chen 		}
2098c39a127SStefan Eßer         }
210df4d012bSJohn Baldwin 	mtx_unlock_spin(&sched_lock);
2118c39a127SStefan Eßer 
212a2a1c95cSPeter Wemm 	/*
213a2a1c95cSPeter Wemm 	 * Now, cpu_switch() can schedule the new process.
214a2a1c95cSPeter Wemm 	 * pcb_esp is loaded pointing to the cpu_switch() stack frame
215a2a1c95cSPeter Wemm 	 * containing the return address when exiting cpu_switch.
21637b087a6SPeter Wemm 	 * This will normally be to fork_trampoline(), which will have
21737b087a6SPeter Wemm 	 * %ebx loaded with the new proc's pointer.  fork_trampoline()
218a2a1c95cSPeter Wemm 	 * will set up a stack to call fork_return(p, frame); to complete
219a2a1c95cSPeter Wemm 	 * the return to user-mode.
220a2a1c95cSPeter Wemm 	 */
221a2a1c95cSPeter Wemm }
222a2a1c95cSPeter Wemm 
223a2a1c95cSPeter Wemm /*
224a2a1c95cSPeter Wemm  * Intercept the return address from a freshly forked process that has NOT
225a2a1c95cSPeter Wemm  * been scheduled yet.
226a2a1c95cSPeter Wemm  *
227a2a1c95cSPeter Wemm  * This is needed to make kernel threads stay in kernel mode.
228a2a1c95cSPeter Wemm  */
229a2a1c95cSPeter Wemm void
230a2a1c95cSPeter Wemm cpu_set_fork_handler(p, func, arg)
231a2a1c95cSPeter Wemm 	struct proc *p;
2329c8b8baaSPeter Wemm 	void (*func) __P((void *));
2339c8b8baaSPeter Wemm 	void *arg;
234a2a1c95cSPeter Wemm {
235a2a1c95cSPeter Wemm 	/*
236a2a1c95cSPeter Wemm 	 * Note that the trap frame follows the args, so the function
237a2a1c95cSPeter Wemm 	 * is really called like this:  func(arg, frame);
238a2a1c95cSPeter Wemm 	 */
239a2a1c95cSPeter Wemm 	p->p_addr->u_pcb.pcb_esi = (int) func;	/* function */
240a2a1c95cSPeter Wemm 	p->p_addr->u_pcb.pcb_ebx = (int) arg;	/* first arg */
2415b81b6b3SRodney W. Grimes }
2425b81b6b3SRodney W. Grimes 
2437c2b54e8SNate Williams void
2445b81b6b3SRodney W. Grimes cpu_exit(p)
2455b81b6b3SRodney W. Grimes 	register struct proc *p;
2465b81b6b3SRodney W. Grimes {
24748a09cf2SJohn Dyson 	struct pcb *pcb = &p->p_addr->u_pcb;
2485b81b6b3SRodney W. Grimes 
249558226eaSPeter Wemm #ifdef DEV_NPX
2505b81b6b3SRodney W. Grimes 	npxexit(p);
251558226eaSPeter Wemm #endif
25248a09cf2SJohn Dyson 	if (pcb->pcb_ext != 0) {
25348a09cf2SJohn Dyson 	        /*
25448a09cf2SJohn Dyson 		 * XXX do we need to move the TSS off the allocated pages
25548a09cf2SJohn Dyson 		 * before freeing them?  (not done here)
25648a09cf2SJohn Dyson 		 */
25748a09cf2SJohn Dyson 		kmem_free(kernel_map, (vm_offset_t)pcb->pcb_ext,
25848a09cf2SJohn Dyson 		    ctob(IOPAGES + 1));
25948a09cf2SJohn Dyson 		pcb->pcb_ext = 0;
26048a09cf2SJohn Dyson 	}
261f1532aadSPeter Wemm 	if (pcb->pcb_ldt)
26291c28bfdSLuoqi Chen 		user_ldt_free(pcb);
263de8050f9SBrian S. Dean         if (pcb->pcb_flags & PCB_DBREGS) {
264de8050f9SBrian S. Dean                 /*
265de8050f9SBrian S. Dean                  * disable all hardware breakpoints
266de8050f9SBrian S. Dean                  */
267de8050f9SBrian S. Dean                 reset_dbregs();
268de8050f9SBrian S. Dean                 pcb->pcb_flags &= ~PCB_DBREGS;
269de8050f9SBrian S. Dean         }
270ff655691SJohn Baldwin 	PROC_LOCK(p);
2719ed346baSBosko Milekic 	mtx_lock_spin(&sched_lock);
272d2a5bcc3SJohn Baldwin 	while (mtx_owned(&Giant))
2739ed346baSBosko Milekic 		mtx_unlock_flags(&Giant, MTX_NOSWITCH);
27498f03f90SJake Burkholder 
27598f03f90SJake Burkholder 	/*
27698f03f90SJake Burkholder 	 * We have to wait until after releasing all locks before
27798f03f90SJake Burkholder 	 * changing p_stat.  If we block on a mutex then we will be
27898f03f90SJake Burkholder 	 * back at SRUN when we resume and our parent will never
27998f03f90SJake Burkholder 	 * harvest us.
28098f03f90SJake Burkholder 	 */
28198f03f90SJake Burkholder 	p->p_stat = SZOMB;
28298f03f90SJake Burkholder 
28398f03f90SJake Burkholder 	wakeup(p->p_pptr);
284ff655691SJohn Baldwin 	PROC_UNLOCK_NOSWITCH(p);
28598f03f90SJake Burkholder 
2861a051896SBruce Evans 	cnt.v_swtch++;
28713b0500fSJohn Baldwin 	cpu_throw();
2887c2b54e8SNate Williams 	panic("cpu_exit");
2895b81b6b3SRodney W. Grimes }
2905b81b6b3SRodney W. Grimes 
291381fe1aaSGarrett Wollman void
292bd7e5f99SJohn Dyson cpu_wait(p)
293bd7e5f99SJohn Dyson 	struct proc *p;
294bd7e5f99SJohn Dyson {
2950cddd8f0SMatthew Dillon 	GIANT_REQUIRED;
29623955314SAlfred Perlstein 
2975b81b6b3SRodney W. Grimes 	/* drop per-process resources */
298675878e7SJohn Dyson 	pmap_dispose_proc(p);
2992d8acc0fSJohn Dyson 
3002d8acc0fSJohn Dyson 	/* and clean-out the vmspace */
3017f8cb368SDavid Greenman 	vmspace_free(p->p_vmspace);
3025b81b6b3SRodney W. Grimes }
3035b81b6b3SRodney W. Grimes 
3045b81b6b3SRodney W. Grimes /*
30526f9a767SRodney W. Grimes  * Dump the machine specific header information at the start of a core dump.
30626f9a767SRodney W. Grimes  */
30726f9a767SRodney W. Grimes int
30826f9a767SRodney W. Grimes cpu_coredump(p, vp, cred)
30926f9a767SRodney W. Grimes 	struct proc *p;
31026f9a767SRodney W. Grimes 	struct vnode *vp;
31126f9a767SRodney W. Grimes 	struct ucred *cred;
31226f9a767SRodney W. Grimes {
313afc6ea23STor Egge 	int error;
314afc6ea23STor Egge 	caddr_t tempuser;
31526f9a767SRodney W. Grimes 
3167cc0979fSDavid Malone 	tempuser = malloc(ctob(UPAGES), M_TEMP, M_WAITOK | M_ZERO);
317afc6ea23STor Egge 	if (!tempuser)
318afc6ea23STor Egge 		return EINVAL;
319afc6ea23STor Egge 
320afc6ea23STor Egge 	bcopy(p->p_addr, tempuser, sizeof(struct user));
3216be523bcSJohn Baldwin 	bcopy(p->p_frame,
3226be523bcSJohn Baldwin 	      tempuser + ((caddr_t) p->p_frame - (caddr_t) p->p_addr),
323afc6ea23STor Egge 	      sizeof(struct trapframe));
324afc6ea23STor Egge 
325afc6ea23STor Egge 	error = vn_rdwr(UIO_WRITE, vp, (caddr_t) tempuser,
326afc6ea23STor Egge 			ctob(UPAGES),
327afc6ea23STor Egge 			(off_t)0, UIO_SYSSPACE, IO_NODELOCKED|IO_UNIT,
328afc6ea23STor Egge 			cred, (int *)NULL, p);
329afc6ea23STor Egge 
330afc6ea23STor Egge 	free(tempuser, M_TEMP);
331afc6ea23STor Egge 
332afc6ea23STor Egge 	return error;
33326f9a767SRodney W. Grimes }
33426f9a767SRodney W. Grimes 
33587b6de2bSPoul-Henning Kamp #ifdef notyet
33687b91157SPoul-Henning Kamp static void
3375b81b6b3SRodney W. Grimes setredzone(pte, vaddr)
3385b81b6b3SRodney W. Grimes 	u_short *pte;
3395b81b6b3SRodney W. Grimes 	caddr_t vaddr;
3405b81b6b3SRodney W. Grimes {
3415b81b6b3SRodney W. Grimes /* eventually do this by setting up an expand-down stack segment
3425b81b6b3SRodney W. Grimes    for ss0: selector, allowing stack access down to top of u.
3435b81b6b3SRodney W. Grimes    this means though that protection violations need to be handled
3445b81b6b3SRodney W. Grimes    thru a double fault exception that must do an integral task
3455b81b6b3SRodney W. Grimes    switch to a known good context, within which a dump can be
3465b81b6b3SRodney W. Grimes    taken. a sensible scheme might be to save the initial context
3475b81b6b3SRodney W. Grimes    used by sched (that has physical memory mapped 1:1 at bottom)
3485b81b6b3SRodney W. Grimes    and take the dump while still in mapped mode */
3495b81b6b3SRodney W. Grimes }
35087b6de2bSPoul-Henning Kamp #endif
35126f9a767SRodney W. Grimes 
35226f9a767SRodney W. Grimes /*
3535b81b6b3SRodney W. Grimes  * Convert kernel VA to physical address
3545b81b6b3SRodney W. Grimes  */
355aaf08d94SGarrett Wollman u_long
3567f8cb368SDavid Greenman kvtop(void *addr)
3575b81b6b3SRodney W. Grimes {
3585b81b6b3SRodney W. Grimes 	vm_offset_t va;
3595b81b6b3SRodney W. Grimes 
360ed7fcbd0SDavid Greenman 	va = pmap_kextract((vm_offset_t)addr);
3615b81b6b3SRodney W. Grimes 	if (va == 0)
3625b81b6b3SRodney W. Grimes 		panic("kvtop: zero page frame");
3637f8cb368SDavid Greenman 	return((int)va);
3645b81b6b3SRodney W. Grimes }
3655b81b6b3SRodney W. Grimes 
3665b81b6b3SRodney W. Grimes /*
367ac322158SDavid Greenman  * Map an IO request into kernel virtual address space.
3685b81b6b3SRodney W. Grimes  *
369ac322158SDavid Greenman  * All requests are (re)mapped into kernel VA space.
370ac322158SDavid Greenman  * Notice that we use b_bufsize for the size of the buffer
371ac322158SDavid Greenman  * to be mapped.  b_bcount might be modified by the driver.
3725b81b6b3SRodney W. Grimes  */
373381fe1aaSGarrett Wollman void
3745b81b6b3SRodney W. Grimes vmapbuf(bp)
3755b81b6b3SRodney W. Grimes 	register struct buf *bp;
3765b81b6b3SRodney W. Grimes {
3770157d6d9SJohn Dyson 	register caddr_t addr, v, kva;
37807658526SPoul-Henning Kamp 	vm_offset_t pa;
3795b81b6b3SRodney W. Grimes 
3800cddd8f0SMatthew Dillon 	GIANT_REQUIRED;
3810cddd8f0SMatthew Dillon 
38226f9a767SRodney W. Grimes 	if ((bp->b_flags & B_PHYS) == 0)
3835b81b6b3SRodney W. Grimes 		panic("vmapbuf");
38426f9a767SRodney W. Grimes 
3856cde7a16SDavid Greenman 	for (v = bp->b_saveaddr, addr = (caddr_t)trunc_page((vm_offset_t)bp->b_data);
38626f9a767SRodney W. Grimes 	    addr < bp->b_data + bp->b_bufsize;
3870157d6d9SJohn Dyson 	    addr += PAGE_SIZE, v += PAGE_SIZE) {
38826f9a767SRodney W. Grimes 		/*
389ac269d78SDavid Greenman 		 * Do the vm_fault if needed; do the copy-on-write thing
390ac269d78SDavid Greenman 		 * when reading stuff off device into memory.
39126f9a767SRodney W. Grimes 		 */
39226f9a767SRodney W. Grimes 		vm_fault_quick(addr,
39321144e3bSPoul-Henning Kamp 			(bp->b_iocmd == BIO_READ)?(VM_PROT_READ|VM_PROT_WRITE):VM_PROT_READ);
3940157d6d9SJohn Dyson 		pa = trunc_page(pmap_kextract((vm_offset_t) addr));
395641a27e6SJohn Dyson 		if (pa == 0)
396641a27e6SJohn Dyson 			panic("vmapbuf: page not present");
39726f9a767SRodney W. Grimes 		vm_page_hold(PHYS_TO_VM_PAGE(pa));
3980157d6d9SJohn Dyson 		pmap_kenter((vm_offset_t) v, pa);
39926f9a767SRodney W. Grimes 	}
40026f9a767SRodney W. Grimes 
4010157d6d9SJohn Dyson 	kva = bp->b_saveaddr;
4020157d6d9SJohn Dyson 	bp->b_saveaddr = bp->b_data;
4030157d6d9SJohn Dyson 	bp->b_data = kva + (((vm_offset_t) bp->b_data) & PAGE_MASK);
4045b81b6b3SRodney W. Grimes }
4055b81b6b3SRodney W. Grimes 
4065b81b6b3SRodney W. Grimes /*
4075b81b6b3SRodney W. Grimes  * Free the io map PTEs associated with this IO operation.
4085b81b6b3SRodney W. Grimes  * We also invalidate the TLB entries and restore the original b_addr.
4095b81b6b3SRodney W. Grimes  */
410381fe1aaSGarrett Wollman void
4115b81b6b3SRodney W. Grimes vunmapbuf(bp)
4125b81b6b3SRodney W. Grimes 	register struct buf *bp;
4135b81b6b3SRodney W. Grimes {
414c564966bSDavid Greenman 	register caddr_t addr;
41507658526SPoul-Henning Kamp 	vm_offset_t pa;
4165b81b6b3SRodney W. Grimes 
4170cddd8f0SMatthew Dillon 	GIANT_REQUIRED;
4180cddd8f0SMatthew Dillon 
4195b81b6b3SRodney W. Grimes 	if ((bp->b_flags & B_PHYS) == 0)
4205b81b6b3SRodney W. Grimes 		panic("vunmapbuf");
421c564966bSDavid Greenman 
4226cde7a16SDavid Greenman 	for (addr = (caddr_t)trunc_page((vm_offset_t)bp->b_data);
42312936855SDavid Greenman 	    addr < bp->b_data + bp->b_bufsize;
424f8845af0SPoul-Henning Kamp 	    addr += PAGE_SIZE) {
4250157d6d9SJohn Dyson 		pa = trunc_page(pmap_kextract((vm_offset_t) addr));
4260157d6d9SJohn Dyson 		pmap_kremove((vm_offset_t) addr);
42726f9a767SRodney W. Grimes 		vm_page_unhold(PHYS_TO_VM_PAGE(pa));
42826f9a767SRodney W. Grimes 	}
4290157d6d9SJohn Dyson 
4300157d6d9SJohn Dyson 	bp->b_data = bp->b_saveaddr;
4315b81b6b3SRodney W. Grimes }
4325b81b6b3SRodney W. Grimes 
4335b81b6b3SRodney W. Grimes /*
4345b81b6b3SRodney W. Grimes  * Force reset the processor by invalidating the entire address space!
4355b81b6b3SRodney W. Grimes  */
4362f1e7069STor Egge 
4372f1e7069STor Egge #ifdef SMP
4382f1e7069STor Egge static void
4392f1e7069STor Egge cpu_reset_proxy()
4402f1e7069STor Egge {
4412f1e7069STor Egge 
4422f1e7069STor Egge 	cpu_reset_proxy_active = 1;
4432f1e7069STor Egge 	while (cpu_reset_proxy_active == 1)
4440384fff8SJason Evans 		;	 /* Wait for other cpu to see that we've started */
4452f1e7069STor Egge 	stop_cpus((1<<cpu_reset_proxyid));
4462f1e7069STor Egge 	printf("cpu_reset_proxy: Stopped CPU %d\n", cpu_reset_proxyid);
4472f1e7069STor Egge 	DELAY(1000000);
4482f1e7069STor Egge 	cpu_reset_real();
4492f1e7069STor Egge }
4502f1e7069STor Egge #endif
4512f1e7069STor Egge 
4527f8cb368SDavid Greenman void
453d447dbeeSBruce Evans cpu_reset()
454d447dbeeSBruce Evans {
4552f1e7069STor Egge #ifdef SMP
4562f1e7069STor Egge 	if (smp_active == 0) {
4572f1e7069STor Egge 		cpu_reset_real();
4582f1e7069STor Egge 		/* NOTREACHED */
4592f1e7069STor Egge 	} else {
4602f1e7069STor Egge 
4612f1e7069STor Egge 		u_int map;
4622f1e7069STor Egge 		int cnt;
463ef73ae4bSJake Burkholder 		printf("cpu_reset called on cpu#%d\n", PCPU_GET(cpuid));
4642f1e7069STor Egge 
465ef73ae4bSJake Burkholder 		map = PCPU_GET(other_cpus) & ~ stopped_cpus;
4662f1e7069STor Egge 
4672f1e7069STor Egge 		if (map != 0) {
4682f1e7069STor Egge 			printf("cpu_reset: Stopping other CPUs\n");
4692f1e7069STor Egge 			stop_cpus(map);		/* Stop all other CPUs */
4702f1e7069STor Egge 		}
4712f1e7069STor Egge 
472ef73ae4bSJake Burkholder 		if (PCPU_GET(cpuid) == 0) {
4732f1e7069STor Egge 			DELAY(1000000);
4742f1e7069STor Egge 			cpu_reset_real();
4752f1e7069STor Egge 			/* NOTREACHED */
4762f1e7069STor Egge 		} else {
4772f1e7069STor Egge 			/* We are not BSP (CPU #0) */
4782f1e7069STor Egge 
479ef73ae4bSJake Burkholder 			cpu_reset_proxyid = PCPU_GET(cpuid);
4802f1e7069STor Egge 			cpustop_restartfunc = cpu_reset_proxy;
4810384fff8SJason Evans 			cpu_reset_proxy_active = 0;
4822f1e7069STor Egge 			printf("cpu_reset: Restarting BSP\n");
4832f1e7069STor Egge 			started_cpus = (1<<0);		/* Restart CPU #0 */
4842f1e7069STor Egge 
4852f1e7069STor Egge 			cnt = 0;
4862f1e7069STor Egge 			while (cpu_reset_proxy_active == 0 && cnt < 10000000)
4872f1e7069STor Egge 				cnt++;	/* Wait for BSP to announce restart */
4882f1e7069STor Egge 			if (cpu_reset_proxy_active == 0)
4892f1e7069STor Egge 				printf("cpu_reset: Failed to restart BSP\n");
4900384fff8SJason Evans 			enable_intr();
4912f1e7069STor Egge 			cpu_reset_proxy_active = 2;
4920384fff8SJason Evans 
4932f1e7069STor Egge 			while (1);
4942f1e7069STor Egge 			/* NOTREACHED */
4952f1e7069STor Egge 		}
4962f1e7069STor Egge 	}
4972f1e7069STor Egge #else
4982f1e7069STor Egge 	cpu_reset_real();
4992f1e7069STor Egge #endif
5002f1e7069STor Egge }
5012f1e7069STor Egge 
5022f1e7069STor Egge static void
5032f1e7069STor Egge cpu_reset_real()
5042f1e7069STor Egge {
505d447dbeeSBruce Evans 
50603245f09SKATO Takenori #ifdef PC98
50703245f09SKATO Takenori 	/*
50803245f09SKATO Takenori 	 * Attempt to do a CPU reset via CPU reset port.
50903245f09SKATO Takenori 	 */
510d447dbeeSBruce Evans 	disable_intr();
5118e929d65SKATO Takenori 	if ((inb(0x35) & 0xa0) != 0xa0) {
51203245f09SKATO Takenori 		outb(0x37, 0x0f);		/* SHUT0 = 0. */
51303245f09SKATO Takenori 		outb(0x37, 0x0b);		/* SHUT1 = 0. */
5148e929d65SKATO Takenori 	}
51503245f09SKATO Takenori 	outb(0xf0, 0x00);		/* Reset. */
51603245f09SKATO Takenori #else
5172320728fSRodney W. Grimes 	/*
5182320728fSRodney W. Grimes 	 * Attempt to do a CPU reset via the keyboard controller,
5192320728fSRodney W. Grimes 	 * do not turn of the GateA20, as any machine that fails
5202320728fSRodney W. Grimes 	 * to do the reset here would then end up in no man's land.
5212320728fSRodney W. Grimes 	 */
5225eb46edfSDavid Greenman 
52303245f09SKATO Takenori #if !defined(BROKEN_KEYBOARD_RESET)
5242320728fSRodney W. Grimes 	outb(IO_KBD + 4, 0xFE);
5252320728fSRodney W. Grimes 	DELAY(500000);	/* wait 0.5 sec to see if that did it */
5262320728fSRodney W. Grimes 	printf("Keyboard reset did not work, attempting CPU shutdown\n");
5272320728fSRodney W. Grimes 	DELAY(1000000);	/* wait 1 sec for printf to complete */
5285eb46edfSDavid Greenman #endif
52903245f09SKATO Takenori #endif /* PC98 */
5305b81b6b3SRodney W. Grimes 	/* force a shutdown by unmapping entire address space ! */
531f8845af0SPoul-Henning Kamp 	bzero((caddr_t) PTD, PAGE_SIZE);
5325b81b6b3SRodney W. Grimes 
5335b81b6b3SRodney W. Grimes 	/* "good night, sweet prince .... <THUNK!>" */
53427e9b35eSJohn Dyson 	invltlb();
5355b81b6b3SRodney W. Grimes 	/* NOTREACHED */
5367f8cb368SDavid Greenman 	while(1);
5375b81b6b3SRodney W. Grimes }
538b9d60b3fSDavid Greenman 
5392267af78SJulian Elischer int
5402267af78SJulian Elischer grow_stack(p, sp)
5412267af78SJulian Elischer 	struct proc *p;
5422267af78SJulian Elischer 	u_int sp;
5432267af78SJulian Elischer {
5442267af78SJulian Elischer 	int rv;
5452267af78SJulian Elischer 
5462267af78SJulian Elischer 	rv = vm_map_growstack (p, sp);
5472267af78SJulian Elischer 	if (rv != KERN_SUCCESS)
5482267af78SJulian Elischer 		return (0);
5492267af78SJulian Elischer 
5502267af78SJulian Elischer 	return (1);
5512267af78SJulian Elischer }
5522267af78SJulian Elischer 
553ce02431fSDoug Rabson SYSCTL_DECL(_vm_stats_misc);
554a29b63cbSJohn Dyson 
5557762bc7bSBruce Evans static int cnt_prezero;
55666095752SJohn Dyson 
557b0359e2cSPeter Wemm SYSCTL_INT(_vm_stats_misc, OID_AUTO,
558b0359e2cSPeter Wemm 	cnt_prezero, CTLFLAG_RD, &cnt_prezero, 0, "");
55966095752SJohn Dyson 
560a29b63cbSJohn Dyson /*
56183eab616SBruce Evans  * Implement the pre-zeroed page mechanism.
56283eab616SBruce Evans  * This routine is called from the idle loop.
563a29b63cbSJohn Dyson  */
564dd2f9956SMatthew Dillon 
565dd2f9956SMatthew Dillon #define ZIDLE_LO(v)	((v) * 2 / 3)
566dd2f9956SMatthew Dillon #define ZIDLE_HI(v)	((v) * 4 / 5)
567dd2f9956SMatthew Dillon 
568a29b63cbSJohn Dyson int
56983eab616SBruce Evans vm_page_zero_idle()
57083eab616SBruce Evans {
57183eab616SBruce Evans 	static int free_rover;
572faa273d5SMatthew Dillon 	static int zero_state;
573a29b63cbSJohn Dyson 	vm_page_t m;
57483eab616SBruce Evans 
57583eab616SBruce Evans 	/*
576faa273d5SMatthew Dillon 	 * Attempt to maintain approximately 1/2 of our free pages in a
577faa273d5SMatthew Dillon 	 * PG_ZERO'd state.   Add some hysteresis to (attempt to) avoid
578faa273d5SMatthew Dillon 	 * generally zeroing a page when the system is near steady-state.
579faa273d5SMatthew Dillon 	 * Otherwise we might get 'flutter' during disk I/O / IPC or
580faa273d5SMatthew Dillon 	 * fast sleeps.  We also do not want to be continuously zeroing
581faa273d5SMatthew Dillon 	 * pages because doing so may flush our L1 and L2 caches too much.
5828e56e561SJohn Dyson 	 */
583faa273d5SMatthew Dillon 
5840cddd8f0SMatthew Dillon 	if (zero_state && vm_page_zero_count >= ZIDLE_LO(cnt.v_free_count))
58583eab616SBruce Evans 		return(0);
5860cddd8f0SMatthew Dillon 	if (vm_page_zero_count >= ZIDLE_HI(cnt.v_free_count))
587faa273d5SMatthew Dillon 		return(0);
588faa273d5SMatthew Dillon 
5890cddd8f0SMatthew Dillon 	if (mtx_trylock(&Giant)) {
590faa273d5SMatthew Dillon 		zero_state = 0;
591faa273d5SMatthew Dillon 		m = vm_page_list_find(PQ_FREE, free_rover, FALSE);
592faa273d5SMatthew Dillon 		if (m != NULL && (m->flags & PG_ZERO) == 0) {
5935d2aec89SAlan Cox 			vm_page_queues[m->queue].lcnt--;
594be72f788SAlan Cox 			TAILQ_REMOVE(&vm_page_queues[m->queue].pl, m, pageq);
59595f67de2STor Egge 			m->queue = PQ_NONE;
596a29b63cbSJohn Dyson 			pmap_zero_page(VM_PAGE_TO_PHYS(m));
597faa273d5SMatthew Dillon 			vm_page_flag_set(m, PG_ZERO);
598faa273d5SMatthew Dillon 			m->queue = PQ_FREE + m->pc;
5995d2aec89SAlan Cox 			vm_page_queues[m->queue].lcnt++;
600be72f788SAlan Cox 			TAILQ_INSERT_TAIL(&vm_page_queues[m->queue].pl, m,
6017762bc7bSBruce Evans 			    pageq);
602a316d390SJohn Dyson 			++vm_page_zero_count;
60366095752SJohn Dyson 			++cnt_prezero;
604dd2f9956SMatthew Dillon 			if (vm_page_zero_count >= ZIDLE_HI(cnt.v_free_count))
605faa273d5SMatthew Dillon 				zero_state = 1;
606a29b63cbSJohn Dyson 		}
6073b213483SAlan Cox 		free_rover = (free_rover + PQ_PRIME2) & PQ_L2_MASK;
6080cddd8f0SMatthew Dillon 		mtx_unlock(&Giant);
60983eab616SBruce Evans 		return (1);
610a29b63cbSJohn Dyson 	}
6110cddd8f0SMatthew Dillon 	return(0);
6120cddd8f0SMatthew Dillon }
613e0b78e19SJoerg Wunsch 
614e0b78e19SJoerg Wunsch /*
61557d7d7b3SJustin T. Gibbs  * Software interrupt handler for queued VM system processing.
61657d7d7b3SJustin T. Gibbs  */
61757d7d7b3SJustin T. Gibbs void
6188088699fSJohn Baldwin swi_vm(void *dummy)
61957d7d7b3SJustin T. Gibbs {
62057d7d7b3SJustin T. Gibbs 	if (busdma_swi_pending != 0)
62157d7d7b3SJustin T. Gibbs 		busdma_swi();
62257d7d7b3SJustin T. Gibbs }
62357d7d7b3SJustin T. Gibbs 
62457d7d7b3SJustin T. Gibbs /*
625cae6f73aSJoerg Wunsch  * Tell whether this address is in some physical memory region.
626e0b78e19SJoerg Wunsch  * Currently used by the kernel coredump code in order to avoid
627e0b78e19SJoerg Wunsch  * dumping the ``ISA memory hole'' which could cause indefinite hangs,
628e0b78e19SJoerg Wunsch  * or other unpredictable behaviour.
629e0b78e19SJoerg Wunsch  */
630e0b78e19SJoerg Wunsch 
631e0b78e19SJoerg Wunsch int
632cae6f73aSJoerg Wunsch is_physical_memory(addr)
633e0b78e19SJoerg Wunsch 	vm_offset_t addr;
634e0b78e19SJoerg Wunsch {
635e0b78e19SJoerg Wunsch 
63603927d3cSPeter Wemm #ifdef DEV_ISA
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