]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/sun4v/sun4v/machdep.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / sun4v / sun4v / machdep.c
1 /*-
2  * Copyright (c) 2001 Jake Burkholder.
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  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      from: @(#)machdep.c     7.4 (Berkeley) 6/3/91
35  *      from: FreeBSD: src/sys/i386/i386/machdep.c,v 1.477 2001/08/27
36  */
37
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
40
41 #include "opt_compat.h"
42 #include "opt_ddb.h"
43 #include "opt_kstack_pages.h"
44 #include "opt_msgbuf.h"
45
46 #include <sys/param.h>
47 #include <sys/malloc.h>
48 #include <sys/proc.h>
49 #include <sys/systm.h>
50 #include <sys/bio.h>
51 #include <sys/buf.h>
52 #include <sys/bus.h>
53 #include <sys/cpu.h>
54 #include <sys/cons.h>
55 #include <sys/eventhandler.h>
56 #include <sys/exec.h>
57 #include <sys/imgact.h>
58 #include <sys/interrupt.h>
59 #include <sys/kdb.h>
60 #include <sys/kernel.h>
61 #include <sys/ktr.h>
62 #include <sys/linker.h>
63 #include <sys/lock.h>
64 #include <sys/msgbuf.h>
65 #include <sys/mutex.h>
66 #include <sys/pcpu.h>
67 #include <sys/ptrace.h>
68 #include <sys/reboot.h>
69 #include <sys/signalvar.h>
70 #include <sys/smp.h>
71 #include <sys/sysent.h>
72 #include <sys/sysproto.h>
73 #include <sys/timetc.h>
74 #include <sys/ucontext.h>
75
76 #include <dev/ofw/openfirm.h>
77
78 #include <vm/vm.h>
79 #include <vm/vm_extern.h>
80 #include <vm/vm_kern.h>
81 #include <vm/vm_page.h>
82 #include <vm/vm_map.h>
83 #include <vm/vm_object.h>
84 #include <vm/vm_pager.h>
85 #include <vm/vm_param.h>
86
87 #include <ddb/ddb.h>
88
89 #include <machine/bus.h>
90 #include <machine/clock.h>
91 #include <machine/cpu.h>
92 #include <machine/fp.h>
93 #include <machine/fsr.h>
94 #include <machine/intr_machdep.h>
95 #include <machine/md_var.h>
96 #include <machine/metadata.h>
97 #include <machine/ofw_machdep.h>
98 #include <machine/ofw_mem.h>
99 #include <machine/pcb.h>
100 #include <machine/pmap.h>
101 #include <machine/pstate.h>
102 #include <machine/reg.h>
103 #include <machine/sigframe.h>
104 #include <machine/smp.h>
105 #include <machine/tick.h>
106 #include <machine/tlb.h>
107 #include <machine/tstate.h>
108 #include <machine/asm.h>
109 #include <machine/hv_api.h>
110 #include <machine/wstate.h>
111
112 #include <machine/md_var.h>
113 #include <machine/hypervisorvar.h>
114 #include <dev/ofw/openfirm.h>
115
116 /* XXX move this to a header */
117 extern void mdesc_init(void);
118
119 typedef int ofw_vec_t(void *);
120
121 #ifdef DDB
122 extern vm_offset_t ksym_start, ksym_end;
123 #endif
124
125 struct tlb_entry *kernel_tlbs;
126 int kernel_tlb_slots;
127
128 int cold = 1;
129 long Maxmem;
130 long realmem;
131
132 void *dpcpu0;
133 char pcpu0[PCPU_PAGES * PAGE_SIZE];
134 struct trapframe frame0;
135 int trap_conversion[256];
136 vm_paddr_t mmu_fault_status_area;
137
138 vm_offset_t kstack0;
139 vm_paddr_t kstack0_phys;
140
141 struct kva_md_info kmi;
142
143 u_long ofw_vec;
144 u_long ofw_tba;
145
146 /*
147  * Note: timer quality for CPU's is set low to try and prevent them from
148  * being chosen as the primary timecounter.  The CPU counters are not
149  * synchronized among the CPU's so in MP machines this causes problems
150  * when calculating the time.  With this value the CPU's should only be
151  * chosen as the primary timecounter as a last resort.
152  */
153
154 #define UP_TICK_QUALITY 1000
155 #ifdef SUN4V
156 #define MP_TICK_QUALITY 1000
157 #else
158 #define MP_TICK_QUALITY -100
159 #endif
160
161
162
163
164
165 static struct timecounter tick_tc;
166
167 char sparc64_model[32];
168
169 cpu_block_copy_t *cpu_block_copy;
170 cpu_block_zero_t *cpu_block_zero;
171
172 static timecounter_get_t tick_get_timecount;
173 void sparc64_init(caddr_t mdp, u_long o1, u_long o2, u_long o3,
174                   ofw_vec_t *vec);
175 void sparc64_shutdown_final(void *dummy, int howto);
176
177 static void cpu_startup(void *);
178 SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL);
179
180 CTASSERT((1 << INT_SHIFT) == sizeof(int));
181 CTASSERT((1 << PTR_SHIFT) == sizeof(char *));
182
183 CTASSERT(sizeof(struct reg) == 256);
184 CTASSERT(sizeof(struct fpreg) == 272);
185 CTASSERT(sizeof(struct __mcontext) == 512);
186
187 CTASSERT((sizeof(struct pcb) & (64 - 1)) == 0);
188 CTASSERT((offsetof(struct pcb, pcb_kfp) & (64 - 1)) == 0);
189 CTASSERT((offsetof(struct pcb, pcb_ufp) & (64 - 1)) == 0);
190 CTASSERT(sizeof(struct pcb) <= ((KSTACK_PAGES * PAGE_SIZE) / 8));
191
192 CTASSERT(sizeof(struct pcpu) <= ((PCPU_PAGES * PAGE_SIZE) / 2));
193 CTASSERT((sizeof(struct pcpu) & ((1<<6)-1)) == 0);
194
195
196 #define BVPRINTF(x) \
197         if (bootverbose) \
198                 printf(x);
199
200 static void
201 cpu_startup(void *arg)
202 {
203         vm_paddr_t physsz;
204         int i;
205
206         tick_tc.tc_get_timecount = tick_get_timecount;
207         tick_tc.tc_poll_pps = NULL;
208         tick_tc.tc_counter_mask = ~0u;
209         tick_tc.tc_frequency = tick_freq;
210         tick_tc.tc_name = "tick";
211         tick_tc.tc_quality = UP_TICK_QUALITY;
212 #ifdef SMP
213         /*
214          * We do not know if each CPU's tick counter is synchronized.
215          */
216         if (cpu_mp_probe())
217                 tick_tc.tc_quality = MP_TICK_QUALITY;
218 #endif
219
220         tc_init(&tick_tc);
221
222         physsz = 0;
223         for (i = 0; i < sparc64_nmemreg; i++)
224                 physsz += sparc64_memreg[i].mr_size;
225         printf("real memory  = %lu (%lu MB)\n", physsz,
226             physsz / (1024 * 1024));
227         realmem = (long)physsz;
228
229         vm_ksubmap_init(&kmi);
230
231         bufinit();
232         vm_pager_bufferinit();
233
234         EVENTHANDLER_REGISTER(shutdown_final, sparc64_shutdown_final, NULL,
235             SHUTDOWN_PRI_LAST);
236
237         printf("avail memory = %lu (%lu MB)\n", cnt.v_free_count * PAGE_SIZE,
238             cnt.v_free_count / ((1024 * 1024) / PAGE_SIZE));
239
240         if (bootverbose)
241                 printf("machine: %s\n", sparc64_model);
242
243 #ifdef notyet
244         cpu_identify(rdpr(ver), tick_freq, PCPU_GET(cpuid));
245 #endif 
246 }
247
248 void
249 cpu_pcpu_init(struct pcpu *pcpu, int cpuid, size_t size)
250 {
251         struct intr_request *ir;
252         int i;
253
254         pcpu->pc_irtail = &pcpu->pc_irhead;
255         for (i = 0; i < IR_FREE; i++) {
256                 ir = &pcpu->pc_irpool[i];
257                 ir->ir_next = pcpu->pc_irfree;
258                 pcpu->pc_irfree = ir;
259         }
260 }
261
262 void
263 spinlock_enter(void)
264 {
265         struct thread *td;
266         register_t pil;
267
268         td = curthread;
269         if (td->td_md.md_spinlock_count == 0) {
270                 pil = intr_disable();
271                 td->td_md.md_saved_pil = pil;
272         }
273         td->td_md.md_spinlock_count++;
274         critical_enter();
275 }
276
277 void
278 spinlock_exit(void)
279 {
280         struct thread *td;
281
282         td = curthread;
283         critical_exit();
284         td->td_md.md_spinlock_count--;
285         if (td->td_md.md_spinlock_count == 0) {
286                 intr_restore(td->td_md.md_saved_pil);
287         }
288
289 }
290
291 unsigned
292 tick_get_timecount(struct timecounter *tc)
293 {
294         return ((unsigned)rd(tick));
295 }
296
297 void
298 sparc64_init(caddr_t mdp, u_long o1, u_long o2, u_long o3, ofw_vec_t *vec)
299 {
300         phandle_t child;
301         phandle_t root;
302         struct pcpu *pc;
303         vm_offset_t end;
304         caddr_t kmdp;
305         u_int clock;
306         char *env;
307         char type[8];
308         vm_paddr_t mmfsa;
309         int i;
310
311         end = 0;
312         kmdp = NULL;
313
314         /*
315          * XXX
316          */
317         bootverbose = 1;
318
319         /*
320          * Set up Open Firmware entry points
321          */
322         ofw_tba = rdpr(tba);
323         ofw_vec = (u_long)vec;
324
325         /*
326          * Parse metadata if present and fetch parameters.  Must be before the
327          * console is inited so cninit gets the right value of boothowto.
328          */
329         if (mdp != NULL) {
330                 preload_metadata = mdp;
331                 kmdp = preload_search_by_type("elf kernel");
332                 if (kmdp != NULL) {
333                         boothowto = MD_FETCH(kmdp, MODINFOMD_HOWTO, int);
334                         kern_envp = MD_FETCH(kmdp, MODINFOMD_ENVP, char *);
335                         end = MD_FETCH(kmdp, MODINFOMD_KERNEND, vm_offset_t);
336                         kernel_tlb_slots = MD_FETCH(kmdp, MODINFOMD_DTLB_SLOTS,
337                             int);
338                         kernel_tlbs = (void *)preload_search_info(kmdp,
339                             MODINFO_METADATA | MODINFOMD_DTLB);
340                 }
341         }
342
343         if (boothowto & RB_VERBOSE)
344                 bootverbose = 1;
345
346         init_param1();
347
348         /*
349          * Initialize Open Firmware (needed for console).
350          */
351         OF_install(OFW_STD_DIRECT, 0);
352         OF_init(ofw_entry);
353
354         root = OF_peer(0);
355         for (child = OF_child(root); child != 0; child = OF_peer(child)) {
356                 OF_getprop(child, "device_type", type, sizeof(type));
357                 if (strcmp(type, "cpu") == 0)
358                         break;
359         }
360
361         OF_getprop(child, "clock-frequency", &clock, sizeof(clock));
362
363         /*
364          * Initialize the console before printing anything.
365          * console uses the pcpu area for serialization 
366          */
367         pc = (struct pcpu *)(pcpu0 + (PCPU_PAGES * PAGE_SIZE)) - 1;
368         cpu_setregs(pc);
369
370         /*
371          * Initialize proc0 stuff (p_contested needs to be done early).
372          */
373
374         proc_linkup0(&proc0, &thread0);
375         proc0.p_md.md_sigtramp = NULL;
376         proc0.p_md.md_utrap = NULL;
377         frame0.tf_tstate = TSTATE_IE | TSTATE_PEF | TSTATE_PRIV;
378         thread0.td_frame = &frame0;
379         if ((u_long)thread0.td_frame & 0x3f) {
380                 panic("unaligned frame0");
381         }
382
383         /*
384          * Prime our per-cpu data page for use.  Note, we are using it for our
385          * stack, so don't pass the real size (PAGE_SIZE) to pcpu_init or
386          * it'll zero it out from under us.
387          */
388         pc = (struct pcpu *)(pcpu0 + (PCPU_PAGES * PAGE_SIZE)) - 1;
389         pcpu_init(pc, 0, sizeof(struct pcpu));
390         pc->pc_curthread = &thread0;
391         pc->pc_addr = (vm_offset_t)pcpu0;
392
393         cninit();
394         tick_init(clock);
395
396         printf("cpu0: UltraSparc T1 Processor (%d.%02d MHz CPU)\n",
397             (clock + 4999) / 1000000, ((clock + 4999) / 10000) % 100);
398
399         /*
400          * Panic is there is no metadata.  Most likely the kernel was booted
401          * directly, instead of through loader(8).
402          */
403         if (mdp == NULL || kmdp == NULL) {
404                 printf("sparc64_init: no loader metadata.\n"
405                        "This probably means you are not using loader(8).\n");
406                 panic("sparc64_init");
407         }
408
409         /*
410          * Sanity check the kernel end, which is important.
411          */
412         if (end == 0) {
413                 printf("sparc64_init: warning, kernel end not specified.\n"
414                        "Attempting to continue anyway.\n");
415                 end = (vm_offset_t)_end;
416         }
417
418         cpu_block_copy = bcopy;
419         cpu_block_zero = bzero;
420
421 #ifdef SMP
422         mp_tramp = mp_tramp_alloc();
423 #endif
424
425         env = getenv("kernelname");
426         if (env != NULL) {
427                 strlcpy(kernelname, env, sizeof(kernelname));
428                 freeenv(env);
429         }
430
431         /*
432          * Initialize global registers.
433          * needed for curthread to work
434          */
435         cpu_setregs(pc);
436
437         /*
438          * Initialize virtual memory and calculate physmem.
439          */
440         pmap_bootstrap(end);
441
442         thread0.td_kstack = kstack0;
443         thread0.td_md.md_saved_pil = 0;
444         thread0.td_pcb = (struct pcb *)
445                 (thread0.td_kstack + KSTACK_PAGES * PAGE_SIZE) - 1;
446         thread0.td_pcb->pcb_kstack = (uint64_t)(((char *)thread0.td_pcb) - (CCFSZ + SPOFF));
447         thread0.td_pcb = (struct pcb *)TLB_PHYS_TO_DIRECT(vtophys((vm_offset_t)thread0.td_pcb));
448         pc->pc_curpcb = thread0.td_pcb;
449
450         if (((thread0.td_pcb->pcb_kstack + SPOFF) & 0x3f) != 0) {
451                 printf("unaligned stack pcb_kstack & 0x3f == 0x%lx\n", 
452                        ((thread0.td_pcb->pcb_kstack + SPOFF) & 0x3f));
453         }
454
455         /*
456          * Update PCPU_REG to point to direct address
457          * to support easy phys <-> virt translation in trap handler
458          */
459         pc = (struct pcpu *)TLB_PHYS_TO_DIRECT(vtophys(pc));
460
461         BVPRINTF("initializing cpu regs\n");
462         cpu_setregs(pc);
463         
464         /*
465          * Initialize tunables.
466          */
467         BVPRINTF("initialize tunables\n");
468         init_param2(physmem);
469
470         /*
471          * setup trap table and fault status area
472          */
473         BVPRINTF("initialize trap tables\n");
474
475         mmfsa = mmu_fault_status_area + MMFSA_SIZE;
476         BVPRINTF("setwstate\n");
477         set_wstate(WSTATE_KERN);
478         BVPRINTF("set_mmfsa_scratchpad\n");
479         set_mmfsa_scratchpad(mmfsa);
480
481         BVPRINTF("init_mondo_queue\n");
482         init_mondo_queue();
483         BVPRINTF("set_mmfsa_traptable\n");
484         set_mmfsa_traptable(&tl0_base, mmfsa);
485         BVPRINTF("trap conversion\n");
486         for (i = 0; i < 256; i++)
487                 trap_conversion[i] = 0;
488         trap_conversion[TT_INSTRUCTION_EXCEPTION] = T_INSTRUCTION_EXCEPTION;
489         trap_conversion[TT_INSTRUCTION_MISS]      = T_INSTRUCTION_MISS;
490         trap_conversion[TT_ILLEGAL_INSTRUCTION]   = T_ILLEGAL_INSTRUCTION;
491         trap_conversion[TT_PRIVILEGED_OPCODE]     = T_PRIVILEGED_OPCODE;
492         trap_conversion[TT_FP_EXCEPTION_IEEE_754] = T_FP_EXCEPTION_IEEE_754; 
493         trap_conversion[TT_TAG_OVERFLOW]          = T_TAG_OVERFLOW;
494         trap_conversion[TT_DIVISION_BY_ZERO]      = T_DIVISION_BY_ZERO;
495         trap_conversion[TT_DATA_EXCEPTION]        = T_DATA_EXCEPTION;
496         trap_conversion[TT_DATA_MISS]             = T_DATA_MISS;
497         trap_conversion[TT_ALIGNMENT]             = T_ALIGNMENT;
498         trap_conversion[TT_DATA_PROTECTION]       = T_DATA_PROTECTION;
499         
500         /*
501          * Initialize the message buffer (after setting trap table).
502          */
503         BVPRINTF("initialize msgbuf\n");
504         dpcpu_init(dpcpu0, 0);
505         msgbufinit(msgbufp, MSGBUF_SIZE);
506
507         BVPRINTF("initialize mutexes\n");
508         mutex_init();
509         
510         BVPRINTF("initialize machine descriptor table\n");
511         mdesc_init();
512
513         BVPRINTF("initialize get model name\n");
514         OF_getprop(root, "name", sparc64_model, sizeof(sparc64_model) - 1);
515
516         BVPRINTF("initialize kdb\n");
517         kdb_init();
518
519 #ifdef KDB
520         if (boothowto & RB_KDB)
521                 kdb_enter(KDB_WHY_BOOTFLAGS, "Boot flags requested debugger");
522 #endif
523         BVPRINTF("sparc64_init done\n");
524 }
525
526 void
527 sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
528 {
529         struct trapframe *tf;
530         struct sigframe *sfp;
531         struct sigacts *psp;
532         struct sigframe sf;
533         struct thread *td;
534         struct frame *fp;
535         struct proc *p;
536         int oonstack;
537         u_long sp;
538         int sig;
539         int code;
540
541         oonstack = 0;
542         td = curthread;
543         p = td->td_proc;
544         PROC_LOCK_ASSERT(p, MA_OWNED);
545         sig = ksi->ksi_signo;
546         code = ksi->ksi_code;
547         psp = p->p_sigacts;
548         mtx_assert(&psp->ps_mtx, MA_OWNED);
549         tf = td->td_frame;
550         sp = tf->tf_sp + SPOFF;
551         oonstack = sigonstack(sp);
552
553         CTR4(KTR_SIG, "sendsig: td=%p (%s) catcher=%p sig=%d", td, p->p_comm,
554             catcher, sig);
555
556         /* Make sure we have a signal trampoline to return to. */
557         if (p->p_md.md_sigtramp == NULL) {
558                 /*
559                  * No signal tramoline... kill the process.
560                  */
561                 CTR0(KTR_SIG, "sendsig: no sigtramp");
562                 printf("sendsig: %s is too old, rebuild it\n", p->p_comm);
563                 sigexit(td, sig);
564                 /* NOTREACHED */
565         }
566
567         /* Save user context. */
568         bzero(&sf, sizeof(sf));
569         get_mcontext(td, &sf.sf_uc.uc_mcontext, 0);
570         sf.sf_uc.uc_sigmask = *mask;
571         sf.sf_uc.uc_stack = td->td_sigstk;
572         sf.sf_uc.uc_stack.ss_flags = (td->td_pflags & TDP_ALTSTACK)
573             ? ((oonstack) ? SS_ONSTACK : 0) : SS_DISABLE;
574
575         /* Allocate and validate space for the signal handler context. */
576         if ((td->td_pflags & TDP_ALTSTACK) != 0 && !oonstack &&
577             SIGISMEMBER(psp->ps_sigonstack, sig)) {
578                 sfp = (struct sigframe *)(td->td_sigstk.ss_sp +
579                     td->td_sigstk.ss_size - sizeof(struct sigframe));
580         } else
581                 sfp = (struct sigframe *)sp - 1;
582         mtx_unlock(&psp->ps_mtx);
583         PROC_UNLOCK(p);
584
585         fp = (struct frame *)sfp - 1;
586
587         /* Translate the signal if appropriate. */
588         if (p->p_sysent->sv_sigtbl && sig <= p->p_sysent->sv_sigsize)
589                 sig = p->p_sysent->sv_sigtbl[_SIG_IDX(sig)];
590
591         /* Build the argument list for the signal handler. */
592         tf->tf_out[0] = sig;
593         tf->tf_out[2] = (register_t)&sfp->sf_uc;
594         tf->tf_out[4] = (register_t)catcher;
595
596         /* Fill siginfo structure. */
597         sf.sf_si = ksi->ksi_info;
598         sf.sf_si.si_addr = (void *)tf->tf_tpc;
599         if (SIGISMEMBER(psp->ps_siginfo, sig)) {
600                 /* Signal handler installed with SA_SIGINFO. */
601                 tf->tf_out[1] = (register_t)&sfp->sf_si;
602
603                 /* Fill in POSIX parts. */
604                 sf.sf_si = ksi->ksi_info;
605                 sf.sf_si.si_signo = sig; /* maybe a translated signal */
606         } else {
607                 /* Old FreeBSD-style arguments. */
608                 tf->tf_out[1] = ksi->ksi_code;
609                 tf->tf_out[3] = (register_t)ksi->ksi_addr;
610         }
611
612         /* Copy the sigframe out to the user's stack. */
613         if (rwindow_save(td) != 0 || copyout(&sf, sfp, sizeof(*sfp)) != 0 ||
614             suword(&fp->fr_in[6], tf->tf_out[6]) != 0) {
615                 /*
616                  * Something is wrong with the stack pointer.
617                  * ...Kill the process.
618                  */
619                 CTR2(KTR_SIG, "sendsig: sigexit td=%p sfp=%p", td, sfp);
620                 PROC_LOCK(p);
621                 sigexit(td, SIGILL);
622                 /* NOTREACHED */
623         }
624
625         tf->tf_tpc = (u_long)p->p_md.md_sigtramp;
626         tf->tf_tnpc = tf->tf_tpc + 4;
627         tf->tf_sp = (u_long)fp - SPOFF;
628
629         CTR3(KTR_SIG, "sendsig: return td=%p pc=%#lx sp=%#lx", td, tf->tf_tpc,
630             tf->tf_sp);
631
632         PROC_LOCK(p);
633         mtx_lock(&psp->ps_mtx);
634 }
635
636 #ifndef _SYS_SYSPROTO_H_
637 struct sigreturn_args {
638         ucontext_t *ucp;
639 };
640 #endif
641
642 /*
643  * MPSAFE
644  */
645 int
646 sigreturn(struct thread *td, struct sigreturn_args *uap)
647 {
648         struct proc *p;
649         mcontext_t *mc;
650         ucontext_t uc;
651         int error;
652
653         p = td->td_proc;
654         if (rwindow_save(td)) {
655                 PROC_LOCK(p);
656                 sigexit(td, SIGILL);
657         }
658
659         CTR2(KTR_SIG, "sigreturn: td=%p ucp=%p", td, uap->sigcntxp);
660         if (copyin(uap->sigcntxp, &uc, sizeof(uc)) != 0) {
661                 CTR1(KTR_SIG, "sigreturn: efault td=%p", td);
662                 return (EFAULT);
663         }
664
665         mc = &uc.uc_mcontext;
666         error = set_mcontext(td, mc);
667         if (error != 0)
668                 return (error);
669
670         kern_sigprocmask(td, SIG_SETMASK, &uc.uc_sigmask, NULL, 0);
671
672         CTR4(KTR_SIG, "sigreturn: return td=%p pc=%#lx sp=%#lx tstate=%#lx",
673             td, mc->mc_tpc, mc->mc_sp, mc->mc_tstate);
674         return (EJUSTRETURN);
675 }
676
677 #ifdef COMPAT_FREEBSD4
678 int
679 freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap)
680 {
681
682         return sigreturn(td, (struct sigreturn_args *)uap);
683 }
684 #endif
685
686 /*
687  * Construct a PCB from a trapframe. This is called from kdb_trap() where
688  * we want to start a backtrace from the function that caused us to enter
689  * the debugger. We have the context in the trapframe, but base the trace
690  * on the PCB. The PCB doesn't have to be perfect, as long as it contains
691  * enough for a backtrace.
692  */
693 void
694 makectx(struct trapframe *tf, struct pcb *pcb)
695 {
696
697         pcb->pcb_pc = tf->tf_tpc;
698         pcb->pcb_sp = tf->tf_sp;
699 }
700
701 int
702 get_mcontext(struct thread *td, mcontext_t *mc, int flags)
703 {
704         struct trapframe *tf;
705         struct pcb *pcb;
706
707         tf = td->td_frame;
708         pcb = td->td_pcb;
709         bcopy(tf, mc, sizeof(*tf));
710         if (flags & GET_MC_CLEAR_RET) {
711                 mc->mc_out[0] = 0;
712                 mc->mc_out[1] = 0;
713         }
714         mc->mc_flags = _MC_VERSION;
715         critical_enter();
716         if ((tf->tf_fprs & FPRS_FEF) != 0) {
717                 savefpctx(pcb->pcb_ufp);
718                 pcb->pcb_flags |= PCB_FEF;
719                 tf->tf_fprs &= ~FPRS_FEF;
720         }
721         if ((pcb->pcb_flags & PCB_FEF) != 0) {
722                 bcopy(pcb->pcb_ufp, mc->mc_fp, sizeof(mc->mc_fp));
723                 mc->mc_fprs |= FPRS_FEF;
724         }
725         critical_exit();
726         return (0);
727 }
728
729 int
730 set_mcontext(struct thread *td, const mcontext_t *mc)
731 {
732         struct trapframe *tf;
733         struct pcb *pcb;
734         uint64_t wstate;
735
736         if (!TSTATE_SECURE(mc->mc_tstate) ||
737             (mc->mc_flags & ((1L << _MC_VERSION_BITS) - 1)) != _MC_VERSION)
738                 return (EINVAL);
739         tf = td->td_frame;
740         pcb = td->td_pcb;
741         /* Make sure the windows are spilled first. */
742         flushw();
743         wstate = tf->tf_wstate;
744         bcopy(mc, tf, sizeof(*tf));
745         tf->tf_wstate = wstate;
746         if ((mc->mc_fprs & FPRS_FEF) != 0) {
747                 tf->tf_fprs = 0;
748                 bcopy(mc->mc_fp, pcb->pcb_ufp, sizeof(pcb->pcb_ufp));
749                 pcb->pcb_flags |= PCB_FEF;
750         }
751         return (0);
752 }
753
754 /*
755  * Exit the kernel and execute a firmware call that will not return, as
756  * specified by the arguments.
757  */
758 void
759 cpu_shutdown(void *args)
760 {
761
762 #ifdef SMP
763         cpu_mp_shutdown();
764 #endif
765         hv_mach_exit(0);
766 }
767
768 /*
769  * Flush the D-cache for non-DMA I/O so that the I-cache can
770  * be made coherent later.
771  */
772 void
773 cpu_flush_dcache(void *ptr, size_t len)
774 {
775         /* TBD */
776 }
777
778 /* Get current clock frequency for the given cpu id. */
779 int
780 cpu_est_clockrate(int cpu_id, uint64_t *rate)
781 {
782
783         return (ENXIO);
784 }
785
786 /*
787  * Duplicate OF_exit() with a different firmware call function that restores
788  * the trap table, otherwise a RED state exception is triggered in at least
789  * some firmware versions.
790  */
791 void
792 cpu_halt(void)
793 {
794         static struct {
795                 cell_t name;
796                 cell_t nargs;
797                 cell_t nreturns;
798         } args = {
799                 (cell_t)"exit",
800                 0,
801                 0
802         };
803
804         cpu_shutdown(&args);
805 }
806
807 void
808 sparc64_shutdown_final(void *dummy, int howto)
809 {
810         static struct {
811                 cell_t name;
812                 cell_t nargs;
813                 cell_t nreturns;
814         } args = {
815                 (cell_t)"SUNW,power-off",
816                 0,
817                 0
818         };
819
820         /* Turn the power off? */
821         if ((howto & RB_POWEROFF) != 0)
822                 cpu_shutdown(&args);
823         /* In case of halt, return to the firmware */
824         if ((howto & RB_HALT) != 0)
825                 cpu_halt();
826 }
827
828 void
829 cpu_idle(int busy)
830 {
831
832         if (rdpr(pil) != 0) 
833                 panic("pil in cpu_idle not 0 - %ld", rdpr(pil));
834         if (rdpr(pstate) != 0x16)
835                 panic("interrupts disabled in cpu_idle 0x%lx", rdpr(pstate));
836                 /* XXX heinous hack begin*/
837         
838         cpu_yield();
839 }
840
841 int
842 cpu_idle_wakeup(int cpu)
843 {
844
845         return (0);
846 }
847
848 int
849 ptrace_set_pc(struct thread *td, u_long addr)
850 {
851
852         td->td_frame->tf_tpc = addr;
853         td->td_frame->tf_tnpc = addr + 4;
854         return (0);
855 }
856
857 int
858 ptrace_single_step(struct thread *td)
859 {
860         /* TODO; */
861         return (0);
862 }
863
864 int
865 ptrace_clear_single_step(struct thread *td)
866 {
867         /* TODO; */
868         return (0);
869 }
870
871 void
872 exec_setregs(struct thread *td, u_long entry, u_long stack, u_long ps_strings)
873 {
874         struct trapframe *tf;
875         struct pcb *pcb;
876         struct proc *p;
877         uint64_t kstack;
878         u_long sp;
879
880         /* XXX no cpu_exec */
881
882         p = td->td_proc;
883         p->p_md.md_sigtramp = NULL;
884         if (p->p_md.md_utrap != NULL) {
885                 utrap_free(p->p_md.md_utrap);
886                 p->p_md.md_utrap = NULL;
887         }
888         pcb = td->td_pcb;
889         kstack = pcb->pcb_kstack;
890         tf = td->td_frame;
891         sp = rounddown(stack, 16);
892         bzero(pcb, sizeof(*pcb));
893         bzero(tf, sizeof(*tf));
894         pcb->pcb_kstack = kstack;
895
896         tf->tf_out[0] = stack;
897         tf->tf_out[3] = p->p_sysent->sv_psstrings;
898         tf->tf_out[6] = sp - SPOFF - sizeof(struct frame);
899
900         tf->tf_tnpc = entry + 4;
901         tf->tf_tpc = entry;
902         tf->tf_tstate = TSTATE_IE | TSTATE_PEF | TSTATE_MM_TSO;
903
904         td->td_retval[0] = tf->tf_out[0];
905         td->td_retval[1] = tf->tf_out[1];
906 }
907
908 int
909 fill_regs(struct thread *td, struct reg *regs)
910 {
911
912         bcopy(td->td_frame, regs, sizeof(*regs));
913         return (0);
914 }
915
916 int
917 set_regs(struct thread *td, struct reg *regs)
918 {
919         struct trapframe *tf;
920
921         if (!TSTATE_SECURE(regs->r_tstate))
922                 return (EINVAL);
923         tf = td->td_frame;
924         regs->r_wstate = tf->tf_wstate;
925         bcopy(regs, tf, sizeof(*regs));
926         return (0);
927 }
928
929 int
930 fill_dbregs(struct thread *td, struct dbreg *dbregs)
931 {
932
933         return (ENOSYS);
934 }
935
936 int
937 set_dbregs(struct thread *td, struct dbreg *dbregs)
938 {
939
940         return (ENOSYS);
941 }
942
943 int
944 fill_fpregs(struct thread *td, struct fpreg *fpregs)
945 {
946         struct trapframe *tf;
947         struct pcb *pcb;
948
949         pcb = td->td_pcb;
950         tf = td->td_frame;
951         tf->tf_fprs = ~FPRS_FEF;
952         bcopy(pcb->pcb_ufp, fpregs->fr_regs, sizeof(fpregs->fr_regs));
953         fpregs->fr_fsr = tf->tf_fsr;
954         fpregs->fr_gsr = tf->tf_gsr;
955         return (0);
956 }
957
958 int
959 set_fpregs(struct thread *td, struct fpreg *fpregs)
960 {
961         struct trapframe *tf;
962         struct pcb *pcb;
963
964         pcb = td->td_pcb;
965         tf = td->td_frame;
966         tf->tf_fprs &= ~FPRS_FEF;
967         bcopy(fpregs->fr_regs, pcb->pcb_ufp, sizeof(pcb->pcb_ufp));
968         tf->tf_fsr = fpregs->fr_fsr;
969         tf->tf_gsr = fpregs->fr_gsr;
970         return (0);
971 }
972
973 struct md_utrap *
974 utrap_alloc(void)
975 {
976         struct md_utrap *ut;
977
978         ut = malloc(sizeof(struct md_utrap), M_SUBPROC, M_WAITOK | M_ZERO);
979         ut->ut_refcnt = 1;
980         return (ut);
981 }
982
983 void
984 utrap_free(struct md_utrap *ut)
985 {
986         int refcnt;
987
988         if (ut == NULL)
989                 return;
990         mtx_pool_lock(mtxpool_sleep, ut);
991         ut->ut_refcnt--;
992         refcnt = ut->ut_refcnt;
993         mtx_pool_unlock(mtxpool_sleep, ut);
994         if (refcnt == 0)
995                 free(ut, M_SUBPROC);
996 }
997
998 struct md_utrap *
999 utrap_hold(struct md_utrap *ut)
1000 {
1001
1002         if (ut == NULL)
1003                 return (NULL);
1004         mtx_pool_lock(mtxpool_sleep, ut);
1005         ut->ut_refcnt++;
1006         mtx_pool_unlock(mtxpool_sleep, ut);
1007         return (ut);
1008 }
1009
1010 void
1011 cpu_yield(void)
1012 {
1013         if (rdpr(pil) < PIL_TICK)
1014                 hv_cpu_yield();
1015 }