gumstix_start.S revision 1.3 1 1.3 kiyohara /* $NetBSD: gumstix_start.S,v 1.3 2007/04/20 12:48:52 kiyohara Exp $ */
2 1.1 kiyohara /*
3 1.1 kiyohara * Copyright (C) 2005, 2006 WIDE Project and SOUM Corporation.
4 1.1 kiyohara * All rights reserved.
5 1.1 kiyohara *
6 1.1 kiyohara * Written by Takashi Kiyohara and Susumu Miki for WIDE Project and SOUM
7 1.1 kiyohara * Corporation.
8 1.1 kiyohara *
9 1.1 kiyohara * Redistribution and use in source and binary forms, with or without
10 1.1 kiyohara * modification, are permitted provided that the following conditions
11 1.1 kiyohara * are met:
12 1.1 kiyohara * 1. Redistributions of source code must retain the above copyright
13 1.1 kiyohara * notice, this list of conditions and the following disclaimer.
14 1.1 kiyohara * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 kiyohara * notice, this list of conditions and the following disclaimer in the
16 1.1 kiyohara * documentation and/or other materials provided with the distribution.
17 1.1 kiyohara * 3. Neither the name of the project nor the name of SOUM Corporation
18 1.1 kiyohara * may be used to endorse or promote products derived from this software
19 1.1 kiyohara * without specific prior written permission.
20 1.1 kiyohara *
21 1.1 kiyohara * THIS SOFTWARE IS PROVIDED BY THE PROJECT and SOUM CORPORATION ``AS IS''
22 1.1 kiyohara * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 1.1 kiyohara * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 1.1 kiyohara * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT AND SOUM CORPORATION
25 1.1 kiyohara * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 1.1 kiyohara * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 1.1 kiyohara * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 1.1 kiyohara * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 1.1 kiyohara * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 1.1 kiyohara * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 1.1 kiyohara * POSSIBILITY OF SUCH DAMAGE.
32 1.1 kiyohara */
33 1.1 kiyohara /*
34 1.1 kiyohara * Copyright (c) 2002, 2003 Genetec Corporation. All rights reserved.
35 1.1 kiyohara * Written by Hiroyuki Bessho for Genetec Corporation.
36 1.1 kiyohara *
37 1.1 kiyohara * Redistribution and use in source and binary forms, with or without
38 1.1 kiyohara * modification, are permitted provided that the following conditions
39 1.1 kiyohara * are met:
40 1.1 kiyohara * 1. Redistributions of source code must retain the above copyright
41 1.1 kiyohara * notice, this list of conditions and the following disclaimer.
42 1.1 kiyohara * 2. Redistributions in binary form must reproduce the above copyright
43 1.1 kiyohara * notice, this list of conditions and the following disclaimer in the
44 1.1 kiyohara * documentation and/or other materials provided with the distribution.
45 1.1 kiyohara * 3. The name of Genetec Corporation may not be used to endorse or
46 1.1 kiyohara * promote products derived from this software without specific prior
47 1.1 kiyohara * written permission.
48 1.1 kiyohara *
49 1.1 kiyohara * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``AS IS'' AND
50 1.1 kiyohara * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
51 1.1 kiyohara * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
52 1.1 kiyohara * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GENETEC CORPORATION
53 1.1 kiyohara * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
54 1.1 kiyohara * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
55 1.1 kiyohara * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
56 1.1 kiyohara * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
57 1.1 kiyohara * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
58 1.1 kiyohara * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
59 1.1 kiyohara * POSSIBILITY OF SUCH DAMAGE.
60 1.1 kiyohara */
61 1.1 kiyohara
62 1.1 kiyohara #include <machine/asm.h>
63 1.1 kiyohara #include <arm/armreg.h>
64 1.1 kiyohara #include <arm/arm32/pte.h>
65 1.1 kiyohara #include <arm/arm32/pmap.h> /* for PMAP_DOMAIN_KERNEL */
66 1.1 kiyohara
67 1.1 kiyohara #ifndef SDRAM_START
68 1.1 kiyohara #define SDRAM_START 0xa0000000
69 1.1 kiyohara #endif
70 1.1 kiyohara
71 1.1 kiyohara /*
72 1.1 kiyohara * CPWAIT -- Canonical method to wait for CP15 update.
73 1.1 kiyohara * NOTE: Clobbers the specified temp reg.
74 1.1 kiyohara * copied from arm/arm/cpufunc_asm_xscale.S
75 1.1 kiyohara * XXX: better be in a common header file.
76 1.1 kiyohara */
77 1.1 kiyohara #define CPWAIT_BRANCH \
78 1.1 kiyohara sub pc, pc, #4
79 1.1 kiyohara
80 1.1 kiyohara #define CPWAIT(tmp) \
81 1.1 kiyohara mrc p15, 0, tmp, c2, c0, 0 /* arbitrary read of CP15 */ ;\
82 1.1 kiyohara mov tmp, tmp /* wait for it to complete */ ;\
83 1.1 kiyohara CPWAIT_BRANCH /* branch to next insn */
84 1.1 kiyohara
85 1.1 kiyohara /*
86 1.1 kiyohara * Kernel start routine for GUMSTIX
87 1.1 kiyohara * this code is excuted at the very first after the kernel is loaded
88 1.1 kiyohara * by U-Boot.
89 1.1 kiyohara */
90 1.1 kiyohara .text
91 1.1 kiyohara
92 1.1 kiyohara .global _C_LABEL(gumstix_start)
93 1.1 kiyohara _C_LABEL(gumstix_start):
94 1.1 kiyohara /* gumstix's loader is u-boot. it's running on RAM */
95 1.1 kiyohara /*
96 1.1 kiyohara * Kernel is loaded in SDRAM (0xa0200000..), and is expected to run
97 1.1 kiyohara * in VA 0xc0200000..
98 1.1 kiyohara */
99 1.1 kiyohara /* save u-boot's args */
100 1.1 kiyohara adr r0, u_boot_args
101 1.1 kiyohara nop
102 1.1 kiyohara nop
103 1.1 kiyohara nop
104 1.1 kiyohara stmia r0!, {r3, r4, r5, r6}
105 1.1 kiyohara nop
106 1.1 kiyohara nop
107 1.1 kiyohara nop
108 1.1 kiyohara
109 1.1 kiyohara /* build page table from scratch */
110 1.1 kiyohara ldr r0, Lstartup_pagetable /* pagetable */
111 1.1 kiyohara adr r4, mmu_init_table
112 1.1 kiyohara b 3f
113 1.1 kiyohara
114 1.1 kiyohara 2:
115 1.1 kiyohara str r3, [r0, r2]
116 1.1 kiyohara add r2, r2, #4
117 1.1 kiyohara add r3, r3, #(L1_S_SIZE)
118 1.1 kiyohara adds r1, r1, #-1
119 1.1 kiyohara bhi 2b
120 1.1 kiyohara 3:
121 1.3 kiyohara ldmia r4!, {r1, r2 , r3} /* # of sections, PA|attr, VA */
122 1.1 kiyohara cmp r1, #0
123 1.1 kiyohara bne 2b
124 1.1 kiyohara
125 1.1 kiyohara mcr p15, 0, r0, c2, c0, 0 /* Set TTB */
126 1.1 kiyohara mcr p15, 0, r0, c8, c7, 0 /* Flush TLB */
127 1.1 kiyohara
128 1.1 kiyohara /* Set the Domain Access register. Very important! */
129 1.1 kiyohara mov r0, #((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2)) | DOMAIN_CLIENT)
130 1.1 kiyohara mcr p15, 0, r0, c3, c0, 0
131 1.1 kiyohara
132 1.1 kiyohara /* Enable MMU */
133 1.1 kiyohara mrc p15, 0, r0, c1, c0, 0
134 1.1 kiyohara orr r0, r0, #CPU_CONTROL_SYST_ENABLE
135 1.1 kiyohara orr r0, r0, #CPU_CONTROL_MMU_ENABLE
136 1.1 kiyohara mcr p15, 0, r0, c1, c0, 0
137 1.1 kiyohara CPWAIT(r0)
138 1.1 kiyohara
139 1.1 kiyohara /* Jump to kernel code in TRUE VA */
140 1.1 kiyohara adr r0, Lstart
141 1.1 kiyohara ldr pc, [r0]
142 1.1 kiyohara
143 1.1 kiyohara Lstart:
144 1.1 kiyohara .word start
145 1.1 kiyohara
146 1.1 kiyohara #ifndef STARTUP_PAGETABLE_ADDR
147 1.1 kiyohara #define STARTUP_PAGETABLE_ADDR 0xa0000000 /* aligned 16kByte */
148 1.1 kiyohara #endif
149 1.2 kiyohara Lstartup_pagetable:
150 1.2 kiyohara .word STARTUP_PAGETABLE_ADDR
151 1.2 kiyohara
152 1.3 kiyohara .globl _C_LABEL(u_boot_args)
153 1.1 kiyohara u_boot_args:
154 1.3 kiyohara .space 16 /* r3, r4, r5, r6 */
155 1.1 kiyohara
156 1.2 kiyohara
157 1.2 kiyohara #define MMU_INIT(va,pa,n_sec,attr) \
158 1.2 kiyohara .word n_sec ; \
159 1.3 kiyohara .word 4 * ((va) >> L1_S_SHIFT) ; \
160 1.3 kiyohara .word (pa) | (attr) ;
161 1.3 kiyohara
162 1.1 kiyohara mmu_init_table:
163 1.1 kiyohara /* fill all table VA==PA */
164 1.1 kiyohara MMU_INIT(0x00000000, 0x00000000,
165 1.3 kiyohara 1 << (32 - L1_S_SHIFT), L1_TYPE_S | L1_S_AP(AP_KRW))
166 1.3 kiyohara
167 1.1 kiyohara /* map SDRAM VA==PA, WT cacheable */
168 1.3 kiyohara MMU_INIT(SDRAM_START, SDRAM_START,
169 1.3 kiyohara 64, L1_TYPE_S | L1_S_C | L1_S_AP(AP_KRW))
170 1.3 kiyohara
171 1.1 kiyohara /* map VA 0xc0000000..0xc3ffffff to PA 0xa0000000..0xa3ffffff */
172 1.3 kiyohara MMU_INIT(0xc0000000, SDRAM_START,
173 1.3 kiyohara 64, L1_TYPE_S | L1_S_C | L1_S_AP(AP_KRW))
174 1.1 kiyohara
175 1.3 kiyohara .word 0 /* end of table */
176