]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - cpu/pxa/start.S
a8cc0800b0ca48ad8e7cb7323789c4137c8c2ec0
[karo-tx-uboot.git] / cpu / pxa / start.S
1 /*
2  *  armboot - Startup Code for XScale
3  *
4  *  Copyright (C) 1998  Dan Malek <dmalek@jlc.net>
5  *  Copyright (C) 1999  Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
6  *  Copyright (C) 2000  Wolfgang Denk <wd@denx.de>
7  *  Copyright (C) 2001  Alex Zuepke <azu@sysgo.de>
8  *  Copyright (C) 2002  Kyle Harris <kharris@nexus-tech.net>
9  *  Copyright (C) 2003  Robert Schwebel <r.schwebel@pengutronix.de>
10  *  Copyright (C) 2003  Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de>
11  *
12  * See file CREDITS for list of people who contributed to this
13  * project.
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License as
17  * published by the Free Software Foundation; either version 2 of
18  * the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28  * MA 02111-1307 USA
29  */
30
31 #include <config.h>
32 #include <version.h>
33
34 .globl _start
35 _start: b       reset
36         ldr     pc, _undefined_instruction
37         ldr     pc, _software_interrupt
38         ldr     pc, _prefetch_abort
39         ldr     pc, _data_abort
40         ldr     pc, _not_used
41         ldr     pc, _irq
42         ldr     pc, _fiq
43
44 _undefined_instruction: .word undefined_instruction
45 _software_interrupt:    .word software_interrupt
46 _prefetch_abort:        .word prefetch_abort
47 _data_abort:            .word data_abort
48 _not_used:              .word not_used
49 _irq:                   .word irq
50 _fiq:                   .word fiq
51
52         .balignl 16,0xdeadbeef
53
54
55 /*
56  * Startup Code (reset vector)
57  *
58  * do important init only if we don't start from RAM!
59  * - relocate armboot to ram
60  * - setup stack
61  * - jump to second stage
62  */
63
64 _TEXT_BASE:
65         .word   TEXT_BASE
66
67 .globl _armboot_start
68 _armboot_start:
69         .word _start
70
71 /*
72  * These are defined in the board-specific linker script.
73  */
74 .globl _bss_start
75 _bss_start:
76         .word __bss_start
77
78 .globl _bss_end
79 _bss_end:
80         .word _end
81
82 #ifdef CONFIG_USE_IRQ
83 /* IRQ stack memory (calculated at run-time) */
84 .globl IRQ_STACK_START
85 IRQ_STACK_START:
86         .word   0x0badc0de
87
88 /* IRQ stack memory (calculated at run-time) */
89 .globl FIQ_STACK_START
90 FIQ_STACK_START:
91         .word 0x0badc0de
92 #endif
93
94
95 /****************************************************************************/
96 /*                                                                          */
97 /* the actual reset code                                                    */
98 /*                                                                          */
99 /****************************************************************************/
100
101 reset:
102         mrs     r0,cpsr                 /* set the cpu to SVC32 mode        */
103         bic     r0,r0,#0x1f             /* (superviser mode, M=10011)       */
104         orr     r0,r0,#0x13
105         msr     cpsr,r0
106
107         /*
108          * we do sys-critical inits only at reboot,
109          * not when booting from ram!
110          */
111 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
112         bl      cpu_init_crit           /* we do sys-critical inits         */
113 #endif
114
115 #ifndef CONFIG_SKIP_RELOCATE_UBOOT
116 relocate:                               /* relocate U-Boot to RAM           */
117         adr     r0, _start              /* r0 <- current position of code   */
118         ldr     r1, _TEXT_BASE          /* test if we run from flash or RAM */
119         cmp     r0, r1                  /* don't reloc during debug         */
120         beq     stack_setup
121
122         ldr     r2, _armboot_start
123         ldr     r3, _bss_start
124         sub     r2, r3, r2              /* r2 <- size of armboot            */
125         add     r2, r0, r2              /* r2 <- source end address         */
126
127 copy_loop:
128         ldmia   r0!, {r3-r10}           /* copy from source address [r0]    */
129         stmia   r1!, {r3-r10}           /* copy to   target address [r1]    */
130         cmp     r0, r2                  /* until source end addreee [r2]    */
131         ble     copy_loop
132 #endif  /* CONFIG_SKIP_RELOCATE_UBOOT */
133
134         /* Set up the stack                                                 */
135 stack_setup:
136         ldr     r0, _TEXT_BASE          /* upper 128 KiB: relocated uboot   */
137         sub     r0, r0, #CFG_MALLOC_LEN /* malloc area                      */
138         sub     r0, r0, #CFG_GBL_DATA_SIZE /* bdinfo                        */
139 #ifdef CONFIG_USE_IRQ
140         sub     r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ)
141 #endif
142         sub     sp, r0, #12             /* leave 3 words for abort-stack    */
143
144 clear_bss:
145         ldr     r0, _bss_start          /* find start of bss segment        */
146         ldr     r1, _bss_end            /* stop here                        */
147         mov     r2, #0x00000000         /* clear                            */
148
149 clbss_l:str     r2, [r0]                /* clear loop...                    */
150         add     r0, r0, #4
151         cmp     r0, r1
152         ble     clbss_l
153
154         ldr     pc, _start_armboot
155
156 _start_armboot: .word start_armboot
157
158
159 /****************************************************************************/
160 /*                                                                          */
161 /* CPU_init_critical registers                                              */
162 /*                                                                          */
163 /* - setup important registers                                              */
164 /* - setup memory timing                                                    */
165 /*                                                                          */
166 /****************************************************************************/
167
168 /* Interrupt-Controller base address                                        */
169 IC_BASE:           .word           0x40d00000
170 #define ICMR    0x04
171
172 /* Reset-Controller */
173 RST_BASE:       .word   0x40f00030
174 #define RCSR    0x00
175
176 /* Operating System Timer */
177 OSTIMER_BASE:   .word   0x40a00000
178 #define OSMR3   0x0C
179 #define OSCR    0x10
180 #define OWER    0x18
181 #define OIER    0x1C
182
183 /* Clock Manager Registers                                                  */
184 #ifdef CFG_CPUSPEED
185 CC_BASE:        .word   0x41300000
186 #define CCCR    0x00
187 cpuspeed:       .word   CFG_CPUSPEED
188 #else
189 #error "You have to define CFG_CPUSPEED!!"
190 #endif
191
192
193         /* RS: ???                                                          */
194         .macro CPWAIT
195         mrc  p15,0,r0,c2,c0,0
196         mov  r0,r0
197         sub  pc,pc,#4
198         .endm
199
200
201 cpu_init_crit:
202
203         /* mask all IRQs                                                    */
204         ldr     r0, IC_BASE
205         mov     r1, #0x00
206         str     r1, [r0, #ICMR]
207
208 #if defined(CFG_CPUSPEED)
209
210         /* set clock speed */
211         ldr     r0, CC_BASE
212         ldr     r1, cpuspeed
213         str     r1, [r0, #CCCR]
214         mov     r0, #2
215         mcr     p14, 0, r0, c6, c0, 0
216
217 setspeed_done:
218 #endif
219
220         /*
221          * before relocating, we have to setup RAM timing
222          * because memory timing is board-dependend, you will
223          * find a lowlevel_init.S in your board directory.
224          */
225         mov     ip,     lr
226         bl      lowlevel_init
227         mov     lr,     ip
228
229         /* Memory interfaces are working. Disable MMU and enable I-cache.   */
230
231         ldr     r0, =0x2001             /* enable access to all coproc.     */
232         mcr     p15, 0, r0, c15, c1, 0
233         CPWAIT
234
235         mcr     p15, 0, r0, c7, c10, 4  /* drain the write & fill buffers   */
236         CPWAIT
237
238         mcr     p15, 0, r0, c7, c7, 0   /* flush Icache, Dcache and BTB     */
239         CPWAIT
240
241         mcr     p15, 0, r0, c8, c7, 0   /* flush instuction and data TLBs   */
242         CPWAIT
243
244         /* Enable the Icache                                                */
245 /*
246         mrc     p15, 0, r0, c1, c0, 0
247         orr     r0, r0, #0x1800
248         mcr     p15, 0, r0, c1, c0, 0
249         CPWAIT
250 */
251         mov     pc, lr
252
253
254 /****************************************************************************/
255 /*                                                                          */
256 /* Interrupt handling                                                       */
257 /*                                                                          */
258 /****************************************************************************/
259
260 /* IRQ stack frame                                                          */
261
262 #define S_FRAME_SIZE    72
263
264 #define S_OLD_R0        68
265 #define S_PSR           64
266 #define S_PC            60
267 #define S_LR            56
268 #define S_SP            52
269
270 #define S_IP            48
271 #define S_FP            44
272 #define S_R10           40
273 #define S_R9            36
274 #define S_R8            32
275 #define S_R7            28
276 #define S_R6            24
277 #define S_R5            20
278 #define S_R4            16
279 #define S_R3            12
280 #define S_R2            8
281 #define S_R1            4
282 #define S_R0            0
283
284 #define MODE_SVC 0x13
285
286         /* use bad_save_user_regs for abort/prefetch/undef/swi ...          */
287
288         .macro  bad_save_user_regs
289         sub     sp, sp, #S_FRAME_SIZE
290         stmia   sp, {r0 - r12}                  /* Calling r0-r12           */
291         add     r8, sp, #S_PC
292
293         ldr     r2, _armboot_start
294         sub     r2, r2, #(CONFIG_STACKSIZE+CFG_MALLOC_LEN)
295         sub     r2, r2, #(CFG_GBL_DATA_SIZE+8)  @ set base 2 words into abort stack
296         ldmia   r2, {r2 - r4}                   /* get pc, cpsr, old_r0     */
297         add     r0, sp, #S_FRAME_SIZE           /* restore sp_SVC           */
298
299         add     r5, sp, #S_SP
300         mov     r1, lr
301         stmia   r5, {r0 - r4}                   /* save sp_SVC, lr_SVC, pc, cpsr, old_r */
302         mov     r0, sp
303         .endm
304
305
306         /* use irq_save_user_regs / irq_restore_user_regs for                */
307         /* IRQ/FIQ handling                                                  */
308
309         .macro  irq_save_user_regs
310         sub     sp, sp, #S_FRAME_SIZE
311         stmia   sp, {r0 - r12}                  /* Calling r0-r12            */
312         add     r8, sp, #S_PC
313         stmdb   r8, {sp, lr}^                   /* Calling SP, LR            */
314         str     lr, [r8, #0]                    /* Save calling PC           */
315         mrs     r6, spsr
316         str     r6, [r8, #4]                    /* Save CPSR                 */
317         str     r0, [r8, #8]                    /* Save OLD_R0               */
318         mov     r0, sp
319         .endm
320
321         .macro  irq_restore_user_regs
322         ldmia   sp, {r0 - lr}^                  @ Calling r0 - lr
323         mov     r0, r0
324         ldr     lr, [sp, #S_PC]                 @ Get PC
325         add     sp, sp, #S_FRAME_SIZE
326         subs    pc, lr, #4                      @ return & move spsr_svc into cpsr
327         .endm
328
329         .macro get_bad_stack
330         ldr     r13, _armboot_start             @ setup our mode stack
331         sub     r13, r13, #(CONFIG_STACKSIZE+CFG_MALLOC_LEN)
332         sub     r13, r13, #(CFG_GBL_DATA_SIZE+8) @ reserved a couple spots in abort stack
333
334         str     lr, [r13]                       @ save caller lr / spsr
335         mrs     lr, spsr
336         str     lr, [r13, #4]
337
338         mov     r13, #MODE_SVC                  @ prepare SVC-Mode
339         msr     spsr_c, r13
340         mov     lr, pc
341         movs    pc, lr
342         .endm
343
344         .macro get_irq_stack                    @ setup IRQ stack
345         ldr     sp, IRQ_STACK_START
346         .endm
347
348         .macro get_fiq_stack                    @ setup FIQ stack
349         ldr     sp, FIQ_STACK_START
350         .endm
351
352
353 /****************************************************************************/
354 /*                                                                          */
355 /* exception handlers                                                       */
356 /*                                                                          */
357 /****************************************************************************/
358
359         .align  5
360 undefined_instruction:
361         get_bad_stack
362         bad_save_user_regs
363         bl      do_undefined_instruction
364
365         .align  5
366 software_interrupt:
367         get_bad_stack
368         bad_save_user_regs
369         bl      do_software_interrupt
370
371         .align  5
372 prefetch_abort:
373         get_bad_stack
374         bad_save_user_regs
375         bl      do_prefetch_abort
376
377         .align  5
378 data_abort:
379         get_bad_stack
380         bad_save_user_regs
381         bl      do_data_abort
382
383         .align  5
384 not_used:
385         get_bad_stack
386         bad_save_user_regs
387         bl      do_not_used
388
389 #ifdef CONFIG_USE_IRQ
390
391         .align  5
392 irq:
393         get_irq_stack
394         irq_save_user_regs
395         bl      do_irq
396         irq_restore_user_regs
397
398         .align  5
399 fiq:
400         get_fiq_stack
401         irq_save_user_regs              /* someone ought to write a more    */
402         bl      do_fiq                  /* effiction fiq_save_user_regs     */
403         irq_restore_user_regs
404
405 #else
406
407         .align  5
408 irq:
409         get_bad_stack
410         bad_save_user_regs
411         bl      do_irq
412
413         .align  5
414 fiq:
415         get_bad_stack
416         bad_save_user_regs
417         bl      do_fiq
418
419 #endif
420
421 /****************************************************************************/
422 /*                                                                          */
423 /* Reset function: the PXA250 doesn't have a reset function, so we have to  */
424 /* perform a watchdog timeout for a soft reset.                             */
425 /*                                                                          */
426 /****************************************************************************/
427
428         .align  5
429 .globl reset_cpu
430
431         /* FIXME: this code is PXA250 specific. How is this handled on      */
432         /*        other XScale processors?                                  */
433
434 reset_cpu:
435
436         /* We set OWE:WME (watchdog enable) and wait until timeout happens  */
437
438         ldr     r0, OSTIMER_BASE
439         ldr     r1, [r0, #OWER]
440         orr     r1, r1, #0x0001                 /* bit0: WME                */
441         str     r1, [r0, #OWER]
442
443         /* OS timer does only wrap every 1165 seconds, so we have to set    */
444         /* the match register as well.                                      */
445
446         ldr     r1, [r0, #OSCR]                 /* read OS timer            */
447         add     r1, r1, #0x800                  /* let OSMR3 match after    */
448         add     r1, r1, #0x800                  /* 4096*(1/3.6864MHz)=1ms   */
449         str     r1, [r0, #OSMR3]
450
451 reset_endless:
452
453         b       reset_endless