blob: afd4f102dc87d4c0bcc5d9f2198f121d66f9f62f [file] [log] [blame]
Albert ARIBAUDe05e5de2013-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 Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +00007 */
8
9#include <config.h>
10#include <asm-offsets.h>
Benoît Thébaudeau9c5feab2013-04-11 09:35:47 +000011#include <linux/linkage.h>
rev13@wp.pl12d8a722015-03-01 12:44:39 +010012#ifdef CONFIG_CPU_V7M
13#include <asm/armv7m.h>
14#endif
Albert ARIBAUDe05e5de2013-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
28 * CONSTANT initialized data are available.
29 *
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 *
37 * (the following applies only to non-SPL builds)
38 *
39 * 3. Set up intermediate environment where the stack and GD are the
40 * ones allocated by board_init_f() in system RAM, but BSS and
41 * initialized non-const data are still not available.
42 *
43 * 4. Call relocate_code(). This function relocates U-Boot from its
44 * current location into the relocation destination computed by
45 * board_init_f().
46 *
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
50 * RAM. GD has retained values set by board_init_f(). Some CPUs
51 * have some work left to do at this point regarding memory, so
52 * call c_runtime_cpu_setup.
53 *
Benoît Thébaudeau66f30bf2013-04-11 09:36:01 +000054 * 6. Branch to board_init_r().
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000055 */
56
57/*
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000058 * entry point of crt0 sequence
59 */
60
Benoît Thébaudeau9c5feab2013-04-11 09:35:47 +000061ENTRY(_main)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000062
63/*
64 * Set up initial C runtime environment and call board_init_f(0).
65 */
66
Benoît Thébaudeau66f30bf2013-04-11 09:36:01 +000067#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000068 ldr sp, =(CONFIG_SPL_STACK)
69#else
70 ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
71#endif
rev13@wp.pl12d8a722015-03-01 12:44:39 +010072#if defined(CONFIG_CPU_V7M) /* v7M forbids using SP as BIC destination */
73 mov r3, sp
74 bic r3, r3, #7
75 mov sp, r3
76#else
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000077 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
rev13@wp.pl12d8a722015-03-01 12:44:39 +010078#endif
Simon Glassaae2aef2014-07-10 22:23:26 -060079 mov r2, sp
Andreas Bießmann6ba2bc82013-11-27 16:09:29 +010080 sub sp, sp, #GD_SIZE /* allocate one GD above SP */
rev13@wp.pl12d8a722015-03-01 12:44:39 +010081#if defined(CONFIG_CPU_V7M) /* v7M forbids using SP as BIC destination */
82 mov r3, sp
83 bic r3, r3, #7
84 mov sp, r3
85#else
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000086 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
rev13@wp.pl12d8a722015-03-01 12:44:39 +010087#endif
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +020088 mov r9, sp /* GD is above SP */
Simon Glassaae2aef2014-07-10 22:23:26 -060089 mov r1, sp
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000090 mov r0, #0
Simon Glassaae2aef2014-07-10 22:23:26 -060091clr_gd:
92 cmp r1, r2 /* while not at end of GD */
rev13@wp.pl12d8a722015-03-01 12:44:39 +010093#if defined(CONFIG_CPU_V7M)
94 itt lo
95#endif
Simon Glassaae2aef2014-07-10 22:23:26 -060096 strlo r0, [r1] /* clear 32-bit GD word */
97 addlo r1, r1, #4 /* move to next */
98 blo clr_gd
Simon Glassba195992014-11-10 17:16:44 -070099#if defined(CONFIG_SYS_MALLOC_F_LEN)
Simon Glass76a1e5842014-07-10 22:23:29 -0600100 sub sp, sp, #CONFIG_SYS_MALLOC_F_LEN
101 str sp, [r9, #GD_MALLOC_BASE]
102#endif
Simon Glassaae2aef2014-07-10 22:23:26 -0600103 /* mov r0, #0 not needed due to above code */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000104 bl board_init_f
105
106#if ! defined(CONFIG_SPL_BUILD)
107
108/*
109 * Set up intermediate environment (new sp and gd) and call
Benoît Thébaudeau5c6db122013-04-11 09:35:53 +0000110 * relocate_code(addr_moni). Trick here is that we'll return
111 * 'here' but relocated.
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000112 */
113
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200114 ldr sp, [r9, #GD_START_ADDR_SP] /* sp = gd->start_addr_sp */
rev13@wp.pl12d8a722015-03-01 12:44:39 +0100115#if defined(CONFIG_CPU_V7M) /* v7M forbids using SP as BIC destination */
116 mov r3, sp
117 bic r3, r3, #7
118 mov sp, r3
119#else
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000120 bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
rev13@wp.pl12d8a722015-03-01 12:44:39 +0100121#endif
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200122 ldr r9, [r9, #GD_BD] /* r9 = gd->bd */
123 sub r9, r9, #GD_SIZE /* new GD is below bd */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000124
125 adr lr, here
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200126 ldr r0, [r9, #GD_RELOC_OFF] /* r0 = gd->reloc_off */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000127 add lr, lr, r0
rev13@wp.pl12d8a722015-03-01 12:44:39 +0100128#if defined(CONFIG_CPU_V7M)
129 orr lr, #1 /* As required by Thumb-only */
130#endif
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200131 ldr r0, [r9, #GD_RELOCADDR] /* r0 = gd->relocaddr */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000132 b relocate_code
133here:
Albert ARIBAUDdb544b92014-11-13 17:59:15 +0100134/*
135 * now relocate vectors
136 */
137
138 bl relocate_vectors
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000139
140/* Set up final (full) environment */
141
142 bl c_runtime_cpu_setup /* we still call old routine here */
Simon Glassdb910352015-03-03 08:03:00 -0700143#endif
144#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_FRAMEWORK)
145# ifdef CONFIG_SPL_BUILD
146 /* Use a DRAM stack for the rest of SPL, if requested */
147 bl spl_relocate_stack_gd
148 cmp r0, #0
149 movne sp, r0
150# endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000151 ldr r0, =__bss_start /* this is auto-relocated! */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000152
Przemyslaw Marczak114c86d2015-03-04 14:01:22 +0100153#ifdef CONFIG_USE_ARCH_MEMSET
154 ldr r3, =__bss_end /* this is auto-relocated! */
155 mov r1, #0x00000000 /* prepare zero to clear BSS */
156
157 subs r2, r3, r0 /* r2 = memset len */
158 bl memset
159#else
160 ldr r1, =__bss_end /* this is auto-relocated! */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000161 mov r2, #0x00000000 /* prepare zero to clear BSS */
162
163clbss_l:cmp r0, r1 /* while not at end of BSS */
rev13@wp.pl12d8a722015-03-01 12:44:39 +0100164#if defined(CONFIG_CPU_V7M)
165 itt lo
166#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000167 strlo r2, [r0] /* clear 32-bit BSS word */
168 addlo r0, r0, #4 /* move to next */
169 blo clbss_l
Przemyslaw Marczak114c86d2015-03-04 14:01:22 +0100170#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000171
Simon Glassdb910352015-03-03 08:03:00 -0700172#if ! defined(CONFIG_SPL_BUILD)
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000173 bl coloured_LED_init
174 bl red_led_on
Simon Glassdb910352015-03-03 08:03:00 -0700175#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000176 /* call board_init_r(gd_t *id, ulong dest_addr) */
Jeroen Hofsteefe1378a2013-09-21 14:04:41 +0200177 mov r0, r9 /* gd_t */
178 ldr r1, [r9, #GD_RELOCADDR] /* dest_addr */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000179 /* call board_init_r */
180 ldr pc, =board_init_r /* this is auto-relocated! */
181
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000182 /* we should not return here. */
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000183#endif
Benoît Thébaudeau9c5feab2013-04-11 09:35:47 +0000184
185ENDPROC(_main)