blob: 4f2a7121c4b5277836805f91950b33e3242d652d [file] [log] [blame]
Albert ARIBAUDfacdae52013-01-08 10:18:02 +00001/*
2 * crt0 - C-runtime startup Code for ARM U-Boot
3 *
4 * Copyright (c) 2012 Albert ARIBAUD <albert.u.boot@aribaud.net>
5 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Albert ARIBAUDfacdae52013-01-08 10:18:02 +00007 */
8
9#include <config.h>
10#include <asm-offsets.h>
Benoît Thébaudeau73dcb272013-04-11 09:35:47 +000011#include <linux/linkage.h>
rev13@wp.plb3b57e82015-03-01 12:44:39 +010012#ifdef CONFIG_CPU_V7M
13#include <asm/armv7m.h>
14#endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000015
16/*
17 * This file handles the target-independent stages of the U-Boot
18 * start-up where a C runtime environment is needed. Its entry point
19 * is _main and is branched into from the target's start.S file.
20 *
21 * _main execution sequence is:
22 *
23 * 1. Set up initial environment for calling board_init_f().
24 * This environment only provides a stack and a place to store
25 * the GD ('global data') structure, both located in some readily
26 * available RAM (SRAM, locked cache...). In this context, VARIABLE
27 * global data, initialized or not (BSS), are UNAVAILABLE; only
Simon Glasscb60ae82015-08-01 08:55:46 -060028 * CONSTANT initialized data are available. GD should be zeroed
29 * before board_init_f() is called.
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000030 *
31 * 2. Call board_init_f(). This function prepares the hardware for
32 * execution from system RAM (DRAM, DDR...) As system RAM may not
33 * be available yet, , board_init_f() must use the current GD to
34 * store any data which must be passed on to later stages. These
35 * data include the relocation destination, the future stack, and
36 * the future GD location.
37 *
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000038 * 3. Set up intermediate environment where the stack and GD are the
39 * ones allocated by board_init_f() in system RAM, but BSS and
40 * initialized non-const data are still not available.
41 *
Simon Glasscb60ae82015-08-01 08:55:46 -060042 * 4a.For U-Boot proper (not SPL), call relocate_code(). This function
43 * relocates U-Boot from its current location into the relocation
44 * destination computed by board_init_f().
45 *
46 * 4b.For SPL, board_init_f() just returns (to crt0). There is no
47 * code relocation in SPL.
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000048 *
49 * 5. Set up final environment for calling board_init_r(). This
50 * environment has BSS (initialized to 0), initialized non-const
51 * data (initialized to their intended value), and stack in system
Simon Glasscb60ae82015-08-01 08:55:46 -060052 * RAM (for SPL moving the stack and GD into RAM is optional - see
53 * CONFIG_SPL_STACK_R). GD has retained values set by board_init_f().
54 *
55 * 6. For U-Boot proper (not SPL), some CPUs have some work left to do
56 * at this point regarding memory, so call c_runtime_cpu_setup.
57 *
58 * 7. Branch to board_init_r().
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000059 *
Simon Glasscb60ae82015-08-01 08:55:46 -060060 * For more information see 'Board Initialisation Flow in README.
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000061 */
62
63/*
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000064 * entry point of crt0 sequence
65 */
66
Benoît Thébaudeau73dcb272013-04-11 09:35:47 +000067ENTRY(_main)
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000068
69/*
70 * Set up initial C runtime environment and call board_init_f(0).
71 */
72
Benoît Thébaudeau80f2f932013-04-11 09:36:01 +000073#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000074 ldr sp, =(CONFIG_SPL_STACK)
75#else
76 ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
77#endif
rev13@wp.plb3b57e82015-03-01 12:44:39 +010078#if defined(CONFIG_CPU_V7M) /* v7M forbids using SP as BIC destination */
79 mov r3, sp
80 bic r3, r3, #7
81 mov sp, r3
82#else
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000083 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
rev13@wp.plb3b57e82015-03-01 12:44:39 +010084#endif
Simon Glass35375d42015-10-19 06:50:00 -060085 mov r0, sp
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +010086 bl board_init_f_alloc_reserve
Simon Glass35375d42015-10-19 06:50:00 -060087 mov sp, r0
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +010088 bl board_init_f_init_reserve
Simon Glass35375d42015-10-19 06:50:00 -060089
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000090 mov r0, #0
91 bl board_init_f
92
93#if ! defined(CONFIG_SPL_BUILD)
94
95/*
96 * Set up intermediate environment (new sp and gd) and call
Benoît Thébaudeaua0436612013-04-11 09:35:53 +000097 * relocate_code(addr_moni). Trick here is that we'll return
98 * 'here' but relocated.
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000099 */
100
Jeroen Hofsteef2d60762013-09-21 14:04:41 +0200101 ldr sp, [r9, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100102#if defined(CONFIG_CPU_V7M) /* v7M forbids using SP as BIC destination */
103 mov r3, sp
104 bic r3, r3, #7
105 mov sp, r3
106#else
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000107 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100108#endif
Jeroen Hofsteef2d60762013-09-21 14:04:41 +0200109 ldr r9, [r9, #GD_BD] /* r9 = gd->bd */
110 sub r9, r9, #GD_SIZE /* new GD is below bd */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000111
112 adr lr, here
Jeroen Hofsteef2d60762013-09-21 14:04:41 +0200113 ldr r0, [r9, #GD_RELOC_OFF] /* r0 = gd->reloc_off */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000114 add lr, lr, r0
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100115#if defined(CONFIG_CPU_V7M)
116 orr lr, #1 /* As required by Thumb-only */
117#endif
Jeroen Hofsteef2d60762013-09-21 14:04:41 +0200118 ldr r0, [r9, #GD_RELOCADDR] /* r0 = gd->relocaddr */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000119 b relocate_code
120here:
Albert ARIBAUDbd6e56f2014-11-13 17:59:15 +0100121/*
122 * now relocate vectors
123 */
124
125 bl relocate_vectors
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000126
127/* Set up final (full) environment */
128
129 bl c_runtime_cpu_setup /* we still call old routine here */
Simon Glassd8711af2015-03-03 08:03:00 -0700130#endif
131#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_FRAMEWORK)
132# ifdef CONFIG_SPL_BUILD
133 /* Use a DRAM stack for the rest of SPL, if requested */
134 bl spl_relocate_stack_gd
135 cmp r0, #0
136 movne sp, r0
137# endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000138 ldr r0, =__bss_start /* this is auto-relocated! */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000139
Przemyslaw Marczak42b500b2015-03-04 14:01:22 +0100140#ifdef CONFIG_USE_ARCH_MEMSET
141 ldr r3, =__bss_end /* this is auto-relocated! */
142 mov r1, #0x00000000 /* prepare zero to clear BSS */
143
144 subs r2, r3, r0 /* r2 = memset len */
145 bl memset
146#else
147 ldr r1, =__bss_end /* this is auto-relocated! */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000148 mov r2, #0x00000000 /* prepare zero to clear BSS */
149
150clbss_l:cmp r0, r1 /* while not at end of BSS */
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100151#if defined(CONFIG_CPU_V7M)
152 itt lo
153#endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000154 strlo r2, [r0] /* clear 32-bit BSS word */
155 addlo r0, r0, #4 /* move to next */
156 blo clbss_l
Przemyslaw Marczak42b500b2015-03-04 14:01:22 +0100157#endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000158
Simon Glassd8711af2015-03-03 08:03:00 -0700159#if ! defined(CONFIG_SPL_BUILD)
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000160 bl coloured_LED_init
161 bl red_led_on
Simon Glassd8711af2015-03-03 08:03:00 -0700162#endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000163 /* call board_init_r(gd_t *id, ulong dest_addr) */
Jeroen Hofsteef2d60762013-09-21 14:04:41 +0200164 mov r0, r9 /* gd_t */
165 ldr r1, [r9, #GD_RELOCADDR] /* dest_addr */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000166 /* call board_init_r */
167 ldr pc, =board_init_r /* this is auto-relocated! */
168
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000169 /* we should not return here. */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000170#endif
Benoît Thébaudeau73dcb272013-04-11 09:35:47 +0000171
172ENDPROC(_main)