]> git.ipfire.org Git - people/ms/u-boot.git/blob - cpu/arm1136/start.S
Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
[people/ms/u-boot.git] / cpu / arm1136 / start.S
1 /*
2 * armboot - Startup Code for OMP2420/ARM1136 CPU-core
3 *
4 * Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
5 *
6 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
7 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
8 * Copyright (c) 2002 Gary Jennejohn <gj@denx.de>
9 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
10 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
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 #if !defined(CONFIG_INTEGRATOR) && ! defined(CONFIG_ARCH_CINTEGRATOR)
34 #include <asm/arch/omap2420.h>
35 #endif
36 .globl _start
37 _start: b reset
38 #ifdef CONFIG_ONENAND_IPL
39 ldr pc, _hang
40 ldr pc, _hang
41 ldr pc, _hang
42 ldr pc, _hang
43 ldr pc, _hang
44 ldr pc, _hang
45 ldr pc, _hang
46
47 _hang:
48 .word do_hang
49 .word 0x12345678
50 .word 0x12345678
51 .word 0x12345678
52 .word 0x12345678
53 .word 0x12345678
54 .word 0x12345678
55 .word 0x12345678 /* now 16*4=64 */
56 #else
57 ldr pc, _undefined_instruction
58 ldr pc, _software_interrupt
59 ldr pc, _prefetch_abort
60 ldr pc, _data_abort
61 ldr pc, _not_used
62 ldr pc, _irq
63 ldr pc, _fiq
64
65 _undefined_instruction: .word undefined_instruction
66 _software_interrupt: .word software_interrupt
67 _prefetch_abort: .word prefetch_abort
68 _data_abort: .word data_abort
69 _not_used: .word not_used
70 _irq: .word irq
71 _fiq: .word fiq
72 _pad: .word 0x12345678 /* now 16*4=64 */
73 #endif /* CONFIG_ONENAND_IPL */
74 .global _end_vect
75 _end_vect:
76
77 .balignl 16,0xdeadbeef
78 /*
79 *************************************************************************
80 *
81 * Startup Code (reset vector)
82 *
83 * do important init only if we don't start from memory!
84 * setup Memory and board specific bits prior to relocation.
85 * relocate armboot to ram
86 * setup stack
87 *
88 *************************************************************************
89 */
90
91 _TEXT_BASE:
92 .word TEXT_BASE
93
94 .globl _armboot_start
95 _armboot_start:
96 .word _start
97
98 /*
99 * These are defined in the board-specific linker script.
100 */
101 .globl _bss_start
102 _bss_start:
103 .word __bss_start
104
105 .globl _bss_end
106 _bss_end:
107 .word _end
108
109 #ifdef CONFIG_USE_IRQ
110 /* IRQ stack memory (calculated at run-time) */
111 .globl IRQ_STACK_START
112 IRQ_STACK_START:
113 .word 0x0badc0de
114
115 /* IRQ stack memory (calculated at run-time) */
116 .globl FIQ_STACK_START
117 FIQ_STACK_START:
118 .word 0x0badc0de
119 #endif
120
121 /*
122 * the actual reset code
123 */
124
125 reset:
126 /*
127 * set the cpu to SVC32 mode
128 */
129 mrs r0,cpsr
130 bic r0,r0,#0x1f
131 orr r0,r0,#0xd3
132 msr cpsr,r0
133
134 #ifdef CONFIG_OMAP2420H4
135 /* Copy vectors to mask ROM indirect addr */
136 adr r0, _start /* r0 <- current position of code */
137 add r0, r0, #4 /* skip reset vector */
138 mov r2, #64 /* r2 <- size to copy */
139 add r2, r0, r2 /* r2 <- source end address */
140 mov r1, #SRAM_OFFSET0 /* build vect addr */
141 mov r3, #SRAM_OFFSET1
142 add r1, r1, r3
143 mov r3, #SRAM_OFFSET2
144 add r1, r1, r3
145 next:
146 ldmia r0!, {r3-r10} /* copy from source address [r0] */
147 stmia r1!, {r3-r10} /* copy to target address [r1] */
148 cmp r0, r2 /* until source end address [r2] */
149 bne next /* loop until equal */
150 bl cpy_clk_code /* put dpll adjust code behind vectors */
151 #endif
152 /* the mask ROM code should have PLL and others stable */
153 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
154 bl cpu_init_crit
155 #endif
156
157 #ifndef CONFIG_SKIP_RELOCATE_UBOOT
158 relocate: /* relocate U-Boot to RAM */
159 adr r0, _start /* r0 <- current position of code */
160 ldr r1, _TEXT_BASE /* test if we run from flash or RAM */
161 cmp r0, r1 /* don't reloc during debug */
162 #ifndef CONFIG_ONENAND_IPL
163 beq stack_setup
164 #endif /* CONFIG_ONENAND_IPL */
165
166 ldr r2, _armboot_start
167 ldr r3, _bss_start
168 sub r2, r3, r2 /* r2 <- size of armboot */
169 add r2, r0, r2 /* r2 <- source end address */
170
171 copy_loop:
172 ldmia r0!, {r3-r10} /* copy from source address [r0] */
173 stmia r1!, {r3-r10} /* copy to target address [r1] */
174 cmp r0, r2 /* until source end addreee [r2] */
175 ble copy_loop
176 #endif /* CONFIG_SKIP_RELOCATE_UBOOT */
177
178 /* Set up the stack */
179 stack_setup:
180 ldr r0, _TEXT_BASE /* upper 128 KiB: relocated uboot */
181 #ifdef CONFIG_ONENAND_IPL
182 sub sp, r0, #128 /* leave 32 words for abort-stack */
183 #else
184 sub r0, r0, #CFG_MALLOC_LEN /* malloc area */
185 sub r0, r0, #CFG_GBL_DATA_SIZE /* bdinfo */
186 #ifdef CONFIG_USE_IRQ
187 sub r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ)
188 #endif
189 sub sp, r0, #12 /* leave 3 words for abort-stack */
190 #endif /* CONFIG_ONENAND_IPL */
191
192 clear_bss:
193 ldr r0, _bss_start /* find start of bss segment */
194 ldr r1, _bss_end /* stop here */
195 mov r2, #0x00000000 /* clear */
196
197 #ifndef CONFIG_ONENAND_IPL
198 clbss_l:str r2, [r0] /* clear loop... */
199 add r0, r0, #4
200 cmp r0, r1
201 bne clbss_l
202 #endif
203
204 ldr pc, _start_armboot
205
206 #ifdef CONFIG_ONENAND_IPL
207 _start_armboot: .word start_oneboot
208 #else
209 _start_armboot: .word start_armboot
210 #endif
211
212
213 /*
214 *************************************************************************
215 *
216 * CPU_init_critical registers
217 *
218 * setup important registers
219 * setup memory timing
220 *
221 *************************************************************************
222 */
223 cpu_init_crit:
224 /*
225 * flush v4 I/D caches
226 */
227 mov r0, #0
228 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
229 mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
230
231 /*
232 * disable MMU stuff and caches
233 */
234 mrc p15, 0, r0, c1, c0, 0
235 bic r0, r0, #0x00002300 @ clear bits 13, 9:8 (--V- --RS)
236 bic r0, r0, #0x00000087 @ clear bits 7, 2:0 (B--- -CAM)
237 orr r0, r0, #0x00000002 @ set bit 2 (A) Align
238 orr r0, r0, #0x00001000 @ set bit 12 (I) I-Cache
239 mcr p15, 0, r0, c1, c0, 0
240
241 /*
242 * Jump to board specific initialization... The Mask ROM will have already initialized
243 * basic memory. Go here to bump up clock rate and handle wake up conditions.
244 */
245 mov ip, lr /* persevere link reg across call */
246 bl lowlevel_init /* go setup pll,mux,memory */
247 mov lr, ip /* restore link */
248 mov pc, lr /* back to my caller */
249
250 #ifndef CONFIG_ONENAND_IPL
251 /*
252 *************************************************************************
253 *
254 * Interrupt handling
255 *
256 *************************************************************************
257 */
258 @
259 @ IRQ stack frame.
260 @
261 #define S_FRAME_SIZE 72
262
263 #define S_OLD_R0 68
264 #define S_PSR 64
265 #define S_PC 60
266 #define S_LR 56
267 #define S_SP 52
268
269 #define S_IP 48
270 #define S_FP 44
271 #define S_R10 40
272 #define S_R9 36
273 #define S_R8 32
274 #define S_R7 28
275 #define S_R6 24
276 #define S_R5 20
277 #define S_R4 16
278 #define S_R3 12
279 #define S_R2 8
280 #define S_R1 4
281 #define S_R0 0
282
283 #define MODE_SVC 0x13
284 #define I_BIT 0x80
285
286 /*
287 * use bad_save_user_regs for abort/prefetch/undef/swi ...
288 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
289 */
290
291 .macro bad_save_user_regs
292 sub sp, sp, #S_FRAME_SIZE @ carve out a frame on current user stack
293 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
294
295 ldr r2, _armboot_start
296 sub r2, r2, #(CFG_MALLOC_LEN)
297 sub r2, r2, #(CFG_GBL_DATA_SIZE+8) @ set base 2 words into abort stack
298 ldmia r2, {r2 - r3} @ get values for "aborted" pc and cpsr (into parm regs)
299 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
300
301 add r5, sp, #S_SP
302 mov r1, lr
303 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
304 mov r0, sp @ save current stack into r0 (param register)
305 .endm
306
307 .macro irq_save_user_regs
308 sub sp, sp, #S_FRAME_SIZE
309 stmia sp, {r0 - r12} @ Calling r0-r12
310 add r8, sp, #S_PC @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
311 stmdb r8, {sp, lr}^ @ Calling SP, LR
312 str lr, [r8, #0] @ Save calling PC
313 mrs r6, spsr
314 str r6, [r8, #4] @ Save CPSR
315 str r0, [r8, #8] @ Save OLD_R0
316 mov r0, sp
317 .endm
318
319 .macro irq_restore_user_regs
320 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
321 mov r0, r0
322 ldr lr, [sp, #S_PC] @ Get PC
323 add sp, sp, #S_FRAME_SIZE
324 subs pc, lr, #4 @ return & move spsr_svc into cpsr
325 .endm
326
327 .macro get_bad_stack
328 ldr r13, _armboot_start @ setup our mode stack (enter in banked mode)
329 sub r13, r13, #(CFG_MALLOC_LEN) @ move past malloc pool
330 sub r13, r13, #(CFG_GBL_DATA_SIZE+8) @ move to reserved a couple spots for abort stack
331
332 str lr, [r13] @ save caller lr in position 0 of saved stack
333 mrs lr, spsr @ get the spsr
334 str lr, [r13, #4] @ save spsr in position 1 of saved stack
335
336 mov r13, #MODE_SVC @ prepare SVC-Mode
337 @ msr spsr_c, r13
338 msr spsr, r13 @ switch modes, make sure moves will execute
339 mov lr, pc @ capture return pc
340 movs pc, lr @ jump to next instruction & switch modes.
341 .endm
342
343 .macro get_bad_stack_swi
344 sub r13, r13, #4 @ space on current stack for scratch reg.
345 str r0, [r13] @ save R0's value.
346 ldr r0, _armboot_start @ get data regions start
347 sub r0, r0, #(CFG_MALLOC_LEN) @ move past malloc pool
348 sub r0, r0, #(CFG_GBL_DATA_SIZE+8) @ move past gbl and a couple spots for abort stack
349 str lr, [r0] @ save caller lr in position 0 of saved stack
350 mrs r0, spsr @ get the spsr
351 str lr, [r0, #4] @ save spsr in position 1 of saved stack
352 ldr r0, [r13] @ restore r0
353 add r13, r13, #4 @ pop stack entry
354 .endm
355
356 .macro get_irq_stack @ setup IRQ stack
357 ldr sp, IRQ_STACK_START
358 .endm
359
360 .macro get_fiq_stack @ setup FIQ stack
361 ldr sp, FIQ_STACK_START
362 .endm
363 #endif /* CONFIG_ONENAND_IPL */
364
365 /*
366 * exception handlers
367 */
368 #ifdef CONFIG_ONENAND_IPL
369 .align 5
370 do_hang:
371 ldr sp, _TEXT_BASE /* use 32 words about stack */
372 bl hang /* hang and never return */
373 #else /* !CONFIG_ONENAND IPL */
374 .align 5
375 undefined_instruction:
376 get_bad_stack
377 bad_save_user_regs
378 bl do_undefined_instruction
379
380 .align 5
381 software_interrupt:
382 get_bad_stack_swi
383 bad_save_user_regs
384 bl do_software_interrupt
385
386 .align 5
387 prefetch_abort:
388 get_bad_stack
389 bad_save_user_regs
390 bl do_prefetch_abort
391
392 .align 5
393 data_abort:
394 get_bad_stack
395 bad_save_user_regs
396 bl do_data_abort
397
398 .align 5
399 not_used:
400 get_bad_stack
401 bad_save_user_regs
402 bl do_not_used
403
404 #ifdef CONFIG_USE_IRQ
405
406 .align 5
407 irq:
408 get_irq_stack
409 irq_save_user_regs
410 bl do_irq
411 irq_restore_user_regs
412
413 .align 5
414 fiq:
415 get_fiq_stack
416 /* someone ought to write a more effiction fiq_save_user_regs */
417 irq_save_user_regs
418 bl do_fiq
419 irq_restore_user_regs
420
421 #else
422
423 .align 5
424 irq:
425 get_bad_stack
426 bad_save_user_regs
427 bl do_irq
428
429 .align 5
430 fiq:
431 get_bad_stack
432 bad_save_user_regs
433 bl do_fiq
434
435 #endif
436 .align 5
437 .global arm1136_cache_flush
438 arm1136_cache_flush:
439 mcr p15, 0, r1, c7, c5, 0 @ invalidate I cache
440 mov pc, lr @ back to caller
441
442 #if defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_CINTEGRATOR)
443 /* Use the IntegratorCP function from board/integratorcp/platform.S */
444 #else
445
446 .align 5
447 .globl reset_cpu
448 reset_cpu:
449 ldr r1, rstctl /* get addr for global reset reg */
450 mov r3, #0x2 /* full reset pll+mpu */
451 str r3, [r1] /* force reset */
452 mov r0, r0
453 _loop_forever:
454 b _loop_forever
455 rstctl:
456 .word PM_RSTCTRL_WKUP
457
458 #endif
459 #endif /* CONFIG_ONENAND_IPL */