ixm1200_machdep.c revision 1.16 1 /* $NetBSD: ixm1200_machdep.c,v 1.16 2003/04/28 20:01:29 ragge Exp $ */
2 #undef DEBUG_BEFOREMMU
3 /*
4 * Copyright (c) 2002, 2003
5 * Ichiro FUKUHARA <ichiro (at) ichiro.org>.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by Ichiro FUKUHARA.
19 * 4. The name of the company nor the name of the author may be used to
20 * endorse or promote products derived from this software without specific
21 * prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY ICHIRO FUKUHARA ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL ICHIRO FUKUHARA OR THE VOICES IN HIS HEAD BE LIABLE FOR
27 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35 /*
36 * Copyright (c) 1997,1998 Mark Brinicombe.
37 * Copyright (c) 1997,1998 Causality Limited.
38 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 * 3. All advertising materials mentioning features or use of this software
49 * must display the following acknowledgement:
50 * This product includes software developed by Mark Brinicombe
51 * for the NetBSD Project.
52 * 4. The name of the company nor the name of the author may be used to
53 * endorse or promote products derived from this software without specific
54 * prior written permission.
55 *
56 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
57 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
58 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
59 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
60 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
61 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
62 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
64 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
65 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * SUCH DAMAGE.
67 */
68
69 #include <sys/cdefs.h>
70 __KERNEL_RCSID(0, "$NetBSD: ixm1200_machdep.c,v 1.16 2003/04/28 20:01:29 ragge Exp $");
71
72 #include "opt_ddb.h"
73 #include "opt_pmap_debug.h"
74
75 #include <sys/param.h>
76 #include <sys/device.h>
77 #include <sys/systm.h>
78 #include <sys/kernel.h>
79 #include <sys/exec.h>
80 #include <sys/proc.h>
81 #include <sys/msgbuf.h>
82 #include <sys/reboot.h>
83 #include <sys/termios.h>
84 #include <sys/ksyms.h>
85
86 #include <uvm/uvm_extern.h>
87
88 #include <dev/cons.h>
89
90 #include "ksyms.h"
91
92 #if NKSYMS || defined(DDB) || defined(LKM)
93 #include <machine/db_machdep.h>
94 #include <ddb/db_sym.h>
95 #include <ddb/db_extern.h>
96 #ifndef DB_ELFSIZE
97 #error Must define DB_ELFSIZE!
98 #endif
99 #define ELFSIZE DB_ELFSIZE
100 #include <sys/exec_elf.h>
101 #endif
102
103 #include <machine/bootconfig.h>
104 #include <machine/bus.h>
105 #include <machine/cpu.h>
106 #include <machine/frame.h>
107 #include <arm/undefined.h>
108
109 #include <arm/arm32/machdep.h>
110
111 #include <arm/ixp12x0/ixp12x0reg.h>
112 #include <arm/ixp12x0/ixp12x0var.h>
113 #include <arm/ixp12x0/ixp12x0_comreg.h>
114 #include <arm/ixp12x0/ixp12x0_comvar.h>
115 #include <arm/ixp12x0/ixp12x0_pcireg.h>
116
117 #include <evbarm/ixm1200/ixm1200reg.h>
118 #include <evbarm/ixm1200/ixm1200var.h>
119
120 #include "opt_ipkdb.h"
121
122 /* XXX for consinit related hacks */
123 #include <sys/conf.h>
124
125 void ixp12x0_reset(void) __attribute__((noreturn));
126
127 /*
128 * Address to call from cpu_reset() to reset the machine.
129 * This is machine architecture dependant as it varies depending
130 * on where the ROM appears when you turn the MMU off.
131 */
132
133 u_int cpu_reset_address = (u_int) ixp12x0_reset;
134
135 /*
136 * Define the default console speed for the board.
137 */
138 #ifndef CONMODE
139 #define CONMODE ((TTYDEF_CFLAG & ~(CSIZE | CSTOPB)) | CS8) /* 8N1 */
140 #endif
141 #ifndef CONSPEED
142 #define CONSPEED B38400
143 #endif
144 #ifndef CONADDR
145 #define CONADDR IXPCOM_UART_BASE
146 #endif
147
148 cons_decl(com);
149 cons_decl(ixpcom);
150
151 struct consdev constab[] = {
152 #if (NIXPCOM > 0)
153 cons_init(ixpcom),
154 #endif
155 { 0 },
156 };
157
158 /* Define various stack sizes in pages */
159 #define IRQ_STACK_SIZE 1
160 #define ABT_STACK_SIZE 1
161 #ifdef IPKDB
162 #define UND_STACK_SIZE 2
163 #else
164 #define UND_STACK_SIZE 1
165 #endif
166
167 BootConfig bootconfig; /* Boot config storage */
168 char *boot_args = NULL;
169 char *boot_file = NULL;
170
171 vm_offset_t physical_start;
172 vm_offset_t physical_freestart;
173 vm_offset_t physical_freeend;
174 vm_offset_t physical_end;
175 u_int free_pages;
176 vm_offset_t pagetables_start;
177 int physmem = 0;
178
179 /*int debug_flags;*/
180 #ifndef PMAP_STATIC_L1S
181 int max_processes = 64; /* Default number */
182 #endif /* !PMAP_STATIC_L1S */
183
184 /* Physical and virtual addresses for some global pages */
185 pv_addr_t systempage;
186 pv_addr_t irqstack;
187 pv_addr_t undstack;
188 pv_addr_t abtstack;
189 pv_addr_t kernelstack;
190
191 vm_offset_t msgbufphys;
192
193 extern u_int data_abort_handler_address;
194 extern u_int prefetch_abort_handler_address;
195 extern u_int undefined_handler_address;
196 extern int end;
197
198 #ifdef PMAP_DEBUG
199 extern int pmap_debug_level;
200 #endif /* PMAP_DEBUG */
201
202 #define KERNEL_PT_SYS 0 /* Page table for mapping proc0 zero page */
203 #define KERNEL_PT_KERNEL 1 /* Page table for mapping kernel */
204 #define KERNEL_PT_KERNEL_NUM 2
205 #define KERNEL_PT_IO (KERNEL_PT_KERNEL + KERNEL_PT_KERNEL_NUM)
206 /* Page table for mapping IO */
207 #define KERNEL_PT_VMDATA (KERNEL_PT_IO + 1)
208 /* Page tables for mapping kernel VM */
209 #define KERNEL_PT_VMDATA_NUM 4 /* start with 16MB of KVM */
210 #define NUM_KERNEL_PTS (KERNEL_PT_VMDATA + KERNEL_PT_VMDATA_NUM)
211
212 pv_addr_t kernel_pt_table[NUM_KERNEL_PTS];
213
214 struct user *proc0paddr;
215
216 #ifdef CPU_IXP12X0
217 #define CPU_IXP12X0_CACHE_CLEAN_SIZE (0x4000 * 2)
218 extern unsigned int ixp12x0_cache_clean_addr;
219 extern unsigned int ixp12x0_cache_clean_size;
220 static vaddr_t ixp12x0_cc_base;
221 #endif /* CPU_IXP12X0 */
222
223 /* Prototypes */
224
225 void consinit __P((void));
226 u_int cpu_get_control __P((void));
227
228 void ixdp_ixp12x0_cc_setup(void);
229
230 #ifdef DEBUG_BEFOREMMU
231 static void fakecninit();
232 #endif
233
234 extern int db_trapper(u_int, u_int, trapframe_t *, int);
235
236 /*
237 * void cpu_reboot(int howto, char *bootstr)
238 *
239 * Reboots the system
240 *
241 * Deal with any syncing, unmounting, dumping and shutdown hooks,
242 * then reset the CPU.
243 */
244
245 void
246 cpu_reboot(howto, bootstr)
247 int howto;
248 char *bootstr;
249 {
250 /*
251 * If we are still cold then hit the air brakes
252 * and crash to earth fast
253 */
254 if (cold) {
255 doshutdownhooks();
256 printf("Halted while still in the ICE age.\n");
257 printf("The operating system has halted.\n");
258 printf("Please press any key to reboot.\n\n");
259 cngetc();
260 printf("rebooting...\n");
261 ixp12x0_reset();
262 }
263
264 /* Disable console buffering */
265 cnpollc(1);
266
267 /*
268 * If RB_NOSYNC was not specified sync the discs.
269 * Note: Unless cold is set to 1 here, syslogd will die during the unmount.
270 * It looks like syslogd is getting woken up only to find that it cannot
271 * page part of the binary in as the filesystem has been unmounted.
272 */
273 if (!(howto & RB_NOSYNC))
274 bootsync();
275
276 /* Say NO to interrupts */
277 splhigh();
278
279 /* Do a dump if requested. */
280 if ((howto & (RB_DUMP | RB_HALT)) == RB_DUMP)
281 dumpsys();
282
283 /* Run any shutdown hooks */
284 doshutdownhooks();
285
286 /* Make sure IRQ's are disabled */
287 IRQdisable;
288
289 if (howto & RB_HALT) {
290 printf("The operating system has halted.\n");
291 printf("Please press any key to reboot.\n\n");
292 cngetc();
293 }
294
295 printf("rebooting...\n");
296
297 /* all interrupts are disabled */
298 disable_interrupts(I32_bit);
299
300 ixp12x0_reset();
301
302 /* ...and if that didn't work, just croak. */
303 printf("RESET FAILED!\n");
304 for (;;);
305 }
306
307 /*
308 * Initial entry point on startup. This gets called before main() is
309 * entered.
310 * It should be responsible for setting up everything that must be
311 * in place when main is called.
312 * This includes
313 * Taking a copy of the boot configuration structure.
314 * Initialising the physical console so characters can be printed.
315 * Setting up page tables for the kernel
316 * Relocating the kernel to the bottom of physical memory
317 */
318 u_int
319 initarm(void *arg)
320 {
321 int loop;
322 int loop1;
323 u_int kerneldatasize, symbolsize;
324 vaddr_t l1pagetable;
325 vaddr_t freemempos;
326 pv_addr_t kernel_l1pt;
327 pv_addr_t kernel_ptpt;
328 #if NKSYMS || defined(DDB) || defined(LKM)
329 Elf_Shdr *sh;
330 #endif
331
332 #ifdef DEBUG_BEFOREMMU
333 /*
334 * At this point, we cannot call real consinit().
335 * Just call a faked up version of consinit(), which does the thing
336 * with MMU disabled.
337 */
338 fakecninit();
339 #endif
340 /*
341 * Since we map v0xf0000000 == p0x90000000, it's possible for
342 * us to initialize the console now.
343 */
344 consinit();
345
346 /* Talk to the user */
347 printf("\nNetBSD/evbarm (IXM1200) booting ...\n");
348
349 /*
350 * Heads up ... Setup the CPU / MMU / TLB functions
351 */
352 if (set_cpufuncs())
353 panic("cpu not recognized!");
354
355 /* XXX overwrite bootconfig to hardcoded values */
356 bootconfig.dram[0].address = 0xc0000000;
357 bootconfig.dram[0].pages = 0x10000000 / PAGE_SIZE; /* SDRAM 256MB */
358 bootconfig.dramblocks = 1;
359
360 kerneldatasize = (u_int32_t)&end - (u_int32_t)KERNEL_TEXT_BASE;
361
362 symbolsize = 0;
363
364 #ifdef PMAP_DEBUG
365 pmap_debug(-1);
366 #endif
367
368 #if NKSYMS || defined(DDB) || defined(LKM)
369 if (! memcmp(&end, "\177ELF", 4)) {
370 sh = (Elf_Shdr *)((char *)&end + ((Elf_Ehdr *)&end)->e_shoff);
371 loop = ((Elf_Ehdr *)&end)->e_shnum;
372 for(; loop; loop--, sh++)
373 if (sh->sh_offset > 0 &&
374 (sh->sh_offset + sh->sh_size) > symbolsize)
375 symbolsize = sh->sh_offset + sh->sh_size;
376 }
377 #endif
378 printf("kernsize=0x%x\n", kerneldatasize);
379 kerneldatasize += symbolsize;
380 kerneldatasize = ((kerneldatasize - 1) & ~(PAGE_SIZE * 4 - 1)) + PAGE_SIZE * 8;
381
382 /*
383 * Set up the variables that define the availablilty of physcial
384 * memory
385 */
386 physical_start = bootconfig.dram[0].address;
387 physical_end = physical_start + (bootconfig.dram[0].pages * PAGE_SIZE);
388
389 physical_freestart = physical_start
390 + (KERNEL_TEXT_BASE - KERNEL_BASE) + kerneldatasize;
391 physical_freeend = physical_end;
392
393 physmem = (physical_end - physical_start) / PAGE_SIZE;
394
395 freemempos = 0xc0000000;
396
397 #ifdef VERBOSE_INIT_ARM
398 printf("Allocating page tables\n");
399 #endif
400 free_pages = (physical_freeend - physical_freestart) / PAGE_SIZE;
401
402 #ifdef VERBOSE_INIT_ARM
403 printf("CP15 Register1 = 0x%08x\n", cpu_get_control());
404 printf("freestart = 0x%08lx, free_pages = %d (0x%08x)\n",
405 physical_freestart, free_pages, free_pages);
406 printf("physical_start = 0x%08lx, physical_end = 0x%08lx\n",
407 physical_start, physical_end);
408 #endif
409
410 /* Define a macro to simplify memory allocation */
411 #define valloc_pages(var, np) \
412 alloc_pages((var).pv_pa, (np)); \
413 (var).pv_va = KERNEL_BASE + (var).pv_pa - physical_start;
414 #define alloc_pages(var, np) \
415 (var) = freemempos; \
416 memset((char *)(var), 0, ((np) * PAGE_SIZE)); \
417 freemempos += (np) * PAGE_SIZE;
418
419 loop1 = 0;
420 kernel_l1pt.pv_pa = 0;
421 for (loop = 0; loop <= NUM_KERNEL_PTS; ++loop) {
422 /* Are we 16KB aligned for an L1 ? */
423 if (((physical_freeend - L1_TABLE_SIZE) & (L1_TABLE_SIZE - 1)) == 0
424 && kernel_l1pt.pv_pa == 0) {
425 valloc_pages(kernel_l1pt, L1_TABLE_SIZE / PAGE_SIZE);
426 } else {
427 alloc_pages(kernel_pt_table[loop1].pv_pa,
428 L2_TABLE_SIZE / PAGE_SIZE);
429 kernel_pt_table[loop1].pv_va =
430 kernel_pt_table[loop1].pv_pa;
431 ++loop1;
432 }
433 }
434
435 #ifdef DIAGNOSTIC
436 /* This should never be able to happen but better confirm that. */
437 if (!kernel_l1pt.pv_pa || (kernel_l1pt.pv_pa & (L1_TABLE_SIZE-1)) != 0)
438 panic("initarm: Failed to align the kernel page directory");
439 #endif
440
441 /*
442 * Allocate a page for the system page mapped to V0x00000000
443 * This page will just contain the system vectors and can be
444 * shared by all processes.
445 */
446 alloc_pages(systempage.pv_pa, 1);
447
448 /* Allocate a page for the page table to map kernel page tables. */
449 valloc_pages(kernel_ptpt, L2_TABLE_SIZE / PAGE_SIZE);
450
451 /* Allocate stacks for all modes */
452 valloc_pages(irqstack, IRQ_STACK_SIZE);
453 valloc_pages(abtstack, ABT_STACK_SIZE);
454 valloc_pages(undstack, UND_STACK_SIZE);
455 valloc_pages(kernelstack, UPAGES);
456
457 #ifdef VERBOSE_INIT_ARM
458 printf("IRQ stack: p0x%08lx v0x%08lx\n", irqstack.pv_pa, irqstack.pv_va);
459 printf("ABT stack: p0x%08lx v0x%08lx\n", abtstack.pv_pa, abtstack.pv_va);
460 printf("UND stack: p0x%08lx v0x%08lx\n", undstack.pv_pa, undstack.pv_va);
461 printf("SVC stack: p0x%08lx v0x%08lx\n", kernelstack.pv_pa, kernelstack.pv_va);
462 #endif
463
464 alloc_pages(msgbufphys, round_page(MSGBUFSIZE) / PAGE_SIZE);
465
466 #ifdef CPU_IXP12X0
467 /*
468 * XXX totally stuffed hack to work round problems introduced
469 * in recent versions of the pmap code. Due to the calls used there
470 * we cannot allocate virtual memory during bootstrap.
471 */
472 for(;;) {
473 alloc_pages(ixp12x0_cc_base, 1);
474 if (! (ixp12x0_cc_base & (CPU_IXP12X0_CACHE_CLEAN_SIZE - 1)))
475 break;
476 }
477 {
478 vaddr_t dummy;
479 alloc_pages(dummy, CPU_IXP12X0_CACHE_CLEAN_SIZE / PAGE_SIZE - 1);
480 }
481 ixp12x0_cache_clean_addr = ixp12x0_cc_base;
482 ixp12x0_cache_clean_size = CPU_IXP12X0_CACHE_CLEAN_SIZE / 2;
483 #endif /* CPU_IXP12X0 */
484
485 #ifdef VERBOSE_INIT_ARM
486 printf("Creating L1 page table at 0x%08lx\n", kernel_l1pt.pv_pa);
487 #endif
488
489 /*
490 * Now we start construction of the L1 page table
491 * We start by mapping the L2 page tables into the L1.
492 * This means that we can replace L1 mappings later on if necessary
493 */
494 l1pagetable = kernel_l1pt.pv_pa;
495
496 /* Map the L2 pages tables in the L1 page table */
497 pmap_link_l2pt(l1pagetable, 0x00000000,
498 &kernel_pt_table[KERNEL_PT_SYS]);
499
500 for (loop = 0; loop < KERNEL_PT_KERNEL_NUM; loop++)
501 pmap_link_l2pt(l1pagetable, KERNEL_BASE + loop * 0x00400000,
502 &kernel_pt_table[KERNEL_PT_KERNEL + loop]);
503
504 for (loop = 0; loop < KERNEL_PT_VMDATA_NUM; loop++)
505 pmap_link_l2pt(l1pagetable, KERNEL_VM_BASE + loop * 0x00400000,
506 &kernel_pt_table[KERNEL_PT_VMDATA + loop]);
507 pmap_link_l2pt(l1pagetable, PTE_BASE, &kernel_ptpt);
508
509 /* update the top of the kernel VM */
510 pmap_curmaxkvaddr =
511 KERNEL_VM_BASE + (KERNEL_PT_VMDATA_NUM * 0x00400000);
512
513 pmap_link_l2pt(l1pagetable, IXP12X0_IO_VBASE,
514 &kernel_pt_table[KERNEL_PT_IO]);
515
516 #ifdef VERBOSE_INIT_ARM
517 printf("Mapping kernel\n");
518 #endif
519
520 #if XXX
521 /* Now we fill in the L2 pagetable for the kernel code/data */
522 {
523 extern char etext[], _end[];
524 size_t textsize = (uintptr_t) etext - KERNEL_TEXT_BASE;
525 size_t totalsize = (uintptr_t) _end - KERNEL_TEXT_BASE;
526 u_int logical;
527
528 textsize = (textsize + PGOFSET) & ~PGOFSET;
529 totalsize = (totalsize + PGOFSET) & ~PGOFSET;
530
531 logical = 0x00200000; /* offset of kernel in RAM */
532
533 logical += pmap_map_chunk(l1pagetable, KERNEL_BASE + logical,
534 physical_start + logical, textsize,
535 VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
536 logical += pmap_map_chunk(l1pagetable, KERNEL_BASE + logical,
537 physical_start + logical, totalsize - textsize,
538 VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
539 }
540 #else
541 {
542 pmap_map_chunk(l1pagetable, KERNEL_TEXT_BASE,
543 KERNEL_TEXT_BASE, kerneldatasize,
544 VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
545 }
546 #endif
547
548 #ifdef VERBOSE_INIT_ARM
549 printf("Constructing L2 page tables\n");
550 #endif
551
552 /* Map the stack pages */
553 pmap_map_chunk(l1pagetable, irqstack.pv_va, irqstack.pv_pa,
554 IRQ_STACK_SIZE * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
555 pmap_map_chunk(l1pagetable, abtstack.pv_va, abtstack.pv_pa,
556 ABT_STACK_SIZE * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
557 pmap_map_chunk(l1pagetable, undstack.pv_va, undstack.pv_pa,
558 UND_STACK_SIZE * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
559 pmap_map_chunk(l1pagetable, kernelstack.pv_va, kernelstack.pv_pa,
560 UPAGES * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
561
562 pmap_map_chunk(l1pagetable, kernel_l1pt.pv_va, kernel_l1pt.pv_pa,
563 L1_TABLE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
564
565 /* Map the page table that maps the kernel pages */
566 pmap_map_entry(l1pagetable, kernel_ptpt.pv_va, kernel_ptpt.pv_pa,
567 VM_PROT_READ|VM_PROT_WRITE, PTE_NOCACHE);
568
569 /*
570 * Map entries in the page table used to map PTE's
571 * Basically every kernel page table gets mapped here
572 */
573 /* The -2 is slightly bogus, it should be -log2(sizeof(pt_entry_t)) */
574 pmap_map_entry(l1pagetable,
575 PTE_BASE + (0x00000000 >> (PGSHIFT-2)),
576 kernel_pt_table[KERNEL_PT_SYS].pv_pa,
577 VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
578
579 for (loop = 0; loop < KERNEL_PT_KERNEL_NUM; loop++)
580 pmap_map_entry(l1pagetable,
581 PTE_BASE + ((KERNEL_BASE +
582 (loop * 0x00400000)) >> (PGSHIFT-2)),
583 kernel_pt_table[KERNEL_PT_KERNEL + loop].pv_pa,
584 VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
585
586 for (loop = 0; loop < KERNEL_PT_VMDATA_NUM; loop++)
587 pmap_map_entry(l1pagetable,
588 PTE_BASE + ((KERNEL_VM_BASE +
589 (loop * 0x00400000)) >> (PGSHIFT-2)),
590 kernel_pt_table[KERNEL_PT_VMDATA + loop].pv_pa,
591 VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
592
593 pmap_map_entry(l1pagetable,
594 PTE_BASE + (PTE_BASE >> (PGSHIFT-2)),
595 kernel_ptpt.pv_pa, VM_PROT_READ|VM_PROT_WRITE, PTE_NOCACHE);
596
597 /* Map the vector page. */
598 pmap_map_entry(l1pagetable, vector_page, systempage.pv_pa,
599 VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE);
600
601 #ifdef VERBOSE_INIT_ARM
602 printf("systempage (vector page): p0x%08lx v0x%08lx\n",
603 systempage.pv_pa, vector_page);
604 #endif
605
606 /*
607 * Map the PCI I/O spaces and IXP12x0 registers
608 */
609
610 ixp12x0_pmap_io_reg(l1pagetable);
611
612 printf("done.\n");
613
614 /*
615 * Map the Dcache Flush page.
616 * Hw Ref Manual 3.2.4.5 Software Dcache Flush
617 */
618 pmap_map_chunk(l1pagetable, ixp12x0_cache_clean_addr, 0xe0000000,
619 CPU_IXP12X0_CACHE_CLEAN_SIZE, VM_PROT_READ, PTE_CACHE);
620
621 /*
622 * Now we have the real page tables in place so we can switch to them.
623 * Once this is done we will be running with the REAL kernel page
624 * tables.
625 */
626
627 /* Switch tables */
628 setttb(kernel_l1pt.pv_pa);
629 cpu_tlb_flushID();
630
631 /*
632 * We must now clean the cache again....
633 * Cleaning may be done by reading new data to displace any
634 * dirty data in the cache. This will have happened in setttb()
635 * but since we are boot strapping the addresses used for the read
636 * may have just been remapped and thus the cache could be out
637 * of sync. A re-clean after the switch will cure this.
638 * After booting there are no gross reloations of the kernel thus
639 * this problem will not occur after initarm().
640 */
641 cpu_idcache_wbinv_all();
642
643 arm32_vector_init(ARM_VECTORS_LOW, ARM_VEC_ALL);
644
645 /*
646 * Pages were allocated during the secondary bootstrap for the
647 * stacks for different CPU modes.
648 * We must now set the r13 registers in the different CPU modes to
649 * point to these stacks.
650 * Since the ARM stacks use STMFD etc. we must set r13 to the top end
651 * of the stack memory.
652 */
653 printf("init subsystems: stacks ");
654
655 set_stackptr(PSR_IRQ32_MODE,
656 irqstack.pv_va + IRQ_STACK_SIZE * PAGE_SIZE);
657 set_stackptr(PSR_ABT32_MODE,
658 abtstack.pv_va + ABT_STACK_SIZE * PAGE_SIZE);
659 set_stackptr(PSR_UND32_MODE,
660 undstack.pv_va + UND_STACK_SIZE * PAGE_SIZE);
661 #ifdef PMAP_DEBUG
662 if (pmap_debug_level >= 0)
663 printf("kstack V%08lx P%08lx\n", kernelstack.pv_va,
664 kernelstack.pv_pa);
665 #endif /* PMAP_DEBUG */
666
667 /*
668 * Well we should set a data abort handler.
669 * Once things get going this will change as we will need a proper
670 * handler. Until then we will use a handler that just panics but
671 * tells us why.
672 * Initialisation of the vetcors will just panic on a data abort.
673 * This just fills in a slighly better one.
674 */
675 printf("vectors ");
676 data_abort_handler_address = (u_int)data_abort_handler;
677 prefetch_abort_handler_address = (u_int)prefetch_abort_handler;
678 undefined_handler_address = (u_int)undefinedinstruction_bounce;
679 printf("\ndata_abort_handler_address = %08x\n", data_abort_handler_address);
680 printf("prefetch_abort_handler_address = %08x\n", prefetch_abort_handler_address);
681 printf("undefined_handler_address = %08x\n", undefined_handler_address);
682
683 /* Initialise the undefined instruction handlers */
684 printf("undefined ");
685 undefined_init();
686
687 /* Load memory into UVM. */
688 printf("page ");
689 uvm_setpagesize(); /* initialize PAGE_SIZE-dependent variables */
690 uvm_page_physload(atop(physical_freestart), atop(physical_freeend),
691 atop(physical_freestart), atop(physical_freeend),
692 VM_FREELIST_DEFAULT);
693
694 /* Boot strap pmap telling it where the kernel page table is */
695 printf("pmap ");
696 pmap_bootstrap((pd_entry_t *)kernel_l1pt.pv_va, kernel_ptpt);
697
698 /* Setup the IRQ system */
699 printf("irq ");
700 ixp12x0_intr_init();
701 printf("done.\n");
702
703 #ifdef VERBOSE_INIT_ARM
704 printf("freestart = 0x%08lx, free_pages = %d (0x%x)\n",
705 physical_freestart, free_pages, free_pages);
706 printf("freemempos=%08lx\n", freemempos);
707 printf("switching to new L1 page table @%#lx... \n", kernel_l1pt.pv_pa);
708 #endif
709
710 consinit();
711 printf("consinit \n");
712
713 ixdp_ixp12x0_cc_setup();
714
715 printf("bootstrap done.\n");
716
717 #ifdef IPKDB
718 /* Initialise ipkdb */
719 ipkdb_init();
720 if (boothowto & RB_KDB)
721 ipkdb_connect(0);
722 #endif /* NIPKDB */
723
724 #if NKSYMS || defined(DDB) || defined(LKM)
725 ksyms_init(symbolsize, ((int *)&end), ((char *)&end) + symbolsize);
726 #endif
727
728 #ifdef DDB
729 {
730 static struct undefined_handler uh;
731
732 uh.uh_handler = db_trapper;
733 install_coproc_handler_static(0, &uh);
734 }
735
736 if (boothowto & RB_KDB)
737 Debugger();
738 #endif
739
740 /* We return the new stack pointer address */
741 return(kernelstack.pv_va + USPACE_SVC_STACK_TOP);
742 }
743
744 void
745 consinit(void)
746 {
747 extern struct bus_space ixpsip_bs_tag;
748 static int consinit_called = 0;
749
750 if (consinit_called != 0)
751 return;
752
753 consinit_called = 1;
754
755 if (ixpcomcnattach(&ixpsip_bs_tag,
756 IXPCOM_UART_HWBASE, IXPCOM_UART_VBASE,
757 CONSPEED, CONMODE))
758 panic("can't init serial console @%lx", IXPCOM_UART_HWBASE);
759 }
760
761 #ifdef DEBUG_BEFOREMMU
762 cons_decl(ixpcom);
763 void
764 fakecninit()
765 {
766 static struct consdev fakecntab = cons_init(ixpcom);
767 cn_tab = &fakecntab;
768
769 (*cn_tab->cn_init)(0);
770 cn_tab->cn_pri = CN_REMOTE;
771 }
772 #endif
773
774 /*
775 * For optimal cache cleaning we need two 16K banks of
776 * virtual address space that NOTHING else will access
777 * and then we alternate the cache cleaning between the
778 * two banks.
779 * The cache cleaning code requires requires 2 banks aligned
780 * on total size boundry so the banks can be alternated by
781 * eorring the size bit (assumes the bank size is a power of 2)
782 */
783 void
784 ixdp_ixp12x0_cc_setup(void)
785 {
786 int loop;
787 paddr_t kaddr;
788 pt_entry_t *pte;
789
790 (void) pmap_extract(pmap_kernel(), KERNEL_TEXT_BASE, &kaddr);
791 for (loop = 0; loop < CPU_IXP12X0_CACHE_CLEAN_SIZE; loop += PAGE_SIZE) {
792 pte = vtopte(ixp12x0_cc_base + loop);
793 *pte = L2_S_PROTO | kaddr |
794 L2_S_PROT(PTE_KERNEL, VM_PROT_READ) | pte_l2_s_cache_mode;
795 PTE_SYNC(pte);
796 }
797 ixp12x0_cache_clean_addr = ixp12x0_cc_base;
798 ixp12x0_cache_clean_size = CPU_IXP12X0_CACHE_CLEAN_SIZE / 2;
799 }
800