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