]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/arm/machdep.c
MFV r354378,r354379,r354386: 10499 Multi-modifier protection (MMP)
[FreeBSD/FreeBSD.git] / sys / arm / arm / machdep.c
1 /*      $NetBSD: arm32_machdep.c,v 1.44 2004/03/24 15:34:47 atatat Exp $        */
2
3 /*-
4  * SPDX-License-Identifier: BSD-4-Clause
5  *
6  * Copyright (c) 2004 Olivier Houchard
7  * Copyright (c) 1994-1998 Mark Brinicombe.
8  * Copyright (c) 1994 Brini.
9  * All rights reserved.
10  *
11  * This code is derived from software written for Brini by Mark Brinicombe
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. All advertising materials mentioning features or use of this software
22  *    must display the following acknowledgement:
23  *      This product includes software developed by Mark Brinicombe
24  *      for the NetBSD Project.
25  * 4. The name of the company nor the name of the author may be used to
26  *    endorse or promote products derived from this software without specific
27  *    prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
30  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
33  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
34  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39  * SUCH DAMAGE.
40  *
41  * Machine dependent functions for kernel setup
42  *
43  * Created      : 17/09/94
44  * Updated      : 18/04/01 updated for new wscons
45  */
46
47 #include "opt_ddb.h"
48 #include "opt_kstack_pages.h"
49 #include "opt_platform.h"
50 #include "opt_sched.h"
51 #include "opt_timer.h"
52
53 #include <sys/cdefs.h>
54 __FBSDID("$FreeBSD$");
55
56 #include <sys/param.h>
57 #include <sys/buf.h>
58 #include <sys/bus.h>
59 #include <sys/cons.h>
60 #include <sys/cpu.h>
61 #include <sys/devmap.h>
62 #include <sys/efi.h>
63 #include <sys/imgact.h>
64 #include <sys/kdb.h>
65 #include <sys/kernel.h>
66 #include <sys/ktr.h>
67 #include <sys/linker.h>
68 #include <sys/msgbuf.h>
69 #include <sys/reboot.h>
70 #include <sys/rwlock.h>
71 #include <sys/sched.h>
72 #include <sys/syscallsubr.h>
73 #include <sys/sysent.h>
74 #include <sys/sysproto.h>
75 #include <sys/vmmeter.h>
76
77 #include <vm/vm_object.h>
78 #include <vm/vm_page.h>
79 #include <vm/vm_pager.h>
80
81 #include <machine/asm.h>
82 #include <machine/debug_monitor.h>
83 #include <machine/machdep.h>
84 #include <machine/metadata.h>
85 #include <machine/pcb.h>
86 #include <machine/physmem.h>
87 #include <machine/platform.h>
88 #include <machine/sysarch.h>
89 #include <machine/undefined.h>
90 #include <machine/vfp.h>
91 #include <machine/vmparam.h>
92
93 #ifdef FDT
94 #include <dev/fdt/fdt_common.h>
95 #include <machine/ofw_machdep.h>
96 #endif
97
98 #ifdef DEBUG
99 #define debugf(fmt, args...) printf(fmt, ##args)
100 #else
101 #define debugf(fmt, args...)
102 #endif
103
104 #if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \
105     defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) || \
106     defined(COMPAT_FREEBSD9)
107 #error FreeBSD/arm doesn't provide compatibility with releases prior to 10
108 #endif
109
110 #if __ARM_ARCH >= 6 && !defined(INTRNG)
111 #error armv6 requires INTRNG
112 #endif
113
114 #ifndef _ARM_ARCH_5E
115 #error FreeBSD requires ARMv5 or later
116 #endif
117
118 struct pcpu __pcpu[MAXCPU];
119 struct pcpu *pcpup = &__pcpu[0];
120
121 static struct trapframe proc0_tf;
122 uint32_t cpu_reset_address = 0;
123 int cold = 1;
124 vm_offset_t vector_page;
125
126 int (*_arm_memcpy)(void *, void *, int, int) = NULL;
127 int (*_arm_bzero)(void *, int, int) = NULL;
128 int _min_memcpy_size = 0;
129 int _min_bzero_size = 0;
130
131 extern int *end;
132
133 #ifdef FDT
134 vm_paddr_t pmap_pa;
135 #if __ARM_ARCH >= 6
136 vm_offset_t systempage;
137 vm_offset_t irqstack;
138 vm_offset_t undstack;
139 vm_offset_t abtstack;
140 #else
141 /*
142  * This is the number of L2 page tables required for covering max
143  * (hypothetical) memsize of 4GB and all kernel mappings (vectors, msgbuf,
144  * stacks etc.), uprounded to be divisible by 4.
145  */
146 #define KERNEL_PT_MAX   78
147 static struct pv_addr kernel_pt_table[KERNEL_PT_MAX];
148 struct pv_addr systempage;
149 static struct pv_addr msgbufpv;
150 struct pv_addr irqstack;
151 struct pv_addr undstack;
152 struct pv_addr abtstack;
153 static struct pv_addr kernelstack;
154 #endif /* __ARM_ARCH >= 6 */
155 #endif /* FDT */
156
157 #ifdef PLATFORM
158 static delay_func *delay_impl;
159 static void *delay_arg;
160 #endif
161
162 struct kva_md_info kmi;
163
164 /*
165  * arm32_vector_init:
166  *
167  *      Initialize the vector page, and select whether or not to
168  *      relocate the vectors.
169  *
170  *      NOTE: We expect the vector page to be mapped at its expected
171  *      destination.
172  */
173
174 extern unsigned int page0[], page0_data[];
175 void
176 arm_vector_init(vm_offset_t va, int which)
177 {
178         unsigned int *vectors = (int *) va;
179         unsigned int *vectors_data = vectors + (page0_data - page0);
180         int vec;
181
182         /*
183          * Loop through the vectors we're taking over, and copy the
184          * vector's insn and data word.
185          */
186         for (vec = 0; vec < ARM_NVEC; vec++) {
187                 if ((which & (1 << vec)) == 0) {
188                         /* Don't want to take over this vector. */
189                         continue;
190                 }
191                 vectors[vec] = page0[vec];
192                 vectors_data[vec] = page0_data[vec];
193         }
194
195         /* Now sync the vectors. */
196         icache_sync(va, (ARM_NVEC * 2) * sizeof(u_int));
197
198         vector_page = va;
199 #if __ARM_ARCH < 6
200         if (va == ARM_VECTORS_HIGH) {
201                 /*
202                  * Enable high vectors in the system control reg (SCTLR).
203                  *
204                  * Assume the MD caller knows what it's doing here, and really
205                  * does want the vector page relocated.
206                  *
207                  * Note: This has to be done here (and not just in
208                  * cpu_setup()) because the vector page needs to be
209                  * accessible *before* cpu_startup() is called.
210                  * Think ddb(9) ...
211                  */
212                 cpu_control(CPU_CONTROL_VECRELOC, CPU_CONTROL_VECRELOC);
213         }
214 #endif
215 }
216
217 static void
218 cpu_startup(void *dummy)
219 {
220         struct pcb *pcb = thread0.td_pcb;
221         const unsigned int mbyte = 1024 * 1024;
222 #if __ARM_ARCH < 6 && !defined(ARM_CACHE_LOCK_ENABLE)
223         vm_page_t m;
224 #endif
225
226         identify_arm_cpu();
227
228         vm_ksubmap_init(&kmi);
229
230         /*
231          * Display the RAM layout.
232          */
233         printf("real memory  = %ju (%ju MB)\n",
234             (uintmax_t)arm32_ptob(realmem),
235             (uintmax_t)arm32_ptob(realmem) / mbyte);
236         printf("avail memory = %ju (%ju MB)\n",
237             (uintmax_t)arm32_ptob(vm_free_count()),
238             (uintmax_t)arm32_ptob(vm_free_count()) / mbyte);
239         if (bootverbose) {
240                 arm_physmem_print_tables();
241                 devmap_print_table();
242         }
243
244         bufinit();
245         vm_pager_bufferinit();
246         pcb->pcb_regs.sf_sp = (u_int)thread0.td_kstack +
247             USPACE_SVC_STACK_TOP;
248         pmap_set_pcb_pagedir(kernel_pmap, pcb);
249 #if __ARM_ARCH < 6
250         vector_page_setprot(VM_PROT_READ);
251         pmap_postinit();
252 #ifdef ARM_CACHE_LOCK_ENABLE
253         pmap_kenter_user(ARM_TP_ADDRESS, ARM_TP_ADDRESS);
254         arm_lock_cache_line(ARM_TP_ADDRESS);
255 #else
256         m = vm_page_alloc(NULL, 0, VM_ALLOC_NOOBJ | VM_ALLOC_ZERO);
257         pmap_kenter_user(ARM_TP_ADDRESS, VM_PAGE_TO_PHYS(m));
258 #endif
259         *(uint32_t *)ARM_RAS_START = 0;
260         *(uint32_t *)ARM_RAS_END = 0xffffffff;
261 #endif
262 }
263
264 SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL);
265
266 /*
267  * Flush the D-cache for non-DMA I/O so that the I-cache can
268  * be made coherent later.
269  */
270 void
271 cpu_flush_dcache(void *ptr, size_t len)
272 {
273
274         dcache_wb_poc((vm_offset_t)ptr, (vm_paddr_t)vtophys(ptr), len);
275 }
276
277 /* Get current clock frequency for the given cpu id. */
278 int
279 cpu_est_clockrate(int cpu_id, uint64_t *rate)
280 {
281 #if __ARM_ARCH >= 6
282         struct pcpu *pc;
283
284         pc = pcpu_find(cpu_id);
285         if (pc == NULL || rate == NULL)
286                 return (EINVAL);
287
288         if (pc->pc_clock == 0)
289                 return (EOPNOTSUPP);
290
291         *rate = pc->pc_clock;
292
293         return (0);
294 #else
295         return (ENXIO);
296 #endif
297 }
298
299 void
300 cpu_idle(int busy)
301 {
302
303         CTR2(KTR_SPARE2, "cpu_idle(%d) at %d", busy, curcpu);
304         spinlock_enter();
305 #ifndef NO_EVENTTIMERS
306         if (!busy)
307                 cpu_idleclock();
308 #endif
309         if (!sched_runnable())
310                 cpu_sleep(0);
311 #ifndef NO_EVENTTIMERS
312         if (!busy)
313                 cpu_activeclock();
314 #endif
315         spinlock_exit();
316         CTR2(KTR_SPARE2, "cpu_idle(%d) at %d done", busy, curcpu);
317 }
318
319 int
320 cpu_idle_wakeup(int cpu)
321 {
322
323         return (0);
324 }
325
326 #ifdef NO_EVENTTIMERS
327 /*
328  * Most ARM platforms don't need to do anything special to init their clocks
329  * (they get intialized during normal device attachment), and by not defining a
330  * cpu_initclocks() function they get this generic one.  Any platform that needs
331  * to do something special can just provide their own implementation, which will
332  * override this one due to the weak linkage.
333  */
334 void
335 arm_generic_initclocks(void)
336 {
337 }
338 __weak_reference(arm_generic_initclocks, cpu_initclocks);
339
340 #else
341 void
342 cpu_initclocks(void)
343 {
344
345 #ifdef SMP
346         if (PCPU_GET(cpuid) == 0)
347                 cpu_initclocks_bsp();
348         else
349                 cpu_initclocks_ap();
350 #else
351         cpu_initclocks_bsp();
352 #endif
353 }
354 #endif
355
356 #ifdef PLATFORM
357 void
358 arm_set_delay(delay_func *impl, void *arg)
359 {
360
361         KASSERT(impl != NULL, ("No DELAY implementation"));
362         delay_impl = impl;
363         delay_arg = arg;
364 }
365
366 void
367 DELAY(int usec)
368 {
369
370         TSENTER();
371         delay_impl(usec, delay_arg);
372         TSEXIT();
373 }
374 #endif
375
376 void
377 cpu_pcpu_init(struct pcpu *pcpu, int cpuid, size_t size)
378 {
379 }
380
381 void
382 spinlock_enter(void)
383 {
384         struct thread *td;
385         register_t cspr;
386
387         td = curthread;
388         if (td->td_md.md_spinlock_count == 0) {
389                 cspr = disable_interrupts(PSR_I | PSR_F);
390                 td->td_md.md_spinlock_count = 1;
391                 td->td_md.md_saved_cspr = cspr;
392         } else
393                 td->td_md.md_spinlock_count++;
394         critical_enter();
395 }
396
397 void
398 spinlock_exit(void)
399 {
400         struct thread *td;
401         register_t cspr;
402
403         td = curthread;
404         critical_exit();
405         cspr = td->td_md.md_saved_cspr;
406         td->td_md.md_spinlock_count--;
407         if (td->td_md.md_spinlock_count == 0)
408                 restore_interrupts(cspr);
409 }
410
411 /*
412  * Clear registers on exec
413  */
414 void
415 exec_setregs(struct thread *td, struct image_params *imgp, u_long stack)
416 {
417         struct trapframe *tf = td->td_frame;
418
419         memset(tf, 0, sizeof(*tf));
420         tf->tf_usr_sp = stack;
421         tf->tf_usr_lr = imgp->entry_addr;
422         tf->tf_svc_lr = 0x77777777;
423         tf->tf_pc = imgp->entry_addr;
424         tf->tf_spsr = PSR_USR32_MODE;
425 }
426
427
428 #ifdef VFP
429 /*
430  * Get machine VFP context.
431  */
432 void
433 get_vfpcontext(struct thread *td, mcontext_vfp_t *vfp)
434 {
435         struct pcb *pcb;
436
437         pcb = td->td_pcb;
438         if (td == curthread) {
439                 critical_enter();
440                 vfp_store(&pcb->pcb_vfpstate, false);
441                 critical_exit();
442         } else
443                 MPASS(TD_IS_SUSPENDED(td));
444         memcpy(vfp->mcv_reg, pcb->pcb_vfpstate.reg,
445             sizeof(vfp->mcv_reg));
446         vfp->mcv_fpscr = pcb->pcb_vfpstate.fpscr;
447 }
448
449 /*
450  * Set machine VFP context.
451  */
452 void
453 set_vfpcontext(struct thread *td, mcontext_vfp_t *vfp)
454 {
455         struct pcb *pcb;
456
457         pcb = td->td_pcb;
458         if (td == curthread) {
459                 critical_enter();
460                 vfp_discard(td);
461                 critical_exit();
462         } else
463                 MPASS(TD_IS_SUSPENDED(td));
464         memcpy(pcb->pcb_vfpstate.reg, vfp->mcv_reg,
465             sizeof(pcb->pcb_vfpstate.reg));
466         pcb->pcb_vfpstate.fpscr = vfp->mcv_fpscr;
467 }
468 #endif
469
470 int
471 arm_get_vfpstate(struct thread *td, void *args)
472 {
473         int rv;
474         struct arm_get_vfpstate_args ua;
475         mcontext_vfp_t  mcontext_vfp;
476
477         rv = copyin(args, &ua, sizeof(ua));
478         if (rv != 0)
479                 return (rv);
480         if (ua.mc_vfp_size != sizeof(mcontext_vfp_t))
481                 return (EINVAL);
482 #ifdef VFP
483         get_vfpcontext(td, &mcontext_vfp);
484 #else
485         bzero(&mcontext_vfp, sizeof(mcontext_vfp));
486 #endif
487
488         rv = copyout(&mcontext_vfp, ua.mc_vfp,  sizeof(mcontext_vfp));
489         if (rv != 0)
490                 return (rv);
491         return (0);
492 }
493
494 /*
495  * Get machine context.
496  */
497 int
498 get_mcontext(struct thread *td, mcontext_t *mcp, int clear_ret)
499 {
500         struct trapframe *tf = td->td_frame;
501         __greg_t *gr = mcp->__gregs;
502
503         if (clear_ret & GET_MC_CLEAR_RET) {
504                 gr[_REG_R0] = 0;
505                 gr[_REG_CPSR] = tf->tf_spsr & ~PSR_C;
506         } else {
507                 gr[_REG_R0]   = tf->tf_r0;
508                 gr[_REG_CPSR] = tf->tf_spsr;
509         }
510         gr[_REG_R1]   = tf->tf_r1;
511         gr[_REG_R2]   = tf->tf_r2;
512         gr[_REG_R3]   = tf->tf_r3;
513         gr[_REG_R4]   = tf->tf_r4;
514         gr[_REG_R5]   = tf->tf_r5;
515         gr[_REG_R6]   = tf->tf_r6;
516         gr[_REG_R7]   = tf->tf_r7;
517         gr[_REG_R8]   = tf->tf_r8;
518         gr[_REG_R9]   = tf->tf_r9;
519         gr[_REG_R10]  = tf->tf_r10;
520         gr[_REG_R11]  = tf->tf_r11;
521         gr[_REG_R12]  = tf->tf_r12;
522         gr[_REG_SP]   = tf->tf_usr_sp;
523         gr[_REG_LR]   = tf->tf_usr_lr;
524         gr[_REG_PC]   = tf->tf_pc;
525
526         mcp->mc_vfp_size = 0;
527         mcp->mc_vfp_ptr = NULL;
528         memset(&mcp->mc_spare, 0, sizeof(mcp->mc_spare));
529
530         return (0);
531 }
532
533 /*
534  * Set machine context.
535  *
536  * However, we don't set any but the user modifiable flags, and we won't
537  * touch the cs selector.
538  */
539 int
540 set_mcontext(struct thread *td, mcontext_t *mcp)
541 {
542         mcontext_vfp_t mc_vfp, *vfp;
543         struct trapframe *tf = td->td_frame;
544         const __greg_t *gr = mcp->__gregs;
545         int spsr;
546
547         /*
548          * Make sure the processor mode has not been tampered with and
549          * interrupts have not been disabled.
550          */
551         spsr = gr[_REG_CPSR];
552         if ((spsr & PSR_MODE) != PSR_USR32_MODE ||
553             (spsr & (PSR_I | PSR_F)) != 0)
554                 return (EINVAL);
555
556 #ifdef WITNESS
557         if (mcp->mc_vfp_size != 0 && mcp->mc_vfp_size != sizeof(mc_vfp)) {
558                 printf("%s: %s: Malformed mc_vfp_size: %d (0x%08X)\n",
559                     td->td_proc->p_comm, __func__,
560                     mcp->mc_vfp_size, mcp->mc_vfp_size);
561         } else if (mcp->mc_vfp_size != 0 && mcp->mc_vfp_ptr == NULL) {
562                 printf("%s: %s: c_vfp_size != 0 but mc_vfp_ptr == NULL\n",
563                     td->td_proc->p_comm, __func__);
564         }
565 #endif
566
567         if (mcp->mc_vfp_size == sizeof(mc_vfp) && mcp->mc_vfp_ptr != NULL) {
568                 if (copyin(mcp->mc_vfp_ptr, &mc_vfp, sizeof(mc_vfp)) != 0)
569                         return (EFAULT);
570                 vfp = &mc_vfp;
571         } else {
572                 vfp = NULL;
573         }
574
575         tf->tf_r0 = gr[_REG_R0];
576         tf->tf_r1 = gr[_REG_R1];
577         tf->tf_r2 = gr[_REG_R2];
578         tf->tf_r3 = gr[_REG_R3];
579         tf->tf_r4 = gr[_REG_R4];
580         tf->tf_r5 = gr[_REG_R5];
581         tf->tf_r6 = gr[_REG_R6];
582         tf->tf_r7 = gr[_REG_R7];
583         tf->tf_r8 = gr[_REG_R8];
584         tf->tf_r9 = gr[_REG_R9];
585         tf->tf_r10 = gr[_REG_R10];
586         tf->tf_r11 = gr[_REG_R11];
587         tf->tf_r12 = gr[_REG_R12];
588         tf->tf_usr_sp = gr[_REG_SP];
589         tf->tf_usr_lr = gr[_REG_LR];
590         tf->tf_pc = gr[_REG_PC];
591         tf->tf_spsr = gr[_REG_CPSR];
592 #ifdef VFP
593         if (vfp != NULL)
594                 set_vfpcontext(td, vfp);
595 #endif
596         return (0);
597 }
598
599 void
600 sendsig(catcher, ksi, mask)
601         sig_t catcher;
602         ksiginfo_t *ksi;
603         sigset_t *mask;
604 {
605         struct thread *td;
606         struct proc *p;
607         struct trapframe *tf;
608         struct sigframe *fp, frame;
609         struct sigacts *psp;
610         struct sysentvec *sysent;
611         int onstack;
612         int sig;
613         int code;
614
615         td = curthread;
616         p = td->td_proc;
617         PROC_LOCK_ASSERT(p, MA_OWNED);
618         sig = ksi->ksi_signo;
619         code = ksi->ksi_code;
620         psp = p->p_sigacts;
621         mtx_assert(&psp->ps_mtx, MA_OWNED);
622         tf = td->td_frame;
623         onstack = sigonstack(tf->tf_usr_sp);
624
625         CTR4(KTR_SIG, "sendsig: td=%p (%s) catcher=%p sig=%d", td, p->p_comm,
626             catcher, sig);
627
628         /* Allocate and validate space for the signal handler context. */
629         if ((td->td_pflags & TDP_ALTSTACK) != 0 && !(onstack) &&
630             SIGISMEMBER(psp->ps_sigonstack, sig)) {
631                 fp = (struct sigframe *)((uintptr_t)td->td_sigstk.ss_sp +
632                     td->td_sigstk.ss_size);
633 #if defined(COMPAT_43)
634                 td->td_sigstk.ss_flags |= SS_ONSTACK;
635 #endif
636         } else
637                 fp = (struct sigframe *)td->td_frame->tf_usr_sp;
638
639         /* make room on the stack */
640         fp--;
641
642         /* make the stack aligned */
643         fp = (struct sigframe *)STACKALIGN(fp);
644         /* Populate the siginfo frame. */
645         bzero(&frame, sizeof(frame));
646         get_mcontext(td, &frame.sf_uc.uc_mcontext, 0);
647 #ifdef VFP
648         get_vfpcontext(td, &frame.sf_vfp);
649         frame.sf_uc.uc_mcontext.mc_vfp_size = sizeof(fp->sf_vfp);
650         frame.sf_uc.uc_mcontext.mc_vfp_ptr = &fp->sf_vfp;
651 #else
652         frame.sf_uc.uc_mcontext.mc_vfp_size = 0;
653         frame.sf_uc.uc_mcontext.mc_vfp_ptr = NULL;
654 #endif
655         frame.sf_si = ksi->ksi_info;
656         frame.sf_uc.uc_sigmask = *mask;
657         frame.sf_uc.uc_stack = td->td_sigstk;
658         frame.sf_uc.uc_stack.ss_flags = (td->td_pflags & TDP_ALTSTACK) != 0 ?
659             (onstack ? SS_ONSTACK : 0) : SS_DISABLE;
660         mtx_unlock(&psp->ps_mtx);
661         PROC_UNLOCK(td->td_proc);
662
663         /* Copy the sigframe out to the user's stack. */
664         if (copyout(&frame, fp, sizeof(*fp)) != 0) {
665                 /* Process has trashed its stack. Kill it. */
666                 CTR2(KTR_SIG, "sendsig: sigexit td=%p fp=%p", td, fp);
667                 PROC_LOCK(p);
668                 sigexit(td, SIGILL);
669         }
670
671         /*
672          * Build context to run handler in.  We invoke the handler
673          * directly, only returning via the trampoline.  Note the
674          * trampoline version numbers are coordinated with machine-
675          * dependent code in libc.
676          */
677
678         tf->tf_r0 = sig;
679         tf->tf_r1 = (register_t)&fp->sf_si;
680         tf->tf_r2 = (register_t)&fp->sf_uc;
681
682         /* the trampoline uses r5 as the uc address */
683         tf->tf_r5 = (register_t)&fp->sf_uc;
684         tf->tf_pc = (register_t)catcher;
685         tf->tf_usr_sp = (register_t)fp;
686         sysent = p->p_sysent;
687         if (sysent->sv_sigcode_base != 0)
688                 tf->tf_usr_lr = (register_t)sysent->sv_sigcode_base;
689         else
690                 tf->tf_usr_lr = (register_t)(sysent->sv_psstrings -
691                     *(sysent->sv_szsigcode));
692         /* Set the mode to enter in the signal handler */
693 #if __ARM_ARCH >= 7
694         if ((register_t)catcher & 1)
695                 tf->tf_spsr |= PSR_T;
696         else
697                 tf->tf_spsr &= ~PSR_T;
698 #endif
699
700         CTR3(KTR_SIG, "sendsig: return td=%p pc=%#x sp=%#x", td, tf->tf_usr_lr,
701             tf->tf_usr_sp);
702
703         PROC_LOCK(p);
704         mtx_lock(&psp->ps_mtx);
705 }
706
707 int
708 sys_sigreturn(td, uap)
709         struct thread *td;
710         struct sigreturn_args /* {
711                 const struct __ucontext *sigcntxp;
712         } */ *uap;
713 {
714         ucontext_t uc;
715         int error;
716
717         if (uap == NULL)
718                 return (EFAULT);
719         if (copyin(uap->sigcntxp, &uc, sizeof(uc)))
720                 return (EFAULT);
721         /* Restore register context. */
722         error = set_mcontext(td, &uc.uc_mcontext);
723         if (error != 0)
724                 return (error);
725
726         /* Restore signal mask. */
727         kern_sigprocmask(td, SIG_SETMASK, &uc.uc_sigmask, NULL, 0);
728
729         return (EJUSTRETURN);
730 }
731
732 /*
733  * Construct a PCB from a trapframe. This is called from kdb_trap() where
734  * we want to start a backtrace from the function that caused us to enter
735  * the debugger. We have the context in the trapframe, but base the trace
736  * on the PCB. The PCB doesn't have to be perfect, as long as it contains
737  * enough for a backtrace.
738  */
739 void
740 makectx(struct trapframe *tf, struct pcb *pcb)
741 {
742         pcb->pcb_regs.sf_r4 = tf->tf_r4;
743         pcb->pcb_regs.sf_r5 = tf->tf_r5;
744         pcb->pcb_regs.sf_r6 = tf->tf_r6;
745         pcb->pcb_regs.sf_r7 = tf->tf_r7;
746         pcb->pcb_regs.sf_r8 = tf->tf_r8;
747         pcb->pcb_regs.sf_r9 = tf->tf_r9;
748         pcb->pcb_regs.sf_r10 = tf->tf_r10;
749         pcb->pcb_regs.sf_r11 = tf->tf_r11;
750         pcb->pcb_regs.sf_r12 = tf->tf_r12;
751         pcb->pcb_regs.sf_pc = tf->tf_pc;
752         pcb->pcb_regs.sf_lr = tf->tf_usr_lr;
753         pcb->pcb_regs.sf_sp = tf->tf_usr_sp;
754 }
755
756 void
757 pcpu0_init(void)
758 {
759 #if __ARM_ARCH >= 6
760         set_curthread(&thread0);
761 #endif
762         pcpu_init(pcpup, 0, sizeof(struct pcpu));
763         PCPU_SET(curthread, &thread0);
764 }
765
766 /*
767  * Initialize proc0
768  */
769 void
770 init_proc0(vm_offset_t kstack)
771 {
772         proc_linkup0(&proc0, &thread0);
773         thread0.td_kstack = kstack;
774         thread0.td_kstack_pages = kstack_pages;
775         thread0.td_pcb = (struct pcb *)(thread0.td_kstack +
776             thread0.td_kstack_pages * PAGE_SIZE) - 1;
777         thread0.td_pcb->pcb_flags = 0;
778         thread0.td_pcb->pcb_vfpcpu = -1;
779         thread0.td_pcb->pcb_vfpstate.fpscr = VFPSCR_DN;
780         thread0.td_frame = &proc0_tf;
781         pcpup->pc_curpcb = thread0.td_pcb;
782 }
783
784 #if __ARM_ARCH >= 6
785 void
786 set_stackptrs(int cpu)
787 {
788
789         set_stackptr(PSR_IRQ32_MODE,
790             irqstack + ((IRQ_STACK_SIZE * PAGE_SIZE) * (cpu + 1)));
791         set_stackptr(PSR_ABT32_MODE,
792             abtstack + ((ABT_STACK_SIZE * PAGE_SIZE) * (cpu + 1)));
793         set_stackptr(PSR_UND32_MODE,
794             undstack + ((UND_STACK_SIZE * PAGE_SIZE) * (cpu + 1)));
795 }
796 #else
797 void
798 set_stackptrs(int cpu)
799 {
800
801         set_stackptr(PSR_IRQ32_MODE,
802             irqstack.pv_va + ((IRQ_STACK_SIZE * PAGE_SIZE) * (cpu + 1)));
803         set_stackptr(PSR_ABT32_MODE,
804             abtstack.pv_va + ((ABT_STACK_SIZE * PAGE_SIZE) * (cpu + 1)));
805         set_stackptr(PSR_UND32_MODE,
806             undstack.pv_va + ((UND_STACK_SIZE * PAGE_SIZE) * (cpu + 1)));
807 }
808 #endif
809
810 static void
811 arm_kdb_init(void)
812 {
813
814         kdb_init();
815 #ifdef KDB
816         if (boothowto & RB_KDB)
817                 kdb_enter(KDB_WHY_BOOTFLAGS, "Boot flags requested debugger");
818 #endif
819 }
820
821 #ifdef FDT
822 #if __ARM_ARCH < 6
823 void *
824 initarm(struct arm_boot_params *abp)
825 {
826         struct mem_region mem_regions[FDT_MEM_REGIONS];
827         struct pv_addr kernel_l1pt;
828         struct pv_addr dpcpu;
829         vm_offset_t dtbp, freemempos, l2_start, lastaddr;
830         uint64_t memsize;
831         uint32_t l2size;
832         char *env;
833         void *kmdp;
834         u_int l1pagetable;
835         int i, j, err_devmap, mem_regions_sz;
836
837         lastaddr = parse_boot_param(abp);
838         arm_physmem_kernaddr = abp->abp_physaddr;
839
840         memsize = 0;
841
842         cpuinfo_init();
843         set_cpufuncs();
844
845         /*
846          * Find the dtb passed in by the boot loader.
847          */
848         kmdp = preload_search_by_type("elf kernel");
849         if (kmdp != NULL)
850                 dtbp = MD_FETCH(kmdp, MODINFOMD_DTBP, vm_offset_t);
851         else
852                 dtbp = (vm_offset_t)NULL;
853
854 #if defined(FDT_DTB_STATIC)
855         /*
856          * In case the device tree blob was not retrieved (from metadata) try
857          * to use the statically embedded one.
858          */
859         if (dtbp == (vm_offset_t)NULL)
860                 dtbp = (vm_offset_t)&fdt_static_dtb;
861 #endif
862
863         if (OF_install(OFW_FDT, 0) == FALSE)
864                 panic("Cannot install FDT");
865
866         if (OF_init((void *)dtbp) != 0)
867                 panic("OF_init failed with the found device tree");
868
869         /* Grab physical memory regions information from device tree. */
870         if (fdt_get_mem_regions(mem_regions, &mem_regions_sz, &memsize) != 0)
871                 panic("Cannot get physical memory regions");
872         arm_physmem_hardware_regions(mem_regions, mem_regions_sz);
873
874         /* Grab reserved memory regions information from device tree. */
875         if (fdt_get_reserved_regions(mem_regions, &mem_regions_sz) == 0)
876                 arm_physmem_exclude_regions(mem_regions, mem_regions_sz,
877                     EXFLAG_NODUMP | EXFLAG_NOALLOC);
878
879         /* Platform-specific initialisation */
880         platform_probe_and_attach();
881
882         pcpu0_init();
883
884         /* Do basic tuning, hz etc */
885         init_param1();
886
887         /* Calculate number of L2 tables needed for mapping vm_page_array */
888         l2size = (memsize / PAGE_SIZE) * sizeof(struct vm_page);
889         l2size = (l2size >> L1_S_SHIFT) + 1;
890
891         /*
892          * Add one table for end of kernel map, one for stacks, msgbuf and
893          * L1 and L2 tables map,  one for vectors map and two for
894          * l2 structures from pmap_bootstrap.
895          */
896         l2size += 5;
897
898         /* Make it divisible by 4 */
899         l2size = (l2size + 3) & ~3;
900
901         freemempos = (lastaddr + PAGE_MASK) & ~PAGE_MASK;
902
903         /* Define a macro to simplify memory allocation */
904 #define valloc_pages(var, np)                                           \
905         alloc_pages((var).pv_va, (np));                                 \
906         (var).pv_pa = (var).pv_va + (abp->abp_physaddr - KERNVIRTADDR);
907
908 #define alloc_pages(var, np)                                            \
909         (var) = freemempos;                                             \
910         freemempos += (np * PAGE_SIZE);                                 \
911         memset((char *)(var), 0, ((np) * PAGE_SIZE));
912
913         while (((freemempos - L1_TABLE_SIZE) & (L1_TABLE_SIZE - 1)) != 0)
914                 freemempos += PAGE_SIZE;
915         valloc_pages(kernel_l1pt, L1_TABLE_SIZE / PAGE_SIZE);
916
917         for (i = 0, j = 0; i < l2size; ++i) {
918                 if (!(i % (PAGE_SIZE / L2_TABLE_SIZE_REAL))) {
919                         valloc_pages(kernel_pt_table[i],
920                             L2_TABLE_SIZE / PAGE_SIZE);
921                         j = i;
922                 } else {
923                         kernel_pt_table[i].pv_va = kernel_pt_table[j].pv_va +
924                             L2_TABLE_SIZE_REAL * (i - j);
925                         kernel_pt_table[i].pv_pa =
926                             kernel_pt_table[i].pv_va - KERNVIRTADDR +
927                             abp->abp_physaddr;
928
929                 }
930         }
931         /*
932          * Allocate a page for the system page mapped to 0x00000000
933          * or 0xffff0000. This page will just contain the system vectors
934          * and can be shared by all processes.
935          */
936         valloc_pages(systempage, 1);
937
938         /* Allocate dynamic per-cpu area. */
939         valloc_pages(dpcpu, DPCPU_SIZE / PAGE_SIZE);
940         dpcpu_init((void *)dpcpu.pv_va, 0);
941
942         /* Allocate stacks for all modes */
943         valloc_pages(irqstack, IRQ_STACK_SIZE * MAXCPU);
944         valloc_pages(abtstack, ABT_STACK_SIZE * MAXCPU);
945         valloc_pages(undstack, UND_STACK_SIZE * MAXCPU);
946         valloc_pages(kernelstack, kstack_pages);
947         valloc_pages(msgbufpv, round_page(msgbufsize) / PAGE_SIZE);
948
949         /*
950          * Now we start construction of the L1 page table
951          * We start by mapping the L2 page tables into the L1.
952          * This means that we can replace L1 mappings later on if necessary
953          */
954         l1pagetable = kernel_l1pt.pv_va;
955
956         /*
957          * Try to map as much as possible of kernel text and data using
958          * 1MB section mapping and for the rest of initial kernel address
959          * space use L2 coarse tables.
960          *
961          * Link L2 tables for mapping remainder of kernel (modulo 1MB)
962          * and kernel structures
963          */
964         l2_start = lastaddr & ~(L1_S_OFFSET);
965         for (i = 0 ; i < l2size - 1; i++)
966                 pmap_link_l2pt(l1pagetable, l2_start + i * L1_S_SIZE,
967                     &kernel_pt_table[i]);
968
969         pmap_curmaxkvaddr = l2_start + (l2size - 1) * L1_S_SIZE;
970
971         /* Map kernel code and data */
972         pmap_map_chunk(l1pagetable, KERNVIRTADDR, abp->abp_physaddr,
973            (((uint32_t)(lastaddr) - KERNVIRTADDR) + PAGE_MASK) & ~PAGE_MASK,
974             VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
975
976         /* Map L1 directory and allocated L2 page tables */
977         pmap_map_chunk(l1pagetable, kernel_l1pt.pv_va, kernel_l1pt.pv_pa,
978             L1_TABLE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE);
979
980         pmap_map_chunk(l1pagetable, kernel_pt_table[0].pv_va,
981             kernel_pt_table[0].pv_pa,
982             L2_TABLE_SIZE_REAL * l2size,
983             VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE);
984
985         /* Map allocated DPCPU, stacks and msgbuf */
986         pmap_map_chunk(l1pagetable, dpcpu.pv_va, dpcpu.pv_pa,
987             freemempos - dpcpu.pv_va,
988             VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
989
990         /* Link and map the vector page */
991         pmap_link_l2pt(l1pagetable, ARM_VECTORS_HIGH,
992             &kernel_pt_table[l2size - 1]);
993         pmap_map_entry(l1pagetable, ARM_VECTORS_HIGH, systempage.pv_pa,
994             VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE, PTE_CACHE);
995
996         /* Establish static device mappings. */
997         err_devmap = platform_devmap_init();
998         devmap_bootstrap(l1pagetable, NULL);
999         vm_max_kernel_address = platform_lastaddr();
1000
1001         cpu_domains((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL * 2)) | DOMAIN_CLIENT);
1002         pmap_pa = kernel_l1pt.pv_pa;
1003         cpu_setttb(kernel_l1pt.pv_pa);
1004         cpu_tlb_flushID();
1005         cpu_domains(DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL * 2));
1006
1007         /*
1008          * Now that proper page tables are installed, call cpu_setup() to enable
1009          * instruction and data caches and other chip-specific features.
1010          */
1011         cpu_setup();
1012
1013         /*
1014          * Only after the SOC registers block is mapped we can perform device
1015          * tree fixups, as they may attempt to read parameters from hardware.
1016          */
1017         OF_interpret("perform-fixup", 0);
1018
1019         platform_gpio_init();
1020
1021         cninit();
1022
1023         debugf("initarm: console initialized\n");
1024         debugf(" arg1 kmdp = 0x%08x\n", (uint32_t)kmdp);
1025         debugf(" boothowto = 0x%08x\n", boothowto);
1026         debugf(" dtbp = 0x%08x\n", (uint32_t)dtbp);
1027         arm_print_kenv();
1028
1029         env = kern_getenv("kernelname");
1030         if (env != NULL) {
1031                 strlcpy(kernelname, env, sizeof(kernelname));
1032                 freeenv(env);
1033         }
1034
1035         if (err_devmap != 0)
1036                 printf("WARNING: could not fully configure devmap, error=%d\n",
1037                     err_devmap);
1038
1039         platform_late_init();
1040
1041         /*
1042          * Pages were allocated during the secondary bootstrap for the
1043          * stacks for different CPU modes.
1044          * We must now set the r13 registers in the different CPU modes to
1045          * point to these stacks.
1046          * Since the ARM stacks use STMFD etc. we must set r13 to the top end
1047          * of the stack memory.
1048          */
1049         cpu_control(CPU_CONTROL_MMU_ENABLE, CPU_CONTROL_MMU_ENABLE);
1050
1051         set_stackptrs(0);
1052
1053         /*
1054          * We must now clean the cache again....
1055          * Cleaning may be done by reading new data to displace any
1056          * dirty data in the cache. This will have happened in cpu_setttb()
1057          * but since we are boot strapping the addresses used for the read
1058          * may have just been remapped and thus the cache could be out
1059          * of sync. A re-clean after the switch will cure this.
1060          * After booting there are no gross relocations of the kernel thus
1061          * this problem will not occur after initarm().
1062          */
1063         cpu_idcache_wbinv_all();
1064
1065         undefined_init();
1066
1067         init_proc0(kernelstack.pv_va);
1068
1069         arm_vector_init(ARM_VECTORS_HIGH, ARM_VEC_ALL);
1070         pmap_bootstrap(freemempos, &kernel_l1pt);
1071         msgbufp = (void *)msgbufpv.pv_va;
1072         msgbufinit(msgbufp, msgbufsize);
1073         mutex_init();
1074
1075         /*
1076          * Exclude the kernel (and all the things we allocated which immediately
1077          * follow the kernel) from the VM allocation pool but not from crash
1078          * dumps.  virtual_avail is a global variable which tracks the kva we've
1079          * "allocated" while setting up pmaps.
1080          *
1081          * Prepare the list of physical memory available to the vm subsystem.
1082          */
1083         arm_physmem_exclude_region(abp->abp_physaddr,
1084             (virtual_avail - KERNVIRTADDR), EXFLAG_NOALLOC);
1085         arm_physmem_init_kernel_globals();
1086
1087         init_param2(physmem);
1088         dbg_monitor_init();
1089         arm_kdb_init();
1090
1091         return ((void *)(kernelstack.pv_va + USPACE_SVC_STACK_TOP -
1092             sizeof(struct pcb)));
1093 }
1094 #else /* __ARM_ARCH < 6 */
1095 void *
1096 initarm(struct arm_boot_params *abp)
1097 {
1098         struct mem_region mem_regions[FDT_MEM_REGIONS];
1099         vm_paddr_t lastaddr;
1100         vm_offset_t dtbp, kernelstack, dpcpu;
1101         char *env;
1102         void *kmdp;
1103         int err_devmap, mem_regions_sz;
1104 #ifdef EFI
1105         struct efi_map_header *efihdr;
1106 #endif
1107
1108         /* get last allocated physical address */
1109         arm_physmem_kernaddr = abp->abp_physaddr;
1110         lastaddr = parse_boot_param(abp) - KERNVIRTADDR + arm_physmem_kernaddr;
1111
1112         set_cpufuncs();
1113         cpuinfo_init();
1114
1115         /*
1116          * Find the dtb passed in by the boot loader.
1117          */
1118         kmdp = preload_search_by_type("elf kernel");
1119         dtbp = MD_FETCH(kmdp, MODINFOMD_DTBP, vm_offset_t);
1120 #if defined(FDT_DTB_STATIC)
1121         /*
1122          * In case the device tree blob was not retrieved (from metadata) try
1123          * to use the statically embedded one.
1124          */
1125         if (dtbp == (vm_offset_t)NULL)
1126                 dtbp = (vm_offset_t)&fdt_static_dtb;
1127 #endif
1128
1129         if (OF_install(OFW_FDT, 0) == FALSE)
1130                 panic("Cannot install FDT");
1131
1132         if (OF_init((void *)dtbp) != 0)
1133                 panic("OF_init failed with the found device tree");
1134
1135 #if defined(LINUX_BOOT_ABI)
1136         arm_parse_fdt_bootargs();
1137 #endif
1138
1139 #ifdef EFI
1140         efihdr = (struct efi_map_header *)preload_search_info(kmdp,
1141             MODINFO_METADATA | MODINFOMD_EFI_MAP);
1142         if (efihdr != NULL) {
1143                 arm_add_efi_map_entries(efihdr, mem_regions, &mem_regions_sz);
1144         } else
1145 #endif
1146         {
1147                 /* Grab physical memory regions information from device tree. */
1148                 if (fdt_get_mem_regions(mem_regions, &mem_regions_sz,NULL) != 0)
1149                         panic("Cannot get physical memory regions");
1150         }
1151         arm_physmem_hardware_regions(mem_regions, mem_regions_sz);
1152
1153         /* Grab reserved memory regions information from device tree. */
1154         if (fdt_get_reserved_regions(mem_regions, &mem_regions_sz) == 0)
1155                 arm_physmem_exclude_regions(mem_regions, mem_regions_sz,
1156                     EXFLAG_NODUMP | EXFLAG_NOALLOC);
1157
1158         /*
1159          * Set TEX remapping registers.
1160          * Setup kernel page tables and switch to kernel L1 page table.
1161          */
1162         pmap_set_tex();
1163         pmap_bootstrap_prepare(lastaddr);
1164
1165         /*
1166          * If EARLY_PRINTF support is enabled, we need to re-establish the
1167          * mapping after pmap_bootstrap_prepare() switches to new page tables.
1168          * Note that we can only do the remapping if the VA is outside the
1169          * kernel, now that we have real virtual (not VA=PA) mappings in effect.
1170          * Early printf does not work between the time pmap_set_tex() does
1171          * cp15_prrr_set() and this code remaps the VA.
1172          */
1173 #if defined(EARLY_PRINTF) && defined(SOCDEV_PA) && defined(SOCDEV_VA) && SOCDEV_VA < KERNBASE
1174         pmap_preboot_map_attr(SOCDEV_PA, SOCDEV_VA, 1024 * 1024, 
1175             VM_PROT_READ | VM_PROT_WRITE, VM_MEMATTR_DEVICE);
1176 #endif
1177
1178         /*
1179          * Now that proper page tables are installed, call cpu_setup() to enable
1180          * instruction and data caches and other chip-specific features.
1181          */
1182         cpu_setup();
1183
1184         /* Platform-specific initialisation */
1185         platform_probe_and_attach();
1186         pcpu0_init();
1187
1188         /* Do basic tuning, hz etc */
1189         init_param1();
1190
1191         /*
1192          * Allocate a page for the system page mapped to 0xffff0000
1193          * This page will just contain the system vectors and can be
1194          * shared by all processes.
1195          */
1196         systempage = pmap_preboot_get_pages(1);
1197
1198         /* Map the vector page. */
1199         pmap_preboot_map_pages(systempage, ARM_VECTORS_HIGH,  1);
1200         if (virtual_end >= ARM_VECTORS_HIGH)
1201                 virtual_end = ARM_VECTORS_HIGH - 1;
1202
1203         /* Allocate dynamic per-cpu area. */
1204         dpcpu = pmap_preboot_get_vpages(DPCPU_SIZE / PAGE_SIZE);
1205         dpcpu_init((void *)dpcpu, 0);
1206
1207         /* Allocate stacks for all modes */
1208         irqstack    = pmap_preboot_get_vpages(IRQ_STACK_SIZE * MAXCPU);
1209         abtstack    = pmap_preboot_get_vpages(ABT_STACK_SIZE * MAXCPU);
1210         undstack    = pmap_preboot_get_vpages(UND_STACK_SIZE * MAXCPU );
1211         kernelstack = pmap_preboot_get_vpages(kstack_pages);
1212
1213         /* Allocate message buffer. */
1214         msgbufp = (void *)pmap_preboot_get_vpages(
1215             round_page(msgbufsize) / PAGE_SIZE);
1216
1217         /*
1218          * Pages were allocated during the secondary bootstrap for the
1219          * stacks for different CPU modes.
1220          * We must now set the r13 registers in the different CPU modes to
1221          * point to these stacks.
1222          * Since the ARM stacks use STMFD etc. we must set r13 to the top end
1223          * of the stack memory.
1224          */
1225         set_stackptrs(0);
1226         mutex_init();
1227
1228         /* Establish static device mappings. */
1229         err_devmap = platform_devmap_init();
1230         devmap_bootstrap(0, NULL);
1231         vm_max_kernel_address = platform_lastaddr();
1232
1233         /*
1234          * Only after the SOC registers block is mapped we can perform device
1235          * tree fixups, as they may attempt to read parameters from hardware.
1236          */
1237         OF_interpret("perform-fixup", 0);
1238         platform_gpio_init();
1239         cninit();
1240
1241         /*
1242          * If we made a mapping for EARLY_PRINTF after pmap_bootstrap_prepare(),
1243          * undo it now that the normal console printf works.
1244          */
1245 #if defined(EARLY_PRINTF) && defined(SOCDEV_PA) && defined(SOCDEV_VA) && SOCDEV_VA < KERNBASE
1246         pmap_kremove(SOCDEV_VA);
1247 #endif
1248
1249         debugf("initarm: console initialized\n");
1250         debugf(" arg1 kmdp = 0x%08x\n", (uint32_t)kmdp);
1251         debugf(" boothowto = 0x%08x\n", boothowto);
1252         debugf(" dtbp = 0x%08x\n", (uint32_t)dtbp);
1253         debugf(" lastaddr1: 0x%08x\n", lastaddr);
1254         arm_print_kenv();
1255
1256         env = kern_getenv("kernelname");
1257         if (env != NULL)
1258                 strlcpy(kernelname, env, sizeof(kernelname));
1259
1260         if (err_devmap != 0)
1261                 printf("WARNING: could not fully configure devmap, error=%d\n",
1262                     err_devmap);
1263
1264         platform_late_init();
1265
1266         /*
1267          * We must now clean the cache again....
1268          * Cleaning may be done by reading new data to displace any
1269          * dirty data in the cache. This will have happened in cpu_setttb()
1270          * but since we are boot strapping the addresses used for the read
1271          * may have just been remapped and thus the cache could be out
1272          * of sync. A re-clean after the switch will cure this.
1273          * After booting there are no gross relocations of the kernel thus
1274          * this problem will not occur after initarm().
1275          */
1276         /* Set stack for exception handlers */
1277         undefined_init();
1278         init_proc0(kernelstack);
1279         arm_vector_init(ARM_VECTORS_HIGH, ARM_VEC_ALL);
1280         enable_interrupts(PSR_A);
1281         pmap_bootstrap(0);
1282
1283         /* Exclude the kernel (and all the things we allocated which immediately
1284          * follow the kernel) from the VM allocation pool but not from crash
1285          * dumps.  virtual_avail is a global variable which tracks the kva we've
1286          * "allocated" while setting up pmaps.
1287          *
1288          * Prepare the list of physical memory available to the vm subsystem.
1289          */
1290         arm_physmem_exclude_region(abp->abp_physaddr,
1291                 pmap_preboot_get_pages(0) - abp->abp_physaddr, EXFLAG_NOALLOC);
1292         arm_physmem_init_kernel_globals();
1293
1294         init_param2(physmem);
1295         /* Init message buffer. */
1296         msgbufinit(msgbufp, msgbufsize);
1297         dbg_monitor_init();
1298         arm_kdb_init();
1299         /* Apply possible BP hardening. */
1300         cpuinfo_init_bp_hardening();
1301         return ((void *)STACKALIGN(thread0.td_pcb));
1302
1303 }
1304
1305 #endif /* __ARM_ARCH < 6 */
1306 #endif /* FDT */