]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/ia64/ia64/machdep.c
MFC rev 200889:
[FreeBSD/stable/8.git] / sys / ia64 / ia64 / machdep.c
1 /*-
2  * Copyright (c) 2003,2004 Marcel Moolenaar
3  * Copyright (c) 2000,2001 Doug Rabson
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include "opt_compat.h"
32 #include "opt_ddb.h"
33 #include "opt_kstack_pages.h"
34 #include "opt_msgbuf.h"
35 #include "opt_sched.h"
36
37 #include <sys/param.h>
38 #include <sys/proc.h>
39 #include <sys/systm.h>
40 #include <sys/bio.h>
41 #include <sys/buf.h>
42 #include <sys/bus.h>
43 #include <sys/cons.h>
44 #include <sys/cpu.h>
45 #include <sys/eventhandler.h>
46 #include <sys/exec.h>
47 #include <sys/imgact.h>
48 #include <sys/kdb.h>
49 #include <sys/kernel.h>
50 #include <sys/linker.h>
51 #include <sys/lock.h>
52 #include <sys/malloc.h>
53 #include <sys/mbuf.h>
54 #include <sys/msgbuf.h>
55 #include <sys/pcpu.h>
56 #include <sys/ptrace.h>
57 #include <sys/random.h>
58 #include <sys/reboot.h>
59 #include <sys/sched.h>
60 #include <sys/signalvar.h>
61 #include <sys/syscall.h>
62 #include <sys/sysctl.h>
63 #include <sys/sysproto.h>
64 #include <sys/ucontext.h>
65 #include <sys/uio.h>
66 #include <sys/uuid.h>
67 #include <sys/vmmeter.h>
68 #include <sys/vnode.h>
69
70 #include <ddb/ddb.h>
71
72 #include <net/netisr.h>
73
74 #include <vm/vm.h>
75 #include <vm/vm_extern.h>
76 #include <vm/vm_kern.h>
77 #include <vm/vm_page.h>
78 #include <vm/vm_map.h>
79 #include <vm/vm_object.h>
80 #include <vm/vm_pager.h>
81
82 #include <machine/bootinfo.h>
83 #include <machine/clock.h>
84 #include <machine/cpu.h>
85 #include <machine/efi.h>
86 #include <machine/elf.h>
87 #include <machine/fpu.h>
88 #include <machine/mca.h>
89 #include <machine/md_var.h>
90 #include <machine/mutex.h>
91 #include <machine/pal.h>
92 #include <machine/pcb.h>
93 #include <machine/reg.h>
94 #include <machine/sal.h>
95 #include <machine/sigframe.h>
96 #ifdef SMP
97 #include <machine/smp.h>
98 #endif
99 #include <machine/unwind.h>
100 #include <machine/vmparam.h>
101
102 #include <i386/include/specialreg.h>
103
104 SYSCTL_NODE(_hw, OID_AUTO, freq, CTLFLAG_RD, 0, "");
105 SYSCTL_NODE(_machdep, OID_AUTO, cpu, CTLFLAG_RD, 0, "");
106
107 static u_int bus_freq;
108 SYSCTL_UINT(_hw_freq, OID_AUTO, bus, CTLFLAG_RD, &bus_freq, 0,
109     "Bus clock frequency");
110
111 static u_int cpu_freq;
112 SYSCTL_UINT(_hw_freq, OID_AUTO, cpu, CTLFLAG_RD, &cpu_freq, 0,
113     "CPU clock frequency");
114
115 static u_int itc_freq;
116 SYSCTL_UINT(_hw_freq, OID_AUTO, itc, CTLFLAG_RD, &itc_freq, 0,
117     "ITC frequency");
118
119 int cold = 1;
120
121 u_int64_t pa_bootinfo;
122 struct bootinfo bootinfo;
123
124 struct pcpu pcpu0;
125
126 extern u_int64_t kernel_text[], _end[];
127
128 extern u_int64_t ia64_gateway_page[];
129 extern u_int64_t break_sigtramp[];
130 extern u_int64_t epc_sigtramp[];
131
132 struct fpswa_iface *fpswa_iface;
133
134 u_int64_t ia64_pal_base;
135 u_int64_t ia64_port_base;
136
137 static int ia64_sync_icache_needed;
138
139 char machine[] = MACHINE;
140 SYSCTL_STRING(_hw, HW_MACHINE, machine, CTLFLAG_RD, machine, 0, "");
141
142 static char cpu_model[64];
143 SYSCTL_STRING(_hw, HW_MODEL, model, CTLFLAG_RD, cpu_model, 0,
144     "The CPU model name");
145
146 static char cpu_family[64];
147 SYSCTL_STRING(_hw, OID_AUTO, family, CTLFLAG_RD, cpu_family, 0,
148     "The CPU family name");
149
150 #ifdef DDB
151 extern vm_offset_t ksym_start, ksym_end;
152 #endif
153
154
155 struct msgbuf *msgbufp = NULL;
156
157 /* Other subsystems (e.g., ACPI) can hook this later. */
158 void (*cpu_idle_hook)(void) = NULL;
159
160 long Maxmem = 0;
161 long realmem = 0;
162
163 #define PHYSMAP_SIZE    (2 * VM_PHYSSEG_MAX)
164
165 vm_paddr_t phys_avail[PHYSMAP_SIZE + 2];
166
167 /* must be 2 less so 0 0 can signal end of chunks */
168 #define PHYS_AVAIL_ARRAY_END ((sizeof(phys_avail) / sizeof(vm_offset_t)) - 2)
169
170 struct kva_md_info kmi;
171
172 #define Mhz     1000000L
173 #define Ghz     (1000L*Mhz)
174
175 static void
176 identifycpu(void)
177 {
178         char vendor[17];
179         char *family_name, *model_name;
180         u_int64_t features, tmp;
181         int number, revision, model, family, archrev;
182
183         /*
184          * Assumes little-endian.
185          */
186         *(u_int64_t *) &vendor[0] = ia64_get_cpuid(0);
187         *(u_int64_t *) &vendor[8] = ia64_get_cpuid(1);
188         vendor[16] = '\0';
189
190         tmp = ia64_get_cpuid(3);
191         number = (tmp >> 0) & 0xff;
192         revision = (tmp >> 8) & 0xff;
193         model = (tmp >> 16) & 0xff;
194         family = (tmp >> 24) & 0xff;
195         archrev = (tmp >> 32) & 0xff;
196
197         family_name = model_name = "unknown";
198         switch (family) {
199         case 0x07:
200                 family_name = "Itanium";
201                 model_name = "Merced";
202                 break;
203         case 0x1f:
204                 family_name = "Itanium 2";
205                 switch (model) {
206                 case 0x00:
207                         model_name = "McKinley";
208                         break;
209                 case 0x01:
210                         /*
211                          * Deerfield is a low-voltage variant based on the
212                          * Madison core. We need circumstantial evidence
213                          * (i.e. the clock frequency) to identify those.
214                          * Allow for roughly 1% error margin.
215                          */
216                         if (cpu_freq > 990 && cpu_freq < 1010)
217                                 model_name = "Deerfield";
218                         else
219                                 model_name = "Madison";
220                         break;
221                 case 0x02:
222                         model_name = "Madison II";
223                         break;
224                 }
225                 break;
226         case 0x20:
227                 ia64_sync_icache_needed = 1;
228
229                 family_name = "Itanium 2";
230                 switch (model) {
231                 case 0x00:
232                         model_name = "Montecito";
233                         break;
234                 }
235                 break;
236         }
237         snprintf(cpu_family, sizeof(cpu_family), "%s", family_name);
238         snprintf(cpu_model, sizeof(cpu_model), "%s", model_name);
239
240         features = ia64_get_cpuid(4);
241
242         printf("CPU: %s (", model_name);
243         if (cpu_freq)
244                 printf("%u Mhz ", cpu_freq);
245         printf("%s)\n", family_name);
246         printf("  Origin = \"%s\"  Revision = %d\n", vendor, revision);
247         printf("  Features = 0x%b\n", (u_int32_t) features,
248             "\020"
249             "\001LB"    /* long branch (brl) instruction. */
250             "\002SD"    /* Spontaneous deferral. */
251             "\003AO"    /* 16-byte atomic operations (ld, st, cmpxchg). */ );
252 }
253
254 static void
255 cpu_startup(void *dummy)
256 {
257         char nodename[16];
258         struct pcpu *pc;
259         struct pcpu_stats *pcs;
260
261         /*
262          * Good {morning,afternoon,evening,night}.
263          */
264         identifycpu();
265
266 #ifdef PERFMON
267         perfmon_init();
268 #endif
269         printf("real memory  = %ld (%ld MB)\n", ia64_ptob(Maxmem),
270             ia64_ptob(Maxmem) / 1048576);
271         realmem = Maxmem;
272
273         /*
274          * Display any holes after the first chunk of extended memory.
275          */
276         if (bootverbose) {
277                 int indx;
278
279                 printf("Physical memory chunk(s):\n");
280                 for (indx = 0; phys_avail[indx + 1] != 0; indx += 2) {
281                         long size1 = phys_avail[indx + 1] - phys_avail[indx];
282
283                         printf("0x%08lx - 0x%08lx, %ld bytes (%ld pages)\n",
284                             phys_avail[indx], phys_avail[indx + 1] - 1, size1,
285                             size1 >> PAGE_SHIFT);
286                 }
287         }
288
289         vm_ksubmap_init(&kmi);
290
291         printf("avail memory = %ld (%ld MB)\n", ptoa(cnt.v_free_count),
292             ptoa(cnt.v_free_count) / 1048576);
293  
294         if (fpswa_iface == NULL)
295                 printf("Warning: no FPSWA package supplied\n");
296         else
297                 printf("FPSWA Revision = 0x%lx, Entry = %p\n",
298                     (long)fpswa_iface->if_rev, (void *)fpswa_iface->if_fpswa);
299
300         /*
301          * Set up buffers, so they can be used to read disk labels.
302          */
303         bufinit();
304         vm_pager_bufferinit();
305
306         /*
307          * Traverse the MADT to discover IOSAPIC and Local SAPIC
308          * information.
309          */
310         ia64_probe_sapics();
311         ia64_mca_init();
312
313         /*
314          * Create sysctl tree for per-CPU information.
315          */
316         SLIST_FOREACH(pc, &cpuhead, pc_allcpu) {
317                 snprintf(nodename, sizeof(nodename), "%u", pc->pc_cpuid);
318                 sysctl_ctx_init(&pc->pc_md.sysctl_ctx);
319                 pc->pc_md.sysctl_tree = SYSCTL_ADD_NODE(&pc->pc_md.sysctl_ctx,
320                     SYSCTL_STATIC_CHILDREN(_machdep_cpu), OID_AUTO, nodename,
321                     CTLFLAG_RD, NULL, "");
322                 if (pc->pc_md.sysctl_tree == NULL)
323                         continue;
324
325                 pcs = &pc->pc_md.stats;
326
327                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
328                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
329                     "nasts", CTLFLAG_RD, &pcs->pcs_nasts,
330                     "Number of IPI_AST interrupts");
331
332                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
333                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
334                     "nclks", CTLFLAG_RD, &pcs->pcs_nclks,
335                     "Number of clock interrupts");
336
337                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
338                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
339                     "nextints", CTLFLAG_RD, &pcs->pcs_nextints,
340                     "Number of ExtINT interrupts");
341
342                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
343                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
344                     "nhighfps", CTLFLAG_RD, &pcs->pcs_nhighfps,
345                     "Number of IPI_HIGH_FP interrupts");
346
347                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
348                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
349                     "nhwints", CTLFLAG_RD, &pcs->pcs_nhwints,
350                     "Number of hardware (device) interrupts");
351
352                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
353                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
354                     "npreempts", CTLFLAG_RD, &pcs->pcs_npreempts,
355                     "Number of IPI_PREEMPT interrupts");
356
357                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
358                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
359                     "nrdvs", CTLFLAG_RD, &pcs->pcs_nrdvs,
360                     "Number of IPI_RENDEZVOUS interrupts");
361
362                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
363                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
364                     "nstops", CTLFLAG_RD, &pcs->pcs_nstops,
365                     "Number of IPI_STOP interrupts");
366
367                 SYSCTL_ADD_ULONG(&pc->pc_md.sysctl_ctx,
368                     SYSCTL_CHILDREN(pc->pc_md.sysctl_tree), OID_AUTO,
369                     "nstrays", CTLFLAG_RD, &pcs->pcs_nstrays,
370                     "Number of stray vectors");
371         }
372 }
373 SYSINIT(cpu_startup, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL);
374
375 void
376 cpu_boot(int howto)
377 {
378
379         efi_reset_system();
380 }
381
382 void
383 cpu_flush_dcache(void *ptr, size_t len)
384 {
385         vm_offset_t lim, va;
386
387         va = (uintptr_t)ptr & ~31;
388         lim = (uintptr_t)ptr + len;
389         while (va < lim) {
390                 ia64_fc(va);
391                 va += 32;
392         }
393
394         ia64_srlz_d();
395 }
396
397 /* Get current clock frequency for the given cpu id. */
398 int
399 cpu_est_clockrate(int cpu_id, uint64_t *rate)
400 {
401
402         if (pcpu_find(cpu_id) == NULL || rate == NULL)
403                 return (EINVAL);
404         *rate = (u_long)cpu_freq * 1000000ul;
405         return (0);
406 }
407
408 void
409 cpu_halt()
410 {
411
412         efi_reset_system();
413 }
414
415 void
416 cpu_idle(int busy)
417 {
418         struct ia64_pal_result res;
419
420         if (cpu_idle_hook != NULL)
421                 (*cpu_idle_hook)();
422         else
423                 res = ia64_call_pal_static(PAL_HALT_LIGHT, 0, 0, 0);
424 }
425
426 int
427 cpu_idle_wakeup(int cpu)
428 {
429
430         return (0);
431 }
432
433 void
434 cpu_reset()
435 {
436
437         cpu_boot(0);
438 }
439
440 void
441 cpu_switch(struct thread *old, struct thread *new, struct mtx *mtx)
442 {
443         struct pcb *oldpcb, *newpcb;
444
445         oldpcb = old->td_pcb;
446 #ifdef COMPAT_IA32
447         ia32_savectx(oldpcb);
448 #endif
449         if (PCPU_GET(fpcurthread) == old)
450                 old->td_frame->tf_special.psr |= IA64_PSR_DFH;
451         if (!savectx(oldpcb)) {
452                 old->td_lock = mtx;
453 #if defined(SCHED_ULE) && defined(SMP)
454                 /* td_lock is volatile */
455                 while (new->td_lock == &blocked_lock)
456                         ;
457 #endif
458                 newpcb = new->td_pcb;
459                 oldpcb->pcb_current_pmap =
460                     pmap_switch(newpcb->pcb_current_pmap);
461                 PCPU_SET(curthread, new);
462 #ifdef COMPAT_IA32
463                 ia32_restorectx(newpcb);
464 #endif
465                 if (PCPU_GET(fpcurthread) == new)
466                         new->td_frame->tf_special.psr &= ~IA64_PSR_DFH;
467                 restorectx(newpcb);
468                 /* We should not get here. */
469                 panic("cpu_switch: restorectx() returned");
470                 /* NOTREACHED */
471         }
472 }
473
474 void
475 cpu_throw(struct thread *old __unused, struct thread *new)
476 {
477         struct pcb *newpcb;
478
479         newpcb = new->td_pcb;
480         (void)pmap_switch(newpcb->pcb_current_pmap);
481         PCPU_SET(curthread, new);
482 #ifdef COMPAT_IA32
483         ia32_restorectx(newpcb);
484 #endif
485         restorectx(newpcb);
486         /* We should not get here. */
487         panic("cpu_throw: restorectx() returned");
488         /* NOTREACHED */
489 }
490
491 void
492 cpu_pcpu_init(struct pcpu *pcpu, int cpuid, size_t size)
493 {
494
495         /*
496          * Set pc_acpi_id to "uninitialized".
497          * See sys/dev/acpica/acpi_cpu.c
498          */
499         pcpu->pc_acpi_id = 0xffffffff;
500 }
501
502 void
503 spinlock_enter(void)
504 {
505         struct thread *td;
506
507         td = curthread;
508         if (td->td_md.md_spinlock_count == 0)
509                 td->td_md.md_saved_intr = intr_disable();
510         td->td_md.md_spinlock_count++;
511         critical_enter();
512 }
513
514 void
515 spinlock_exit(void)
516 {
517         struct thread *td;
518
519         td = curthread;
520         critical_exit();
521         td->td_md.md_spinlock_count--;
522         if (td->td_md.md_spinlock_count == 0)
523                 intr_restore(td->td_md.md_saved_intr);
524 }
525
526 void
527 map_vhpt(uintptr_t vhpt)
528 {
529         pt_entry_t pte;
530         uint64_t psr;
531
532         pte = PTE_PRESENT | PTE_MA_WB | PTE_ACCESSED | PTE_DIRTY |
533             PTE_PL_KERN | PTE_AR_RW;
534         pte |= vhpt & PTE_PPN_MASK;
535
536         __asm __volatile("ptr.d %0,%1" :: "r"(vhpt),
537             "r"(IA64_ID_PAGE_SHIFT<<2));
538
539         __asm __volatile("mov   %0=psr" : "=r"(psr));
540         __asm __volatile("rsm   psr.ic|psr.i");
541         ia64_srlz_i();
542         ia64_set_ifa(vhpt);
543         ia64_set_itir(IA64_ID_PAGE_SHIFT << 2);
544         ia64_srlz_d();
545         __asm __volatile("itr.d dtr[%0]=%1" :: "r"(2), "r"(pte));
546         __asm __volatile("mov   psr.l=%0" :: "r" (psr));
547         ia64_srlz_i();
548 }
549
550 void
551 map_pal_code(void)
552 {
553         pt_entry_t pte;
554         uint64_t psr;
555
556         if (ia64_pal_base == 0)
557                 return;
558
559         pte = PTE_PRESENT | PTE_MA_WB | PTE_ACCESSED | PTE_DIRTY |
560             PTE_PL_KERN | PTE_AR_RWX;
561         pte |= ia64_pal_base & PTE_PPN_MASK;
562
563         __asm __volatile("ptr.d %0,%1; ptr.i %0,%1" ::
564             "r"(IA64_PHYS_TO_RR7(ia64_pal_base)), "r"(IA64_ID_PAGE_SHIFT<<2));
565
566         __asm __volatile("mov   %0=psr" : "=r"(psr));
567         __asm __volatile("rsm   psr.ic|psr.i");
568         ia64_srlz_i();
569         ia64_set_ifa(IA64_PHYS_TO_RR7(ia64_pal_base));
570         ia64_set_itir(IA64_ID_PAGE_SHIFT << 2);
571         ia64_srlz_d();
572         __asm __volatile("itr.d dtr[%0]=%1" :: "r"(1), "r"(pte));
573         ia64_srlz_d();
574         __asm __volatile("itr.i itr[%0]=%1" :: "r"(1), "r"(pte));
575         __asm __volatile("mov   psr.l=%0" :: "r" (psr));
576         ia64_srlz_i();
577 }
578
579 void
580 map_gateway_page(void)
581 {
582         pt_entry_t pte;
583         uint64_t psr;
584
585         pte = PTE_PRESENT | PTE_MA_WB | PTE_ACCESSED | PTE_DIRTY |
586             PTE_PL_KERN | PTE_AR_X_RX;
587         pte |= (uint64_t)ia64_gateway_page & PTE_PPN_MASK;
588
589         __asm __volatile("ptr.d %0,%1; ptr.i %0,%1" ::
590             "r"(VM_MAX_ADDRESS), "r"(PAGE_SHIFT << 2));
591
592         __asm __volatile("mov   %0=psr" : "=r"(psr));
593         __asm __volatile("rsm   psr.ic|psr.i");
594         ia64_srlz_i();
595         ia64_set_ifa(VM_MAX_ADDRESS);
596         ia64_set_itir(PAGE_SHIFT << 2);
597         ia64_srlz_d();
598         __asm __volatile("itr.d dtr[%0]=%1" :: "r"(3), "r"(pte));
599         ia64_srlz_d();
600         __asm __volatile("itr.i itr[%0]=%1" :: "r"(3), "r"(pte));
601         __asm __volatile("mov   psr.l=%0" :: "r" (psr));
602         ia64_srlz_i();
603
604         /* Expose the mapping to userland in ar.k5 */
605         ia64_set_k5(VM_MAX_ADDRESS);
606 }
607
608 static u_int
609 freq_ratio(u_long base, u_long ratio)
610 {
611         u_long f;
612
613         f = (base * (ratio >> 32)) / (ratio & 0xfffffffful);
614         return ((f + 500000) / 1000000);
615 }
616
617 static void
618 calculate_frequencies(void)
619 {
620         struct ia64_sal_result sal;
621         struct ia64_pal_result pal;
622
623         sal = ia64_sal_entry(SAL_FREQ_BASE, 0, 0, 0, 0, 0, 0, 0);
624         pal = ia64_call_pal_static(PAL_FREQ_RATIOS, 0, 0, 0);
625
626         if (sal.sal_status == 0 && pal.pal_status == 0) {
627                 if (bootverbose) {
628                         printf("Platform clock frequency %ld Hz\n",
629                                sal.sal_result[0]);
630                         printf("Processor ratio %ld/%ld, Bus ratio %ld/%ld, "
631                                "ITC ratio %ld/%ld\n",
632                                pal.pal_result[0] >> 32,
633                                pal.pal_result[0] & ((1L << 32) - 1),
634                                pal.pal_result[1] >> 32,
635                                pal.pal_result[1] & ((1L << 32) - 1),
636                                pal.pal_result[2] >> 32,
637                                pal.pal_result[2] & ((1L << 32) - 1));
638                 }
639                 cpu_freq = freq_ratio(sal.sal_result[0], pal.pal_result[0]);
640                 bus_freq = freq_ratio(sal.sal_result[0], pal.pal_result[1]);
641                 itc_freq = freq_ratio(sal.sal_result[0], pal.pal_result[2]);
642         }
643 }
644
645 struct ia64_init_return
646 ia64_init(void)
647 {
648         struct ia64_init_return ret;
649         int phys_avail_cnt;
650         vm_offset_t kernstart, kernend;
651         vm_offset_t kernstartpfn, kernendpfn, pfn0, pfn1;
652         char *p;
653         struct efi_md *md;
654         int metadata_missing;
655
656         /* NO OUTPUT ALLOWED UNTIL FURTHER NOTICE */
657
658         /*
659          * TODO: Disable interrupts, floating point etc.
660          * Maybe flush cache and tlb
661          */
662         ia64_set_fpsr(IA64_FPSR_DEFAULT);
663
664         /*
665          * TODO: Get critical system information (if possible, from the
666          * information provided by the boot program).
667          */
668
669         /*
670          * pa_bootinfo is the physical address of the bootinfo block as
671          * passed to us by the loader and set in locore.s.
672          */
673         bootinfo = *(struct bootinfo *)(IA64_PHYS_TO_RR7(pa_bootinfo));
674
675         if (bootinfo.bi_magic != BOOTINFO_MAGIC || bootinfo.bi_version != 1) {
676                 bzero(&bootinfo, sizeof(bootinfo));
677                 bootinfo.bi_kernend = (vm_offset_t) round_page(_end);
678         }
679
680         /*
681          * Look for the I/O ports first - we need them for console
682          * probing.
683          */
684         for (md = efi_md_first(); md != NULL; md = efi_md_next(md)) {
685                 switch (md->md_type) {
686                 case EFI_MD_TYPE_IOPORT:
687                         ia64_port_base = IA64_PHYS_TO_RR6(md->md_phys);
688                         break;
689                 case EFI_MD_TYPE_PALCODE:
690                         ia64_pal_base = md->md_phys;
691                         break;
692                 }
693         }
694
695         metadata_missing = 0;
696         if (bootinfo.bi_modulep)
697                 preload_metadata = (caddr_t)bootinfo.bi_modulep;
698         else
699                 metadata_missing = 1;
700
701         if (envmode == 0 && bootinfo.bi_envp)
702                 kern_envp = (caddr_t)bootinfo.bi_envp;
703         else
704                 kern_envp = static_env;
705
706         /*
707          * Look at arguments passed to us and compute boothowto.
708          */
709         boothowto = bootinfo.bi_boothowto;
710
711         /*
712          * Catch case of boot_verbose set in environment.
713          */
714         if ((p = getenv("boot_verbose")) != NULL) {
715                 if (strcmp(p, "yes") == 0 || strcmp(p, "YES") == 0) {
716                         boothowto |= RB_VERBOSE;
717                 }
718                 freeenv(p);
719         }
720
721         if (boothowto & RB_VERBOSE)
722                 bootverbose = 1;
723
724         /*
725          * Find the beginning and end of the kernel.
726          */
727         kernstart = trunc_page(kernel_text);
728 #ifdef DDB
729         ksym_start = bootinfo.bi_symtab;
730         ksym_end = bootinfo.bi_esymtab;
731         kernend = (vm_offset_t)round_page(ksym_end);
732 #else
733         kernend = (vm_offset_t)round_page(_end);
734 #endif
735         /* But if the bootstrap tells us otherwise, believe it! */
736         if (bootinfo.bi_kernend)
737                 kernend = round_page(bootinfo.bi_kernend);
738
739         /*
740          * Setup the PCPU data for the bootstrap processor. It is needed
741          * by printf(). Also, since printf() has critical sections, we
742          * need to initialize at least pc_curthread.
743          */
744         pcpup = &pcpu0;
745         ia64_set_k4((u_int64_t)pcpup);
746         pcpu_init(pcpup, 0, sizeof(pcpu0));
747         dpcpu_init((void *)kernend, 0);
748         kernend += DPCPU_SIZE;
749         PCPU_SET(curthread, &thread0);
750
751         /*
752          * Initialize the console before we print anything out.
753          */
754         cninit();
755
756         /* OUTPUT NOW ALLOWED */
757
758         if (ia64_pal_base != 0) {
759                 ia64_pal_base &= ~IA64_ID_PAGE_MASK;
760                 /*
761                  * We use a TR to map the first 256M of memory - this might
762                  * cover the palcode too.
763                  */
764                 if (ia64_pal_base == 0)
765                         printf("PAL code mapped by the kernel's TR\n");
766         } else
767                 printf("PAL code not found\n");
768
769         /*
770          * Wire things up so we can call the firmware.
771          */
772         map_pal_code();
773         efi_boot_minimal(bootinfo.bi_systab);
774         ia64_sal_init();
775         calculate_frequencies();
776
777         if (metadata_missing)
778                 printf("WARNING: loader(8) metadata is missing!\n");
779
780         /* Get FPSWA interface */
781         fpswa_iface = (bootinfo.bi_fpswa == 0) ? NULL :
782             (struct fpswa_iface *)IA64_PHYS_TO_RR7(bootinfo.bi_fpswa);
783
784         /* Init basic tunables, including hz */
785         init_param1();
786
787         p = getenv("kernelname");
788         if (p) {
789                 strncpy(kernelname, p, sizeof(kernelname) - 1);
790                 freeenv(p);
791         }
792
793         kernstartpfn = atop(IA64_RR_MASK(kernstart));
794         kernendpfn = atop(IA64_RR_MASK(kernend));
795
796         /*
797          * Size the memory regions and load phys_avail[] with the results.
798          */
799
800         /*
801          * Find out how much memory is available, by looking at
802          * the memory descriptors.
803          */
804
805 #ifdef DEBUG_MD
806         printf("Memory descriptor count: %d\n", mdcount);
807 #endif
808
809         phys_avail_cnt = 0;
810         for (md = efi_md_first(); md != NULL; md = efi_md_next(md)) {
811 #ifdef DEBUG_MD
812                 printf("MD %p: type %d pa 0x%lx cnt 0x%lx\n", md,
813                     md->md_type, md->md_phys, md->md_pages);
814 #endif
815
816                 pfn0 = ia64_btop(round_page(md->md_phys));
817                 pfn1 = ia64_btop(trunc_page(md->md_phys + md->md_pages * 4096));
818                 if (pfn1 <= pfn0)
819                         continue;
820
821                 if (md->md_type != EFI_MD_TYPE_FREE)
822                         continue;
823
824                 /*
825                  * We have a memory descriptor that describes conventional
826                  * memory that is for general use. We must determine if the
827                  * loader has put the kernel in this region.
828                  */
829                 physmem += (pfn1 - pfn0);
830                 if (pfn0 <= kernendpfn && kernstartpfn <= pfn1) {
831                         /*
832                          * Must compute the location of the kernel
833                          * within the segment.
834                          */
835 #ifdef DEBUG_MD
836                         printf("Descriptor %p contains kernel\n", mp);
837 #endif
838                         if (pfn0 < kernstartpfn) {
839                                 /*
840                                  * There is a chunk before the kernel.
841                                  */
842 #ifdef DEBUG_MD
843                                 printf("Loading chunk before kernel: "
844                                        "0x%lx / 0x%lx\n", pfn0, kernstartpfn);
845 #endif
846                                 phys_avail[phys_avail_cnt] = ia64_ptob(pfn0);
847                                 phys_avail[phys_avail_cnt+1] = ia64_ptob(kernstartpfn);
848                                 phys_avail_cnt += 2;
849                         }
850                         if (kernendpfn < pfn1) {
851                                 /*
852                                  * There is a chunk after the kernel.
853                                  */
854 #ifdef DEBUG_MD
855                                 printf("Loading chunk after kernel: "
856                                        "0x%lx / 0x%lx\n", kernendpfn, pfn1);
857 #endif
858                                 phys_avail[phys_avail_cnt] = ia64_ptob(kernendpfn);
859                                 phys_avail[phys_avail_cnt+1] = ia64_ptob(pfn1);
860                                 phys_avail_cnt += 2;
861                         }
862                 } else {
863                         /*
864                          * Just load this cluster as one chunk.
865                          */
866 #ifdef DEBUG_MD
867                         printf("Loading descriptor %d: 0x%lx / 0x%lx\n", i,
868                                pfn0, pfn1);
869 #endif
870                         phys_avail[phys_avail_cnt] = ia64_ptob(pfn0);
871                         phys_avail[phys_avail_cnt+1] = ia64_ptob(pfn1);
872                         phys_avail_cnt += 2;
873                         
874                 }
875         }
876         phys_avail[phys_avail_cnt] = 0;
877
878         Maxmem = physmem;
879         init_param2(physmem);
880
881         /*
882          * Initialize error message buffer (at end of core).
883          */
884         msgbufp = (struct msgbuf *)pmap_steal_memory(MSGBUF_SIZE);
885         msgbufinit(msgbufp, MSGBUF_SIZE);
886
887         proc_linkup0(&proc0, &thread0);
888         /*
889          * Init mapping for kernel stack for proc 0
890          */
891         thread0.td_kstack = pmap_steal_memory(KSTACK_PAGES * PAGE_SIZE);
892         thread0.td_kstack_pages = KSTACK_PAGES;
893
894         mutex_init();
895
896         /*
897          * Initialize the rest of proc 0's PCB.
898          *
899          * Set the kernel sp, reserving space for an (empty) trapframe,
900          * and make proc0's trapframe pointer point to it for sanity.
901          * Initialise proc0's backing store to start after u area.
902          */
903         cpu_thread_alloc(&thread0);
904         thread0.td_frame->tf_flags = FRAME_SYSCALL;
905         thread0.td_pcb->pcb_special.sp =
906             (u_int64_t)thread0.td_frame - 16;
907         thread0.td_pcb->pcb_special.bspstore = thread0.td_kstack;
908
909         /*
910          * Initialize the virtual memory system.
911          */
912         pmap_bootstrap();
913
914         /*
915          * Initialize debuggers, and break into them if appropriate.
916          */
917         kdb_init();
918
919 #ifdef KDB
920         if (boothowto & RB_KDB)
921                 kdb_enter(KDB_WHY_BOOTFLAGS,
922                     "Boot flags requested debugger\n");
923 #endif
924
925         ia64_set_tpr(0);
926         ia64_srlz_d();
927
928         ret.bspstore = thread0.td_pcb->pcb_special.bspstore;
929         ret.sp = thread0.td_pcb->pcb_special.sp;
930         return (ret);
931 }
932
933 void *
934 ia64_ioport_address(u_int port)
935 {
936         uint64_t addr;
937
938         addr = (port > 0xffff) ? IA64_PHYS_TO_RR6((uint64_t)port) :
939             ia64_port_base | ((port & 0xfffc) << 10) | (port & 0xFFF);
940         return ((void *)addr);
941 }
942
943 uint64_t
944 ia64_get_hcdp(void)
945 {
946
947         return (bootinfo.bi_hcdp);
948 }
949
950 void
951 bzero(void *buf, size_t len)
952 {
953         caddr_t p = buf;
954
955         while (((vm_offset_t) p & (sizeof(u_long) - 1)) && len) {
956                 *p++ = 0;
957                 len--;
958         }
959         while (len >= sizeof(u_long) * 8) {
960                 *(u_long*) p = 0;
961                 *((u_long*) p + 1) = 0;
962                 *((u_long*) p + 2) = 0;
963                 *((u_long*) p + 3) = 0;
964                 len -= sizeof(u_long) * 8;
965                 *((u_long*) p + 4) = 0;
966                 *((u_long*) p + 5) = 0;
967                 *((u_long*) p + 6) = 0;
968                 *((u_long*) p + 7) = 0;
969                 p += sizeof(u_long) * 8;
970         }
971         while (len >= sizeof(u_long)) {
972                 *(u_long*) p = 0;
973                 len -= sizeof(u_long);
974                 p += sizeof(u_long);
975         }
976         while (len) {
977                 *p++ = 0;
978                 len--;
979         }
980 }
981
982 u_int
983 ia64_itc_freq(void)
984 {
985
986         return (itc_freq);
987 }
988
989 void
990 DELAY(int n)
991 {
992         u_int64_t start, end, now;
993
994         sched_pin();
995
996         start = ia64_get_itc();
997         end = start + itc_freq * n;
998         /* printf("DELAY from 0x%lx to 0x%lx\n", start, end); */
999         do {
1000                 now = ia64_get_itc();
1001         } while (now < end || (now > start && end < start));
1002
1003         sched_unpin();
1004 }
1005
1006 /*
1007  * Send an interrupt (signal) to a process.
1008  */
1009 void
1010 sendsig(sig_t catcher, ksiginfo_t *ksi, sigset_t *mask)
1011 {
1012         struct proc *p;
1013         struct thread *td;
1014         struct trapframe *tf;
1015         struct sigacts *psp;
1016         struct sigframe sf, *sfp;
1017         u_int64_t sbs, sp;
1018         int oonstack;
1019         int sig;
1020         u_long code;
1021
1022         td = curthread;
1023         p = td->td_proc;
1024         PROC_LOCK_ASSERT(p, MA_OWNED);
1025         sig = ksi->ksi_signo;
1026         code = ksi->ksi_code;
1027         psp = p->p_sigacts;
1028         mtx_assert(&psp->ps_mtx, MA_OWNED);
1029         tf = td->td_frame;
1030         sp = tf->tf_special.sp;
1031         oonstack = sigonstack(sp);
1032         sbs = 0;
1033
1034         /* save user context */
1035         bzero(&sf, sizeof(struct sigframe));
1036         sf.sf_uc.uc_sigmask = *mask;
1037         sf.sf_uc.uc_stack = td->td_sigstk;
1038         sf.sf_uc.uc_stack.ss_flags = (td->td_pflags & TDP_ALTSTACK)
1039             ? ((oonstack) ? SS_ONSTACK : 0) : SS_DISABLE;
1040
1041         /*
1042          * Allocate and validate space for the signal handler
1043          * context. Note that if the stack is in P0 space, the
1044          * call to grow() is a nop, and the useracc() check
1045          * will fail if the process has not already allocated
1046          * the space with a `brk'.
1047          */
1048         if ((td->td_pflags & TDP_ALTSTACK) != 0 && !oonstack &&
1049             SIGISMEMBER(psp->ps_sigonstack, sig)) {
1050                 sbs = (u_int64_t)td->td_sigstk.ss_sp;
1051                 sbs = (sbs + 15) & ~15;
1052                 sfp = (struct sigframe *)(sbs + td->td_sigstk.ss_size);
1053 #if defined(COMPAT_43)
1054                 td->td_sigstk.ss_flags |= SS_ONSTACK;
1055 #endif
1056         } else
1057                 sfp = (struct sigframe *)sp;
1058         sfp = (struct sigframe *)((u_int64_t)(sfp - 1) & ~15);
1059
1060         /* Fill in the siginfo structure for POSIX handlers. */
1061         if (SIGISMEMBER(psp->ps_siginfo, sig)) {
1062                 sf.sf_si = ksi->ksi_info;
1063                 sf.sf_si.si_signo = sig;
1064                 /*
1065                  * XXX this shouldn't be here after code in trap.c
1066                  * is fixed
1067                  */
1068                 sf.sf_si.si_addr = (void*)tf->tf_special.ifa;
1069                 code = (u_int64_t)&sfp->sf_si;
1070         }
1071
1072         mtx_unlock(&psp->ps_mtx);
1073         PROC_UNLOCK(p);
1074
1075         get_mcontext(td, &sf.sf_uc.uc_mcontext, 0);
1076
1077         /* Copy the frame out to userland. */
1078         if (copyout(&sf, sfp, sizeof(sf)) != 0) {
1079                 /*
1080                  * Process has trashed its stack; give it an illegal
1081                  * instruction to halt it in its tracks.
1082                  */
1083                 PROC_LOCK(p);
1084                 sigexit(td, SIGILL);
1085                 return;
1086         }
1087
1088         if ((tf->tf_flags & FRAME_SYSCALL) == 0) {
1089                 tf->tf_special.psr &= ~IA64_PSR_RI;
1090                 tf->tf_special.iip = ia64_get_k5() +
1091                     ((uint64_t)break_sigtramp - (uint64_t)ia64_gateway_page);
1092         } else
1093                 tf->tf_special.iip = ia64_get_k5() +
1094                     ((uint64_t)epc_sigtramp - (uint64_t)ia64_gateway_page);
1095
1096         /*
1097          * Setup the trapframe to return to the signal trampoline. We pass
1098          * information to the trampoline in the following registers:
1099          *
1100          *      gp      new backing store or NULL
1101          *      r8      signal number
1102          *      r9      signal code or siginfo pointer
1103          *      r10     signal handler (function descriptor)
1104          */
1105         tf->tf_special.sp = (u_int64_t)sfp - 16;
1106         tf->tf_special.gp = sbs;
1107         tf->tf_special.bspstore = sf.sf_uc.uc_mcontext.mc_special.bspstore;
1108         tf->tf_special.ndirty = 0;
1109         tf->tf_special.rnat = sf.sf_uc.uc_mcontext.mc_special.rnat;
1110         tf->tf_scratch.gr8 = sig;
1111         tf->tf_scratch.gr9 = code;
1112         tf->tf_scratch.gr10 = (u_int64_t)catcher;
1113
1114         PROC_LOCK(p);
1115         mtx_lock(&psp->ps_mtx);
1116 }
1117
1118 /*
1119  * System call to cleanup state after a signal
1120  * has been taken.  Reset signal mask and
1121  * stack state from context left by sendsig (above).
1122  * Return to previous pc and psl as specified by
1123  * context left by sendsig. Check carefully to
1124  * make sure that the user has not modified the
1125  * state to gain improper privileges.
1126  *
1127  * MPSAFE
1128  */
1129 int
1130 sigreturn(struct thread *td,
1131         struct sigreturn_args /* {
1132                 ucontext_t *sigcntxp;
1133         } */ *uap)
1134 {
1135         ucontext_t uc;
1136         struct trapframe *tf;
1137         struct pcb *pcb;
1138
1139         tf = td->td_frame;
1140         pcb = td->td_pcb;
1141
1142         /*
1143          * Fetch the entire context structure at once for speed.
1144          * We don't use a normal argument to simplify RSE handling.
1145          */
1146         if (copyin(uap->sigcntxp, (caddr_t)&uc, sizeof(uc)))
1147                 return (EFAULT);
1148
1149         set_mcontext(td, &uc.uc_mcontext);
1150
1151 #if defined(COMPAT_43)
1152         if (sigonstack(tf->tf_special.sp))
1153                 td->td_sigstk.ss_flags |= SS_ONSTACK;
1154         else
1155                 td->td_sigstk.ss_flags &= ~SS_ONSTACK;
1156 #endif
1157         kern_sigprocmask(td, SIG_SETMASK, &uc.uc_sigmask, NULL, 0);
1158
1159         return (EJUSTRETURN);
1160 }
1161
1162 #ifdef COMPAT_FREEBSD4
1163 int
1164 freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap)
1165 {
1166
1167         return sigreturn(td, (struct sigreturn_args *)uap);
1168 }
1169 #endif
1170
1171 /*
1172  * Construct a PCB from a trapframe. This is called from kdb_trap() where
1173  * we want to start a backtrace from the function that caused us to enter
1174  * the debugger. We have the context in the trapframe, but base the trace
1175  * on the PCB. The PCB doesn't have to be perfect, as long as it contains
1176  * enough for a backtrace.
1177  */
1178 void
1179 makectx(struct trapframe *tf, struct pcb *pcb)
1180 {
1181
1182         pcb->pcb_special = tf->tf_special;
1183         pcb->pcb_special.__spare = ~0UL;        /* XXX see unwind.c */
1184         save_callee_saved(&pcb->pcb_preserved);
1185         save_callee_saved_fp(&pcb->pcb_preserved_fp);
1186 }
1187
1188 int
1189 ia64_flush_dirty(struct thread *td, struct _special *r)
1190 {
1191         struct iovec iov;
1192         struct uio uio;
1193         uint64_t bspst, kstk, rnat;
1194         int error, locked;
1195
1196         if (r->ndirty == 0)
1197                 return (0);
1198
1199         kstk = td->td_kstack + (r->bspstore & 0x1ffUL);
1200         if (td == curthread) {
1201                 __asm __volatile("mov   ar.rsc=0;;");
1202                 __asm __volatile("mov   %0=ar.bspstore" : "=r"(bspst));
1203                 /* Make sure we have all the user registers written out. */
1204                 if (bspst - kstk < r->ndirty) {
1205                         __asm __volatile("flushrs;;");
1206                         __asm __volatile("mov   %0=ar.bspstore" : "=r"(bspst));
1207                 }
1208                 __asm __volatile("mov   %0=ar.rnat;;" : "=r"(rnat));
1209                 __asm __volatile("mov   ar.rsc=3");
1210                 error = copyout((void*)kstk, (void*)r->bspstore, r->ndirty);
1211                 kstk += r->ndirty;
1212                 r->rnat = (bspst > kstk && (bspst & 0x1ffL) < (kstk & 0x1ffL))
1213                     ? *(uint64_t*)(kstk | 0x1f8L) : rnat;
1214         } else {
1215                 locked = PROC_LOCKED(td->td_proc);
1216                 if (!locked)
1217                         PHOLD(td->td_proc);
1218                 iov.iov_base = (void*)(uintptr_t)kstk;
1219                 iov.iov_len = r->ndirty;
1220                 uio.uio_iov = &iov;
1221                 uio.uio_iovcnt = 1;
1222                 uio.uio_offset = r->bspstore;
1223                 uio.uio_resid = r->ndirty;
1224                 uio.uio_segflg = UIO_SYSSPACE;
1225                 uio.uio_rw = UIO_WRITE;
1226                 uio.uio_td = td;
1227                 error = proc_rwmem(td->td_proc, &uio);
1228                 /*
1229                  * XXX proc_rwmem() doesn't currently return ENOSPC,
1230                  * so I think it can bogusly return 0. Neither do
1231                  * we allow short writes.
1232                  */
1233                 if (uio.uio_resid != 0 && error == 0)
1234                         error = ENOSPC;
1235                 if (!locked)
1236                         PRELE(td->td_proc);
1237         }
1238
1239         r->bspstore += r->ndirty;
1240         r->ndirty = 0;
1241         return (error);
1242 }
1243
1244 int
1245 get_mcontext(struct thread *td, mcontext_t *mc, int flags)
1246 {
1247         struct trapframe *tf;
1248         int error;
1249
1250         tf = td->td_frame;
1251         bzero(mc, sizeof(*mc));
1252         mc->mc_special = tf->tf_special;
1253         error = ia64_flush_dirty(td, &mc->mc_special);
1254         if (tf->tf_flags & FRAME_SYSCALL) {
1255                 mc->mc_flags |= _MC_FLAGS_SYSCALL_CONTEXT;
1256                 mc->mc_scratch = tf->tf_scratch;
1257                 if (flags & GET_MC_CLEAR_RET) {
1258                         mc->mc_scratch.gr8 = 0;
1259                         mc->mc_scratch.gr9 = 0;
1260                         mc->mc_scratch.gr10 = 0;
1261                         mc->mc_scratch.gr11 = 0;
1262                 }
1263         } else {
1264                 mc->mc_flags |= _MC_FLAGS_ASYNC_CONTEXT;
1265                 mc->mc_scratch = tf->tf_scratch;
1266                 mc->mc_scratch_fp = tf->tf_scratch_fp;
1267                 /*
1268                  * XXX If the thread never used the high FP registers, we
1269                  * probably shouldn't waste time saving them.
1270                  */
1271                 ia64_highfp_save(td);
1272                 mc->mc_flags |= _MC_FLAGS_HIGHFP_VALID;
1273                 mc->mc_high_fp = td->td_pcb->pcb_high_fp;
1274         }
1275         save_callee_saved(&mc->mc_preserved);
1276         save_callee_saved_fp(&mc->mc_preserved_fp);
1277         return (error);
1278 }
1279
1280 int
1281 set_mcontext(struct thread *td, const mcontext_t *mc)
1282 {
1283         struct _special s;
1284         struct trapframe *tf;
1285         uint64_t psrmask;
1286
1287         tf = td->td_frame;
1288
1289         KASSERT((tf->tf_special.ndirty & ~PAGE_MASK) == 0,
1290             ("Whoa there! We have more than 8KB of dirty registers!"));
1291
1292         s = mc->mc_special;
1293         /*
1294          * Only copy the user mask and the restart instruction bit from
1295          * the new context.
1296          */
1297         psrmask = IA64_PSR_BE | IA64_PSR_UP | IA64_PSR_AC | IA64_PSR_MFL |
1298             IA64_PSR_MFH | IA64_PSR_RI;
1299         s.psr = (tf->tf_special.psr & ~psrmask) | (s.psr & psrmask);
1300         /* We don't have any dirty registers of the new context. */
1301         s.ndirty = 0;
1302         if (mc->mc_flags & _MC_FLAGS_ASYNC_CONTEXT) {
1303                 /*
1304                  * We can get an async context passed to us while we
1305                  * entered the kernel through a syscall: sigreturn(2)
1306                  * takes contexts that could previously be the result of
1307                  * a trap or interrupt.
1308                  * Hence, we cannot assert that the trapframe is not
1309                  * a syscall frame, but we can assert that it's at
1310                  * least an expected syscall.
1311                  */
1312                 if (tf->tf_flags & FRAME_SYSCALL) {
1313                         KASSERT(tf->tf_scratch.gr15 == SYS_sigreturn, ("foo"));
1314                         tf->tf_flags &= ~FRAME_SYSCALL;
1315                 }
1316                 tf->tf_scratch = mc->mc_scratch;
1317                 tf->tf_scratch_fp = mc->mc_scratch_fp;
1318                 if (mc->mc_flags & _MC_FLAGS_HIGHFP_VALID)
1319                         td->td_pcb->pcb_high_fp = mc->mc_high_fp;
1320         } else {
1321                 KASSERT((tf->tf_flags & FRAME_SYSCALL) != 0, ("foo"));
1322                 if ((mc->mc_flags & _MC_FLAGS_SYSCALL_CONTEXT) == 0) {
1323                         s.cfm = tf->tf_special.cfm;
1324                         s.iip = tf->tf_special.iip;
1325                         tf->tf_scratch.gr15 = 0;        /* Clear syscall nr. */
1326                 } else
1327                         tf->tf_scratch = mc->mc_scratch;
1328         }
1329         tf->tf_special = s;
1330         restore_callee_saved(&mc->mc_preserved);
1331         restore_callee_saved_fp(&mc->mc_preserved_fp);
1332
1333         return (0);
1334 }
1335
1336 /*
1337  * Clear registers on exec.
1338  */
1339 void
1340 exec_setregs(struct thread *td, u_long entry, u_long stack, u_long ps_strings)
1341 {
1342         struct trapframe *tf;
1343         uint64_t *ksttop, *kst;
1344
1345         tf = td->td_frame;
1346         ksttop = (uint64_t*)(td->td_kstack + tf->tf_special.ndirty +
1347             (tf->tf_special.bspstore & 0x1ffUL));
1348
1349         /*
1350          * We can ignore up to 8KB of dirty registers by masking off the
1351          * lower 13 bits in exception_restore() or epc_syscall(). This
1352          * should be enough for a couple of years, but if there are more
1353          * than 8KB of dirty registers, we lose track of the bottom of
1354          * the kernel stack. The solution is to copy the active part of
1355          * the kernel stack down 1 page (or 2, but not more than that)
1356          * so that we always have less than 8KB of dirty registers.
1357          */
1358         KASSERT((tf->tf_special.ndirty & ~PAGE_MASK) == 0,
1359             ("Whoa there! We have more than 8KB of dirty registers!"));
1360
1361         bzero(&tf->tf_special, sizeof(tf->tf_special));
1362         if ((tf->tf_flags & FRAME_SYSCALL) == 0) {      /* break syscalls. */
1363                 bzero(&tf->tf_scratch, sizeof(tf->tf_scratch));
1364                 bzero(&tf->tf_scratch_fp, sizeof(tf->tf_scratch_fp));
1365                 tf->tf_special.cfm = (1UL<<63) | (3UL<<7) | 3UL;
1366                 tf->tf_special.bspstore = IA64_BACKINGSTORE;
1367                 /*
1368                  * Copy the arguments onto the kernel register stack so that
1369                  * they get loaded by the loadrs instruction. Skip over the
1370                  * NaT collection points.
1371                  */
1372                 kst = ksttop - 1;
1373                 if (((uintptr_t)kst & 0x1ff) == 0x1f8)
1374                         *kst-- = 0;
1375                 *kst-- = 0;
1376                 if (((uintptr_t)kst & 0x1ff) == 0x1f8)
1377                         *kst-- = 0;
1378                 *kst-- = ps_strings;
1379                 if (((uintptr_t)kst & 0x1ff) == 0x1f8)
1380                         *kst-- = 0;
1381                 *kst = stack;
1382                 tf->tf_special.ndirty = (ksttop - kst) << 3;
1383         } else {                                /* epc syscalls (default). */
1384                 tf->tf_special.cfm = (3UL<<62) | (3UL<<7) | 3UL;
1385                 tf->tf_special.bspstore = IA64_BACKINGSTORE + 24;
1386                 /*
1387                  * Write values for out0, out1 and out2 to the user's backing
1388                  * store and arrange for them to be restored into the user's
1389                  * initial register frame.
1390                  * Assumes that (bspstore & 0x1f8) < 0x1e0.
1391                  */
1392                 suword((caddr_t)tf->tf_special.bspstore - 24, stack);
1393                 suword((caddr_t)tf->tf_special.bspstore - 16, ps_strings);
1394                 suword((caddr_t)tf->tf_special.bspstore -  8, 0);
1395         }
1396
1397         tf->tf_special.iip = entry;
1398         tf->tf_special.sp = (stack & ~15) - 16;
1399         tf->tf_special.rsc = 0xf;
1400         tf->tf_special.fpsr = IA64_FPSR_DEFAULT;
1401         tf->tf_special.psr = IA64_PSR_IC | IA64_PSR_I | IA64_PSR_IT |
1402             IA64_PSR_DT | IA64_PSR_RT | IA64_PSR_DFH | IA64_PSR_BN |
1403             IA64_PSR_CPL_USER;
1404 }
1405
1406 int
1407 ptrace_set_pc(struct thread *td, unsigned long addr)
1408 {
1409         uint64_t slot;
1410
1411         switch (addr & 0xFUL) {
1412         case 0:
1413                 slot = IA64_PSR_RI_0;
1414                 break;
1415         case 1:
1416                 /* XXX we need to deal with MLX bundles here */
1417                 slot = IA64_PSR_RI_1;
1418                 break;
1419         case 2:
1420                 slot = IA64_PSR_RI_2;
1421                 break;
1422         default:
1423                 return (EINVAL);
1424         }
1425
1426         td->td_frame->tf_special.iip = addr & ~0x0FULL;
1427         td->td_frame->tf_special.psr =
1428             (td->td_frame->tf_special.psr & ~IA64_PSR_RI) | slot;
1429         return (0);
1430 }
1431
1432 int
1433 ptrace_single_step(struct thread *td)
1434 {
1435         struct trapframe *tf;
1436
1437         /*
1438          * There's no way to set single stepping when we're leaving the
1439          * kernel through the EPC syscall path. The way we solve this is
1440          * by enabling the lower-privilege trap so that we re-enter the
1441          * kernel as soon as the privilege level changes. See trap.c for
1442          * how we proceed from there.
1443          */
1444         tf = td->td_frame;
1445         if (tf->tf_flags & FRAME_SYSCALL)
1446                 tf->tf_special.psr |= IA64_PSR_LP;
1447         else
1448                 tf->tf_special.psr |= IA64_PSR_SS;
1449         return (0);
1450 }
1451
1452 int
1453 ptrace_clear_single_step(struct thread *td)
1454 {
1455         struct trapframe *tf;
1456
1457         /*
1458          * Clear any and all status bits we may use to implement single
1459          * stepping.
1460          */
1461         tf = td->td_frame;
1462         tf->tf_special.psr &= ~IA64_PSR_SS;
1463         tf->tf_special.psr &= ~IA64_PSR_LP;
1464         tf->tf_special.psr &= ~IA64_PSR_TB;
1465         return (0);
1466 }
1467
1468 int
1469 fill_regs(struct thread *td, struct reg *regs)
1470 {
1471         struct trapframe *tf;
1472
1473         tf = td->td_frame;
1474         regs->r_special = tf->tf_special;
1475         regs->r_scratch = tf->tf_scratch;
1476         save_callee_saved(&regs->r_preserved);
1477         return (0);
1478 }
1479
1480 int
1481 set_regs(struct thread *td, struct reg *regs)
1482 {
1483         struct trapframe *tf;
1484         int error;
1485
1486         tf = td->td_frame;
1487         error = ia64_flush_dirty(td, &tf->tf_special);
1488         if (!error) {
1489                 tf->tf_special = regs->r_special;
1490                 tf->tf_special.bspstore += tf->tf_special.ndirty;
1491                 tf->tf_special.ndirty = 0;
1492                 tf->tf_scratch = regs->r_scratch;
1493                 restore_callee_saved(&regs->r_preserved);
1494         }
1495         return (error);
1496 }
1497
1498 int
1499 fill_dbregs(struct thread *td, struct dbreg *dbregs)
1500 {
1501
1502         return (ENOSYS);
1503 }
1504
1505 int
1506 set_dbregs(struct thread *td, struct dbreg *dbregs)
1507 {
1508
1509         return (ENOSYS);
1510 }
1511
1512 int
1513 fill_fpregs(struct thread *td, struct fpreg *fpregs)
1514 {
1515         struct trapframe *frame = td->td_frame;
1516         struct pcb *pcb = td->td_pcb;
1517
1518         /* Save the high FP registers. */
1519         ia64_highfp_save(td);
1520
1521         fpregs->fpr_scratch = frame->tf_scratch_fp;
1522         save_callee_saved_fp(&fpregs->fpr_preserved);
1523         fpregs->fpr_high = pcb->pcb_high_fp;
1524         return (0);
1525 }
1526
1527 int
1528 set_fpregs(struct thread *td, struct fpreg *fpregs)
1529 {
1530         struct trapframe *frame = td->td_frame;
1531         struct pcb *pcb = td->td_pcb;
1532
1533         /* Throw away the high FP registers (should be redundant). */
1534         ia64_highfp_drop(td);
1535
1536         frame->tf_scratch_fp = fpregs->fpr_scratch;
1537         restore_callee_saved_fp(&fpregs->fpr_preserved);
1538         pcb->pcb_high_fp = fpregs->fpr_high;
1539         return (0);
1540 }
1541
1542 void
1543 ia64_sync_icache(vm_offset_t va, vm_offset_t sz)
1544 {
1545         vm_offset_t lim;
1546
1547         if (!ia64_sync_icache_needed)
1548                 return;
1549
1550         lim = va + sz;
1551         while (va < lim) {
1552                 ia64_fc_i(va);
1553                 va += 32;       /* XXX */
1554         }
1555
1556         ia64_sync_i();
1557         ia64_srlz_i();
1558 }