1/* 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 * 19 * SPDX-License-Identifier: GPL-2.0+ 20 */ 21 22#include <asm-offsets.h> 23#include <config.h> 24#include <common.h> 25#include <version.h> 26 27/* 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 39 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 46 47/* 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 71 72reset: 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 88 89 .balignl 16,0xdeadbeef 90 91/* 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: 106#ifdef CONFIG_SPL_TEXT_BASE 107 .word CONFIG_SPL_TEXT_BASE 108#else 109 .word CONFIG_SYS_TEXT_BASE 110#endif 111 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: 124 .word __bss_end - _start 125 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 151_reset: 152 /* 153 * If the CPU is configured in "Wait JTAG connection mode", the stack 154 * pointer is not configured and is zero. This will cause crash when 155 * trying to push data onto stack right below here. Load the SP and make 156 * it point to the end of OCRAM if the SP is zero. 157 */ 158 cmp sp, #0x00000000 159 ldreq sp, =CONFIG_SYS_INIT_SP_ADDR 160 161 /* 162 * Store all registers on old stack pointer, this will allow us later to 163 * return to the BootROM and let the BootROM load U-Boot into RAM. 164 * 165 * WARNING: Register r0 and r1 are used by the BootROM to pass data 166 * to the called code. Register r0 will contain arbitrary 167 * data that are set in the BootStream. In case this code 168 * was started with CALL instruction, register r1 will contain 169 * pointer to the return value this function can then set. 170 * The code below MUST NOT CHANGE register r0 and r1 ! 171 */ 172 push {r0-r12,r14} 173 174 /* Save control register c1 */ 175 mrc p15, 0, r2, c1, c0, 0 176 push {r2} 177 178 /* Set the cpu to SVC32 mode and store old CPSR register content. */ 179 mrs r2, cpsr 180 push {r2} 181 bic r2, r2, #0x1f 182 orr r2, r2, #0xd3 183 msr cpsr, r2 184 185 bl board_init_ll 186 187 /* Restore BootROM's CPU mode (especially FIQ). */ 188 pop {r2} 189 msr cpsr,r2 190 191 /* 192 * Restore c1 register. Especially set exception vector location 193 * back to BootROM space which is required by bootrom for USB boot. 194 */ 195 pop {r2} 196 mcr p15, 0, r2, c1, c0, 0 197 198 pop {r0-r12,r14} 199 200 /* 201 * In case this code was started by the CALL instruction, the register 202 * r0 is examined by the BootROM after this code returns. The value in 203 * r0 must be set to 0 to indicate successful return. 204 */ 205 mov r0, #0 206 207 bx lr 208 209_hang: 210 ldr sp, _TEXT_BASE /* switch to abort stack */ 2111: 212 bl 1b /* hang and never return */ 213