]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/amd64/amd64/vm_machdep.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / amd64 / amd64 / vm_machdep.c
1 /*-
2  * Copyright (c) 1982, 1986 The Regents of the University of California.
3  * Copyright (c) 1989, 1990 William Jolitz
4  * Copyright (c) 1994 John Dyson
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * the Systems Programming Group of the University of Utah Computer
9  * Science Department, and William Jolitz.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  *      from: @(#)vm_machdep.c  7.3 (Berkeley) 5/13/91
40  *      Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
41  */
42
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD$");
45
46 #include "opt_isa.h"
47 #include "opt_cpu.h"
48 #include "opt_compat.h"
49
50 #include <sys/param.h>
51 #include <sys/systm.h>
52 #include <sys/bio.h>
53 #include <sys/buf.h>
54 #include <sys/kernel.h>
55 #include <sys/ktr.h>
56 #include <sys/lock.h>
57 #include <sys/malloc.h>
58 #include <sys/mbuf.h>
59 #include <sys/mutex.h>
60 #include <sys/pioctl.h>
61 #include <sys/proc.h>
62 #include <sys/smp.h>
63 #include <sys/sysctl.h>
64 #include <sys/sysent.h>
65 #include <sys/unistd.h>
66 #include <sys/vnode.h>
67 #include <sys/vmmeter.h>
68
69 #include <machine/cpu.h>
70 #include <machine/md_var.h>
71 #include <machine/pcb.h>
72 #include <machine/smp.h>
73 #include <machine/specialreg.h>
74 #include <machine/tss.h>
75
76 #include <vm/vm.h>
77 #include <vm/vm_extern.h>
78 #include <vm/vm_kern.h>
79 #include <vm/vm_page.h>
80 #include <vm/vm_map.h>
81 #include <vm/vm_param.h>
82
83 #include <x86/isa/isa.h>
84
85 static void     cpu_reset_real(void);
86 #ifdef SMP
87 static void     cpu_reset_proxy(void);
88 static u_int    cpu_reset_proxyid;
89 static volatile u_int   cpu_reset_proxy_active;
90 #endif
91
92 _Static_assert(OFFSETOF_CURTHREAD == offsetof(struct pcpu, pc_curthread),
93     "OFFSETOF_CURTHREAD does not correspond with offset of pc_curthread.");
94 _Static_assert(OFFSETOF_CURPCB == offsetof(struct pcpu, pc_curpcb),
95     "OFFSETOF_CURPCB does not correspond with offset of pc_curpcb.");
96
97 struct savefpu *
98 get_pcb_user_save_td(struct thread *td)
99 {
100         vm_offset_t p;
101
102         p = td->td_kstack + td->td_kstack_pages * PAGE_SIZE -
103             cpu_max_ext_state_size;
104         KASSERT((p % 64) == 0, ("Unaligned pcb_user_save area"));
105         return ((struct savefpu *)p);
106 }
107
108 struct savefpu *
109 get_pcb_user_save_pcb(struct pcb *pcb)
110 {
111         vm_offset_t p;
112
113         p = (vm_offset_t)(pcb + 1);
114         return ((struct savefpu *)p);
115 }
116
117 struct pcb *
118 get_pcb_td(struct thread *td)
119 {
120         vm_offset_t p;
121
122         p = td->td_kstack + td->td_kstack_pages * PAGE_SIZE -
123             cpu_max_ext_state_size - sizeof(struct pcb);
124         return ((struct pcb *)p);
125 }
126
127 void *
128 alloc_fpusave(int flags)
129 {
130         void *res;
131         struct savefpu_ymm *sf;
132
133         res = malloc(cpu_max_ext_state_size, M_DEVBUF, flags);
134         if (use_xsave) {
135                 sf = (struct savefpu_ymm *)res;
136                 bzero(&sf->sv_xstate.sx_hd, sizeof(sf->sv_xstate.sx_hd));
137                 sf->sv_xstate.sx_hd.xstate_bv = xsave_mask;
138         }
139         return (res);
140 }
141
142 /*
143  * Finish a fork operation, with process p2 nearly set up.
144  * Copy and update the pcb, set up the stack so that the child
145  * ready to run and return to user mode.
146  */
147 void
148 cpu_fork(td1, p2, td2, flags)
149         register struct thread *td1;
150         register struct proc *p2;
151         struct thread *td2;
152         int flags;
153 {
154         register struct proc *p1;
155         struct pcb *pcb2;
156         struct mdproc *mdp1, *mdp2;
157         struct proc_ldt *pldt;
158         pmap_t pmap2;
159
160         p1 = td1->td_proc;
161         if ((flags & RFPROC) == 0) {
162                 if ((flags & RFMEM) == 0) {
163                         /* unshare user LDT */
164                         mdp1 = &p1->p_md;
165                         mtx_lock(&dt_lock);
166                         if ((pldt = mdp1->md_ldt) != NULL &&
167                             pldt->ldt_refcnt > 1 &&
168                             user_ldt_alloc(p1, 1) == NULL)
169                                 panic("could not copy LDT");
170                         mtx_unlock(&dt_lock);
171                 }
172                 return;
173         }
174
175         /* Ensure that td1's pcb is up to date. */
176         fpuexit(td1);
177
178         /* Point the pcb to the top of the stack */
179         pcb2 = get_pcb_td(td2);
180         td2->td_pcb = pcb2;
181
182         /* Copy td1's pcb */
183         bcopy(td1->td_pcb, pcb2, sizeof(*pcb2));
184
185         /* Properly initialize pcb_save */
186         pcb2->pcb_save = get_pcb_user_save_pcb(pcb2);
187         bcopy(get_pcb_user_save_td(td1), get_pcb_user_save_pcb(pcb2),
188             cpu_max_ext_state_size);
189
190         /* Point mdproc and then copy over td1's contents */
191         mdp2 = &p2->p_md;
192         bcopy(&p1->p_md, mdp2, sizeof(*mdp2));
193
194         /*
195          * Create a new fresh stack for the new process.
196          * Copy the trap frame for the return to user mode as if from a
197          * syscall.  This copies most of the user mode register values.
198          */
199         td2->td_frame = (struct trapframe *)td2->td_pcb - 1;
200         bcopy(td1->td_frame, td2->td_frame, sizeof(struct trapframe));
201
202         td2->td_frame->tf_rax = 0;              /* Child returns zero */
203         td2->td_frame->tf_rflags &= ~PSL_C;     /* success */
204         td2->td_frame->tf_rdx = 1;
205
206         /*
207          * If the parent process has the trap bit set (i.e. a debugger had
208          * single stepped the process to the system call), we need to clear
209          * the trap flag from the new frame unless the debugger had set PF_FORK
210          * on the parent.  Otherwise, the child will receive a (likely
211          * unexpected) SIGTRAP when it executes the first instruction after
212          * returning  to userland.
213          */
214         if ((p1->p_pfsflags & PF_FORK) == 0)
215                 td2->td_frame->tf_rflags &= ~PSL_T;
216
217         /*
218          * Set registers for trampoline to user mode.  Leave space for the
219          * return address on stack.  These are the kernel mode register values.
220          */
221         pmap2 = vmspace_pmap(p2->p_vmspace);
222         pcb2->pcb_cr3 = pmap2->pm_cr3;
223         pcb2->pcb_r12 = (register_t)fork_return;        /* fork_trampoline argument */
224         pcb2->pcb_rbp = 0;
225         pcb2->pcb_rsp = (register_t)td2->td_frame - sizeof(void *);
226         pcb2->pcb_rbx = (register_t)td2;                /* fork_trampoline argument */
227         pcb2->pcb_rip = (register_t)fork_trampoline;
228         /*-
229          * pcb2->pcb_dr*:       cloned above.
230          * pcb2->pcb_savefpu:   cloned above.
231          * pcb2->pcb_flags:     cloned above.
232          * pcb2->pcb_onfault:   cloned above (always NULL here?).
233          * pcb2->pcb_[fg]sbase: cloned above
234          */
235
236         /* Setup to release spin count in fork_exit(). */
237         td2->td_md.md_spinlock_count = 1;
238         td2->td_md.md_saved_flags = PSL_KERNEL | PSL_I;
239
240         /* As an i386, do not copy io permission bitmap. */
241         pcb2->pcb_tssp = NULL;
242
243         /* New segment registers. */
244         set_pcb_flags(pcb2, PCB_FULL_IRET);
245
246         /* Copy the LDT, if necessary. */
247         mdp1 = &td1->td_proc->p_md;
248         mdp2 = &p2->p_md;
249         mtx_lock(&dt_lock);
250         if (mdp1->md_ldt != NULL) {
251                 if (flags & RFMEM) {
252                         mdp1->md_ldt->ldt_refcnt++;
253                         mdp2->md_ldt = mdp1->md_ldt;
254                         bcopy(&mdp1->md_ldt_sd, &mdp2->md_ldt_sd, sizeof(struct
255                             system_segment_descriptor));
256                 } else {
257                         mdp2->md_ldt = NULL;
258                         mdp2->md_ldt = user_ldt_alloc(p2, 0);
259                         if (mdp2->md_ldt == NULL)
260                                 panic("could not copy LDT");
261                         amd64_set_ldt_data(td2, 0, max_ldt_segment,
262                             (struct user_segment_descriptor *)
263                             mdp1->md_ldt->ldt_base);
264                 }
265         } else
266                 mdp2->md_ldt = NULL;
267         mtx_unlock(&dt_lock);
268
269         /*
270          * Now, cpu_switch() can schedule the new process.
271          * pcb_rsp is loaded pointing to the cpu_switch() stack frame
272          * containing the return address when exiting cpu_switch.
273          * This will normally be to fork_trampoline(), which will have
274          * %ebx loaded with the new proc's pointer.  fork_trampoline()
275          * will set up a stack to call fork_return(p, frame); to complete
276          * the return to user-mode.
277          */
278 }
279
280 /*
281  * Intercept the return address from a freshly forked process that has NOT
282  * been scheduled yet.
283  *
284  * This is needed to make kernel threads stay in kernel mode.
285  */
286 void
287 cpu_set_fork_handler(td, func, arg)
288         struct thread *td;
289         void (*func)(void *);
290         void *arg;
291 {
292         /*
293          * Note that the trap frame follows the args, so the function
294          * is really called like this:  func(arg, frame);
295          */
296         td->td_pcb->pcb_r12 = (long) func;      /* function */
297         td->td_pcb->pcb_rbx = (long) arg;       /* first arg */
298 }
299
300 void
301 cpu_exit(struct thread *td)
302 {
303
304         /*
305          * If this process has a custom LDT, release it.
306          */
307         mtx_lock(&dt_lock);
308         if (td->td_proc->p_md.md_ldt != 0)
309                 user_ldt_free(td);
310         else
311                 mtx_unlock(&dt_lock);
312 }
313
314 void
315 cpu_thread_exit(struct thread *td)
316 {
317         struct pcb *pcb;
318
319         critical_enter();
320         if (td == PCPU_GET(fpcurthread))
321                 fpudrop();
322         critical_exit();
323
324         pcb = td->td_pcb;
325
326         /* Disable any hardware breakpoints. */
327         if (pcb->pcb_flags & PCB_DBREGS) {
328                 reset_dbregs();
329                 clear_pcb_flags(pcb, PCB_DBREGS);
330         }
331 }
332
333 void
334 cpu_thread_clean(struct thread *td)
335 {
336         struct pcb *pcb;
337
338         pcb = td->td_pcb;
339
340         /*
341          * Clean TSS/iomap
342          */
343         if (pcb->pcb_tssp != NULL) {
344                 kmem_free(kernel_arena, (vm_offset_t)pcb->pcb_tssp,
345                     ctob(IOPAGES + 1));
346                 pcb->pcb_tssp = NULL;
347         }
348 }
349
350 void
351 cpu_thread_swapin(struct thread *td)
352 {
353 }
354
355 void
356 cpu_thread_swapout(struct thread *td)
357 {
358 }
359
360 void
361 cpu_thread_alloc(struct thread *td)
362 {
363         struct pcb *pcb;
364         struct xstate_hdr *xhdr;
365
366         td->td_pcb = pcb = get_pcb_td(td);
367         td->td_frame = (struct trapframe *)pcb - 1;
368         pcb->pcb_save = get_pcb_user_save_pcb(pcb);
369         if (use_xsave) {
370                 xhdr = (struct xstate_hdr *)(pcb->pcb_save + 1);
371                 bzero(xhdr, sizeof(*xhdr));
372                 xhdr->xstate_bv = xsave_mask;
373         }
374 }
375
376 void
377 cpu_thread_free(struct thread *td)
378 {
379
380         cpu_thread_clean(td);
381 }
382
383 void
384 cpu_set_syscall_retval(struct thread *td, int error)
385 {
386
387         switch (error) {
388         case 0:
389                 td->td_frame->tf_rax = td->td_retval[0];
390                 td->td_frame->tf_rdx = td->td_retval[1];
391                 td->td_frame->tf_rflags &= ~PSL_C;
392                 break;
393
394         case ERESTART:
395                 /*
396                  * Reconstruct pc, we know that 'syscall' is 2 bytes,
397                  * lcall $X,y is 7 bytes, int 0x80 is 2 bytes.
398                  * We saved this in tf_err.
399                  * %r10 (which was holding the value of %rcx) is restored
400                  * for the next iteration.
401                  * %r10 restore is only required for freebsd/amd64 processes,
402                  * but shall be innocent for any ia32 ABI.
403                  *
404                  * Require full context restore to get the arguments
405                  * in the registers reloaded at return to usermode.
406                  */
407                 td->td_frame->tf_rip -= td->td_frame->tf_err;
408                 td->td_frame->tf_r10 = td->td_frame->tf_rcx;
409                 set_pcb_flags(td->td_pcb, PCB_FULL_IRET);
410                 break;
411
412         case EJUSTRETURN:
413                 break;
414
415         default:
416                 if (td->td_proc->p_sysent->sv_errsize) {
417                         if (error >= td->td_proc->p_sysent->sv_errsize)
418                                 error = -1;     /* XXX */
419                         else
420                                 error = td->td_proc->p_sysent->sv_errtbl[error];
421                 }
422                 td->td_frame->tf_rax = error;
423                 td->td_frame->tf_rflags |= PSL_C;
424                 break;
425         }
426 }
427
428 /*
429  * Initialize machine state (pcb and trap frame) for a new thread about to
430  * upcall. Put enough state in the new thread's PCB to get it to go back 
431  * userret(), where we can intercept it again to set the return (upcall)
432  * Address and stack, along with those from upcals that are from other sources
433  * such as those generated in thread_userret() itself.
434  */
435 void
436 cpu_set_upcall(struct thread *td, struct thread *td0)
437 {
438         struct pcb *pcb2;
439
440         /* Point the pcb to the top of the stack. */
441         pcb2 = td->td_pcb;
442
443         /*
444          * Copy the upcall pcb.  This loads kernel regs.
445          * Those not loaded individually below get their default
446          * values here.
447          */
448         bcopy(td0->td_pcb, pcb2, sizeof(*pcb2));
449         clear_pcb_flags(pcb2, PCB_FPUINITDONE | PCB_USERFPUINITDONE |
450             PCB_KERNFPU);
451         pcb2->pcb_save = get_pcb_user_save_pcb(pcb2);
452         bcopy(get_pcb_user_save_td(td0), pcb2->pcb_save,
453             cpu_max_ext_state_size);
454         set_pcb_flags(pcb2, PCB_FULL_IRET);
455
456         /*
457          * Create a new fresh stack for the new thread.
458          */
459         bcopy(td0->td_frame, td->td_frame, sizeof(struct trapframe));
460
461         /* If the current thread has the trap bit set (i.e. a debugger had
462          * single stepped the process to the system call), we need to clear
463          * the trap flag from the new frame. Otherwise, the new thread will
464          * receive a (likely unexpected) SIGTRAP when it executes the first
465          * instruction after returning to userland.
466          */
467         td->td_frame->tf_rflags &= ~PSL_T;
468
469         /*
470          * Set registers for trampoline to user mode.  Leave space for the
471          * return address on stack.  These are the kernel mode register values.
472          */
473         pcb2->pcb_r12 = (register_t)fork_return;            /* trampoline arg */
474         pcb2->pcb_rbp = 0;
475         pcb2->pcb_rsp = (register_t)td->td_frame - sizeof(void *);      /* trampoline arg */
476         pcb2->pcb_rbx = (register_t)td;                     /* trampoline arg */
477         pcb2->pcb_rip = (register_t)fork_trampoline;
478         /*
479          * If we didn't copy the pcb, we'd need to do the following registers:
480          * pcb2->pcb_cr3:       cloned above.
481          * pcb2->pcb_dr*:       cloned above.
482          * pcb2->pcb_savefpu:   cloned above.
483          * pcb2->pcb_onfault:   cloned above (always NULL here?).
484          * pcb2->pcb_[fg]sbase: cloned above
485          */
486
487         /* Setup to release spin count in fork_exit(). */
488         td->td_md.md_spinlock_count = 1;
489         td->td_md.md_saved_flags = PSL_KERNEL | PSL_I;
490 }
491
492 /*
493  * Set that machine state for performing an upcall that has to
494  * be done in thread_userret() so that those upcalls generated
495  * in thread_userret() itself can be done as well.
496  */
497 void
498 cpu_set_upcall_kse(struct thread *td, void (*entry)(void *), void *arg,
499         stack_t *stack)
500 {
501
502         /* 
503          * Do any extra cleaning that needs to be done.
504          * The thread may have optional components
505          * that are not present in a fresh thread.
506          * This may be a recycled thread so make it look
507          * as though it's newly allocated.
508          */
509         cpu_thread_clean(td);
510
511 #ifdef COMPAT_FREEBSD32
512         if (SV_PROC_FLAG(td->td_proc, SV_ILP32)) {
513                 /*
514                  * Set the trap frame to point at the beginning of the uts
515                  * function.
516                  */
517                 td->td_frame->tf_rbp = 0;
518                 td->td_frame->tf_rsp =
519                    (((uintptr_t)stack->ss_sp + stack->ss_size - 4) & ~0x0f) - 4;
520                 td->td_frame->tf_rip = (uintptr_t)entry;
521
522                 /*
523                  * Pass the address of the mailbox for this kse to the uts
524                  * function as a parameter on the stack.
525                  */
526                 suword32((void *)(td->td_frame->tf_rsp + sizeof(int32_t)),
527                     (uint32_t)(uintptr_t)arg);
528
529                 return;
530         }
531 #endif
532
533         /*
534          * Set the trap frame to point at the beginning of the uts
535          * function.
536          */
537         td->td_frame->tf_rbp = 0;
538         td->td_frame->tf_rsp =
539             ((register_t)stack->ss_sp + stack->ss_size) & ~0x0f;
540         td->td_frame->tf_rsp -= 8;
541         td->td_frame->tf_rip = (register_t)entry;
542         td->td_frame->tf_ds = _udatasel;
543         td->td_frame->tf_es = _udatasel;
544         td->td_frame->tf_fs = _ufssel;
545         td->td_frame->tf_gs = _ugssel;
546         td->td_frame->tf_flags = TF_HASSEGS;
547
548         /*
549          * Pass the address of the mailbox for this kse to the uts
550          * function as a parameter on the stack.
551          */
552         td->td_frame->tf_rdi = (register_t)arg;
553 }
554
555 int
556 cpu_set_user_tls(struct thread *td, void *tls_base)
557 {
558         struct pcb *pcb;
559
560         if ((u_int64_t)tls_base >= VM_MAXUSER_ADDRESS)
561                 return (EINVAL);
562
563         pcb = td->td_pcb;
564         set_pcb_flags(pcb, PCB_FULL_IRET);
565 #ifdef COMPAT_FREEBSD32
566         if (SV_PROC_FLAG(td->td_proc, SV_ILP32)) {
567                 pcb->pcb_gsbase = (register_t)tls_base;
568                 return (0);
569         }
570 #endif
571         pcb->pcb_fsbase = (register_t)tls_base;
572         return (0);
573 }
574
575 #ifdef SMP
576 static void
577 cpu_reset_proxy()
578 {
579         cpuset_t tcrp;
580
581         cpu_reset_proxy_active = 1;
582         while (cpu_reset_proxy_active == 1)
583                 ia32_pause(); /* Wait for other cpu to see that we've started */
584
585         CPU_SETOF(cpu_reset_proxyid, &tcrp);
586         stop_cpus(tcrp);
587         printf("cpu_reset_proxy: Stopped CPU %d\n", cpu_reset_proxyid);
588         DELAY(1000000);
589         cpu_reset_real();
590 }
591 #endif
592
593 void
594 cpu_reset()
595 {
596 #ifdef SMP
597         cpuset_t map;
598         u_int cnt;
599
600         if (smp_started) {
601                 map = all_cpus;
602                 CPU_CLR(PCPU_GET(cpuid), &map);
603                 CPU_NAND(&map, &stopped_cpus);
604                 if (!CPU_EMPTY(&map)) {
605                         printf("cpu_reset: Stopping other CPUs\n");
606                         stop_cpus(map);
607                 }
608
609                 if (PCPU_GET(cpuid) != 0) {
610                         cpu_reset_proxyid = PCPU_GET(cpuid);
611                         cpustop_restartfunc = cpu_reset_proxy;
612                         cpu_reset_proxy_active = 0;
613                         printf("cpu_reset: Restarting BSP\n");
614
615                         /* Restart CPU #0. */
616                         CPU_SETOF(0, &started_cpus);
617                         wmb();
618
619                         cnt = 0;
620                         while (cpu_reset_proxy_active == 0 && cnt < 10000000) {
621                                 ia32_pause();
622                                 cnt++;  /* Wait for BSP to announce restart */
623                         }
624                         if (cpu_reset_proxy_active == 0)
625                                 printf("cpu_reset: Failed to restart BSP\n");
626                         enable_intr();
627                         cpu_reset_proxy_active = 2;
628
629                         while (1)
630                                 ia32_pause();
631                         /* NOTREACHED */
632                 }
633
634                 DELAY(1000000);
635         }
636 #endif
637         cpu_reset_real();
638         /* NOTREACHED */
639 }
640
641 static void
642 cpu_reset_real()
643 {
644         struct region_descriptor null_idt;
645         int b;
646
647         disable_intr();
648
649         /*
650          * Attempt to do a CPU reset via the keyboard controller,
651          * do not turn off GateA20, as any machine that fails
652          * to do the reset here would then end up in no man's land.
653          */
654         outb(IO_KBD + 4, 0xFE);
655         DELAY(500000);  /* wait 0.5 sec to see if that did it */
656
657         /*
658          * Attempt to force a reset via the Reset Control register at
659          * I/O port 0xcf9.  Bit 2 forces a system reset when it
660          * transitions from 0 to 1.  Bit 1 selects the type of reset
661          * to attempt: 0 selects a "soft" reset, and 1 selects a
662          * "hard" reset.  We try a "hard" reset.  The first write sets
663          * bit 1 to select a "hard" reset and clears bit 2.  The
664          * second write forces a 0 -> 1 transition in bit 2 to trigger
665          * a reset.
666          */
667         outb(0xcf9, 0x2);
668         outb(0xcf9, 0x6);
669         DELAY(500000);  /* wait 0.5 sec to see if that did it */
670
671         /*
672          * Attempt to force a reset via the Fast A20 and Init register
673          * at I/O port 0x92.  Bit 1 serves as an alternate A20 gate.
674          * Bit 0 asserts INIT# when set to 1.  We are careful to only
675          * preserve bit 1 while setting bit 0.  We also must clear bit
676          * 0 before setting it if it isn't already clear.
677          */
678         b = inb(0x92);
679         if (b != 0xff) {
680                 if ((b & 0x1) != 0)
681                         outb(0x92, b & 0xfe);
682                 outb(0x92, b | 0x1);
683                 DELAY(500000);  /* wait 0.5 sec to see if that did it */
684         }
685
686         printf("No known reset method worked, attempting CPU shutdown\n");
687         DELAY(1000000); /* wait 1 sec for printf to complete */
688
689         /* Wipe the IDT. */
690         null_idt.rd_limit = 0;
691         null_idt.rd_base = 0;
692         lidt(&null_idt);
693
694         /* "good night, sweet prince .... <THUNK!>" */
695         breakpoint();
696
697         /* NOTREACHED */
698         while(1);
699 }
700
701 /*
702  * Software interrupt handler for queued VM system processing.
703  */   
704 void  
705 swi_vm(void *dummy) 
706 {     
707         if (busdma_swi_pending != 0)
708                 busdma_swi();
709 }
710
711 /*
712  * Tell whether this address is in some physical memory region.
713  * Currently used by the kernel coredump code in order to avoid
714  * dumping the ``ISA memory hole'' which could cause indefinite hangs,
715  * or other unpredictable behaviour.
716  */
717
718 int
719 is_physical_memory(vm_paddr_t addr)
720 {
721
722 #ifdef DEV_ISA
723         /* The ISA ``memory hole''. */
724         if (addr >= 0xa0000 && addr < 0x100000)
725                 return 0;
726 #endif
727
728         /*
729          * stuff other tests for known memory-mapped devices (PCI?)
730          * here
731          */
732
733         return 1;
734 }