blob: 6cc7c43dbd01543b8b9cebbe3cecaffa004e43aa [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
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 Züpke <azu@sysgo.de>
8 * Copyright (c) 2002 Kyle Harris <kharris@nexus-tech.net>
9 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
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 memory!
59 * - relocate armboot to ram
60 * - setup stack
61 * - jump to second stage
62 */
63
64/*
65 * CFG_MEM_END is in the board dependent config-file (configs/config_BOARD.h)
66 */
67_TEXT_BASE:
68 .word TEXT_BASE
69
70.globl _armboot_start
71_armboot_start:
72 .word _start
73
74/*
75 * Note: _armboot_end_data and _armboot_end are defined
76 * by the (board-dependent) linker script.
77 * _armboot_end_data is the first usable FLASH address after armboot
78 */
79.globl _armboot_end_data
80_armboot_end_data:
81 .word armboot_end_data
82.globl _armboot_end
83_armboot_end:
84 .word armboot_end
85
86/*
87 * _armboot_real_end is the first usable RAM address behind armboot
88 * and the various stacks
89 */
90.globl _armboot_real_end
91_armboot_real_end:
92 .word 0x0badc0de
93
94/*
95 * We relocate uboot to this address (end of RAM - 128 KiB)
96 */
97.globl _uboot_reloc
98_uboot_reloc:
wdenk699b13a2002-11-03 18:03:52 +000099 .word TEXT_BASE
wdenkc6097192002-11-03 00:24:07 +0000100
101#ifdef CONFIG_USE_IRQ
102/* IRQ stack memory (calculated at run-time) */
103.globl IRQ_STACK_START
104IRQ_STACK_START:
105 .word 0x0badc0de
106
107/* IRQ stack memory (calculated at run-time) */
108.globl FIQ_STACK_START
109FIQ_STACK_START:
110 .word 0x0badc0de
111#endif
112
113
114/****************************************************************************/
115/* */
116/* the actual reset code */
117/* */
118/****************************************************************************/
119
120reset:
121 mrs r0,cpsr /* set the cpu to SVC32 mode */
122 bic r0,r0,#0x1f /* (superviser mode, M=10011) */
123 orr r0,r0,#0x13
124 msr cpsr,r0
125
126 bl cpu_init_crit /* we do sys-critical inits */
127
128relocate: /* relocate U-Boot to RAM */
129 adr r0, _start /* r0 <- current position of code */
130 ldr r2, _armboot_start
131 ldr r3, _armboot_end
132 sub r2, r3, r2 /* r2 <- size of armboot */
wdenkc6097192002-11-03 00:24:07 +0000133 ldr r1, _TEXT_BASE
134 add r2, r0, r2 /* r2 <- source end address */
135
136copy_loop:
137 ldmia r0!, {r3-r10} /* copy from source address [r0] */
138 stmia r1!, {r3-r10} /* copy to target address [r1] */
139 cmp r0, r2 /* until source end addreee [r2] */
140 ble copy_loop
141
142 /* Set up the stack */
143 ldr r0, _uboot_reloc /* upper 128 KiB: relocated uboot */
144 sub r0, r0, #CFG_MALLOC_LEN /* malloc area */
145 /* FIXME: bdinfo should be here */
146 sub sp, r0, #12 /* leave 3 words for abort-stack */
147
148 ldr pc, _start_armboot
149
150_start_armboot: .word start_armboot
151
152
153/****************************************************************************/
154/* */
155/* CPU_init_critical registers */
156/* */
157/* - setup important registers */
158/* - setup memory timing */
159/* */
160/****************************************************************************/
161
162 /* Interrupt-Controller base address */
163IC_BASE: .word 0x40d00000
164#define ICMR 0x04
165
166/* Reset-Controller */
167RST_BASE: .word 0x40f00030
168#define RCSR 0x00
169
170
171 /* Clock Manager Registers */
172CC_BASE: .word 0x41300000
173#define CCCR 0x00
174cpuspeed: .word CFG_CPUSPEED
175
176 /* RS: ??? */
177 .macro CPWAIT
wdenk699b13a2002-11-03 18:03:52 +0000178 mrc p15,0,r0,c2,c0,0
wdenkc6097192002-11-03 00:24:07 +0000179 mov r0,r0
180 sub pc,pc,#4
181 .endm
182
183
184cpu_init_crit:
185
186 /* mask all IRQs */
187 ldr r0, IC_BASE
188 mov r1, #0x00
189 str r1, [r0, #ICMR]
190
191 /* set clock speed */
192 ldr r0, CC_BASE
193 ldr r1, cpuspeed
194 str r1, [r0, #CCCR]
195
196 /*
197 * before relocating, we have to setup RAM timing
198 * because memory timing is board-dependend, you will
199 * find a memsetup.S in your board directory.
200 */
201 mov ip, lr
202 bl memsetup
203 mov lr, ip
204
205 /* Memory interfaces are working. Disable MMU and enable I-cache. */
206
207 ldr r0, =0x2001 /* enable access to all coproc. */
208 mcr p15, 0, r0, c15, c1, 0
wdenk699b13a2002-11-03 18:03:52 +0000209 CPWAIT
wdenkc6097192002-11-03 00:24:07 +0000210
211 mcr p15, 0, r0, c7, c10, 4 /* drain the write & fill buffers */
wdenk699b13a2002-11-03 18:03:52 +0000212 CPWAIT
wdenkc6097192002-11-03 00:24:07 +0000213
214 mcr p15, 0, r0, c7, c7, 0 /* flush Icache, Dcache and BTB */
wdenk699b13a2002-11-03 18:03:52 +0000215 CPWAIT
wdenkc6097192002-11-03 00:24:07 +0000216
217 mcr p15, 0, r0, c8, c7, 0 /* flush instuction and data TLBs */
wdenk699b13a2002-11-03 18:03:52 +0000218 CPWAIT
wdenkc6097192002-11-03 00:24:07 +0000219
220 /* Enable the Icache */
221/*
222 mrc p15, 0, r0, c1, c0, 0
223 orr r0, r0, #0x1800
224 mcr p15, 0, r0, c1, c0, 0
wdenk699b13a2002-11-03 18:03:52 +0000225 CPWAIT
wdenkc6097192002-11-03 00:24:07 +0000226*/
227 mov pc, lr
228
229
230/****************************************************************************/
231/* */
232/* Interrupt handling */
233/* */
234/****************************************************************************/
235
236/* IRQ stack frame */
237
238#define S_FRAME_SIZE 72
239
240#define S_OLD_R0 68
241#define S_PSR 64
242#define S_PC 60
243#define S_LR 56
244#define S_SP 52
245
246#define S_IP 48
247#define S_FP 44
248#define S_R10 40
249#define S_R9 36
250#define S_R8 32
251#define S_R7 28
252#define S_R6 24
253#define S_R5 20
254#define S_R4 16
255#define S_R3 12
256#define S_R2 8
257#define S_R1 4
258#define S_R0 0
259
260#define MODE_SVC 0x13
261
262 /* use bad_save_user_regs for abort/prefetch/undef/swi ... */
263
264 .macro bad_save_user_regs
265 sub sp, sp, #S_FRAME_SIZE
266 stmia sp, {r0 - r12} /* Calling r0-r12 */
267 add r8, sp, #S_PC
268
269 ldr r2, _armboot_end
270 add r2, r2, #CONFIG_STACKSIZE
271 sub r2, r2, #8
272 ldmia r2, {r2 - r4} /* get pc, cpsr, old_r0 */
273 add r0, sp, #S_FRAME_SIZE /* restore sp_SVC */
274
275 add r5, sp, #S_SP
276 mov r1, lr
277 stmia r5, {r0 - r4} /* save sp_SVC, lr_SVC, pc, cpsr, old_r */
278 mov r0, sp
279 .endm
280
281
282 /* use irq_save_user_regs / irq_restore_user_regs for */
283 /* IRQ/FIQ handling */
284
285 .macro irq_save_user_regs
286 sub sp, sp, #S_FRAME_SIZE
287 stmia sp, {r0 - r12} /* Calling r0-r12 */
288 add r8, sp, #S_PC
289 stmdb r8, {sp, lr}^ /* Calling SP, LR */
290 str lr, [r8, #0] /* Save calling PC */
291 mrs r6, spsr
292 str r6, [r8, #4] /* Save CPSR */
293 str r0, [r8, #8] /* Save OLD_R0 */
294 mov r0, sp
295 .endm
296
297 .macro irq_restore_user_regs
298 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
299 mov r0, r0
300 ldr lr, [sp, #S_PC] @ Get PC
301 add sp, sp, #S_FRAME_SIZE
302 subs pc, lr, #4 @ return & move spsr_svc into cpsr
303 .endm
304
305 .macro get_bad_stack
306 ldr r13, _armboot_end @ setup our mode stack
307 add r13, r13, #CONFIG_STACKSIZE @ resides at top of normal stack
308 sub r13, r13, #8
309
310 str lr, [r13] @ save caller lr / spsr
311 mrs lr, spsr
312 str lr, [r13, #4]
313
314 mov r13, #MODE_SVC @ prepare SVC-Mode
315 msr spsr_c, r13
316 mov lr, pc
317 movs pc, lr
318 .endm
319
320 .macro get_irq_stack @ setup IRQ stack
321 ldr sp, IRQ_STACK_START
322 .endm
323
324 .macro get_fiq_stack @ setup FIQ stack
325 ldr sp, FIQ_STACK_START
326 .endm
327
328
329/****************************************************************************/
330/* */
331/* exception handlers */
332/* */
333/****************************************************************************/
334
335 .align 5
336undefined_instruction:
337 get_bad_stack
338 bad_save_user_regs
339 bl do_undefined_instruction
340
341 .align 5
342software_interrupt:
343 get_bad_stack
344 bad_save_user_regs
345 bl do_software_interrupt
346
347 .align 5
348prefetch_abort:
349 get_bad_stack
350 bad_save_user_regs
351 bl do_prefetch_abort
352
353 .align 5
354data_abort:
355 get_bad_stack
356 bad_save_user_regs
357 bl do_data_abort
358
359 .align 5
360not_used:
361 get_bad_stack
362 bad_save_user_regs
363 bl do_not_used
364
365#ifdef CONFIG_USE_IRQ
366
367 .align 5
368irq:
369 get_irq_stack
370 irq_save_user_regs
371 bl do_irq
372 irq_restore_user_regs
373
374 .align 5
375fiq:
376 get_fiq_stack
377 irq_save_user_regs /* someone ought to write a more */
378 bl do_fiq /* effiction fiq_save_user_regs */
379 irq_restore_user_regs
380
381#else
382
383 .align 5
384irq:
385 get_bad_stack
386 bad_save_user_regs
387 bl do_irq
388
389 .align 5
390fiq:
391 get_bad_stack
392 bad_save_user_regs
393 bl do_fiq
394
395#endif
396
397/*
398 * FIXME How do we reset??? Watchdog timeout??
399 */
400 .align 5
401.globl reset_cpu
402reset_cpu:
403 /*
404 ldr r0, RST_BASE
405 mov r1, #0x0 @ set bit 3-0 ...
406 str r1, [r0, #RCSR] @ ... to clear in RCSR
407 mov r1, #0x1
408 str r1, [r0, #RCSR] @ and perform reset
409 */
410 b reset_cpu @ silly, but repeat endlessly
411