kernel - Report actual real memory during kernel boot
[dragonfly.git] / sys / platform / pc32 / i386 / machdep.c
1 /*-
2  * Copyright (c) 1992 Terrence R. Lambert.
3  * Copyright (c) 1982, 1987, 1990 The Regents of the University of California.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * William Jolitz.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *      This product includes software developed by the University of
20  *      California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  *
37  *      from: @(#)machdep.c     7.4 (Berkeley) 6/3/91
38  * $FreeBSD: src/sys/i386/i386/machdep.c,v 1.385.2.30 2003/05/31 08:48:05 alc Exp $
39  */
40
41 #include "use_apm.h"
42 #include "use_ether.h"
43 #include "use_npx.h"
44 #include "use_isa.h"
45 #include "opt_atalk.h"
46 #include "opt_compat.h"
47 #include "opt_cpu.h"
48 #include "opt_ddb.h"
49 #include "opt_directio.h"
50 #include "opt_inet.h"
51 #include "opt_ipx.h"
52 #include "opt_maxmem.h"
53 #include "opt_msgbuf.h"
54 #include "opt_perfmon.h"
55 #include "opt_swap.h"
56 #include "opt_userconfig.h"
57
58 #include <sys/param.h>
59 #include <sys/systm.h>
60 #include <sys/sysproto.h>
61 #include <sys/signalvar.h>
62 #include <sys/kernel.h>
63 #include <sys/linker.h>
64 #include <sys/malloc.h>
65 #include <sys/proc.h>
66 #include <sys/priv.h>
67 #include <sys/buf.h>
68 #include <sys/reboot.h>
69 #include <sys/mbuf.h>
70 #include <sys/msgbuf.h>
71 #include <sys/sysent.h>
72 #include <sys/sysctl.h>
73 #include <sys/vmmeter.h>
74 #include <sys/bus.h>
75 #include <sys/upcall.h>
76 #include <sys/usched.h>
77 #include <sys/reg.h>
78
79 #include <vm/vm.h>
80 #include <vm/vm_param.h>
81 #include <sys/lock.h>
82 #include <vm/vm_kern.h>
83 #include <vm/vm_object.h>
84 #include <vm/vm_page.h>
85 #include <vm/vm_map.h>
86 #include <vm/vm_pager.h>
87 #include <vm/vm_extern.h>
88
89 #include <sys/thread2.h>
90 #include <sys/mplock2.h>
91
92 #include <sys/user.h>
93 #include <sys/exec.h>
94 #include <sys/cons.h>
95
96 #include <ddb/ddb.h>
97
98 #include <machine/cpu.h>
99 #include <machine/clock.h>
100 #include <machine/specialreg.h>
101 #include <machine/bootinfo.h>
102 #include <machine/md_var.h>
103 #include <machine/pcb_ext.h>            /* pcb.h included via sys/user.h */
104 #include <machine/globaldata.h>         /* CPU_prvspace */
105 #include <machine/smp.h>
106 #ifdef PERFMON
107 #include <machine/perfmon.h>
108 #endif
109 #include <machine/cputypes.h>
110
111 #ifdef OLD_BUS_ARCH
112 #include <bus/isa/isa_device.h>
113 #endif
114 #include <machine_base/isa/intr_machdep.h>
115 #include <bus/isa/rtc.h>
116 #include <machine/vm86.h>
117 #include <sys/random.h>
118 #include <sys/ptrace.h>
119 #include <machine/sigframe.h>
120
121 #define PHYSMAP_ENTRIES         10
122
123 extern void init386(int first);
124 extern void dblfault_handler(void);
125
126 extern void printcpuinfo(void); /* XXX header file */
127 extern void finishidentcpu(void);
128 extern void panicifcpuunsupported(void);
129 extern void initializecpu(void);
130
131 static void cpu_startup(void *);
132 #ifndef CPU_DISABLE_SSE
133 static void set_fpregs_xmm(struct save87 *, struct savexmm *);
134 static void fill_fpregs_xmm(struct savexmm *, struct save87 *);
135 #endif /* CPU_DISABLE_SSE */
136 #ifdef DIRECTIO
137 extern void ffs_rawread_setup(void);
138 #endif /* DIRECTIO */
139 static void init_locks(void);
140
141 SYSINIT(cpu, SI_BOOT2_SMP, SI_ORDER_FIRST, cpu_startup, NULL)
142
143 int     _udatasel, _ucodesel;
144 u_int   atdevbase;
145 #ifdef SMP
146 int64_t tsc_offsets[MAXCPU];
147 #else
148 int64_t tsc_offsets[1];
149 #endif
150
151 #if defined(SWTCH_OPTIM_STATS)
152 extern int swtch_optim_stats;
153 SYSCTL_INT(_debug, OID_AUTO, swtch_optim_stats,
154         CTLFLAG_RD, &swtch_optim_stats, 0, "");
155 SYSCTL_INT(_debug, OID_AUTO, tlb_flush_count,
156         CTLFLAG_RD, &tlb_flush_count, 0, "");
157 #endif
158
159 int physmem = 0;
160
161 u_long ebda_addr = 0;
162
163 static int
164 sysctl_hw_physmem(SYSCTL_HANDLER_ARGS)
165 {
166         int error = sysctl_handle_int(oidp, 0, ctob(physmem), req);
167         return (error);
168 }
169
170 SYSCTL_PROC(_hw, HW_PHYSMEM, physmem, CTLTYPE_INT|CTLFLAG_RD,
171         0, 0, sysctl_hw_physmem, "IU", "");
172
173 static int
174 sysctl_hw_usermem(SYSCTL_HANDLER_ARGS)
175 {
176         int error = sysctl_handle_int(oidp, 0,
177                 ctob(physmem - vmstats.v_wire_count), req);
178         return (error);
179 }
180
181 SYSCTL_PROC(_hw, HW_USERMEM, usermem, CTLTYPE_INT|CTLFLAG_RD,
182         0, 0, sysctl_hw_usermem, "IU", "");
183
184 static int
185 sysctl_hw_availpages(SYSCTL_HANDLER_ARGS)
186 {
187         int error = sysctl_handle_int(oidp, 0,
188                 i386_btop(avail_end - avail_start), req);
189         return (error);
190 }
191
192 SYSCTL_PROC(_hw, OID_AUTO, availpages, CTLTYPE_INT|CTLFLAG_RD,
193         0, 0, sysctl_hw_availpages, "I", "");
194
195 vm_paddr_t Maxmem;
196 vm_paddr_t Realmem;
197
198 vm_paddr_t phys_avail[PHYSMAP_ENTRIES*2+2];
199 vm_paddr_t dump_avail[PHYSMAP_ENTRIES*2+2];
200
201
202 static vm_offset_t buffer_sva, buffer_eva;
203 vm_offset_t clean_sva, clean_eva;
204 static vm_offset_t pager_sva, pager_eva;
205 static struct trapframe proc0_tf;
206
207 static void
208 cpu_startup(void *dummy)
209 {
210         caddr_t v;
211         vm_size_t size = 0;
212         vm_offset_t firstaddr;
213
214         if (boothowto & RB_VERBOSE)
215                 bootverbose++;
216
217         /*
218          * Good {morning,afternoon,evening,night}.
219          */
220         kprintf("%s", version);
221         startrtclock();
222         printcpuinfo();
223         panicifcpuunsupported();
224 #ifdef PERFMON
225         perfmon_init();
226 #endif
227         kprintf("real memory  = %ju (%ju MB)\n",
228                 (intmax_t)Realmem,
229                 (intmax_t)Realmem / 1024 / 1024);
230         /*
231          * Display any holes after the first chunk of extended memory.
232          */
233         if (bootverbose) {
234                 int indx;
235
236                 kprintf("Physical memory chunk(s):\n");
237                 for (indx = 0; phys_avail[indx + 1] != 0; indx += 2) {
238                         vm_paddr_t size1 = phys_avail[indx + 1] - phys_avail[indx];
239
240                         kprintf("0x%08llx - 0x%08llx, %llu bytes (%llu pages)\n",
241                             phys_avail[indx], phys_avail[indx + 1] - 1, size1,
242                             size1 / PAGE_SIZE);
243                 }
244         }
245
246         /*
247          * Allocate space for system data structures.
248          * The first available kernel virtual address is in "v".
249          * As pages of kernel virtual memory are allocated, "v" is incremented.
250          * As pages of memory are allocated and cleared,
251          * "firstaddr" is incremented.
252          * An index into the kernel page table corresponding to the
253          * virtual memory address maintained in "v" is kept in "mapaddr".
254          */
255
256         /*
257          * Make two passes.  The first pass calculates how much memory is
258          * needed and allocates it.  The second pass assigns virtual
259          * addresses to the various data structures.
260          */
261         firstaddr = 0;
262 again:
263         v = (caddr_t)firstaddr;
264
265 #define valloc(name, type, num) \
266             (name) = (type *)v; v = (caddr_t)((name)+(num))
267 #define valloclim(name, type, num, lim) \
268             (name) = (type *)v; v = (caddr_t)((lim) = ((name)+(num)))
269
270         /*
271          * The nominal buffer size (and minimum KVA allocation) is BKVASIZE.
272          * For the first 64MB of ram nominally allocate sufficient buffers to
273          * cover 1/4 of our ram.  Beyond the first 64MB allocate additional
274          * buffers to cover 1/20 of our ram over 64MB.  When auto-sizing
275          * the buffer cache we limit the eventual kva reservation to
276          * maxbcache bytes.
277          *
278          * factor represents the 1/4 x ram conversion.
279          */
280         if (nbuf == 0) {
281                 int factor = 4 * BKVASIZE / 1024;
282                 int kbytes = physmem * (PAGE_SIZE / 1024);
283
284                 nbuf = 50;
285                 if (kbytes > 4096)
286                         nbuf += min((kbytes - 4096) / factor, 65536 / factor);
287                 if (kbytes > 65536)
288                         nbuf += (kbytes - 65536) * 2 / (factor * 5);
289                 if (maxbcache && nbuf > maxbcache / BKVASIZE)
290                         nbuf = maxbcache / BKVASIZE;
291         }
292
293         /*
294          * Do not allow the buffer_map to be more then 1/2 the size of the
295          * kernel_map.
296          */
297         if (nbuf > (virtual_end - virtual_start) / (BKVASIZE * 2)) {
298                 nbuf = (virtual_end - virtual_start) / (BKVASIZE * 2);
299                 kprintf("Warning: nbufs capped at %d\n", nbuf);
300         }
301
302         nswbuf = max(min(nbuf/4, 256), 16);
303 #ifdef NSWBUF_MIN
304         if (nswbuf < NSWBUF_MIN)
305                 nswbuf = NSWBUF_MIN;
306 #endif
307 #ifdef DIRECTIO
308         ffs_rawread_setup();
309 #endif
310
311         valloc(swbuf, struct buf, nswbuf);
312         valloc(buf, struct buf, nbuf);
313
314         /*
315          * End of first pass, size has been calculated so allocate memory
316          */
317         if (firstaddr == 0) {
318                 size = (vm_size_t)(v - firstaddr);
319                 firstaddr = kmem_alloc(&kernel_map, round_page(size));
320                 if (firstaddr == 0)
321                         panic("startup: no room for tables");
322                 goto again;
323         }
324
325         /*
326          * End of second pass, addresses have been assigned
327          */
328         if ((vm_size_t)(v - firstaddr) != size)
329                 panic("startup: table size inconsistency");
330
331         kmem_suballoc(&kernel_map, &clean_map, &clean_sva, &clean_eva,
332                       (nbuf*BKVASIZE) + (nswbuf*MAXPHYS) + pager_map_size);
333         kmem_suballoc(&clean_map, &buffer_map, &buffer_sva, &buffer_eva,
334                       (nbuf*BKVASIZE));
335         buffer_map.system_map = 1;
336         kmem_suballoc(&clean_map, &pager_map, &pager_sva, &pager_eva,
337                       (nswbuf*MAXPHYS) + pager_map_size);
338         pager_map.system_map = 1;
339
340 #if defined(USERCONFIG)
341         userconfig();
342         cninit();               /* the preferred console may have changed */
343 #endif
344
345         kprintf("avail memory = %ju (%ju MB)\n",
346                 (intmax_t)ptoa(vmstats.v_free_count),
347                 (intmax_t)ptoa(vmstats.v_free_count) / 1024 / 1024);
348
349         /*
350          * Set up buffers, so they can be used to read disk labels.
351          */
352         bufinit();
353         vm_pager_bufferinit();
354
355 #ifdef SMP
356         /*
357          * OK, enough kmem_alloc/malloc state should be up, lets get on with it!
358          */
359         mp_start();                     /* fire up the APs and APICs */
360         mp_announce();
361 #endif  /* SMP */
362         cpu_setregs();
363 }
364
365 /*
366  * Send an interrupt to process.
367  *
368  * Stack is set up to allow sigcode stored
369  * at top to call routine, followed by kcall
370  * to sigreturn routine below.  After sigreturn
371  * resets the signal mask, the stack, and the
372  * frame pointer, it returns to the user
373  * specified pc, psl.
374  */
375 void
376 sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
377 {
378         struct lwp *lp = curthread->td_lwp;
379         struct proc *p = lp->lwp_proc;
380         struct trapframe *regs;
381         struct sigacts *psp = p->p_sigacts;
382         struct sigframe sf, *sfp;
383         int oonstack;
384
385         regs = lp->lwp_md.md_regs;
386         oonstack = (lp->lwp_sigstk.ss_flags & SS_ONSTACK) ? 1 : 0;
387
388         /* save user context */
389         bzero(&sf, sizeof(struct sigframe));
390         sf.sf_uc.uc_sigmask = *mask;
391         sf.sf_uc.uc_stack = lp->lwp_sigstk;
392         sf.sf_uc.uc_mcontext.mc_onstack = oonstack;
393         bcopy(regs, &sf.sf_uc.uc_mcontext.mc_gs, sizeof(struct trapframe));
394
395         /* make the size of the saved context visible to userland */
396         sf.sf_uc.uc_mcontext.mc_len = sizeof(sf.sf_uc.uc_mcontext);
397
398         /* save mailbox pending state for syscall interlock semantics */
399         if (p->p_flag & P_MAILBOX)
400                 sf.sf_uc.uc_mcontext.mc_xflags |= PGEX_MAILBOX;
401
402         /* Allocate and validate space for the signal handler context. */
403         if ((lp->lwp_flag & LWP_ALTSTACK) != 0 && !oonstack &&
404             SIGISMEMBER(psp->ps_sigonstack, sig)) {
405                 sfp = (struct sigframe *)(lp->lwp_sigstk.ss_sp +
406                     lp->lwp_sigstk.ss_size - sizeof(struct sigframe));
407                 lp->lwp_sigstk.ss_flags |= SS_ONSTACK;
408         } else {
409                 sfp = (struct sigframe *)regs->tf_esp - 1;
410         }
411
412         /* Translate the signal is appropriate */
413         if (p->p_sysent->sv_sigtbl) {
414                 if (sig <= p->p_sysent->sv_sigsize)
415                         sig = p->p_sysent->sv_sigtbl[_SIG_IDX(sig)];
416         }
417
418         /* Build the argument list for the signal handler. */
419         sf.sf_signum = sig;
420         sf.sf_ucontext = (register_t)&sfp->sf_uc;
421         if (SIGISMEMBER(psp->ps_siginfo, sig)) {
422                 /* Signal handler installed with SA_SIGINFO. */
423                 sf.sf_siginfo = (register_t)&sfp->sf_si;
424                 sf.sf_ahu.sf_action = (__siginfohandler_t *)catcher;
425
426                 /* fill siginfo structure */
427                 sf.sf_si.si_signo = sig;
428                 sf.sf_si.si_code = code;
429                 sf.sf_si.si_addr = (void*)regs->tf_err;
430         }
431         else {
432                 /* Old FreeBSD-style arguments. */
433                 sf.sf_siginfo = code;
434                 sf.sf_addr = regs->tf_err;
435                 sf.sf_ahu.sf_handler = catcher;
436         }
437
438         /*
439          * If we're a vm86 process, we want to save the segment registers.
440          * We also change eflags to be our emulated eflags, not the actual
441          * eflags.
442          */
443         if (regs->tf_eflags & PSL_VM) {
444                 struct trapframe_vm86 *tf = (struct trapframe_vm86 *)regs;
445                 struct vm86_kernel *vm86 = &lp->lwp_thread->td_pcb->pcb_ext->ext_vm86;
446
447                 sf.sf_uc.uc_mcontext.mc_gs = tf->tf_vm86_gs;
448                 sf.sf_uc.uc_mcontext.mc_fs = tf->tf_vm86_fs;
449                 sf.sf_uc.uc_mcontext.mc_es = tf->tf_vm86_es;
450                 sf.sf_uc.uc_mcontext.mc_ds = tf->tf_vm86_ds;
451
452                 if (vm86->vm86_has_vme == 0)
453                         sf.sf_uc.uc_mcontext.mc_eflags =
454                             (tf->tf_eflags & ~(PSL_VIF | PSL_VIP)) |
455                             (vm86->vm86_eflags & (PSL_VIF | PSL_VIP));
456
457                 /*
458                  * Clear PSL_NT to inhibit T_TSSFLT faults on return from
459                  * syscalls made by the signal handler.  This just avoids
460                  * wasting time for our lazy fixup of such faults.  PSL_NT
461                  * does nothing in vm86 mode, but vm86 programs can set it
462                  * almost legitimately in probes for old cpu types.
463                  */
464                 tf->tf_eflags &= ~(PSL_VM | PSL_NT | PSL_VIF | PSL_VIP);
465         }
466
467         /*
468          * Save the FPU state and reinit the FP unit
469          */
470         npxpush(&sf.sf_uc.uc_mcontext);
471
472         /*
473          * Copy the sigframe out to the user's stack.
474          */
475         if (copyout(&sf, sfp, sizeof(struct sigframe)) != 0) {
476                 /*
477                  * Something is wrong with the stack pointer.
478                  * ...Kill the process.
479                  */
480                 sigexit(lp, SIGILL);
481         }
482
483         regs->tf_esp = (int)sfp;
484         regs->tf_eip = PS_STRINGS - *(p->p_sysent->sv_szsigcode);
485
486         /*
487          * i386 abi specifies that the direction flag must be cleared
488          * on function entry
489          */
490         regs->tf_eflags &= ~(PSL_T|PSL_D);
491
492         regs->tf_cs = _ucodesel;
493         regs->tf_ds = _udatasel;
494         regs->tf_es = _udatasel;
495
496         /*
497          * Allow the signal handler to inherit %fs in addition to %gs as
498          * the userland program might be using both.
499          *
500          * However, if a T_PROTFLT occured the segment registers could be
501          * totally broken.  They must be reset in order to be able to
502          * return to userland.
503          */
504         if (regs->tf_trapno == T_PROTFLT) {
505                 regs->tf_fs = _udatasel;
506                 regs->tf_gs = _udatasel;
507         }
508         regs->tf_ss = _udatasel;
509 }
510
511 /*
512  * Sanitize the trapframe for a virtual kernel passing control to a custom
513  * VM context.  Remove any items that would otherwise create a privilage
514  * issue.
515  *
516  * XXX at the moment we allow userland to set the resume flag.  Is this a
517  * bad idea?
518  */
519 int
520 cpu_sanitize_frame(struct trapframe *frame)
521 {
522         frame->tf_cs = _ucodesel;
523         frame->tf_ds = _udatasel;
524         frame->tf_es = _udatasel;       /* XXX allow userland this one too? */
525 #if 0
526         frame->tf_fs = _udatasel;
527         frame->tf_gs = _udatasel;
528 #endif
529         frame->tf_ss = _udatasel;
530         frame->tf_eflags &= (PSL_RF | PSL_USERCHANGE);
531         frame->tf_eflags |= PSL_RESERVED_DEFAULT | PSL_I;
532         return(0);
533 }
534
535 int
536 cpu_sanitize_tls(struct savetls *tls)
537 {
538          struct segment_descriptor *desc;
539          int i;
540
541          for (i = 0; i < NGTLS; ++i) {
542                 desc = &tls->tls[i];
543                 if (desc->sd_dpl == 0 && desc->sd_type == 0)
544                         continue;
545                 if (desc->sd_def32 == 0)
546                         return(ENXIO);
547                 if (desc->sd_type != SDT_MEMRWA)
548                         return(ENXIO);
549                 if (desc->sd_dpl != SEL_UPL)
550                         return(ENXIO);
551                 if (desc->sd_xx != 0 || desc->sd_p != 1)
552                         return(ENXIO);
553          }
554          return(0);
555 }
556
557 /*
558  * sigreturn(ucontext_t *sigcntxp)
559  *
560  * System call to cleanup state after a signal
561  * has been taken.  Reset signal mask and
562  * stack state from context left by sendsig (above).
563  * Return to previous pc and psl as specified by
564  * context left by sendsig. Check carefully to
565  * make sure that the user has not modified the
566  * state to gain improper privileges.
567  *
568  * MPSAFE
569  */
570 #define EFL_SECURE(ef, oef)     ((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0)
571 #define CS_SECURE(cs)           (ISPL(cs) == SEL_UPL)
572
573 int
574 sys_sigreturn(struct sigreturn_args *uap)
575 {
576         struct lwp *lp = curthread->td_lwp;
577         struct proc *p = lp->lwp_proc;
578         struct trapframe *regs;
579         ucontext_t uc;
580         ucontext_t *ucp;
581         int cs;
582         int eflags;
583         int error;
584
585         /*
586          * We have to copy the information into kernel space so userland
587          * can't modify it while we are sniffing it.
588          */
589         regs = lp->lwp_md.md_regs;
590         error = copyin(uap->sigcntxp, &uc, sizeof(uc));
591         if (error)
592                 return (error);
593         ucp = &uc;
594         eflags = ucp->uc_mcontext.mc_eflags;
595
596         if (eflags & PSL_VM) {
597                 struct trapframe_vm86 *tf = (struct trapframe_vm86 *)regs;
598                 struct vm86_kernel *vm86;
599
600                 /*
601                  * if pcb_ext == 0 or vm86_inited == 0, the user hasn't
602                  * set up the vm86 area, and we can't enter vm86 mode.
603                  */
604                 if (lp->lwp_thread->td_pcb->pcb_ext == 0)
605                         return (EINVAL);
606                 vm86 = &lp->lwp_thread->td_pcb->pcb_ext->ext_vm86;
607                 if (vm86->vm86_inited == 0)
608                         return (EINVAL);
609
610                 /* go back to user mode if both flags are set */
611                 if ((eflags & PSL_VIP) && (eflags & PSL_VIF))
612                         trapsignal(lp, SIGBUS, 0);
613
614                 if (vm86->vm86_has_vme) {
615                         eflags = (tf->tf_eflags & ~VME_USERCHANGE) |
616                             (eflags & VME_USERCHANGE) | PSL_VM;
617                 } else {
618                         vm86->vm86_eflags = eflags;     /* save VIF, VIP */
619                         eflags = (tf->tf_eflags & ~VM_USERCHANGE) |
620                             (eflags & VM_USERCHANGE) | PSL_VM;
621                 }
622                 bcopy(&ucp->uc_mcontext.mc_gs, tf, sizeof(struct trapframe));
623                 tf->tf_eflags = eflags;
624                 tf->tf_vm86_ds = tf->tf_ds;
625                 tf->tf_vm86_es = tf->tf_es;
626                 tf->tf_vm86_fs = tf->tf_fs;
627                 tf->tf_vm86_gs = tf->tf_gs;
628                 tf->tf_ds = _udatasel;
629                 tf->tf_es = _udatasel;
630 #if 0
631                 tf->tf_fs = _udatasel;
632                 tf->tf_gs = _udatasel;
633 #endif
634         } else {
635                 /*
636                  * Don't allow users to change privileged or reserved flags.
637                  */
638                 /*
639                  * XXX do allow users to change the privileged flag PSL_RF.
640                  * The cpu sets PSL_RF in tf_eflags for faults.  Debuggers
641                  * should sometimes set it there too.  tf_eflags is kept in
642                  * the signal context during signal handling and there is no
643                  * other place to remember it, so the PSL_RF bit may be
644                  * corrupted by the signal handler without us knowing.
645                  * Corruption of the PSL_RF bit at worst causes one more or
646                  * one less debugger trap, so allowing it is fairly harmless.
647                  */
648                 if (!EFL_SECURE(eflags & ~PSL_RF, regs->tf_eflags & ~PSL_RF)) {
649                         kprintf("sigreturn: eflags = 0x%x\n", eflags);
650                         return(EINVAL);
651                 }
652
653                 /*
654                  * Don't allow users to load a valid privileged %cs.  Let the
655                  * hardware check for invalid selectors, excess privilege in
656                  * other selectors, invalid %eip's and invalid %esp's.
657                  */
658                 cs = ucp->uc_mcontext.mc_cs;
659                 if (!CS_SECURE(cs)) {
660                         kprintf("sigreturn: cs = 0x%x\n", cs);
661                         trapsignal(lp, SIGBUS, T_PROTFLT);
662                         return(EINVAL);
663                 }
664                 bcopy(&ucp->uc_mcontext.mc_gs, regs, sizeof(struct trapframe));
665         }
666
667         /*
668          * Restore the FPU state from the frame
669          */
670         crit_enter();
671         npxpop(&ucp->uc_mcontext);
672
673         /*
674          * Merge saved signal mailbox pending flag to maintain interlock
675          * semantics against system calls.
676          */
677         if (ucp->uc_mcontext.mc_xflags & PGEX_MAILBOX)
678                 p->p_flag |= P_MAILBOX;
679
680         if (ucp->uc_mcontext.mc_onstack & 1)
681                 lp->lwp_sigstk.ss_flags |= SS_ONSTACK;
682         else
683                 lp->lwp_sigstk.ss_flags &= ~SS_ONSTACK;
684
685         lp->lwp_sigmask = ucp->uc_sigmask;
686         SIG_CANTMASK(lp->lwp_sigmask);
687         crit_exit();
688         return(EJUSTRETURN);
689 }
690
691 /*
692  * Stack frame on entry to function.  %eax will contain the function vector,
693  * %ecx will contain the function data.  flags, ecx, and eax will have 
694  * already been pushed on the stack.
695  */
696 struct upc_frame {
697         register_t      eax;
698         register_t      ecx;
699         register_t      edx;
700         register_t      flags;
701         register_t      oldip;
702 };
703
704 void
705 sendupcall(struct vmupcall *vu, int morepending)
706 {
707         struct lwp *lp = curthread->td_lwp;
708         struct trapframe *regs;
709         struct upcall upcall;
710         struct upc_frame upc_frame;
711         int     crit_count = 0;
712
713         /*
714          * If we are a virtual kernel running an emulated user process
715          * context, switch back to the virtual kernel context before
716          * trying to post the signal.
717          */
718         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
719                 lp->lwp_md.md_regs->tf_trapno = 0;
720                 vkernel_trap(lp, lp->lwp_md.md_regs);
721         }
722
723         /*
724          * Get the upcall data structure
725          */
726         if (copyin(lp->lwp_upcall, &upcall, sizeof(upcall)) ||
727             copyin((char *)upcall.upc_uthread + upcall.upc_critoff, &crit_count, sizeof(int))
728         ) {
729                 vu->vu_pending = 0;
730                 kprintf("bad upcall address\n");
731                 return;
732         }
733
734         /*
735          * If the data structure is already marked pending or has a critical
736          * section count, mark the data structure as pending and return 
737          * without doing an upcall.  vu_pending is left set.
738          */
739         if (upcall.upc_pending || crit_count >= vu->vu_pending) {
740                 if (upcall.upc_pending < vu->vu_pending) {
741                         upcall.upc_pending = vu->vu_pending;
742                         copyout(&upcall.upc_pending, &lp->lwp_upcall->upc_pending,
743                                 sizeof(upcall.upc_pending));
744                 }
745                 return;
746         }
747
748         /*
749          * We can run this upcall now, clear vu_pending.
750          *
751          * Bump our critical section count and set or clear the
752          * user pending flag depending on whether more upcalls are
753          * pending.  The user will be responsible for calling 
754          * upc_dispatch(-1) to process remaining upcalls.
755          */
756         vu->vu_pending = 0;
757         upcall.upc_pending = morepending;
758         ++crit_count;
759         copyout(&upcall.upc_pending, &lp->lwp_upcall->upc_pending, 
760                 sizeof(upcall.upc_pending));
761         copyout(&crit_count, (char *)upcall.upc_uthread + upcall.upc_critoff,
762                 sizeof(int));
763
764         /*
765          * Construct a stack frame and issue the upcall
766          */
767         regs = lp->lwp_md.md_regs;
768         upc_frame.eax = regs->tf_eax;
769         upc_frame.ecx = regs->tf_ecx;
770         upc_frame.edx = regs->tf_edx;
771         upc_frame.flags = regs->tf_eflags;
772         upc_frame.oldip = regs->tf_eip;
773         if (copyout(&upc_frame, (void *)(regs->tf_esp - sizeof(upc_frame)),
774             sizeof(upc_frame)) != 0) {
775                 kprintf("bad stack on upcall\n");
776         } else {
777                 regs->tf_eax = (register_t)vu->vu_func;
778                 regs->tf_ecx = (register_t)vu->vu_data;
779                 regs->tf_edx = (register_t)lp->lwp_upcall;
780                 regs->tf_eip = (register_t)vu->vu_ctx;
781                 regs->tf_esp -= sizeof(upc_frame);
782         }
783 }
784
785 /*
786  * fetchupcall occurs in the context of a system call, which means that
787  * we have to return EJUSTRETURN in order to prevent eax and edx from
788  * being overwritten by the syscall return value.
789  *
790  * if vu is not NULL we return the new context in %edx, the new data in %ecx,
791  * and the function pointer in %eax.  
792  */
793 int
794 fetchupcall(struct vmupcall *vu, int morepending, void *rsp)
795 {
796         struct upc_frame upc_frame;
797         struct lwp *lp = curthread->td_lwp;
798         struct trapframe *regs;
799         int error;
800         struct upcall upcall;
801         int crit_count;
802
803         regs = lp->lwp_md.md_regs;
804
805         error = copyout(&morepending, &lp->lwp_upcall->upc_pending, sizeof(int));
806         if (error == 0) {
807             if (vu) {
808                 /*
809                  * This jumps us to the next ready context.
810                  */
811                 vu->vu_pending = 0;
812                 error = copyin(lp->lwp_upcall, &upcall, sizeof(upcall));
813                 crit_count = 0;
814                 if (error == 0)
815                         error = copyin((char *)upcall.upc_uthread + upcall.upc_critoff, &crit_count, sizeof(int));
816                 ++crit_count;
817                 if (error == 0)
818                         error = copyout(&crit_count, (char *)upcall.upc_uthread + upcall.upc_critoff, sizeof(int));
819                 regs->tf_eax = (register_t)vu->vu_func;
820                 regs->tf_ecx = (register_t)vu->vu_data;
821                 regs->tf_edx = (register_t)lp->lwp_upcall;
822                 regs->tf_eip = (register_t)vu->vu_ctx;
823                 regs->tf_esp = (register_t)rsp;
824             } else {
825                 /*
826                  * This returns us to the originally interrupted code.
827                  */
828                 error = copyin(rsp, &upc_frame, sizeof(upc_frame));
829                 regs->tf_eax = upc_frame.eax;
830                 regs->tf_ecx = upc_frame.ecx;
831                 regs->tf_edx = upc_frame.edx;
832                 regs->tf_eflags = (regs->tf_eflags & ~PSL_USERCHANGE) |
833                                 (upc_frame.flags & PSL_USERCHANGE);
834                 regs->tf_eip = upc_frame.oldip;
835                 regs->tf_esp = (register_t)((char *)rsp + sizeof(upc_frame));
836             }
837         }
838         if (error == 0)
839                 error = EJUSTRETURN;
840         return(error);
841 }
842
843 /*
844  * Machine dependent boot() routine
845  *
846  * I haven't seen anything to put here yet
847  * Possibly some stuff might be grafted back here from boot()
848  */
849 void
850 cpu_boot(int howto)
851 {
852 }
853
854 /*
855  * Shutdown the CPU as much as possible
856  */
857 void
858 cpu_halt(void)
859 {
860         for (;;)
861                 __asm__ __volatile("hlt");
862 }
863
864 /*
865  * cpu_idle() represents the idle LWKT.  You cannot return from this function
866  * (unless you want to blow things up!).  Instead we look for runnable threads
867  * and loop or halt as appropriate.  Giant is not held on entry to the thread.
868  *
869  * The main loop is entered with a critical section held, we must release
870  * the critical section before doing anything else.  lwkt_switch() will
871  * check for pending interrupts due to entering and exiting its own 
872  * critical section.
873  *
874  * Note on cpu_idle_hlt:  On an SMP system we rely on a scheduler IPI
875  * to wake a HLTed cpu up.  However, there are cases where the idlethread
876  * will be entered with the possibility that no IPI will occur and in such
877  * cases lwkt_switch() sets TDF_IDLE_NOHLT.
878  */
879 static int      cpu_idle_hlt = 1;
880 static int      cpu_idle_hltcnt;
881 static int      cpu_idle_spincnt;
882 SYSCTL_INT(_machdep, OID_AUTO, cpu_idle_hlt, CTLFLAG_RW,
883     &cpu_idle_hlt, 0, "Idle loop HLT enable");
884 SYSCTL_INT(_machdep, OID_AUTO, cpu_idle_hltcnt, CTLFLAG_RW,
885     &cpu_idle_hltcnt, 0, "Idle loop entry halts");
886 SYSCTL_INT(_machdep, OID_AUTO, cpu_idle_spincnt, CTLFLAG_RW,
887     &cpu_idle_spincnt, 0, "Idle loop entry spins");
888
889 static void
890 cpu_idle_default_hook(void)
891 {
892         /*
893          * We must guarentee that hlt is exactly the instruction
894          * following the sti.
895          */
896         __asm __volatile("sti; hlt");
897 }
898
899 /* Other subsystems (e.g., ACPI) can hook this later. */
900 void (*cpu_idle_hook)(void) = cpu_idle_default_hook;
901
902 void
903 cpu_idle(void)
904 {
905         struct thread *td = curthread;
906
907         crit_exit();
908         KKASSERT(td->td_critcount == 0);
909         for (;;) {
910                 /*
911                  * See if there are any LWKTs ready to go.
912                  */
913                 lwkt_switch();
914
915                 /*
916                  * If we are going to halt call splz unconditionally after
917                  * CLIing to catch any interrupt races.  Note that we are
918                  * at SPL0 and interrupts are enabled.
919                  */
920                 if (cpu_idle_hlt && !lwkt_runnable() &&
921                     (td->td_flags & TDF_IDLE_NOHLT) == 0) {
922                         __asm __volatile("cli");
923                         splz();
924                         if (!lwkt_runnable())
925                                 cpu_idle_hook();
926 #ifdef SMP
927                         else
928                                 handle_cpu_contention_mask();
929 #endif
930                         ++cpu_idle_hltcnt;
931                 } else {
932                         td->td_flags &= ~TDF_IDLE_NOHLT;
933                         splz();
934 #ifdef SMP
935                         __asm __volatile("sti");
936                         handle_cpu_contention_mask();
937 #else
938                         __asm __volatile("sti");
939 #endif
940                         ++cpu_idle_spincnt;
941                 }
942         }
943 }
944
945 #ifdef SMP
946
947 /*
948  * This routine is called when the only runnable threads require
949  * the MP lock, and the scheduler couldn't get it.  On a real cpu
950  * we let the scheduler spin.
951  */
952 void
953 handle_cpu_contention_mask(void)
954 {
955         cpumask_t mask;
956
957         mask = cpu_contention_mask;
958         cpu_ccfence();
959         if (mask && bsfl(mask) != mycpu->gd_cpuid)
960                 DELAY(2);
961 }
962
963 /*
964  * This routine is called if a spinlock has been held through the
965  * exponential backoff period and is seriously contested.  On a real cpu
966  * we let it spin.
967  */
968 void
969 cpu_spinlock_contested(void)
970 {
971         cpu_pause();
972 }
973
974 #endif
975
976 /*
977  * Clear registers on exec
978  */
979 void
980 exec_setregs(u_long entry, u_long stack, u_long ps_strings)
981 {
982         struct thread *td = curthread;
983         struct lwp *lp = td->td_lwp;
984         struct pcb *pcb = td->td_pcb;
985         struct trapframe *regs = lp->lwp_md.md_regs;
986
987         /* was i386_user_cleanup() in NetBSD */
988         user_ldt_free(pcb);
989   
990         bzero((char *)regs, sizeof(struct trapframe));
991         regs->tf_eip = entry;
992         regs->tf_esp = stack;
993         regs->tf_eflags = PSL_USER | (regs->tf_eflags & PSL_T);
994         regs->tf_ss = _udatasel;
995         regs->tf_ds = _udatasel;
996         regs->tf_es = _udatasel;
997         regs->tf_fs = _udatasel;
998         regs->tf_gs = _udatasel;
999         regs->tf_cs = _ucodesel;
1000
1001         /* PS_STRINGS value for BSD/OS binaries.  It is 0 for non-BSD/OS. */
1002         regs->tf_ebx = ps_strings;
1003
1004         /*
1005          * Reset the hardware debug registers if they were in use.
1006          * They won't have any meaning for the newly exec'd process.  
1007          */
1008         if (pcb->pcb_flags & PCB_DBREGS) {
1009                 pcb->pcb_dr0 = 0;
1010                 pcb->pcb_dr1 = 0;
1011                 pcb->pcb_dr2 = 0;
1012                 pcb->pcb_dr3 = 0;
1013                 pcb->pcb_dr6 = 0;
1014                 pcb->pcb_dr7 = 0;
1015                 if (pcb == td->td_pcb) {
1016                         /*
1017                          * Clear the debug registers on the running
1018                          * CPU, otherwise they will end up affecting
1019                          * the next process we switch to.
1020                          */
1021                         reset_dbregs();
1022                 }
1023                 pcb->pcb_flags &= ~PCB_DBREGS;
1024         }
1025
1026         /*
1027          * Initialize the math emulator (if any) for the current process.
1028          * Actually, just clear the bit that says that the emulator has
1029          * been initialized.  Initialization is delayed until the process
1030          * traps to the emulator (if it is done at all) mainly because
1031          * emulators don't provide an entry point for initialization.
1032          */
1033         pcb->pcb_flags &= ~FP_SOFTFP;
1034
1035         /*
1036          * note: do not set CR0_TS here.  npxinit() must do it after clearing
1037          * gd_npxthread.  Otherwise a preemptive interrupt thread may panic
1038          * in npxdna().
1039          */
1040         crit_enter();
1041         load_cr0(rcr0() | CR0_MP);
1042
1043 #if NNPX > 0
1044         /* Initialize the npx (if any) for the current process. */
1045         npxinit(__INITIAL_NPXCW__);
1046 #endif
1047         crit_exit();
1048
1049         /*
1050          * note: linux emulator needs edx to be 0x0 on entry, which is
1051          * handled in execve simply by setting the 64 bit syscall
1052          * return value to 0.
1053          */
1054 }
1055
1056 void
1057 cpu_setregs(void)
1058 {
1059         unsigned int cr0;
1060
1061         cr0 = rcr0();
1062         cr0 |= CR0_NE;                  /* Done by npxinit() */
1063         cr0 |= CR0_MP | CR0_TS;         /* Done at every execve() too. */
1064         cr0 |= CR0_WP | CR0_AM;
1065         load_cr0(cr0);
1066         load_gs(_udatasel);
1067 }
1068
1069 static int
1070 sysctl_machdep_adjkerntz(SYSCTL_HANDLER_ARGS)
1071 {
1072         int error;
1073         error = sysctl_handle_int(oidp, oidp->oid_arg1, oidp->oid_arg2,
1074                 req);
1075         if (!error && req->newptr)
1076                 resettodr();
1077         return (error);
1078 }
1079
1080 SYSCTL_PROC(_machdep, CPU_ADJKERNTZ, adjkerntz, CTLTYPE_INT|CTLFLAG_RW,
1081         &adjkerntz, 0, sysctl_machdep_adjkerntz, "I", "");
1082
1083 SYSCTL_INT(_machdep, CPU_DISRTCSET, disable_rtc_set,
1084         CTLFLAG_RW, &disable_rtc_set, 0, "");
1085
1086 SYSCTL_STRUCT(_machdep, CPU_BOOTINFO, bootinfo, 
1087         CTLFLAG_RD, &bootinfo, bootinfo, "");
1088
1089 SYSCTL_INT(_machdep, CPU_WALLCLOCK, wall_cmos_clock,
1090         CTLFLAG_RW, &wall_cmos_clock, 0, "");
1091
1092 extern u_long bootdev;          /* not a cdev_t - encoding is different */
1093 SYSCTL_ULONG(_machdep, OID_AUTO, guessed_bootdev,
1094         CTLFLAG_RD, &bootdev, 0, "Boot device (not in cdev_t format)");
1095
1096 /*
1097  * Initialize 386 and configure to run kernel
1098  */
1099
1100 /*
1101  * Initialize segments & interrupt table
1102  */
1103
1104 int _default_ldt;
1105 union descriptor gdt[NGDT * MAXCPU];    /* global descriptor table */
1106 static struct gate_descriptor idt0[NIDT];
1107 struct gate_descriptor *idt = &idt0[0]; /* interrupt descriptor table */
1108 union descriptor ldt[NLDT];             /* local descriptor table */
1109
1110 /* table descriptors - used to load tables by cpu */
1111 struct region_descriptor r_gdt, r_idt;
1112
1113 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
1114 extern int has_f00f_bug;
1115 #endif
1116
1117 static struct i386tss dblfault_tss;
1118 static char dblfault_stack[PAGE_SIZE];
1119
1120 extern  struct user *proc0paddr;
1121
1122
1123 /* software prototypes -- in more palatable form */
1124 struct soft_segment_descriptor gdt_segs[] = {
1125 /* GNULL_SEL    0 Null Descriptor */
1126 {       0x0,                    /* segment base address  */
1127         0x0,                    /* length */
1128         0,                      /* segment type */
1129         0,                      /* segment descriptor priority level */
1130         0,                      /* segment descriptor present */
1131         0, 0,
1132         0,                      /* default 32 vs 16 bit size */
1133         0                       /* limit granularity (byte/page units)*/ },
1134 /* GCODE_SEL    1 Code Descriptor for kernel */
1135 {       0x0,                    /* segment base address  */
1136         0xfffff,                /* length - all address space */
1137         SDT_MEMERA,             /* segment type */
1138         0,                      /* segment descriptor priority level */
1139         1,                      /* segment descriptor present */
1140         0, 0,
1141         1,                      /* default 32 vs 16 bit size */
1142         1                       /* limit granularity (byte/page units)*/ },
1143 /* GDATA_SEL    2 Data Descriptor for kernel */
1144 {       0x0,                    /* segment base address  */
1145         0xfffff,                /* length - all address space */
1146         SDT_MEMRWA,             /* segment type */
1147         0,                      /* segment descriptor priority level */
1148         1,                      /* segment descriptor present */
1149         0, 0,
1150         1,                      /* default 32 vs 16 bit size */
1151         1                       /* limit granularity (byte/page units)*/ },
1152 /* GPRIV_SEL    3 SMP Per-Processor Private Data Descriptor */
1153 {       0x0,                    /* segment base address  */
1154         0xfffff,                /* length - all address space */
1155         SDT_MEMRWA,             /* segment type */
1156         0,                      /* segment descriptor priority level */
1157         1,                      /* segment descriptor present */
1158         0, 0,
1159         1,                      /* default 32 vs 16 bit size */
1160         1                       /* limit granularity (byte/page units)*/ },
1161 /* GPROC0_SEL   4 Proc 0 Tss Descriptor */
1162 {
1163         0x0,                    /* segment base address */
1164         sizeof(struct i386tss)-1,/* length - all address space */
1165         SDT_SYS386TSS,          /* segment type */
1166         0,                      /* segment descriptor priority level */
1167         1,                      /* segment descriptor present */
1168         0, 0,
1169         0,                      /* unused - default 32 vs 16 bit size */
1170         0                       /* limit granularity (byte/page units)*/ },
1171 /* GLDT_SEL     5 LDT Descriptor */
1172 {       (int) ldt,              /* segment base address  */
1173         sizeof(ldt)-1,          /* length - all address space */
1174         SDT_SYSLDT,             /* segment type */
1175         SEL_UPL,                /* segment descriptor priority level */
1176         1,                      /* segment descriptor present */
1177         0, 0,
1178         0,                      /* unused - default 32 vs 16 bit size */
1179         0                       /* limit granularity (byte/page units)*/ },
1180 /* GUSERLDT_SEL 6 User LDT Descriptor per process */
1181 {       (int) ldt,              /* segment base address  */
1182         (512 * sizeof(union descriptor)-1),             /* length */
1183         SDT_SYSLDT,             /* segment type */
1184         0,                      /* segment descriptor priority level */
1185         1,                      /* segment descriptor present */
1186         0, 0,
1187         0,                      /* unused - default 32 vs 16 bit size */
1188         0                       /* limit granularity (byte/page units)*/ },
1189 /* GTGATE_SEL   7 Null Descriptor - Placeholder */
1190 {       0x0,                    /* segment base address  */
1191         0x0,                    /* length - all address space */
1192         0,                      /* segment type */
1193         0,                      /* segment descriptor priority level */
1194         0,                      /* segment descriptor present */
1195         0, 0,
1196         0,                      /* default 32 vs 16 bit size */
1197         0                       /* limit granularity (byte/page units)*/ },
1198 /* GBIOSLOWMEM_SEL 8 BIOS access to realmode segment 0x40, must be #8 in GDT */
1199 {       0x400,                  /* segment base address */
1200         0xfffff,                /* length */
1201         SDT_MEMRWA,             /* segment type */
1202         0,                      /* segment descriptor priority level */
1203         1,                      /* segment descriptor present */
1204         0, 0,
1205         1,                      /* default 32 vs 16 bit size */
1206         1                       /* limit granularity (byte/page units)*/ },
1207 /* GPANIC_SEL   9 Panic Tss Descriptor */
1208 {       (int) &dblfault_tss,    /* segment base address  */
1209         sizeof(struct i386tss)-1,/* length - all address space */
1210         SDT_SYS386TSS,          /* segment type */
1211         0,                      /* segment descriptor priority level */
1212         1,                      /* segment descriptor present */
1213         0, 0,
1214         0,                      /* unused - default 32 vs 16 bit size */
1215         0                       /* limit granularity (byte/page units)*/ },
1216 /* GBIOSCODE32_SEL 10 BIOS 32-bit interface (32bit Code) */
1217 {       0,                      /* segment base address (overwritten)  */
1218         0xfffff,                /* length */
1219         SDT_MEMERA,             /* segment type */
1220         0,                      /* segment descriptor priority level */
1221         1,                      /* segment descriptor present */
1222         0, 0,
1223         0,                      /* default 32 vs 16 bit size */
1224         1                       /* limit granularity (byte/page units)*/ },
1225 /* GBIOSCODE16_SEL 11 BIOS 32-bit interface (16bit Code) */
1226 {       0,                      /* segment base address (overwritten)  */
1227         0xfffff,                /* length */
1228         SDT_MEMERA,             /* segment type */
1229         0,                      /* segment descriptor priority level */
1230         1,                      /* segment descriptor present */
1231         0, 0,
1232         0,                      /* default 32 vs 16 bit size */
1233         1                       /* limit granularity (byte/page units)*/ },
1234 /* GBIOSDATA_SEL 12 BIOS 32-bit interface (Data) */
1235 {       0,                      /* segment base address (overwritten) */
1236         0xfffff,                /* length */
1237         SDT_MEMRWA,             /* segment type */
1238         0,                      /* segment descriptor priority level */
1239         1,                      /* segment descriptor present */
1240         0, 0,
1241         1,                      /* default 32 vs 16 bit size */
1242         1                       /* limit granularity (byte/page units)*/ },
1243 /* GBIOSUTIL_SEL 13 BIOS 16-bit interface (Utility) */
1244 {       0,                      /* segment base address (overwritten) */
1245         0xfffff,                /* length */
1246         SDT_MEMRWA,             /* segment type */
1247         0,                      /* segment descriptor priority level */
1248         1,                      /* segment descriptor present */
1249         0, 0,
1250         0,                      /* default 32 vs 16 bit size */
1251         1                       /* limit granularity (byte/page units)*/ },
1252 /* GBIOSARGS_SEL 14 BIOS 16-bit interface (Arguments) */
1253 {       0,                      /* segment base address (overwritten) */
1254         0xfffff,                /* length */
1255         SDT_MEMRWA,             /* segment type */
1256         0,                      /* segment descriptor priority level */
1257         1,                      /* segment descriptor present */
1258         0, 0,
1259         0,                      /* default 32 vs 16 bit size */
1260         1                       /* limit granularity (byte/page units)*/ },
1261 /* GTLS_START 15 TLS */
1262 {       0x0,                    /* segment base address  */
1263         0x0,                    /* length */
1264         0,                      /* segment type */
1265         0,                      /* segment descriptor priority level */
1266         0,                      /* segment descriptor present */
1267         0, 0,
1268         0,                      /* default 32 vs 16 bit size */
1269         0                       /* limit granularity (byte/page units)*/ },
1270 /* GTLS_START+1 16 TLS */
1271 {       0x0,                    /* segment base address  */
1272         0x0,                    /* length */
1273         0,                      /* segment type */
1274         0,                      /* segment descriptor priority level */
1275         0,                      /* segment descriptor present */
1276         0, 0,
1277         0,                      /* default 32 vs 16 bit size */
1278         0                       /* limit granularity (byte/page units)*/ },
1279 /* GTLS_END 17 TLS */
1280 {       0x0,                    /* segment base address  */
1281         0x0,                    /* length */
1282         0,                      /* segment type */
1283         0,                      /* segment descriptor priority level */
1284         0,                      /* segment descriptor present */
1285         0, 0,
1286         0,                      /* default 32 vs 16 bit size */
1287         0                       /* limit granularity (byte/page units)*/ },
1288 };
1289
1290 static struct soft_segment_descriptor ldt_segs[] = {
1291         /* Null Descriptor - overwritten by call gate */
1292 {       0x0,                    /* segment base address  */
1293         0x0,                    /* length - all address space */
1294         0,                      /* segment type */
1295         0,                      /* segment descriptor priority level */
1296         0,                      /* segment descriptor present */
1297         0, 0,
1298         0,                      /* default 32 vs 16 bit size */
1299         0                       /* limit granularity (byte/page units)*/ },
1300         /* Null Descriptor - overwritten by call gate */
1301 {       0x0,                    /* segment base address  */
1302         0x0,                    /* length - all address space */
1303         0,                      /* segment type */
1304         0,                      /* segment descriptor priority level */
1305         0,                      /* segment descriptor present */
1306         0, 0,
1307         0,                      /* default 32 vs 16 bit size */
1308         0                       /* limit granularity (byte/page units)*/ },
1309         /* Null Descriptor - overwritten by call gate */
1310 {       0x0,                    /* segment base address  */
1311         0x0,                    /* length - all address space */
1312         0,                      /* segment type */
1313         0,                      /* segment descriptor priority level */
1314         0,                      /* segment descriptor present */
1315         0, 0,
1316         0,                      /* default 32 vs 16 bit size */
1317         0                       /* limit granularity (byte/page units)*/ },
1318         /* Code Descriptor for user */
1319 {       0x0,                    /* segment base address  */
1320         0xfffff,                /* length - all address space */
1321         SDT_MEMERA,             /* segment type */
1322         SEL_UPL,                /* segment descriptor priority level */
1323         1,                      /* segment descriptor present */
1324         0, 0,
1325         1,                      /* default 32 vs 16 bit size */
1326         1                       /* limit granularity (byte/page units)*/ },
1327         /* Null Descriptor - overwritten by call gate */
1328 {       0x0,                    /* segment base address  */
1329         0x0,                    /* length - all address space */
1330         0,                      /* segment type */
1331         0,                      /* segment descriptor priority level */
1332         0,                      /* segment descriptor present */
1333         0, 0,
1334         0,                      /* default 32 vs 16 bit size */
1335         0                       /* limit granularity (byte/page units)*/ },
1336         /* Data Descriptor for user */
1337 {       0x0,                    /* segment base address  */
1338         0xfffff,                /* length - all address space */
1339         SDT_MEMRWA,             /* segment type */
1340         SEL_UPL,                /* segment descriptor priority level */
1341         1,                      /* segment descriptor present */
1342         0, 0,
1343         1,                      /* default 32 vs 16 bit size */
1344         1                       /* limit granularity (byte/page units)*/ },
1345 };
1346
1347 void
1348 setidt(int idx, inthand_t *func, int typ, int dpl, int selec)
1349 {
1350         struct gate_descriptor *ip;
1351
1352         ip = idt + idx;
1353         ip->gd_looffset = (int)func;
1354         ip->gd_selector = selec;
1355         ip->gd_stkcpy = 0;
1356         ip->gd_xx = 0;
1357         ip->gd_type = typ;
1358         ip->gd_dpl = dpl;
1359         ip->gd_p = 1;
1360         ip->gd_hioffset = ((int)func)>>16 ;
1361 }
1362
1363 #define IDTVEC(name)    __CONCAT(X,name)
1364
1365 extern inthand_t
1366         IDTVEC(div), IDTVEC(dbg), IDTVEC(nmi), IDTVEC(bpt), IDTVEC(ofl),
1367         IDTVEC(bnd), IDTVEC(ill), IDTVEC(dna), IDTVEC(fpusegm),
1368         IDTVEC(tss), IDTVEC(missing), IDTVEC(stk), IDTVEC(prot),
1369         IDTVEC(page), IDTVEC(mchk), IDTVEC(fpu), IDTVEC(align),
1370         IDTVEC(xmm), IDTVEC(syscall),
1371         IDTVEC(rsvd0);
1372 extern inthand_t
1373         IDTVEC(int0x80_syscall);
1374
1375 #ifdef DEBUG_INTERRUPTS
1376 extern inthand_t *Xrsvdary[256];
1377 #endif
1378
1379 void
1380 sdtossd(struct segment_descriptor *sd, struct soft_segment_descriptor *ssd)
1381 {
1382         ssd->ssd_base  = (sd->sd_hibase << 24) | sd->sd_lobase;
1383         ssd->ssd_limit = (sd->sd_hilimit << 16) | sd->sd_lolimit;
1384         ssd->ssd_type  = sd->sd_type;
1385         ssd->ssd_dpl   = sd->sd_dpl;
1386         ssd->ssd_p     = sd->sd_p;
1387         ssd->ssd_def32 = sd->sd_def32;
1388         ssd->ssd_gran  = sd->sd_gran;
1389 }
1390
1391 /*
1392  * Populate the (physmap) array with base/bound pairs describing the
1393  * available physical memory in the system, then test this memory and
1394  * build the phys_avail array describing the actually-available memory.
1395  *
1396  * If we cannot accurately determine the physical memory map, then use
1397  * value from the 0xE801 call, and failing that, the RTC.
1398  *
1399  * Total memory size may be set by the kernel environment variable
1400  * hw.physmem or the compile-time define MAXMEM.
1401  */
1402 static void
1403 getmemsize(int first)
1404 {
1405         int i, physmap_idx, pa_indx, da_indx;
1406         int hasbrokenint12;
1407         u_int basemem, extmem;
1408         struct vm86frame vmf;
1409         struct vm86context vmc;
1410         vm_offset_t pa;
1411         vm_offset_t physmap[PHYSMAP_ENTRIES*2];
1412         pt_entry_t *pte;
1413         quad_t maxmem;
1414         struct {
1415                 u_int64_t base;
1416                 u_int64_t length;
1417                 u_int32_t type;
1418         } *smap;
1419         quad_t dcons_addr, dcons_size;
1420
1421         bzero(&vmf, sizeof(struct vm86frame));
1422         bzero(physmap, sizeof(physmap));
1423         basemem = 0;
1424
1425         /*
1426          * Some newer BIOSes has broken INT 12H implementation which cause
1427          * kernel panic immediately. In this case, we need to scan SMAP
1428          * with INT 15:E820 first, then determine base memory size.
1429          */
1430         hasbrokenint12 = 0;
1431         TUNABLE_INT_FETCH("hw.hasbrokenint12", &hasbrokenint12);
1432         if (hasbrokenint12) {
1433                 goto int15e820;
1434         }
1435
1436         /*
1437          * Perform "base memory" related probes & setup.  If we get a crazy
1438          * value give the bios some scribble space just in case.
1439          */
1440         vm86_intcall(0x12, &vmf);
1441         basemem = vmf.vmf_ax;
1442         if (basemem > 640) {
1443                 kprintf("Preposterous BIOS basemem of %uK, "
1444                         "truncating to < 640K\n", basemem);
1445                 basemem = 636;
1446         }
1447
1448         /*
1449          * XXX if biosbasemem is now < 640, there is a `hole'
1450          * between the end of base memory and the start of
1451          * ISA memory.  The hole may be empty or it may
1452          * contain BIOS code or data.  Map it read/write so
1453          * that the BIOS can write to it.  (Memory from 0 to
1454          * the physical end of the kernel is mapped read-only
1455          * to begin with and then parts of it are remapped.
1456          * The parts that aren't remapped form holes that
1457          * remain read-only and are unused by the kernel.
1458          * The base memory area is below the physical end of
1459          * the kernel and right now forms a read-only hole.
1460          * The part of it from PAGE_SIZE to
1461          * (trunc_page(biosbasemem * 1024) - 1) will be
1462          * remapped and used by the kernel later.)
1463          *
1464          * This code is similar to the code used in
1465          * pmap_mapdev, but since no memory needs to be
1466          * allocated we simply change the mapping.
1467          */
1468         for (pa = trunc_page(basemem * 1024);
1469              pa < ISA_HOLE_START; pa += PAGE_SIZE) {
1470                 pte = vtopte(pa + KERNBASE);
1471                 *pte = pa | PG_RW | PG_V;
1472         }
1473
1474         /*
1475          * if basemem != 640, map pages r/w into vm86 page table so 
1476          * that the bios can scribble on it.
1477          */
1478         pte = vm86paddr;
1479         for (i = basemem / 4; i < 160; i++)
1480                 pte[i] = (i << PAGE_SHIFT) | PG_V | PG_RW | PG_U;
1481
1482 int15e820:
1483         /*
1484          * map page 1 R/W into the kernel page table so we can use it
1485          * as a buffer.  The kernel will unmap this page later.
1486          */
1487         pte = vtopte(KERNBASE + (1 << PAGE_SHIFT));
1488         *pte = (1 << PAGE_SHIFT) | PG_RW | PG_V;
1489
1490         /*
1491          * get memory map with INT 15:E820
1492          */
1493 #define SMAPSIZ         sizeof(*smap)
1494 #define SMAP_SIG        0x534D4150                      /* 'SMAP' */
1495
1496         vmc.npages = 0;
1497         smap = (void *)vm86_addpage(&vmc, 1, KERNBASE + (1 << PAGE_SHIFT));
1498         vm86_getptr(&vmc, (vm_offset_t)smap, &vmf.vmf_es, &vmf.vmf_di);
1499
1500         physmap_idx = 0;
1501         vmf.vmf_ebx = 0;
1502         do {
1503                 vmf.vmf_eax = 0xE820;
1504                 vmf.vmf_edx = SMAP_SIG;
1505                 vmf.vmf_ecx = SMAPSIZ;
1506                 i = vm86_datacall(0x15, &vmf, &vmc);
1507                 if (i || vmf.vmf_eax != SMAP_SIG)
1508                         break;
1509                 if (boothowto & RB_VERBOSE)
1510                         kprintf("SMAP type=%02x base=%08x %08x len=%08x %08x\n",
1511                                 smap->type,
1512                                 *(u_int32_t *)((char *)&smap->base + 4),
1513                                 (u_int32_t)smap->base,
1514                                 *(u_int32_t *)((char *)&smap->length + 4),
1515                                 (u_int32_t)smap->length);
1516
1517                 if (smap->type != 0x01)
1518                         goto next_run;
1519
1520                 if (smap->length == 0)
1521                         goto next_run;
1522
1523                 Realmem += smap->length;
1524
1525                 if (smap->base >= 0xffffffffLLU) {
1526                         kprintf("%ju MB of memory above 4GB ignored\n",
1527                                 (uintmax_t)(smap->length / 1024 / 1024));
1528                         goto next_run;
1529                 }
1530
1531                 for (i = 0; i <= physmap_idx; i += 2) {
1532                         if (smap->base < physmap[i + 1]) {
1533                                 if (boothowto & RB_VERBOSE) {
1534                                         kprintf("Overlapping or non-montonic "
1535                                                 "memory region, ignoring "
1536                                                 "second region\n");
1537                                 }
1538                                 Realmem -= smap->length;
1539                                 goto next_run;
1540                         }
1541                 }
1542
1543                 if (smap->base == physmap[physmap_idx + 1]) {
1544                         physmap[physmap_idx + 1] += smap->length;
1545                         goto next_run;
1546                 }
1547
1548                 physmap_idx += 2;
1549                 if (physmap_idx == PHYSMAP_ENTRIES*2) {
1550                         kprintf("Too many segments in the physical "
1551                                 "address map, giving up\n");
1552                         break;
1553                 }
1554                 physmap[physmap_idx] = smap->base;
1555                 physmap[physmap_idx + 1] = smap->base + smap->length;
1556 next_run:
1557                 ; /* fix GCC3.x warning */
1558         } while (vmf.vmf_ebx != 0);
1559
1560         /*
1561          * Perform "base memory" related probes & setup based on SMAP
1562          */
1563         if (basemem == 0) {
1564                 for (i = 0; i <= physmap_idx; i += 2) {
1565                         if (physmap[i] == 0x00000000) {
1566                                 basemem = physmap[i + 1] / 1024;
1567                                 break;
1568                         }
1569                 }
1570
1571                 if (basemem == 0) {
1572                         basemem = 640;
1573                 }
1574
1575                 if (basemem > 640) {
1576                         kprintf("Preposterous BIOS basemem of %uK, "
1577                                 "truncating to 640K\n", basemem);
1578                         basemem = 640;
1579                 }
1580
1581                 for (pa = trunc_page(basemem * 1024);
1582                      pa < ISA_HOLE_START; pa += PAGE_SIZE) {
1583                         pte = vtopte(pa + KERNBASE);
1584                         *pte = pa | PG_RW | PG_V;
1585                 }
1586
1587                 pte = vm86paddr;
1588                 for (i = basemem / 4; i < 160; i++)
1589                         pte[i] = (i << PAGE_SHIFT) | PG_V | PG_RW | PG_U;
1590         }
1591
1592         if (physmap[1] != 0)
1593                 goto physmap_done;
1594
1595         /*
1596          * If we failed above, try memory map with INT 15:E801
1597          */
1598         vmf.vmf_ax = 0xE801;
1599         if (vm86_intcall(0x15, &vmf) == 0) {
1600                 extmem = vmf.vmf_cx + vmf.vmf_dx * 64;
1601         } else {
1602 #if 0
1603                 vmf.vmf_ah = 0x88;
1604                 vm86_intcall(0x15, &vmf);
1605                 extmem = vmf.vmf_ax;
1606 #else
1607                 /*
1608                  * Prefer the RTC value for extended memory.
1609                  */
1610                 extmem = rtcin(RTC_EXTLO) + (rtcin(RTC_EXTHI) << 8);
1611 #endif
1612         }
1613
1614         /*
1615          * Special hack for chipsets that still remap the 384k hole when
1616          * there's 16MB of memory - this really confuses people that
1617          * are trying to use bus mastering ISA controllers with the
1618          * "16MB limit"; they only have 16MB, but the remapping puts
1619          * them beyond the limit.
1620          *
1621          * If extended memory is between 15-16MB (16-17MB phys address range),
1622          *      chop it to 15MB.
1623          */
1624         if ((extmem > 15 * 1024) && (extmem < 16 * 1024))
1625                 extmem = 15 * 1024;
1626
1627         physmap[0] = 0;
1628         physmap[1] = basemem * 1024;
1629         physmap_idx = 2;
1630         physmap[physmap_idx] = 0x100000;
1631         physmap[physmap_idx + 1] = physmap[physmap_idx] + extmem * 1024;
1632
1633 physmap_done:
1634         /*
1635          * Now, physmap contains a map of physical memory.
1636          */
1637
1638 #ifdef SMP
1639         /* make hole for AP bootstrap code YYY */
1640         physmap[1] = mp_bootaddress(physmap[1]);
1641
1642         /* Save EBDA address, if any */
1643         ebda_addr = (u_long)(*(u_short *)(KERNBASE + 0x40e));
1644         ebda_addr <<= 4;
1645 #endif
1646
1647         /*
1648          * Maxmem isn't the "maximum memory", it's one larger than the
1649          * highest page of the physical address space.  It should be
1650          * called something like "Maxphyspage".  We may adjust this 
1651          * based on ``hw.physmem'' and the results of the memory test.
1652          */
1653         Maxmem = atop(physmap[physmap_idx + 1]);
1654
1655 #ifdef MAXMEM
1656         Maxmem = MAXMEM / 4;
1657 #endif
1658
1659         if (kgetenv_quad("hw.physmem", &maxmem))
1660                 Maxmem = atop(maxmem);
1661
1662         if (atop(physmap[physmap_idx + 1]) != Maxmem &&
1663             (boothowto & RB_VERBOSE))
1664                 kprintf("Physical memory use set to %lluK\n", Maxmem * 4);
1665
1666         /*
1667          * If Maxmem has been increased beyond what the system has detected,
1668          * extend the last memory segment to the new limit.
1669          */ 
1670         if (atop(physmap[physmap_idx + 1]) < Maxmem)
1671                 physmap[physmap_idx + 1] = ptoa(Maxmem);
1672
1673         /* call pmap initialization to make new kernel address space */
1674         pmap_bootstrap(first, 0);
1675
1676         /*
1677          * Size up each available chunk of physical memory.
1678          */
1679         physmap[0] = PAGE_SIZE;         /* mask off page 0 */
1680         pa_indx = 0;
1681         da_indx = 1;
1682         phys_avail[pa_indx++] = physmap[0];
1683         phys_avail[pa_indx] = physmap[0];
1684         dump_avail[da_indx] = physmap[0];
1685
1686         pte = CMAP1;
1687
1688         /*
1689          * Get dcons buffer address
1690          */
1691         if (kgetenv_quad("dcons.addr", &dcons_addr) == 0 ||
1692             kgetenv_quad("dcons.size", &dcons_size) == 0)
1693                 dcons_addr = 0;
1694
1695         /*
1696          * physmap is in bytes, so when converting to page boundaries,
1697          * round up the start address and round down the end address.
1698          */
1699         for (i = 0; i <= physmap_idx; i += 2) {
1700                 vm_offset_t end;
1701
1702                 end = ptoa(Maxmem);
1703                 if (physmap[i + 1] < end)
1704                         end = trunc_page(physmap[i + 1]);
1705                 for (pa = round_page(physmap[i]); pa < end; pa += PAGE_SIZE) {
1706                         int tmp, page_bad, full;
1707 #if 0
1708                         int *ptr = 0;
1709 #else
1710                         int *ptr = (int *)CADDR1;
1711 #endif
1712                         full = FALSE;
1713
1714                         /*
1715                          * block out kernel memory as not available.
1716                          */
1717                         if (pa >= 0x100000 && pa < first)
1718                                 goto do_dump_avail;
1719         
1720                         /*
1721                          * block out dcons buffer
1722                          */
1723                         if (dcons_addr > 0
1724                             && pa >= trunc_page(dcons_addr)
1725                             && pa < dcons_addr + dcons_size)
1726                                 goto do_dump_avail;
1727
1728                         page_bad = FALSE;
1729
1730                         /*
1731                          * map page into kernel: valid, read/write,non-cacheable
1732                          */
1733                         *pte = pa | PG_V | PG_RW | PG_N;
1734                         cpu_invltlb();
1735
1736                         tmp = *(int *)ptr;
1737                         /*
1738                          * Test for alternating 1's and 0's
1739                          */
1740                         *(volatile int *)ptr = 0xaaaaaaaa;
1741                         if (*(volatile int *)ptr != 0xaaaaaaaa) {
1742                                 page_bad = TRUE;
1743                         }
1744                         /*
1745                          * Test for alternating 0's and 1's
1746                          */
1747                         *(volatile int *)ptr = 0x55555555;
1748                         if (*(volatile int *)ptr != 0x55555555) {
1749                         page_bad = TRUE;
1750                         }
1751                         /*
1752                          * Test for all 1's
1753                          */
1754                         *(volatile int *)ptr = 0xffffffff;
1755                         if (*(volatile int *)ptr != 0xffffffff) {
1756                                 page_bad = TRUE;
1757                         }
1758                         /*
1759                          * Test for all 0's
1760                          */
1761                         *(volatile int *)ptr = 0x0;
1762                         if (*(volatile int *)ptr != 0x0) {
1763                                 page_bad = TRUE;
1764                         }
1765                         /*
1766                          * Restore original value.
1767                          */
1768                         *(int *)ptr = tmp;
1769
1770                         /*
1771                          * Adjust array of valid/good pages.
1772                          */
1773                         if (page_bad == TRUE) {
1774                                 continue;
1775                         }
1776                         /*
1777                          * If this good page is a continuation of the
1778                          * previous set of good pages, then just increase
1779                          * the end pointer. Otherwise start a new chunk.
1780                          * Note that "end" points one higher than end,
1781                          * making the range >= start and < end.
1782                          * If we're also doing a speculative memory
1783                          * test and we at or past the end, bump up Maxmem
1784                          * so that we keep going. The first bad page
1785                          * will terminate the loop.
1786                          */
1787                         if (phys_avail[pa_indx] == pa) {
1788                                 phys_avail[pa_indx] += PAGE_SIZE;
1789                         } else {
1790                                 pa_indx++;
1791                                 if (pa_indx >= PHYSMAP_ENTRIES*2) {
1792                                         kprintf("Too many holes in the physical address space, giving up\n");
1793                                         pa_indx--;
1794                                         full = TRUE;
1795                                         goto do_dump_avail;
1796                                 }
1797                                 phys_avail[pa_indx++] = pa;     /* start */
1798                                 phys_avail[pa_indx] = pa + PAGE_SIZE;   /* end */
1799                         }
1800                         physmem++;
1801 do_dump_avail:
1802                         if (dump_avail[da_indx] == pa) {
1803                                 dump_avail[da_indx] += PAGE_SIZE;
1804                         } else {
1805                                 da_indx++;
1806                                 if (da_indx >= PHYSMAP_ENTRIES*2) {
1807                                         da_indx--;
1808                                         goto do_next;
1809                                 }
1810                                 dump_avail[da_indx++] = pa;     /* start */
1811                                 dump_avail[da_indx] = pa + PAGE_SIZE; /* end */
1812                         }
1813 do_next:
1814                         if (full)
1815                                 break;
1816
1817                 }
1818         }
1819         *pte = 0;
1820         cpu_invltlb();
1821
1822         /*
1823          * XXX
1824          * The last chunk must contain at least one page plus the message
1825          * buffer to avoid complicating other code (message buffer address
1826          * calculation, etc.).
1827          */
1828         while (phys_avail[pa_indx - 1] + PAGE_SIZE +
1829             round_page(MSGBUF_SIZE) >= phys_avail[pa_indx]) {
1830                 physmem -= atop(phys_avail[pa_indx] - phys_avail[pa_indx - 1]);
1831                 phys_avail[pa_indx--] = 0;
1832                 phys_avail[pa_indx--] = 0;
1833         }
1834
1835         Maxmem = atop(phys_avail[pa_indx]);
1836
1837         /* Trim off space for the message buffer. */
1838         phys_avail[pa_indx] -= round_page(MSGBUF_SIZE);
1839
1840         avail_end = phys_avail[pa_indx];
1841 }
1842
1843 /*
1844  * IDT VECTORS:
1845  *      0       Divide by zero
1846  *      1       Debug
1847  *      2       NMI
1848  *      3       BreakPoint
1849  *      4       OverFlow
1850  *      5       Bound-Range
1851  *      6       Invalid OpCode
1852  *      7       Device Not Available (x87)
1853  *      8       Double-Fault
1854  *      9       Coprocessor Segment overrun (unsupported, reserved)
1855  *      10      Invalid-TSS
1856  *      11      Segment not present
1857  *      12      Stack
1858  *      13      General Protection
1859  *      14      Page Fault
1860  *      15      Reserved
1861  *      16      x87 FP Exception pending
1862  *      17      Alignment Check
1863  *      18      Machine Check
1864  *      19      SIMD floating point
1865  *      20-31   reserved
1866  *      32-255  INTn/external sources
1867  */
1868 void
1869 init386(int first)
1870 {
1871         struct gate_descriptor *gdp;
1872         int gsel_tss, metadata_missing, off, x;
1873         struct mdglobaldata *gd;
1874
1875         /*
1876          * Prevent lowering of the ipl if we call tsleep() early.
1877          */
1878         gd = &CPU_prvspace[0].mdglobaldata;
1879         bzero(gd, sizeof(*gd));
1880
1881         gd->mi.gd_curthread = &thread0;
1882         thread0.td_gd = &gd->mi;
1883
1884         atdevbase = ISA_HOLE_START + KERNBASE;
1885
1886         metadata_missing = 0;
1887         if (bootinfo.bi_modulep) {
1888                 preload_metadata = (caddr_t)bootinfo.bi_modulep + KERNBASE;
1889                 preload_bootstrap_relocate(KERNBASE);
1890         } else {
1891                 metadata_missing = 1;
1892         }
1893         if (bootinfo.bi_envp)
1894                 kern_envp = (caddr_t)bootinfo.bi_envp + KERNBASE;
1895
1896         /*
1897          * start with one cpu.  Note: with one cpu, ncpus2_shift, ncpus2_mask,
1898          * and ncpus_fit_mask remain 0.
1899          */
1900         ncpus = 1;
1901         ncpus2 = 1;
1902         ncpus_fit = 1;
1903         /* Init basic tunables, hz etc */
1904         init_param1();
1905
1906         /*
1907          * make gdt memory segments, the code segment goes up to end of the
1908          * page with etext in it, the data segment goes to the end of
1909          * the address space
1910          */
1911         /*
1912          * XXX text protection is temporarily (?) disabled.  The limit was
1913          * i386_btop(round_page(etext)) - 1.
1914          */
1915         gdt_segs[GCODE_SEL].ssd_limit = atop(0 - 1);
1916         gdt_segs[GDATA_SEL].ssd_limit = atop(0 - 1);
1917
1918         gdt_segs[GPRIV_SEL].ssd_limit =
1919                 atop(sizeof(struct privatespace) - 1);
1920         gdt_segs[GPRIV_SEL].ssd_base = (int) &CPU_prvspace[0];
1921         gdt_segs[GPROC0_SEL].ssd_base =
1922                 (int) &CPU_prvspace[0].mdglobaldata.gd_common_tss;
1923
1924         gd->mi.gd_prvspace = &CPU_prvspace[0];
1925
1926         /*
1927          * Note: on both UP and SMP curthread must be set non-NULL
1928          * early in the boot sequence because the system assumes
1929          * that 'curthread' is never NULL.
1930          */
1931
1932         for (x = 0; x < NGDT; x++) {
1933 #ifdef BDE_DEBUGGER
1934                 /* avoid overwriting db entries with APM ones */
1935                 if (x >= GAPMCODE32_SEL && x <= GAPMDATA_SEL)
1936                         continue;
1937 #endif
1938                 ssdtosd(&gdt_segs[x], &gdt[x].sd);
1939         }
1940
1941         r_gdt.rd_limit = NGDT * sizeof(gdt[0]) - 1;
1942         r_gdt.rd_base =  (int) gdt;
1943         lgdt(&r_gdt);
1944
1945         mi_gdinit(&gd->mi, 0);
1946         cpu_gdinit(gd, 0);
1947         mi_proc0init(&gd->mi, proc0paddr);
1948         safepri = TDPRI_MAX;
1949
1950         /* make ldt memory segments */
1951         /*
1952          * XXX - VM_MAX_USER_ADDRESS is an end address, not a max.  And it
1953          * should be spelled ...MAX_USER...
1954          */
1955         ldt_segs[LUCODE_SEL].ssd_limit = atop(VM_MAX_USER_ADDRESS - 1);
1956         ldt_segs[LUDATA_SEL].ssd_limit = atop(VM_MAX_USER_ADDRESS - 1);
1957         for (x = 0; x < sizeof ldt_segs / sizeof ldt_segs[0]; x++)
1958                 ssdtosd(&ldt_segs[x], &ldt[x].sd);
1959
1960         _default_ldt = GSEL(GLDT_SEL, SEL_KPL);
1961         lldt(_default_ldt);
1962         gd->gd_currentldt = _default_ldt;
1963         /* spinlocks and the BGL */
1964         init_locks();
1965
1966         /*
1967          * Setup the hardware exception table.  Most exceptions use
1968          * SDT_SYS386TGT, known as a 'trap gate'.  Trap gates leave
1969          * interrupts enabled.  VM page faults use SDT_SYS386IGT, known as
1970          * an 'interrupt trap gate', which disables interrupts on entry,
1971          * in order to be able to poll the appropriate CRn register to
1972          * determine the fault address.
1973          */
1974         for (x = 0; x < NIDT; x++) {
1975 #ifdef DEBUG_INTERRUPTS
1976                 setidt(x, Xrsvdary[x], SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1977 #else
1978                 setidt(x, &IDTVEC(rsvd0), SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1979 #endif
1980         }
1981         setidt(0, &IDTVEC(div),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1982         setidt(1, &IDTVEC(dbg),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1983         setidt(2, &IDTVEC(nmi),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1984         setidt(3, &IDTVEC(bpt),  SDT_SYS386TGT, SEL_UPL, GSEL(GCODE_SEL, SEL_KPL));
1985         setidt(4, &IDTVEC(ofl),  SDT_SYS386TGT, SEL_UPL, GSEL(GCODE_SEL, SEL_KPL));
1986         setidt(5, &IDTVEC(bnd),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1987         setidt(6, &IDTVEC(ill),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1988         setidt(7, &IDTVEC(dna),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1989         setidt(8, 0,  SDT_SYSTASKGT, SEL_KPL, GSEL(GPANIC_SEL, SEL_KPL));
1990         setidt(9, &IDTVEC(fpusegm),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1991         setidt(10, &IDTVEC(tss),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1992         setidt(11, &IDTVEC(missing),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1993         setidt(12, &IDTVEC(stk),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1994         setidt(13, &IDTVEC(prot),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1995         setidt(14, &IDTVEC(page),  SDT_SYS386IGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1996         setidt(15, &IDTVEC(rsvd0),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1997         setidt(16, &IDTVEC(fpu),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1998         setidt(17, &IDTVEC(align), SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
1999         setidt(18, &IDTVEC(mchk),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
2000         setidt(19, &IDTVEC(xmm), SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
2001         setidt(0x80, &IDTVEC(int0x80_syscall),
2002                         SDT_SYS386TGT, SEL_UPL, GSEL(GCODE_SEL, SEL_KPL));
2003
2004         r_idt.rd_limit = sizeof(idt0) - 1;
2005         r_idt.rd_base = (int) idt;
2006         lidt(&r_idt);
2007
2008         /*
2009          * Initialize the console before we print anything out.
2010          */
2011         cninit();
2012
2013         if (metadata_missing)
2014                 kprintf("WARNING: loader(8) metadata is missing!\n");
2015
2016 #if     NISA >0
2017         isa_defaultirq();
2018 #endif
2019         rand_initialize();
2020
2021 #ifdef DDB
2022         kdb_init();
2023         if (boothowto & RB_KDB)
2024                 Debugger("Boot flags requested debugger");
2025 #endif
2026
2027         finishidentcpu();       /* Final stage of CPU initialization */
2028         setidt(6, &IDTVEC(ill),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
2029         setidt(13, &IDTVEC(prot),  SDT_SYS386TGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
2030         initializecpu();        /* Initialize CPU registers */
2031
2032         /*
2033          * make an initial tss so cpu can get interrupt stack on syscall!
2034          * The 16 bytes is to save room for a VM86 context.
2035          */
2036         gd->gd_common_tss.tss_esp0 = (int) thread0.td_pcb - 16;
2037         gd->gd_common_tss.tss_ss0 = GSEL(GDATA_SEL, SEL_KPL) ;
2038         gsel_tss = GSEL(GPROC0_SEL, SEL_KPL);
2039         gd->gd_tss_gdt = &gdt[GPROC0_SEL].sd;
2040         gd->gd_common_tssd = *gd->gd_tss_gdt;
2041         gd->gd_common_tss.tss_ioopt = (sizeof gd->gd_common_tss) << 16;
2042         ltr(gsel_tss);
2043
2044         dblfault_tss.tss_esp = dblfault_tss.tss_esp0 = dblfault_tss.tss_esp1 =
2045             dblfault_tss.tss_esp2 = (int) &dblfault_stack[sizeof(dblfault_stack)];
2046         dblfault_tss.tss_ss = dblfault_tss.tss_ss0 = dblfault_tss.tss_ss1 =
2047             dblfault_tss.tss_ss2 = GSEL(GDATA_SEL, SEL_KPL);
2048         dblfault_tss.tss_cr3 = (int)IdlePTD;
2049         dblfault_tss.tss_eip = (int) dblfault_handler;
2050         dblfault_tss.tss_eflags = PSL_KERNEL;
2051         dblfault_tss.tss_ds = dblfault_tss.tss_es =
2052             dblfault_tss.tss_gs = GSEL(GDATA_SEL, SEL_KPL);
2053         dblfault_tss.tss_fs = GSEL(GPRIV_SEL, SEL_KPL);
2054         dblfault_tss.tss_cs = GSEL(GCODE_SEL, SEL_KPL);
2055         dblfault_tss.tss_ldt = GSEL(GLDT_SEL, SEL_KPL);
2056
2057         vm86_initialize();
2058         getmemsize(first);
2059         init_param2(physmem);
2060
2061         /* now running on new page tables, configured,and u/iom is accessible */
2062
2063         /* Map the message buffer. */
2064         for (off = 0; off < round_page(MSGBUF_SIZE); off += PAGE_SIZE)
2065                 pmap_kenter((vm_offset_t)msgbufp + off, avail_end + off);
2066
2067         msgbufinit(msgbufp, MSGBUF_SIZE);
2068
2069         /* make a call gate to reenter kernel with */
2070         gdp = &ldt[LSYS5CALLS_SEL].gd;
2071
2072         x = (int) &IDTVEC(syscall);
2073         gdp->gd_looffset = x++;
2074         gdp->gd_selector = GSEL(GCODE_SEL,SEL_KPL);
2075         gdp->gd_stkcpy = 1;
2076         gdp->gd_type = SDT_SYS386CGT;
2077         gdp->gd_dpl = SEL_UPL;
2078         gdp->gd_p = 1;
2079         gdp->gd_hioffset = ((int) &IDTVEC(syscall)) >>16;
2080
2081         /* XXX does this work? */
2082         ldt[LBSDICALLS_SEL] = ldt[LSYS5CALLS_SEL];
2083         ldt[LSOL26CALLS_SEL] = ldt[LSYS5CALLS_SEL];
2084
2085         /* transfer to user mode */
2086
2087         _ucodesel = LSEL(LUCODE_SEL, SEL_UPL);
2088         _udatasel = LSEL(LUDATA_SEL, SEL_UPL);
2089
2090         /* setup proc 0's pcb */
2091         thread0.td_pcb->pcb_flags = 0;
2092         thread0.td_pcb->pcb_cr3 = (int)IdlePTD; /* should already be setup */
2093         thread0.td_pcb->pcb_ext = 0;
2094         lwp0.lwp_md.md_regs = &proc0_tf;
2095 }
2096
2097 /*
2098  * Initialize machine-dependant portions of the global data structure.
2099  * Note that the global data area and cpu0's idlestack in the private
2100  * data space were allocated in locore.
2101  *
2102  * Note: the idlethread's cpl is 0
2103  *
2104  * WARNING!  Called from early boot, 'mycpu' may not work yet.
2105  */
2106 void
2107 cpu_gdinit(struct mdglobaldata *gd, int cpu)
2108 {
2109         if (cpu)
2110                 gd->mi.gd_curthread = &gd->mi.gd_idlethread;
2111
2112         lwkt_init_thread(&gd->mi.gd_idlethread, 
2113                         gd->mi.gd_prvspace->idlestack, 
2114                         sizeof(gd->mi.gd_prvspace->idlestack), 
2115                         0, &gd->mi);
2116         lwkt_set_comm(&gd->mi.gd_idlethread, "idle_%d", cpu);
2117         gd->mi.gd_idlethread.td_switch = cpu_lwkt_switch;
2118         gd->mi.gd_idlethread.td_sp -= sizeof(void *);
2119         *(void **)gd->mi.gd_idlethread.td_sp = cpu_idle_restore;
2120 }
2121
2122 int
2123 is_globaldata_space(vm_offset_t saddr, vm_offset_t eaddr)
2124 {
2125         if (saddr >= (vm_offset_t)&CPU_prvspace[0] &&
2126             eaddr <= (vm_offset_t)&CPU_prvspace[MAXCPU]) {
2127                 return (TRUE);
2128         }
2129         return (FALSE);
2130 }
2131
2132 struct globaldata *
2133 globaldata_find(int cpu)
2134 {
2135         KKASSERT(cpu >= 0 && cpu < ncpus);
2136         return(&CPU_prvspace[cpu].mdglobaldata.mi);
2137 }
2138
2139 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
2140 static void f00f_hack(void *unused);
2141 SYSINIT(f00f_hack, SI_BOOT2_BIOS, SI_ORDER_ANY, f00f_hack, NULL);
2142
2143 static void
2144 f00f_hack(void *unused) 
2145 {
2146         struct gate_descriptor *new_idt;
2147         vm_offset_t tmp;
2148
2149         if (!has_f00f_bug)
2150                 return;
2151
2152         kprintf("Intel Pentium detected, installing workaround for F00F bug\n");
2153
2154         r_idt.rd_limit = sizeof(idt0) - 1;
2155
2156         tmp = kmem_alloc(&kernel_map, PAGE_SIZE * 2);
2157         if (tmp == 0)
2158                 panic("kmem_alloc returned 0");
2159         if (((unsigned int)tmp & (PAGE_SIZE-1)) != 0)
2160                 panic("kmem_alloc returned non-page-aligned memory");
2161         /* Put the first seven entries in the lower page */
2162         new_idt = (struct gate_descriptor*)(tmp + PAGE_SIZE - (7*8));
2163         bcopy(idt, new_idt, sizeof(idt0));
2164         r_idt.rd_base = (int)new_idt;
2165         lidt(&r_idt);
2166         idt = new_idt;
2167         if (vm_map_protect(&kernel_map, tmp, tmp + PAGE_SIZE,
2168                            VM_PROT_READ, FALSE) != KERN_SUCCESS)
2169                 panic("vm_map_protect failed");
2170         return;
2171 }
2172 #endif /* defined(I586_CPU) && !NO_F00F_HACK */
2173
2174 int
2175 ptrace_set_pc(struct lwp *lp, unsigned long addr)
2176 {
2177         lp->lwp_md.md_regs->tf_eip = addr;
2178         return (0);
2179 }
2180
2181 int
2182 ptrace_single_step(struct lwp *lp)
2183 {
2184         lp->lwp_md.md_regs->tf_eflags |= PSL_T;
2185         return (0);
2186 }
2187
2188 int
2189 fill_regs(struct lwp *lp, struct reg *regs)
2190 {
2191         struct trapframe *tp;
2192
2193         tp = lp->lwp_md.md_regs;
2194         regs->r_gs = tp->tf_gs;
2195         regs->r_fs = tp->tf_fs;
2196         regs->r_es = tp->tf_es;
2197         regs->r_ds = tp->tf_ds;
2198         regs->r_edi = tp->tf_edi;
2199         regs->r_esi = tp->tf_esi;
2200         regs->r_ebp = tp->tf_ebp;
2201         regs->r_ebx = tp->tf_ebx;
2202         regs->r_edx = tp->tf_edx;
2203         regs->r_ecx = tp->tf_ecx;
2204         regs->r_eax = tp->tf_eax;
2205         regs->r_eip = tp->tf_eip;
2206         regs->r_cs = tp->tf_cs;
2207         regs->r_eflags = tp->tf_eflags;
2208         regs->r_esp = tp->tf_esp;
2209         regs->r_ss = tp->tf_ss;
2210         return (0);
2211 }
2212
2213 int
2214 set_regs(struct lwp *lp, struct reg *regs)
2215 {
2216         struct trapframe *tp;
2217
2218         tp = lp->lwp_md.md_regs;
2219         if (!EFL_SECURE(regs->r_eflags, tp->tf_eflags) ||
2220             !CS_SECURE(regs->r_cs))
2221                 return (EINVAL);
2222         tp->tf_gs = regs->r_gs;
2223         tp->tf_fs = regs->r_fs;
2224         tp->tf_es = regs->r_es;
2225         tp->tf_ds = regs->r_ds;
2226         tp->tf_edi = regs->r_edi;
2227         tp->tf_esi = regs->r_esi;
2228         tp->tf_ebp = regs->r_ebp;
2229         tp->tf_ebx = regs->r_ebx;
2230         tp->tf_edx = regs->r_edx;
2231         tp->tf_ecx = regs->r_ecx;
2232         tp->tf_eax = regs->r_eax;
2233         tp->tf_eip = regs->r_eip;
2234         tp->tf_cs = regs->r_cs;
2235         tp->tf_eflags = regs->r_eflags;
2236         tp->tf_esp = regs->r_esp;
2237         tp->tf_ss = regs->r_ss;
2238         return (0);
2239 }
2240
2241 #ifndef CPU_DISABLE_SSE
2242 static void
2243 fill_fpregs_xmm(struct savexmm *sv_xmm, struct save87 *sv_87)
2244 {
2245         struct env87 *penv_87 = &sv_87->sv_env;
2246         struct envxmm *penv_xmm = &sv_xmm->sv_env;
2247         int i;
2248
2249         /* FPU control/status */
2250         penv_87->en_cw = penv_xmm->en_cw;
2251         penv_87->en_sw = penv_xmm->en_sw;
2252         penv_87->en_tw = penv_xmm->en_tw;
2253         penv_87->en_fip = penv_xmm->en_fip;
2254         penv_87->en_fcs = penv_xmm->en_fcs;
2255         penv_87->en_opcode = penv_xmm->en_opcode;
2256         penv_87->en_foo = penv_xmm->en_foo;
2257         penv_87->en_fos = penv_xmm->en_fos;
2258
2259         /* FPU registers */
2260         for (i = 0; i < 8; ++i)
2261                 sv_87->sv_ac[i] = sv_xmm->sv_fp[i].fp_acc;
2262
2263         sv_87->sv_ex_sw = sv_xmm->sv_ex_sw;
2264 }
2265
2266 static void
2267 set_fpregs_xmm(struct save87 *sv_87, struct savexmm *sv_xmm)
2268 {
2269         struct env87 *penv_87 = &sv_87->sv_env;
2270         struct envxmm *penv_xmm = &sv_xmm->sv_env;
2271         int i;
2272
2273         /* FPU control/status */
2274         penv_xmm->en_cw = penv_87->en_cw;
2275         penv_xmm->en_sw = penv_87->en_sw;
2276         penv_xmm->en_tw = penv_87->en_tw;
2277         penv_xmm->en_fip = penv_87->en_fip;
2278         penv_xmm->en_fcs = penv_87->en_fcs;
2279         penv_xmm->en_opcode = penv_87->en_opcode;
2280         penv_xmm->en_foo = penv_87->en_foo;
2281         penv_xmm->en_fos = penv_87->en_fos;
2282
2283         /* FPU registers */
2284         for (i = 0; i < 8; ++i)
2285                 sv_xmm->sv_fp[i].fp_acc = sv_87->sv_ac[i];
2286
2287         sv_xmm->sv_ex_sw = sv_87->sv_ex_sw;
2288 }
2289 #endif /* CPU_DISABLE_SSE */
2290
2291 int
2292 fill_fpregs(struct lwp *lp, struct fpreg *fpregs)
2293 {
2294 #ifndef CPU_DISABLE_SSE
2295         if (cpu_fxsr) {
2296                 fill_fpregs_xmm(&lp->lwp_thread->td_pcb->pcb_save.sv_xmm,
2297                                 (struct save87 *)fpregs);
2298                 return (0);
2299         }
2300 #endif /* CPU_DISABLE_SSE */
2301         bcopy(&lp->lwp_thread->td_pcb->pcb_save.sv_87, fpregs, sizeof *fpregs);
2302         return (0);
2303 }
2304
2305 int
2306 set_fpregs(struct lwp *lp, struct fpreg *fpregs)
2307 {
2308 #ifndef CPU_DISABLE_SSE
2309         if (cpu_fxsr) {
2310                 set_fpregs_xmm((struct save87 *)fpregs,
2311                                &lp->lwp_thread->td_pcb->pcb_save.sv_xmm);
2312                 return (0);
2313         }
2314 #endif /* CPU_DISABLE_SSE */
2315         bcopy(fpregs, &lp->lwp_thread->td_pcb->pcb_save.sv_87, sizeof *fpregs);
2316         return (0);
2317 }
2318
2319 int
2320 fill_dbregs(struct lwp *lp, struct dbreg *dbregs)
2321 {
2322         if (lp == NULL) {
2323                 dbregs->dr0 = rdr0();
2324                 dbregs->dr1 = rdr1();
2325                 dbregs->dr2 = rdr2();
2326                 dbregs->dr3 = rdr3();
2327                 dbregs->dr4 = rdr4();
2328                 dbregs->dr5 = rdr5();
2329                 dbregs->dr6 = rdr6();
2330                 dbregs->dr7 = rdr7();
2331         } else {
2332                 struct pcb *pcb;
2333
2334                 pcb = lp->lwp_thread->td_pcb;
2335                 dbregs->dr0 = pcb->pcb_dr0;
2336                 dbregs->dr1 = pcb->pcb_dr1;
2337                 dbregs->dr2 = pcb->pcb_dr2;
2338                 dbregs->dr3 = pcb->pcb_dr3;
2339                 dbregs->dr4 = 0;
2340                 dbregs->dr5 = 0;
2341                 dbregs->dr6 = pcb->pcb_dr6;
2342                 dbregs->dr7 = pcb->pcb_dr7;
2343         }
2344         return (0);
2345 }
2346
2347 int
2348 set_dbregs(struct lwp *lp, struct dbreg *dbregs)
2349 {
2350         if (lp == NULL) {
2351                 load_dr0(dbregs->dr0);
2352                 load_dr1(dbregs->dr1);
2353                 load_dr2(dbregs->dr2);
2354                 load_dr3(dbregs->dr3);
2355                 load_dr4(dbregs->dr4);
2356                 load_dr5(dbregs->dr5);
2357                 load_dr6(dbregs->dr6);
2358                 load_dr7(dbregs->dr7);
2359         } else {
2360                 struct pcb *pcb;
2361                 struct ucred *ucred;
2362                 int i;
2363                 uint32_t mask1, mask2;
2364
2365                 /*
2366                  * Don't let an illegal value for dr7 get set.  Specifically,
2367                  * check for undefined settings.  Setting these bit patterns
2368                  * result in undefined behaviour and can lead to an unexpected
2369                  * TRCTRAP.
2370                  */
2371                 for (i = 0, mask1 = 0x3<<16, mask2 = 0x2<<16; i < 8; 
2372                      i++, mask1 <<= 2, mask2 <<= 2)
2373                         if ((dbregs->dr7 & mask1) == mask2)
2374                                 return (EINVAL);
2375                 
2376                 pcb = lp->lwp_thread->td_pcb;
2377                 ucred = lp->lwp_proc->p_ucred;
2378
2379                 /*
2380                  * Don't let a process set a breakpoint that is not within the
2381                  * process's address space.  If a process could do this, it
2382                  * could halt the system by setting a breakpoint in the kernel
2383                  * (if ddb was enabled).  Thus, we need to check to make sure
2384                  * that no breakpoints are being enabled for addresses outside
2385                  * process's address space, unless, perhaps, we were called by
2386                  * uid 0.
2387                  *
2388                  * XXX - what about when the watched area of the user's
2389                  * address space is written into from within the kernel
2390                  * ... wouldn't that still cause a breakpoint to be generated
2391                  * from within kernel mode?
2392                  */
2393
2394                 if (priv_check_cred(ucred, PRIV_ROOT, 0) != 0) {
2395                         if (dbregs->dr7 & 0x3) {
2396                                 /* dr0 is enabled */
2397                                 if (dbregs->dr0 >= VM_MAX_USER_ADDRESS)
2398                                         return (EINVAL);
2399                         }
2400
2401                         if (dbregs->dr7 & (0x3<<2)) {
2402                                 /* dr1 is enabled */
2403                                 if (dbregs->dr1 >= VM_MAX_USER_ADDRESS)
2404                                         return (EINVAL);
2405                         }
2406
2407                         if (dbregs->dr7 & (0x3<<4)) {
2408                                 /* dr2 is enabled */
2409                                 if (dbregs->dr2 >= VM_MAX_USER_ADDRESS)
2410                                         return (EINVAL);
2411                         }
2412
2413                         if (dbregs->dr7 & (0x3<<6)) {
2414                                 /* dr3 is enabled */
2415                                 if (dbregs->dr3 >= VM_MAX_USER_ADDRESS)
2416                                         return (EINVAL);
2417                         }
2418                 }
2419
2420                 pcb->pcb_dr0 = dbregs->dr0;
2421                 pcb->pcb_dr1 = dbregs->dr1;
2422                 pcb->pcb_dr2 = dbregs->dr2;
2423                 pcb->pcb_dr3 = dbregs->dr3;
2424                 pcb->pcb_dr6 = dbregs->dr6;
2425                 pcb->pcb_dr7 = dbregs->dr7;
2426
2427                 pcb->pcb_flags |= PCB_DBREGS;
2428         }
2429
2430         return (0);
2431 }
2432
2433 /*
2434  * Return > 0 if a hardware breakpoint has been hit, and the
2435  * breakpoint was in user space.  Return 0, otherwise.
2436  */
2437 int
2438 user_dbreg_trap(void)
2439 {
2440         u_int32_t dr7, dr6; /* debug registers dr6 and dr7 */
2441         u_int32_t bp;       /* breakpoint bits extracted from dr6 */
2442         int nbp;            /* number of breakpoints that triggered */
2443         caddr_t addr[4];    /* breakpoint addresses */
2444         int i;
2445         
2446         dr7 = rdr7();
2447         if ((dr7 & 0x000000ff) == 0) {
2448                 /*
2449                  * all GE and LE bits in the dr7 register are zero,
2450                  * thus the trap couldn't have been caused by the
2451                  * hardware debug registers
2452                  */
2453                 return 0;
2454         }
2455
2456         nbp = 0;
2457         dr6 = rdr6();
2458         bp = dr6 & 0x0000000f;
2459
2460         if (!bp) {
2461                 /*
2462                  * None of the breakpoint bits are set meaning this
2463                  * trap was not caused by any of the debug registers
2464                  */
2465                 return 0;
2466         }
2467
2468         /*
2469          * at least one of the breakpoints were hit, check to see
2470          * which ones and if any of them are user space addresses
2471          */
2472
2473         if (bp & 0x01) {
2474                 addr[nbp++] = (caddr_t)rdr0();
2475         }
2476         if (bp & 0x02) {
2477                 addr[nbp++] = (caddr_t)rdr1();
2478         }
2479         if (bp & 0x04) {
2480                 addr[nbp++] = (caddr_t)rdr2();
2481         }
2482         if (bp & 0x08) {
2483                 addr[nbp++] = (caddr_t)rdr3();
2484         }
2485
2486         for (i=0; i<nbp; i++) {
2487                 if (addr[i] <
2488                     (caddr_t)VM_MAX_USER_ADDRESS) {
2489                         /*
2490                          * addr[i] is in user space
2491                          */
2492                         return nbp;
2493                 }
2494         }
2495
2496         /*
2497          * None of the breakpoints are in user space.
2498          */
2499         return 0;
2500 }
2501
2502
2503 #ifndef DDB
2504 void
2505 Debugger(const char *msg)
2506 {
2507         kprintf("Debugger(\"%s\") called.\n", msg);
2508 }
2509 #endif /* no DDB */
2510
2511 #ifdef DDB
2512
2513 /*
2514  * Provide inb() and outb() as functions.  They are normally only
2515  * available as macros calling inlined functions, thus cannot be
2516  * called inside DDB.
2517  *
2518  * The actual code is stolen from <machine/cpufunc.h>, and de-inlined.
2519  */
2520
2521 #undef inb
2522 #undef outb
2523
2524 /* silence compiler warnings */
2525 u_char inb(u_int);
2526 void outb(u_int, u_char);
2527
2528 u_char
2529 inb(u_int port)
2530 {
2531         u_char  data;
2532         /*
2533          * We use %%dx and not %1 here because i/o is done at %dx and not at
2534          * %edx, while gcc generates inferior code (movw instead of movl)
2535          * if we tell it to load (u_short) port.
2536          */
2537         __asm __volatile("inb %%dx,%0" : "=a" (data) : "d" (port));
2538         return (data);
2539 }
2540
2541 void
2542 outb(u_int port, u_char data)
2543 {
2544         u_char  al;
2545         /*
2546          * Use an unnecessary assignment to help gcc's register allocator.
2547          * This make a large difference for gcc-1.40 and a tiny difference
2548          * for gcc-2.6.0.  For gcc-1.40, al had to be ``asm("ax")'' for
2549          * best results.  gcc-2.6.0 can't handle this.
2550          */
2551         al = data;
2552         __asm __volatile("outb %0,%%dx" : : "a" (al), "d" (port));
2553 }
2554
2555 #endif /* DDB */
2556
2557
2558
2559 #include "opt_cpu.h"
2560
2561
2562 /*
2563  * initialize all the SMP locks
2564  */
2565
2566 /* critical region when masking or unmasking interupts */
2567 struct spinlock_deprecated imen_spinlock;
2568
2569 /* critical region for old style disable_intr/enable_intr */
2570 struct spinlock_deprecated mpintr_spinlock;
2571
2572 /* critical region around INTR() routines */
2573 struct spinlock_deprecated intr_spinlock;
2574
2575 /* lock region used by kernel profiling */
2576 struct spinlock_deprecated mcount_spinlock;
2577
2578 /* locks com (tty) data/hardware accesses: a FASTINTR() */
2579 struct spinlock_deprecated com_spinlock;
2580
2581 /* lock regions around the clock hardware */
2582 struct spinlock_deprecated clock_spinlock;
2583
2584 /* lock around the MP rendezvous */
2585 struct spinlock_deprecated smp_rv_spinlock;
2586
2587 static void
2588 init_locks(void)
2589 {
2590         /*
2591          * mp_lock = 0; BSP already owns the MP lock 
2592          */
2593         /*
2594          * Get the initial mp_lock with a count of 1 for the BSP.
2595          * This uses a LOGICAL cpu ID, ie BSP == 0.
2596          */
2597 #ifdef SMP
2598         cpu_get_initial_mplock();
2599 #endif
2600         /* DEPRECATED */
2601         spin_lock_init(&mcount_spinlock);
2602         spin_lock_init(&intr_spinlock);
2603         spin_lock_init(&mpintr_spinlock);
2604         spin_lock_init(&imen_spinlock);
2605         spin_lock_init(&smp_rv_spinlock);
2606         spin_lock_init(&com_spinlock);
2607         spin_lock_init(&clock_spinlock);
2608
2609         /* our token pool needs to work early */
2610         lwkt_token_pool_init();
2611 }