arm32_kvminit.c revision 1.14.2.5 1 1.14.2.5 yamt /* $NetBSD: arm32_kvminit.c,v 1.14.2.5 2014/05/22 11:39:31 yamt Exp $ */
2 1.14.2.2 yamt
3 1.14.2.2 yamt /*
4 1.14.2.2 yamt * Copyright (c) 2002, 2003, 2005 Genetec Corporation. All rights reserved.
5 1.14.2.2 yamt * Written by Hiroyuki Bessho for Genetec Corporation.
6 1.14.2.2 yamt *
7 1.14.2.2 yamt * Redistribution and use in source and binary forms, with or without
8 1.14.2.2 yamt * modification, are permitted provided that the following conditions
9 1.14.2.2 yamt * are met:
10 1.14.2.2 yamt * 1. Redistributions of source code must retain the above copyright
11 1.14.2.2 yamt * notice, this list of conditions and the following disclaimer.
12 1.14.2.2 yamt * 2. Redistributions in binary form must reproduce the above copyright
13 1.14.2.2 yamt * notice, this list of conditions and the following disclaimer in the
14 1.14.2.2 yamt * documentation and/or other materials provided with the distribution.
15 1.14.2.2 yamt * 3. The name of Genetec Corporation may not be used to endorse or
16 1.14.2.2 yamt * promote products derived from this software without specific prior
17 1.14.2.2 yamt * written permission.
18 1.14.2.2 yamt *
19 1.14.2.2 yamt * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``AS IS'' AND
20 1.14.2.2 yamt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.14.2.2 yamt * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.14.2.2 yamt * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GENETEC CORPORATION
23 1.14.2.2 yamt * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.14.2.2 yamt * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.14.2.2 yamt * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.14.2.2 yamt * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.14.2.2 yamt * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.14.2.2 yamt * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.14.2.2 yamt * POSSIBILITY OF SUCH DAMAGE.
30 1.14.2.2 yamt *
31 1.14.2.2 yamt * Copyright (c) 2001 Wasabi Systems, Inc.
32 1.14.2.2 yamt * All rights reserved.
33 1.14.2.2 yamt *
34 1.14.2.2 yamt * Written by Jason R. Thorpe for Wasabi Systems, Inc.
35 1.14.2.2 yamt *
36 1.14.2.2 yamt * Redistribution and use in source and binary forms, with or without
37 1.14.2.2 yamt * modification, are permitted provided that the following conditions
38 1.14.2.2 yamt * are met:
39 1.14.2.2 yamt * 1. Redistributions of source code must retain the above copyright
40 1.14.2.2 yamt * notice, this list of conditions and the following disclaimer.
41 1.14.2.2 yamt * 2. Redistributions in binary form must reproduce the above copyright
42 1.14.2.2 yamt * notice, this list of conditions and the following disclaimer in the
43 1.14.2.2 yamt * documentation and/or other materials provided with the distribution.
44 1.14.2.2 yamt * 3. All advertising materials mentioning features or use of this software
45 1.14.2.2 yamt * must display the following acknowledgement:
46 1.14.2.2 yamt * This product includes software developed for the NetBSD Project by
47 1.14.2.2 yamt * Wasabi Systems, Inc.
48 1.14.2.2 yamt * 4. The name of Wasabi Systems, Inc. may not be used to endorse
49 1.14.2.2 yamt * or promote products derived from this software without specific prior
50 1.14.2.2 yamt * written permission.
51 1.14.2.2 yamt *
52 1.14.2.2 yamt * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
53 1.14.2.2 yamt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
54 1.14.2.2 yamt * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
55 1.14.2.2 yamt * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
56 1.14.2.2 yamt * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
57 1.14.2.2 yamt * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
58 1.14.2.2 yamt * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
59 1.14.2.2 yamt * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
60 1.14.2.2 yamt * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
61 1.14.2.2 yamt * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
62 1.14.2.2 yamt * POSSIBILITY OF SUCH DAMAGE.
63 1.14.2.2 yamt *
64 1.14.2.2 yamt * Copyright (c) 1997,1998 Mark Brinicombe.
65 1.14.2.2 yamt * Copyright (c) 1997,1998 Causality Limited.
66 1.14.2.2 yamt * All rights reserved.
67 1.14.2.2 yamt *
68 1.14.2.2 yamt * Redistribution and use in source and binary forms, with or without
69 1.14.2.2 yamt * modification, are permitted provided that the following conditions
70 1.14.2.2 yamt * are met:
71 1.14.2.2 yamt * 1. Redistributions of source code must retain the above copyright
72 1.14.2.2 yamt * notice, this list of conditions and the following disclaimer.
73 1.14.2.2 yamt * 2. Redistributions in binary form must reproduce the above copyright
74 1.14.2.2 yamt * notice, this list of conditions and the following disclaimer in the
75 1.14.2.2 yamt * documentation and/or other materials provided with the distribution.
76 1.14.2.2 yamt * 3. All advertising materials mentioning features or use of this software
77 1.14.2.2 yamt * must display the following acknowledgement:
78 1.14.2.2 yamt * This product includes software developed by Mark Brinicombe
79 1.14.2.2 yamt * for the NetBSD Project.
80 1.14.2.2 yamt * 4. The name of the company nor the name of the author may be used to
81 1.14.2.2 yamt * endorse or promote products derived from this software without specific
82 1.14.2.2 yamt * prior written permission.
83 1.14.2.2 yamt *
84 1.14.2.2 yamt * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
85 1.14.2.2 yamt * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
86 1.14.2.2 yamt * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
87 1.14.2.2 yamt * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
88 1.14.2.2 yamt * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
89 1.14.2.2 yamt * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
90 1.14.2.2 yamt * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
91 1.14.2.2 yamt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
92 1.14.2.2 yamt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
93 1.14.2.2 yamt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
94 1.14.2.2 yamt * SUCH DAMAGE.
95 1.14.2.2 yamt *
96 1.14.2.2 yamt * Copyright (c) 2007 Microsoft
97 1.14.2.2 yamt * All rights reserved.
98 1.14.2.2 yamt *
99 1.14.2.2 yamt * Redistribution and use in source and binary forms, with or without
100 1.14.2.2 yamt * modification, are permitted provided that the following conditions
101 1.14.2.2 yamt * are met:
102 1.14.2.2 yamt * 1. Redistributions of source code must retain the above copyright
103 1.14.2.2 yamt * notice, this list of conditions and the following disclaimer.
104 1.14.2.2 yamt * 2. Redistributions in binary form must reproduce the above copyright
105 1.14.2.2 yamt * notice, this list of conditions and the following disclaimer in the
106 1.14.2.2 yamt * documentation and/or other materials provided with the distribution.
107 1.14.2.2 yamt * 3. All advertising materials mentioning features or use of this software
108 1.14.2.2 yamt * must display the following acknowledgement:
109 1.14.2.2 yamt * This product includes software developed by Microsoft
110 1.14.2.2 yamt *
111 1.14.2.2 yamt * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
112 1.14.2.2 yamt * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
113 1.14.2.2 yamt * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
114 1.14.2.2 yamt * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTERS BE LIABLE FOR ANY DIRECT,
115 1.14.2.2 yamt * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
116 1.14.2.2 yamt * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
117 1.14.2.2 yamt * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
118 1.14.2.2 yamt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
119 1.14.2.2 yamt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
120 1.14.2.2 yamt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
121 1.14.2.2 yamt * SUCH DAMAGE.
122 1.14.2.2 yamt */
123 1.14.2.2 yamt
124 1.14.2.2 yamt #include <sys/cdefs.h>
125 1.14.2.5 yamt __KERNEL_RCSID(0, "$NetBSD: arm32_kvminit.c,v 1.14.2.5 2014/05/22 11:39:31 yamt Exp $");
126 1.14.2.2 yamt
127 1.14.2.2 yamt #include <sys/param.h>
128 1.14.2.2 yamt #include <sys/device.h>
129 1.14.2.2 yamt #include <sys/kernel.h>
130 1.14.2.2 yamt #include <sys/reboot.h>
131 1.14.2.2 yamt #include <sys/bus.h>
132 1.14.2.2 yamt
133 1.14.2.2 yamt #include <dev/cons.h>
134 1.14.2.2 yamt
135 1.14.2.2 yamt #include <uvm/uvm_extern.h>
136 1.14.2.2 yamt
137 1.14.2.5 yamt #include <arm/locore.h>
138 1.14.2.2 yamt #include <arm/db_machdep.h>
139 1.14.2.2 yamt #include <arm/undefined.h>
140 1.14.2.2 yamt #include <arm/bootconfig.h>
141 1.14.2.2 yamt #include <arm/arm32/machdep.h>
142 1.14.2.2 yamt
143 1.14.2.2 yamt #include "ksyms.h"
144 1.14.2.2 yamt
145 1.14.2.2 yamt struct bootmem_info bootmem_info;
146 1.14.2.2 yamt
147 1.14.2.5 yamt extern void *msgbufaddr;
148 1.14.2.2 yamt paddr_t msgbufphys;
149 1.14.2.2 yamt paddr_t physical_start;
150 1.14.2.2 yamt paddr_t physical_end;
151 1.14.2.2 yamt
152 1.14.2.2 yamt extern char etext[];
153 1.14.2.2 yamt extern char __data_start[], _edata[];
154 1.14.2.2 yamt extern char __bss_start[], __bss_end__[];
155 1.14.2.2 yamt extern char _end[];
156 1.14.2.2 yamt
157 1.14.2.2 yamt /* Page tables for mapping kernel VM */
158 1.14.2.2 yamt #define KERNEL_L2PT_VMDATA_NUM 8 /* start with 32MB of KVM */
159 1.14.2.2 yamt
160 1.14.2.2 yamt /*
161 1.14.2.2 yamt * Macros to translate between physical and virtual for a subset of the
162 1.14.2.2 yamt * kernel address space. *Not* for general use.
163 1.14.2.2 yamt */
164 1.14.2.5 yamt #if defined(KERNEL_BASE_VOFFSET)
165 1.14.2.5 yamt #define KERN_VTOPHYS(bmi, va) \
166 1.14.2.5 yamt ((paddr_t)((vaddr_t)(va) - KERNEL_BASE_VOFFSET))
167 1.14.2.5 yamt #define KERN_PHYSTOV(bmi, pa) \
168 1.14.2.5 yamt ((vaddr_t)((paddr_t)(pa) + KERNEL_BASE_VOFFSET))
169 1.14.2.5 yamt #elif defined(ARM_MMU_EXTENDED) && defined(__HAVE_MM_MD_DIRECT_MAPPED_PHYS)
170 1.14.2.5 yamt #define KERN_VTOPHYS(bmi, va) \
171 1.14.2.5 yamt ((paddr_t)((vaddr_t)(va) - pmap_directbase + (bmi)->bmi_start))
172 1.14.2.5 yamt #define KERN_PHYSTOV(bmi, pa) \
173 1.14.2.5 yamt ((vaddr_t)((paddr_t)(pa) - (bmi)->bmi_start + pmap_directbase))
174 1.14.2.5 yamt #else
175 1.14.2.2 yamt #define KERN_VTOPHYS(bmi, va) \
176 1.14.2.2 yamt ((paddr_t)((vaddr_t)(va) - KERNEL_BASE + (bmi)->bmi_start))
177 1.14.2.2 yamt #define KERN_PHYSTOV(bmi, pa) \
178 1.14.2.2 yamt ((vaddr_t)((paddr_t)(pa) - (bmi)->bmi_start + KERNEL_BASE))
179 1.14.2.5 yamt #endif
180 1.14.2.2 yamt
181 1.14.2.2 yamt void
182 1.14.2.2 yamt arm32_bootmem_init(paddr_t memstart, psize_t memsize, vsize_t kernelstart)
183 1.14.2.2 yamt {
184 1.14.2.2 yamt struct bootmem_info * const bmi = &bootmem_info;
185 1.14.2.2 yamt pv_addr_t *pv = bmi->bmi_freeblocks;
186 1.14.2.2 yamt
187 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
188 1.14.2.2 yamt printf("%s: memstart=%#lx, memsize=%#lx, kernelstart=%#lx\n",
189 1.14.2.2 yamt __func__, memstart, memsize, kernelstart);
190 1.14.2.2 yamt #endif
191 1.14.2.2 yamt
192 1.14.2.2 yamt physical_start = bmi->bmi_start = memstart;
193 1.14.2.2 yamt physical_end = bmi->bmi_end = memstart + memsize;
194 1.14.2.2 yamt physmem = memsize / PAGE_SIZE;
195 1.14.2.2 yamt
196 1.14.2.2 yamt /*
197 1.14.2.2 yamt * Let's record where the kernel lives.
198 1.14.2.2 yamt */
199 1.14.2.2 yamt bmi->bmi_kernelstart = kernelstart;
200 1.14.2.2 yamt bmi->bmi_kernelend = KERN_VTOPHYS(bmi, round_page((vaddr_t)_end));
201 1.14.2.2 yamt
202 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
203 1.14.2.2 yamt printf("%s: kernelend=%#lx\n", __func__, bmi->bmi_kernelend);
204 1.14.2.2 yamt #endif
205 1.14.2.2 yamt
206 1.14.2.2 yamt /*
207 1.14.2.2 yamt * Now the rest of the free memory must be after the kernel.
208 1.14.2.2 yamt */
209 1.14.2.2 yamt pv->pv_pa = bmi->bmi_kernelend;
210 1.14.2.2 yamt pv->pv_va = KERN_PHYSTOV(bmi, pv->pv_pa);
211 1.14.2.2 yamt pv->pv_size = bmi->bmi_end - bmi->bmi_kernelend;
212 1.14.2.2 yamt bmi->bmi_freepages += pv->pv_size / PAGE_SIZE;
213 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
214 1.14.2.2 yamt printf("%s: adding %lu free pages: [%#lx..%#lx] (VA %#lx)\n",
215 1.14.2.2 yamt __func__, pv->pv_size / PAGE_SIZE, pv->pv_pa,
216 1.14.2.2 yamt pv->pv_pa + pv->pv_size - 1, pv->pv_va);
217 1.14.2.2 yamt #endif
218 1.14.2.2 yamt pv++;
219 1.14.2.2 yamt
220 1.14.2.2 yamt /*
221 1.14.2.2 yamt * Add a free block for any memory before the kernel.
222 1.14.2.2 yamt */
223 1.14.2.2 yamt if (bmi->bmi_start < bmi->bmi_kernelstart) {
224 1.14.2.2 yamt pv->pv_pa = bmi->bmi_start;
225 1.14.2.5 yamt #if defined(ARM_MMU_EXTENDED) && defined(__HAVE_MM_MD_DIRECT_MAPPED_PHYS)
226 1.14.2.5 yamt pv->pv_va = pmap_directbase;
227 1.14.2.5 yamt #else
228 1.14.2.2 yamt pv->pv_va = KERNEL_BASE;
229 1.14.2.5 yamt #endif
230 1.14.2.2 yamt pv->pv_size = bmi->bmi_kernelstart - bmi->bmi_start;
231 1.14.2.2 yamt bmi->bmi_freepages += pv->pv_size / PAGE_SIZE;
232 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
233 1.14.2.2 yamt printf("%s: adding %lu free pages: [%#lx..%#lx] (VA %#lx)\n",
234 1.14.2.2 yamt __func__, pv->pv_size / PAGE_SIZE, pv->pv_pa,
235 1.14.2.2 yamt pv->pv_pa + pv->pv_size - 1, pv->pv_va);
236 1.14.2.2 yamt #endif
237 1.14.2.2 yamt pv++;
238 1.14.2.2 yamt }
239 1.14.2.2 yamt
240 1.14.2.2 yamt bmi->bmi_nfreeblocks = pv - bmi->bmi_freeblocks;
241 1.14.2.2 yamt
242 1.14.2.2 yamt SLIST_INIT(&bmi->bmi_freechunks);
243 1.14.2.2 yamt SLIST_INIT(&bmi->bmi_chunks);
244 1.14.2.2 yamt }
245 1.14.2.2 yamt
246 1.14.2.2 yamt static bool
247 1.14.2.2 yamt concat_pvaddr(pv_addr_t *acc_pv, pv_addr_t *pv)
248 1.14.2.2 yamt {
249 1.14.2.2 yamt if (acc_pv->pv_pa + acc_pv->pv_size == pv->pv_pa
250 1.14.2.2 yamt && acc_pv->pv_va + acc_pv->pv_size == pv->pv_va
251 1.14.2.2 yamt && acc_pv->pv_prot == pv->pv_prot
252 1.14.2.2 yamt && acc_pv->pv_cache == pv->pv_cache) {
253 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARMX
254 1.14.2.2 yamt printf("%s: appending pv %p (%#lx..%#lx) to %#lx..%#lx\n",
255 1.14.2.2 yamt __func__, pv, pv->pv_pa, pv->pv_pa + pv->pv_size + 1,
256 1.14.2.2 yamt acc_pv->pv_pa, acc_pv->pv_pa + acc_pv->pv_size + 1);
257 1.14.2.2 yamt #endif
258 1.14.2.2 yamt acc_pv->pv_size += pv->pv_size;
259 1.14.2.2 yamt return true;
260 1.14.2.2 yamt }
261 1.14.2.2 yamt
262 1.14.2.2 yamt return false;
263 1.14.2.2 yamt }
264 1.14.2.2 yamt
265 1.14.2.2 yamt static void
266 1.14.2.2 yamt add_pages(struct bootmem_info *bmi, pv_addr_t *pv)
267 1.14.2.2 yamt {
268 1.14.2.2 yamt pv_addr_t **pvp = &SLIST_FIRST(&bmi->bmi_chunks);
269 1.14.2.2 yamt while ((*pvp) != NULL && (*pvp)->pv_va <= pv->pv_va) {
270 1.14.2.2 yamt pv_addr_t * const pv0 = (*pvp);
271 1.14.2.2 yamt KASSERT(SLIST_NEXT(pv0, pv_list) == NULL || pv0->pv_pa < SLIST_NEXT(pv0, pv_list)->pv_pa);
272 1.14.2.2 yamt if (concat_pvaddr(pv0, pv)) {
273 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
274 1.14.2.2 yamt printf("%s: %s pv %p (%#lx..%#lx) to %#lx..%#lx\n",
275 1.14.2.2 yamt __func__, "appending", pv,
276 1.14.2.2 yamt pv->pv_pa, pv->pv_pa + pv->pv_size - 1,
277 1.14.2.2 yamt pv0->pv_pa, pv0->pv_pa + pv0->pv_size - pv->pv_size - 1);
278 1.14.2.2 yamt #endif
279 1.14.2.2 yamt pv = SLIST_NEXT(pv0, pv_list);
280 1.14.2.2 yamt if (pv != NULL && concat_pvaddr(pv0, pv)) {
281 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
282 1.14.2.2 yamt printf("%s: %s pv %p (%#lx..%#lx) to %#lx..%#lx\n",
283 1.14.2.2 yamt __func__, "merging", pv,
284 1.14.2.2 yamt pv->pv_pa, pv->pv_pa + pv->pv_size - 1,
285 1.14.2.2 yamt pv0->pv_pa,
286 1.14.2.2 yamt pv0->pv_pa + pv0->pv_size - pv->pv_size - 1);
287 1.14.2.2 yamt #endif
288 1.14.2.2 yamt SLIST_REMOVE_AFTER(pv0, pv_list);
289 1.14.2.2 yamt SLIST_INSERT_HEAD(&bmi->bmi_freechunks, pv, pv_list);
290 1.14.2.2 yamt }
291 1.14.2.2 yamt return;
292 1.14.2.2 yamt }
293 1.14.2.2 yamt KASSERT(pv->pv_va != (*pvp)->pv_va);
294 1.14.2.2 yamt pvp = &SLIST_NEXT(*pvp, pv_list);
295 1.14.2.2 yamt }
296 1.14.2.2 yamt KASSERT((*pvp) == NULL || pv->pv_va < (*pvp)->pv_va);
297 1.14.2.2 yamt pv_addr_t * const new_pv = SLIST_FIRST(&bmi->bmi_freechunks);
298 1.14.2.2 yamt KASSERT(new_pv != NULL);
299 1.14.2.2 yamt SLIST_REMOVE_HEAD(&bmi->bmi_freechunks, pv_list);
300 1.14.2.2 yamt *new_pv = *pv;
301 1.14.2.2 yamt SLIST_NEXT(new_pv, pv_list) = *pvp;
302 1.14.2.2 yamt (*pvp) = new_pv;
303 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
304 1.14.2.2 yamt printf("%s: adding pv %p (pa %#lx, va %#lx, %lu pages) ",
305 1.14.2.2 yamt __func__, new_pv, new_pv->pv_pa, new_pv->pv_va,
306 1.14.2.2 yamt new_pv->pv_size / PAGE_SIZE);
307 1.14.2.2 yamt if (SLIST_NEXT(new_pv, pv_list))
308 1.14.2.2 yamt printf("before pa %#lx\n", SLIST_NEXT(new_pv, pv_list)->pv_pa);
309 1.14.2.2 yamt else
310 1.14.2.2 yamt printf("at tail\n");
311 1.14.2.2 yamt #endif
312 1.14.2.2 yamt }
313 1.14.2.2 yamt
314 1.14.2.2 yamt static void
315 1.14.2.2 yamt valloc_pages(struct bootmem_info *bmi, pv_addr_t *pv, size_t npages,
316 1.14.2.5 yamt int prot, int cache, bool zero_p)
317 1.14.2.2 yamt {
318 1.14.2.2 yamt size_t nbytes = npages * PAGE_SIZE;
319 1.14.2.2 yamt pv_addr_t *free_pv = bmi->bmi_freeblocks;
320 1.14.2.2 yamt size_t free_idx = 0;
321 1.14.2.2 yamt static bool l1pt_found;
322 1.14.2.2 yamt
323 1.14.2.5 yamt KASSERT(npages > 0);
324 1.14.2.5 yamt
325 1.14.2.2 yamt /*
326 1.14.2.2 yamt * If we haven't allocated the kernel L1 page table and we are aligned
327 1.14.2.2 yamt * at a L1 table boundary, alloc the memory for it.
328 1.14.2.2 yamt */
329 1.14.2.2 yamt if (!l1pt_found
330 1.14.2.2 yamt && (free_pv->pv_pa & (L1_TABLE_SIZE - 1)) == 0
331 1.14.2.2 yamt && free_pv->pv_size >= L1_TABLE_SIZE) {
332 1.14.2.2 yamt l1pt_found = true;
333 1.14.2.2 yamt valloc_pages(bmi, &kernel_l1pt, L1_TABLE_SIZE / PAGE_SIZE,
334 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE, true);
335 1.14.2.2 yamt add_pages(bmi, &kernel_l1pt);
336 1.14.2.2 yamt }
337 1.14.2.2 yamt
338 1.14.2.2 yamt while (nbytes > free_pv->pv_size) {
339 1.14.2.2 yamt free_pv++;
340 1.14.2.2 yamt free_idx++;
341 1.14.2.2 yamt if (free_idx == bmi->bmi_nfreeblocks) {
342 1.14.2.2 yamt panic("%s: could not allocate %zu bytes",
343 1.14.2.2 yamt __func__, nbytes);
344 1.14.2.2 yamt }
345 1.14.2.2 yamt }
346 1.14.2.2 yamt
347 1.14.2.2 yamt /*
348 1.14.2.2 yamt * As we allocate the memory, make sure that we don't walk over
349 1.14.2.2 yamt * our current first level translation table.
350 1.14.2.2 yamt */
351 1.14.2.2 yamt KASSERT((armreg_ttbr_read() & ~(L1_TABLE_SIZE - 1)) != free_pv->pv_pa);
352 1.14.2.2 yamt
353 1.14.2.2 yamt pv->pv_pa = free_pv->pv_pa;
354 1.14.2.2 yamt pv->pv_va = free_pv->pv_va;
355 1.14.2.2 yamt pv->pv_size = nbytes;
356 1.14.2.2 yamt pv->pv_prot = prot;
357 1.14.2.2 yamt pv->pv_cache = cache;
358 1.14.2.2 yamt
359 1.14.2.2 yamt /*
360 1.14.2.2 yamt * If PTE_PAGETABLE uses the same cache modes as PTE_CACHE
361 1.14.2.2 yamt * just use PTE_CACHE.
362 1.14.2.2 yamt */
363 1.14.2.2 yamt if (cache == PTE_PAGETABLE
364 1.14.2.2 yamt && pte_l1_s_cache_mode == pte_l1_s_cache_mode_pt
365 1.14.2.2 yamt && pte_l2_l_cache_mode == pte_l2_l_cache_mode_pt
366 1.14.2.2 yamt && pte_l2_s_cache_mode == pte_l2_s_cache_mode_pt)
367 1.14.2.2 yamt pv->pv_cache = PTE_CACHE;
368 1.14.2.2 yamt
369 1.14.2.2 yamt free_pv->pv_pa += nbytes;
370 1.14.2.2 yamt free_pv->pv_va += nbytes;
371 1.14.2.2 yamt free_pv->pv_size -= nbytes;
372 1.14.2.2 yamt if (free_pv->pv_size == 0) {
373 1.14.2.2 yamt --bmi->bmi_nfreeblocks;
374 1.14.2.2 yamt for (; free_idx < bmi->bmi_nfreeblocks; free_idx++) {
375 1.14.2.2 yamt free_pv[0] = free_pv[1];
376 1.14.2.2 yamt }
377 1.14.2.2 yamt }
378 1.14.2.2 yamt
379 1.14.2.2 yamt bmi->bmi_freepages -= npages;
380 1.14.2.2 yamt
381 1.14.2.5 yamt if (zero_p)
382 1.14.2.5 yamt memset((void *)pv->pv_va, 0, nbytes);
383 1.14.2.2 yamt }
384 1.14.2.2 yamt
385 1.14.2.2 yamt void
386 1.14.2.2 yamt arm32_kernel_vm_init(vaddr_t kernel_vm_base, vaddr_t vectors, vaddr_t iovbase,
387 1.14.2.2 yamt const struct pmap_devmap *devmap, bool mapallmem_p)
388 1.14.2.2 yamt {
389 1.14.2.2 yamt struct bootmem_info * const bmi = &bootmem_info;
390 1.14.2.2 yamt #ifdef MULTIPROCESSOR
391 1.14.2.5 yamt const size_t cpu_num = arm_cpu_max;
392 1.14.2.2 yamt #else
393 1.14.2.2 yamt const size_t cpu_num = 1;
394 1.14.2.2 yamt #endif
395 1.14.2.5 yamt #ifdef ARM_HAS_VBAR
396 1.14.2.5 yamt const bool map_vectors_p = false;
397 1.14.2.5 yamt #elif defined(CPU_ARMV7) || defined(CPU_ARM11)
398 1.14.2.5 yamt const bool map_vectors_p = vectors == ARM_VECTORS_HIGH
399 1.14.2.5 yamt || (armreg_pfr1_read() & ARM_PFR1_SEC_MASK) == 0;
400 1.14.2.5 yamt #else
401 1.14.2.5 yamt const bool map_vectors_p = true;
402 1.14.2.5 yamt #endif
403 1.14.2.2 yamt
404 1.14.2.3 yamt #ifdef __HAVE_MM_MD_DIRECT_MAPPED_PHYS
405 1.14.2.3 yamt KASSERT(mapallmem_p);
406 1.14.2.5 yamt #ifdef ARM_MMU_EXTENDED
407 1.14.2.5 yamt /*
408 1.14.2.5 yamt * We can only use address beneath kernel_vm_base to map physical
409 1.14.2.5 yamt * memory.
410 1.14.2.5 yamt */
411 1.14.2.5 yamt const psize_t physical_size =
412 1.14.2.5 yamt roundup(physical_end - physical_start, L1_SS_SIZE);
413 1.14.2.5 yamt KASSERT(kernel_vm_base >= physical_size);
414 1.14.2.5 yamt /*
415 1.14.2.5 yamt * If we don't have enough memory via TTBR1, we have use addresses
416 1.14.2.5 yamt * from TTBR0 to map some of the physical memory. But try to use as
417 1.14.2.5 yamt * much high memory space as possible.
418 1.14.2.5 yamt */
419 1.14.2.5 yamt if (kernel_vm_base - KERNEL_BASE < physical_size) {
420 1.14.2.5 yamt pmap_directbase = kernel_vm_base - physical_size;
421 1.14.2.5 yamt printf("%s: changing pmap_directbase to %#lx\n", __func__,
422 1.14.2.5 yamt pmap_directbase);
423 1.14.2.5 yamt }
424 1.14.2.5 yamt #else
425 1.14.2.5 yamt KASSERT(kernel_vm_base - KERNEL_BASE >= physical_end - physical_start);
426 1.14.2.5 yamt #endif /* ARM_MMU_EXTENDED */
427 1.14.2.5 yamt #endif /* __HAVE_MM_MD_DIRECT_MAPPED_PHYS */
428 1.14.2.3 yamt
429 1.14.2.2 yamt /*
430 1.14.2.2 yamt * Calculate the number of L2 pages needed for mapping the
431 1.14.2.2 yamt * kernel + data + stuff. Assume 2 L2 pages for kernel, 1 for vectors,
432 1.14.2.2 yamt * and 1 for IO
433 1.14.2.2 yamt */
434 1.14.2.2 yamt size_t kernel_size = bmi->bmi_kernelend;
435 1.14.2.2 yamt kernel_size -= (bmi->bmi_kernelstart & -L2_S_SEGSIZE);
436 1.14.2.5 yamt kernel_size += L1_TABLE_SIZE_REAL;
437 1.14.2.5 yamt kernel_size += PAGE_SIZE * KERNEL_L2PT_VMDATA_NUM;
438 1.14.2.5 yamt if (map_vectors_p) {
439 1.14.2.5 yamt kernel_size += PAGE_SIZE; /* L2PT for VECTORS */
440 1.14.2.5 yamt }
441 1.14.2.5 yamt if (iovbase) {
442 1.14.2.5 yamt kernel_size += PAGE_SIZE; /* L2PT for IO */
443 1.14.2.5 yamt }
444 1.14.2.2 yamt kernel_size +=
445 1.14.2.2 yamt cpu_num * (ABT_STACK_SIZE + FIQ_STACK_SIZE + IRQ_STACK_SIZE
446 1.14.2.2 yamt + UND_STACK_SIZE + UPAGES) * PAGE_SIZE;
447 1.14.2.2 yamt kernel_size += round_page(MSGBUFSIZE);
448 1.14.2.2 yamt kernel_size += 0x10000; /* slop */
449 1.14.2.5 yamt if (!mapallmem_p) {
450 1.14.2.5 yamt kernel_size += PAGE_SIZE
451 1.14.2.5 yamt * ((kernel_size + L2_S_SEGSIZE - 1) / L2_S_SEGSIZE);
452 1.14.2.5 yamt }
453 1.14.2.2 yamt kernel_size = round_page(kernel_size);
454 1.14.2.2 yamt
455 1.14.2.2 yamt /*
456 1.14.2.5 yamt * Now we know how many L2 pages it will take. If we've mapped
457 1.14.2.5 yamt * all of memory, then it won't take any.
458 1.14.2.2 yamt */
459 1.14.2.5 yamt const size_t KERNEL_L2PT_KERNEL_NUM = mapallmem_p
460 1.14.2.5 yamt ? 0 : round_page(kernel_size + L2_S_SEGSIZE - 1) / L2_S_SEGSIZE;
461 1.14.2.2 yamt
462 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
463 1.14.2.2 yamt printf("%s: %zu L2 pages are needed to map %#zx kernel bytes\n",
464 1.14.2.2 yamt __func__, KERNEL_L2PT_KERNEL_NUM, kernel_size);
465 1.14.2.2 yamt #endif
466 1.14.2.2 yamt
467 1.14.2.2 yamt KASSERT(KERNEL_L2PT_KERNEL_NUM + KERNEL_L2PT_VMDATA_NUM < __arraycount(bmi->bmi_l2pts));
468 1.14.2.2 yamt pv_addr_t * const kernel_l2pt = bmi->bmi_l2pts;
469 1.14.2.2 yamt pv_addr_t * const vmdata_l2pt = kernel_l2pt + KERNEL_L2PT_KERNEL_NUM;
470 1.14.2.2 yamt pv_addr_t msgbuf;
471 1.14.2.2 yamt pv_addr_t text;
472 1.14.2.2 yamt pv_addr_t data;
473 1.14.2.2 yamt pv_addr_t chunks[KERNEL_L2PT_KERNEL_NUM+KERNEL_L2PT_VMDATA_NUM+11];
474 1.14.2.2 yamt #if ARM_MMU_XSCALE == 1
475 1.14.2.2 yamt pv_addr_t minidataclean;
476 1.14.2.2 yamt #endif
477 1.14.2.2 yamt
478 1.14.2.2 yamt /*
479 1.14.2.2 yamt * We need to allocate some fixed page tables to get the kernel going.
480 1.14.2.2 yamt *
481 1.14.2.2 yamt * We are going to allocate our bootstrap pages from the beginning of
482 1.14.2.2 yamt * the free space that we just calculated. We allocate one page
483 1.14.2.2 yamt * directory and a number of page tables and store the physical
484 1.14.2.2 yamt * addresses in the bmi_l2pts array in bootmem_info.
485 1.14.2.2 yamt *
486 1.14.2.2 yamt * The kernel page directory must be on a 16K boundary. The page
487 1.14.2.2 yamt * tables must be on 4K boundaries. What we do is allocate the
488 1.14.2.2 yamt * page directory on the first 16K boundary that we encounter, and
489 1.14.2.2 yamt * the page tables on 4K boundaries otherwise. Since we allocate
490 1.14.2.2 yamt * at least 3 L2 page tables, we are guaranteed to encounter at
491 1.14.2.2 yamt * least one 16K aligned region.
492 1.14.2.2 yamt */
493 1.14.2.2 yamt
494 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
495 1.14.2.2 yamt printf("%s: allocating page tables for", __func__);
496 1.14.2.2 yamt #endif
497 1.14.2.2 yamt for (size_t i = 0; i < __arraycount(chunks); i++) {
498 1.14.2.2 yamt SLIST_INSERT_HEAD(&bmi->bmi_freechunks, &chunks[i], pv_list);
499 1.14.2.2 yamt }
500 1.14.2.2 yamt
501 1.14.2.2 yamt kernel_l1pt.pv_pa = 0;
502 1.14.2.2 yamt kernel_l1pt.pv_va = 0;
503 1.14.2.2 yamt
504 1.14.2.2 yamt /*
505 1.14.2.2 yamt * Allocate the L2 pages, but if we get to a page that is aligned for
506 1.14.2.2 yamt * an L1 page table, we will allocate the pages for it first and then
507 1.14.2.2 yamt * allocate the L2 page.
508 1.14.2.2 yamt */
509 1.14.2.2 yamt
510 1.14.2.5 yamt if (map_vectors_p) {
511 1.14.2.5 yamt /*
512 1.14.2.5 yamt * First allocate L2 page for the vectors.
513 1.14.2.5 yamt */
514 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
515 1.14.2.5 yamt printf(" vector");
516 1.14.2.2 yamt #endif
517 1.14.2.5 yamt valloc_pages(bmi, &bmi->bmi_vector_l2pt, 1,
518 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE, true);
519 1.14.2.5 yamt add_pages(bmi, &bmi->bmi_vector_l2pt);
520 1.14.2.5 yamt }
521 1.14.2.2 yamt
522 1.14.2.2 yamt /*
523 1.14.2.2 yamt * Now allocate L2 pages for the kernel
524 1.14.2.2 yamt */
525 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
526 1.14.2.2 yamt printf(" kernel");
527 1.14.2.2 yamt #endif
528 1.14.2.5 yamt KASSERT(mapallmem_p || KERNEL_L2PT_KERNEL_NUM > 0);
529 1.14.2.5 yamt KASSERT(!mapallmem_p || KERNEL_L2PT_KERNEL_NUM == 0);
530 1.14.2.2 yamt for (size_t idx = 0; idx < KERNEL_L2PT_KERNEL_NUM; ++idx) {
531 1.14.2.5 yamt valloc_pages(bmi, &kernel_l2pt[idx], 1,
532 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE, true);
533 1.14.2.2 yamt add_pages(bmi, &kernel_l2pt[idx]);
534 1.14.2.2 yamt }
535 1.14.2.2 yamt
536 1.14.2.2 yamt /*
537 1.14.2.2 yamt * Now allocate L2 pages for the initial kernel VA space.
538 1.14.2.2 yamt */
539 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
540 1.14.2.2 yamt printf(" vm");
541 1.14.2.2 yamt #endif
542 1.14.2.2 yamt for (size_t idx = 0; idx < KERNEL_L2PT_VMDATA_NUM; ++idx) {
543 1.14.2.5 yamt valloc_pages(bmi, &vmdata_l2pt[idx], 1,
544 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE, true);
545 1.14.2.2 yamt add_pages(bmi, &vmdata_l2pt[idx]);
546 1.14.2.2 yamt }
547 1.14.2.2 yamt
548 1.14.2.2 yamt /*
549 1.14.2.2 yamt * If someone wanted a L2 page for I/O, allocate it now.
550 1.14.2.2 yamt */
551 1.14.2.5 yamt if (iovbase) {
552 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
553 1.14.2.2 yamt printf(" io");
554 1.14.2.2 yamt #endif
555 1.14.2.5 yamt valloc_pages(bmi, &bmi->bmi_io_l2pt, 1,
556 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE, true);
557 1.14.2.2 yamt add_pages(bmi, &bmi->bmi_io_l2pt);
558 1.14.2.2 yamt }
559 1.14.2.2 yamt
560 1.14.2.5 yamt #ifdef VERBOSE_INIT_ARM
561 1.14.2.2 yamt printf("%s: allocating stacks\n", __func__);
562 1.14.2.2 yamt #endif
563 1.14.2.2 yamt
564 1.14.2.2 yamt /* Allocate stacks for all modes and CPUs */
565 1.14.2.2 yamt valloc_pages(bmi, &abtstack, ABT_STACK_SIZE * cpu_num,
566 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE, true);
567 1.14.2.2 yamt add_pages(bmi, &abtstack);
568 1.14.2.2 yamt valloc_pages(bmi, &fiqstack, FIQ_STACK_SIZE * cpu_num,
569 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE, true);
570 1.14.2.2 yamt add_pages(bmi, &fiqstack);
571 1.14.2.2 yamt valloc_pages(bmi, &irqstack, IRQ_STACK_SIZE * cpu_num,
572 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE, true);
573 1.14.2.2 yamt add_pages(bmi, &irqstack);
574 1.14.2.2 yamt valloc_pages(bmi, &undstack, UND_STACK_SIZE * cpu_num,
575 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE, true);
576 1.14.2.2 yamt add_pages(bmi, &undstack);
577 1.14.2.2 yamt valloc_pages(bmi, &idlestack, UPAGES * cpu_num, /* SVC32 */
578 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE, true);
579 1.14.2.2 yamt add_pages(bmi, &idlestack);
580 1.14.2.2 yamt valloc_pages(bmi, &kernelstack, UPAGES, /* SVC32 */
581 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE, true);
582 1.14.2.2 yamt add_pages(bmi, &kernelstack);
583 1.14.2.2 yamt
584 1.14.2.2 yamt /* Allocate the message buffer from the end of memory. */
585 1.14.2.2 yamt const size_t msgbuf_pgs = round_page(MSGBUFSIZE) / PAGE_SIZE;
586 1.14.2.2 yamt valloc_pages(bmi, &msgbuf, msgbuf_pgs,
587 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE, false);
588 1.14.2.2 yamt add_pages(bmi, &msgbuf);
589 1.14.2.2 yamt msgbufphys = msgbuf.pv_pa;
590 1.14.2.5 yamt msgbufaddr = (void *)msgbuf.pv_va;
591 1.14.2.2 yamt
592 1.14.2.5 yamt if (map_vectors_p) {
593 1.14.2.5 yamt /*
594 1.14.2.5 yamt * Allocate a page for the system vector page.
595 1.14.2.5 yamt * This page will just contain the system vectors and can be
596 1.14.2.5 yamt * shared by all processes.
597 1.14.2.5 yamt */
598 1.14.2.5 yamt valloc_pages(bmi, &systempage, 1, VM_PROT_READ|VM_PROT_WRITE,
599 1.14.2.5 yamt PTE_CACHE, true);
600 1.14.2.5 yamt }
601 1.14.2.2 yamt systempage.pv_va = vectors;
602 1.14.2.2 yamt
603 1.14.2.2 yamt /*
604 1.14.2.2 yamt * If the caller needed a few extra pages for some reason, allocate
605 1.14.2.2 yamt * them now.
606 1.14.2.2 yamt */
607 1.14.2.2 yamt #if ARM_MMU_XSCALE == 1
608 1.14.2.2 yamt #if (ARM_NMMUS > 1)
609 1.14.2.2 yamt if (xscale_use_minidata)
610 1.14.2.2 yamt #endif
611 1.14.2.2 yamt valloc_pages(bmi, extrapv, nextrapages,
612 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, 0, true);
613 1.14.2.2 yamt #endif
614 1.14.2.2 yamt
615 1.14.2.2 yamt /*
616 1.14.2.2 yamt * Ok we have allocated physical pages for the primary kernel
617 1.14.2.2 yamt * page tables and stacks. Let's just confirm that.
618 1.14.2.2 yamt */
619 1.14.2.2 yamt if (kernel_l1pt.pv_va == 0
620 1.14.2.2 yamt && (!kernel_l1pt.pv_pa || (kernel_l1pt.pv_pa & (L1_TABLE_SIZE - 1)) != 0))
621 1.14.2.2 yamt panic("%s: Failed to allocate or align the kernel "
622 1.14.2.2 yamt "page directory", __func__);
623 1.14.2.2 yamt
624 1.14.2.2 yamt
625 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
626 1.14.2.2 yamt printf("Creating L1 page table at 0x%08lx\n", kernel_l1pt.pv_pa);
627 1.14.2.2 yamt #endif
628 1.14.2.2 yamt
629 1.14.2.2 yamt /*
630 1.14.2.2 yamt * Now we start construction of the L1 page table
631 1.14.2.2 yamt * We start by mapping the L2 page tables into the L1.
632 1.14.2.2 yamt * This means that we can replace L1 mappings later on if necessary
633 1.14.2.2 yamt */
634 1.14.2.2 yamt vaddr_t l1pt_va = kernel_l1pt.pv_va;
635 1.14.2.2 yamt paddr_t l1pt_pa = kernel_l1pt.pv_pa;
636 1.14.2.2 yamt
637 1.14.2.5 yamt if (map_vectors_p) {
638 1.14.2.5 yamt /* Map the L2 pages tables in the L1 page table */
639 1.14.2.5 yamt pmap_link_l2pt(l1pt_va, systempage.pv_va & -L2_S_SEGSIZE,
640 1.14.2.5 yamt &bmi->bmi_vector_l2pt);
641 1.14.2.5 yamt #ifdef VERBOSE_INIT_ARM
642 1.14.2.5 yamt printf("%s: adding L2 pt (VA %#lx, PA %#lx) "
643 1.14.2.5 yamt "for VA %#lx\n (vectors)",
644 1.14.2.5 yamt __func__, bmi->bmi_vector_l2pt.pv_va,
645 1.14.2.5 yamt bmi->bmi_vector_l2pt.pv_pa, systempage.pv_va);
646 1.14.2.2 yamt #endif
647 1.14.2.5 yamt }
648 1.14.2.2 yamt
649 1.14.2.2 yamt const vaddr_t kernel_base =
650 1.14.2.2 yamt KERN_PHYSTOV(bmi, bmi->bmi_kernelstart & -L2_S_SEGSIZE);
651 1.14.2.2 yamt for (size_t idx = 0; idx < KERNEL_L2PT_KERNEL_NUM; idx++) {
652 1.14.2.2 yamt pmap_link_l2pt(l1pt_va, kernel_base + idx * L2_S_SEGSIZE,
653 1.14.2.2 yamt &kernel_l2pt[idx]);
654 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
655 1.14.2.2 yamt printf("%s: adding L2 pt (VA %#lx, PA %#lx) for VA %#lx (kernel)\n",
656 1.14.2.5 yamt __func__, kernel_l2pt[idx].pv_va,
657 1.14.2.5 yamt kernel_l2pt[idx].pv_pa, kernel_base + idx * L2_S_SEGSIZE);
658 1.14.2.2 yamt #endif
659 1.14.2.2 yamt }
660 1.14.2.2 yamt
661 1.14.2.2 yamt for (size_t idx = 0; idx < KERNEL_L2PT_VMDATA_NUM; idx++) {
662 1.14.2.2 yamt pmap_link_l2pt(l1pt_va, kernel_vm_base + idx * L2_S_SEGSIZE,
663 1.14.2.2 yamt &vmdata_l2pt[idx]);
664 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
665 1.14.2.2 yamt printf("%s: adding L2 pt (VA %#lx, PA %#lx) for VA %#lx (vm)\n",
666 1.14.2.2 yamt __func__, vmdata_l2pt[idx].pv_va, vmdata_l2pt[idx].pv_pa,
667 1.14.2.2 yamt kernel_vm_base + idx * L2_S_SEGSIZE);
668 1.14.2.2 yamt #endif
669 1.14.2.2 yamt }
670 1.14.2.2 yamt if (iovbase) {
671 1.14.2.2 yamt pmap_link_l2pt(l1pt_va, iovbase & -L2_S_SEGSIZE, &bmi->bmi_io_l2pt);
672 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
673 1.14.2.2 yamt printf("%s: adding L2 pt (VA %#lx, PA %#lx) for VA %#lx (io)\n",
674 1.14.2.2 yamt __func__, bmi->bmi_io_l2pt.pv_va, bmi->bmi_io_l2pt.pv_pa,
675 1.14.2.2 yamt iovbase & -L2_S_SEGSIZE);
676 1.14.2.2 yamt #endif
677 1.14.2.2 yamt }
678 1.14.2.2 yamt
679 1.14.2.2 yamt /* update the top of the kernel VM */
680 1.14.2.2 yamt pmap_curmaxkvaddr =
681 1.14.2.2 yamt kernel_vm_base + (KERNEL_L2PT_VMDATA_NUM * L2_S_SEGSIZE);
682 1.14.2.2 yamt
683 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
684 1.14.2.2 yamt printf("Mapping kernel\n");
685 1.14.2.2 yamt #endif
686 1.14.2.2 yamt
687 1.14.2.2 yamt extern char etext[], _end[];
688 1.14.2.2 yamt size_t totalsize = bmi->bmi_kernelend - bmi->bmi_kernelstart;
689 1.14.2.2 yamt size_t textsize = KERN_VTOPHYS(bmi, (uintptr_t)etext) - bmi->bmi_kernelstart;
690 1.14.2.2 yamt
691 1.14.2.2 yamt textsize = (textsize + PGOFSET) & ~PGOFSET;
692 1.14.2.2 yamt
693 1.14.2.2 yamt /* start at offset of kernel in RAM */
694 1.14.2.2 yamt
695 1.14.2.2 yamt text.pv_pa = bmi->bmi_kernelstart;
696 1.14.2.2 yamt text.pv_va = KERN_PHYSTOV(bmi, bmi->bmi_kernelstart);
697 1.14.2.2 yamt text.pv_size = textsize;
698 1.14.2.2 yamt text.pv_prot = VM_PROT_READ|VM_PROT_WRITE; /* XXX VM_PROT_EXECUTE */
699 1.14.2.2 yamt text.pv_cache = PTE_CACHE;
700 1.14.2.2 yamt
701 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
702 1.14.2.2 yamt printf("%s: adding chunk for kernel text %#lx..%#lx (VA %#lx)\n",
703 1.14.2.2 yamt __func__, text.pv_pa, text.pv_pa + text.pv_size - 1, text.pv_va);
704 1.14.2.2 yamt #endif
705 1.14.2.2 yamt
706 1.14.2.2 yamt add_pages(bmi, &text);
707 1.14.2.2 yamt
708 1.14.2.2 yamt data.pv_pa = text.pv_pa + textsize;
709 1.14.2.2 yamt data.pv_va = text.pv_va + textsize;
710 1.14.2.2 yamt data.pv_size = totalsize - textsize;
711 1.14.2.2 yamt data.pv_prot = VM_PROT_READ|VM_PROT_WRITE;
712 1.14.2.2 yamt data.pv_cache = PTE_CACHE;
713 1.14.2.2 yamt
714 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
715 1.14.2.2 yamt printf("%s: adding chunk for kernel data/bss %#lx..%#lx (VA %#lx)\n",
716 1.14.2.2 yamt __func__, data.pv_pa, data.pv_pa + data.pv_size - 1, data.pv_va);
717 1.14.2.2 yamt #endif
718 1.14.2.2 yamt
719 1.14.2.2 yamt add_pages(bmi, &data);
720 1.14.2.2 yamt
721 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
722 1.14.2.2 yamt printf("Listing Chunks\n");
723 1.14.2.5 yamt
724 1.14.2.5 yamt pv_addr_t *lpv;
725 1.14.2.5 yamt SLIST_FOREACH(lpv, &bmi->bmi_chunks, pv_list) {
726 1.14.2.5 yamt printf("%s: pv %p: chunk VA %#lx..%#lx "
727 1.14.2.5 yamt "(PA %#lx, prot %d, cache %d)\n",
728 1.14.2.5 yamt __func__, lpv, lpv->pv_va, lpv->pv_va + lpv->pv_size - 1,
729 1.14.2.5 yamt lpv->pv_pa, lpv->pv_prot, lpv->pv_cache);
730 1.14.2.2 yamt }
731 1.14.2.2 yamt printf("\nMapping Chunks\n");
732 1.14.2.2 yamt #endif
733 1.14.2.2 yamt
734 1.14.2.2 yamt pv_addr_t cur_pv;
735 1.14.2.2 yamt pv_addr_t *pv = SLIST_FIRST(&bmi->bmi_chunks);
736 1.14.2.2 yamt if (!mapallmem_p || pv->pv_pa == bmi->bmi_start) {
737 1.14.2.2 yamt cur_pv = *pv;
738 1.14.2.2 yamt pv = SLIST_NEXT(pv, pv_list);
739 1.14.2.2 yamt } else {
740 1.14.2.5 yamt #if defined(ARM_MMU_EXTENDED) && defined(__HAVE_MM_MD_DIRECT_MAPPED_PHYS)
741 1.14.2.5 yamt cur_pv.pv_va = pmap_directbase;
742 1.14.2.5 yamt #else
743 1.14.2.2 yamt cur_pv.pv_va = KERNEL_BASE;
744 1.14.2.5 yamt #endif
745 1.14.2.2 yamt cur_pv.pv_pa = bmi->bmi_start;
746 1.14.2.2 yamt cur_pv.pv_size = pv->pv_pa - bmi->bmi_start;
747 1.14.2.2 yamt cur_pv.pv_prot = VM_PROT_READ | VM_PROT_WRITE;
748 1.14.2.2 yamt cur_pv.pv_cache = PTE_CACHE;
749 1.14.2.2 yamt }
750 1.14.2.2 yamt while (pv != NULL) {
751 1.14.2.2 yamt if (mapallmem_p) {
752 1.14.2.2 yamt if (concat_pvaddr(&cur_pv, pv)) {
753 1.14.2.2 yamt pv = SLIST_NEXT(pv, pv_list);
754 1.14.2.2 yamt continue;
755 1.14.2.2 yamt }
756 1.14.2.2 yamt if (cur_pv.pv_pa + cur_pv.pv_size < pv->pv_pa) {
757 1.14.2.2 yamt /*
758 1.14.2.2 yamt * See if we can extend the current pv to emcompass the
759 1.14.2.2 yamt * hole, and if so do it and retry the concatenation.
760 1.14.2.2 yamt */
761 1.14.2.2 yamt if (cur_pv.pv_prot == (VM_PROT_READ|VM_PROT_WRITE)
762 1.14.2.2 yamt && cur_pv.pv_cache == PTE_CACHE) {
763 1.14.2.2 yamt cur_pv.pv_size = pv->pv_pa - cur_pv.pv_va;
764 1.14.2.2 yamt continue;
765 1.14.2.2 yamt }
766 1.14.2.2 yamt
767 1.14.2.2 yamt /*
768 1.14.2.2 yamt * We couldn't so emit the current chunk and then
769 1.14.2.2 yamt */
770 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
771 1.14.2.2 yamt printf("%s: mapping chunk VA %#lx..%#lx "
772 1.14.2.2 yamt "(PA %#lx, prot %d, cache %d)\n",
773 1.14.2.2 yamt __func__,
774 1.14.2.2 yamt cur_pv.pv_va, cur_pv.pv_va + cur_pv.pv_size - 1,
775 1.14.2.2 yamt cur_pv.pv_pa, cur_pv.pv_prot, cur_pv.pv_cache);
776 1.14.2.2 yamt #endif
777 1.14.2.2 yamt pmap_map_chunk(l1pt_va, cur_pv.pv_va, cur_pv.pv_pa,
778 1.14.2.2 yamt cur_pv.pv_size, cur_pv.pv_prot, cur_pv.pv_cache);
779 1.14.2.2 yamt
780 1.14.2.2 yamt /*
781 1.14.2.2 yamt * set the current chunk to the hole and try again.
782 1.14.2.2 yamt */
783 1.14.2.2 yamt cur_pv.pv_pa += cur_pv.pv_size;
784 1.14.2.2 yamt cur_pv.pv_va += cur_pv.pv_size;
785 1.14.2.2 yamt cur_pv.pv_size = pv->pv_pa - cur_pv.pv_va;
786 1.14.2.2 yamt cur_pv.pv_prot = VM_PROT_READ | VM_PROT_WRITE;
787 1.14.2.2 yamt cur_pv.pv_cache = PTE_CACHE;
788 1.14.2.2 yamt continue;
789 1.14.2.2 yamt }
790 1.14.2.2 yamt }
791 1.14.2.2 yamt
792 1.14.2.2 yamt /*
793 1.14.2.2 yamt * The new pv didn't concatenate so emit the current one
794 1.14.2.2 yamt * and use the new pv as the current pv.
795 1.14.2.2 yamt */
796 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
797 1.14.2.2 yamt printf("%s: mapping chunk VA %#lx..%#lx "
798 1.14.2.2 yamt "(PA %#lx, prot %d, cache %d)\n",
799 1.14.2.2 yamt __func__, cur_pv.pv_va, cur_pv.pv_va + cur_pv.pv_size - 1,
800 1.14.2.2 yamt cur_pv.pv_pa, cur_pv.pv_prot, cur_pv.pv_cache);
801 1.14.2.2 yamt #endif
802 1.14.2.2 yamt pmap_map_chunk(l1pt_va, cur_pv.pv_va, cur_pv.pv_pa,
803 1.14.2.2 yamt cur_pv.pv_size, cur_pv.pv_prot, cur_pv.pv_cache);
804 1.14.2.2 yamt cur_pv = *pv;
805 1.14.2.2 yamt pv = SLIST_NEXT(pv, pv_list);
806 1.14.2.2 yamt }
807 1.14.2.2 yamt
808 1.14.2.2 yamt /*
809 1.14.2.2 yamt * If we are mapping all of memory, let's map the rest of memory.
810 1.14.2.2 yamt */
811 1.14.2.2 yamt if (mapallmem_p && cur_pv.pv_pa + cur_pv.pv_size < bmi->bmi_end) {
812 1.14.2.2 yamt if (cur_pv.pv_prot == (VM_PROT_READ | VM_PROT_WRITE)
813 1.14.2.2 yamt && cur_pv.pv_cache == PTE_CACHE) {
814 1.14.2.2 yamt cur_pv.pv_size = bmi->bmi_end - cur_pv.pv_pa;
815 1.14.2.2 yamt } else {
816 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
817 1.14.2.2 yamt printf("%s: mapping chunk VA %#lx..%#lx "
818 1.14.2.2 yamt "(PA %#lx, prot %d, cache %d)\n",
819 1.14.2.2 yamt __func__, cur_pv.pv_va, cur_pv.pv_va + cur_pv.pv_size - 1,
820 1.14.2.2 yamt cur_pv.pv_pa, cur_pv.pv_prot, cur_pv.pv_cache);
821 1.14.2.2 yamt #endif
822 1.14.2.2 yamt pmap_map_chunk(l1pt_va, cur_pv.pv_va, cur_pv.pv_pa,
823 1.14.2.2 yamt cur_pv.pv_size, cur_pv.pv_prot, cur_pv.pv_cache);
824 1.14.2.2 yamt cur_pv.pv_pa += cur_pv.pv_size;
825 1.14.2.2 yamt cur_pv.pv_va += cur_pv.pv_size;
826 1.14.2.2 yamt cur_pv.pv_size = bmi->bmi_end - cur_pv.pv_pa;
827 1.14.2.2 yamt cur_pv.pv_prot = VM_PROT_READ | VM_PROT_WRITE;
828 1.14.2.2 yamt cur_pv.pv_cache = PTE_CACHE;
829 1.14.2.2 yamt }
830 1.14.2.2 yamt }
831 1.14.2.2 yamt
832 1.14.2.2 yamt /*
833 1.14.2.2 yamt * Now we map the final chunk.
834 1.14.2.2 yamt */
835 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
836 1.14.2.2 yamt printf("%s: mapping last chunk VA %#lx..%#lx (PA %#lx, prot %d, cache %d)\n",
837 1.14.2.2 yamt __func__, cur_pv.pv_va, cur_pv.pv_va + cur_pv.pv_size - 1,
838 1.14.2.2 yamt cur_pv.pv_pa, cur_pv.pv_prot, cur_pv.pv_cache);
839 1.14.2.2 yamt #endif
840 1.14.2.2 yamt pmap_map_chunk(l1pt_va, cur_pv.pv_va, cur_pv.pv_pa,
841 1.14.2.2 yamt cur_pv.pv_size, cur_pv.pv_prot, cur_pv.pv_cache);
842 1.14.2.2 yamt
843 1.14.2.2 yamt /*
844 1.14.2.2 yamt * Now we map the stuff that isn't directly after the kernel
845 1.14.2.2 yamt */
846 1.14.2.2 yamt
847 1.14.2.5 yamt if (map_vectors_p) {
848 1.14.2.5 yamt /* Map the vector page. */
849 1.14.2.5 yamt pmap_map_entry(l1pt_va, systempage.pv_va, systempage.pv_pa,
850 1.14.2.5 yamt VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
851 1.14.2.5 yamt }
852 1.14.2.2 yamt
853 1.14.2.2 yamt /* Map the Mini-Data cache clean area. */
854 1.14.2.2 yamt #if ARM_MMU_XSCALE == 1
855 1.14.2.2 yamt #if (ARM_NMMUS > 1)
856 1.14.2.2 yamt if (xscale_use_minidata)
857 1.14.2.2 yamt #endif
858 1.14.2.2 yamt xscale_setup_minidata(l1_va, minidataclean.pv_va,
859 1.14.2.2 yamt minidataclean.pv_pa);
860 1.14.2.2 yamt #endif
861 1.14.2.2 yamt
862 1.14.2.2 yamt /*
863 1.14.2.2 yamt * Map integrated peripherals at same address in first level page
864 1.14.2.2 yamt * table so that we can continue to use console.
865 1.14.2.2 yamt */
866 1.14.2.2 yamt if (devmap)
867 1.14.2.2 yamt pmap_devmap_bootstrap(l1pt_va, devmap);
868 1.14.2.2 yamt
869 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
870 1.14.2.2 yamt /* Tell the user about where all the bits and pieces live. */
871 1.14.2.2 yamt printf("%22s Physical Virtual Num\n", " ");
872 1.14.2.2 yamt printf("%22s Starting Ending Starting Ending Pages\n", " ");
873 1.14.2.2 yamt
874 1.14.2.2 yamt static const char mem_fmt[] =
875 1.14.2.2 yamt "%20s: 0x%08lx 0x%08lx 0x%08lx 0x%08lx %u\n";
876 1.14.2.2 yamt static const char mem_fmt_nov[] =
877 1.14.2.2 yamt "%20s: 0x%08lx 0x%08lx %zu\n";
878 1.14.2.2 yamt
879 1.14.2.2 yamt printf(mem_fmt, "SDRAM", bmi->bmi_start, bmi->bmi_end - 1,
880 1.14.2.2 yamt KERN_PHYSTOV(bmi, bmi->bmi_start), KERN_PHYSTOV(bmi, bmi->bmi_end - 1),
881 1.14.2.2 yamt physmem);
882 1.14.2.2 yamt printf(mem_fmt, "text section",
883 1.14.2.2 yamt text.pv_pa, text.pv_pa + text.pv_size - 1,
884 1.14.2.2 yamt text.pv_va, text.pv_va + text.pv_size - 1,
885 1.14.2.2 yamt (int)(text.pv_size / PAGE_SIZE));
886 1.14.2.2 yamt printf(mem_fmt, "data section",
887 1.14.2.2 yamt KERN_VTOPHYS(bmi, __data_start), KERN_VTOPHYS(bmi, _edata),
888 1.14.2.2 yamt (vaddr_t)__data_start, (vaddr_t)_edata,
889 1.14.2.2 yamt (int)((round_page((vaddr_t)_edata)
890 1.14.2.2 yamt - trunc_page((vaddr_t)__data_start)) / PAGE_SIZE));
891 1.14.2.2 yamt printf(mem_fmt, "bss section",
892 1.14.2.2 yamt KERN_VTOPHYS(bmi, __bss_start), KERN_VTOPHYS(bmi, __bss_end__),
893 1.14.2.2 yamt (vaddr_t)__bss_start, (vaddr_t)__bss_end__,
894 1.14.2.2 yamt (int)((round_page((vaddr_t)__bss_end__)
895 1.14.2.2 yamt - trunc_page((vaddr_t)__bss_start)) / PAGE_SIZE));
896 1.14.2.2 yamt printf(mem_fmt, "L1 page directory",
897 1.14.2.2 yamt kernel_l1pt.pv_pa, kernel_l1pt.pv_pa + L1_TABLE_SIZE - 1,
898 1.14.2.2 yamt kernel_l1pt.pv_va, kernel_l1pt.pv_va + L1_TABLE_SIZE - 1,
899 1.14.2.2 yamt L1_TABLE_SIZE / PAGE_SIZE);
900 1.14.2.2 yamt printf(mem_fmt, "ABT stack (CPU 0)",
901 1.14.2.2 yamt abtstack.pv_pa, abtstack.pv_pa + (ABT_STACK_SIZE * PAGE_SIZE) - 1,
902 1.14.2.2 yamt abtstack.pv_va, abtstack.pv_va + (ABT_STACK_SIZE * PAGE_SIZE) - 1,
903 1.14.2.2 yamt ABT_STACK_SIZE);
904 1.14.2.2 yamt printf(mem_fmt, "FIQ stack (CPU 0)",
905 1.14.2.2 yamt fiqstack.pv_pa, fiqstack.pv_pa + (FIQ_STACK_SIZE * PAGE_SIZE) - 1,
906 1.14.2.2 yamt fiqstack.pv_va, fiqstack.pv_va + (FIQ_STACK_SIZE * PAGE_SIZE) - 1,
907 1.14.2.2 yamt FIQ_STACK_SIZE);
908 1.14.2.2 yamt printf(mem_fmt, "IRQ stack (CPU 0)",
909 1.14.2.2 yamt irqstack.pv_pa, irqstack.pv_pa + (IRQ_STACK_SIZE * PAGE_SIZE) - 1,
910 1.14.2.2 yamt irqstack.pv_va, irqstack.pv_va + (IRQ_STACK_SIZE * PAGE_SIZE) - 1,
911 1.14.2.2 yamt IRQ_STACK_SIZE);
912 1.14.2.2 yamt printf(mem_fmt, "UND stack (CPU 0)",
913 1.14.2.2 yamt undstack.pv_pa, undstack.pv_pa + (UND_STACK_SIZE * PAGE_SIZE) - 1,
914 1.14.2.2 yamt undstack.pv_va, undstack.pv_va + (UND_STACK_SIZE * PAGE_SIZE) - 1,
915 1.14.2.2 yamt UND_STACK_SIZE);
916 1.14.2.2 yamt printf(mem_fmt, "IDLE stack (CPU 0)",
917 1.14.2.2 yamt idlestack.pv_pa, idlestack.pv_pa + (UPAGES * PAGE_SIZE) - 1,
918 1.14.2.2 yamt idlestack.pv_va, idlestack.pv_va + (UPAGES * PAGE_SIZE) - 1,
919 1.14.2.2 yamt UPAGES);
920 1.14.2.2 yamt printf(mem_fmt, "SVC stack",
921 1.14.2.2 yamt kernelstack.pv_pa, kernelstack.pv_pa + (UPAGES * PAGE_SIZE) - 1,
922 1.14.2.2 yamt kernelstack.pv_va, kernelstack.pv_va + (UPAGES * PAGE_SIZE) - 1,
923 1.14.2.2 yamt UPAGES);
924 1.14.2.2 yamt printf(mem_fmt, "Message Buffer",
925 1.14.2.2 yamt msgbuf.pv_pa, msgbuf.pv_pa + (msgbuf_pgs * PAGE_SIZE) - 1,
926 1.14.2.2 yamt msgbuf.pv_va, msgbuf.pv_va + (msgbuf_pgs * PAGE_SIZE) - 1,
927 1.14.2.2 yamt (int)msgbuf_pgs);
928 1.14.2.5 yamt if (map_vectors_p) {
929 1.14.2.5 yamt printf(mem_fmt, "Exception Vectors",
930 1.14.2.5 yamt systempage.pv_pa, systempage.pv_pa + PAGE_SIZE - 1,
931 1.14.2.5 yamt systempage.pv_va, systempage.pv_va + PAGE_SIZE - 1,
932 1.14.2.5 yamt 1);
933 1.14.2.5 yamt }
934 1.14.2.2 yamt for (size_t i = 0; i < bmi->bmi_nfreeblocks; i++) {
935 1.14.2.2 yamt pv = &bmi->bmi_freeblocks[i];
936 1.14.2.2 yamt
937 1.14.2.2 yamt printf(mem_fmt_nov, "Free Memory",
938 1.14.2.2 yamt pv->pv_pa, pv->pv_pa + pv->pv_size - 1,
939 1.14.2.2 yamt pv->pv_size / PAGE_SIZE);
940 1.14.2.2 yamt }
941 1.14.2.2 yamt #endif
942 1.14.2.2 yamt /*
943 1.14.2.2 yamt * Now we have the real page tables in place so we can switch to them.
944 1.14.2.2 yamt * Once this is done we will be running with the REAL kernel page
945 1.14.2.2 yamt * tables.
946 1.14.2.2 yamt */
947 1.14.2.2 yamt
948 1.14.2.5 yamt #if defined(VERBOSE_INIT_ARM)
949 1.14.2.2 yamt printf("TTBR0=%#x", armreg_ttbr_read());
950 1.14.2.2 yamt #ifdef _ARM_ARCH_6
951 1.14.2.5 yamt printf(" TTBR1=%#x TTBCR=%#x CONTEXTIDR=%#x",
952 1.14.2.5 yamt armreg_ttbr1_read(), armreg_ttbcr_read(),
953 1.14.2.5 yamt armreg_contextidr_read());
954 1.14.2.2 yamt #endif
955 1.14.2.2 yamt printf("\n");
956 1.14.2.2 yamt #endif
957 1.14.2.2 yamt
958 1.14.2.2 yamt /* Switch tables */
959 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
960 1.14.2.2 yamt printf("switching to new L1 page table @%#lx...", l1pt_pa);
961 1.14.2.2 yamt #endif
962 1.14.2.2 yamt
963 1.14.2.5 yamt #ifdef ARM_MMU_EXTENDED
964 1.14.2.5 yamt cpu_domains((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2))
965 1.14.2.5 yamt | (DOMAIN_CLIENT << (PMAP_DOMAIN_USER*2)));
966 1.14.2.5 yamt #else
967 1.14.2.2 yamt cpu_domains((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2)) | DOMAIN_CLIENT);
968 1.14.2.5 yamt #endif
969 1.14.2.2 yamt cpu_idcache_wbinv_all();
970 1.14.2.5 yamt #ifdef VERBOSE_INIT_ARM
971 1.14.2.5 yamt printf(" ttb");
972 1.14.2.5 yamt #endif
973 1.14.2.5 yamt #ifdef ARM_MMU_EXTENDED
974 1.14.2.5 yamt /*
975 1.14.2.5 yamt * TTBCR should have been initialized by the MD start code.
976 1.14.2.5 yamt */
977 1.14.2.5 yamt KASSERT((armreg_contextidr_read() & 0xff) == 0);
978 1.14.2.5 yamt KASSERT(armreg_ttbcr_read() == __SHIFTIN(1, TTBCR_S_N));
979 1.14.2.5 yamt /*
980 1.14.2.5 yamt * Disable lookups via TTBR0 until there is an activated pmap.
981 1.14.2.5 yamt */
982 1.14.2.5 yamt armreg_ttbcr_write(armreg_ttbcr_read() | TTBCR_S_PD0);
983 1.14.2.5 yamt cpu_setttb(l1pt_pa, KERNEL_PID);
984 1.14.2.5 yamt arm_isb();
985 1.14.2.5 yamt #else
986 1.14.2.2 yamt cpu_setttb(l1pt_pa, true);
987 1.14.2.2 yamt cpu_domains(DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2));
988 1.14.2.5 yamt #endif
989 1.14.2.5 yamt cpu_tlb_flushID();
990 1.14.2.5 yamt
991 1.14.2.5 yamt #ifdef VERBOSE_INIT_ARM
992 1.14.2.5 yamt #ifdef ARM_MMU_EXTENDED
993 1.14.2.5 yamt printf(" (TTBCR=%#x TTBR0=%#x TTBR1=%#x)",
994 1.14.2.5 yamt armreg_ttbcr_read(), armreg_ttbr_read(), armreg_ttbr1_read());
995 1.14.2.5 yamt #else
996 1.14.2.5 yamt printf(" (TTBR0=%#x)", armreg_ttbr_read());
997 1.14.2.5 yamt #endif
998 1.14.2.5 yamt #endif
999 1.14.2.5 yamt
1000 1.14.2.5 yamt #ifdef MULTIPROCESSOR
1001 1.14.2.5 yamt /*
1002 1.14.2.5 yamt * Kick the secondaries to load the TTB. After which they'll go
1003 1.14.2.5 yamt * back to sleep to wait for the final kick so they will hatch.
1004 1.14.2.5 yamt */
1005 1.14.2.5 yamt #ifdef VERBOSE_INIT_ARM
1006 1.14.2.5 yamt printf(" hatchlings");
1007 1.14.2.5 yamt #endif
1008 1.14.2.5 yamt cpu_boot_secondary_processors();
1009 1.14.2.5 yamt #endif
1010 1.14.2.2 yamt
1011 1.14.2.2 yamt #ifdef VERBOSE_INIT_ARM
1012 1.14.2.5 yamt printf(" OK\n");
1013 1.14.2.2 yamt #endif
1014 1.14.2.2 yamt }
1015