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