]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/ia64/ia64/machdep.c
My ia64 box for some reason likes to fragment the beginning/end of memory
[FreeBSD/FreeBSD.git] / sys / ia64 / ia64 / machdep.c
1 /*-
2  * Copyright (c) 2000,2001 Doug Rabson
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #include "opt_compat.h"
30 #include "opt_ddb.h"
31 #include "opt_ski.h"
32 #include "opt_msgbuf.h"
33
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/eventhandler.h>
37 #include <sys/sysproto.h>
38 #include <sys/signalvar.h>
39 #include <sys/kernel.h>
40 #include <sys/proc.h>
41 #include <sys/lock.h>
42 #include <sys/pcpu.h>
43 #include <sys/malloc.h>
44 #include <sys/reboot.h>
45 #include <sys/bio.h>
46 #include <sys/buf.h>
47 #include <sys/mbuf.h>
48 #include <sys/vmmeter.h>
49 #include <sys/msgbuf.h>
50 #include <sys/exec.h>
51 #include <sys/sysctl.h>
52 #include <sys/uio.h>
53 #include <sys/linker.h>
54 #include <sys/random.h>
55 #include <sys/cons.h>
56 #include <net/netisr.h>
57 #include <vm/vm.h>
58 #include <vm/vm_kern.h>
59 #include <vm/vm_page.h>
60 #include <vm/vm_map.h>
61 #include <vm/vm_extern.h>
62 #include <vm/vm_object.h>
63 #include <vm/vm_pager.h>
64 #include <sys/user.h>
65 #include <sys/ptrace.h>
66 #include <machine/clock.h>
67 #include <machine/md_var.h>
68 #include <machine/reg.h>
69 #include <machine/fpu.h>
70 #include <machine/pal.h>
71 #include <machine/sal.h>
72 #include <machine/bootinfo.h>
73 #include <machine/mutex.h>
74 #include <machine/vmparam.h>
75 #include <machine/elf.h>
76 #include <ddb/ddb.h>
77 #include <sys/vnode.h>
78 #include <sys/ucontext.h>
79 #include <machine/sigframe.h>
80 #include <machine/efi.h>
81 #include <machine/inst.h>
82 #include <machine/rse.h>
83 #include <machine/unwind.h>
84
85 #ifdef SKI
86 extern void ia64_ski_init(void);
87 #endif
88
89 u_int64_t processor_frequency;
90 u_int64_t bus_frequency;
91 u_int64_t itc_frequency;
92 int cold = 1;
93 struct bootinfo bootinfo;
94
95 struct mtx sched_lock;
96 struct mtx Giant;
97
98 extern char kstack[]; 
99 struct user *proc0uarea;
100 vm_offset_t proc0kstack;
101
102 extern u_int64_t kernel_text[], _end[];
103 extern u_int64_t _ia64_unwind_start[];
104 extern u_int64_t _ia64_unwind_end[];
105
106 FPSWA_INTERFACE *fpswa_interface;
107
108 u_int64_t ia64_pal_base;
109 u_int64_t ia64_port_base;
110
111 char machine[] = "ia64";
112 SYSCTL_STRING(_hw, HW_MACHINE, machine, CTLFLAG_RD, machine, 0, "");
113
114 static char cpu_model[128];
115 SYSCTL_STRING(_hw, HW_MODEL, model, CTLFLAG_RD, cpu_model, 0, "");
116
117 #ifdef DDB
118 /* start and end of kernel symbol table */
119 void    *ksym_start, *ksym_end;
120 #endif
121
122 int     ia64_unaligned_print = 1;       /* warn about unaligned accesses */
123 int     ia64_unaligned_fix = 1; /* fix up unaligned accesses */
124 int     ia64_unaligned_sigbus = 0;      /* don't SIGBUS on fixed-up accesses */
125
126 SYSCTL_INT(_machdep, CPU_UNALIGNED_PRINT, unaligned_print,
127         CTLFLAG_RW, &ia64_unaligned_print, 0, "");
128
129 SYSCTL_INT(_machdep, CPU_UNALIGNED_FIX, unaligned_fix,
130         CTLFLAG_RW, &ia64_unaligned_fix, 0, "");
131
132 SYSCTL_INT(_machdep, CPU_UNALIGNED_SIGBUS, unaligned_sigbus,
133         CTLFLAG_RW, &ia64_unaligned_sigbus, 0, "");
134
135 static void cpu_startup __P((void *));
136 SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL)
137
138 struct msgbuf *msgbufp=0;
139
140 int Maxmem = 0;
141 long dumplo;
142
143 int     totalphysmem;           /* total amount of physical memory in system */
144 int     physmem;                /* physical memory used by NetBSD + some rsvd */
145 int     resvmem;                /* amount of memory reserved for PROM */
146
147 vm_offset_t phys_avail[100];
148
149 static int
150 sysctl_hw_physmem(SYSCTL_HANDLER_ARGS)
151 {
152         int error = sysctl_handle_int(oidp, 0, ia64_ptob(physmem), req);
153         return (error);
154 }
155
156 SYSCTL_PROC(_hw, HW_PHYSMEM, physmem, CTLTYPE_INT|CTLFLAG_RD,
157         0, 0, sysctl_hw_physmem, "I", "");
158
159 static int
160 sysctl_hw_usermem(SYSCTL_HANDLER_ARGS)
161 {
162         int error = sysctl_handle_int(oidp, 0,
163                 ia64_ptob(physmem - cnt.v_wire_count), req);
164         return (error);
165 }
166
167 SYSCTL_PROC(_hw, HW_USERMEM, usermem, CTLTYPE_INT|CTLFLAG_RD,
168         0, 0, sysctl_hw_usermem, "I", "");
169
170 SYSCTL_INT(_hw, OID_AUTO, availpages, CTLFLAG_RD, &physmem, 0, "");
171
172 /* must be 2 less so 0 0 can signal end of chunks */
173 #define PHYS_AVAIL_ARRAY_END ((sizeof(phys_avail) / sizeof(vm_offset_t)) - 2)
174
175 static void identifycpu __P((void));
176
177 struct kva_md_info kmi;
178
179 static void
180 cpu_startup(dummy)
181         void *dummy;
182 {
183
184         /*
185          * Good {morning,afternoon,evening,night}.
186          */
187         identifycpu();
188
189         /* startrtclock(); */
190 #ifdef PERFMON
191         perfmon_init();
192 #endif
193         printf("real memory  = %ld (%ldK bytes)\n", ia64_ptob(Maxmem), ia64_ptob(Maxmem) / 1024);
194
195         /*
196          * Display any holes after the first chunk of extended memory.
197          */
198         if (bootverbose) {
199                 int indx;
200
201                 printf("Physical memory chunk(s):\n");
202                 for (indx = 0; phys_avail[indx + 1] != 0; indx += 2) {
203                         int size1 = phys_avail[indx + 1] - phys_avail[indx];
204
205                         printf("0x%08lx - 0x%08lx, %d bytes (%d pages)\n", phys_avail[indx],
206                             phys_avail[indx + 1] - 1, size1, size1 / PAGE_SIZE);
207                 }
208         }
209
210         vm_ksubmap_init(&kmi);
211
212 #if defined(USERCONFIG)
213 #if defined(USERCONFIG_BOOT)
214         if (1)
215 #else
216         if (boothowto & RB_CONFIG)
217 #endif
218         {
219                 userconfig();
220                 cninit();       /* the preferred console may have changed */
221         }
222 #endif
223
224         printf("avail memory = %ld (%ldK bytes)\n", ptoa(cnt.v_free_count),
225             ptoa(cnt.v_free_count) / 1024);
226  
227         if (fpswa_interface == NULL)
228                 printf("Warning: no FPSWA package supplied\n");
229         else
230                 printf("FPSWA Revision = 0x%lx, Entry = %p\n",
231                     (long)fpswa_interface->Revision,
232                     (void *)fpswa_interface->Fpswa);
233
234         /*
235          * Set up buffers, so they can be used to read disk labels.
236          */
237         bufinit();
238         vm_pager_bufferinit();
239
240 #ifndef SKI
241         /*
242          * Traverse the MADT to discover IOSAPIC and Local SAPIC
243          * information.
244          */
245         ia64_probe_sapics();
246 #endif
247 }
248
249 void
250 cpu_pcpu_init(struct pcpu *pcpu, int cpuid, size_t size)
251 {
252         KASSERT(size >= sizeof(struct pcpu) + sizeof(struct pcb),
253             ("%s: too small an allocation for pcpu", __func__));
254         pcpu->pc_pcb = (void*)(pcpu+1);
255 }
256
257 static void
258 identifycpu(void)
259 {
260         char vendor[17];
261         u_int64_t t;
262         int number, revision, model, family, archrev;
263         u_int64_t features;
264
265         /*
266          * Assumes little-endian.
267          */
268         *(u_int64_t *) &vendor[0] = ia64_get_cpuid(0);
269         *(u_int64_t *) &vendor[8] = ia64_get_cpuid(1);
270         vendor[16] = '\0';
271
272         t = ia64_get_cpuid(3);
273         number = (t >> 0) & 0xff;
274         revision = (t >> 8) & 0xff;
275         model = (t >> 16) & 0xff;
276         family = (t >> 24) & 0xff;
277         archrev = (t >> 32) & 0xff;
278
279         if (family == 0x7)
280                 strcpy(cpu_model, "Itanium");
281         else if (family == 0x1f)
282                 strcpy(cpu_model, "McKinley");
283         else
284                 snprintf(cpu_model, sizeof(cpu_model), "Family=%d", family);
285
286         features = ia64_get_cpuid(4);
287
288         printf("CPU: %s", cpu_model);
289         if (processor_frequency)
290                 printf(" (%ld.%02ld-Mhz)\n",
291                        (processor_frequency + 4999) / 1000000,
292                        ((processor_frequency + 4999) / 10000) % 100);
293         else
294                 printf("\n");
295         printf("  Origin = \"%s\"  Model = %d  Revision = %d\n",
296                vendor, model, revision);
297         printf("  Features = 0x%b\n", (u_int32_t) features,
298                "\020"
299                "\001LB");
300 }
301
302 static void
303 add_kernel_unwind_tables(void *arg)
304 {
305         /*
306          * Register the kernel's unwind table.
307          */
308         ia64_add_unwind_table(kernel_text,
309                               _ia64_unwind_start,
310                               _ia64_unwind_end);
311 }
312 SYSINIT(unwind, SI_SUB_KMEM, SI_ORDER_ANY, add_kernel_unwind_tables, 0);
313
314 void
315 map_pal_code(void)
316 {
317         struct ia64_pte pte;
318         u_int64_t psr;
319
320         if (ia64_pal_base == 0)
321                 return;
322
323         bzero(&pte, sizeof(pte));
324         pte.pte_p = 1;
325         pte.pte_ma = PTE_MA_WB;
326         pte.pte_a = 1;
327         pte.pte_d = 1;
328         pte.pte_pl = PTE_PL_KERN;
329         pte.pte_ar = PTE_AR_RWX;
330         pte.pte_ppn = ia64_pal_base >> 12;
331
332         __asm __volatile("mov %0=psr;;" : "=r" (psr));
333         __asm __volatile("rsm psr.ic|psr.i;; srlz.i;;");
334         __asm __volatile("mov cr.ifa=%0" ::
335             "r"(IA64_PHYS_TO_RR7(ia64_pal_base)));
336         __asm __volatile("mov cr.itir=%0" :: "r"(28 << 2));
337         __asm __volatile("srlz.i;;");
338         __asm __volatile("itr.i itr[%0]=%1;;" ::
339             "r"(2), "r"(*(u_int64_t*)&pte));
340         __asm __volatile("srlz.i;;");
341         __asm __volatile("mov psr.l=%0;; srlz.i;;" :: "r" (psr));
342 }
343
344 static void
345 calculate_frequencies(void)
346 {
347         struct ia64_sal_result sal;
348         struct ia64_pal_result pal;
349
350         sal = ia64_sal_entry(SAL_FREQ_BASE, 0, 0, 0, 0, 0, 0, 0);
351         pal = ia64_call_pal_static(PAL_FREQ_RATIOS, 0, 0, 0);
352
353         if (sal.sal_status == 0 && pal.pal_status == 0) {
354                 if (bootverbose) {
355                         printf("Platform clock frequency %ld Hz\n",
356                                sal.sal_result[0]);
357                         printf("Processor ratio %ld/%ld, Bus ratio %ld/%ld, "
358                                "ITC ratio %ld/%ld\n",
359                                pal.pal_result[0] >> 32,
360                                pal.pal_result[0] & ((1L << 32) - 1),
361                                pal.pal_result[1] >> 32,
362                                pal.pal_result[1] & ((1L << 32) - 1),
363                                pal.pal_result[2] >> 32,
364                                pal.pal_result[2] & ((1L << 32) - 1));
365                 }
366                 processor_frequency =
367                         sal.sal_result[0] * (pal.pal_result[0] >> 32)
368                         / (pal.pal_result[0] & ((1L << 32) - 1));
369                 bus_frequency =
370                         sal.sal_result[0] * (pal.pal_result[1] >> 32)
371                         / (pal.pal_result[1] & ((1L << 32) - 1));
372                 itc_frequency =
373                         sal.sal_result[0] * (pal.pal_result[2] >> 32)
374                         / (pal.pal_result[2] & ((1L << 32) - 1));
375         }
376 }
377
378 void
379 ia64_init(u_int64_t arg1, u_int64_t arg2)
380 {
381         int phys_avail_cnt;
382         vm_offset_t kernstart, kernend;
383         vm_offset_t kernstartpfn, kernendpfn, pfn0, pfn1;
384         char *p;
385         EFI_MEMORY_DESCRIPTOR *md, *mdp;
386         int mdcount, i;
387
388         /* NO OUTPUT ALLOWED UNTIL FURTHER NOTICE */
389
390         /*
391          * TODO: Disable interrupts, floating point etc.
392          * Maybe flush cache and tlb
393          */
394         ia64_set_fpsr(IA64_FPSR_DEFAULT);
395
396         /*
397          * TODO: Get critical system information (if possible, from the
398          * information provided by the boot program).
399          */
400
401         /*
402          * Gross and disgusting hack. The bootinfo is written into
403          * memory at a fixed address.
404          */
405         bootinfo = *(struct bootinfo *) 0xe000000000508000;
406         if (bootinfo.bi_magic != BOOTINFO_MAGIC
407             || bootinfo.bi_version != 1) {
408                 bzero(&bootinfo, sizeof(bootinfo));
409                 bootinfo.bi_kernend = (vm_offset_t) round_page(_end);
410         }
411
412         /*
413          * Look for the I/O ports first - we need them for console
414          * probing.
415          */
416         mdcount = bootinfo.bi_memmap_size / bootinfo.bi_memdesc_size;
417         md = (EFI_MEMORY_DESCRIPTOR *) IA64_PHYS_TO_RR7(bootinfo.bi_memmap);
418         if (md == NULL || mdcount == 0) {
419 #ifdef SKI
420                 static EFI_MEMORY_DESCRIPTOR ski_md[2];
421                 /*
422                  * XXX hack for ski. In reality, the loader will probably ask
423                  * EFI and pass the results to us. Possibly, we will call EFI
424                  * directly.
425                  */
426                 ski_md[0].Type = EfiConventionalMemory;
427                 ski_md[0].PhysicalStart = 2L*1024*1024;
428                 ski_md[0].VirtualStart = 0;
429                 ski_md[0].NumberOfPages = (64L*1024*1024)>>12;
430                 ski_md[0].Attribute = EFI_MEMORY_WB;
431
432                 ski_md[1].Type = EfiMemoryMappedIOPortSpace;
433                 ski_md[1].PhysicalStart = 0xffffc000000;
434                 ski_md[1].VirtualStart = 0;
435                 ski_md[1].NumberOfPages = (64L*1024*1024)>>12;
436                 ski_md[1].Attribute = EFI_MEMORY_UC;
437
438                 md = ski_md;
439                 mdcount = 2;
440 #endif
441         }
442
443         for (i = 0, mdp = md; i < mdcount; i++,
444             mdp = NextMemoryDescriptor(mdp, bootinfo.bi_memdesc_size)) {
445                 if (mdp->Type == EfiMemoryMappedIOPortSpace)
446                         ia64_port_base = IA64_PHYS_TO_RR6(mdp->PhysicalStart);
447                 else if (mdp->Type == EfiPalCode)
448                         ia64_pal_base = mdp->PhysicalStart;
449         }
450
451         KASSERT(ia64_port_base != 0,
452             ("%s: no I/O memory region", __func__));
453
454         /*
455          * Look at arguments passed to us and compute boothowto.
456          */
457         boothowto = bootinfo.bi_boothowto;
458 #ifdef KADB
459         boothowto |= RB_KDB;
460 #endif
461
462         /*
463          * Catch case of boot_verbose set in environment.
464          */
465         if ((p = getenv("boot_verbose")) != NULL) {
466                 if (strcmp(p, "yes") == 0 || strcmp(p, "YES") == 0) {
467                         boothowto |= RB_VERBOSE;
468                 }
469         }
470
471         if (boothowto & RB_VERBOSE)
472                 bootverbose = 1;
473
474         /*
475          * Initialize the console before we print anything out.
476          */
477         cninit();
478
479         /* OUTPUT NOW ALLOWED */
480
481         if (ia64_pal_base != 0) {
482                 ia64_pal_base &= ~((1 << 28) - 1);
483                 /*
484                  * We use a TR to map the first 256M of memory - this might
485                  * cover the palcode too.
486                  */
487                 if (ia64_pal_base == 0)
488                         printf("PAL code mapped by the kernel's TR\n");
489         } else
490                 printf("PAL code not found\n");
491
492         /*
493          * Wire things up so we can call the firmware.
494          */
495         map_pal_code();
496         ia64_efi_init();
497 #ifdef SKI
498         ia64_ski_init();
499 #endif
500         calculate_frequencies();
501
502         /*
503          * Find the beginning and end of the kernel.
504          */
505         kernstart = trunc_page(kernel_text);
506         ksym_start = (void *)bootinfo.bi_symtab;
507         ksym_end   = (void *)bootinfo.bi_esymtab;
508         kernend = (vm_offset_t)round_page(ksym_end);
509         /* But if the bootstrap tells us otherwise, believe it! */
510         if (bootinfo.bi_kernend)
511                 kernend = round_page(bootinfo.bi_kernend);
512         preload_metadata = (caddr_t)bootinfo.bi_modulep;
513         if (envmode == 1)
514                 kern_envp = static_env;
515         else
516                 kern_envp = (caddr_t)bootinfo.bi_envp;
517
518         /* get fpswa interface */
519         fpswa_interface = (FPSWA_INTERFACE*)IA64_PHYS_TO_RR7(bootinfo.bi_fpswa);
520
521         /* Init basic tunables, including hz */
522         init_param1();
523
524         p = getenv("kernelname");
525         if (p)
526                 strncpy(kernelname, p, sizeof(kernelname) - 1);
527
528         kernstartpfn = atop(IA64_RR_MASK(kernstart));
529         kernendpfn = atop(IA64_RR_MASK(kernend));
530
531         /*
532          * Size the memory regions and load phys_avail[] with the results.
533          */
534
535         /*
536          * Find out how much memory is available, by looking at
537          * the memory descriptors.
538          */
539
540 #ifdef DEBUG_MD
541         printf("Memory descriptor count: %d\n", mdcount);
542 #endif
543
544         phys_avail_cnt = 0;
545         for (i = 0, mdp = md; i < mdcount; i++,
546                  mdp = NextMemoryDescriptor(mdp, bootinfo.bi_memdesc_size)) {
547 #ifdef DEBUG_MD
548                 printf("MD %d: type %d pa 0x%lx cnt 0x%lx\n", i,
549                        mdp->Type,
550                        mdp->PhysicalStart,
551                        mdp->NumberOfPages);
552 #endif
553
554                 pfn0 = ia64_btop(round_page(mdp->PhysicalStart));
555                 pfn1 = ia64_btop(trunc_page(mdp->PhysicalStart
556                                             + mdp->NumberOfPages * 4096));
557                 if (pfn1 <= pfn0)
558                         continue;
559
560                 if (mdp->Type != EfiConventionalMemory) {
561                         resvmem += (pfn1 - pfn0);
562                         continue;
563                 }
564
565                 totalphysmem += (pfn1 - pfn0);
566
567                 /*
568                  * We have a memory descriptors available for system
569                  * software use.  We must determine if this cluster
570                  * holds the kernel.
571                  */
572                 physmem += (pfn1 - pfn0);
573                 if (pfn0 <= kernendpfn && kernstartpfn <= pfn1) {
574                         /*
575                          * Must compute the location of the kernel
576                          * within the segment.
577                          */
578 #ifdef DEBUG_MD
579                         printf("Descriptor %d contains kernel\n", i);
580 #endif
581                         if (pfn0 < kernstartpfn) {
582                                 /*
583                                  * There is a chunk before the kernel.
584                                  */
585 #ifdef DEBUG_MD
586                                 printf("Loading chunk before kernel: "
587                                        "0x%lx / 0x%lx\n", pfn0, kernstartpfn);
588 #endif
589                                 phys_avail[phys_avail_cnt] = ia64_ptob(pfn0);
590                                 phys_avail[phys_avail_cnt+1] = ia64_ptob(kernstartpfn);
591                                 phys_avail_cnt += 2;
592                         }
593                         if (kernendpfn < pfn1) {
594                                 /*
595                                  * There is a chunk after the kernel.
596                                  */
597 #ifdef DEBUG_MD
598                                 printf("Loading chunk after kernel: "
599                                        "0x%lx / 0x%lx\n", kernendpfn, pfn1);
600 #endif
601                                 phys_avail[phys_avail_cnt] = ia64_ptob(kernendpfn);
602                                 phys_avail[phys_avail_cnt+1] = ia64_ptob(pfn1);
603                                 phys_avail_cnt += 2;
604                         }
605                 } else {
606                         /*
607                          * Just load this cluster as one chunk.
608                          */
609 #ifdef DEBUG_MD
610                         printf("Loading descriptor %d: 0x%lx / 0x%lx\n", i,
611                                pfn0, pfn1);
612 #endif
613                         phys_avail[phys_avail_cnt] = ia64_ptob(pfn0);
614                         phys_avail[phys_avail_cnt+1] = ia64_ptob(pfn1);
615                         phys_avail_cnt += 2;
616                         
617                 }
618         }
619         phys_avail[phys_avail_cnt] = 0;
620
621         Maxmem = physmem;
622         init_param2(physmem);
623
624         /*
625          * Initialize error message buffer (at end of core).
626          */
627         {
628                 size_t sz = round_page(MSGBUF_SIZE);
629                 int i = phys_avail_cnt - 2;
630
631                 /* shrink so that it'll fit in the last segment */
632                 if (phys_avail[i+1] - phys_avail[i] < sz)
633                         sz = phys_avail[i+1] - phys_avail[i];
634
635                 phys_avail[i+1] -= sz;
636                 msgbufp = (struct msgbuf*) IA64_PHYS_TO_RR7(phys_avail[i+1]);
637
638                 msgbufinit(msgbufp, sz);
639
640                 /* Remove the last segment if it now has no pages. */
641                 if (phys_avail[i] == phys_avail[i+1]) {
642                         phys_avail[i] = 0;
643                         phys_avail[i+1] = 0;
644                 }
645
646                 /* warn if the message buffer had to be shrunk */
647                 if (sz != round_page(MSGBUF_SIZE))
648                         printf("WARNING: %ld bytes not available for msgbuf in last cluster (%ld used)\n",
649                             round_page(MSGBUF_SIZE), sz);
650
651         }
652
653         proc_linkup(&proc0, &proc0.p_ksegrp, &proc0.p_kse, &thread0);
654         /*
655          * Init mapping for u page(s) for proc 0
656          */
657         proc0uarea = (struct user *)pmap_steal_memory(UAREA_PAGES * PAGE_SIZE);
658         proc0kstack = (vm_offset_t)kstack;
659         proc0.p_uarea = proc0uarea;
660         thread0.td_kstack = proc0kstack;
661         thread0.td_pcb = (struct pcb *)
662             (thread0.td_kstack + KSTACK_PAGES * PAGE_SIZE) - 1;
663         /*
664          * Setup the global data for the bootstrap cpu.
665          */
666         pcpup = (struct pcpu *) pmap_steal_memory(PAGE_SIZE);
667         pcpu_init(pcpup, 0, PAGE_SIZE);
668         ia64_set_k4((u_int64_t) pcpup);
669
670         /*
671          * Initialize the rest of proc 0's PCB.
672          *
673          * Set the kernel sp, reserving space for an (empty) trapframe,
674          * and make proc0's trapframe pointer point to it for sanity.
675          * Initialise proc0's backing store to start after u area.
676          *
677          * XXX what is all this +/- 16 stuff?
678          */
679         thread0.td_frame = (struct trapframe *)thread0.td_pcb - 1;
680         thread0.td_pcb->pcb_sp = (u_int64_t)thread0.td_frame - 16;
681         thread0.td_pcb->pcb_bspstore = (u_int64_t)proc0kstack;
682
683         /* Setup curproc so that mutexes work */
684         PCPU_SET(curthread, &thread0);
685
686         /* We pretend to own FP state so that ia64_fpstate_check() works */
687         PCPU_SET(fpcurthread, &thread0);
688
689         LIST_INIT(&thread0.td_contested);
690
691         /*
692          * Initialise mutexes.
693          */
694         mtx_init(&Giant, "Giant", MTX_DEF | MTX_RECURSE);
695         mtx_init(&sched_lock, "sched lock", MTX_SPIN | MTX_RECURSE);
696         mtx_init(&proc0.p_mtx, "process lock", MTX_DEF);
697         mtx_lock(&Giant);
698
699         /*
700          * Initialize the virtual memory system.
701          */
702         pmap_bootstrap();
703
704         /*
705          * Initialize debuggers, and break into them if appropriate.
706          */
707 #ifdef DDB
708         kdb_init();
709         if (boothowto & RB_KDB) {
710                 printf("Boot flags requested debugger\n");
711                 breakpoint();
712         }
713 #endif
714 }
715
716 int
717 ia64_running_in_simulator()
718 {
719         return bootinfo.bi_systab == 0;
720 }
721
722 void
723 bzero(void *buf, size_t len)
724 {
725         caddr_t p = buf;
726
727         while (((vm_offset_t) p & (sizeof(u_long) - 1)) && len) {
728                 *p++ = 0;
729                 len--;
730         }
731         while (len >= sizeof(u_long) * 8) {
732                 *(u_long*) p = 0;
733                 *((u_long*) p + 1) = 0;
734                 *((u_long*) p + 2) = 0;
735                 *((u_long*) p + 3) = 0;
736                 len -= sizeof(u_long) * 8;
737                 *((u_long*) p + 4) = 0;
738                 *((u_long*) p + 5) = 0;
739                 *((u_long*) p + 6) = 0;
740                 *((u_long*) p + 7) = 0;
741                 p += sizeof(u_long) * 8;
742         }
743         while (len >= sizeof(u_long)) {
744                 *(u_long*) p = 0;
745                 len -= sizeof(u_long);
746                 p += sizeof(u_long);
747         }
748         while (len) {
749                 *p++ = 0;
750                 len--;
751         }
752 }
753
754 void
755 DELAY(int n)
756 {
757         u_int64_t start, end, now;
758
759         start = ia64_get_itc();
760         end = start + (itc_frequency * n) / 1000000;
761         /* printf("DELAY from 0x%lx to 0x%lx\n", start, end); */
762         do {
763                 now = ia64_get_itc();
764         } while (now < end || (now > start && end < start));
765 }
766
767 /*
768  * Send an interrupt to process.
769  *
770  * Stack is set up to allow sigcode stored
771  * at top to call routine, followed by kcall
772  * to sigreturn routine below.  After sigreturn
773  * resets the signal mask, the stack, and the
774  * frame pointer, it returns to the user
775  * specified pc, psl.
776  */
777 void
778 sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
779 {
780         struct proc *p;
781         struct thread *td;
782         struct trapframe *frame;
783         struct sigacts *psp;
784         struct sigframe sf, *sfp;
785         u_int64_t sbs = 0;
786         int oonstack, rndfsize;
787
788         td = curthread;
789         p = td->td_proc;
790         PROC_LOCK_ASSERT(p, MA_OWNED);
791         psp = p->p_sigacts;
792         frame = td->td_frame;
793         oonstack = sigonstack(frame->tf_r[FRAME_SP]);
794         rndfsize = ((sizeof(sf) + 15) / 16) * 16;
795
796         /*
797          * Make sure that we restore the entire trapframe after a
798          * signal.
799          */
800         frame->tf_flags &= ~FRAME_SYSCALL;
801
802         /* save user context */
803         bzero(&sf, sizeof(struct sigframe));
804         sf.sf_uc.uc_sigmask = *mask;
805         sf.sf_uc.uc_stack = p->p_sigstk;
806         sf.sf_uc.uc_stack.ss_flags = (p->p_flag & P_ALTSTACK)
807             ? ((oonstack) ? SS_ONSTACK : 0) : SS_DISABLE;
808         sf.sf_uc.uc_mcontext.mc_flags = IA64_MC_FLAG_ONSTACK;
809         sf.sf_uc.uc_mcontext.mc_onstack = (oonstack) ? 1 : 0;
810
811         sf.sf_uc.uc_mcontext.mc_nat     = 0; /* XXX */
812         sf.sf_uc.uc_mcontext.mc_sp      = frame->tf_r[FRAME_SP];
813         sf.sf_uc.uc_mcontext.mc_ip      = (frame->tf_cr_iip
814                                            | ((frame->tf_cr_ipsr >> 41) & 3));
815         sf.sf_uc.uc_mcontext.mc_cfm     = frame->tf_cr_ifs & ~(1<<31);
816         sf.sf_uc.uc_mcontext.mc_um      = frame->tf_cr_ipsr & 0x1fff;
817         sf.sf_uc.uc_mcontext.mc_ar_rsc  = frame->tf_ar_rsc;
818         sf.sf_uc.uc_mcontext.mc_ar_bsp  = frame->tf_ar_bspstore;
819         sf.sf_uc.uc_mcontext.mc_ar_rnat = frame->tf_ar_rnat;
820         sf.sf_uc.uc_mcontext.mc_ar_ccv  = frame->tf_ar_ccv;
821         sf.sf_uc.uc_mcontext.mc_ar_unat = frame->tf_ar_unat;
822         sf.sf_uc.uc_mcontext.mc_ar_fpsr = frame->tf_ar_fpsr;
823         sf.sf_uc.uc_mcontext.mc_ar_pfs  = frame->tf_ar_pfs;
824         sf.sf_uc.uc_mcontext.mc_pr      = frame->tf_pr;
825
826         bcopy(&frame->tf_b[0],
827               &sf.sf_uc.uc_mcontext.mc_br[0],
828               8 * sizeof(unsigned long));
829         sf.sf_uc.uc_mcontext.mc_gr[0] = 0;
830         bcopy(&frame->tf_r[0],
831               &sf.sf_uc.uc_mcontext.mc_gr[1],
832               31 * sizeof(unsigned long));
833
834         /* XXX mc_fr[] */
835
836         /*
837          * Allocate and validate space for the signal handler
838          * context. Note that if the stack is in P0 space, the
839          * call to grow() is a nop, and the useracc() check
840          * will fail if the process has not already allocated
841          * the space with a `brk'.
842          */
843         if ((p->p_flag & P_ALTSTACK) != 0 && !oonstack &&
844             SIGISMEMBER(psp->ps_sigonstack, sig)) {
845                 sbs = (u_int64_t) p->p_sigstk.ss_sp;
846                 sfp = (struct sigframe *)((caddr_t)p->p_sigstk.ss_sp +
847                     p->p_sigstk.ss_size - rndfsize);
848                 /*
849                  * Align sp and bsp.
850                  */
851                 sbs = (sbs + 15) & ~15;
852                 sfp = (struct sigframe *)((u_int64_t)sfp & ~15);
853 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
854                 p->p_sigstk.ss_flags |= SS_ONSTACK;
855 #endif
856         } else
857                 sfp = (struct sigframe *)(frame->tf_r[FRAME_SP] - rndfsize);
858         PROC_UNLOCK(p);
859
860         (void)grow_stack(p, (u_long)sfp);
861 #ifdef DEBUG
862         if ((sigdebug & SDB_KSTACK) && p->p_pid == sigpid)
863                 printf("sendsig(%d): sig %d ssp %p usp %p\n", p->p_pid,
864                        sig, &sf, sfp);
865 #endif
866         if (!useracc((caddr_t)sfp, sizeof(sf), VM_PROT_WRITE)) {
867 #ifdef DEBUG
868                 if ((sigdebug & SDB_KSTACK) && p->p_pid == sigpid)
869                         printf("sendsig(%d): useracc failed on sig %d\n",
870                                p->p_pid, sig);
871 #endif
872                 /*
873                  * Process has trashed its stack; give it an illegal
874                  * instruction to halt it in its tracks.
875                  */
876                 PROC_LOCK(p);
877                 SIGACTION(p, SIGILL) = SIG_DFL;
878                 SIGDELSET(p->p_sigignore, SIGILL);
879                 SIGDELSET(p->p_sigcatch, SIGILL);
880                 SIGDELSET(p->p_sigmask, SIGILL);
881                 psignal(p, SIGILL);
882                 return;
883         }
884
885 #if 0
886         /* save the floating-point state, if necessary, then copy it. */
887         ia64_fpstate_save(td, 1);
888         sf.sf_uc.uc_mcontext.mc_ownedfp = td->td_md.md_flags & MDP_FPUSED;
889         bcopy(&td->td_pcb->pcb_fp,
890               (struct fpreg *)sf.sf_uc.uc_mcontext.mc_fpregs,
891               sizeof(struct fpreg));
892         sf.sf_uc.uc_mcontext.mc_fp_control = td->td_pcb.pcb_fp_control;
893 #endif
894
895         /*
896          * copy the frame out to userland.
897          */
898         (void) copyout((caddr_t)&sf, (caddr_t)sfp, sizeof(sf));
899 #ifdef DEBUG
900         if (sigdebug & SDB_FOLLOW)
901                 printf("sendsig(%d): sig %d sfp %p code %lx\n", p->p_pid, sig,
902                     sfp, code);
903 #endif
904
905         /*
906          * Set up the registers to return to sigcode.
907          */
908         frame->tf_cr_ipsr &= ~IA64_PSR_RI;
909         frame->tf_cr_iip = PS_STRINGS - (esigcode - sigcode);
910         frame->tf_r[FRAME_R1] = sig;
911         PROC_LOCK(p);
912         if (SIGISMEMBER(p->p_sigacts->ps_siginfo, sig)) {
913                 frame->tf_r[FRAME_R15] = (u_int64_t)&(sfp->sf_si);
914
915                 /* Fill in POSIX parts */
916                 sf.sf_si.si_signo = sig;
917                 sf.sf_si.si_code = code;
918                 sf.sf_si.si_addr = (void*)frame->tf_cr_ifa;
919         }
920         else
921                 frame->tf_r[FRAME_R15] = code;
922
923         frame->tf_r[FRAME_SP] = (u_int64_t)sfp - 16;
924         frame->tf_r[FRAME_R14] = sig;
925         frame->tf_r[FRAME_R15] = (u_int64_t) &sfp->sf_si;
926         frame->tf_r[FRAME_R16] = (u_int64_t) &sfp->sf_uc;
927         frame->tf_r[FRAME_R17] = (u_int64_t)catcher;
928         frame->tf_r[FRAME_R18] = sbs;
929
930 #ifdef DEBUG
931         if (sigdebug & SDB_FOLLOW)
932                 printf("sendsig(%d): pc %lx, catcher %lx\n", p->p_pid,
933                     frame->tf_cr_iip, frame->tf_regs[FRAME_R4]);
934         if ((sigdebug & SDB_KSTACK) && p->p_pid == sigpid)
935                 printf("sendsig(%d): sig %d returns\n",
936                     p->p_pid, sig);
937 #endif
938 }
939
940 /*
941  * Stub to satisfy the reference to osigreturn in the syscall table.  This
942  * is needed even for newer arches that don't support old signals because
943  * the syscall table is machine-independent.
944  */
945 int
946 osigreturn(struct thread *td, struct osigreturn_args *uap)
947 {
948
949         return (nosys(td, (struct nosys_args *)uap));
950 }
951
952 /*
953  * System call to cleanup state after a signal
954  * has been taken.  Reset signal mask and
955  * stack state from context left by sendsig (above).
956  * Return to previous pc and psl as specified by
957  * context left by sendsig. Check carefully to
958  * make sure that the user has not modified the
959  * state to gain improper privileges.
960  */
961 int
962 sigreturn(struct thread *td,
963         struct sigreturn_args /* {
964                 ucontext_t *sigcntxp;
965         } */ *uap)
966 {
967         ucontext_t uc;
968         const ucontext_t *ucp;
969         struct pcb *pcb;
970         struct trapframe *frame = td->td_frame;
971         struct __mcontext *mcp;
972         struct proc *p;
973
974         ucp = uap->sigcntxp;
975         pcb = td->td_pcb;
976         p = td->td_proc;
977
978 #ifdef DEBUG
979         if (sigdebug & SDB_FOLLOW)
980             printf("sigreturn: pid %d, scp %p\n", p->p_pid, ucp);
981 #endif
982
983         /*
984          * Fetch the entire context structure at once for speed.
985          * We don't use a normal argument to simplify RSE handling.
986          */
987         if (copyin((caddr_t)frame->tf_r[FRAME_R4],
988                    (caddr_t)&uc, sizeof(ucontext_t)))
989                 return (EFAULT);
990
991         if (frame->tf_ndirty != 0) {
992             printf("sigreturn: dirty user stacked registers\n");
993         }
994
995         /*
996          * Restore the user-supplied information
997          */
998         mcp = &uc.uc_mcontext;
999         bcopy(&mcp->mc_br[0], &frame->tf_b[0], 8*sizeof(u_int64_t));
1000         bcopy(&mcp->mc_gr[1], &frame->tf_r[0], 31*sizeof(u_int64_t));
1001         /* XXX mc_fr */
1002
1003         frame->tf_flags &= ~FRAME_SYSCALL;
1004         frame->tf_cr_iip = mcp->mc_ip & ~15;
1005         frame->tf_cr_ipsr &= ~IA64_PSR_RI;
1006         switch (mcp->mc_ip & 15) {
1007         case 1:
1008                 frame->tf_cr_ipsr |= IA64_PSR_RI_1;
1009                 break;
1010         case 2:
1011                 frame->tf_cr_ipsr |= IA64_PSR_RI_2;
1012                 break;
1013         }
1014         frame->tf_cr_ipsr     = ((frame->tf_cr_ipsr & ~0x1fff)
1015                                  | (mcp->mc_um & 0x1fff));
1016         frame->tf_pr          = mcp->mc_pr;
1017         frame->tf_ar_rsc      = (mcp->mc_ar_rsc & 3) | 12; /* user, loadrs=0 */
1018         frame->tf_ar_pfs      = mcp->mc_ar_pfs;
1019         frame->tf_cr_ifs      = mcp->mc_cfm | (1UL<<63);
1020         frame->tf_ar_bspstore = mcp->mc_ar_bsp;
1021         frame->tf_ar_rnat     = mcp->mc_ar_rnat;
1022         frame->tf_ndirty      = 0; /* assumes flushrs in sigcode */
1023         frame->tf_ar_unat     = mcp->mc_ar_unat;
1024         frame->tf_ar_ccv      = mcp->mc_ar_ccv;
1025         frame->tf_ar_fpsr     = mcp->mc_ar_fpsr;
1026
1027         frame->tf_r[FRAME_SP] = mcp->mc_sp;
1028
1029         PROC_LOCK(p);
1030 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
1031         if (uc.uc_mcontext.mc_onstack & 1)
1032                 p->p_sigstk.ss_flags |= SS_ONSTACK;
1033         else
1034                 p->p_sigstk.ss_flags &= ~SS_ONSTACK;
1035 #endif
1036
1037         p->p_sigmask = uc.uc_sigmask;
1038         SIG_CANTMASK(p->p_sigmask);
1039         PROC_UNLOCK(p);
1040
1041         /* XXX ksc.sc_ownedfp ? */
1042         ia64_fpstate_drop(td);
1043 #if 0
1044         bcopy((struct fpreg *)uc.uc_mcontext.mc_fpregs,
1045               &td->td_pcb->pcb_fp, sizeof(struct fpreg));
1046         td->td_pcb->pcb_fp_control = uc.uc_mcontext.mc_fp_control;
1047 #endif
1048
1049 #ifdef DEBUG
1050         if (sigdebug & SDB_FOLLOW)
1051                 printf("sigreturn(%d): returns\n", p->p_pid);
1052 #endif
1053         return (EJUSTRETURN);
1054 }
1055
1056 /*
1057  * Machine dependent boot() routine
1058  */
1059 void
1060 cpu_boot(int howto)
1061 {
1062
1063         ia64_efi_runtime->ResetSystem(EfiResetWarm, EFI_SUCCESS, 0, 0);
1064 }
1065
1066 /*
1067  * Shutdown the CPU as much as possible
1068  */
1069 void
1070 cpu_halt(void)
1071 {
1072
1073         ia64_efi_runtime->ResetSystem(EfiResetWarm, EFI_SUCCESS, 0, 0);
1074 }
1075
1076 /*
1077  * Clear registers on exec
1078  */
1079 void
1080 setregs(struct thread *td, u_long entry, u_long stack, u_long ps_strings)
1081 {
1082         struct trapframe *frame;
1083
1084         frame = td->td_frame;
1085
1086         /*
1087          * Make sure that we restore the entire trapframe after an
1088          * execve.
1089          */
1090         frame->tf_flags &= ~FRAME_SYSCALL;
1091
1092         bzero(frame->tf_r, sizeof(frame->tf_r));
1093         bzero(frame->tf_f, sizeof(frame->tf_f));
1094         frame->tf_cr_iip = entry;
1095         frame->tf_cr_ipsr = (IA64_PSR_IC
1096                              | IA64_PSR_I
1097                              | IA64_PSR_IT
1098                              | IA64_PSR_DT
1099                              | IA64_PSR_RT
1100                              | IA64_PSR_DFH
1101                              | IA64_PSR_BN
1102                              | IA64_PSR_CPL_USER);
1103         /*
1104          * Make sure that sp is aligned to a 16 byte boundary and
1105          * reserve 16 bytes of scratch space for _start.
1106          */
1107         frame->tf_r[FRAME_SP] = (stack & ~15) - 16;
1108
1109         /*
1110          * Write values for out0, out1 and out2 to the user's backing
1111          * store and arrange for them to be restored into the user's
1112          * initial register frame. Assumes that (bspstore & 0x1f8) <
1113          * 0x1e0.
1114          */
1115         frame->tf_ar_bspstore = td->td_md.md_bspstore + 24;
1116         suword((caddr_t) frame->tf_ar_bspstore - 24, stack);
1117         suword((caddr_t) frame->tf_ar_bspstore - 16, ps_strings);
1118         suword((caddr_t) frame->tf_ar_bspstore -  8, 0);
1119         frame->tf_ndirty = 0;
1120         frame->tf_cr_ifs = (1L<<63) | 3; /* sof=3, v=1 */
1121
1122         frame->tf_ar_rsc = 0xf; /* user mode rsc */
1123         frame->tf_ar_fpsr = IA64_FPSR_DEFAULT;
1124
1125         td->td_md.md_flags &= ~MDP_FPUSED;
1126         ia64_fpstate_drop(td);
1127 }
1128
1129 int
1130 ptrace_set_pc(struct thread *td, unsigned long addr)
1131 {
1132         /* TODO set pc in trapframe */
1133         return 0;
1134 }
1135
1136 int
1137 ptrace_single_step(struct thread *td)
1138 {
1139         /* TODO arrange for user process to single step */
1140         return 0;
1141 }
1142
1143 int
1144 ia64_pa_access(vm_offset_t pa)
1145 {
1146         return VM_PROT_READ|VM_PROT_WRITE;
1147 }
1148
1149 int
1150 fill_regs(td, regs)
1151         struct thread *td;
1152         struct reg *regs;
1153 {
1154         /* TODO copy trapframe to regs */
1155         return (0);
1156 }
1157
1158 int
1159 set_regs(td, regs)
1160         struct thread *td;
1161         struct reg *regs;
1162 {
1163         /* TODO copy regs to trapframe */
1164         return (0);
1165 }
1166
1167 int
1168 fill_dbregs(struct thread *td, struct dbreg *dbregs)
1169 {
1170
1171         return (ENOSYS);
1172 }
1173
1174 int
1175 set_dbregs(struct thread *td, struct dbreg *dbregs)
1176 {
1177
1178         return (ENOSYS);
1179 }
1180
1181 int
1182 fill_fpregs(td, fpregs)
1183         struct thread *td;
1184         struct fpreg *fpregs;
1185 {
1186         /* TODO copy fpu state to fpregs */
1187         ia64_fpstate_save(td, 0);
1188
1189 #if 0
1190         bcopy(&td->td_pcb->pcb_fp, fpregs, sizeof *fpregs);
1191 #endif
1192         return (0);
1193 }
1194
1195 int
1196 set_fpregs(td, fpregs)
1197         struct thread *td;
1198         struct fpreg *fpregs;
1199 {
1200         /* TODO copy fpregs fpu state */
1201         ia64_fpstate_drop(td);
1202
1203 #if 0
1204         bcopy(fpregs, &td->td_pcb->pcb_fp, sizeof *fpregs);
1205 #endif
1206         return (0);
1207 }
1208
1209 #ifndef DDB
1210 void
1211 Debugger(const char *msg)
1212 {
1213         printf("Debugger(\"%s\") called.\n", msg);
1214 }
1215 #endif /* no DDB */
1216
1217 #include <sys/disklabel.h>
1218
1219 /*
1220  * Determine the size of the transfer, and make sure it is
1221  * within the boundaries of the partition. Adjust transfer
1222  * if needed, and signal errors or early completion.
1223  */
1224 int
1225 bounds_check_with_label(struct bio *bp, struct disklabel *lp, int wlabel)
1226 {
1227 #if 0
1228         struct partition *p = lp->d_partitions + dkpart(bp->bio_dev);
1229         int labelsect = lp->d_partitions[0].p_offset;
1230         int maxsz = p->p_size,
1231                 sz = (bp->bio_bcount + DEV_BSIZE - 1) >> DEV_BSHIFT;
1232
1233         /* overwriting disk label ? */
1234         /* XXX should also protect bootstrap in first 8K */
1235         if (bp->bio_blkno + p->p_offset <= LABELSECTOR + labelsect &&
1236 #if LABELSECTOR != 0
1237             bp->bio_blkno + p->p_offset + sz > LABELSECTOR + labelsect &&
1238 #endif
1239             (bp->bio_cmd == BIO_WRITE) && wlabel == 0) {
1240                 bp->bio_error = EROFS;
1241                 goto bad;
1242         }
1243
1244 #if     defined(DOSBBSECTOR) && defined(notyet)
1245         /* overwriting master boot record? */
1246         if (bp->bio_blkno + p->p_offset <= DOSBBSECTOR &&
1247             (bp->bio_cmd == BIO_WRITE) && wlabel == 0) {
1248                 bp->bio_error = EROFS;
1249                 goto bad;
1250         }
1251 #endif
1252
1253         /* beyond partition? */
1254         if (bp->bio_blkno < 0 || bp->bio_blkno + sz > maxsz) {
1255                 /* if exactly at end of disk, return an EOF */
1256                 if (bp->bio_blkno == maxsz) {
1257                         bp->bio_resid = bp->bio_bcount;
1258                         return(0);
1259                 }
1260                 /* or truncate if part of it fits */
1261                 sz = maxsz - bp->bio_blkno;
1262                 if (sz <= 0) {
1263                         bp->bio_error = EINVAL;
1264                         goto bad;
1265                 }
1266                 bp->bio_bcount = sz << DEV_BSHIFT;
1267         }
1268
1269         bp->bio_pblkno = bp->bio_blkno + p->p_offset;
1270         return(1);
1271
1272 bad:
1273 #endif
1274         bp->bio_flags |= BIO_ERROR;
1275         return(-1);
1276
1277 }
1278
1279 static int
1280 sysctl_machdep_adjkerntz(SYSCTL_HANDLER_ARGS)
1281 {
1282         int error;
1283         error = sysctl_handle_int(oidp, oidp->oid_arg1, oidp->oid_arg2,
1284                 req);
1285         if (!error && req->newptr)
1286                 resettodr();
1287         return (error);
1288 }
1289
1290 SYSCTL_PROC(_machdep, CPU_ADJKERNTZ, adjkerntz, CTLTYPE_INT|CTLFLAG_RW,
1291         &adjkerntz, 0, sysctl_machdep_adjkerntz, "I", "");
1292
1293 SYSCTL_INT(_machdep, CPU_DISRTCSET, disable_rtc_set,
1294         CTLFLAG_RW, &disable_rtc_set, 0, "");
1295
1296 SYSCTL_INT(_machdep, CPU_WALLCLOCK, wall_cmos_clock,
1297         CTLFLAG_RW, &wall_cmos_clock, 0, "");
1298
1299 void
1300 ia64_fpstate_check(struct thread *td)
1301 {
1302         if ((td->td_frame->tf_cr_ipsr & IA64_PSR_DFH) == 0)
1303                 if (td != PCPU_GET(fpcurthread))
1304                         panic("ia64_fpstate_check: bogus");
1305 }
1306
1307 /*
1308  * Save the high floating point state in the pcb. Use this to get
1309  * read-only access to the floating point state. If write is true, the
1310  * current fp process is cleared so that fp state can safely be
1311  * modified. The process will automatically reload the changed state
1312  * by generating a disabled fp trap.
1313  */
1314 void
1315 ia64_fpstate_save(struct thread *td, int write)
1316 {
1317         if (td == PCPU_GET(fpcurthread)) {
1318                 /*
1319                  * Save the state in the pcb.
1320                  */
1321                 savehighfp(td->td_pcb->pcb_highfp);
1322
1323                 if (write) {
1324                         td->td_frame->tf_cr_ipsr |= IA64_PSR_DFH;
1325                         PCPU_SET(fpcurthread, NULL);
1326                 }
1327         }
1328 }
1329
1330 /*
1331  * Relinquish ownership of the FP state. This is called instead of
1332  * ia64_save_fpstate() if the entire FP state is being changed
1333  * (e.g. on sigreturn).
1334  */
1335 void
1336 ia64_fpstate_drop(struct thread *td)
1337 {
1338         if (td == PCPU_GET(fpcurthread)) {
1339                 td->td_frame->tf_cr_ipsr |= IA64_PSR_DFH;
1340                 PCPU_SET(fpcurthread, NULL);
1341         }
1342 }
1343
1344 /*
1345  * Switch the current owner of the fp state to p, reloading the state
1346  * from the pcb.
1347  */
1348 void
1349 ia64_fpstate_switch(struct thread *td)
1350 {
1351         if (PCPU_GET(fpcurthread)) {
1352                 /*
1353                  * Dump the old fp state if its valid.
1354                  */
1355                 savehighfp(PCPU_GET(fpcurthread)->td_pcb->pcb_highfp);
1356                 PCPU_GET(fpcurthread)->td_frame->tf_cr_ipsr |= IA64_PSR_DFH;
1357         }
1358
1359         /*
1360          * Remember the new FP owner and reload its state.
1361          */
1362         PCPU_SET(fpcurthread, td);
1363         restorehighfp(td->td_pcb->pcb_highfp);
1364         td->td_frame->tf_cr_ipsr &= ~IA64_PSR_DFH;
1365
1366         td->td_md.md_flags |= MDP_FPUSED;
1367 }
1368
1369 /*
1370  * Utility functions for manipulating instruction bundles.
1371  */
1372 void
1373 ia64_unpack_bundle(u_int64_t low, u_int64_t high, struct ia64_bundle *bp)
1374 {
1375         bp->template = low & 0x1f;
1376         bp->slot[0] = (low >> 5) & ((1L<<41) - 1);
1377         bp->slot[1] = (low >> 46) | ((high & ((1L<<23) - 1)) << 18);
1378         bp->slot[2] = (high >> 23);
1379 }
1380
1381 void
1382 ia64_pack_bundle(u_int64_t *lowp, u_int64_t *highp,
1383                  const struct ia64_bundle *bp)
1384 {
1385         u_int64_t low, high;
1386
1387         low = bp->template | (bp->slot[0] << 5) | (bp->slot[1] << 46);
1388         high = (bp->slot[1] >> 18) | (bp->slot[2] << 23);
1389         *lowp = low;
1390         *highp = high;
1391 }
1392
1393 static int
1394 rse_slot(u_int64_t *bsp)
1395 {
1396         return ((u_int64_t) bsp >> 3) & 0x3f;
1397 }
1398
1399 /*
1400  * Return the address of register regno (regno >= 32) given that bsp
1401  * points at the base of the register stack frame.
1402  */
1403 u_int64_t *
1404 ia64_rse_register_address(u_int64_t *bsp, int regno)
1405 {
1406         int off = regno - 32;
1407         u_int64_t rnats = (rse_slot(bsp) + off) / 63;
1408         return bsp + off + rnats;
1409 }
1410
1411 /*
1412  * Calculate the base address of the previous frame given that the
1413  * current frame's locals area is 'size'.
1414  */
1415 u_int64_t *
1416 ia64_rse_previous_frame(u_int64_t *bsp, int size)
1417 {
1418         int slot = rse_slot(bsp);
1419         int rnats = 0;
1420         int count = size;
1421
1422         while (count > slot) {
1423                 count -= 63;
1424                 rnats++;
1425                 slot = 63;
1426         }
1427         return bsp - size - rnats;
1428 }
1429