blob: a50dde60e8be35500e0a6511d013b2153ab3eb41 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +00002/*
3 * crt0 - C-runtime startup Code for ARM U-Boot
4 *
5 * Copyright (c) 2012 Albert ARIBAUD <albert.u.boot@aribaud.net>
Albert ARIBAUDfacdae52013-01-08 10:18:02 +00006 */
7
8#include <config.h>
9#include <asm-offsets.h>
Benoît Thébaudeau73dcb272013-04-11 09:35:47 +000010#include <linux/linkage.h>
Vikas Manocha976e3422018-08-31 16:57:06 -070011#include <asm/assembler.h>
Tom Rini4ddbade2022-05-25 12:16:03 -040012#include <system-constants.h>
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000013
14/*
15 * This file handles the target-independent stages of the U-Boot
16 * start-up where a C runtime environment is needed. Its entry point
17 * is _main and is branched into from the target's start.S file.
18 *
19 * _main execution sequence is:
20 *
21 * 1. Set up initial environment for calling board_init_f().
22 * This environment only provides a stack and a place to store
23 * the GD ('global data') structure, both located in some readily
24 * available RAM (SRAM, locked cache...). In this context, VARIABLE
25 * global data, initialized or not (BSS), are UNAVAILABLE; only
Simon Glasscb60ae82015-08-01 08:55:46 -060026 * CONSTANT initialized data are available. GD should be zeroed
27 * before board_init_f() is called.
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000028 *
29 * 2. Call board_init_f(). This function prepares the hardware for
30 * execution from system RAM (DRAM, DDR...) As system RAM may not
31 * be available yet, , board_init_f() must use the current GD to
32 * store any data which must be passed on to later stages. These
33 * data include the relocation destination, the future stack, and
34 * the future GD location.
35 *
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000036 * 3. Set up intermediate environment where the stack and GD are the
37 * ones allocated by board_init_f() in system RAM, but BSS and
38 * initialized non-const data are still not available.
39 *
Simon Glasscb60ae82015-08-01 08:55:46 -060040 * 4a.For U-Boot proper (not SPL), call relocate_code(). This function
41 * relocates U-Boot from its current location into the relocation
42 * destination computed by board_init_f().
43 *
44 * 4b.For SPL, board_init_f() just returns (to crt0). There is no
45 * code relocation in SPL.
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000046 *
47 * 5. Set up final environment for calling board_init_r(). This
48 * environment has BSS (initialized to 0), initialized non-const
49 * data (initialized to their intended value), and stack in system
Simon Glasscb60ae82015-08-01 08:55:46 -060050 * RAM (for SPL moving the stack and GD into RAM is optional - see
51 * CONFIG_SPL_STACK_R). GD has retained values set by board_init_f().
52 *
53 * 6. For U-Boot proper (not SPL), some CPUs have some work left to do
54 * at this point regarding memory, so call c_runtime_cpu_setup.
55 *
56 * 7. Branch to board_init_r().
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000057 *
Simon Glasscb60ae82015-08-01 08:55:46 -060058 * For more information see 'Board Initialisation Flow in README.
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000059 */
60
61/*
Andreas Dannenbergaa4ad4b2019-06-04 17:55:45 -050062 * Macro for clearing BSS during SPL execution. Usually called during the
63 * relocation process for most boards before entering board_init_r(), but
64 * can also be done early before entering board_init_f() on plaforms that
65 * can afford it due to sufficient memory being available early.
66 */
67
Brian Moyer6c9e2a92020-07-26 13:17:53 -070068.macro CLEAR_BSS
Andreas Dannenbergaa4ad4b2019-06-04 17:55:45 -050069 ldr r0, =__bss_start /* this is auto-relocated! */
70
71#ifdef CONFIG_USE_ARCH_MEMSET
72 ldr r3, =__bss_end /* this is auto-relocated! */
73 mov r1, #0x00000000 /* prepare zero to clear BSS */
74
75 subs r2, r3, r0 /* r2 = memset len */
76 bl memset
77#else
78 ldr r1, =__bss_end /* this is auto-relocated! */
79 mov r2, #0x00000000 /* prepare zero to clear BSS */
80
81clbss_l:cmp r0, r1 /* while not at end of BSS */
82 strlo r2, [r0] /* clear 32-bit BSS word */
83 addlo r0, r0, #4 /* move to next */
84 blo clbss_l
85#endif
86.endm
87
88/*
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000089 * entry point of crt0 sequence
90 */
91
Benoît Thébaudeau73dcb272013-04-11 09:35:47 +000092ENTRY(_main)
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000093
Pali Rohár3588a412022-05-06 11:05:13 +020094/* Call arch_very_early_init before initializing C runtime environment. */
95#if CONFIG_IS_ENABLED(ARCH_VERY_EARLY_INIT)
96 bl arch_very_early_init
97#endif
98
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000099/*
100 * Set up initial C runtime environment and call board_init_f(0).
101 */
102
Simon Glass9d3858d2025-02-28 05:20:25 -0700103#if CONFIG_IS_ENABLED(HAVE_INIT_STACK)
104 ldr r0, =CONFIG_VAL(STACK)
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000105#else
Tom Rini4ddbade2022-05-25 12:16:03 -0400106 ldr r0, =(SYS_INIT_SP_ADDR)
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000107#endif
Vikas Manocha40eb6912016-02-05 10:43:01 -0800108 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
109 mov sp, r0
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +0100110 bl board_init_f_alloc_reserve
Simon Glass35375d42015-10-19 06:50:00 -0600111 mov sp, r0
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100112 /* set up gd here, outside any C code */
113 mov r9, r0
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +0100114 bl board_init_f_init_reserve
Simon Glass35375d42015-10-19 06:50:00 -0600115
Simon Glass1ed9bf92021-11-03 07:16:06 -0600116#if defined(CONFIG_DEBUG_UART) && CONFIG_IS_ENABLED(SERIAL)
117 bl debug_uart_init
118#endif
119
Simon Glass85ed77d2024-09-29 19:49:46 -0600120#if defined(CONFIG_XPL_BUILD) && defined(CONFIG_SPL_EARLY_BSS)
Brian Moyer6c9e2a92020-07-26 13:17:53 -0700121 CLEAR_BSS
Andreas Dannenbergaa4ad4b2019-06-04 17:55:45 -0500122#endif
123
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000124 mov r0, #0
125 bl board_init_f
126
Simon Glass85ed77d2024-09-29 19:49:46 -0600127#if ! defined(CONFIG_XPL_BUILD)
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000128
129/*
130 * Set up intermediate environment (new sp and gd) and call
Benoît Thébaudeaua0436612013-04-11 09:35:53 +0000131 * relocate_code(addr_moni). Trick here is that we'll return
132 * 'here' but relocated.
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000133 */
134
Vikas Manocha40eb6912016-02-05 10:43:01 -0800135 ldr r0, [r9, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */
136 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
137 mov sp, r0
Patrick Delaunayaaf8dd12020-03-10 10:15:04 +0100138 ldr r9, [r9, #GD_NEW_GD] /* r9 <- gd->new_gd */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000139
140 adr lr, here
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +0800141#if defined(CONFIG_POSITION_INDEPENDENT)
142 adr r0, _main
143 ldr r1, _start_ofs
144 add r0, r1
Simon Glass72cc5382022-10-20 18:22:39 -0600145 ldr r1, =CONFIG_TEXT_BASE
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +0800146 sub r1, r0
147 add lr, r1
Pali Roháre61db6c2022-11-20 17:56:26 +0100148#if defined(CONFIG_SYS_RELOC_GD_ENV_ADDR)
149 ldr r0, [r9, #GD_ENV_ADDR] /* r0 = gd->env_addr */
150 add r0, r0, r1
151 str r0, [r9, #GD_ENV_ADDR]
152#endif
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +0800153#endif
Jeroen Hofsteef2d60762013-09-21 14:04:41 +0200154 ldr r0, [r9, #GD_RELOC_OFF] /* r0 = gd->reloc_off */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000155 add lr, lr, r0
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100156#if defined(CONFIG_CPU_V7M)
157 orr lr, #1 /* As required by Thumb-only */
158#endif
Jeroen Hofsteef2d60762013-09-21 14:04:41 +0200159 ldr r0, [r9, #GD_RELOCADDR] /* r0 = gd->relocaddr */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000160 b relocate_code
161here:
Albert ARIBAUDbd6e56f2014-11-13 17:59:15 +0100162/*
163 * now relocate vectors
164 */
165
166 bl relocate_vectors
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000167
168/* Set up final (full) environment */
169
170 bl c_runtime_cpu_setup /* we still call old routine here */
Simon Glassd8711af2015-03-03 08:03:00 -0700171#endif
Simon Glass85ed77d2024-09-29 19:49:46 -0600172#if !defined(CONFIG_XPL_BUILD) || CONFIG_IS_ENABLED(FRAMEWORK)
Andreas Dannenbergaa4ad4b2019-06-04 17:55:45 -0500173
Simon Glass85ed77d2024-09-29 19:49:46 -0600174#if !defined(CONFIG_XPL_BUILD) || !defined(CONFIG_SPL_EARLY_BSS)
Brian Moyer6c9e2a92020-07-26 13:17:53 -0700175 CLEAR_BSS
Andreas Dannenbergaa4ad4b2019-06-04 17:55:45 -0500176#endif
177
Simon Glass85ed77d2024-09-29 19:49:46 -0600178# ifdef CONFIG_XPL_BUILD
Simon Glassd8711af2015-03-03 08:03:00 -0700179 /* Use a DRAM stack for the rest of SPL, if requested */
180 bl spl_relocate_stack_gd
181 cmp r0, #0
182 movne sp, r0
Albert ARIBAUD85260bb2015-11-25 17:56:33 +0100183 movne r9, r0
Simon Glassd8711af2015-03-03 08:03:00 -0700184# endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000185
Simon Glass85ed77d2024-09-29 19:49:46 -0600186#if ! defined(CONFIG_XPL_BUILD)
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000187 bl coloured_LED_init
188 bl red_led_on
Simon Glassd8711af2015-03-03 08:03:00 -0700189#endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000190 /* call board_init_r(gd_t *id, ulong dest_addr) */
Jeroen Hofsteef2d60762013-09-21 14:04:41 +0200191 mov r0, r9 /* gd_t */
192 ldr r1, [r9, #GD_RELOCADDR] /* dest_addr */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000193 /* call board_init_r */
Tom Rini1c640a62017-03-18 09:01:44 -0400194#if CONFIG_IS_ENABLED(SYS_THUMB_BUILD)
David Müller (ELSOFT AG)408a12d2016-02-09 16:48:28 +0100195 ldr lr, =board_init_r /* this is auto-relocated! */
196 bx lr
197#else
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000198 ldr pc, =board_init_r /* this is auto-relocated! */
David Müller (ELSOFT AG)408a12d2016-02-09 16:48:28 +0100199#endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000200 /* we should not return here. */
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000201#endif
Benoît Thébaudeau73dcb272013-04-11 09:35:47 +0000202
203ENDPROC(_main)
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +0800204
205_start_ofs:
206 .word _start - _main