2 * armboot - Startup Code for XScale
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>
12 * See file CREDITS for list of people who contributed to this
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.
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.
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,
33 #include <asm/arch/pxa-regs.h>
37 #ifdef CONFIG_PRELOADER
54 .word 0x12345678 /* now 16*4=64 */
56 ldr pc, _undefined_instruction
57 ldr pc, _software_interrupt
58 ldr pc, _prefetch_abort
64 _undefined_instruction: .word undefined_instruction
65 _software_interrupt: .word software_interrupt
66 _prefetch_abort: .word prefetch_abort
67 _data_abort: .word data_abort
68 _not_used: .word not_used
71 #endif /* CONFIG_PRELOADER */
73 .balignl 16,0xdeadbeef
77 * Startup Code (reset vector)
79 * do important init only if we don't start from RAM!
80 * - relocate armboot to RAM
82 * - jump to second stage
93 * These are defined in the board-specific linker script.
103 #ifdef CONFIG_USE_IRQ
104 /* IRQ stack memory (calculated at run-time) */
105 .globl IRQ_STACK_START
109 /* IRQ stack memory (calculated at run-time) */
110 .globl FIQ_STACK_START
113 #endif /* CONFIG_USE_IRQ */
116 /****************************************************************************/
118 /* the actual reset code */
120 /****************************************************************************/
123 mrs r0,cpsr /* set the CPU to SVC32 mode */
124 bic r0,r0,#0x1f /* (superviser mode, M=10011) */
129 * we do sys-critical inits only at reboot,
130 * not when booting from RAM!
132 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
133 bl cpu_init_crit /* we do sys-critical inits */
134 #endif /* !CONFIG_SKIP_LOWLEVEL_INIT */
136 #ifndef CONFIG_SKIP_RELOCATE_UBOOT
137 relocate: /* relocate U-Boot to RAM */
138 adr r0, _start /* r0 <- current position of code */
139 ldr r1, _TEXT_BASE /* test if we run from flash or RAM */
140 #ifndef CONFIG_PRELOADER
141 cmp r0, r1 /* don't reloc during debug */
145 ldr r2, _armboot_start
147 sub r2, r3, r2 /* r2 <- size of armboot */
148 add r2, r0, r2 /* r2 <- source end address */
151 ldmia r0!, {r3-r10} /* copy from source address [r0] */
152 stmia r1!, {r3-r10} /* copy to target address [r1] */
153 cmp r0, r2 /* until source end address [r2] */
155 #endif /* !CONFIG_SKIP_RELOCATE_UBOOT */
157 /* Set up the stack */
159 ldr r0, _TEXT_BASE /* upper 128 KiB: relocated uboot */
160 #ifdef CONFIG_PRELOADER
161 sub sp, r0, #128 /* leave 32 words for abort-stack */
163 sub r0, r0, #CONFIG_SYS_MALLOC_LEN /* malloc area */
164 sub r0, r0, #CONFIG_SYS_GBL_DATA_SIZE /* bdinfo */
165 #ifdef CONFIG_USE_IRQ
166 sub r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ)
167 #endif /* CONFIG_USE_IRQ */
168 sub sp, r0, #12 /* leave 3 words for abort-stack */
169 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
173 ldr r0, _bss_start /* find start of bss segment */
174 ldr r1, _bss_end /* stop here */
175 mov r2, #0x00000000 /* clear */
177 #ifndef CONFIG_PRELOADER
178 clbss_l:str r2, [r0] /* clear loop... */
184 ldr pc, _start_armboot
186 #ifdef CONFIG_ONENAND_IPL
187 _start_armboot: .word start_oneboot
189 _start_armboot: .word start_armboot
192 /****************************************************************************/
194 /* CPU_init_critical registers */
196 /* - setup important registers */
197 /* - setup memory timing */
199 /****************************************************************************/
200 /* mk@tbd: Fix this! */
209 /* Interrupt-Controller base address */
210 IC_BASE: .word 0x40d00000
213 /* Reset-Controller */
214 RST_BASE: .word 0x40f00030
217 /* Operating System Timer */
218 OSTIMER_BASE: .word 0x40a00000
224 /* Clock Manager Registers */
225 #ifdef CONFIG_CPU_MONAHANS
226 # ifndef CONFIG_SYS_MONAHANS_RUN_MODE_OSC_RATIO
227 # error "You have to define CONFIG_SYS_MONAHANS_RUN_MODE_OSC_RATIO!!"
228 # endif /* !CONFIG_SYS_MONAHANS_RUN_MODE_OSC_RATIO */
229 # ifndef CONFIG_SYS_MONAHANS_TURBO_RUN_MODE_RATIO
230 # define CONFIG_SYS_MONAHANS_TURBO_RUN_MODE_RATIO 0x1
231 # endif /* !CONFIG_SYS_MONAHANS_TURBO_RUN_MODE_RATIO */
232 #else /* !CONFIG_CPU_MONAHANS */
233 #ifdef CONFIG_SYS_CPUSPEED
234 CC_BASE: .word 0x41300000
236 cpuspeed: .word CONFIG_SYS_CPUSPEED
237 #else /* !CONFIG_SYS_CPUSPEED */
238 #error "You have to define CONFIG_SYS_CPUSPEED!!"
239 #endif /* CONFIG_SYS_CPUSPEED */
240 #endif /* CONFIG_CPU_MONAHANS */
242 /* takes care the CP15 update has taken place */
244 mrc p15,0,\reg,c2,c0,0
252 #ifndef CONFIG_CPU_MONAHANS
256 #else /* CONFIG_CPU_MONAHANS */
257 /* Step 1 - Enable CP6 permission */
258 mrc p15, 0, r1, c15, c1, 0 @ read CPAR
260 mcr p15, 0, r1, c15, c1, 0
263 /* Step 2 - Mask ICMR & ICMR2 */
265 mcr p6, 0, r1, c1, c0, 0 @ ICMR
266 mcr p6, 0, r1, c7, c0, 0 @ ICMR2
268 /* turn off all clocks but the ones we will definitly require */
270 ldr r2, =(CKENA_22_FFUART | CKENA_10_SRAM | CKENA_9_SMC | CKENA_8_DMC)
273 ldr r2, =(CKENB_6_IRQ)
275 #endif /* !CONFIG_CPU_MONAHANS */
277 /* set clock speed */
278 #ifdef CONFIG_CPU_MONAHANS
280 ldr r1, =(((CONFIG_SYS_MONAHANS_TURBO_RUN_MODE_RATIO<<8) & ACCR_XN_MASK) | (CONFIG_SYS_MONAHANS_RUN_MODE_OSC_RATIO & ACCR_XL_MASK))
282 #else /* !CONFIG_CPU_MONAHANS */
283 #ifdef CONFIG_SYS_CPUSPEED
288 mcr p14, 0, r0, c6, c0, 0
292 #endif /* CONFIG_SYS_CPUSPEED */
293 #endif /* CONFIG_CPU_MONAHANS */
296 * before relocating, we have to setup RAM timing
297 * because memory timing is board-dependend, you will
298 * find a lowlevel_init.S in your board directory.
304 /* Memory interfaces are working. Disable MMU and enable I-cache. */
305 /* mk: hmm, this is not in the monahans docs, leave it now but
306 * check here if it doesn't work :-) */
308 ldr r0, =0x2001 /* enable access to all coproc. */
309 mcr p15, 0, r0, c15, c1, 0
312 mcr p15, 0, r0, c7, c10, 4 /* drain the write & fill buffers */
315 mcr p15, 0, r0, c7, c7, 0 /* flush Icache, Dcache and BTB */
318 mcr p15, 0, r0, c8, c7, 0 /* flush instuction and data TLBs */
321 /* Enable the Icache */
323 mrc p15, 0, r0, c1, c0, 0
325 mcr p15, 0, r0, c1, c0, 0
330 #ifndef CONFIG_PRELOADER
331 /****************************************************************************/
333 /* Interrupt handling */
335 /****************************************************************************/
337 /* IRQ stack frame */
339 #define S_FRAME_SIZE 72
361 #define MODE_SVC 0x13
363 /* use bad_save_user_regs for abort/prefetch/undef/swi ... */
365 .macro bad_save_user_regs
366 sub sp, sp, #S_FRAME_SIZE
367 stmia sp, {r0 - r12} /* Calling r0-r12 */
370 ldr r2, _armboot_start
371 sub r2, r2, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN)
372 sub r2, r2, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ set base 2 words into abort stack
373 ldmia r2, {r2 - r4} /* get pc, cpsr, old_r0 */
374 add r0, sp, #S_FRAME_SIZE /* restore sp_SVC */
378 stmia r5, {r0 - r4} /* save sp_SVC, lr_SVC, pc, cpsr, old_r */
383 /* use irq_save_user_regs / irq_restore_user_regs for */
384 /* IRQ/FIQ handling */
386 .macro irq_save_user_regs
387 sub sp, sp, #S_FRAME_SIZE
388 stmia sp, {r0 - r12} /* Calling r0-r12 */
390 stmdb r8, {sp, lr}^ /* Calling SP, LR */
391 str lr, [r8, #0] /* Save calling PC */
393 str r6, [r8, #4] /* Save CPSR */
394 str r0, [r8, #8] /* Save OLD_R0 */
398 .macro irq_restore_user_regs
399 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
401 ldr lr, [sp, #S_PC] @ Get PC
402 add sp, sp, #S_FRAME_SIZE
403 subs pc, lr, #4 @ return & move spsr_svc into cpsr
407 ldr r13, _armboot_start @ setup our mode stack
408 sub r13, r13, #(CONFIG_STACKSIZE+CONFIG_SYS_MALLOC_LEN)
409 sub r13, r13, #(CONFIG_SYS_GBL_DATA_SIZE+8) @ reserved a couple spots in abort stack
411 str lr, [r13] @ save caller lr / spsr
415 mov r13, #MODE_SVC @ prepare SVC-Mode
421 .macro get_irq_stack @ setup IRQ stack
422 ldr sp, IRQ_STACK_START
425 .macro get_fiq_stack @ setup FIQ stack
426 ldr sp, FIQ_STACK_START
428 #endif /* CONFIG_PRELOADER */
431 /****************************************************************************/
433 /* exception handlers */
435 /****************************************************************************/
437 #ifdef CONFIG_PRELOADER
440 ldr sp, _TEXT_BASE /* use 32 words abort stack */
441 bl hang /* hang and never return */
442 #else /* !CONFIG_PRELOADER */
444 undefined_instruction:
447 bl do_undefined_instruction
453 bl do_software_interrupt
473 #ifdef CONFIG_USE_IRQ
480 irq_restore_user_regs
485 irq_save_user_regs /* someone ought to write a more */
486 bl do_fiq /* effiction fiq_save_user_regs */
487 irq_restore_user_regs
489 #else /* !CONFIG_USE_IRQ */
502 #endif /* CONFIG_PRELOADER */
503 #endif /* CONFIG_USE_IRQ */
505 /****************************************************************************/
507 /* Reset function: the PXA250 doesn't have a reset function, so we have to */
508 /* perform a watchdog timeout for a soft reset. */
510 /****************************************************************************/
515 /* FIXME: this code is PXA250 specific. How is this handled on */
516 /* other XScale processors? */
520 /* We set OWE:WME (watchdog enable) and wait until timeout happens */
524 orr r1, r1, #0x0001 /* bit0: WME */
527 /* OS timer does only wrap every 1165 seconds, so we have to set */
528 /* the match register as well. */
530 ldr r1, [r0, #OSCR] /* read OS timer */
531 add r1, r1, #0x800 /* let OSMR3 match after */
532 add r1, r1, #0x800 /* 4096*(1/3.6864MHz)=1ms */