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