gumstix_start.S revision 1.6 1 1.6 kiyohara /* $NetBSD: gumstix_start.S,v 1.6 2009/08/09 07:10:13 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.4 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.6 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.4 kiyohara * in VA 0xc0200000..
98 1.1 kiyohara */
99 1.1 kiyohara /* save u-boot's args */
100 1.6 kiyohara adr r4, u_boot_args
101 1.1 kiyohara nop
102 1.1 kiyohara nop
103 1.1 kiyohara nop
104 1.6 kiyohara stmia r4!, {r0, r1, r2, r3}
105 1.1 kiyohara nop
106 1.1 kiyohara nop
107 1.1 kiyohara nop
108 1.1 kiyohara
109 1.6 kiyohara /* Calculate RAM size */
110 1.6 kiyohara adr r4, ram_size
111 1.6 kiyohara ldr r0, [r4]
112 1.6 kiyohara 0:
113 1.6 kiyohara add r3, r4, r0
114 1.6 kiyohara ldr r1, [r3]
115 1.6 kiyohara cmp r0, r1
116 1.6 kiyohara beq 2f
117 1.6 kiyohara 1:
118 1.6 kiyohara add r0, r0, r0 /* r0 <<= 1 */
119 1.6 kiyohara str r0, [r4]
120 1.6 kiyohara b 0b
121 1.6 kiyohara 2:
122 1.6 kiyohara mvn r1, r1 /* r1 ^= 0xffffffff */
123 1.6 kiyohara str r1, [r3]
124 1.6 kiyohara ldr r2, [r4]
125 1.6 kiyohara cmp r1, r2
126 1.6 kiyohara beq 3f
127 1.6 kiyohara str r0, [r3] /* restore */
128 1.6 kiyohara b 1b
129 1.6 kiyohara 3:
130 1.6 kiyohara str r0, [r4]
131 1.6 kiyohara
132 1.1 kiyohara /* build page table from scratch */
133 1.1 kiyohara ldr r0, Lstartup_pagetable /* pagetable */
134 1.1 kiyohara adr r4, mmu_init_table
135 1.6 kiyohara b 5f
136 1.1 kiyohara
137 1.6 kiyohara 4:
138 1.1 kiyohara str r3, [r0, r2]
139 1.1 kiyohara add r2, r2, #4
140 1.1 kiyohara add r3, r3, #(L1_S_SIZE)
141 1.1 kiyohara adds r1, r1, #-1
142 1.6 kiyohara bhi 4b
143 1.6 kiyohara 5:
144 1.4 kiyohara ldmia r4!, {r1, r2, r3} /* # of sections, PA|attr, VA */
145 1.1 kiyohara cmp r1, #0
146 1.6 kiyohara bne 4b
147 1.1 kiyohara
148 1.1 kiyohara mcr p15, 0, r0, c2, c0, 0 /* Set TTB */
149 1.1 kiyohara mcr p15, 0, r0, c8, c7, 0 /* Flush TLB */
150 1.1 kiyohara
151 1.1 kiyohara /* Set the Domain Access register. Very important! */
152 1.1 kiyohara mov r0, #((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2)) | DOMAIN_CLIENT)
153 1.1 kiyohara mcr p15, 0, r0, c3, c0, 0
154 1.1 kiyohara
155 1.1 kiyohara /* Enable MMU */
156 1.1 kiyohara mrc p15, 0, r0, c1, c0, 0
157 1.1 kiyohara orr r0, r0, #CPU_CONTROL_SYST_ENABLE
158 1.1 kiyohara orr r0, r0, #CPU_CONTROL_MMU_ENABLE
159 1.1 kiyohara mcr p15, 0, r0, c1, c0, 0
160 1.1 kiyohara CPWAIT(r0)
161 1.1 kiyohara
162 1.1 kiyohara /* Jump to kernel code in TRUE VA */
163 1.1 kiyohara adr r0, Lstart
164 1.1 kiyohara ldr pc, [r0]
165 1.1 kiyohara
166 1.1 kiyohara Lstart:
167 1.1 kiyohara .word start
168 1.1 kiyohara
169 1.1 kiyohara #ifndef STARTUP_PAGETABLE_ADDR
170 1.1 kiyohara #define STARTUP_PAGETABLE_ADDR 0xa0000000 /* aligned 16kByte */
171 1.1 kiyohara #endif
172 1.2 kiyohara Lstartup_pagetable:
173 1.2 kiyohara .word STARTUP_PAGETABLE_ADDR
174 1.2 kiyohara
175 1.3 kiyohara .globl _C_LABEL(u_boot_args)
176 1.1 kiyohara u_boot_args:
177 1.6 kiyohara .space 16 /* r0, r1, r2, r3 */
178 1.6 kiyohara
179 1.6 kiyohara .globl _C_LABEL(ram_size)
180 1.6 kiyohara ram_size:
181 1.6 kiyohara .word 0x04000000 /* 64Mbyte */
182 1.1 kiyohara
183 1.2 kiyohara
184 1.2 kiyohara #define MMU_INIT(va,pa,n_sec,attr) \
185 1.2 kiyohara .word n_sec ; \
186 1.3 kiyohara .word 4 * ((va) >> L1_S_SHIFT) ; \
187 1.3 kiyohara .word (pa) | (attr) ;
188 1.3 kiyohara
189 1.6 kiyohara mmu_init_table:
190 1.1 kiyohara /* fill all table VA==PA */
191 1.1 kiyohara MMU_INIT(0x00000000, 0x00000000,
192 1.3 kiyohara 1 << (32 - L1_S_SHIFT), L1_TYPE_S | L1_S_AP(AP_KRW))
193 1.3 kiyohara
194 1.1 kiyohara /* map SDRAM VA==PA, WT cacheable */
195 1.3 kiyohara MMU_INIT(SDRAM_START, SDRAM_START,
196 1.3 kiyohara 64, L1_TYPE_S | L1_S_C | L1_S_AP(AP_KRW))
197 1.3 kiyohara
198 1.1 kiyohara /* map VA 0xc0000000..0xc3ffffff to PA 0xa0000000..0xa3ffffff */
199 1.3 kiyohara MMU_INIT(0xc0000000, SDRAM_START,
200 1.3 kiyohara 64, L1_TYPE_S | L1_S_C | L1_S_AP(AP_KRW))
201 1.1 kiyohara
202 1.3 kiyohara .word 0 /* end of table */
203