blob: adec2c8ada676b88dda3f4962d14cbe664f7ad4a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marek Vasut926227e2011-11-08 23:18:21 +00002/*
3 * armboot - Startup Code for ARM926EJS CPU-core
4 *
5 * Copyright (c) 2003 Texas Instruments
6 *
7 * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------
8 *
9 * Copyright (c) 2001 Marius Groger <mag@sysgo.de>
10 * Copyright (c) 2002 Alex Zupke <azu@sysgo.de>
11 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
12 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
13 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
14 * Copyright (c) 2010 Albert Aribaud <albert.u.boot@aribaud.net>
15 *
16 * Change to support call back into iMX28 bootrom
17 * Copyright (c) 2011 Marek Vasut <marek.vasut@gmail.com>
18 * on behalf of DENX Software Engineering GmbH
Marek Vasut926227e2011-11-08 23:18:21 +000019 */
20
21#include <asm-offsets.h>
22#include <config.h>
23#include <common.h>
Marek Vasut926227e2011-11-08 23:18:21 +000024
Marek Vasut926227e2011-11-08 23:18:21 +000025/*
26 *************************************************************************
27 *
Marek Vasut926227e2011-11-08 23:18:21 +000028 * Startup Code (reset vector)
29 *
30 * do important init only if we don't start from memory!
31 * setup Memory and board specific bits prior to relocation.
32 * relocate armboot to ram
33 * setup stack
34 *
35 *************************************************************************
36 */
37
Albert ARIBAUD9852cc62014-04-15 16:13:51 +020038 .globl reset
39reset:
Marek Vasut926227e2011-11-08 23:18:21 +000040 /*
Marek Vasutedc43b02013-09-20 01:36:44 +020041 * If the CPU is configured in "Wait JTAG connection mode", the stack
42 * pointer is not configured and is zero. This will cause crash when
43 * trying to push data onto stack right below here. Load the SP and make
44 * it point to the end of OCRAM if the SP is zero.
45 */
46 cmp sp, #0x00000000
47 ldreq sp, =CONFIG_SYS_INIT_SP_ADDR
48
49 /*
Marek Vasut926227e2011-11-08 23:18:21 +000050 * Store all registers on old stack pointer, this will allow us later to
51 * return to the BootROM and let the BootROM load U-Boot into RAM.
Marek Vasut0dc62ba2013-08-31 15:53:44 +020052 *
53 * WARNING: Register r0 and r1 are used by the BootROM to pass data
54 * to the called code. Register r0 will contain arbitrary
55 * data that are set in the BootStream. In case this code
56 * was started with CALL instruction, register r1 will contain
57 * pointer to the return value this function can then set.
58 * The code below MUST NOT CHANGE register r0 and r1 !
Marek Vasut926227e2011-11-08 23:18:21 +000059 */
60 push {r0-r12,r14}
61
Marek Vasut0dc62ba2013-08-31 15:53:44 +020062 /* Save control register c1 */
63 mrc p15, 0, r2, c1, c0, 0
64 push {r2}
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +000065
Marek Vasut0dc62ba2013-08-31 15:53:44 +020066 /* Set the cpu to SVC32 mode and store old CPSR register content. */
67 mrs r2, cpsr
68 push {r2}
69 bic r2, r2, #0x1f
70 orr r2, r2, #0xd3
71 msr cpsr, r2
Marek Vasut926227e2011-11-08 23:18:21 +000072
Marek Vasut926227e2011-11-08 23:18:21 +000073 bl board_init_ll
74
Marek Vasut0dc62ba2013-08-31 15:53:44 +020075 /* Restore BootROM's CPU mode (especially FIQ). */
76 pop {r2}
77 msr cpsr,r2
78
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +000079 /*
Marek Vasut0dc62ba2013-08-31 15:53:44 +020080 * Restore c1 register. Especially set exception vector location
81 * back to BootROM space which is required by bootrom for USB boot.
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +000082 */
Marek Vasut0dc62ba2013-08-31 15:53:44 +020083 pop {r2}
84 mcr p15, 0, r2, c1, c0, 0
85
86 pop {r0-r12,r14}
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +000087
88 /*
Marek Vasut0dc62ba2013-08-31 15:53:44 +020089 * In case this code was started by the CALL instruction, the register
90 * r0 is examined by the BootROM after this code returns. The value in
91 * r0 must be set to 0 to indicate successful return.
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +000092 */
Marek Vasut0dc62ba2013-08-31 15:53:44 +020093 mov r0, #0
Matthias Fuchsdcb3a8a2012-02-06 23:32:42 +000094
Marek Vasut926227e2011-11-08 23:18:21 +000095 bx lr