Merge branch 'master' of /home/wd/git/u-boot/custodians
[oweals/u-boot.git] / cpu / arm926ejs / start.S
1 /*
2  *  armboot - Startup Code for ARM926EJS CPU-core
3  *
4  *  Copyright (c) 2003  Texas Instruments
5  *
6  *  ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
7  *
8  *  Copyright (c) 2001  Marius Gröger <mag@sysgo.de>
9  *  Copyright (c) 2002  Alex Züpke <azu@sysgo.de>
10  *  Copyright (c) 2002  Gary Jennejohn <garyj@denx.de>
11  *  Copyright (c) 2003  Richard Woodruff <r-woodruff2@ti.com>
12  *  Copyright (c) 2003  Kshitij <kshitij@ti.com>
13  *
14  * See file CREDITS for list of people who contributed to this
15  * project.
16  *
17  * This program is free software; you can redistribute it and/or
18  * modify it under the terms of the GNU General Public License as
19  * published by the Free Software Foundation; either version 2 of
20  * the License, or (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30  * MA 02111-1307 USA
31  */
32
33
34 #include <config.h>
35 #include <common.h>
36 #include <version.h>
37
38 #if defined(CONFIG_OMAP1610)
39 #include <./configs/omap1510.h>
40 #elif defined(CONFIG_OMAP730)
41 #include <./configs/omap730.h>
42 #endif
43
44 /*
45  *************************************************************************
46  *
47  * Jump vector table as in table 3.1 in [1]
48  *
49  *************************************************************************
50  */
51
52
53 .globl _start
54 _start:
55         b       reset
56         ldr     pc, _undefined_instruction
57         ldr     pc, _software_interrupt
58         ldr     pc, _prefetch_abort
59         ldr     pc, _data_abort
60         ldr     pc, _not_used
61         ldr     pc, _irq
62         ldr     pc, _fiq
63
64 _undefined_instruction:
65         .word undefined_instruction
66 _software_interrupt:
67         .word software_interrupt
68 _prefetch_abort:
69         .word prefetch_abort
70 _data_abort:
71         .word data_abort
72 _not_used:
73         .word not_used
74 _irq:
75         .word irq
76 _fiq:
77         .word fiq
78
79         .balignl 16,0xdeadbeef
80
81
82 /*
83  *************************************************************************
84  *
85  * Startup Code (reset vector)
86  *
87  * do important init only if we don't start from memory!
88  * setup Memory and board specific bits prior to relocation.
89  * relocate armboot to ram
90  * setup stack
91  *
92  *************************************************************************
93  */
94
95 _TEXT_BASE:
96         .word   TEXT_BASE
97
98 .globl _armboot_start
99 _armboot_start:
100         .word _start
101
102 /*
103  * These are defined in the board-specific linker script.
104  */
105 .globl _bss_start
106 _bss_start:
107         .word __bss_start
108
109 .globl _bss_end
110 _bss_end:
111         .word _end
112
113 #ifdef CONFIG_USE_IRQ
114 /* IRQ stack memory (calculated at run-time) */
115 .globl IRQ_STACK_START
116 IRQ_STACK_START:
117         .word   0x0badc0de
118
119 /* IRQ stack memory (calculated at run-time) */
120 .globl FIQ_STACK_START
121 FIQ_STACK_START:
122         .word 0x0badc0de
123 #endif
124
125
126 /*
127  * the actual reset code
128  */
129
130 reset:
131         /*
132          * set the cpu to SVC32 mode
133          */
134         mrs     r0,cpsr
135         bic     r0,r0,#0x1f
136         orr     r0,r0,#0xd3
137         msr     cpsr,r0
138
139         /*
140          * we do sys-critical inits only at reboot,
141          * not when booting from ram!
142          */
143 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
144         bl      cpu_init_crit
145 #endif
146
147 #ifndef CONFIG_SKIP_RELOCATE_UBOOT
148 relocate:                               /* relocate U-Boot to RAM           */
149         adr     r0, _start              /* r0 <- current position of code   */
150         ldr     r1, _TEXT_BASE          /* test if we run from flash or RAM */
151         cmp     r0, r1                  /* don't reloc during debug         */
152         beq     stack_setup
153
154         ldr     r2, _armboot_start
155         ldr     r3, _bss_start
156         sub     r2, r3, r2              /* r2 <- size of armboot            */
157         add     r2, r0, r2              /* r2 <- source end address         */
158
159 copy_loop:
160         ldmia   r0!, {r3-r10}           /* copy from source address [r0]    */
161         stmia   r1!, {r3-r10}           /* copy to   target address [r1]    */
162         cmp     r0, r2                  /* until source end addreee [r2]    */
163         ble     copy_loop
164 #endif  /* CONFIG_SKIP_RELOCATE_UBOOT */
165
166         /* Set up the stack                                                 */
167 stack_setup:
168         ldr     r0, _TEXT_BASE          /* upper 128 KiB: relocated uboot   */
169         sub     r0, r0, #CONFIG_SYS_MALLOC_LEN  /* malloc area                      */
170         sub     r0, r0, #CONFIG_SYS_GBL_DATA_SIZE /* bdinfo                        */
171 #ifdef CONFIG_USE_IRQ
172         sub     r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ)
173 #endif
174         sub     sp, r0, #12             /* leave 3 words for abort-stack    */
175         bic     sp, r0, #7              /* 8-byte align stack for ABI compliance */
176
177 clear_bss:
178         ldr     r0, _bss_start          /* find start of bss segment        */
179         ldr     r1, _bss_end            /* stop here                        */
180         mov     r2, #0x00000000         /* clear                            */
181
182 clbss_l:str     r2, [r0]                /* clear loop...                    */
183         add     r0, r0, #4
184         cmp     r0, r1
185         ble     clbss_l
186
187         bl coloured_LED_init
188         bl red_LED_on
189
190         ldr     pc, _start_armboot
191
192 _start_armboot:
193         .word start_armboot
194
195
196 /*
197  *************************************************************************
198  *
199  * CPU_init_critical registers
200  *
201  * setup important registers
202  * setup memory timing
203  *
204  *************************************************************************
205  */
206 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
207 cpu_init_crit:
208         /*
209          * flush v4 I/D caches
210          */
211         mov     r0, #0
212         mcr     p15, 0, r0, c7, c7, 0   /* flush v3/v4 cache */
213         mcr     p15, 0, r0, c8, c7, 0   /* flush v4 TLB */
214
215         /*
216          * disable MMU stuff and caches
217          */
218         mrc     p15, 0, r0, c1, c0, 0
219         bic     r0, r0, #0x00002300     /* clear bits 13, 9:8 (--V- --RS) */
220         bic     r0, r0, #0x00000087     /* clear bits 7, 2:0 (B--- -CAM) */
221         orr     r0, r0, #0x00000002     /* set bit 2 (A) Align */
222         orr     r0, r0, #0x00001000     /* set bit 12 (I) I-Cache */
223         mcr     p15, 0, r0, c1, c0, 0
224
225         /*
226          * Go setup Memory and board specific bits prior to relocation.
227          */
228         mov     ip, lr          /* perserve link reg across call */
229         bl      lowlevel_init   /* go setup pll,mux,memory */
230         mov     lr, ip          /* restore link */
231         mov     pc, lr          /* back to my caller */
232 #endif /* CONFIG_SKIP_LOWLEVEL_INIT */
233
234 /*
235  *************************************************************************
236  *
237  * Interrupt handling
238  *
239  *************************************************************************
240  */
241
242 @
243 @ IRQ stack frame.
244 @
245 #define S_FRAME_SIZE    72
246
247 #define S_OLD_R0        68
248 #define S_PSR           64
249 #define S_PC            60
250 #define S_LR            56
251 #define S_SP            52
252
253 #define S_IP            48
254 #define S_FP            44
255 #define S_R10           40
256 #define S_R9            36
257 #define S_R8            32
258 #define S_R7            28
259 #define S_R6            24
260 #define S_R5            20
261 #define S_R4            16
262 #define S_R3            12
263 #define S_R2            8
264 #define S_R1            4
265 #define S_R0            0
266
267 #define MODE_SVC 0x13
268 #define I_BIT    0x80
269
270 /*
271  * use bad_save_user_regs for abort/prefetch/undef/swi ...
272  * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
273  */
274
275         .macro  bad_save_user_regs
276         @ carve out a frame on current user stack
277         sub     sp, sp, #S_FRAME_SIZE
278         stmia   sp, {r0 - r12}  @ Save user registers (now in svc mode) r0-r12
279
280         ldr     r2, _armboot_start
281         sub     r2, r2, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN)
282         sub     r2, r2, #(CONFIG_SYS_GBL_DATA_SIZE+8)  @ set base 2 words into abort stack
283         @ get values for "aborted" pc and cpsr (into parm regs)
284         ldmia   r2, {r2 - r3}
285         add     r0, sp, #S_FRAME_SIZE           @ grab pointer to old stack
286         add     r5, sp, #S_SP
287         mov     r1, lr
288         stmia   r5, {r0 - r3}   @ save sp_SVC, lr_SVC, pc, cpsr
289         mov     r0, sp          @ save current stack into r0 (param register)
290         .endm
291
292         .macro  irq_save_user_regs
293         sub     sp, sp, #S_FRAME_SIZE
294         stmia   sp, {r0 - r12}                  @ Calling r0-r12
295         @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
296         add     r8, sp, #S_PC
297         stmdb   r8, {sp, lr}^           @ Calling SP, LR
298         str     lr, [r8, #0]            @ Save calling PC
299         mrs     r6, spsr
300         str     r6, [r8, #4]            @ Save CPSR
301         str     r0, [r8, #8]            @ Save OLD_R0
302         mov     r0, sp
303         .endm
304
305         .macro  irq_restore_user_regs
306         ldmia   sp, {r0 - lr}^                  @ Calling r0 - lr
307         mov     r0, r0
308         ldr     lr, [sp, #S_PC]                 @ Get PC
309         add     sp, sp, #S_FRAME_SIZE
310         subs    pc, lr, #4              @ return & move spsr_svc into cpsr
311         .endm
312
313         .macro get_bad_stack
314         ldr     r13, _armboot_start             @ setup our mode stack
315         sub     r13, r13, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN)
316         sub     r13, r13, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ reserved a couple spots in abort stack
317
318         str     lr, [r13]       @ save caller lr in position 0 of saved stack
319         mrs     lr, spsr        @ get the spsr
320         str     lr, [r13, #4]   @ save spsr in position 1 of saved stack
321         mov     r13, #MODE_SVC  @ prepare SVC-Mode
322         @ msr   spsr_c, r13
323         msr     spsr, r13       @ switch modes, make sure moves will execute
324         mov     lr, pc          @ capture return pc
325         movs    pc, lr          @ jump to next instruction & switch modes.
326         .endm
327
328         .macro get_irq_stack                    @ setup IRQ stack
329         ldr     sp, IRQ_STACK_START
330         .endm
331
332         .macro get_fiq_stack                    @ setup FIQ stack
333         ldr     sp, FIQ_STACK_START
334         .endm
335
336 /*
337  * exception handlers
338  */
339         .align  5
340 undefined_instruction:
341         get_bad_stack
342         bad_save_user_regs
343         bl      do_undefined_instruction
344
345         .align  5
346 software_interrupt:
347         get_bad_stack
348         bad_save_user_regs
349         bl      do_software_interrupt
350
351         .align  5
352 prefetch_abort:
353         get_bad_stack
354         bad_save_user_regs
355         bl      do_prefetch_abort
356
357         .align  5
358 data_abort:
359         get_bad_stack
360         bad_save_user_regs
361         bl      do_data_abort
362
363         .align  5
364 not_used:
365         get_bad_stack
366         bad_save_user_regs
367         bl      do_not_used
368
369 #ifdef CONFIG_USE_IRQ
370
371         .align  5
372 irq:
373         get_irq_stack
374         irq_save_user_regs
375         bl      do_irq
376         irq_restore_user_regs
377
378         .align  5
379 fiq:
380         get_fiq_stack
381         /* someone ought to write a more effiction fiq_save_user_regs */
382         irq_save_user_regs
383         bl      do_fiq
384         irq_restore_user_regs
385
386 #else
387
388         .align  5
389 irq:
390         get_bad_stack
391         bad_save_user_regs
392         bl      do_irq
393
394         .align  5
395 fiq:
396         get_bad_stack
397         bad_save_user_regs
398         bl      do_fiq
399
400 #endif