blob: 3e454ae1bca419c7d3fd1f8517a687a22e1766dd [file] [log] [blame]
Marek Vasut926227e2011-11-08 23:18:21 +00001/*
2 * armboot - Startup Code for ARM926EJS CPU-core
3 *
4 * Copyright (c) 2003 Texas Instruments
5 *
6 * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
7 *
8 * Copyright (c) 2001 Marius Groger <mag@sysgo.de>
9 * Copyright (c) 2002 Alex Zupke <azu@sysgo.de>
10 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
11 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
12 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
13 * Copyright (c) 2010 Albert Aribaud <albert.u.boot@aribaud.net>
14 *
15 * Change to support call back into iMX28 bootrom
16 * Copyright (c) 2011 Marek Vasut <marek.vasut@gmail.com>
17 * on behalf of DENX Software Engineering GmbH
18 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020019 * SPDX-License-Identifier: GPL-2.0+
Marek Vasut926227e2011-11-08 23:18:21 +000020 */
21
22#include <asm-offsets.h>
23#include <config.h>
24#include <common.h>
25#include <version.h>
26
Marek Vasut926227e2011-11-08 23:18:21 +000027/*
28 *************************************************************************
29 *
30 * Jump vector table as in table 3.1 in [1]
31 *
32 *************************************************************************
33 */
34
35
36.globl _start
37_start:
38 b reset
Marek Vasut5bf48fb2011-11-08 23:18:23 +000039 b undefined_instruction
40 b software_interrupt
41 b prefetch_abort
42 b data_abort
43 b not_used
44 b irq
45 b fiq
Marek Vasut926227e2011-11-08 23:18:21 +000046
Marek Vasut5bf48fb2011-11-08 23:18:23 +000047/*
48 * Vector table, located at address 0x20.
49 * This table allows the code running AFTER SPL, the U-Boot, to install it's
50 * interrupt handlers here. The problem is that the U-Boot is loaded into RAM,
51 * including it's interrupt vectoring table and the table at 0x0 is still the
52 * SPLs. So if interrupt happens in U-Boot, the SPLs interrupt vectoring table
53 * is still used.
54 */
55_vt_reset:
56 .word _reset
57_vt_undefined_instruction:
58 .word _hang
59_vt_software_interrupt:
60 .word _hang
61_vt_prefetch_abort:
62 .word _hang
63_vt_data_abort:
64 .word _hang
65_vt_not_used:
66 .word _reset
67_vt_irq:
68 .word _hang
69_vt_fiq:
70 .word _hang
Marek Vasut926227e2011-11-08 23:18:21 +000071
Marek Vasut5bf48fb2011-11-08 23:18:23 +000072reset:
73 ldr pc, _vt_reset
74undefined_instruction:
75 ldr pc, _vt_undefined_instruction
76software_interrupt:
77 ldr pc, _vt_software_interrupt
78prefetch_abort:
79 ldr pc, _vt_prefetch_abort
80data_abort:
81 ldr pc, _vt_data_abort
82not_used:
83 ldr pc, _vt_not_used
84irq:
85 ldr pc, _vt_irq
86fiq:
87 ldr pc, _vt_fiq
Marek Vasut926227e2011-11-08 23:18:21 +000088
Marek Vasut926227e2011-11-08 23:18:21 +000089 .balignl 16,0xdeadbeef
90
Marek Vasut926227e2011-11-08 23:18:21 +000091/*
92 *************************************************************************
93 *
94 * Startup Code (reset vector)
95 *
96 * do important init only if we don't start from memory!
97 * setup Memory and board specific bits prior to relocation.
98 * relocate armboot to ram
99 * setup stack
100 *
101 *************************************************************************
102 */
103
104.globl _TEXT_BASE
105_TEXT_BASE:
Benoît Thébaudeaua402da32013-04-11 09:35:42 +0000106#ifdef CONFIG_SPL_TEXT_BASE
107 .word CONFIG_SPL_TEXT_BASE
108#else
Marek Vasut926227e2011-11-08 23:18:21 +0000109 .word CONFIG_SYS_TEXT_BASE
Benoît Thébaudeaua402da32013-04-11 09:35:42 +0000110#endif
Marek Vasut926227e2011-11-08 23:18:21 +0000111
112/*
113 * These are defined in the board-specific linker script.
114 * Subtracting _start from them lets the linker put their
115 * relative position in the executable instead of leaving
116 * them null.
117 */
118.globl _bss_start_ofs
119_bss_start_ofs:
120 .word __bss_start - _start
121
122.globl _bss_end_ofs
123_bss_end_ofs:
Simon Glassed70c8f2013-03-14 06:54:53 +0000124 .word __bss_end - _start
Marek Vasut926227e2011-11-08 23:18:21 +0000125
126.globl _end_ofs
127_end_ofs:
128 .word _end - _start
129
130#ifdef CONFIG_USE_IRQ
131/* IRQ stack memory (calculated at run-time) */
132.globl IRQ_STACK_START
133IRQ_STACK_START:
134 .word 0x0badc0de
135
136/* IRQ stack memory (calculated at run-time) */
137.globl FIQ_STACK_START
138FIQ_STACK_START:
139 .word 0x0badc0de
140#endif
141
142/* IRQ stack memory (calculated at run-time) + 8 bytes */
143.globl IRQ_STACK_START_IN
144IRQ_STACK_START_IN:
145 .word 0x0badc0de
146
147/*
148 * the actual reset code
149 */
150
Marek Vasut5bf48fb2011-11-08 23:18:23 +0000151_reset:
Marek Vasut926227e2011-11-08 23:18:21 +0000152 /*
153 * Store all registers on old stack pointer, this will allow us later to
154 * return to the BootROM and let the BootROM load U-Boot into RAM.
Marek Vasut0dc62ba2013-08-31 15:53:44 +0200155 *
156 * WARNING: Register r0 and r1 are used by the BootROM to pass data
157 * to the called code. Register r0 will contain arbitrary
158 * data that are set in the BootStream. In case this code
159 * was started with CALL instruction, register r1 will contain
160 * pointer to the return value this function can then set.
161 * The code below MUST NOT CHANGE register r0 and r1 !
Marek Vasut926227e2011-11-08 23:18:21 +0000162 */
163 push {r0-r12,r14}
164
Marek Vasut0dc62ba2013-08-31 15:53:44 +0200165 /* Save control register c1 */
166 mrc p15, 0, r2, c1, c0, 0
167 push {r2}
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +0000168
Marek Vasut0dc62ba2013-08-31 15:53:44 +0200169 /* Set the cpu to SVC32 mode and store old CPSR register content. */
170 mrs r2, cpsr
171 push {r2}
172 bic r2, r2, #0x1f
173 orr r2, r2, #0xd3
174 msr cpsr, r2
Marek Vasut926227e2011-11-08 23:18:21 +0000175
Marek Vasut926227e2011-11-08 23:18:21 +0000176 bl board_init_ll
177
Marek Vasut0dc62ba2013-08-31 15:53:44 +0200178 /* Restore BootROM's CPU mode (especially FIQ). */
179 pop {r2}
180 msr cpsr,r2
181
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +0000182 /*
Marek Vasut0dc62ba2013-08-31 15:53:44 +0200183 * Restore c1 register. Especially set exception vector location
184 * back to BootROM space which is required by bootrom for USB boot.
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +0000185 */
Marek Vasut0dc62ba2013-08-31 15:53:44 +0200186 pop {r2}
187 mcr p15, 0, r2, c1, c0, 0
188
189 pop {r0-r12,r14}
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +0000190
191 /*
Marek Vasut0dc62ba2013-08-31 15:53:44 +0200192 * In case this code was started by the CALL instruction, the register
193 * r0 is examined by the BootROM after this code returns. The value in
194 * r0 must be set to 0 to indicate successful return.
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +0000195 */
Marek Vasut0dc62ba2013-08-31 15:53:44 +0200196 mov r0, #0
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +0000197
Marek Vasut926227e2011-11-08 23:18:21 +0000198 bx lr
199
Marek Vasut5bf48fb2011-11-08 23:18:23 +0000200_hang:
Marek Vasut926227e2011-11-08 23:18:21 +0000201 ldr sp, _TEXT_BASE /* switch to abort stack */
2021:
203 bl 1b /* hang and never return */