]>
Commit | Line | Data |
---|---|---|
e05e5de7 AA |
1 | /* |
2 | * crt0 - C-runtime startup Code for ARM U-Boot | |
3 | * | |
4 | * Copyright (c) 2012 Albert ARIBAUD <[email protected]> | |
5 | * | |
1a459660 | 6 | * SPDX-License-Identifier: GPL-2.0+ |
e05e5de7 AA |
7 | */ |
8 | ||
9 | #include <config.h> | |
10 | #include <asm-offsets.h> | |
9c5feab7 | 11 | #include <linux/linkage.h> |
12d8a729 | 12 | #ifdef CONFIG_CPU_V7M |
13 | #include <asm/armv7m.h> | |
14 | #endif | |
e05e5de7 AA |
15 | |
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 | |
ed64190f SG |
28 | * CONSTANT initialized data are available. GD should be zeroed |
29 | * before board_init_f() is called. | |
e05e5de7 AA |
30 | * |
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 | * | |
e05e5de7 AA |
38 | * 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 | * | |
ed64190f SG |
42 | * 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. | |
e05e5de7 AA |
48 | * |
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 | |
ed64190f SG |
52 | * 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(). | |
e05e5de7 | 59 | * |
ed64190f | 60 | * For more information see 'Board Initialisation Flow in README. |
e05e5de7 AA |
61 | */ |
62 | ||
e05e5de7 AA |
63 | /* |
64 | * entry point of crt0 sequence | |
65 | */ | |
66 | ||
9c5feab7 | 67 | ENTRY(_main) |
e05e5de7 AA |
68 | |
69 | /* | |
70 | * Set up initial C runtime environment and call board_init_f(0). | |
71 | */ | |
72 | ||
66f30bf9 | 73 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK) |
c62c1b3c | 74 | ldr r0, =(CONFIG_SPL_STACK) |
e05e5de7 | 75 | #else |
c62c1b3c | 76 | ldr r0, =(CONFIG_SYS_INIT_SP_ADDR) |
e05e5de7 | 77 | #endif |
c62c1b3c VM |
78 | bic r0, r0, #7 /* 8-byte alignment for ABI compliance */ |
79 | mov sp, r0 | |
ecc30663 | 80 | bl board_init_f_alloc_reserve |
5ba534d2 | 81 | mov sp, r0 |
adc421e4 AA |
82 | /* set up gd here, outside any C code */ |
83 | mov r9, r0 | |
ecc30663 | 84 | bl board_init_f_init_reserve |
5ba534d2 | 85 | |
e05e5de7 AA |
86 | mov r0, #0 |
87 | bl board_init_f | |
88 | ||
89 | #if ! defined(CONFIG_SPL_BUILD) | |
90 | ||
91 | /* | |
92 | * Set up intermediate environment (new sp and gd) and call | |
5c6db120 BT |
93 | * relocate_code(addr_moni). Trick here is that we'll return |
94 | * 'here' but relocated. | |
e05e5de7 AA |
95 | */ |
96 | ||
c62c1b3c VM |
97 | ldr r0, [r9, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */ |
98 | bic r0, r0, #7 /* 8-byte alignment for ABI compliance */ | |
99 | mov sp, r0 | |
fe1378a9 JH |
100 | ldr r9, [r9, #GD_BD] /* r9 = gd->bd */ |
101 | sub r9, r9, #GD_SIZE /* new GD is below bd */ | |
e05e5de7 AA |
102 | |
103 | adr lr, here | |
fe1378a9 | 104 | ldr r0, [r9, #GD_RELOC_OFF] /* r0 = gd->reloc_off */ |
e05e5de7 | 105 | add lr, lr, r0 |
12d8a729 | 106 | #if defined(CONFIG_CPU_V7M) |
107 | orr lr, #1 /* As required by Thumb-only */ | |
108 | #endif | |
fe1378a9 | 109 | ldr r0, [r9, #GD_RELOCADDR] /* r0 = gd->relocaddr */ |
e05e5de7 AA |
110 | b relocate_code |
111 | here: | |
db544b96 AA |
112 | /* |
113 | * now relocate vectors | |
114 | */ | |
115 | ||
116 | bl relocate_vectors | |
e05e5de7 AA |
117 | |
118 | /* Set up final (full) environment */ | |
119 | ||
120 | bl c_runtime_cpu_setup /* we still call old routine here */ | |
db910353 SG |
121 | #endif |
122 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_FRAMEWORK) | |
123 | # ifdef CONFIG_SPL_BUILD | |
124 | /* Use a DRAM stack for the rest of SPL, if requested */ | |
125 | bl spl_relocate_stack_gd | |
126 | cmp r0, #0 | |
127 | movne sp, r0 | |
adc421e4 | 128 | movne r9, r0 |
db910353 | 129 | # endif |
e05e5de7 | 130 | ldr r0, =__bss_start /* this is auto-relocated! */ |
e05e5de7 | 131 | |
114c86d8 PM |
132 | #ifdef CONFIG_USE_ARCH_MEMSET |
133 | ldr r3, =__bss_end /* this is auto-relocated! */ | |
134 | mov r1, #0x00000000 /* prepare zero to clear BSS */ | |
135 | ||
136 | subs r2, r3, r0 /* r2 = memset len */ | |
137 | bl memset | |
138 | #else | |
139 | ldr r1, =__bss_end /* this is auto-relocated! */ | |
e05e5de7 AA |
140 | mov r2, #0x00000000 /* prepare zero to clear BSS */ |
141 | ||
142 | clbss_l:cmp r0, r1 /* while not at end of BSS */ | |
12d8a729 | 143 | #if defined(CONFIG_CPU_V7M) |
144 | itt lo | |
145 | #endif | |
e05e5de7 AA |
146 | strlo r2, [r0] /* clear 32-bit BSS word */ |
147 | addlo r0, r0, #4 /* move to next */ | |
148 | blo clbss_l | |
114c86d8 | 149 | #endif |
e05e5de7 | 150 | |
db910353 | 151 | #if ! defined(CONFIG_SPL_BUILD) |
e05e5de7 AA |
152 | bl coloured_LED_init |
153 | bl red_led_on | |
db910353 | 154 | #endif |
e05e5de7 | 155 | /* call board_init_r(gd_t *id, ulong dest_addr) */ |
fe1378a9 JH |
156 | mov r0, r9 /* gd_t */ |
157 | ldr r1, [r9, #GD_RELOCADDR] /* dest_addr */ | |
e05e5de7 | 158 | /* call board_init_r */ |
3a649407 | 159 | #if CONFIG_IS_ENABLED(SYS_THUMB_BUILD) |
03a3a8ae DMEA |
160 | ldr lr, =board_init_r /* this is auto-relocated! */ |
161 | bx lr | |
162 | #else | |
e05e5de7 | 163 | ldr pc, =board_init_r /* this is auto-relocated! */ |
03a3a8ae | 164 | #endif |
e05e5de7 | 165 | /* we should not return here. */ |
e05e5de7 | 166 | #endif |
9c5feab7 BT |
167 | |
168 | ENDPROC(_main) |