blob: da0e61e6daa559494f9d712b443359bb4d0e24bc [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2 * armboot - Startup Code for ARM720 CPU-core
3 *
4 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
5 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenkcdc7fea2004-07-11 22:27:55 +000017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkfe8c2802002-11-03 00:38:21 +000018 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020026#include <asm-offsets.h>
wdenkfe8c2802002-11-03 00:38:21 +000027#include <config.h>
28#include <version.h>
wdenk39539882004-07-01 16:30:44 +000029#include <asm/hardware.h>
wdenkfe8c2802002-11-03 00:38:21 +000030
31/*
32 *************************************************************************
33 *
34 * Jump vector table as in table 3.1 in [1]
35 *
36 *************************************************************************
37 */
38
39
40.globl _start
wdenkcdc7fea2004-07-11 22:27:55 +000041_start: b reset
wdenkfe8c2802002-11-03 00:38:21 +000042 ldr pc, _undefined_instruction
43 ldr pc, _software_interrupt
44 ldr pc, _prefetch_abort
45 ldr pc, _data_abort
Gary Jennejohn6bd24472007-01-24 12:16:56 +010046#ifdef CONFIG_LPC2292
47 .word 0xB4405F76 /* 2's complement of the checksum of the vectors */
48#else
wdenkfe8c2802002-11-03 00:38:21 +000049 ldr pc, _not_used
Gary Jennejohn6bd24472007-01-24 12:16:56 +010050#endif
wdenkfe8c2802002-11-03 00:38:21 +000051 ldr pc, _irq
52 ldr pc, _fiq
53
wdenkcdc7fea2004-07-11 22:27:55 +000054_undefined_instruction: .word undefined_instruction
wdenkfe8c2802002-11-03 00:38:21 +000055_software_interrupt: .word software_interrupt
56_prefetch_abort: .word prefetch_abort
57_data_abort: .word data_abort
58_not_used: .word not_used
59_irq: .word irq
60_fiq: .word fiq
61
62 .balignl 16,0xdeadbeef
63
64
65/*
66 *************************************************************************
67 *
68 * Startup Code (reset vector)
69 *
wdenkf6e20fc2004-02-08 19:38:38 +000070 * do important init only if we don't start from RAM!
wdenkfe8c2802002-11-03 00:38:21 +000071 * relocate armboot to ram
72 * setup stack
73 * jump to second stage
74 *
75 *************************************************************************
76 */
77
Heiko Schocherabef7b82010-09-17 13:10:52 +020078.globl _TEXT_BASE
wdenkfe8c2802002-11-03 00:38:21 +000079_TEXT_BASE:
Wolfgang Denk14d0a022010-10-07 21:51:12 +020080 .word CONFIG_SYS_TEXT_BASE
wdenkfe8c2802002-11-03 00:38:21 +000081
wdenkfe8c2802002-11-03 00:38:21 +000082/*
wdenkf6e20fc2004-02-08 19:38:38 +000083 * These are defined in the board-specific linker script.
Albert Aribaud3336ca62010-11-25 22:45:02 +010084 * Subtracting _start from them lets the linker put their
85 * relative position in the executable instead of leaving
86 * them null.
wdenkfe8c2802002-11-03 00:38:21 +000087 */
Albert Aribaud3336ca62010-11-25 22:45:02 +010088.globl _bss_start_ofs
89_bss_start_ofs:
90 .word __bss_start - _start
wdenkf6e20fc2004-02-08 19:38:38 +000091
Albert Aribaud3336ca62010-11-25 22:45:02 +010092.globl _bss_end_ofs
93_bss_end_ofs:
94 .word _end - _start
wdenkfe8c2802002-11-03 00:38:21 +000095
wdenkfe8c2802002-11-03 00:38:21 +000096#ifdef CONFIG_USE_IRQ
97/* IRQ stack memory (calculated at run-time) */
98.globl IRQ_STACK_START
99IRQ_STACK_START:
100 .word 0x0badc0de
101
102/* IRQ stack memory (calculated at run-time) */
103.globl FIQ_STACK_START
104FIQ_STACK_START:
105 .word 0x0badc0de
106#endif
107
Heiko Schocherabef7b82010-09-17 13:10:52 +0200108/* IRQ stack memory (calculated at run-time) + 8 bytes */
109.globl IRQ_STACK_START_IN
110IRQ_STACK_START_IN:
111 .word 0x0badc0de
112
Heiko Schocherabef7b82010-09-17 13:10:52 +0200113/*
114 * the actual reset code
115 */
116
117reset:
118 /*
119 * set the cpu to SVC32 mode
120 */
121 mrs r0,cpsr
122 bic r0,r0,#0x1f
123 orr r0,r0,#0xd3
124 msr cpsr,r0
125
126 /*
127 * we do sys-critical inits only at reboot,
128 * not when booting from ram!
129 */
130#ifndef CONFIG_SKIP_LOWLEVEL_INIT
131 bl cpu_init_crit
132#endif
133
134#ifdef CONFIG_LPC2292
135 bl lowlevel_init
136#endif
137
138/* Set stackpointer in internal RAM to call board_init_f */
139call_board_init_f:
140 ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
Heiko Schocher296cae72010-11-12 07:53:55 +0100141 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
Heiko Schocherabef7b82010-09-17 13:10:52 +0200142 ldr r0,=0x00000000
143 bl board_init_f
144
145/*------------------------------------------------------------------------------*/
146
147/*
148 * void relocate_code (addr_sp, gd, addr_moni)
149 *
150 * This "function" does not return, instead it continues in RAM
151 * after relocating the monitor code.
152 *
153 */
154 .globl relocate_code
155relocate_code:
156 mov r4, r0 /* save addr_sp */
157 mov r5, r1 /* save addr of gd */
158 mov r6, r2 /* save addr of destination */
159 mov r7, r2 /* save addr of destination */
160
161 /* Set up the stack */
162stack_setup:
163 mov sp, r4
164
165 adr r0, _start
166 ldr r2, _TEXT_BASE
Albert Aribaud3336ca62010-11-25 22:45:02 +0100167 ldr r3, _bss_start_ofs
168 add r2, r0, r3 /* r2 <- source end address */
Heiko Schocherabef7b82010-09-17 13:10:52 +0200169 cmp r0, r6
170 beq clear_bss
171
Heiko Schocherabef7b82010-09-17 13:10:52 +0200172copy_loop:
173 ldmia r0!, {r9-r10} /* copy from source address [r0] */
174 stmia r6!, {r9-r10} /* copy to target address [r1] */
Albert Aribaudda90d4c2010-10-05 16:06:39 +0200175 cmp r0, r2 /* until source end address [r2] */
176 blo copy_loop
Heiko Schocherabef7b82010-09-17 13:10:52 +0200177
178#ifndef CONFIG_PRELOADER
Albert Aribaud3336ca62010-11-25 22:45:02 +0100179 /*
180 * fix .rel.dyn relocations
181 */
182 ldr r0, _TEXT_BASE /* r0 <- Text base */
183 sub r9, r7, r0 /* r9 <- relocation offset */
184 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
185 add r10, r10, r0 /* r10 <- sym table in FLASH */
186 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
187 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
188 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
189 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
Heiko Schocherabef7b82010-09-17 13:10:52 +0200190fixloop:
Albert Aribaud3336ca62010-11-25 22:45:02 +0100191 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
192 add r0, r0, r9 /* r0 <- location to fix up in RAM */
193 ldr r1, [r2, #4]
194 and r8, r1, #0xff
195 cmp r8, #23 /* relative fixup? */
196 beq fixrel
197 cmp r8, #2 /* absolute fixup? */
198 beq fixabs
199 /* ignore unknown type of fixup */
200 b fixnext
201fixabs:
202 /* absolute fix: set location to (offset) symbol value */
203 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
204 add r1, r10, r1 /* r1 <- address of symbol in table */
205 ldr r1, [r1, #4] /* r1 <- symbol value */
206 add r1, r9 /* r1 <- relocated sym addr */
207 b fixnext
208fixrel:
209 /* relative fix: increase location by offset */
210 ldr r1, [r0]
211 add r1, r1, r9
212fixnext:
213 str r1, [r0]
214 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
Heiko Schocherabef7b82010-09-17 13:10:52 +0200215 cmp r2, r3
Wolfgang Denk79e63132010-10-23 23:22:38 +0200216 blo fixloop
Heiko Schocherabef7b82010-09-17 13:10:52 +0200217#endif
Heiko Schocherabef7b82010-09-17 13:10:52 +0200218
219clear_bss:
220#ifndef CONFIG_PRELOADER
Albert Aribaud3336ca62010-11-25 22:45:02 +0100221 ldr r0, _bss_start_ofs
222 ldr r1, _bss_end_ofs
Heiko Schocherabef7b82010-09-17 13:10:52 +0200223 ldr r3, _TEXT_BASE /* Text base */
224 mov r4, r7 /* reloc addr */
Heiko Schocherabef7b82010-09-17 13:10:52 +0200225 add r0, r0, r4
Heiko Schocherabef7b82010-09-17 13:10:52 +0200226 add r1, r1, r4
227 mov r2, #0x00000000 /* clear */
228
229clbss_l:str r2, [r0] /* clear loop... */
230 add r0, r0, #4
231 cmp r0, r1
232 bne clbss_l
233
234 bl coloured_LED_init
235 bl red_LED_on
236#endif
237
238/*
239 * We are done. Do not return, instead branch to second part of board
240 * initialization, now running from RAM.
241 */
Albert Aribaud3336ca62010-11-25 22:45:02 +0100242 ldr r0, _board_init_r_ofs
243 adr r1, _start
244 add lr, r0, r1
245 add lr, lr, r9
Heiko Schocherabef7b82010-09-17 13:10:52 +0200246 /* setup parameters for board_init_r */
247 mov r0, r5 /* gd_t */
248 mov r1, r7 /* dest_addr */
249 /* jump to it ... */
Heiko Schocherabef7b82010-09-17 13:10:52 +0200250 mov pc, lr
251
Albert Aribaud3336ca62010-11-25 22:45:02 +0100252_board_init_r_ofs:
253 .word board_init_r - _start
254
255_rel_dyn_start_ofs:
256 .word __rel_dyn_start - _start
257_rel_dyn_end_ofs:
258 .word __rel_dyn_end - _start
259_dynsym_start_ofs:
260 .word __dynsym_start - _start
Heiko Schocherabef7b82010-09-17 13:10:52 +0200261
wdenkfe8c2802002-11-03 00:38:21 +0000262/*
263 *************************************************************************
264 *
265 * CPU_init_critical registers
266 *
267 * setup important registers
268 * setup memory timing
269 *
270 *************************************************************************
271 */
272
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200273#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)
wdenkfe8c2802002-11-03 00:38:21 +0000274
275/* Interupt-Controller base addresses */
276INTMR1: .word 0x80000280 @ 32 bit size
277INTMR2: .word 0x80001280 @ 16 bit size
278INTMR3: .word 0x80002280 @ 8 bit size
279
280/* SYSCONs */
281SYSCON1: .word 0x80000100
282SYSCON2: .word 0x80001100
283SYSCON3: .word 0x80002200
284
285#define CLKCTL 0x6 /* mask */
286#define CLKCTL_18 0x0 /* 18.432 MHz */
287#define CLKCTL_36 0x2 /* 36.864 MHz */
288#define CLKCTL_49 0x4 /* 49.152 MHz */
289#define CLKCTL_73 0x6 /* 73.728 MHz */
290
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100291#elif defined(CONFIG_LPC2292)
292PLLCFG_ADR: .word PLLCFG
293PLLFEED_ADR: .word PLLFEED
294PLLCON_ADR: .word PLLCON
295PLLSTAT_ADR: .word PLLSTAT
296VPBDIV_ADR: .word VPBDIV
297MEMMAP_ADR: .word MEMMAP
298
wdenk39539882004-07-01 16:30:44 +0000299#endif
300
wdenkfe8c2802002-11-03 00:38:21 +0000301cpu_init_crit:
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200302#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)
wdenk39539882004-07-01 16:30:44 +0000303
wdenkfe8c2802002-11-03 00:38:21 +0000304 /*
305 * mask all IRQs by clearing all bits in the INTMRs
306 */
307 mov r1, #0x00
308 ldr r0, INTMR1
309 str r1, [r0]
310 ldr r0, INTMR2
311 str r1, [r0]
312 ldr r0, INTMR3
313 str r1, [r0]
314
315 /*
316 * flush v4 I/D caches
317 */
318 mov r0, #0
319 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
320 mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
321
322 /*
323 * disable MMU stuff and caches
324 */
325 mrc p15,0,r0,c1,c0
326 bic r0, r0, #0x00002300 @ clear bits 13, 9:8 (--V- --RS)
327 bic r0, r0, #0x0000008f @ clear bits 7, 3:0 (B--- WCAM)
328 orr r0, r0, #0x00000002 @ set bit 2 (A) Align
329 mcr p15,0,r0,c1,c0
wdenk39539882004-07-01 16:30:44 +0000330#elif defined(CONFIG_NETARM)
wdenk2d1a5372004-02-23 19:30:57 +0000331 /*
332 * prior to software reset : need to set pin PORTC4 to be *HRESET
333 */
334 ldr r0, =NETARM_GEN_MODULE_BASE
335 ldr r1, =(NETARM_GEN_PORT_MODE(0x10) | \
336 NETARM_GEN_PORT_DIR(0x10))
337 str r1, [r0, #+NETARM_GEN_PORTC]
338 /*
339 * software reset : see HW Ref. Guide 8.2.4 : Software Service register
wdenkcdc7fea2004-07-11 22:27:55 +0000340 * for an explanation of this process
wdenk2d1a5372004-02-23 19:30:57 +0000341 */
342 ldr r0, =NETARM_GEN_MODULE_BASE
343 ldr r1, =NETARM_GEN_SW_SVC_RESETA
344 str r1, [r0, #+NETARM_GEN_SOFTWARE_SERVICE]
345 ldr r1, =NETARM_GEN_SW_SVC_RESETB
346 str r1, [r0, #+NETARM_GEN_SOFTWARE_SERVICE]
347 ldr r1, =NETARM_GEN_SW_SVC_RESETA
348 str r1, [r0, #+NETARM_GEN_SOFTWARE_SERVICE]
349 ldr r1, =NETARM_GEN_SW_SVC_RESETB
350 str r1, [r0, #+NETARM_GEN_SOFTWARE_SERVICE]
351 /*
352 * setup PLL and System Config
353 */
354 ldr r0, =NETARM_GEN_MODULE_BASE
355
356 ldr r1, =( NETARM_GEN_SYS_CFG_LENDIAN | \
357 NETARM_GEN_SYS_CFG_BUSFULL | \
358 NETARM_GEN_SYS_CFG_USER_EN | \
359 NETARM_GEN_SYS_CFG_ALIGN_ABORT | \
360 NETARM_GEN_SYS_CFG_BUSARB_INT | \
361 NETARM_GEN_SYS_CFG_BUSMON_EN )
362
363 str r1, [r0, #+NETARM_GEN_SYSTEM_CONTROL]
364
Wolfgang Denk3df5bea2005-10-09 01:41:48 +0200365#ifndef CONFIG_NETARM_PLL_BYPASS
wdenk2d1a5372004-02-23 19:30:57 +0000366 ldr r1, =( NETARM_GEN_PLL_CTL_PLLCNT(NETARM_PLL_COUNT_VAL) | \
367 NETARM_GEN_PLL_CTL_POLTST_DEF | \
368 NETARM_GEN_PLL_CTL_INDIV(1) | \
369 NETARM_GEN_PLL_CTL_ICP_DEF | \
370 NETARM_GEN_PLL_CTL_OUTDIV(2) )
371 str r1, [r0, #+NETARM_GEN_PLL_CONTROL]
Wolfgang Denk3df5bea2005-10-09 01:41:48 +0200372#endif
373
wdenk2d1a5372004-02-23 19:30:57 +0000374 /*
375 * mask all IRQs by clearing all bits in the INTMRs
376 */
377 mov r1, #0
378 ldr r0, =NETARM_GEN_MODULE_BASE
379 str r1, [r0, #+NETARM_GEN_INTR_ENABLE]
wdenk39539882004-07-01 16:30:44 +0000380
381#elif defined(CONFIG_S3C4510B)
382
383 /*
384 * Mask off all IRQ sources
385 */
386 ldr r1, =REG_INTMASK
387 ldr r0, =0x3FFFFF
388 str r0, [r1]
389
390 /*
391 * Disable Cache
392 */
393 ldr r0, =REG_SYSCFG
wdenkcdc7fea2004-07-11 22:27:55 +0000394 ldr r1, =0x83ffffa0 /* cache-disabled */
wdenk39539882004-07-01 16:30:44 +0000395 str r1, [r0]
396
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200397#elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
398 /* No specific initialisation for IntegratorAP/CM720T as yet */
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100399#elif defined(CONFIG_LPC2292)
400 /* Set-up PLL */
401 mov r3, #0xAA
402 mov r4, #0x55
Wolfgang Denkf8db84f2007-01-30 00:50:40 +0100403 /* First disconnect and disable the PLL */
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100404 ldr r0, PLLCON_ADR
405 mov r1, #0x00
406 str r1, [r0]
407 ldr r0, PLLFEED_ADR /* start feed sequence */
408 str r3, [r0]
Wolfgang Denkf8db84f2007-01-30 00:50:40 +0100409 str r4, [r0] /* feed sequence done */
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100410 /* Set new M and P values */
411 ldr r0, PLLCFG_ADR
412 mov r1, #0x23 /* M=4 and P=2 */
413 str r1, [r0]
414 ldr r0, PLLFEED_ADR /* start feed sequence */
415 str r3, [r0]
416 str r4, [r0] /* feed sequence done */
417 /* Then enable the PLL */
418 ldr r0, PLLCON_ADR
419 mov r1, #0x01 /* PLL enable bit */
420 str r1, [r0]
421 ldr r0, PLLFEED_ADR /* start feed sequence */
422 str r3, [r0]
423 str r4, [r0] /* feed sequence done */
Wolfgang Denkf8db84f2007-01-30 00:50:40 +0100424 /* Wait for the lock */
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100425 ldr r0, PLLSTAT_ADR
426 mov r1, #0x400 /* lock bit */
Wolfgang Denkf8db84f2007-01-30 00:50:40 +0100427lock_loop:
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100428 ldr r2, [r0]
429 and r2, r1, r2
430 cmp r2, #0
431 beq lock_loop
432 /* And finally connect the PLL */
433 ldr r0, PLLCON_ADR
434 mov r1, #0x03 /* PLL enable bit and connect bit */
435 str r1, [r0]
436 ldr r0, PLLFEED_ADR /* start feed sequence */
437 str r3, [r0]
Wolfgang Denkf8db84f2007-01-30 00:50:40 +0100438 str r4, [r0] /* feed sequence done */
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100439 /* Set-up VPBDIV register */
440 ldr r0, VPBDIV_ADR
441 mov r1, #0x01 /* VPB clock is same as process clock */
442 str r1, [r0]
wdenk39539882004-07-01 16:30:44 +0000443#else
444#error No cpu_init_crit() defined for current CPU type
445#endif
wdenkfe8c2802002-11-03 00:38:21 +0000446
447#ifdef CONFIG_ARM7_REVD
448 /* set clock speed */
449 /* !!! we run @ 36 MHz due to a hardware flaw in Rev. D processors */
450 /* !!! not doing DRAM refresh properly! */
451 ldr r0, SYSCON3
452 ldr r1, [r0]
453 bic r1, r1, #CLKCTL
454 orr r1, r1, #CLKCTL_36
455 str r1, [r0]
456#endif
457
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100458#ifndef CONFIG_LPC2292
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200459 mov ip, lr
wdenkfe8c2802002-11-03 00:38:21 +0000460 /*
461 * before relocating, we have to setup RAM timing
wdenkf6e20fc2004-02-08 19:38:38 +0000462 * because memory timing is board-dependent, you will
wdenk400558b2005-04-02 23:52:25 +0000463 * find a lowlevel_init.S in your board directory.
wdenkfe8c2802002-11-03 00:38:21 +0000464 */
wdenk400558b2005-04-02 23:52:25 +0000465 bl lowlevel_init
wdenkfe8c2802002-11-03 00:38:21 +0000466 mov lr, ip
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100467#endif
wdenkfe8c2802002-11-03 00:38:21 +0000468
469 mov pc, lr
470
471
wdenkfe8c2802002-11-03 00:38:21 +0000472/*
473 *************************************************************************
474 *
475 * Interrupt handling
476 *
477 *************************************************************************
478 */
479
480@
481@ IRQ stack frame.
482@
483#define S_FRAME_SIZE 72
484
485#define S_OLD_R0 68
486#define S_PSR 64
487#define S_PC 60
488#define S_LR 56
489#define S_SP 52
490
491#define S_IP 48
492#define S_FP 44
493#define S_R10 40
494#define S_R9 36
495#define S_R8 32
496#define S_R7 28
497#define S_R6 24
498#define S_R5 20
499#define S_R4 16
500#define S_R3 12
501#define S_R2 8
502#define S_R1 4
503#define S_R0 0
504
505#define MODE_SVC 0x13
506#define I_BIT 0x80
507
508/*
509 * use bad_save_user_regs for abort/prefetch/undef/swi ...
510 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
511 */
512
513 .macro bad_save_user_regs
514 sub sp, sp, #S_FRAME_SIZE
515 stmia sp, {r0 - r12} @ Calling r0-r12
wdenkcdc7fea2004-07-11 22:27:55 +0000516 add r8, sp, #S_PC
wdenkfe8c2802002-11-03 00:38:21 +0000517
Heiko Schocherabef7b82010-09-17 13:10:52 +0200518 ldr r2, IRQ_STACK_START_IN
wdenkcdc7fea2004-07-11 22:27:55 +0000519 ldmia r2, {r2 - r4} @ get pc, cpsr, old_r0
wdenkfe8c2802002-11-03 00:38:21 +0000520 add r0, sp, #S_FRAME_SIZE @ restore sp_SVC
521
522 add r5, sp, #S_SP
523 mov r1, lr
wdenkcdc7fea2004-07-11 22:27:55 +0000524 stmia r5, {r0 - r4} @ save sp_SVC, lr_SVC, pc, cpsr, old_r
wdenkfe8c2802002-11-03 00:38:21 +0000525 mov r0, sp
526 .endm
527
528 .macro irq_save_user_regs
529 sub sp, sp, #S_FRAME_SIZE
530 stmia sp, {r0 - r12} @ Calling r0-r12
wdenkcdc7fea2004-07-11 22:27:55 +0000531 add r8, sp, #S_PC
532 stmdb r8, {sp, lr}^ @ Calling SP, LR
533 str lr, [r8, #0] @ Save calling PC
534 mrs r6, spsr
535 str r6, [r8, #4] @ Save CPSR
536 str r0, [r8, #8] @ Save OLD_R0
wdenkfe8c2802002-11-03 00:38:21 +0000537 mov r0, sp
538 .endm
539
540 .macro irq_restore_user_regs
541 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
542 mov r0, r0
543 ldr lr, [sp, #S_PC] @ Get PC
544 add sp, sp, #S_FRAME_SIZE
545 subs pc, lr, #4 @ return & move spsr_svc into cpsr
546 .endm
547
548 .macro get_bad_stack
Heiko Schocherabef7b82010-09-17 13:10:52 +0200549 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
wdenkfe8c2802002-11-03 00:38:21 +0000550
551 str lr, [r13] @ save caller lr / spsr
552 mrs lr, spsr
wdenkcdc7fea2004-07-11 22:27:55 +0000553 str lr, [r13, #4]
wdenkfe8c2802002-11-03 00:38:21 +0000554
555 mov r13, #MODE_SVC @ prepare SVC-Mode
556 msr spsr_c, r13
557 mov lr, pc
558 movs pc, lr
559 .endm
560
561 .macro get_irq_stack @ setup IRQ stack
562 ldr sp, IRQ_STACK_START
563 .endm
564
565 .macro get_fiq_stack @ setup FIQ stack
566 ldr sp, FIQ_STACK_START
567 .endm
568
569/*
570 * exception handlers
571 */
wdenkcdc7fea2004-07-11 22:27:55 +0000572 .align 5
wdenkfe8c2802002-11-03 00:38:21 +0000573undefined_instruction:
574 get_bad_stack
575 bad_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000576 bl do_undefined_instruction
wdenkfe8c2802002-11-03 00:38:21 +0000577
578 .align 5
579software_interrupt:
580 get_bad_stack
581 bad_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000582 bl do_software_interrupt
wdenkfe8c2802002-11-03 00:38:21 +0000583
584 .align 5
585prefetch_abort:
586 get_bad_stack
587 bad_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000588 bl do_prefetch_abort
wdenkfe8c2802002-11-03 00:38:21 +0000589
590 .align 5
591data_abort:
592 get_bad_stack
593 bad_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000594 bl do_data_abort
wdenkfe8c2802002-11-03 00:38:21 +0000595
596 .align 5
597not_used:
598 get_bad_stack
599 bad_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000600 bl do_not_used
wdenkfe8c2802002-11-03 00:38:21 +0000601
602#ifdef CONFIG_USE_IRQ
603
604 .align 5
605irq:
606 get_irq_stack
607 irq_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000608 bl do_irq
wdenkfe8c2802002-11-03 00:38:21 +0000609 irq_restore_user_regs
610
611 .align 5
612fiq:
613 get_fiq_stack
614 /* someone ought to write a more effiction fiq_save_user_regs */
615 irq_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000616 bl do_fiq
wdenkfe8c2802002-11-03 00:38:21 +0000617 irq_restore_user_regs
618
619#else
620
621 .align 5
622irq:
623 get_bad_stack
624 bad_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000625 bl do_irq
wdenkfe8c2802002-11-03 00:38:21 +0000626
627 .align 5
628fiq:
629 get_bad_stack
630 bad_save_user_regs
wdenkcdc7fea2004-07-11 22:27:55 +0000631 bl do_fiq
wdenkfe8c2802002-11-03 00:38:21 +0000632
633#endif
634
Wolfgang Denkc570b2f2005-09-26 01:06:33 +0200635#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)
wdenkfe8c2802002-11-03 00:38:21 +0000636 .align 5
637.globl reset_cpu
638reset_cpu:
wdenkcdc7fea2004-07-11 22:27:55 +0000639 mov ip, #0
640 mcr p15, 0, ip, c7, c7, 0 @ invalidate cache
641 mcr p15, 0, ip, c8, c7, 0 @ flush TLB (v4)
642 mrc p15, 0, ip, c1, c0, 0 @ get ctrl register
643 bic ip, ip, #0x000f @ ............wcam
644 bic ip, ip, #0x2100 @ ..v....s........
645 mcr p15, 0, ip, c1, c0, 0 @ ctrl register
646 mov pc, r0
wdenk39539882004-07-01 16:30:44 +0000647#elif defined(CONFIG_NETARM)
648 .align 5
649.globl reset_cpu
650reset_cpu:
wdenk2d1a5372004-02-23 19:30:57 +0000651 ldr r1, =NETARM_MEM_MODULE_BASE
652 ldr r0, [r1, #+NETARM_MEM_CS0_BASE_ADDR]
653 ldr r1, =0xFFFFF000
654 and r0, r1, r0
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200655 ldr r1, =(relocate-CONFIG_SYS_TEXT_BASE)
wdenk2d1a5372004-02-23 19:30:57 +0000656 add r0, r1, r0
657 ldr r4, =NETARM_GEN_MODULE_BASE
658 ldr r1, =NETARM_GEN_SW_SVC_RESETA
659 str r1, [r4, #+NETARM_GEN_SOFTWARE_SERVICE]
660 ldr r1, =NETARM_GEN_SW_SVC_RESETB
661 str r1, [r4, #+NETARM_GEN_SOFTWARE_SERVICE]
662 ldr r1, =NETARM_GEN_SW_SVC_RESETA
663 str r1, [r4, #+NETARM_GEN_SOFTWARE_SERVICE]
664 ldr r1, =NETARM_GEN_SW_SVC_RESETB
665 str r1, [r4, #+NETARM_GEN_SOFTWARE_SERVICE]
666 mov pc, r0
wdenk39539882004-07-01 16:30:44 +0000667#elif defined(CONFIG_S3C4510B)
668/* Nothing done here as reseting the CPU is board specific, depending
669 * on external peripherals such as watchdog timers, etc. */
Wolfgang Denk87cb6862005-10-06 17:08:18 +0200670#elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
671 /* No specific reset actions for IntegratorAP/CM720T as yet */
Gary Jennejohn6bd24472007-01-24 12:16:56 +0100672#elif defined(CONFIG_LPC2292)
673 .align 5
674.globl reset_cpu
675reset_cpu:
676 mov pc, r0
wdenk39539882004-07-01 16:30:44 +0000677#else
678#error No reset_cpu() defined for current CPU type
wdenk2d1a5372004-02-23 19:30:57 +0000679#endif