blob: a0311438b4580546a3c59125d249a5fddd60f484 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Albert ARIBAUDe05e5de2013-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 ARIBAUDe05e5de2013-01-08 10:18:02 +00006 */
7
8#include <config.h>
9#include <asm-offsets.h>
Benoît Thébaudeau9c5feab2013-04-11 09:35:47 +000010#include <linux/linkage.h>
Vikas Manochad22336a2018-08-31 16:57:06 -070011#include <asm/assembler.h>
Tom Rinieaf6ea62022-05-25 12:16:03 -040012#include <system-constants.h>
Albert ARIBAUDe05e5de2013-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 Glassed641902015-08-01 08:55:46 -060026 * CONSTANT initialized data are available. GD should be zeroed
27 * before board_init_f() is called.
Albert ARIBAUDe05e5de2013-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 ARIBAUDe05e5de2013-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 Glassed641902015-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 ARIBAUDe05e5de2013-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 Glassed641902015-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().
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000052 *
Simon Glassed641902015-08-01 08:55:46 -060053 * 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().
57 *
58 * For more information see 'Board Initialisation Flow in README.
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000059 */
60
61/*
Andreas Dannenberga5a5d992019-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 Moyerdfd23902020-07-26 13:17:53 -070068.macro CLEAR_BSS
Andreas Dannenberga5a5d992019-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 ARIBAUDe05e5de2013-01-08 10:18:02 +000089 * entry point of crt0 sequence
90 */
91
Benoît Thébaudeau9c5feab2013-04-11 09:35:47 +000092ENTRY(_main)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000093
Pali Rohár948da772022-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 ARIBAUDe05e5de2013-01-08 10:18:02 +000099/*
100 * Set up initial C runtime environment and call board_init_f(0).
101 */
102
Kever Yanga0a0d042019-04-02 20:41:21 +0800103#if defined(CONFIG_TPL_BUILD) && defined(CONFIG_TPL_NEEDS_SEPARATE_STACK)
104 ldr r0, =(CONFIG_TPL_STACK)
105#elif defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
Vikas Manochac62c1b32016-02-05 10:43:01 -0800106 ldr r0, =(CONFIG_SPL_STACK)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000107#else
Tom Rinieaf6ea62022-05-25 12:16:03 -0400108 ldr r0, =(SYS_INIT_SP_ADDR)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000109#endif
Vikas Manochac62c1b32016-02-05 10:43:01 -0800110 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
111 mov sp, r0
Albert ARIBAUDecc30662015-11-25 17:56:32 +0100112 bl board_init_f_alloc_reserve
Simon Glass5ba534d2015-10-19 06:50:00 -0600113 mov sp, r0
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100114 /* set up gd here, outside any C code */
115 mov r9, r0
Albert ARIBAUDecc30662015-11-25 17:56:32 +0100116 bl board_init_f_init_reserve
Simon Glass5ba534d2015-10-19 06:50:00 -0600117
Simon Glass0dba4582021-11-03 07:16:06 -0600118#if defined(CONFIG_DEBUG_UART) && CONFIG_IS_ENABLED(SERIAL)
119 bl debug_uart_init
120#endif
121
Brian Moyerdfd23902020-07-26 13:17:53 -0700122#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_EARLY_BSS)
123 CLEAR_BSS
Andreas Dannenberga5a5d992019-06-04 17:55:45 -0500124#endif
125
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000126 mov r0, #0
127 bl board_init_f
128
129#if ! defined(CONFIG_SPL_BUILD)
130
131/*
132 * Set up intermediate environment (new sp and gd) and call
Benoît Thébaudeau5c6db122013-04-11 09:35:53 +0000133 * relocate_code(addr_moni). Trick here is that we'll return
134 * 'here' but relocated.
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000135 */
136
Vikas Manochac62c1b32016-02-05 10:43:01 -0800137 ldr r0, [r9, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */
138 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
139 mov sp, r0
Patrick Delaunay6de29922020-03-10 10:15:04 +0100140 ldr r9, [r9, #GD_NEW_GD] /* r9 <- gd->new_gd */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000141
142 adr lr, here
Chia-Wei Wangcd82f192021-08-03 10:50:10 +0800143#if defined(CONFIG_POSITION_INDEPENDENT)
144 adr r0, _main
145 ldr r1, _start_ofs
146 add r0, r1
Simon Glass98463902022-10-20 18:22:39 -0600147 ldr r1, =CONFIG_TEXT_BASE
Chia-Wei Wangcd82f192021-08-03 10:50:10 +0800148 sub r1, r0
149 add lr, r1
Pali Rohár04bb5e92022-11-20 17:56:26 +0100150#if defined(CONFIG_SYS_RELOC_GD_ENV_ADDR)
151 ldr r0, [r9, #GD_ENV_ADDR] /* r0 = gd->env_addr */
152 add r0, r0, r1
153 str r0, [r9, #GD_ENV_ADDR]
154#endif
Chia-Wei Wangcd82f192021-08-03 10:50:10 +0800155#endif
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200156 ldr r0, [r9, #GD_RELOC_OFF] /* r0 = gd->reloc_off */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000157 add lr, lr, r0
rev13@wp.pl12d8a722015-03-01 12:44:39 +0100158#if defined(CONFIG_CPU_V7M)
159 orr lr, #1 /* As required by Thumb-only */
160#endif
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200161 ldr r0, [r9, #GD_RELOCADDR] /* r0 = gd->relocaddr */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000162 b relocate_code
163here:
Albert ARIBAUDdb544b92014-11-13 17:59:15 +0100164/*
165 * now relocate vectors
166 */
167
168 bl relocate_vectors
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000169
170/* Set up final (full) environment */
171
172 bl c_runtime_cpu_setup /* we still call old routine here */
Simon Glassdb910352015-03-03 08:03:00 -0700173#endif
Heiko Stuebner22b7b862019-07-16 10:12:02 +0200174#if !defined(CONFIG_SPL_BUILD) || CONFIG_IS_ENABLED(FRAMEWORK)
Andreas Dannenberga5a5d992019-06-04 17:55:45 -0500175
Brian Moyerdfd23902020-07-26 13:17:53 -0700176#if !defined(CONFIG_SPL_BUILD) || !defined(CONFIG_SPL_EARLY_BSS)
177 CLEAR_BSS
Andreas Dannenberga5a5d992019-06-04 17:55:45 -0500178#endif
179
Simon Glassdb910352015-03-03 08:03:00 -0700180# ifdef CONFIG_SPL_BUILD
181 /* Use a DRAM stack for the rest of SPL, if requested */
182 bl spl_relocate_stack_gd
183 cmp r0, #0
184 movne sp, r0
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100185 movne r9, r0
Simon Glassdb910352015-03-03 08:03:00 -0700186# endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000187
Simon Glassdb910352015-03-03 08:03:00 -0700188#if ! defined(CONFIG_SPL_BUILD)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000189 bl coloured_LED_init
190 bl red_led_on
Simon Glassdb910352015-03-03 08:03:00 -0700191#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000192 /* call board_init_r(gd_t *id, ulong dest_addr) */
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200193 mov r0, r9 /* gd_t */
194 ldr r1, [r9, #GD_RELOCADDR] /* dest_addr */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000195 /* call board_init_r */
Tom Rini3a649402017-03-18 09:01:44 -0400196#if CONFIG_IS_ENABLED(SYS_THUMB_BUILD)
David Müller (ELSOFT AG)03a3a8a2016-02-09 16:48:28 +0100197 ldr lr, =board_init_r /* this is auto-relocated! */
198 bx lr
199#else
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000200 ldr pc, =board_init_r /* this is auto-relocated! */
David Müller (ELSOFT AG)03a3a8a2016-02-09 16:48:28 +0100201#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000202 /* we should not return here. */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000203#endif
Benoît Thébaudeau9c5feab2013-04-11 09:35:47 +0000204
205ENDPROC(_main)
Chia-Wei Wangcd82f192021-08-03 10:50:10 +0800206
207_start_ofs:
208 .word _start - _main