blob: 0decce2c5b25e2292a48f34e6b14aebc8d5e0502 [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>
rev13@wp.pl12d8a722015-03-01 12:44:39 +010011#ifdef CONFIG_CPU_V7M
12#include <asm/armv7m.h>
13#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000014
15/*
16 * This file handles the target-independent stages of the U-Boot
17 * start-up where a C runtime environment is needed. Its entry point
18 * is _main and is branched into from the target's start.S file.
19 *
20 * _main execution sequence is:
21 *
22 * 1. Set up initial environment for calling board_init_f().
23 * This environment only provides a stack and a place to store
24 * the GD ('global data') structure, both located in some readily
25 * available RAM (SRAM, locked cache...). In this context, VARIABLE
26 * global data, initialized or not (BSS), are UNAVAILABLE; only
Simon Glassed641902015-08-01 08:55:46 -060027 * CONSTANT initialized data are available. GD should be zeroed
28 * before board_init_f() is called.
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000029 *
30 * 2. Call board_init_f(). This function prepares the hardware for
31 * execution from system RAM (DRAM, DDR...) As system RAM may not
32 * be available yet, , board_init_f() must use the current GD to
33 * store any data which must be passed on to later stages. These
34 * data include the relocation destination, the future stack, and
35 * the future GD location.
36 *
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000037 * 3. Set up intermediate environment where the stack and GD are the
38 * ones allocated by board_init_f() in system RAM, but BSS and
39 * initialized non-const data are still not available.
40 *
Simon Glassed641902015-08-01 08:55:46 -060041 * 4a.For U-Boot proper (not SPL), call relocate_code(). This function
42 * relocates U-Boot from its current location into the relocation
43 * destination computed by board_init_f().
44 *
45 * 4b.For SPL, board_init_f() just returns (to crt0). There is no
46 * code relocation in SPL.
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000047 *
48 * 5. Set up final environment for calling board_init_r(). This
49 * environment has BSS (initialized to 0), initialized non-const
50 * data (initialized to their intended value), and stack in system
Simon Glassed641902015-08-01 08:55:46 -060051 * RAM (for SPL moving the stack and GD into RAM is optional - see
52 * CONFIG_SPL_STACK_R). GD has retained values set by board_init_f().
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000053 *
Simon Glassed641902015-08-01 08:55:46 -060054 * 6. For U-Boot proper (not SPL), some CPUs have some work left to do
55 * at this point regarding memory, so call c_runtime_cpu_setup.
56 *
57 * 7. Branch to board_init_r().
58 *
59 * For more information see 'Board Initialisation Flow in README.
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000060 */
61
62/*
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000063 * entry point of crt0 sequence
64 */
65
Benoît Thébaudeau9c5feab2013-04-11 09:35:47 +000066ENTRY(_main)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000067
68/*
69 * Set up initial C runtime environment and call board_init_f(0).
70 */
71
Benoît Thébaudeau66f30bf2013-04-11 09:36:01 +000072#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
Vikas Manochac62c1b32016-02-05 10:43:01 -080073 ldr r0, =(CONFIG_SPL_STACK)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000074#else
Vikas Manochac62c1b32016-02-05 10:43:01 -080075 ldr r0, =(CONFIG_SYS_INIT_SP_ADDR)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000076#endif
Vikas Manochac62c1b32016-02-05 10:43:01 -080077 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
78 mov sp, r0
Albert ARIBAUDecc30662015-11-25 17:56:32 +010079 bl board_init_f_alloc_reserve
Simon Glass5ba534d2015-10-19 06:50:00 -060080 mov sp, r0
Albert ARIBAUDadc421e2015-11-25 17:56:33 +010081 /* set up gd here, outside any C code */
82 mov r9, r0
Albert ARIBAUDecc30662015-11-25 17:56:32 +010083 bl board_init_f_init_reserve
Simon Glass5ba534d2015-10-19 06:50:00 -060084
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000085 mov r0, #0
86 bl board_init_f
87
88#if ! defined(CONFIG_SPL_BUILD)
89
90/*
91 * Set up intermediate environment (new sp and gd) and call
Benoît Thébaudeau5c6db122013-04-11 09:35:53 +000092 * relocate_code(addr_moni). Trick here is that we'll return
93 * 'here' but relocated.
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000094 */
95
Vikas Manochac62c1b32016-02-05 10:43:01 -080096 ldr r0, [r9, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */
97 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
98 mov sp, r0
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +020099 ldr r9, [r9, #GD_BD] /* r9 = gd->bd */
100 sub r9, r9, #GD_SIZE /* new GD is below bd */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000101
102 adr lr, here
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200103 ldr r0, [r9, #GD_RELOC_OFF] /* r0 = gd->reloc_off */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000104 add lr, lr, r0
rev13@wp.pl12d8a722015-03-01 12:44:39 +0100105#if defined(CONFIG_CPU_V7M)
106 orr lr, #1 /* As required by Thumb-only */
107#endif
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200108 ldr r0, [r9, #GD_RELOCADDR] /* r0 = gd->relocaddr */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000109 b relocate_code
110here:
Albert ARIBAUDdb544b92014-11-13 17:59:15 +0100111/*
112 * now relocate vectors
113 */
114
115 bl relocate_vectors
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000116
117/* Set up final (full) environment */
118
119 bl c_runtime_cpu_setup /* we still call old routine here */
Simon Glassdb910352015-03-03 08:03:00 -0700120#endif
121#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_FRAMEWORK)
122# ifdef CONFIG_SPL_BUILD
123 /* Use a DRAM stack for the rest of SPL, if requested */
124 bl spl_relocate_stack_gd
125 cmp r0, #0
126 movne sp, r0
Albert ARIBAUDadc421e2015-11-25 17:56:33 +0100127 movne r9, r0
Simon Glassdb910352015-03-03 08:03:00 -0700128# endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000129 ldr r0, =__bss_start /* this is auto-relocated! */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000130
Przemyslaw Marczak114c86d2015-03-04 14:01:22 +0100131#ifdef CONFIG_USE_ARCH_MEMSET
132 ldr r3, =__bss_end /* this is auto-relocated! */
133 mov r1, #0x00000000 /* prepare zero to clear BSS */
134
135 subs r2, r3, r0 /* r2 = memset len */
136 bl memset
137#else
138 ldr r1, =__bss_end /* this is auto-relocated! */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000139 mov r2, #0x00000000 /* prepare zero to clear BSS */
140
141clbss_l:cmp r0, r1 /* while not at end of BSS */
rev13@wp.pl12d8a722015-03-01 12:44:39 +0100142#if defined(CONFIG_CPU_V7M)
143 itt lo
144#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000145 strlo r2, [r0] /* clear 32-bit BSS word */
146 addlo r0, r0, #4 /* move to next */
147 blo clbss_l
Przemyslaw Marczak114c86d2015-03-04 14:01:22 +0100148#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000149
Simon Glassdb910352015-03-03 08:03:00 -0700150#if ! defined(CONFIG_SPL_BUILD)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000151 bl coloured_LED_init
152 bl red_led_on
Simon Glassdb910352015-03-03 08:03:00 -0700153#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000154 /* call board_init_r(gd_t *id, ulong dest_addr) */
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200155 mov r0, r9 /* gd_t */
156 ldr r1, [r9, #GD_RELOCADDR] /* dest_addr */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000157 /* call board_init_r */
Tom Rini3a649402017-03-18 09:01:44 -0400158#if CONFIG_IS_ENABLED(SYS_THUMB_BUILD)
David Müller (ELSOFT AG)03a3a8a2016-02-09 16:48:28 +0100159 ldr lr, =board_init_r /* this is auto-relocated! */
160 bx lr
161#else
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000162 ldr pc, =board_init_r /* this is auto-relocated! */
David Müller (ELSOFT AG)03a3a8a2016-02-09 16:48:28 +0100163#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000164 /* we should not return here. */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000165#endif
Benoît Thébaudeau9c5feab2013-04-11 09:35:47 +0000166
167ENDPROC(_main)