2 * armboot - Startup Code for ARM720 CPU-core
4 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
5 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
7 * See file CREDITS for list of people who contributed to this
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.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
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,
26 #include <asm-offsets.h>
29 #include <asm/hardware.h>
32 *************************************************************************
34 * Jump vector table as in table 3.1 in [1]
36 *************************************************************************
42 ldr pc, _undefined_instruction
43 ldr pc, _software_interrupt
44 ldr pc, _prefetch_abort
47 .word 0xB4405F76 /* 2's complement of the checksum of the vectors */
54 _undefined_instruction: .word undefined_instruction
55 _software_interrupt: .word software_interrupt
56 _prefetch_abort: .word prefetch_abort
57 _data_abort: .word data_abort
58 _not_used: .word not_used
62 .balignl 16,0xdeadbeef
66 *************************************************************************
68 * Startup Code (reset vector)
70 * do important init only if we don't start from RAM!
71 * relocate armboot to ram
73 * jump to second stage
75 *************************************************************************
80 .word CONFIG_SYS_TEXT_BASE
83 * These are defined in the board-specific linker script.
84 * Subtracting _start from them lets the linker put their
85 * relative position in the executable instead of leaving
90 .word __bss_start - _start
94 .word __bss_end__ - _start
100 #ifdef CONFIG_USE_IRQ
101 /* IRQ stack memory (calculated at run-time) */
102 .globl IRQ_STACK_START
106 /* IRQ stack memory (calculated at run-time) */
107 .globl FIQ_STACK_START
112 /* IRQ stack memory (calculated at run-time) + 8 bytes */
113 .globl IRQ_STACK_START_IN
118 * the actual reset code
123 * set the cpu to SVC32 mode
131 * we do sys-critical inits only at reboot,
132 * not when booting from ram!
134 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
138 #ifdef CONFIG_LPC2292
142 /* Set stackpointer in internal RAM to call board_init_f */
144 ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
145 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
149 /*------------------------------------------------------------------------------*/
152 * void relocate_code (addr_sp, gd, addr_moni)
154 * This "function" does not return, instead it continues in RAM
155 * after relocating the monitor code.
160 mov r4, r0 /* save addr_sp */
161 mov r5, r1 /* save addr of gd */
162 mov r6, r2 /* save addr of destination */
164 /* Set up the stack */
170 beq clear_bss /* skip relocation */
171 mov r1, r6 /* r1 <- scratch for copy_loop */
172 ldr r3, _bss_start_ofs
173 add r2, r0, r3 /* r2 <- source end address */
176 ldmia r0!, {r9-r10} /* copy from source address [r0] */
177 stmia r1!, {r9-r10} /* copy to target address [r1] */
178 cmp r0, r2 /* until source end address [r2] */
181 #ifndef CONFIG_SPL_BUILD
183 * fix .rel.dyn relocations
185 ldr r0, _TEXT_BASE /* r0 <- Text base */
186 sub r9, r6, r0 /* r9 <- relocation offset */
187 ldr r10, _dynsym_start_ofs /* r10 <- sym table ofs */
188 add r10, r10, r0 /* r10 <- sym table in FLASH */
189 ldr r2, _rel_dyn_start_ofs /* r2 <- rel dyn start ofs */
190 add r2, r2, r0 /* r2 <- rel dyn start in FLASH */
191 ldr r3, _rel_dyn_end_ofs /* r3 <- rel dyn end ofs */
192 add r3, r3, r0 /* r3 <- rel dyn end in FLASH */
194 ldr r0, [r2] /* r0 <- location to fix up, IN FLASH! */
195 add r0, r0, r9 /* r0 <- location to fix up in RAM */
198 cmp r7, #23 /* relative fixup? */
200 cmp r7, #2 /* absolute fixup? */
202 /* ignore unknown type of fixup */
205 /* absolute fix: set location to (offset) symbol value */
206 mov r1, r1, LSR #4 /* r1 <- symbol index in .dynsym */
207 add r1, r10, r1 /* r1 <- address of symbol in table */
208 ldr r1, [r1, #4] /* r1 <- symbol value */
209 add r1, r1, r9 /* r1 <- relocated sym addr */
212 /* relative fix: increase location by offset */
217 add r2, r2, #8 /* each rel.dyn entry is 8 bytes */
223 #ifndef CONFIG_SPL_BUILD
224 ldr r0, _bss_start_ofs
226 mov r4, r6 /* reloc addr */
229 mov r2, #0x00000000 /* clear */
231 clbss_l:str r2, [r0] /* clear loop... */
241 * We are done. Do not return, instead branch to second part of board
242 * initialization, now running from RAM.
244 ldr r0, _board_init_r_ofs
248 /* setup parameters for board_init_r */
249 mov r0, r5 /* gd_t */
250 mov r1, r6 /* dest_addr */
255 .word board_init_r - _start
258 .word __rel_dyn_start - _start
260 .word __rel_dyn_end - _start
262 .word __dynsym_start - _start
265 *************************************************************************
267 * CPU_init_critical registers
269 * setup important registers
270 * setup memory timing
272 *************************************************************************
275 #if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)
277 /* Interrupt-Controller base addresses */
278 INTMR1: .word 0x80000280 @ 32 bit size
279 INTMR2: .word 0x80001280 @ 16 bit size
280 INTMR3: .word 0x80002280 @ 8 bit size
283 SYSCON1: .word 0x80000100
284 SYSCON2: .word 0x80001100
285 SYSCON3: .word 0x80002200
287 #define CLKCTL 0x6 /* mask */
288 #define CLKCTL_18 0x0 /* 18.432 MHz */
289 #define CLKCTL_36 0x2 /* 36.864 MHz */
290 #define CLKCTL_49 0x4 /* 49.152 MHz */
291 #define CLKCTL_73 0x6 /* 73.728 MHz */
293 #elif defined(CONFIG_LPC2292)
294 PLLCFG_ADR: .word PLLCFG
295 PLLFEED_ADR: .word PLLFEED
296 PLLCON_ADR: .word PLLCON
297 PLLSTAT_ADR: .word PLLSTAT
298 VPBDIV_ADR: .word VPBDIV
299 MEMMAP_ADR: .word MEMMAP
304 #if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)
307 * mask all IRQs by clearing all bits in the INTMRs
318 * flush v4 I/D caches
321 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
322 mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
325 * disable MMU stuff and caches
328 bic r0, r0, #0x00002300 @ clear bits 13, 9:8 (--V- --RS)
329 bic r0, r0, #0x0000008f @ clear bits 7, 3:0 (B--- WCAM)
330 orr r0, r0, #0x00000002 @ set bit 2 (A) Align
332 #elif defined(CONFIG_NETARM)
334 * prior to software reset : need to set pin PORTC4 to be *HRESET
336 ldr r0, =NETARM_GEN_MODULE_BASE
337 ldr r1, =(NETARM_GEN_PORT_MODE(0x10) | \
338 NETARM_GEN_PORT_DIR(0x10))
339 str r1, [r0, #+NETARM_GEN_PORTC]
341 * software reset : see HW Ref. Guide 8.2.4 : Software Service register
342 * for an explanation of this process
344 ldr r0, =NETARM_GEN_MODULE_BASE
345 ldr r1, =NETARM_GEN_SW_SVC_RESETA
346 str r1, [r0, #+NETARM_GEN_SOFTWARE_SERVICE]
347 ldr r1, =NETARM_GEN_SW_SVC_RESETB
348 str r1, [r0, #+NETARM_GEN_SOFTWARE_SERVICE]
349 ldr r1, =NETARM_GEN_SW_SVC_RESETA
350 str r1, [r0, #+NETARM_GEN_SOFTWARE_SERVICE]
351 ldr r1, =NETARM_GEN_SW_SVC_RESETB
352 str r1, [r0, #+NETARM_GEN_SOFTWARE_SERVICE]
354 * setup PLL and System Config
356 ldr r0, =NETARM_GEN_MODULE_BASE
358 ldr r1, =( NETARM_GEN_SYS_CFG_LENDIAN | \
359 NETARM_GEN_SYS_CFG_BUSFULL | \
360 NETARM_GEN_SYS_CFG_USER_EN | \
361 NETARM_GEN_SYS_CFG_ALIGN_ABORT | \
362 NETARM_GEN_SYS_CFG_BUSARB_INT | \
363 NETARM_GEN_SYS_CFG_BUSMON_EN )
365 str r1, [r0, #+NETARM_GEN_SYSTEM_CONTROL]
367 #ifndef CONFIG_NETARM_PLL_BYPASS
368 ldr r1, =( NETARM_GEN_PLL_CTL_PLLCNT(NETARM_PLL_COUNT_VAL) | \
369 NETARM_GEN_PLL_CTL_POLTST_DEF | \
370 NETARM_GEN_PLL_CTL_INDIV(1) | \
371 NETARM_GEN_PLL_CTL_ICP_DEF | \
372 NETARM_GEN_PLL_CTL_OUTDIV(2) )
373 str r1, [r0, #+NETARM_GEN_PLL_CONTROL]
377 * mask all IRQs by clearing all bits in the INTMRs
380 ldr r0, =NETARM_GEN_MODULE_BASE
381 str r1, [r0, #+NETARM_GEN_INTR_ENABLE]
383 #elif defined(CONFIG_S3C4510B)
386 * Mask off all IRQ sources
396 ldr r1, =0x83ffffa0 /* cache-disabled */
399 #elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
400 /* No specific initialisation for IntegratorAP/CM720T as yet */
401 #elif defined(CONFIG_LPC2292)
405 /* First disconnect and disable the PLL */
409 ldr r0, PLLFEED_ADR /* start feed sequence */
411 str r4, [r0] /* feed sequence done */
412 /* Set new M and P values */
414 mov r1, #0x23 /* M=4 and P=2 */
416 ldr r0, PLLFEED_ADR /* start feed sequence */
418 str r4, [r0] /* feed sequence done */
419 /* Then enable the PLL */
421 mov r1, #0x01 /* PLL enable bit */
423 ldr r0, PLLFEED_ADR /* start feed sequence */
425 str r4, [r0] /* feed sequence done */
426 /* Wait for the lock */
428 mov r1, #0x400 /* lock bit */
434 /* And finally connect the PLL */
436 mov r1, #0x03 /* PLL enable bit and connect bit */
438 ldr r0, PLLFEED_ADR /* start feed sequence */
440 str r4, [r0] /* feed sequence done */
441 /* Set-up VPBDIV register */
443 mov r1, #0x01 /* VPB clock is same as process clock */
446 #error No cpu_init_crit() defined for current CPU type
449 #ifdef CONFIG_ARM7_REVD
450 /* set clock speed */
451 /* !!! we run @ 36 MHz due to a hardware flaw in Rev. D processors */
452 /* !!! not doing DRAM refresh properly! */
456 orr r1, r1, #CLKCTL_36
460 #ifndef CONFIG_LPC2292
463 * before relocating, we have to setup RAM timing
464 * because memory timing is board-dependent, you will
465 * find a lowlevel_init.S in your board directory.
475 *************************************************************************
479 *************************************************************************
485 #define S_FRAME_SIZE 72
507 #define MODE_SVC 0x13
511 * use bad_save_user_regs for abort/prefetch/undef/swi ...
512 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
515 .macro bad_save_user_regs
516 sub sp, sp, #S_FRAME_SIZE
517 stmia sp, {r0 - r12} @ Calling r0-r12
520 ldr r2, IRQ_STACK_START_IN
521 ldmia r2, {r2 - r4} @ get pc, cpsr, old_r0
522 add r0, sp, #S_FRAME_SIZE @ restore sp_SVC
526 stmia r5, {r0 - r4} @ save sp_SVC, lr_SVC, pc, cpsr, old_r
530 .macro irq_save_user_regs
531 sub sp, sp, #S_FRAME_SIZE
532 stmia sp, {r0 - r12} @ Calling r0-r12
534 stmdb r8, {sp, lr}^ @ Calling SP, LR
535 str lr, [r8, #0] @ Save calling PC
537 str r6, [r8, #4] @ Save CPSR
538 str r0, [r8, #8] @ Save OLD_R0
542 .macro irq_restore_user_regs
543 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
545 ldr lr, [sp, #S_PC] @ Get PC
546 add sp, sp, #S_FRAME_SIZE
547 subs pc, lr, #4 @ return & move spsr_svc into cpsr
551 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
553 str lr, [r13] @ save caller lr / spsr
557 mov r13, #MODE_SVC @ prepare SVC-Mode
563 .macro get_irq_stack @ setup IRQ stack
564 ldr sp, IRQ_STACK_START
567 .macro get_fiq_stack @ setup FIQ stack
568 ldr sp, FIQ_STACK_START
575 undefined_instruction:
578 bl do_undefined_instruction
584 bl do_software_interrupt
604 #ifdef CONFIG_USE_IRQ
611 irq_restore_user_regs
616 /* someone ought to write a more effiction fiq_save_user_regs */
619 irq_restore_user_regs
637 #if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_ARMADILLO)
642 mcr p15, 0, ip, c7, c7, 0 @ invalidate cache
643 mcr p15, 0, ip, c8, c7, 0 @ flush TLB (v4)
644 mrc p15, 0, ip, c1, c0, 0 @ get ctrl register
645 bic ip, ip, #0x000f @ ............wcam
646 bic ip, ip, #0x2100 @ ..v....s........
647 mcr p15, 0, ip, c1, c0, 0 @ ctrl register
649 #elif defined(CONFIG_NETARM)
653 ldr r1, =NETARM_MEM_MODULE_BASE
654 ldr r0, [r1, #+NETARM_MEM_CS0_BASE_ADDR]
657 ldr r1, =(relocate-CONFIG_SYS_TEXT_BASE)
659 ldr r4, =NETARM_GEN_MODULE_BASE
660 ldr r1, =NETARM_GEN_SW_SVC_RESETA
661 str r1, [r4, #+NETARM_GEN_SOFTWARE_SERVICE]
662 ldr r1, =NETARM_GEN_SW_SVC_RESETB
663 str r1, [r4, #+NETARM_GEN_SOFTWARE_SERVICE]
664 ldr r1, =NETARM_GEN_SW_SVC_RESETA
665 str r1, [r4, #+NETARM_GEN_SOFTWARE_SERVICE]
666 ldr r1, =NETARM_GEN_SW_SVC_RESETB
667 str r1, [r4, #+NETARM_GEN_SOFTWARE_SERVICE]
669 #elif defined(CONFIG_S3C4510B)
670 /* Nothing done here as reseting the CPU is board specific, depending
671 * on external peripherals such as watchdog timers, etc. */
672 #elif defined(CONFIG_INTEGRATOR) && defined(CONFIG_ARCH_INTEGRATOR)
673 /* No specific reset actions for IntegratorAP/CM720T as yet */
674 #elif defined(CONFIG_LPC2292)
680 #error No reset_cpu() defined for current CPU type