]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/s3c44b0/start.S
Merge branch 'agust@denx.de-next' of git://git.denx.de/u-boot-staging
[karo-tx-uboot.git] / arch / arm / cpu / s3c44b0 / start.S
1 /*
2  * Startup Code for S3C44B0 CPU-core
3  *
4  * (C) Copyright 2004
5  * DAVE Srl
6  *
7  * http://www.dave-tech.it
8  * http://www.wawnet.biz
9  * mailto:info@wawnet.biz
10  *
11  * See file CREDITS for list of people who contributed to this
12  * project.
13  *
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License as
16  * published by the Free Software Foundation; either version 2 of
17  * the License, or (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27  * MA 02111-1307 USA
28  */
29
30 #include <asm-offsets.h>
31 #include <config.h>
32 #include <version.h>
33
34 /*
35  * Jump vector table
36  */
37
38
39 .globl _start
40 _start: b       reset
41         add     pc, pc, #0x0c000000
42         add     pc, pc, #0x0c000000
43         add     pc, pc, #0x0c000000
44         add     pc, pc, #0x0c000000
45         add     pc, pc, #0x0c000000
46         add     pc, pc, #0x0c000000
47         add     pc, pc, #0x0c000000
48
49         .balignl 16,0xdeadbeef
50
51
52 /*
53  *************************************************************************
54  *
55  * Startup Code (reset vector)
56  *
57  * do important init only if we don't start from memory!
58  * relocate u-boot to ram
59  * setup stack
60  * jump to second stage
61  *
62  *************************************************************************
63  */
64
65 .globl _TEXT_BASE
66 _TEXT_BASE:
67         .word   CONFIG_SYS_TEXT_BASE
68
69 /*
70  * These are defined in the board-specific linker script.
71  * Subtracting _start from them lets the linker put their
72  * relative position in the executable instead of leaving
73  * them null.
74  */
75 .globl _bss_start_ofs
76 _bss_start_ofs:
77         .word __bss_start - _start
78
79 .globl _bss_end_ofs
80 _bss_end_ofs:
81         .word __bss_end__ - _start
82
83 .globl _end_ofs
84 _end_ofs:
85         .word _end - _start
86
87 #ifdef CONFIG_USE_IRQ
88 /* IRQ stack memory (calculated at run-time) */
89 .globl IRQ_STACK_START
90 IRQ_STACK_START:
91         .word   0x0badc0de
92
93 /* IRQ stack memory (calculated at run-time) */
94 .globl FIQ_STACK_START
95 FIQ_STACK_START:
96         .word 0x0badc0de
97 #endif
98
99 /* IRQ stack memory (calculated at run-time) + 8 bytes */
100 .globl IRQ_STACK_START_IN
101 IRQ_STACK_START_IN:
102         .word   0x0badc0de
103
104 /*
105  * the actual reset code
106  */
107
108 reset:
109         /*
110          * set the cpu to SVC32 mode
111          */
112         mrs     r0,cpsr
113         bic     r0,r0,#0x1f
114         orr     r0,r0,#0xd3
115         msr     cpsr,r0
116
117         /*
118          * we do sys-critical inits only at reboot,
119          * not when booting from ram!
120          */
121 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
122         bl      cpu_init_crit
123         /*
124          * before relocating, we have to setup RAM timing
125          * because memory timing is board-dependend, you will
126          * find a lowlevel_init.S in your board directory.
127          */
128         bl      lowlevel_init
129 #endif
130
131 /* Set stackpointer in internal RAM to call board_init_f */
132 call_board_init_f:
133         ldr     sp, =(CONFIG_SYS_INIT_SP_ADDR)
134         bic     sp, sp, #7 /* 8-byte alignment for ABI compliance */
135         ldr     r0,=0x00000000
136         bl      board_init_f
137
138 /*------------------------------------------------------------------------------*/
139
140 /*
141  * void relocate_code (addr_sp, gd, addr_moni)
142  *
143  * This "function" does not return, instead it continues in RAM
144  * after relocating the monitor code.
145  *
146  */
147         .globl  relocate_code
148 relocate_code:
149         mov     r4, r0  /* save addr_sp */
150         mov     r5, r1  /* save addr of gd */
151         mov     r6, r2  /* save addr of destination */
152
153         /* Set up the stack                                                 */
154 stack_setup:
155         mov     sp, r4
156
157         adr     r0, _start
158         cmp     r0, r6
159         moveq   r9, #0          /* no relocation. relocation offset(r9) = 0 */
160         beq     clear_bss               /* skip relocation */
161         mov     r1, r6                  /* r1 <- scratch for copy_loop */
162         ldr     r3, _bss_start_ofs
163         add     r2, r0, r3              /* r2 <- source end address         */
164
165 copy_loop:
166         ldmia   r0!, {r9-r10}           /* copy from source address [r0]    */
167         stmia   r1!, {r9-r10}           /* copy to   target address [r1]    */
168         cmp     r0, r2                  /* until source end address [r2]    */
169         blo     copy_loop
170
171 #ifndef CONFIG_SPL_BUILD
172         /*
173          * fix .rel.dyn relocations
174          */
175         ldr     r0, _TEXT_BASE          /* r0 <- Text base */
176         sub     r9, r6, r0              /* r9 <- relocation offset */
177         ldr     r10, _dynsym_start_ofs  /* r10 <- sym table ofs */
178         add     r10, r10, r0            /* r10 <- sym table in FLASH */
179         ldr     r2, _rel_dyn_start_ofs  /* r2 <- rel dyn start ofs */
180         add     r2, r2, r0              /* r2 <- rel dyn start in FLASH */
181         ldr     r3, _rel_dyn_end_ofs    /* r3 <- rel dyn end ofs */
182         add     r3, r3, r0              /* r3 <- rel dyn end in FLASH */
183 fixloop:
184         ldr     r0, [r2]                /* r0 <- location to fix up, IN FLASH! */
185         add     r0, r0, r9              /* r0 <- location to fix up in RAM */
186         ldr     r1, [r2, #4]
187         and     r7, r1, #0xff
188         cmp     r7, #23                 /* relative fixup? */
189         beq     fixrel
190         cmp     r7, #2                  /* absolute fixup? */
191         beq     fixabs
192         /* ignore unknown type of fixup */
193         b       fixnext
194 fixabs:
195         /* absolute fix: set location to (offset) symbol value */
196         mov     r1, r1, LSR #4          /* r1 <- symbol index in .dynsym */
197         add     r1, r10, r1             /* r1 <- address of symbol in table */
198         ldr     r1, [r1, #4]            /* r1 <- symbol value */
199         add     r1, r1, r9              /* r1 <- relocated sym addr */
200         b       fixnext
201 fixrel:
202         /* relative fix: increase location by offset */
203         ldr     r1, [r0]
204         add     r1, r1, r9
205 fixnext:
206         str     r1, [r0]
207         add     r2, r2, #8              /* each rel.dyn entry is 8 bytes */
208         cmp     r2, r3
209         blo     fixloop
210 #endif
211
212 clear_bss:
213 #ifndef CONFIG_SPL_BUILD
214         ldr     r0, _bss_start_ofs
215         ldr     r1, _bss_end_ofs
216         mov     r4, r6                  /* reloc addr */
217         add     r0, r0, r4
218         add     r1, r1, r4
219         mov     r2, #0x00000000         /* clear                            */
220
221 clbss_l:cmp     r0, r1                  /* clear loop... */
222         bhs     clbss_e                 /* if reached end of bss, exit */
223         str     r2, [r0]
224         add     r0, r0, #4
225         b       clbss_l
226 clbss_e:
227
228         bl coloured_LED_init
229         bl red_led_on
230 #endif
231
232 /*
233  * We are done. Do not return, instead branch to second part of board
234  * initialization, now running from RAM.
235  */
236         ldr     r0, _board_init_r_ofs
237         adr     r1, _start
238         add     lr, r0, r1
239         add     lr, lr, r9
240         /* setup parameters for board_init_r */
241         mov     r0, r5          /* gd_t */
242         mov     r1, r6          /* dest_addr */
243         /* jump to it ... */
244         mov     pc, lr
245
246 _board_init_r_ofs:
247         .word board_init_r - _start
248
249 _rel_dyn_start_ofs:
250         .word __rel_dyn_start - _start
251 _rel_dyn_end_ofs:
252         .word __rel_dyn_end - _start
253 _dynsym_start_ofs:
254         .word __dynsym_start - _start
255
256 /*
257  *************************************************************************
258  *
259  * CPU_init_critical registers
260  *
261  * setup important registers
262  * setup memory timing
263  *
264  *************************************************************************
265  */
266
267 #define INTCON (0x01c00000+0x200000)
268 #define INTMSK (0x01c00000+0x20000c)
269 #define LOCKTIME (0x01c00000+0x18000c)
270 #define PLLCON (0x01c00000+0x180000)
271 #define CLKCON (0x01c00000+0x180004)
272 #define WTCON (0x01c00000+0x130000)
273 cpu_init_crit:
274         /* disable watch dog */
275         ldr     r0, =WTCON
276         ldr     r1, =0x0
277         str     r1, [r0]
278
279         /*
280          * mask all IRQs by clearing all bits in the INTMRs
281          */
282         ldr     r1,=INTMSK
283         ldr     r0, =0x03fffeff
284         str     r0, [r1]
285
286         ldr     r1, =INTCON
287         ldr     r0, =0x05
288         str     r0, [r1]
289
290         /* Set Clock Control Register */
291         ldr     r1, =LOCKTIME
292         ldrb    r0, =800
293         strb    r0, [r1]
294
295         ldr     r1, =PLLCON
296
297 #if CONFIG_S3C44B0_CLOCK_SPEED==66
298         ldr     r0, =0x34031    /* 66MHz (Quartz=11MHz) */
299 #elif CONFIG_S3C44B0_CLOCK_SPEED==75
300         ldr     r0, =0x610c1 /*B2: Xtal=20mhz Fclk=75MHz  */
301 #else
302 # error CONFIG_S3C44B0_CLOCK_SPEED undefined
303 #endif
304
305         str     r0, [r1]
306
307         ldr     r1,=CLKCON
308         ldr     r0, =0x7ff8
309         str     r0, [r1]
310
311         mov     pc, lr
312
313
314 /*************************************************/
315 /*      interrupt vectors       */
316 /*************************************************/
317 real_vectors:
318         b       reset
319         b       undefined_instruction
320         b       software_interrupt
321         b       prefetch_abort
322         b       data_abort
323         b       not_used
324         b       irq
325         b       fiq
326
327 /*************************************************/
328
329 undefined_instruction:
330         mov     r6, #3
331         b       reset
332
333 software_interrupt:
334         mov     r6, #4
335         b       reset
336
337 prefetch_abort:
338         mov     r6, #5
339         b       reset
340
341 data_abort:
342         mov     r6, #6
343         b       reset
344
345 not_used:
346         /* we *should* never reach this */
347         mov     r6, #7
348         b       reset
349
350 irq:
351         mov     r6, #8
352         b       reset
353
354 fiq:
355         mov     r6, #9
356         b       reset