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