]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/amd64/amd64/machdep.c
MFC 277713:
[FreeBSD/stable/10.git] / sys / amd64 / amd64 / machdep.c
1 /*-
2  * Copyright (c) 2003 Peter Wemm.
3  * Copyright (c) 1992 Terrence R. Lambert.
4  * Copyright (c) 1982, 1987, 1990 The Regents of the University of California.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * William Jolitz.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      from: @(#)machdep.c     7.4 (Berkeley) 6/3/91
39  */
40
41 #include <sys/cdefs.h>
42 __FBSDID("$FreeBSD$");
43
44 #include "opt_atalk.h"
45 #include "opt_atpic.h"
46 #include "opt_compat.h"
47 #include "opt_cpu.h"
48 #include "opt_ddb.h"
49 #include "opt_inet.h"
50 #include "opt_ipx.h"
51 #include "opt_isa.h"
52 #include "opt_kstack_pages.h"
53 #include "opt_maxmem.h"
54 #include "opt_mp_watchdog.h"
55 #include "opt_perfmon.h"
56 #include "opt_platform.h"
57 #include "opt_sched.h"
58 #include "opt_kdtrace.h"
59
60 #include <sys/param.h>
61 #include <sys/proc.h>
62 #include <sys/systm.h>
63 #include <sys/bio.h>
64 #include <sys/buf.h>
65 #include <sys/bus.h>
66 #include <sys/callout.h>
67 #include <sys/cons.h>
68 #include <sys/cpu.h>
69 #include <sys/efi.h>
70 #include <sys/eventhandler.h>
71 #include <sys/exec.h>
72 #include <sys/imgact.h>
73 #include <sys/kdb.h>
74 #include <sys/kernel.h>
75 #include <sys/ktr.h>
76 #include <sys/linker.h>
77 #include <sys/lock.h>
78 #include <sys/malloc.h>
79 #include <sys/memrange.h>
80 #include <sys/msgbuf.h>
81 #include <sys/mutex.h>
82 #include <sys/pcpu.h>
83 #include <sys/ptrace.h>
84 #include <sys/reboot.h>
85 #include <sys/rwlock.h>
86 #include <sys/sched.h>
87 #include <sys/signalvar.h>
88 #ifdef SMP
89 #include <sys/smp.h>
90 #endif
91 #include <sys/syscallsubr.h>
92 #include <sys/sysctl.h>
93 #include <sys/sysent.h>
94 #include <sys/sysproto.h>
95 #include <sys/ucontext.h>
96 #include <sys/vmmeter.h>
97
98 #include <vm/vm.h>
99 #include <vm/vm_extern.h>
100 #include <vm/vm_kern.h>
101 #include <vm/vm_page.h>
102 #include <vm/vm_map.h>
103 #include <vm/vm_object.h>
104 #include <vm/vm_pager.h>
105 #include <vm/vm_param.h>
106
107 #ifdef DDB
108 #ifndef KDB
109 #error KDB must be enabled in order for DDB to work!
110 #endif
111 #include <ddb/ddb.h>
112 #include <ddb/db_sym.h>
113 #endif
114
115 #include <net/netisr.h>
116
117 #include <machine/clock.h>
118 #include <machine/cpu.h>
119 #include <machine/cputypes.h>
120 #include <machine/intr_machdep.h>
121 #include <x86/mca.h>
122 #include <machine/md_var.h>
123 #include <machine/metadata.h>
124 #include <machine/mp_watchdog.h>
125 #include <machine/pc/bios.h>
126 #include <machine/pcb.h>
127 #include <machine/proc.h>
128 #include <machine/reg.h>
129 #include <machine/sigframe.h>
130 #include <machine/specialreg.h>
131 #ifdef PERFMON
132 #include <machine/perfmon.h>
133 #endif
134 #include <machine/tss.h>
135 #ifdef SMP
136 #include <machine/smp.h>
137 #endif
138 #ifdef FDT
139 #include <x86/fdt.h>
140 #endif
141
142 #ifdef DEV_ATPIC
143 #include <x86/isa/icu.h>
144 #else
145 #include <machine/apicvar.h>
146 #endif
147
148 #include <isa/isareg.h>
149 #include <isa/rtc.h>
150
151 /* Sanity check for __curthread() */
152 CTASSERT(offsetof(struct pcpu, pc_curthread) == 0);
153
154 extern u_int64_t hammer_time(u_int64_t, u_int64_t);
155
156 #define CS_SECURE(cs)           (ISPL(cs) == SEL_UPL)
157 #define EFL_SECURE(ef, oef)     ((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0)
158
159 static void cpu_startup(void *);
160 static void get_fpcontext(struct thread *td, mcontext_t *mcp,
161     char *xfpusave, size_t xfpusave_len);
162 static int  set_fpcontext(struct thread *td, mcontext_t *mcp,
163     char *xfpustate, size_t xfpustate_len);
164 SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL);
165
166 /*
167  * The file "conf/ldscript.amd64" defines the symbol "kernphys".  Its value is
168  * the physical address at which the kernel is loaded.
169  */
170 extern char kernphys[];
171 #ifdef DDB
172 extern vm_offset_t ksym_start, ksym_end;
173 #endif
174
175 struct msgbuf *msgbufp;
176
177 /* Intel ICH registers */
178 #define ICH_PMBASE      0x400
179 #define ICH_SMI_EN      ICH_PMBASE + 0x30
180
181 int     _udatasel, _ucodesel, _ucode32sel, _ufssel, _ugssel;
182
183 int cold = 1;
184
185 long Maxmem = 0;
186 long realmem = 0;
187
188 /*
189  * The number of PHYSMAP entries must be one less than the number of
190  * PHYSSEG entries because the PHYSMAP entry that spans the largest
191  * physical address that is accessible by ISA DMA is split into two
192  * PHYSSEG entries.
193  */
194 #define PHYSMAP_SIZE    (2 * (VM_PHYSSEG_MAX - 1))
195
196 vm_paddr_t phys_avail[PHYSMAP_SIZE + 2];
197 vm_paddr_t dump_avail[PHYSMAP_SIZE + 2];
198
199 /* must be 2 less so 0 0 can signal end of chunks */
200 #define PHYS_AVAIL_ARRAY_END ((sizeof(phys_avail) / sizeof(phys_avail[0])) - 2)
201 #define DUMP_AVAIL_ARRAY_END ((sizeof(dump_avail) / sizeof(dump_avail[0])) - 2)
202
203 struct kva_md_info kmi;
204
205 static struct trapframe proc0_tf;
206 struct region_descriptor r_gdt, r_idt;
207
208 struct pcpu __pcpu[MAXCPU];
209
210 struct mtx icu_lock;
211
212 struct mem_range_softc mem_range_softc;
213
214 struct mtx dt_lock;     /* lock for GDT and LDT */
215
216 void (*vmm_resume_p)(void);
217
218 static void
219 cpu_startup(dummy)
220         void *dummy;
221 {
222         uintmax_t memsize;
223         char *sysenv;
224
225         /*
226          * On MacBooks, we need to disallow the legacy USB circuit to
227          * generate an SMI# because this can cause several problems,
228          * namely: incorrect CPU frequency detection and failure to
229          * start the APs.
230          * We do this by disabling a bit in the SMI_EN (SMI Control and
231          * Enable register) of the Intel ICH LPC Interface Bridge. 
232          */
233         sysenv = getenv("smbios.system.product");
234         if (sysenv != NULL) {
235                 if (strncmp(sysenv, "MacBook1,1", 10) == 0 ||
236                     strncmp(sysenv, "MacBook3,1", 10) == 0 ||
237                     strncmp(sysenv, "MacBook4,1", 10) == 0 ||
238                     strncmp(sysenv, "MacBookPro1,1", 13) == 0 ||
239                     strncmp(sysenv, "MacBookPro1,2", 13) == 0 ||
240                     strncmp(sysenv, "MacBookPro3,1", 13) == 0 ||
241                     strncmp(sysenv, "MacBookPro4,1", 13) == 0 ||
242                     strncmp(sysenv, "Macmini1,1", 10) == 0) {
243                         if (bootverbose)
244                                 printf("Disabling LEGACY_USB_EN bit on "
245                                     "Intel ICH.\n");
246                         outl(ICH_SMI_EN, inl(ICH_SMI_EN) & ~0x8);
247                 }
248                 freeenv(sysenv);
249         }
250
251         /*
252          * Good {morning,afternoon,evening,night}.
253          */
254         startrtclock();
255         printcpuinfo();
256         panicifcpuunsupported();
257 #ifdef PERFMON
258         perfmon_init();
259 #endif
260
261         /*
262          * Display physical memory if SMBIOS reports reasonable amount.
263          */
264         memsize = 0;
265         sysenv = getenv("smbios.memory.enabled");
266         if (sysenv != NULL) {
267                 memsize = (uintmax_t)strtoul(sysenv, (char **)NULL, 10) << 10;
268                 freeenv(sysenv);
269         }
270         if (memsize < ptoa((uintmax_t)cnt.v_free_count))
271                 memsize = ptoa((uintmax_t)Maxmem);
272         printf("real memory  = %ju (%ju MB)\n", memsize, memsize >> 20);
273         realmem = atop(memsize);
274
275         /*
276          * Display any holes after the first chunk of extended memory.
277          */
278         if (bootverbose) {
279                 int indx;
280
281                 printf("Physical memory chunk(s):\n");
282                 for (indx = 0; phys_avail[indx + 1] != 0; indx += 2) {
283                         vm_paddr_t size;
284
285                         size = phys_avail[indx + 1] - phys_avail[indx];
286                         printf(
287                             "0x%016jx - 0x%016jx, %ju bytes (%ju pages)\n",
288                             (uintmax_t)phys_avail[indx],
289                             (uintmax_t)phys_avail[indx + 1] - 1,
290                             (uintmax_t)size, (uintmax_t)size / PAGE_SIZE);
291                 }
292         }
293
294         vm_ksubmap_init(&kmi);
295
296         printf("avail memory = %ju (%ju MB)\n",
297             ptoa((uintmax_t)cnt.v_free_count),
298             ptoa((uintmax_t)cnt.v_free_count) / 1048576);
299
300         /*
301          * Set up buffers, so they can be used to read disk labels.
302          */
303         bufinit();
304         vm_pager_bufferinit();
305
306         cpu_setregs();
307 }
308
309 /*
310  * Send an interrupt to process.
311  *
312  * Stack is set up to allow sigcode stored
313  * at top to call routine, followed by call
314  * to sigreturn routine below.  After sigreturn
315  * resets the signal mask, the stack, and the
316  * frame pointer, it returns to the user
317  * specified pc, psl.
318  */
319 void
320 sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
321 {
322         struct sigframe sf, *sfp;
323         struct pcb *pcb;
324         struct proc *p;
325         struct thread *td;
326         struct sigacts *psp;
327         char *sp;
328         struct trapframe *regs;
329         char *xfpusave;
330         size_t xfpusave_len;
331         int sig;
332         int oonstack;
333
334         td = curthread;
335         pcb = td->td_pcb;
336         p = td->td_proc;
337         PROC_LOCK_ASSERT(p, MA_OWNED);
338         sig = ksi->ksi_signo;
339         psp = p->p_sigacts;
340         mtx_assert(&psp->ps_mtx, MA_OWNED);
341         regs = td->td_frame;
342         oonstack = sigonstack(regs->tf_rsp);
343
344         if (cpu_max_ext_state_size > sizeof(struct savefpu) && use_xsave) {
345                 xfpusave_len = cpu_max_ext_state_size - sizeof(struct savefpu);
346                 xfpusave = __builtin_alloca(xfpusave_len);
347         } else {
348                 xfpusave_len = 0;
349                 xfpusave = NULL;
350         }
351
352         /* Save user context. */
353         bzero(&sf, sizeof(sf));
354         sf.sf_uc.uc_sigmask = *mask;
355         sf.sf_uc.uc_stack = td->td_sigstk;
356         sf.sf_uc.uc_stack.ss_flags = (td->td_pflags & TDP_ALTSTACK)
357             ? ((oonstack) ? SS_ONSTACK : 0) : SS_DISABLE;
358         sf.sf_uc.uc_mcontext.mc_onstack = (oonstack) ? 1 : 0;
359         bcopy(regs, &sf.sf_uc.uc_mcontext.mc_rdi, sizeof(*regs));
360         sf.sf_uc.uc_mcontext.mc_len = sizeof(sf.sf_uc.uc_mcontext); /* magic */
361         get_fpcontext(td, &sf.sf_uc.uc_mcontext, xfpusave, xfpusave_len);
362         fpstate_drop(td);
363         sf.sf_uc.uc_mcontext.mc_fsbase = pcb->pcb_fsbase;
364         sf.sf_uc.uc_mcontext.mc_gsbase = pcb->pcb_gsbase;
365         bzero(sf.sf_uc.uc_mcontext.mc_spare,
366             sizeof(sf.sf_uc.uc_mcontext.mc_spare));
367         bzero(sf.sf_uc.__spare__, sizeof(sf.sf_uc.__spare__));
368
369         /* Allocate space for the signal handler context. */
370         if ((td->td_pflags & TDP_ALTSTACK) != 0 && !oonstack &&
371             SIGISMEMBER(psp->ps_sigonstack, sig)) {
372                 sp = td->td_sigstk.ss_sp + td->td_sigstk.ss_size;
373 #if defined(COMPAT_43)
374                 td->td_sigstk.ss_flags |= SS_ONSTACK;
375 #endif
376         } else
377                 sp = (char *)regs->tf_rsp - 128;
378         if (xfpusave != NULL) {
379                 sp -= xfpusave_len;
380                 sp = (char *)((unsigned long)sp & ~0x3Ful);
381                 sf.sf_uc.uc_mcontext.mc_xfpustate = (register_t)sp;
382         }
383         sp -= sizeof(struct sigframe);
384         /* Align to 16 bytes. */
385         sfp = (struct sigframe *)((unsigned long)sp & ~0xFul);
386
387         /* Translate the signal if appropriate. */
388         if (p->p_sysent->sv_sigtbl && sig <= p->p_sysent->sv_sigsize)
389                 sig = p->p_sysent->sv_sigtbl[_SIG_IDX(sig)];
390
391         /* Build the argument list for the signal handler. */
392         regs->tf_rdi = sig;                     /* arg 1 in %rdi */
393         regs->tf_rdx = (register_t)&sfp->sf_uc; /* arg 3 in %rdx */
394         bzero(&sf.sf_si, sizeof(sf.sf_si));
395         if (SIGISMEMBER(psp->ps_siginfo, sig)) {
396                 /* Signal handler installed with SA_SIGINFO. */
397                 regs->tf_rsi = (register_t)&sfp->sf_si; /* arg 2 in %rsi */
398                 sf.sf_ahu.sf_action = (__siginfohandler_t *)catcher;
399
400                 /* Fill in POSIX parts */
401                 sf.sf_si = ksi->ksi_info;
402                 sf.sf_si.si_signo = sig; /* maybe a translated signal */
403                 regs->tf_rcx = (register_t)ksi->ksi_addr; /* arg 4 in %rcx */
404         } else {
405                 /* Old FreeBSD-style arguments. */
406                 regs->tf_rsi = ksi->ksi_code;   /* arg 2 in %rsi */
407                 regs->tf_rcx = (register_t)ksi->ksi_addr; /* arg 4 in %rcx */
408                 sf.sf_ahu.sf_handler = catcher;
409         }
410         mtx_unlock(&psp->ps_mtx);
411         PROC_UNLOCK(p);
412
413         /*
414          * Copy the sigframe out to the user's stack.
415          */
416         if (copyout(&sf, sfp, sizeof(*sfp)) != 0 ||
417             (xfpusave != NULL && copyout(xfpusave,
418             (void *)sf.sf_uc.uc_mcontext.mc_xfpustate, xfpusave_len)
419             != 0)) {
420 #ifdef DEBUG
421                 printf("process %ld has trashed its stack\n", (long)p->p_pid);
422 #endif
423                 PROC_LOCK(p);
424                 sigexit(td, SIGILL);
425         }
426
427         regs->tf_rsp = (long)sfp;
428         regs->tf_rip = p->p_sysent->sv_sigcode_base;
429         regs->tf_rflags &= ~(PSL_T | PSL_D);
430         regs->tf_cs = _ucodesel;
431         regs->tf_ds = _udatasel;
432         regs->tf_es = _udatasel;
433         regs->tf_fs = _ufssel;
434         regs->tf_gs = _ugssel;
435         regs->tf_flags = TF_HASSEGS;
436         set_pcb_flags(pcb, PCB_FULL_IRET);
437         PROC_LOCK(p);
438         mtx_lock(&psp->ps_mtx);
439 }
440
441 /*
442  * System call to cleanup state after a signal
443  * has been taken.  Reset signal mask and
444  * stack state from context left by sendsig (above).
445  * Return to previous pc and psl as specified by
446  * context left by sendsig. Check carefully to
447  * make sure that the user has not modified the
448  * state to gain improper privileges.
449  *
450  * MPSAFE
451  */
452 int
453 sys_sigreturn(td, uap)
454         struct thread *td;
455         struct sigreturn_args /* {
456                 const struct __ucontext *sigcntxp;
457         } */ *uap;
458 {
459         ucontext_t uc;
460         struct pcb *pcb;
461         struct proc *p;
462         struct trapframe *regs;
463         ucontext_t *ucp;
464         char *xfpustate;
465         size_t xfpustate_len;
466         long rflags;
467         int cs, error, ret;
468         ksiginfo_t ksi;
469
470         pcb = td->td_pcb;
471         p = td->td_proc;
472
473         error = copyin(uap->sigcntxp, &uc, sizeof(uc));
474         if (error != 0) {
475                 uprintf("pid %d (%s): sigreturn copyin failed\n",
476                     p->p_pid, td->td_name);
477                 return (error);
478         }
479         ucp = &uc;
480         if ((ucp->uc_mcontext.mc_flags & ~_MC_FLAG_MASK) != 0) {
481                 uprintf("pid %d (%s): sigreturn mc_flags %x\n", p->p_pid,
482                     td->td_name, ucp->uc_mcontext.mc_flags);
483                 return (EINVAL);
484         }
485         regs = td->td_frame;
486         rflags = ucp->uc_mcontext.mc_rflags;
487         /*
488          * Don't allow users to change privileged or reserved flags.
489          */
490         if (!EFL_SECURE(rflags, regs->tf_rflags)) {
491                 uprintf("pid %d (%s): sigreturn rflags = 0x%lx\n", p->p_pid,
492                     td->td_name, rflags);
493                 return (EINVAL);
494         }
495
496         /*
497          * Don't allow users to load a valid privileged %cs.  Let the
498          * hardware check for invalid selectors, excess privilege in
499          * other selectors, invalid %eip's and invalid %esp's.
500          */
501         cs = ucp->uc_mcontext.mc_cs;
502         if (!CS_SECURE(cs)) {
503                 uprintf("pid %d (%s): sigreturn cs = 0x%x\n", p->p_pid,
504                     td->td_name, cs);
505                 ksiginfo_init_trap(&ksi);
506                 ksi.ksi_signo = SIGBUS;
507                 ksi.ksi_code = BUS_OBJERR;
508                 ksi.ksi_trapno = T_PROTFLT;
509                 ksi.ksi_addr = (void *)regs->tf_rip;
510                 trapsignal(td, &ksi);
511                 return (EINVAL);
512         }
513
514         if ((uc.uc_mcontext.mc_flags & _MC_HASFPXSTATE) != 0) {
515                 xfpustate_len = uc.uc_mcontext.mc_xfpustate_len;
516                 if (xfpustate_len > cpu_max_ext_state_size -
517                     sizeof(struct savefpu)) {
518                         uprintf("pid %d (%s): sigreturn xfpusave_len = 0x%zx\n",
519                             p->p_pid, td->td_name, xfpustate_len);
520                         return (EINVAL);
521                 }
522                 xfpustate = __builtin_alloca(xfpustate_len);
523                 error = copyin((const void *)uc.uc_mcontext.mc_xfpustate,
524                     xfpustate, xfpustate_len);
525                 if (error != 0) {
526                         uprintf(
527         "pid %d (%s): sigreturn copying xfpustate failed\n",
528                             p->p_pid, td->td_name);
529                         return (error);
530                 }
531         } else {
532                 xfpustate = NULL;
533                 xfpustate_len = 0;
534         }
535         ret = set_fpcontext(td, &ucp->uc_mcontext, xfpustate, xfpustate_len);
536         if (ret != 0) {
537                 uprintf("pid %d (%s): sigreturn set_fpcontext err %d\n",
538                     p->p_pid, td->td_name, ret);
539                 return (ret);
540         }
541         bcopy(&ucp->uc_mcontext.mc_rdi, regs, sizeof(*regs));
542         pcb->pcb_fsbase = ucp->uc_mcontext.mc_fsbase;
543         pcb->pcb_gsbase = ucp->uc_mcontext.mc_gsbase;
544
545 #if defined(COMPAT_43)
546         if (ucp->uc_mcontext.mc_onstack & 1)
547                 td->td_sigstk.ss_flags |= SS_ONSTACK;
548         else
549                 td->td_sigstk.ss_flags &= ~SS_ONSTACK;
550 #endif
551
552         kern_sigprocmask(td, SIG_SETMASK, &ucp->uc_sigmask, NULL, 0);
553         set_pcb_flags(pcb, PCB_FULL_IRET);
554         return (EJUSTRETURN);
555 }
556
557 #ifdef COMPAT_FREEBSD4
558 int
559 freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap)
560 {
561  
562         return sys_sigreturn(td, (struct sigreturn_args *)uap);
563 }
564 #endif
565
566
567 /*
568  * Machine dependent boot() routine
569  *
570  * I haven't seen anything to put here yet
571  * Possibly some stuff might be grafted back here from boot()
572  */
573 void
574 cpu_boot(int howto)
575 {
576 }
577
578 /*
579  * Flush the D-cache for non-DMA I/O so that the I-cache can
580  * be made coherent later.
581  */
582 void
583 cpu_flush_dcache(void *ptr, size_t len)
584 {
585         /* Not applicable */
586 }
587
588 /* Get current clock frequency for the given cpu id. */
589 int
590 cpu_est_clockrate(int cpu_id, uint64_t *rate)
591 {
592         uint64_t tsc1, tsc2;
593         uint64_t acnt, mcnt, perf;
594         register_t reg;
595
596         if (pcpu_find(cpu_id) == NULL || rate == NULL)
597                 return (EINVAL);
598
599         /*
600          * If TSC is P-state invariant and APERF/MPERF MSRs do not exist,
601          * DELAY(9) based logic fails.
602          */
603         if (tsc_is_invariant && !tsc_perf_stat)
604                 return (EOPNOTSUPP);
605
606 #ifdef SMP
607         if (smp_cpus > 1) {
608                 /* Schedule ourselves on the indicated cpu. */
609                 thread_lock(curthread);
610                 sched_bind(curthread, cpu_id);
611                 thread_unlock(curthread);
612         }
613 #endif
614
615         /* Calibrate by measuring a short delay. */
616         reg = intr_disable();
617         if (tsc_is_invariant) {
618                 wrmsr(MSR_MPERF, 0);
619                 wrmsr(MSR_APERF, 0);
620                 tsc1 = rdtsc();
621                 DELAY(1000);
622                 mcnt = rdmsr(MSR_MPERF);
623                 acnt = rdmsr(MSR_APERF);
624                 tsc2 = rdtsc();
625                 intr_restore(reg);
626                 perf = 1000 * acnt / mcnt;
627                 *rate = (tsc2 - tsc1) * perf;
628         } else {
629                 tsc1 = rdtsc();
630                 DELAY(1000);
631                 tsc2 = rdtsc();
632                 intr_restore(reg);
633                 *rate = (tsc2 - tsc1) * 1000;
634         }
635
636 #ifdef SMP
637         if (smp_cpus > 1) {
638                 thread_lock(curthread);
639                 sched_unbind(curthread);
640                 thread_unlock(curthread);
641         }
642 #endif
643
644         return (0);
645 }
646
647 /*
648  * Shutdown the CPU as much as possible
649  */
650 void
651 cpu_halt(void)
652 {
653         for (;;)
654                 halt();
655 }
656
657 void (*cpu_idle_hook)(sbintime_t) = NULL;       /* ACPI idle hook. */
658 static int      cpu_ident_amdc1e = 0;   /* AMD C1E supported. */
659 static int      idle_mwait = 1;         /* Use MONITOR/MWAIT for short idle. */
660 TUNABLE_INT("machdep.idle_mwait", &idle_mwait);
661 SYSCTL_INT(_machdep, OID_AUTO, idle_mwait, CTLFLAG_RW, &idle_mwait,
662     0, "Use MONITOR/MWAIT for short idle");
663
664 #define STATE_RUNNING   0x0
665 #define STATE_MWAIT     0x1
666 #define STATE_SLEEPING  0x2
667
668 static void
669 cpu_idle_acpi(sbintime_t sbt)
670 {
671         int *state;
672
673         state = (int *)PCPU_PTR(monitorbuf);
674         *state = STATE_SLEEPING;
675
676         /* See comments in cpu_idle_hlt(). */
677         disable_intr();
678         if (sched_runnable())
679                 enable_intr();
680         else if (cpu_idle_hook)
681                 cpu_idle_hook(sbt);
682         else
683                 __asm __volatile("sti; hlt");
684         *state = STATE_RUNNING;
685 }
686
687 static void
688 cpu_idle_hlt(sbintime_t sbt)
689 {
690         int *state;
691
692         state = (int *)PCPU_PTR(monitorbuf);
693         *state = STATE_SLEEPING;
694
695         /*
696          * Since we may be in a critical section from cpu_idle(), if
697          * an interrupt fires during that critical section we may have
698          * a pending preemption.  If the CPU halts, then that thread
699          * may not execute until a later interrupt awakens the CPU.
700          * To handle this race, check for a runnable thread after
701          * disabling interrupts and immediately return if one is
702          * found.  Also, we must absolutely guarentee that hlt is
703          * the next instruction after sti.  This ensures that any
704          * interrupt that fires after the call to disable_intr() will
705          * immediately awaken the CPU from hlt.  Finally, please note
706          * that on x86 this works fine because of interrupts enabled only
707          * after the instruction following sti takes place, while IF is set
708          * to 1 immediately, allowing hlt instruction to acknowledge the
709          * interrupt.
710          */
711         disable_intr();
712         if (sched_runnable())
713                 enable_intr();
714         else
715                 __asm __volatile("sti; hlt");
716         *state = STATE_RUNNING;
717 }
718
719 /*
720  * MWAIT cpu power states.  Lower 4 bits are sub-states.
721  */
722 #define MWAIT_C0        0xf0
723 #define MWAIT_C1        0x00
724 #define MWAIT_C2        0x10
725 #define MWAIT_C3        0x20
726 #define MWAIT_C4        0x30
727
728 static void
729 cpu_idle_mwait(sbintime_t sbt)
730 {
731         int *state;
732
733         state = (int *)PCPU_PTR(monitorbuf);
734         *state = STATE_MWAIT;
735
736         /* See comments in cpu_idle_hlt(). */
737         disable_intr();
738         if (sched_runnable()) {
739                 enable_intr();
740                 *state = STATE_RUNNING;
741                 return;
742         }
743         cpu_monitor(state, 0, 0);
744         if (*state == STATE_MWAIT)
745                 __asm __volatile("sti; mwait" : : "a" (MWAIT_C1), "c" (0));
746         else
747                 enable_intr();
748         *state = STATE_RUNNING;
749 }
750
751 static void
752 cpu_idle_spin(sbintime_t sbt)
753 {
754         int *state;
755         int i;
756
757         state = (int *)PCPU_PTR(monitorbuf);
758         *state = STATE_RUNNING;
759
760         /*
761          * The sched_runnable() call is racy but as long as there is
762          * a loop missing it one time will have just a little impact if any
763          * (and it is much better than missing the check at all).
764          */
765         for (i = 0; i < 1000; i++) {
766                 if (sched_runnable())
767                         return;
768                 cpu_spinwait();
769         }
770 }
771
772 /*
773  * C1E renders the local APIC timer dead, so we disable it by
774  * reading the Interrupt Pending Message register and clearing
775  * both C1eOnCmpHalt (bit 28) and SmiOnCmpHalt (bit 27).
776  * 
777  * Reference:
778  *   "BIOS and Kernel Developer's Guide for AMD NPT Family 0Fh Processors"
779  *   #32559 revision 3.00+
780  */
781 #define MSR_AMDK8_IPM           0xc0010055
782 #define AMDK8_SMIONCMPHALT      (1ULL << 27)
783 #define AMDK8_C1EONCMPHALT      (1ULL << 28)
784 #define AMDK8_CMPHALT           (AMDK8_SMIONCMPHALT | AMDK8_C1EONCMPHALT)
785
786 static void
787 cpu_probe_amdc1e(void)
788 {
789
790         /*
791          * Detect the presence of C1E capability mostly on latest
792          * dual-cores (or future) k8 family.
793          */
794         if (cpu_vendor_id == CPU_VENDOR_AMD &&
795             (cpu_id & 0x00000f00) == 0x00000f00 &&
796             (cpu_id & 0x0fff0000) >=  0x00040000) {
797                 cpu_ident_amdc1e = 1;
798         }
799 }
800
801 void (*cpu_idle_fn)(sbintime_t) = cpu_idle_acpi;
802
803 void
804 cpu_idle(int busy)
805 {
806         uint64_t msr;
807         sbintime_t sbt = -1;
808
809         CTR2(KTR_SPARE2, "cpu_idle(%d) at %d",
810             busy, curcpu);
811 #ifdef MP_WATCHDOG
812         ap_watchdog(PCPU_GET(cpuid));
813 #endif
814         /* If we are busy - try to use fast methods. */
815         if (busy) {
816                 if ((cpu_feature2 & CPUID2_MON) && idle_mwait) {
817                         cpu_idle_mwait(busy);
818                         goto out;
819                 }
820         }
821
822         /* If we have time - switch timers into idle mode. */
823         if (!busy) {
824                 critical_enter();
825                 sbt = cpu_idleclock();
826         }
827
828         /* Apply AMD APIC timer C1E workaround. */
829         if (cpu_ident_amdc1e && cpu_disable_deep_sleep) {
830                 msr = rdmsr(MSR_AMDK8_IPM);
831                 if (msr & AMDK8_CMPHALT)
832                         wrmsr(MSR_AMDK8_IPM, msr & ~AMDK8_CMPHALT);
833         }
834
835         /* Call main idle method. */
836         cpu_idle_fn(sbt);
837
838         /* Switch timers mack into active mode. */
839         if (!busy) {
840                 cpu_activeclock();
841                 critical_exit();
842         }
843 out:
844         CTR2(KTR_SPARE2, "cpu_idle(%d) at %d done",
845             busy, curcpu);
846 }
847
848 int
849 cpu_idle_wakeup(int cpu)
850 {
851         struct pcpu *pcpu;
852         int *state;
853
854         pcpu = pcpu_find(cpu);
855         state = (int *)pcpu->pc_monitorbuf;
856         /*
857          * This doesn't need to be atomic since missing the race will
858          * simply result in unnecessary IPIs.
859          */
860         if (*state == STATE_SLEEPING)
861                 return (0);
862         if (*state == STATE_MWAIT)
863                 *state = STATE_RUNNING;
864         return (1);
865 }
866
867 /*
868  * Ordered by speed/power consumption.
869  */
870 struct {
871         void    *id_fn;
872         char    *id_name;
873 } idle_tbl[] = {
874         { cpu_idle_spin, "spin" },
875         { cpu_idle_mwait, "mwait" },
876         { cpu_idle_hlt, "hlt" },
877         { cpu_idle_acpi, "acpi" },
878         { NULL, NULL }
879 };
880
881 static int
882 idle_sysctl_available(SYSCTL_HANDLER_ARGS)
883 {
884         char *avail, *p;
885         int error;
886         int i;
887
888         avail = malloc(256, M_TEMP, M_WAITOK);
889         p = avail;
890         for (i = 0; idle_tbl[i].id_name != NULL; i++) {
891                 if (strstr(idle_tbl[i].id_name, "mwait") &&
892                     (cpu_feature2 & CPUID2_MON) == 0)
893                         continue;
894                 if (strcmp(idle_tbl[i].id_name, "acpi") == 0 &&
895                     cpu_idle_hook == NULL)
896                         continue;
897                 p += sprintf(p, "%s%s", p != avail ? ", " : "",
898                     idle_tbl[i].id_name);
899         }
900         error = sysctl_handle_string(oidp, avail, 0, req);
901         free(avail, M_TEMP);
902         return (error);
903 }
904
905 SYSCTL_PROC(_machdep, OID_AUTO, idle_available, CTLTYPE_STRING | CTLFLAG_RD,
906     0, 0, idle_sysctl_available, "A", "list of available idle functions");
907
908 static int
909 idle_sysctl(SYSCTL_HANDLER_ARGS)
910 {
911         char buf[16];
912         int error;
913         char *p;
914         int i;
915
916         p = "unknown";
917         for (i = 0; idle_tbl[i].id_name != NULL; i++) {
918                 if (idle_tbl[i].id_fn == cpu_idle_fn) {
919                         p = idle_tbl[i].id_name;
920                         break;
921                 }
922         }
923         strncpy(buf, p, sizeof(buf));
924         error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
925         if (error != 0 || req->newptr == NULL)
926                 return (error);
927         for (i = 0; idle_tbl[i].id_name != NULL; i++) {
928                 if (strstr(idle_tbl[i].id_name, "mwait") &&
929                     (cpu_feature2 & CPUID2_MON) == 0)
930                         continue;
931                 if (strcmp(idle_tbl[i].id_name, "acpi") == 0 &&
932                     cpu_idle_hook == NULL)
933                         continue;
934                 if (strcmp(idle_tbl[i].id_name, buf))
935                         continue;
936                 cpu_idle_fn = idle_tbl[i].id_fn;
937                 return (0);
938         }
939         return (EINVAL);
940 }
941
942 SYSCTL_PROC(_machdep, OID_AUTO, idle, CTLTYPE_STRING | CTLFLAG_RW, 0, 0,
943     idle_sysctl, "A", "currently selected idle function");
944
945 /*
946  * Reset registers to default values on exec.
947  */
948 void
949 exec_setregs(struct thread *td, struct image_params *imgp, u_long stack)
950 {
951         struct trapframe *regs = td->td_frame;
952         struct pcb *pcb = td->td_pcb;
953
954         mtx_lock(&dt_lock);
955         if (td->td_proc->p_md.md_ldt != NULL)
956                 user_ldt_free(td);
957         else
958                 mtx_unlock(&dt_lock);
959         
960         pcb->pcb_fsbase = 0;
961         pcb->pcb_gsbase = 0;
962         clear_pcb_flags(pcb, PCB_32BIT);
963         pcb->pcb_initial_fpucw = __INITIAL_FPUCW__;
964         set_pcb_flags(pcb, PCB_FULL_IRET);
965
966         bzero((char *)regs, sizeof(struct trapframe));
967         regs->tf_rip = imgp->entry_addr;
968         regs->tf_rsp = ((stack - 8) & ~0xFul) + 8;
969         regs->tf_rdi = stack;           /* argv */
970         regs->tf_rflags = PSL_USER | (regs->tf_rflags & PSL_T);
971         regs->tf_ss = _udatasel;
972         regs->tf_cs = _ucodesel;
973         regs->tf_ds = _udatasel;
974         regs->tf_es = _udatasel;
975         regs->tf_fs = _ufssel;
976         regs->tf_gs = _ugssel;
977         regs->tf_flags = TF_HASSEGS;
978         td->td_retval[1] = 0;
979
980         /*
981          * Reset the hardware debug registers if they were in use.
982          * They won't have any meaning for the newly exec'd process.
983          */
984         if (pcb->pcb_flags & PCB_DBREGS) {
985                 pcb->pcb_dr0 = 0;
986                 pcb->pcb_dr1 = 0;
987                 pcb->pcb_dr2 = 0;
988                 pcb->pcb_dr3 = 0;
989                 pcb->pcb_dr6 = 0;
990                 pcb->pcb_dr7 = 0;
991                 if (pcb == curpcb) {
992                         /*
993                          * Clear the debug registers on the running
994                          * CPU, otherwise they will end up affecting
995                          * the next process we switch to.
996                          */
997                         reset_dbregs();
998                 }
999                 clear_pcb_flags(pcb, PCB_DBREGS);
1000         }
1001
1002         /*
1003          * Drop the FP state if we hold it, so that the process gets a
1004          * clean FP state if it uses the FPU again.
1005          */
1006         fpstate_drop(td);
1007 }
1008
1009 void
1010 cpu_setregs(void)
1011 {
1012         register_t cr0;
1013
1014         cr0 = rcr0();
1015         /*
1016          * CR0_MP, CR0_NE and CR0_TS are also set by npx_probe() for the
1017          * BSP.  See the comments there about why we set them.
1018          */
1019         cr0 |= CR0_MP | CR0_NE | CR0_TS | CR0_WP | CR0_AM;
1020         load_cr0(cr0);
1021 }
1022
1023 /*
1024  * Initialize amd64 and configure to run kernel
1025  */
1026
1027 /*
1028  * Initialize segments & interrupt table
1029  */
1030
1031 struct user_segment_descriptor gdt[NGDT * MAXCPU];/* global descriptor tables */
1032 static struct gate_descriptor idt0[NIDT];
1033 struct gate_descriptor *idt = &idt0[0]; /* interrupt descriptor table */
1034
1035 static char dblfault_stack[PAGE_SIZE] __aligned(16);
1036
1037 static char nmi0_stack[PAGE_SIZE] __aligned(16);
1038 CTASSERT(sizeof(struct nmi_pcpu) == 16);
1039
1040 struct amd64tss common_tss[MAXCPU];
1041
1042 /*
1043  * Software prototypes -- in more palatable form.
1044  *
1045  * Keep GUFS32, GUGS32, GUCODE32 and GUDATA at the same
1046  * slots as corresponding segments for i386 kernel.
1047  */
1048 struct soft_segment_descriptor gdt_segs[] = {
1049 /* GNULL_SEL    0 Null Descriptor */
1050 {       .ssd_base = 0x0,
1051         .ssd_limit = 0x0,
1052         .ssd_type = 0,
1053         .ssd_dpl = 0,
1054         .ssd_p = 0,
1055         .ssd_long = 0,
1056         .ssd_def32 = 0,
1057         .ssd_gran = 0           },
1058 /* GNULL2_SEL   1 Null Descriptor */
1059 {       .ssd_base = 0x0,
1060         .ssd_limit = 0x0,
1061         .ssd_type = 0,
1062         .ssd_dpl = 0,
1063         .ssd_p = 0,
1064         .ssd_long = 0,
1065         .ssd_def32 = 0,
1066         .ssd_gran = 0           },
1067 /* GUFS32_SEL   2 32 bit %gs Descriptor for user */
1068 {       .ssd_base = 0x0,
1069         .ssd_limit = 0xfffff,
1070         .ssd_type = SDT_MEMRWA,
1071         .ssd_dpl = SEL_UPL,
1072         .ssd_p = 1,
1073         .ssd_long = 0,
1074         .ssd_def32 = 1,
1075         .ssd_gran = 1           },
1076 /* GUGS32_SEL   3 32 bit %fs Descriptor for user */
1077 {       .ssd_base = 0x0,
1078         .ssd_limit = 0xfffff,
1079         .ssd_type = SDT_MEMRWA,
1080         .ssd_dpl = SEL_UPL,
1081         .ssd_p = 1,
1082         .ssd_long = 0,
1083         .ssd_def32 = 1,
1084         .ssd_gran = 1           },
1085 /* GCODE_SEL    4 Code Descriptor for kernel */
1086 {       .ssd_base = 0x0,
1087         .ssd_limit = 0xfffff,
1088         .ssd_type = SDT_MEMERA,
1089         .ssd_dpl = SEL_KPL,
1090         .ssd_p = 1,
1091         .ssd_long = 1,
1092         .ssd_def32 = 0,
1093         .ssd_gran = 1           },
1094 /* GDATA_SEL    5 Data Descriptor for kernel */
1095 {       .ssd_base = 0x0,
1096         .ssd_limit = 0xfffff,
1097         .ssd_type = SDT_MEMRWA,
1098         .ssd_dpl = SEL_KPL,
1099         .ssd_p = 1,
1100         .ssd_long = 1,
1101         .ssd_def32 = 0,
1102         .ssd_gran = 1           },
1103 /* GUCODE32_SEL 6 32 bit Code Descriptor for user */
1104 {       .ssd_base = 0x0,
1105         .ssd_limit = 0xfffff,
1106         .ssd_type = SDT_MEMERA,
1107         .ssd_dpl = SEL_UPL,
1108         .ssd_p = 1,
1109         .ssd_long = 0,
1110         .ssd_def32 = 1,
1111         .ssd_gran = 1           },
1112 /* GUDATA_SEL   7 32/64 bit Data Descriptor for user */
1113 {       .ssd_base = 0x0,
1114         .ssd_limit = 0xfffff,
1115         .ssd_type = SDT_MEMRWA,
1116         .ssd_dpl = SEL_UPL,
1117         .ssd_p = 1,
1118         .ssd_long = 0,
1119         .ssd_def32 = 1,
1120         .ssd_gran = 1           },
1121 /* GUCODE_SEL   8 64 bit Code Descriptor for user */
1122 {       .ssd_base = 0x0,
1123         .ssd_limit = 0xfffff,
1124         .ssd_type = SDT_MEMERA,
1125         .ssd_dpl = SEL_UPL,
1126         .ssd_p = 1,
1127         .ssd_long = 1,
1128         .ssd_def32 = 0,
1129         .ssd_gran = 1           },
1130 /* GPROC0_SEL   9 Proc 0 Tss Descriptor */
1131 {       .ssd_base = 0x0,
1132         .ssd_limit = sizeof(struct amd64tss) + IOPAGES * PAGE_SIZE - 1,
1133         .ssd_type = SDT_SYSTSS,
1134         .ssd_dpl = SEL_KPL,
1135         .ssd_p = 1,
1136         .ssd_long = 0,
1137         .ssd_def32 = 0,
1138         .ssd_gran = 0           },
1139 /* Actually, the TSS is a system descriptor which is double size */
1140 {       .ssd_base = 0x0,
1141         .ssd_limit = 0x0,
1142         .ssd_type = 0,
1143         .ssd_dpl = 0,
1144         .ssd_p = 0,
1145         .ssd_long = 0,
1146         .ssd_def32 = 0,
1147         .ssd_gran = 0           },
1148 /* GUSERLDT_SEL 11 LDT Descriptor */
1149 {       .ssd_base = 0x0,
1150         .ssd_limit = 0x0,
1151         .ssd_type = 0,
1152         .ssd_dpl = 0,
1153         .ssd_p = 0,
1154         .ssd_long = 0,
1155         .ssd_def32 = 0,
1156         .ssd_gran = 0           },
1157 /* GUSERLDT_SEL 12 LDT Descriptor, double size */
1158 {       .ssd_base = 0x0,
1159         .ssd_limit = 0x0,
1160         .ssd_type = 0,
1161         .ssd_dpl = 0,
1162         .ssd_p = 0,
1163         .ssd_long = 0,
1164         .ssd_def32 = 0,
1165         .ssd_gran = 0           },
1166 };
1167
1168 void
1169 setidt(idx, func, typ, dpl, ist)
1170         int idx;
1171         inthand_t *func;
1172         int typ;
1173         int dpl;
1174         int ist;
1175 {
1176         struct gate_descriptor *ip;
1177
1178         ip = idt + idx;
1179         ip->gd_looffset = (uintptr_t)func;
1180         ip->gd_selector = GSEL(GCODE_SEL, SEL_KPL);
1181         ip->gd_ist = ist;
1182         ip->gd_xx = 0;
1183         ip->gd_type = typ;
1184         ip->gd_dpl = dpl;
1185         ip->gd_p = 1;
1186         ip->gd_hioffset = ((uintptr_t)func)>>16 ;
1187 }
1188
1189 extern inthand_t
1190         IDTVEC(div), IDTVEC(dbg), IDTVEC(nmi), IDTVEC(bpt), IDTVEC(ofl),
1191         IDTVEC(bnd), IDTVEC(ill), IDTVEC(dna), IDTVEC(fpusegm),
1192         IDTVEC(tss), IDTVEC(missing), IDTVEC(stk), IDTVEC(prot),
1193         IDTVEC(page), IDTVEC(mchk), IDTVEC(rsvd), IDTVEC(fpu), IDTVEC(align),
1194         IDTVEC(xmm), IDTVEC(dblfault),
1195 #ifdef KDTRACE_HOOKS
1196         IDTVEC(dtrace_ret),
1197 #endif
1198 #ifdef XENHVM
1199         IDTVEC(xen_intr_upcall),
1200 #endif
1201         IDTVEC(fast_syscall), IDTVEC(fast_syscall32);
1202
1203 #ifdef DDB
1204 /*
1205  * Display the index and function name of any IDT entries that don't use
1206  * the default 'rsvd' entry point.
1207  */
1208 DB_SHOW_COMMAND(idt, db_show_idt)
1209 {
1210         struct gate_descriptor *ip;
1211         int idx;
1212         uintptr_t func;
1213
1214         ip = idt;
1215         for (idx = 0; idx < NIDT && !db_pager_quit; idx++) {
1216                 func = ((long)ip->gd_hioffset << 16 | ip->gd_looffset);
1217                 if (func != (uintptr_t)&IDTVEC(rsvd)) {
1218                         db_printf("%3d\t", idx);
1219                         db_printsym(func, DB_STGY_PROC);
1220                         db_printf("\n");
1221                 }
1222                 ip++;
1223         }
1224 }
1225
1226 /* Show privileged registers. */
1227 DB_SHOW_COMMAND(sysregs, db_show_sysregs)
1228 {
1229         struct {
1230                 uint16_t limit;
1231                 uint64_t base;
1232         } __packed idtr, gdtr;
1233         uint16_t ldt, tr;
1234
1235         __asm __volatile("sidt %0" : "=m" (idtr));
1236         db_printf("idtr\t0x%016lx/%04x\n",
1237             (u_long)idtr.base, (u_int)idtr.limit);
1238         __asm __volatile("sgdt %0" : "=m" (gdtr));
1239         db_printf("gdtr\t0x%016lx/%04x\n",
1240             (u_long)gdtr.base, (u_int)gdtr.limit);
1241         __asm __volatile("sldt %0" : "=r" (ldt));
1242         db_printf("ldtr\t0x%04x\n", ldt);
1243         __asm __volatile("str %0" : "=r" (tr));
1244         db_printf("tr\t0x%04x\n", tr);
1245         db_printf("cr0\t0x%016lx\n", rcr0());
1246         db_printf("cr2\t0x%016lx\n", rcr2());
1247         db_printf("cr3\t0x%016lx\n", rcr3());
1248         db_printf("cr4\t0x%016lx\n", rcr4());
1249         db_printf("EFER\t%016lx\n", rdmsr(MSR_EFER));
1250         db_printf("FEATURES_CTL\t%016lx\n", rdmsr(MSR_IA32_FEATURE_CONTROL));
1251         db_printf("DEBUG_CTL\t%016lx\n", rdmsr(MSR_DEBUGCTLMSR));
1252         db_printf("PAT\t%016lx\n", rdmsr(MSR_PAT));
1253         db_printf("GSBASE\t%016lx\n", rdmsr(MSR_GSBASE));
1254 }
1255 #endif
1256
1257 void
1258 sdtossd(sd, ssd)
1259         struct user_segment_descriptor *sd;
1260         struct soft_segment_descriptor *ssd;
1261 {
1262
1263         ssd->ssd_base  = (sd->sd_hibase << 24) | sd->sd_lobase;
1264         ssd->ssd_limit = (sd->sd_hilimit << 16) | sd->sd_lolimit;
1265         ssd->ssd_type  = sd->sd_type;
1266         ssd->ssd_dpl   = sd->sd_dpl;
1267         ssd->ssd_p     = sd->sd_p;
1268         ssd->ssd_long  = sd->sd_long;
1269         ssd->ssd_def32 = sd->sd_def32;
1270         ssd->ssd_gran  = sd->sd_gran;
1271 }
1272
1273 void
1274 ssdtosd(ssd, sd)
1275         struct soft_segment_descriptor *ssd;
1276         struct user_segment_descriptor *sd;
1277 {
1278
1279         sd->sd_lobase = (ssd->ssd_base) & 0xffffff;
1280         sd->sd_hibase = (ssd->ssd_base >> 24) & 0xff;
1281         sd->sd_lolimit = (ssd->ssd_limit) & 0xffff;
1282         sd->sd_hilimit = (ssd->ssd_limit >> 16) & 0xf;
1283         sd->sd_type  = ssd->ssd_type;
1284         sd->sd_dpl   = ssd->ssd_dpl;
1285         sd->sd_p     = ssd->ssd_p;
1286         sd->sd_long  = ssd->ssd_long;
1287         sd->sd_def32 = ssd->ssd_def32;
1288         sd->sd_gran  = ssd->ssd_gran;
1289 }
1290
1291 void
1292 ssdtosyssd(ssd, sd)
1293         struct soft_segment_descriptor *ssd;
1294         struct system_segment_descriptor *sd;
1295 {
1296
1297         sd->sd_lobase = (ssd->ssd_base) & 0xffffff;
1298         sd->sd_hibase = (ssd->ssd_base >> 24) & 0xfffffffffful;
1299         sd->sd_lolimit = (ssd->ssd_limit) & 0xffff;
1300         sd->sd_hilimit = (ssd->ssd_limit >> 16) & 0xf;
1301         sd->sd_type  = ssd->ssd_type;
1302         sd->sd_dpl   = ssd->ssd_dpl;
1303         sd->sd_p     = ssd->ssd_p;
1304         sd->sd_gran  = ssd->ssd_gran;
1305 }
1306
1307 #if !defined(DEV_ATPIC) && defined(DEV_ISA)
1308 #include <isa/isavar.h>
1309 #include <isa/isareg.h>
1310 /*
1311  * Return a bitmap of the current interrupt requests.  This is 8259-specific
1312  * and is only suitable for use at probe time.
1313  * This is only here to pacify sio.  It is NOT FATAL if this doesn't work.
1314  * It shouldn't be here.  There should probably be an APIC centric
1315  * implementation in the apic driver code, if at all.
1316  */
1317 intrmask_t
1318 isa_irq_pending(void)
1319 {
1320         u_char irr1;
1321         u_char irr2;
1322
1323         irr1 = inb(IO_ICU1);
1324         irr2 = inb(IO_ICU2);
1325         return ((irr2 << 8) | irr1);
1326 }
1327 #endif
1328
1329 u_int basemem;
1330
1331 static int
1332 add_physmap_entry(uint64_t base, uint64_t length, vm_paddr_t *physmap,
1333     int *physmap_idxp)
1334 {
1335         int i, insert_idx, physmap_idx;
1336
1337         physmap_idx = *physmap_idxp;
1338
1339         if (length == 0)
1340                 return (1);
1341
1342         /*
1343          * Find insertion point while checking for overlap.  Start off by
1344          * assuming the new entry will be added to the end.
1345          */
1346         insert_idx = physmap_idx + 2;
1347         for (i = 0; i <= physmap_idx; i += 2) {
1348                 if (base < physmap[i + 1]) {
1349                         if (base + length <= physmap[i]) {
1350                                 insert_idx = i;
1351                                 break;
1352                         }
1353                         if (boothowto & RB_VERBOSE)
1354                                 printf(
1355                     "Overlapping memory regions, ignoring second region\n");
1356                         return (1);
1357                 }
1358         }
1359
1360         /* See if we can prepend to the next entry. */
1361         if (insert_idx <= physmap_idx && base + length == physmap[insert_idx]) {
1362                 physmap[insert_idx] = base;
1363                 return (1);
1364         }
1365
1366         /* See if we can append to the previous entry. */
1367         if (insert_idx > 0 && base == physmap[insert_idx - 1]) {
1368                 physmap[insert_idx - 1] += length;
1369                 return (1);
1370         }
1371
1372         physmap_idx += 2;
1373         *physmap_idxp = physmap_idx;
1374         if (physmap_idx == PHYSMAP_SIZE) {
1375                 printf(
1376                 "Too many segments in the physical address map, giving up\n");
1377                 return (0);
1378         }
1379
1380         /*
1381          * Move the last 'N' entries down to make room for the new
1382          * entry if needed.
1383          */
1384         for (i = physmap_idx; i > insert_idx; i -= 2) {
1385                 physmap[i] = physmap[i - 2];
1386                 physmap[i + 1] = physmap[i - 1];
1387         }
1388
1389         /* Insert the new entry. */
1390         physmap[insert_idx] = base;
1391         physmap[insert_idx + 1] = base + length;
1392         return (1);
1393 }
1394
1395 static void
1396 add_smap_entries(struct bios_smap *smapbase, vm_paddr_t *physmap,
1397     int *physmap_idx)
1398 {
1399         struct bios_smap *smap, *smapend;
1400         u_int32_t smapsize;
1401
1402         /*
1403          * Memory map from INT 15:E820.
1404          *
1405          * subr_module.c says:
1406          * "Consumer may safely assume that size value precedes data."
1407          * ie: an int32_t immediately precedes smap.
1408          */
1409         smapsize = *((u_int32_t *)smapbase - 1);
1410         smapend = (struct bios_smap *)((uintptr_t)smapbase + smapsize);
1411
1412         for (smap = smapbase; smap < smapend; smap++) {
1413                 if (boothowto & RB_VERBOSE)
1414                         printf("SMAP type=%02x base=%016lx len=%016lx\n",
1415                             smap->type, smap->base, smap->length);
1416
1417                 if (smap->type != SMAP_TYPE_MEMORY)
1418                         continue;
1419
1420                 if (!add_physmap_entry(smap->base, smap->length, physmap,
1421                     physmap_idx))
1422                         break;
1423         }
1424 }
1425
1426 #define efi_next_descriptor(ptr, size) \
1427         ((struct efi_md *)(((uint8_t *) ptr) + size))
1428
1429 static void
1430 add_efi_map_entries(struct efi_map_header *efihdr, vm_paddr_t *physmap,
1431     int *physmap_idx)
1432 {
1433         struct efi_md *map, *p;
1434         const char *type;
1435         size_t efisz;
1436         int ndesc, i;
1437
1438         static const char *types[] = {
1439                 "Reserved",
1440                 "LoaderCode",
1441                 "LoaderData",
1442                 "BootServicesCode",
1443                 "BootServicesData",
1444                 "RuntimeServicesCode",
1445                 "RuntimeServicesData",
1446                 "ConventionalMemory",
1447                 "UnusableMemory",
1448                 "ACPIReclaimMemory",
1449                 "ACPIMemoryNVS",
1450                 "MemoryMappedIO",
1451                 "MemoryMappedIOPortSpace",
1452                 "PalCode"
1453         };
1454
1455         /*
1456          * Memory map data provided by UEFI via the GetMemoryMap
1457          * Boot Services API.
1458          */
1459         efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
1460         map = (struct efi_md *)((uint8_t *)efihdr + efisz); 
1461
1462         if (efihdr->descriptor_size == 0)
1463                 return;
1464         ndesc = efihdr->memory_size / efihdr->descriptor_size;
1465
1466         if (boothowto & RB_VERBOSE)
1467                 printf("%23s %12s %12s %8s %4s\n",
1468                     "Type", "Physical", "Virtual", "#Pages", "Attr");
1469
1470         for (i = 0, p = map; i < ndesc; i++,
1471             p = efi_next_descriptor(p, efihdr->descriptor_size)) {
1472                 if (boothowto & RB_VERBOSE) {
1473                         if (p->md_type <= EFI_MD_TYPE_PALCODE)
1474                                 type = types[p->md_type];
1475                         else
1476                                 type = "<INVALID>";
1477                         printf("%23s %012lx %12p %08lx ", type, p->md_phys,
1478                             p->md_virt, p->md_pages);
1479                         if (p->md_attr & EFI_MD_ATTR_UC)
1480                                 printf("UC ");
1481                         if (p->md_attr & EFI_MD_ATTR_WC)
1482                                 printf("WC ");
1483                         if (p->md_attr & EFI_MD_ATTR_WT)
1484                                 printf("WT ");
1485                         if (p->md_attr & EFI_MD_ATTR_WB)
1486                                 printf("WB ");
1487                         if (p->md_attr & EFI_MD_ATTR_UCE)
1488                                 printf("UCE ");
1489                         if (p->md_attr & EFI_MD_ATTR_WP)
1490                                 printf("WP ");
1491                         if (p->md_attr & EFI_MD_ATTR_RP)
1492                                 printf("RP ");
1493                         if (p->md_attr & EFI_MD_ATTR_XP)
1494                                 printf("XP ");
1495                         if (p->md_attr & EFI_MD_ATTR_RT)
1496                                 printf("RUNTIME");
1497                         printf("\n");
1498                 }
1499
1500                 switch (p->md_type) {
1501                 case EFI_MD_TYPE_CODE:
1502                 case EFI_MD_TYPE_DATA:
1503                 case EFI_MD_TYPE_BS_CODE:
1504                 case EFI_MD_TYPE_BS_DATA:
1505                 case EFI_MD_TYPE_FREE:
1506                         /*
1507                          * We're allowed to use any entry with these types.
1508                          */
1509                         break;
1510                 default:
1511                         continue;
1512                 }
1513
1514                 if (!add_physmap_entry(p->md_phys, (p->md_pages * PAGE_SIZE),
1515                     physmap, physmap_idx))
1516                         break;
1517         }
1518 }
1519
1520 static char bootmethod[16] = "";
1521 SYSCTL_STRING(_machdep, OID_AUTO, bootmethod, CTLFLAG_RD, bootmethod, 0,
1522     "System firmware boot method");
1523
1524 #define PAGES_PER_GB    (1024 * 1024 * 1024 / PAGE_SIZE)
1525
1526 /*
1527  * Populate the (physmap) array with base/bound pairs describing the
1528  * available physical memory in the system, then test this memory and
1529  * build the phys_avail array describing the actually-available memory.
1530  *
1531  * Total memory size may be set by the kernel environment variable
1532  * hw.physmem or the compile-time define MAXMEM.
1533  *
1534  * XXX first should be vm_paddr_t.
1535  */
1536 static void
1537 getmemsize(caddr_t kmdp, u_int64_t first)
1538 {
1539         int i, physmap_idx, pa_indx, da_indx;
1540         vm_paddr_t pa, physmap[PHYSMAP_SIZE];
1541         u_long physmem_start, physmem_tunable, memtest;
1542         pt_entry_t *pte;
1543         struct bios_smap *smapbase;
1544         struct efi_map_header *efihdr;
1545         quad_t dcons_addr, dcons_size;
1546         int page_counter;
1547
1548         bzero(physmap, sizeof(physmap));
1549         basemem = 0;
1550         physmap_idx = 0;
1551
1552         efihdr = (struct efi_map_header *)preload_search_info(kmdp,
1553             MODINFO_METADATA | MODINFOMD_EFI_MAP);
1554         smapbase = (struct bios_smap *)preload_search_info(kmdp,
1555             MODINFO_METADATA | MODINFOMD_SMAP);
1556
1557         if (efihdr != NULL) {
1558                 add_efi_map_entries(efihdr, physmap, &physmap_idx);
1559                 strlcpy(bootmethod, "UEFI", sizeof(bootmethod));
1560         } else if (smapbase != NULL) {
1561                 add_smap_entries(smapbase, physmap, &physmap_idx);
1562                 strlcpy(bootmethod, "BIOS", sizeof(bootmethod));
1563         } else {
1564                 panic("No BIOS smap or EFI map info from loader!");
1565         }
1566
1567         /*
1568          * Find the 'base memory' segment for SMP
1569          */
1570         basemem = 0;
1571         for (i = 0; i <= physmap_idx; i += 2) {
1572                 if (physmap[i] == 0x00000000) {
1573                         basemem = physmap[i + 1] / 1024;
1574                         break;
1575                 }
1576         }
1577         if (basemem == 0)
1578                 panic("BIOS smap did not include a basemem segment!");
1579
1580 #ifdef SMP
1581         /* make hole for AP bootstrap code */
1582         physmap[1] = mp_bootaddress(physmap[1] / 1024);
1583 #endif
1584
1585         /*
1586          * Maxmem isn't the "maximum memory", it's one larger than the
1587          * highest page of the physical address space.  It should be
1588          * called something like "Maxphyspage".  We may adjust this
1589          * based on ``hw.physmem'' and the results of the memory test.
1590          */
1591         Maxmem = atop(physmap[physmap_idx + 1]);
1592
1593 #ifdef MAXMEM
1594         Maxmem = MAXMEM / 4;
1595 #endif
1596
1597         if (TUNABLE_ULONG_FETCH("hw.physmem", &physmem_tunable))
1598                 Maxmem = atop(physmem_tunable);
1599
1600         /*
1601          * By default enable the memory test on real hardware, and disable
1602          * it if we appear to be running in a VM.  This avoids touching all
1603          * pages unnecessarily, which doesn't matter on real hardware but is
1604          * bad for shared VM hosts.  Use a general name so that
1605          * one could eventually do more with the code than just disable it.
1606          */
1607         memtest = (vm_guest > VM_GUEST_NO) ? 0 : 1;
1608         TUNABLE_ULONG_FETCH("hw.memtest.tests", &memtest);
1609
1610         /*
1611          * Don't allow MAXMEM or hw.physmem to extend the amount of memory
1612          * in the system.
1613          */
1614         if (Maxmem > atop(physmap[physmap_idx + 1]))
1615                 Maxmem = atop(physmap[physmap_idx + 1]);
1616
1617         if (atop(physmap[physmap_idx + 1]) != Maxmem &&
1618             (boothowto & RB_VERBOSE))
1619                 printf("Physical memory use set to %ldK\n", Maxmem * 4);
1620
1621         /* call pmap initialization to make new kernel address space */
1622         pmap_bootstrap(&first);
1623
1624         /*
1625          * Size up each available chunk of physical memory.
1626          *
1627          * XXX Some BIOSes corrupt low 64KB between suspend and resume.
1628          * By default, mask off the first 16 pages unless we appear to be
1629          * running in a VM.
1630          */
1631         physmem_start = (vm_guest > VM_GUEST_NO ? 1 : 16) << PAGE_SHIFT;
1632         TUNABLE_ULONG_FETCH("hw.physmem.start", &physmem_start);
1633         if (physmem_start < PAGE_SIZE)
1634                 physmap[0] = PAGE_SIZE;
1635         else if (physmem_start >= physmap[1])
1636                 physmap[0] = round_page(physmap[1] - PAGE_SIZE);
1637         else
1638                 physmap[0] = round_page(physmem_start);
1639         pa_indx = 0;
1640         da_indx = 1;
1641         phys_avail[pa_indx++] = physmap[0];
1642         phys_avail[pa_indx] = physmap[0];
1643         dump_avail[da_indx] = physmap[0];
1644         pte = CMAP1;
1645
1646         /*
1647          * Get dcons buffer address
1648          */
1649         if (getenv_quad("dcons.addr", &dcons_addr) == 0 ||
1650             getenv_quad("dcons.size", &dcons_size) == 0)
1651                 dcons_addr = 0;
1652
1653         /*
1654          * physmap is in bytes, so when converting to page boundaries,
1655          * round up the start address and round down the end address.
1656          */
1657         page_counter = 0;
1658         if (memtest != 0)
1659                 printf("Testing system memory");
1660         for (i = 0; i <= physmap_idx; i += 2) {
1661                 vm_paddr_t end;
1662
1663                 end = ptoa((vm_paddr_t)Maxmem);
1664                 if (physmap[i + 1] < end)
1665                         end = trunc_page(physmap[i + 1]);
1666                 for (pa = round_page(physmap[i]); pa < end; pa += PAGE_SIZE) {
1667                         int tmp, page_bad, full;
1668                         int *ptr = (int *)CADDR1;
1669
1670                         full = FALSE;
1671                         /*
1672                          * block out kernel memory as not available.
1673                          */
1674                         if (pa >= (vm_paddr_t)kernphys && pa < first)
1675                                 goto do_dump_avail;
1676
1677                         /*
1678                          * block out dcons buffer
1679                          */
1680                         if (dcons_addr > 0
1681                             && pa >= trunc_page(dcons_addr)
1682                             && pa < dcons_addr + dcons_size)
1683                                 goto do_dump_avail;
1684
1685                         page_bad = FALSE;
1686                         if (memtest == 0)
1687                                 goto skip_memtest;
1688
1689                         /*
1690                          * Print a "." every GB to show we're making
1691                          * progress.
1692                          */
1693                         page_counter++;
1694                         if ((page_counter % PAGES_PER_GB) == 0)
1695                                 printf(".");
1696
1697                         /*
1698                          * map page into kernel: valid, read/write,non-cacheable
1699                          */
1700                         *pte = pa | PG_V | PG_RW | PG_NC_PWT | PG_NC_PCD;
1701                         invltlb();
1702
1703                         tmp = *(int *)ptr;
1704                         /*
1705                          * Test for alternating 1's and 0's
1706                          */
1707                         *(volatile int *)ptr = 0xaaaaaaaa;
1708                         if (*(volatile int *)ptr != 0xaaaaaaaa)
1709                                 page_bad = TRUE;
1710                         /*
1711                          * Test for alternating 0's and 1's
1712                          */
1713                         *(volatile int *)ptr = 0x55555555;
1714                         if (*(volatile int *)ptr != 0x55555555)
1715                                 page_bad = TRUE;
1716                         /*
1717                          * Test for all 1's
1718                          */
1719                         *(volatile int *)ptr = 0xffffffff;
1720                         if (*(volatile int *)ptr != 0xffffffff)
1721                                 page_bad = TRUE;
1722                         /*
1723                          * Test for all 0's
1724                          */
1725                         *(volatile int *)ptr = 0x0;
1726                         if (*(volatile int *)ptr != 0x0)
1727                                 page_bad = TRUE;
1728                         /*
1729                          * Restore original value.
1730                          */
1731                         *(int *)ptr = tmp;
1732
1733 skip_memtest:
1734                         /*
1735                          * Adjust array of valid/good pages.
1736                          */
1737                         if (page_bad == TRUE)
1738                                 continue;
1739                         /*
1740                          * If this good page is a continuation of the
1741                          * previous set of good pages, then just increase
1742                          * the end pointer. Otherwise start a new chunk.
1743                          * Note that "end" points one higher than end,
1744                          * making the range >= start and < end.
1745                          * If we're also doing a speculative memory
1746                          * test and we at or past the end, bump up Maxmem
1747                          * so that we keep going. The first bad page
1748                          * will terminate the loop.
1749                          */
1750                         if (phys_avail[pa_indx] == pa) {
1751                                 phys_avail[pa_indx] += PAGE_SIZE;
1752                         } else {
1753                                 pa_indx++;
1754                                 if (pa_indx == PHYS_AVAIL_ARRAY_END) {
1755                                         printf(
1756                 "Too many holes in the physical address space, giving up\n");
1757                                         pa_indx--;
1758                                         full = TRUE;
1759                                         goto do_dump_avail;
1760                                 }
1761                                 phys_avail[pa_indx++] = pa;     /* start */
1762                                 phys_avail[pa_indx] = pa + PAGE_SIZE; /* end */
1763                         }
1764                         physmem++;
1765 do_dump_avail:
1766                         if (dump_avail[da_indx] == pa) {
1767                                 dump_avail[da_indx] += PAGE_SIZE;
1768                         } else {
1769                                 da_indx++;
1770                                 if (da_indx == DUMP_AVAIL_ARRAY_END) {
1771                                         da_indx--;
1772                                         goto do_next;
1773                                 }
1774                                 dump_avail[da_indx++] = pa; /* start */
1775                                 dump_avail[da_indx] = pa + PAGE_SIZE; /* end */
1776                         }
1777 do_next:
1778                         if (full)
1779                                 break;
1780                 }
1781         }
1782         *pte = 0;
1783         invltlb();
1784         if (memtest != 0)
1785                 printf("\n");
1786
1787         /*
1788          * XXX
1789          * The last chunk must contain at least one page plus the message
1790          * buffer to avoid complicating other code (message buffer address
1791          * calculation, etc.).
1792          */
1793         while (phys_avail[pa_indx - 1] + PAGE_SIZE +
1794             round_page(msgbufsize) >= phys_avail[pa_indx]) {
1795                 physmem -= atop(phys_avail[pa_indx] - phys_avail[pa_indx - 1]);
1796                 phys_avail[pa_indx--] = 0;
1797                 phys_avail[pa_indx--] = 0;
1798         }
1799
1800         Maxmem = atop(phys_avail[pa_indx]);
1801
1802         /* Trim off space for the message buffer. */
1803         phys_avail[pa_indx] -= round_page(msgbufsize);
1804
1805         /* Map the message buffer. */
1806         msgbufp = (struct msgbuf *)PHYS_TO_DMAP(phys_avail[pa_indx]);
1807 }
1808
1809 u_int64_t
1810 hammer_time(u_int64_t modulep, u_int64_t physfree)
1811 {
1812         caddr_t kmdp;
1813         int gsel_tss, x;
1814         struct pcpu *pc;
1815         struct nmi_pcpu *np;
1816         struct xstate_hdr *xhdr;
1817         u_int64_t msr;
1818         char *env;
1819         size_t kstack0_sz;
1820
1821         thread0.td_kstack = physfree + KERNBASE;
1822         thread0.td_kstack_pages = KSTACK_PAGES;
1823         kstack0_sz = thread0.td_kstack_pages * PAGE_SIZE;
1824         bzero((void *)thread0.td_kstack, kstack0_sz);
1825         physfree += kstack0_sz;
1826
1827         /*
1828          * This may be done better later if it gets more high level
1829          * components in it. If so just link td->td_proc here.
1830          */
1831         proc_linkup0(&proc0, &thread0);
1832
1833         preload_metadata = (caddr_t)(uintptr_t)(modulep + KERNBASE);
1834         preload_bootstrap_relocate(KERNBASE);
1835         kmdp = preload_search_by_type("elf kernel");
1836         if (kmdp == NULL)
1837                 kmdp = preload_search_by_type("elf64 kernel");
1838         boothowto = MD_FETCH(kmdp, MODINFOMD_HOWTO, int);
1839         kern_envp = MD_FETCH(kmdp, MODINFOMD_ENVP, char *) + KERNBASE;
1840 #ifdef DDB
1841         ksym_start = MD_FETCH(kmdp, MODINFOMD_SSYM, uintptr_t);
1842         ksym_end = MD_FETCH(kmdp, MODINFOMD_ESYM, uintptr_t);
1843 #endif
1844
1845         /* Init basic tunables, hz etc */
1846         init_param1();
1847
1848         /*
1849          * make gdt memory segments
1850          */
1851         for (x = 0; x < NGDT; x++) {
1852                 if (x != GPROC0_SEL && x != (GPROC0_SEL + 1) &&
1853                     x != GUSERLDT_SEL && x != (GUSERLDT_SEL) + 1)
1854                         ssdtosd(&gdt_segs[x], &gdt[x]);
1855         }
1856         gdt_segs[GPROC0_SEL].ssd_base = (uintptr_t)&common_tss[0];
1857         ssdtosyssd(&gdt_segs[GPROC0_SEL],
1858             (struct system_segment_descriptor *)&gdt[GPROC0_SEL]);
1859
1860         r_gdt.rd_limit = NGDT * sizeof(gdt[0]) - 1;
1861         r_gdt.rd_base =  (long) gdt;
1862         lgdt(&r_gdt);
1863         pc = &__pcpu[0];
1864
1865         wrmsr(MSR_FSBASE, 0);           /* User value */
1866         wrmsr(MSR_GSBASE, (u_int64_t)pc);
1867         wrmsr(MSR_KGSBASE, 0);          /* User value while in the kernel */
1868
1869         pcpu_init(pc, 0, sizeof(struct pcpu));
1870         dpcpu_init((void *)(physfree + KERNBASE), 0);
1871         physfree += DPCPU_SIZE;
1872         PCPU_SET(prvspace, pc);
1873         PCPU_SET(curthread, &thread0);
1874         PCPU_SET(tssp, &common_tss[0]);
1875         PCPU_SET(commontssp, &common_tss[0]);
1876         PCPU_SET(tss, (struct system_segment_descriptor *)&gdt[GPROC0_SEL]);
1877         PCPU_SET(ldt, (struct system_segment_descriptor *)&gdt[GUSERLDT_SEL]);
1878         PCPU_SET(fs32p, &gdt[GUFS32_SEL]);
1879         PCPU_SET(gs32p, &gdt[GUGS32_SEL]);
1880
1881         /*
1882          * Initialize mutexes.
1883          *
1884          * icu_lock: in order to allow an interrupt to occur in a critical
1885          *           section, to set pcpu->ipending (etc...) properly, we
1886          *           must be able to get the icu lock, so it can't be
1887          *           under witness.
1888          */
1889         mutex_init();
1890         mtx_init(&icu_lock, "icu", NULL, MTX_SPIN | MTX_NOWITNESS);
1891         mtx_init(&dt_lock, "descriptor tables", NULL, MTX_DEF);
1892
1893         /* exceptions */
1894         for (x = 0; x < NIDT; x++)
1895                 setidt(x, &IDTVEC(rsvd), SDT_SYSIGT, SEL_KPL, 0);
1896         setidt(IDT_DE, &IDTVEC(div),  SDT_SYSIGT, SEL_KPL, 0);
1897         setidt(IDT_DB, &IDTVEC(dbg),  SDT_SYSIGT, SEL_KPL, 0);
1898         setidt(IDT_NMI, &IDTVEC(nmi),  SDT_SYSIGT, SEL_KPL, 2);
1899         setidt(IDT_BP, &IDTVEC(bpt),  SDT_SYSIGT, SEL_UPL, 0);
1900         setidt(IDT_OF, &IDTVEC(ofl),  SDT_SYSIGT, SEL_KPL, 0);
1901         setidt(IDT_BR, &IDTVEC(bnd),  SDT_SYSIGT, SEL_KPL, 0);
1902         setidt(IDT_UD, &IDTVEC(ill),  SDT_SYSIGT, SEL_KPL, 0);
1903         setidt(IDT_NM, &IDTVEC(dna),  SDT_SYSIGT, SEL_KPL, 0);
1904         setidt(IDT_DF, &IDTVEC(dblfault), SDT_SYSIGT, SEL_KPL, 1);
1905         setidt(IDT_FPUGP, &IDTVEC(fpusegm),  SDT_SYSIGT, SEL_KPL, 0);
1906         setidt(IDT_TS, &IDTVEC(tss),  SDT_SYSIGT, SEL_KPL, 0);
1907         setidt(IDT_NP, &IDTVEC(missing),  SDT_SYSIGT, SEL_KPL, 0);
1908         setidt(IDT_SS, &IDTVEC(stk),  SDT_SYSIGT, SEL_KPL, 0);
1909         setidt(IDT_GP, &IDTVEC(prot),  SDT_SYSIGT, SEL_KPL, 0);
1910         setidt(IDT_PF, &IDTVEC(page),  SDT_SYSIGT, SEL_KPL, 0);
1911         setidt(IDT_MF, &IDTVEC(fpu),  SDT_SYSIGT, SEL_KPL, 0);
1912         setidt(IDT_AC, &IDTVEC(align), SDT_SYSIGT, SEL_KPL, 0);
1913         setidt(IDT_MC, &IDTVEC(mchk),  SDT_SYSIGT, SEL_KPL, 0);
1914         setidt(IDT_XF, &IDTVEC(xmm), SDT_SYSIGT, SEL_KPL, 0);
1915 #ifdef KDTRACE_HOOKS
1916         setidt(IDT_DTRACE_RET, &IDTVEC(dtrace_ret), SDT_SYSIGT, SEL_UPL, 0);
1917 #endif
1918 #ifdef XENHVM
1919         setidt(IDT_EVTCHN, &IDTVEC(xen_intr_upcall), SDT_SYSIGT, SEL_UPL, 0);
1920 #endif
1921
1922         r_idt.rd_limit = sizeof(idt0) - 1;
1923         r_idt.rd_base = (long) idt;
1924         lidt(&r_idt);
1925
1926         /*
1927          * Initialize the i8254 before the console so that console
1928          * initialization can use DELAY().
1929          */
1930         i8254_init();
1931
1932         /*
1933          * Use vt(4) by default for UEFI boot (during the sc(4)/vt(4)
1934          * transition).
1935          */
1936         if (kmdp != NULL && preload_search_info(kmdp,
1937             MODINFO_METADATA | MODINFOMD_EFI_MAP) != NULL)
1938                 vty_set_preferred(VTY_VT);
1939
1940         /*
1941          * Initialize the console before we print anything out.
1942          */
1943         cninit();
1944
1945 #ifdef DEV_ISA
1946 #ifdef DEV_ATPIC
1947         elcr_probe();
1948         atpic_startup();
1949 #else
1950         /* Reset and mask the atpics and leave them shut down. */
1951         atpic_reset();
1952
1953         /*
1954          * Point the ICU spurious interrupt vectors at the APIC spurious
1955          * interrupt handler.
1956          */
1957         setidt(IDT_IO_INTS + 7, IDTVEC(spuriousint), SDT_SYSIGT, SEL_KPL, 0);
1958         setidt(IDT_IO_INTS + 15, IDTVEC(spuriousint), SDT_SYSIGT, SEL_KPL, 0);
1959 #endif
1960 #else
1961 #error "have you forgotten the isa device?";
1962 #endif
1963
1964         kdb_init();
1965
1966 #ifdef KDB
1967         if (boothowto & RB_KDB)
1968                 kdb_enter(KDB_WHY_BOOTFLAGS,
1969                     "Boot flags requested debugger");
1970 #endif
1971
1972         identify_cpu();         /* Final stage of CPU initialization */
1973         initializecpu();        /* Initialize CPU registers */
1974         initializecpucache();
1975
1976         /* doublefault stack space, runs on ist1 */
1977         common_tss[0].tss_ist1 = (long)&dblfault_stack[sizeof(dblfault_stack)];
1978
1979         /*
1980          * NMI stack, runs on ist2.  The pcpu pointer is stored just
1981          * above the start of the ist2 stack.
1982          */
1983         np = ((struct nmi_pcpu *) &nmi0_stack[sizeof(nmi0_stack)]) - 1;
1984         np->np_pcpu = (register_t) pc;
1985         common_tss[0].tss_ist2 = (long) np;
1986
1987         /* Set the IO permission bitmap (empty due to tss seg limit) */
1988         common_tss[0].tss_iobase = sizeof(struct amd64tss) +
1989             IOPAGES * PAGE_SIZE;
1990
1991         gsel_tss = GSEL(GPROC0_SEL, SEL_KPL);
1992         ltr(gsel_tss);
1993
1994         /* Set up the fast syscall stuff */
1995         msr = rdmsr(MSR_EFER) | EFER_SCE;
1996         wrmsr(MSR_EFER, msr);
1997         wrmsr(MSR_LSTAR, (u_int64_t)IDTVEC(fast_syscall));
1998         wrmsr(MSR_CSTAR, (u_int64_t)IDTVEC(fast_syscall32));
1999         msr = ((u_int64_t)GSEL(GCODE_SEL, SEL_KPL) << 32) |
2000               ((u_int64_t)GSEL(GUCODE32_SEL, SEL_UPL) << 48);
2001         wrmsr(MSR_STAR, msr);
2002         wrmsr(MSR_SF_MASK, PSL_NT|PSL_T|PSL_I|PSL_C|PSL_D);
2003
2004         getmemsize(kmdp, physfree);
2005         init_param2(physmem);
2006
2007         /* now running on new page tables, configured,and u/iom is accessible */
2008
2009         msgbufinit(msgbufp, msgbufsize);
2010         fpuinit();
2011
2012         /*
2013          * Set up thread0 pcb after fpuinit calculated pcb + fpu save
2014          * area size.  Zero out the extended state header in fpu save
2015          * area.
2016          */
2017         thread0.td_pcb = get_pcb_td(&thread0);
2018         bzero(get_pcb_user_save_td(&thread0), cpu_max_ext_state_size);
2019         if (use_xsave) {
2020                 xhdr = (struct xstate_hdr *)(get_pcb_user_save_td(&thread0) +
2021                     1);
2022                 xhdr->xstate_bv = xsave_mask;
2023         }
2024         /* make an initial tss so cpu can get interrupt stack on syscall! */
2025         common_tss[0].tss_rsp0 = (vm_offset_t)thread0.td_pcb;
2026         /* Ensure the stack is aligned to 16 bytes */
2027         common_tss[0].tss_rsp0 &= ~0xFul;
2028         PCPU_SET(rsp0, common_tss[0].tss_rsp0);
2029         PCPU_SET(curpcb, thread0.td_pcb);
2030
2031         /* transfer to user mode */
2032
2033         _ucodesel = GSEL(GUCODE_SEL, SEL_UPL);
2034         _udatasel = GSEL(GUDATA_SEL, SEL_UPL);
2035         _ucode32sel = GSEL(GUCODE32_SEL, SEL_UPL);
2036         _ufssel = GSEL(GUFS32_SEL, SEL_UPL);
2037         _ugssel = GSEL(GUGS32_SEL, SEL_UPL);
2038
2039         load_ds(_udatasel);
2040         load_es(_udatasel);
2041         load_fs(_ufssel);
2042
2043         /* setup proc 0's pcb */
2044         thread0.td_pcb->pcb_flags = 0;
2045         thread0.td_pcb->pcb_cr3 = KPML4phys; /* PCID 0 is reserved for kernel */
2046         thread0.td_frame = &proc0_tf;
2047
2048         env = getenv("kernelname");
2049         if (env != NULL)
2050                 strlcpy(kernelname, env, sizeof(kernelname));
2051
2052         cpu_probe_amdc1e();
2053
2054 #ifdef FDT
2055         x86_init_fdt();
2056 #endif
2057
2058         /* Location of kernel stack for locore */
2059         return ((u_int64_t)thread0.td_pcb);
2060 }
2061
2062 void
2063 cpu_pcpu_init(struct pcpu *pcpu, int cpuid, size_t size)
2064 {
2065
2066         pcpu->pc_acpi_id = 0xffffffff;
2067 }
2068
2069 static int
2070 smap_sysctl_handler(SYSCTL_HANDLER_ARGS)
2071 {
2072         struct bios_smap *smapbase;
2073         struct bios_smap_xattr smap;
2074         caddr_t kmdp;
2075         uint32_t *smapattr;
2076         int count, error, i;
2077
2078         /* Retrieve the system memory map from the loader. */
2079         kmdp = preload_search_by_type("elf kernel");
2080         if (kmdp == NULL)
2081                 kmdp = preload_search_by_type("elf64 kernel");
2082         smapbase = (struct bios_smap *)preload_search_info(kmdp,
2083             MODINFO_METADATA | MODINFOMD_SMAP);
2084         if (smapbase == NULL)
2085                 return (0);
2086         smapattr = (uint32_t *)preload_search_info(kmdp,
2087             MODINFO_METADATA | MODINFOMD_SMAP_XATTR);
2088         count = *((uint32_t *)smapbase - 1) / sizeof(*smapbase);
2089         error = 0;
2090         for (i = 0; i < count; i++) {
2091                 smap.base = smapbase[i].base;
2092                 smap.length = smapbase[i].length;
2093                 smap.type = smapbase[i].type;
2094                 if (smapattr != NULL)
2095                         smap.xattr = smapattr[i];
2096                 else
2097                         smap.xattr = 0;
2098                 error = SYSCTL_OUT(req, &smap, sizeof(smap));
2099         }
2100         return (error);
2101 }
2102 SYSCTL_PROC(_machdep, OID_AUTO, smap, CTLTYPE_OPAQUE|CTLFLAG_RD, NULL, 0,
2103     smap_sysctl_handler, "S,bios_smap_xattr", "Raw BIOS SMAP data");
2104
2105 static int
2106 efi_map_sysctl_handler(SYSCTL_HANDLER_ARGS)
2107 {
2108         struct efi_map_header *efihdr;
2109         caddr_t kmdp;
2110         uint32_t efisize;
2111
2112         kmdp = preload_search_by_type("elf kernel");
2113         if (kmdp == NULL)
2114                 kmdp = preload_search_by_type("elf64 kernel");
2115         efihdr = (struct efi_map_header *)preload_search_info(kmdp,
2116             MODINFO_METADATA | MODINFOMD_EFI_MAP);
2117         if (efihdr == NULL)
2118                 return (0);
2119         efisize = *((uint32_t *)efihdr - 1);
2120         return (SYSCTL_OUT(req, efihdr, efisize));
2121 }
2122 SYSCTL_PROC(_machdep, OID_AUTO, efi_map, CTLTYPE_OPAQUE|CTLFLAG_RD, NULL, 0,
2123     efi_map_sysctl_handler, "S,efi_map_header", "Raw EFI Memory Map");
2124
2125 void
2126 spinlock_enter(void)
2127 {
2128         struct thread *td;
2129         register_t flags;
2130
2131         td = curthread;
2132         if (td->td_md.md_spinlock_count == 0) {
2133                 flags = intr_disable();
2134                 td->td_md.md_spinlock_count = 1;
2135                 td->td_md.md_saved_flags = flags;
2136         } else
2137                 td->td_md.md_spinlock_count++;
2138         critical_enter();
2139 }
2140
2141 void
2142 spinlock_exit(void)
2143 {
2144         struct thread *td;
2145         register_t flags;
2146
2147         td = curthread;
2148         critical_exit();
2149         flags = td->td_md.md_saved_flags;
2150         td->td_md.md_spinlock_count--;
2151         if (td->td_md.md_spinlock_count == 0)
2152                 intr_restore(flags);
2153 }
2154
2155 /*
2156  * Construct a PCB from a trapframe. This is called from kdb_trap() where
2157  * we want to start a backtrace from the function that caused us to enter
2158  * the debugger. We have the context in the trapframe, but base the trace
2159  * on the PCB. The PCB doesn't have to be perfect, as long as it contains
2160  * enough for a backtrace.
2161  */
2162 void
2163 makectx(struct trapframe *tf, struct pcb *pcb)
2164 {
2165
2166         pcb->pcb_r12 = tf->tf_r12;
2167         pcb->pcb_r13 = tf->tf_r13;
2168         pcb->pcb_r14 = tf->tf_r14;
2169         pcb->pcb_r15 = tf->tf_r15;
2170         pcb->pcb_rbp = tf->tf_rbp;
2171         pcb->pcb_rbx = tf->tf_rbx;
2172         pcb->pcb_rip = tf->tf_rip;
2173         pcb->pcb_rsp = tf->tf_rsp;
2174 }
2175
2176 int
2177 ptrace_set_pc(struct thread *td, unsigned long addr)
2178 {
2179
2180         td->td_frame->tf_rip = addr;
2181         set_pcb_flags(td->td_pcb, PCB_FULL_IRET);
2182         return (0);
2183 }
2184
2185 int
2186 ptrace_single_step(struct thread *td)
2187 {
2188         td->td_frame->tf_rflags |= PSL_T;
2189         return (0);
2190 }
2191
2192 int
2193 ptrace_clear_single_step(struct thread *td)
2194 {
2195         td->td_frame->tf_rflags &= ~PSL_T;
2196         return (0);
2197 }
2198
2199 int
2200 fill_regs(struct thread *td, struct reg *regs)
2201 {
2202         struct trapframe *tp;
2203
2204         tp = td->td_frame;
2205         return (fill_frame_regs(tp, regs));
2206 }
2207
2208 int
2209 fill_frame_regs(struct trapframe *tp, struct reg *regs)
2210 {
2211         regs->r_r15 = tp->tf_r15;
2212         regs->r_r14 = tp->tf_r14;
2213         regs->r_r13 = tp->tf_r13;
2214         regs->r_r12 = tp->tf_r12;
2215         regs->r_r11 = tp->tf_r11;
2216         regs->r_r10 = tp->tf_r10;
2217         regs->r_r9  = tp->tf_r9;
2218         regs->r_r8  = tp->tf_r8;
2219         regs->r_rdi = tp->tf_rdi;
2220         regs->r_rsi = tp->tf_rsi;
2221         regs->r_rbp = tp->tf_rbp;
2222         regs->r_rbx = tp->tf_rbx;
2223         regs->r_rdx = tp->tf_rdx;
2224         regs->r_rcx = tp->tf_rcx;
2225         regs->r_rax = tp->tf_rax;
2226         regs->r_rip = tp->tf_rip;
2227         regs->r_cs = tp->tf_cs;
2228         regs->r_rflags = tp->tf_rflags;
2229         regs->r_rsp = tp->tf_rsp;
2230         regs->r_ss = tp->tf_ss;
2231         if (tp->tf_flags & TF_HASSEGS) {
2232                 regs->r_ds = tp->tf_ds;
2233                 regs->r_es = tp->tf_es;
2234                 regs->r_fs = tp->tf_fs;
2235                 regs->r_gs = tp->tf_gs;
2236         } else {
2237                 regs->r_ds = 0;
2238                 regs->r_es = 0;
2239                 regs->r_fs = 0;
2240                 regs->r_gs = 0;
2241         }
2242         return (0);
2243 }
2244
2245 int
2246 set_regs(struct thread *td, struct reg *regs)
2247 {
2248         struct trapframe *tp;
2249         register_t rflags;
2250
2251         tp = td->td_frame;
2252         rflags = regs->r_rflags & 0xffffffff;
2253         if (!EFL_SECURE(rflags, tp->tf_rflags) || !CS_SECURE(regs->r_cs))
2254                 return (EINVAL);
2255         tp->tf_r15 = regs->r_r15;
2256         tp->tf_r14 = regs->r_r14;
2257         tp->tf_r13 = regs->r_r13;
2258         tp->tf_r12 = regs->r_r12;
2259         tp->tf_r11 = regs->r_r11;
2260         tp->tf_r10 = regs->r_r10;
2261         tp->tf_r9  = regs->r_r9;
2262         tp->tf_r8  = regs->r_r8;
2263         tp->tf_rdi = regs->r_rdi;
2264         tp->tf_rsi = regs->r_rsi;
2265         tp->tf_rbp = regs->r_rbp;
2266         tp->tf_rbx = regs->r_rbx;
2267         tp->tf_rdx = regs->r_rdx;
2268         tp->tf_rcx = regs->r_rcx;
2269         tp->tf_rax = regs->r_rax;
2270         tp->tf_rip = regs->r_rip;
2271         tp->tf_cs = regs->r_cs;
2272         tp->tf_rflags = rflags;
2273         tp->tf_rsp = regs->r_rsp;
2274         tp->tf_ss = regs->r_ss;
2275         if (0) {        /* XXXKIB */
2276                 tp->tf_ds = regs->r_ds;
2277                 tp->tf_es = regs->r_es;
2278                 tp->tf_fs = regs->r_fs;
2279                 tp->tf_gs = regs->r_gs;
2280                 tp->tf_flags = TF_HASSEGS;
2281         }
2282         set_pcb_flags(td->td_pcb, PCB_FULL_IRET);
2283         return (0);
2284 }
2285
2286 /* XXX check all this stuff! */
2287 /* externalize from sv_xmm */
2288 static void
2289 fill_fpregs_xmm(struct savefpu *sv_xmm, struct fpreg *fpregs)
2290 {
2291         struct envxmm *penv_fpreg = (struct envxmm *)&fpregs->fpr_env;
2292         struct envxmm *penv_xmm = &sv_xmm->sv_env;
2293         int i;
2294
2295         /* pcb -> fpregs */
2296         bzero(fpregs, sizeof(*fpregs));
2297
2298         /* FPU control/status */
2299         penv_fpreg->en_cw = penv_xmm->en_cw;
2300         penv_fpreg->en_sw = penv_xmm->en_sw;
2301         penv_fpreg->en_tw = penv_xmm->en_tw;
2302         penv_fpreg->en_opcode = penv_xmm->en_opcode;
2303         penv_fpreg->en_rip = penv_xmm->en_rip;
2304         penv_fpreg->en_rdp = penv_xmm->en_rdp;
2305         penv_fpreg->en_mxcsr = penv_xmm->en_mxcsr;
2306         penv_fpreg->en_mxcsr_mask = penv_xmm->en_mxcsr_mask;
2307
2308         /* FPU registers */
2309         for (i = 0; i < 8; ++i)
2310                 bcopy(sv_xmm->sv_fp[i].fp_acc.fp_bytes, fpregs->fpr_acc[i], 10);
2311
2312         /* SSE registers */
2313         for (i = 0; i < 16; ++i)
2314                 bcopy(sv_xmm->sv_xmm[i].xmm_bytes, fpregs->fpr_xacc[i], 16);
2315 }
2316
2317 /* internalize from fpregs into sv_xmm */
2318 static void
2319 set_fpregs_xmm(struct fpreg *fpregs, struct savefpu *sv_xmm)
2320 {
2321         struct envxmm *penv_xmm = &sv_xmm->sv_env;
2322         struct envxmm *penv_fpreg = (struct envxmm *)&fpregs->fpr_env;
2323         int i;
2324
2325         /* fpregs -> pcb */
2326         /* FPU control/status */
2327         penv_xmm->en_cw = penv_fpreg->en_cw;
2328         penv_xmm->en_sw = penv_fpreg->en_sw;
2329         penv_xmm->en_tw = penv_fpreg->en_tw;
2330         penv_xmm->en_opcode = penv_fpreg->en_opcode;
2331         penv_xmm->en_rip = penv_fpreg->en_rip;
2332         penv_xmm->en_rdp = penv_fpreg->en_rdp;
2333         penv_xmm->en_mxcsr = penv_fpreg->en_mxcsr;
2334         penv_xmm->en_mxcsr_mask = penv_fpreg->en_mxcsr_mask & cpu_mxcsr_mask;
2335
2336         /* FPU registers */
2337         for (i = 0; i < 8; ++i)
2338                 bcopy(fpregs->fpr_acc[i], sv_xmm->sv_fp[i].fp_acc.fp_bytes, 10);
2339
2340         /* SSE registers */
2341         for (i = 0; i < 16; ++i)
2342                 bcopy(fpregs->fpr_xacc[i], sv_xmm->sv_xmm[i].xmm_bytes, 16);
2343 }
2344
2345 /* externalize from td->pcb */
2346 int
2347 fill_fpregs(struct thread *td, struct fpreg *fpregs)
2348 {
2349
2350         KASSERT(td == curthread || TD_IS_SUSPENDED(td) ||
2351             P_SHOULDSTOP(td->td_proc),
2352             ("not suspended thread %p", td));
2353         fpugetregs(td);
2354         fill_fpregs_xmm(get_pcb_user_save_td(td), fpregs);
2355         return (0);
2356 }
2357
2358 /* internalize to td->pcb */
2359 int
2360 set_fpregs(struct thread *td, struct fpreg *fpregs)
2361 {
2362
2363         set_fpregs_xmm(fpregs, get_pcb_user_save_td(td));
2364         fpuuserinited(td);
2365         return (0);
2366 }
2367
2368 /*
2369  * Get machine context.
2370  */
2371 int
2372 get_mcontext(struct thread *td, mcontext_t *mcp, int flags)
2373 {
2374         struct pcb *pcb;
2375         struct trapframe *tp;
2376
2377         pcb = td->td_pcb;
2378         tp = td->td_frame;
2379         PROC_LOCK(curthread->td_proc);
2380         mcp->mc_onstack = sigonstack(tp->tf_rsp);
2381         PROC_UNLOCK(curthread->td_proc);
2382         mcp->mc_r15 = tp->tf_r15;
2383         mcp->mc_r14 = tp->tf_r14;
2384         mcp->mc_r13 = tp->tf_r13;
2385         mcp->mc_r12 = tp->tf_r12;
2386         mcp->mc_r11 = tp->tf_r11;
2387         mcp->mc_r10 = tp->tf_r10;
2388         mcp->mc_r9  = tp->tf_r9;
2389         mcp->mc_r8  = tp->tf_r8;
2390         mcp->mc_rdi = tp->tf_rdi;
2391         mcp->mc_rsi = tp->tf_rsi;
2392         mcp->mc_rbp = tp->tf_rbp;
2393         mcp->mc_rbx = tp->tf_rbx;
2394         mcp->mc_rcx = tp->tf_rcx;
2395         mcp->mc_rflags = tp->tf_rflags;
2396         if (flags & GET_MC_CLEAR_RET) {
2397                 mcp->mc_rax = 0;
2398                 mcp->mc_rdx = 0;
2399                 mcp->mc_rflags &= ~PSL_C;
2400         } else {
2401                 mcp->mc_rax = tp->tf_rax;
2402                 mcp->mc_rdx = tp->tf_rdx;
2403         }
2404         mcp->mc_rip = tp->tf_rip;
2405         mcp->mc_cs = tp->tf_cs;
2406         mcp->mc_rsp = tp->tf_rsp;
2407         mcp->mc_ss = tp->tf_ss;
2408         mcp->mc_ds = tp->tf_ds;
2409         mcp->mc_es = tp->tf_es;
2410         mcp->mc_fs = tp->tf_fs;
2411         mcp->mc_gs = tp->tf_gs;
2412         mcp->mc_flags = tp->tf_flags;
2413         mcp->mc_len = sizeof(*mcp);
2414         get_fpcontext(td, mcp, NULL, 0);
2415         mcp->mc_fsbase = pcb->pcb_fsbase;
2416         mcp->mc_gsbase = pcb->pcb_gsbase;
2417         mcp->mc_xfpustate = 0;
2418         mcp->mc_xfpustate_len = 0;
2419         bzero(mcp->mc_spare, sizeof(mcp->mc_spare));
2420         return (0);
2421 }
2422
2423 /*
2424  * Set machine context.
2425  *
2426  * However, we don't set any but the user modifiable flags, and we won't
2427  * touch the cs selector.
2428  */
2429 int
2430 set_mcontext(struct thread *td, mcontext_t *mcp)
2431 {
2432         struct pcb *pcb;
2433         struct trapframe *tp;
2434         char *xfpustate;
2435         long rflags;
2436         int ret;
2437
2438         pcb = td->td_pcb;
2439         tp = td->td_frame;
2440         if (mcp->mc_len != sizeof(*mcp) ||
2441             (mcp->mc_flags & ~_MC_FLAG_MASK) != 0)
2442                 return (EINVAL);
2443         rflags = (mcp->mc_rflags & PSL_USERCHANGE) |
2444             (tp->tf_rflags & ~PSL_USERCHANGE);
2445         if (mcp->mc_flags & _MC_HASFPXSTATE) {
2446                 if (mcp->mc_xfpustate_len > cpu_max_ext_state_size -
2447                     sizeof(struct savefpu))
2448                         return (EINVAL);
2449                 xfpustate = __builtin_alloca(mcp->mc_xfpustate_len);
2450                 ret = copyin((void *)mcp->mc_xfpustate, xfpustate,
2451                     mcp->mc_xfpustate_len);
2452                 if (ret != 0)
2453                         return (ret);
2454         } else
2455                 xfpustate = NULL;
2456         ret = set_fpcontext(td, mcp, xfpustate, mcp->mc_xfpustate_len);
2457         if (ret != 0)
2458                 return (ret);
2459         tp->tf_r15 = mcp->mc_r15;
2460         tp->tf_r14 = mcp->mc_r14;
2461         tp->tf_r13 = mcp->mc_r13;
2462         tp->tf_r12 = mcp->mc_r12;
2463         tp->tf_r11 = mcp->mc_r11;
2464         tp->tf_r10 = mcp->mc_r10;
2465         tp->tf_r9  = mcp->mc_r9;
2466         tp->tf_r8  = mcp->mc_r8;
2467         tp->tf_rdi = mcp->mc_rdi;
2468         tp->tf_rsi = mcp->mc_rsi;
2469         tp->tf_rbp = mcp->mc_rbp;
2470         tp->tf_rbx = mcp->mc_rbx;
2471         tp->tf_rdx = mcp->mc_rdx;
2472         tp->tf_rcx = mcp->mc_rcx;
2473         tp->tf_rax = mcp->mc_rax;
2474         tp->tf_rip = mcp->mc_rip;
2475         tp->tf_rflags = rflags;
2476         tp->tf_rsp = mcp->mc_rsp;
2477         tp->tf_ss = mcp->mc_ss;
2478         tp->tf_flags = mcp->mc_flags;
2479         if (tp->tf_flags & TF_HASSEGS) {
2480                 tp->tf_ds = mcp->mc_ds;
2481                 tp->tf_es = mcp->mc_es;
2482                 tp->tf_fs = mcp->mc_fs;
2483                 tp->tf_gs = mcp->mc_gs;
2484         }
2485         if (mcp->mc_flags & _MC_HASBASES) {
2486                 pcb->pcb_fsbase = mcp->mc_fsbase;
2487                 pcb->pcb_gsbase = mcp->mc_gsbase;
2488         }
2489         set_pcb_flags(pcb, PCB_FULL_IRET);
2490         return (0);
2491 }
2492
2493 static void
2494 get_fpcontext(struct thread *td, mcontext_t *mcp, char *xfpusave,
2495     size_t xfpusave_len)
2496 {
2497         size_t max_len, len;
2498
2499         mcp->mc_ownedfp = fpugetregs(td);
2500         bcopy(get_pcb_user_save_td(td), &mcp->mc_fpstate[0],
2501             sizeof(mcp->mc_fpstate));
2502         mcp->mc_fpformat = fpuformat();
2503         if (!use_xsave || xfpusave_len == 0)
2504                 return;
2505         max_len = cpu_max_ext_state_size - sizeof(struct savefpu);
2506         len = xfpusave_len;
2507         if (len > max_len) {
2508                 len = max_len;
2509                 bzero(xfpusave + max_len, len - max_len);
2510         }
2511         mcp->mc_flags |= _MC_HASFPXSTATE;
2512         mcp->mc_xfpustate_len = len;
2513         bcopy(get_pcb_user_save_td(td) + 1, xfpusave, len);
2514 }
2515
2516 static int
2517 set_fpcontext(struct thread *td, mcontext_t *mcp, char *xfpustate,
2518     size_t xfpustate_len)
2519 {
2520         struct savefpu *fpstate;
2521         int error;
2522
2523         if (mcp->mc_fpformat == _MC_FPFMT_NODEV)
2524                 return (0);
2525         else if (mcp->mc_fpformat != _MC_FPFMT_XMM)
2526                 return (EINVAL);
2527         else if (mcp->mc_ownedfp == _MC_FPOWNED_NONE) {
2528                 /* We don't care what state is left in the FPU or PCB. */
2529                 fpstate_drop(td);
2530                 error = 0;
2531         } else if (mcp->mc_ownedfp == _MC_FPOWNED_FPU ||
2532             mcp->mc_ownedfp == _MC_FPOWNED_PCB) {
2533                 fpstate = (struct savefpu *)&mcp->mc_fpstate;
2534                 fpstate->sv_env.en_mxcsr &= cpu_mxcsr_mask;
2535                 error = fpusetregs(td, fpstate, xfpustate, xfpustate_len);
2536         } else
2537                 return (EINVAL);
2538         return (error);
2539 }
2540
2541 void
2542 fpstate_drop(struct thread *td)
2543 {
2544
2545         KASSERT(PCB_USER_FPU(td->td_pcb), ("fpstate_drop: kernel-owned fpu"));
2546         critical_enter();
2547         if (PCPU_GET(fpcurthread) == td)
2548                 fpudrop();
2549         /*
2550          * XXX force a full drop of the fpu.  The above only drops it if we
2551          * owned it.
2552          *
2553          * XXX I don't much like fpugetuserregs()'s semantics of doing a full
2554          * drop.  Dropping only to the pcb matches fnsave's behaviour.
2555          * We only need to drop to !PCB_INITDONE in sendsig().  But
2556          * sendsig() is the only caller of fpugetuserregs()... perhaps we just
2557          * have too many layers.
2558          */
2559         clear_pcb_flags(curthread->td_pcb,
2560             PCB_FPUINITDONE | PCB_USERFPUINITDONE);
2561         critical_exit();
2562 }
2563
2564 int
2565 fill_dbregs(struct thread *td, struct dbreg *dbregs)
2566 {
2567         struct pcb *pcb;
2568
2569         if (td == NULL) {
2570                 dbregs->dr[0] = rdr0();
2571                 dbregs->dr[1] = rdr1();
2572                 dbregs->dr[2] = rdr2();
2573                 dbregs->dr[3] = rdr3();
2574                 dbregs->dr[6] = rdr6();
2575                 dbregs->dr[7] = rdr7();
2576         } else {
2577                 pcb = td->td_pcb;
2578                 dbregs->dr[0] = pcb->pcb_dr0;
2579                 dbregs->dr[1] = pcb->pcb_dr1;
2580                 dbregs->dr[2] = pcb->pcb_dr2;
2581                 dbregs->dr[3] = pcb->pcb_dr3;
2582                 dbregs->dr[6] = pcb->pcb_dr6;
2583                 dbregs->dr[7] = pcb->pcb_dr7;
2584         }
2585         dbregs->dr[4] = 0;
2586         dbregs->dr[5] = 0;
2587         dbregs->dr[8] = 0;
2588         dbregs->dr[9] = 0;
2589         dbregs->dr[10] = 0;
2590         dbregs->dr[11] = 0;
2591         dbregs->dr[12] = 0;
2592         dbregs->dr[13] = 0;
2593         dbregs->dr[14] = 0;
2594         dbregs->dr[15] = 0;
2595         return (0);
2596 }
2597
2598 int
2599 set_dbregs(struct thread *td, struct dbreg *dbregs)
2600 {
2601         struct pcb *pcb;
2602         int i;
2603
2604         if (td == NULL) {
2605                 load_dr0(dbregs->dr[0]);
2606                 load_dr1(dbregs->dr[1]);
2607                 load_dr2(dbregs->dr[2]);
2608                 load_dr3(dbregs->dr[3]);
2609                 load_dr6(dbregs->dr[6]);
2610                 load_dr7(dbregs->dr[7]);
2611         } else {
2612                 /*
2613                  * Don't let an illegal value for dr7 get set.  Specifically,
2614                  * check for undefined settings.  Setting these bit patterns
2615                  * result in undefined behaviour and can lead to an unexpected
2616                  * TRCTRAP or a general protection fault right here.
2617                  * Upper bits of dr6 and dr7 must not be set
2618                  */
2619                 for (i = 0; i < 4; i++) {
2620                         if (DBREG_DR7_ACCESS(dbregs->dr[7], i) == 0x02)
2621                                 return (EINVAL);
2622                         if (td->td_frame->tf_cs == _ucode32sel &&
2623                             DBREG_DR7_LEN(dbregs->dr[7], i) == DBREG_DR7_LEN_8)
2624                                 return (EINVAL);
2625                 }
2626                 if ((dbregs->dr[6] & 0xffffffff00000000ul) != 0 ||
2627                     (dbregs->dr[7] & 0xffffffff00000000ul) != 0)
2628                         return (EINVAL);
2629
2630                 pcb = td->td_pcb;
2631
2632                 /*
2633                  * Don't let a process set a breakpoint that is not within the
2634                  * process's address space.  If a process could do this, it
2635                  * could halt the system by setting a breakpoint in the kernel
2636                  * (if ddb was enabled).  Thus, we need to check to make sure
2637                  * that no breakpoints are being enabled for addresses outside
2638                  * process's address space.
2639                  *
2640                  * XXX - what about when the watched area of the user's
2641                  * address space is written into from within the kernel
2642                  * ... wouldn't that still cause a breakpoint to be generated
2643                  * from within kernel mode?
2644                  */
2645
2646                 if (DBREG_DR7_ENABLED(dbregs->dr[7], 0)) {
2647                         /* dr0 is enabled */
2648                         if (dbregs->dr[0] >= VM_MAXUSER_ADDRESS)
2649                                 return (EINVAL);
2650                 }
2651                 if (DBREG_DR7_ENABLED(dbregs->dr[7], 1)) {
2652                         /* dr1 is enabled */
2653                         if (dbregs->dr[1] >= VM_MAXUSER_ADDRESS)
2654                                 return (EINVAL);
2655                 }
2656                 if (DBREG_DR7_ENABLED(dbregs->dr[7], 2)) {
2657                         /* dr2 is enabled */
2658                         if (dbregs->dr[2] >= VM_MAXUSER_ADDRESS)
2659                                 return (EINVAL);
2660                 }
2661                 if (DBREG_DR7_ENABLED(dbregs->dr[7], 3)) {
2662                         /* dr3 is enabled */
2663                         if (dbregs->dr[3] >= VM_MAXUSER_ADDRESS)
2664                                 return (EINVAL);
2665                 }
2666
2667                 pcb->pcb_dr0 = dbregs->dr[0];
2668                 pcb->pcb_dr1 = dbregs->dr[1];
2669                 pcb->pcb_dr2 = dbregs->dr[2];
2670                 pcb->pcb_dr3 = dbregs->dr[3];
2671                 pcb->pcb_dr6 = dbregs->dr[6];
2672                 pcb->pcb_dr7 = dbregs->dr[7];
2673
2674                 set_pcb_flags(pcb, PCB_DBREGS);
2675         }
2676
2677         return (0);
2678 }
2679
2680 void
2681 reset_dbregs(void)
2682 {
2683
2684         load_dr7(0);    /* Turn off the control bits first */
2685         load_dr0(0);
2686         load_dr1(0);
2687         load_dr2(0);
2688         load_dr3(0);
2689         load_dr6(0);
2690 }
2691
2692 /*
2693  * Return > 0 if a hardware breakpoint has been hit, and the
2694  * breakpoint was in user space.  Return 0, otherwise.
2695  */
2696 int
2697 user_dbreg_trap(void)
2698 {
2699         u_int64_t dr7, dr6; /* debug registers dr6 and dr7 */
2700         u_int64_t bp;       /* breakpoint bits extracted from dr6 */
2701         int nbp;            /* number of breakpoints that triggered */
2702         caddr_t addr[4];    /* breakpoint addresses */
2703         int i;
2704         
2705         dr7 = rdr7();
2706         if ((dr7 & 0x000000ff) == 0) {
2707                 /*
2708                  * all GE and LE bits in the dr7 register are zero,
2709                  * thus the trap couldn't have been caused by the
2710                  * hardware debug registers
2711                  */
2712                 return 0;
2713         }
2714
2715         nbp = 0;
2716         dr6 = rdr6();
2717         bp = dr6 & 0x0000000f;
2718
2719         if (!bp) {
2720                 /*
2721                  * None of the breakpoint bits are set meaning this
2722                  * trap was not caused by any of the debug registers
2723                  */
2724                 return 0;
2725         }
2726
2727         /*
2728          * at least one of the breakpoints were hit, check to see
2729          * which ones and if any of them are user space addresses
2730          */
2731
2732         if (bp & 0x01) {
2733                 addr[nbp++] = (caddr_t)rdr0();
2734         }
2735         if (bp & 0x02) {
2736                 addr[nbp++] = (caddr_t)rdr1();
2737         }
2738         if (bp & 0x04) {
2739                 addr[nbp++] = (caddr_t)rdr2();
2740         }
2741         if (bp & 0x08) {
2742                 addr[nbp++] = (caddr_t)rdr3();
2743         }
2744
2745         for (i = 0; i < nbp; i++) {
2746                 if (addr[i] < (caddr_t)VM_MAXUSER_ADDRESS) {
2747                         /*
2748                          * addr[i] is in user space
2749                          */
2750                         return nbp;
2751                 }
2752         }
2753
2754         /*
2755          * None of the breakpoints are in user space.
2756          */
2757         return 0;
2758 }
2759
2760 #ifdef KDB
2761
2762 /*
2763  * Provide inb() and outb() as functions.  They are normally only available as
2764  * inline functions, thus cannot be called from the debugger.
2765  */
2766
2767 /* silence compiler warnings */
2768 u_char inb_(u_short);
2769 void outb_(u_short, u_char);
2770
2771 u_char
2772 inb_(u_short port)
2773 {
2774         return inb(port);
2775 }
2776
2777 void
2778 outb_(u_short port, u_char data)
2779 {
2780         outb(port, data);
2781 }
2782
2783 #endif /* KDB */