blob: 5f1c220e0ca84102581ed1fa95e80013cbdc83b3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rick Chene8e39592017-12-26 13:55:48 +08002/*
3 * Startup Code for RISC-V Core
4 *
5 * Copyright (c) 2017 Microsemi Corporation.
6 * Copyright (c) 2017 Padmarao Begari <Padmarao.Begari@microsemi.com>
7 *
8 * Copyright (C) 2017 Andes Technology Corporation
9 * Rick Chen, Andes Technology Corporation <rick@andestech.com>
Rick Chene8e39592017-12-26 13:55:48 +080010 */
11
12#include <asm-offsets.h>
13#include <config.h>
14#include <common.h>
15#include <elf.h>
16#include <asm/encoding.h>
Bin Meng51ab4572018-12-12 06:12:45 -080017#include <generated/asm-offsets.h>
Rick Chene8e39592017-12-26 13:55:48 +080018
19#ifdef CONFIG_32BIT
Lukas Auerc55309c2018-11-22 11:26:24 +010020#define LREG lw
21#define SREG sw
22#define REGBYTES 4
Rick Chene8e39592017-12-26 13:55:48 +080023#define RELOC_TYPE R_RISCV_32
24#define SYM_INDEX 0x8
25#define SYM_SIZE 0x10
26#else
Lukas Auerc55309c2018-11-22 11:26:24 +010027#define LREG ld
28#define SREG sd
29#define REGBYTES 8
Rick Chene8e39592017-12-26 13:55:48 +080030#define RELOC_TYPE R_RISCV_64
31#define SYM_INDEX 0x20
32#define SYM_SIZE 0x18
33#endif
34
Lukas Auer8ac39e22019-03-17 19:28:40 +010035.section .data
36secondary_harts_relocation_error:
37 .ascii "Relocation of secondary harts has failed, error %d\n"
38
Lukas Auerc55309c2018-11-22 11:26:24 +010039.section .text
Rick Chene8e39592017-12-26 13:55:48 +080040.globl _start
41_start:
Lukas Auerfbfd92b2019-08-21 21:14:43 +020042#if CONFIG_IS_ENABLED(RISCV_MMODE)
Bin Meng4d2583d2019-07-10 23:43:13 -070043 csrr a0, CSR_MHARTID
Lukas Auere0432402019-03-17 19:28:39 +010044#endif
45
Lukas Auer5d8b2e72018-11-22 11:26:29 +010046 /* save hart id and dtb pointer */
Lukas Auer1446b262019-03-17 19:28:36 +010047 mv tp, a0
Lukas Auer5d8b2e72018-11-22 11:26:29 +010048 mv s1, a1
49
Lukas Auerc55309c2018-11-22 11:26:24 +010050 la t0, trap_entry
Anup Pateld2db2a82018-12-03 10:57:40 +053051 csrw MODE_PREFIX(tvec), t0
Lukas Auer31f90582018-11-22 11:26:28 +010052
53 /* mask all interrupts */
Anup Pateld2db2a82018-12-03 10:57:40 +053054 csrw MODE_PREFIX(ie), zero
Rick Chene8e39592017-12-26 13:55:48 +080055
Bin Meng191636e2020-04-16 08:09:30 -070056#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +010057 /* check if hart is within range */
58 /* tp: hart id */
59 li t0, CONFIG_NR_CPUS
60 bge tp, t0, hart_out_of_bounds_loop
Lukas Auer3dea63c2019-03-17 19:28:37 +010061
Lukas Auer3dea63c2019-03-17 19:28:37 +010062 /* set xSIE bit to receive IPIs */
Lukas Auerfbfd92b2019-08-21 21:14:43 +020063#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auer3dea63c2019-03-17 19:28:37 +010064 li t0, MIE_MSIE
65#else
66 li t0, SIE_SSIE
67#endif
68 csrs MODE_PREFIX(ie), t0
69#endif
70
Rick Chene8e39592017-12-26 13:55:48 +080071/*
Rick Chene8e39592017-12-26 13:55:48 +080072 * Set stackpointer in internal/ex RAM to call board_init_f
73 */
74call_board_init_f:
Lukas Auerc55309c2018-11-22 11:26:24 +010075 li t0, -16
Lukas Auer8c59f202019-08-21 21:14:45 +020076#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
77 li t1, CONFIG_SPL_STACK
78#else
Lukas Auerc55309c2018-11-22 11:26:24 +010079 li t1, CONFIG_SYS_INIT_SP_ADDR
Lukas Auer8c59f202019-08-21 21:14:45 +020080#endif
Lukas Auerc55309c2018-11-22 11:26:24 +010081 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene8e39592017-12-26 13:55:48 +080082
Rick Chene8e39592017-12-26 13:55:48 +080083call_board_init_f_0:
84 mv a0, sp
85 jal board_init_f_alloc_reserve
Lukas Auer3dea63c2019-03-17 19:28:37 +010086
87 /*
88 * Set global data pointer here for all harts, uninitialized at this
89 * point.
90 */
91 mv gp, a0
92
93 /* setup stack */
Bin Meng191636e2020-04-16 08:09:30 -070094#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +010095 /* tp: hart id */
96 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
97 sub sp, a0, t0
98#else
Rick Chene8e39592017-12-26 13:55:48 +080099 mv sp, a0
Lukas Auer3dea63c2019-03-17 19:28:37 +0100100#endif
101
Rick Chenbdce3892019-04-30 13:49:33 +0800102#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100103 /*
104 * Pick hart to initialize global data and run U-Boot. The other harts
105 * wait for initialization to complete.
106 */
107 la t0, hart_lottery
108 li s2, 1
109 amoswap.w s2, t1, 0(t0)
110 bnez s2, wait_for_gd_init
Rick Chenbdce3892019-04-30 13:49:33 +0800111#else
112 bnez tp, secondary_hart_loop
113#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100114
Rick Chenf9281b82019-04-30 13:49:35 +0800115#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100116 la t0, prior_stage_fdt_address
117 SREG s1, 0(t0)
Rick Chenf9281b82019-04-30 13:49:35 +0800118#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100119
Rick Chene8e39592017-12-26 13:55:48 +0800120 jal board_init_f_init_reserve
121
Atish Patrad4ea6492020-04-21 11:15:01 -0700122 SREG s1, GD_FIRMWARE_FDT_ADDR(gp)
Bin Meng51ab4572018-12-12 06:12:45 -0800123 /* save the boot hart id to global_data */
Lukas Auer1446b262019-03-17 19:28:36 +0100124 SREG tp, GD_BOOT_HART(gp)
Bin Meng51ab4572018-12-12 06:12:45 -0800125
Rick Chenbdce3892019-04-30 13:49:33 +0800126#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100127 la t0, available_harts_lock
128 fence rw, w
129 amoswap.w zero, zero, 0(t0)
130
131wait_for_gd_init:
132 la t0, available_harts_lock
133 li t1, 1
1341: amoswap.w t1, t1, 0(t0)
135 fence r, rw
136 bnez t1, 1b
137
138 /* register available harts in the available_harts mask */
139 li t1, 1
140 sll t1, t1, tp
141 LREG t2, GD_AVAILABLE_HARTS(gp)
142 or t2, t2, t1
143 SREG t2, GD_AVAILABLE_HARTS(gp)
144
145 fence rw, w
146 amoswap.w zero, zero, 0(t0)
147
148 /*
149 * Continue on hart lottery winner, others branch to
150 * secondary_hart_loop.
151 */
152 bnez s2, secondary_hart_loop
Rick Chenbdce3892019-04-30 13:49:33 +0800153#endif
Lukas Auer3dea63c2019-03-17 19:28:37 +0100154
Lukas Auer2503ccc2019-03-17 19:28:35 +0100155 /* Enable cache */
156 jal icache_enable
157 jal dcache_enable
158
159#ifdef CONFIG_DEBUG_UART
160 jal debug_uart_init
161#endif
162
Lukas Auerc55309c2018-11-22 11:26:24 +0100163 mv a0, zero /* a0 <-- boot_flags = 0 */
164 la t5, board_init_f
Lukas Auer8c59f202019-08-21 21:14:45 +0200165 jalr t5 /* jump to board_init_f() */
166
167#ifdef CONFIG_SPL_BUILD
168spl_clear_bss:
169 la t0, __bss_start
170 la t1, __bss_end
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200171 beq t0, t1, spl_stack_gd_setup
Lukas Auer8c59f202019-08-21 21:14:45 +0200172
173spl_clear_bss_loop:
174 SREG zero, 0(t0)
175 addi t0, t0, REGBYTES
Rick Chen444c4642019-11-14 13:52:27 +0800176 blt t0, t1, spl_clear_bss_loop
Lukas Auer8c59f202019-08-21 21:14:45 +0200177
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200178spl_stack_gd_setup:
179 jal spl_relocate_stack_gd
180
181 /* skip setup if we did not relocate */
182 beqz a0, spl_call_board_init_r
183 mv s0, a0
184
185 /* setup stack on main hart */
Bin Meng191636e2020-04-16 08:09:30 -0700186#if CONFIG_IS_ENABLED(SMP)
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200187 /* tp: hart id */
188 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
189 sub sp, s0, t0
190#else
191 mv sp, s0
192#endif
193
194 /* set new stack and global data pointer on secondary harts */
195spl_secondary_hart_stack_gd_setup:
196 la a0, secondary_hart_relocate
197 mv a1, s0
198 mv a2, s0
Lukas Auer90ae2812019-12-08 23:28:51 +0100199 mv a3, zero
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200200 jal smp_call_function
201
202 /* hang if relocation of secondary harts has failed */
203 beqz a0, 1f
204 mv a1, a0
205 la a0, secondary_harts_relocation_error
206 jal printf
207 jal hang
208
209 /* set new global data pointer on main hart */
2101: mv gp, s0
211
Lukas Auer8c59f202019-08-21 21:14:45 +0200212spl_call_board_init_r:
213 mv a0, zero
214 mv a1, zero
215 jal board_init_r
216#endif
Rick Chene8e39592017-12-26 13:55:48 +0800217
218/*
Simon Glass94133872019-12-28 10:44:45 -0700219 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene8e39592017-12-26 13:55:48 +0800220 *
221 * This "function" does not return, instead it continues in RAM
222 * after relocating the monitor code.
223 *
224 */
225.globl relocate_code
226relocate_code:
Lukas Auerc55309c2018-11-22 11:26:24 +0100227 mv s2, a0 /* save addr_sp */
228 mv s3, a1 /* save addr of gd */
229 mv s4, a2 /* save addr of destination */
Rick Chene8e39592017-12-26 13:55:48 +0800230
231/*
232 *Set up the stack
233 */
234stack_setup:
Bin Meng191636e2020-04-16 08:09:30 -0700235#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100236 /* tp: hart id */
237 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
238 sub sp, s2, t0
239#else
Lukas Auerc55309c2018-11-22 11:26:24 +0100240 mv sp, s2
Lukas Auer3dea63c2019-03-17 19:28:37 +0100241#endif
242
Lukas Auerc55309c2018-11-22 11:26:24 +0100243 la t0, _start
244 sub t6, s4, t0 /* t6 <- relocation offset */
245 beq t0, s4, clear_bss /* skip relocation */
Rick Chene8e39592017-12-26 13:55:48 +0800246
Lukas Auerc55309c2018-11-22 11:26:24 +0100247 mv t1, s4 /* t1 <- scratch for copy_loop */
248 la t3, __bss_start
249 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
250 add t2, t0, t3 /* t2 <- source end address */
Rick Chene8e39592017-12-26 13:55:48 +0800251
252copy_loop:
Lukas Auerc55309c2018-11-22 11:26:24 +0100253 LREG t5, 0(t0)
254 addi t0, t0, REGBYTES
255 SREG t5, 0(t1)
256 addi t1, t1, REGBYTES
257 blt t0, t2, copy_loop
Rick Chene8e39592017-12-26 13:55:48 +0800258
259/*
260 * Update dynamic relocations after board_init_f
261 */
262fix_rela_dyn:
Lukas Auerc55309c2018-11-22 11:26:24 +0100263 la t1, __rel_dyn_start
264 la t2, __rel_dyn_end
265 beq t1, t2, clear_bss
266 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
267 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene8e39592017-12-26 13:55:48 +0800268
269/*
270 * skip first reserved entry: address, type, addend
271 */
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200272 j 10f
Rick Chene8e39592017-12-26 13:55:48 +0800273
2746:
Lukas Auerc55309c2018-11-22 11:26:24 +0100275 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
276 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
277 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
278 LREG t3, -(REGBYTES*3)(t1)
279 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
280 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
281 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
282 SREG t5, 0(t3)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200283 j 10f
Rick Chene8e39592017-12-26 13:55:48 +0800284
2858:
Lukas Auerc55309c2018-11-22 11:26:24 +0100286 la t4, __dyn_sym_start
287 add t4, t4, t6
Rick Chene8e39592017-12-26 13:55:48 +0800288
2899:
Lukas Auerc55309c2018-11-22 11:26:24 +0100290 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
291 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
292 andi t5, t5, 0xFF /* t5 <--- relocation type */
293 li t3, RELOC_TYPE
294 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene8e39592017-12-26 13:55:48 +0800295
Lukas Auerc55309c2018-11-22 11:26:24 +0100296 LREG t3, -(REGBYTES*3)(t1)
297 li t5, SYM_SIZE
298 mul t0, t0, t5
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100299 add s5, t4, t0
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200300 LREG t0, -(REGBYTES)(t1) /* t0 <-- addend */
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100301 LREG t5, REGBYTES(s5)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200302 add t5, t5, t0
Lukas Auerc55309c2018-11-22 11:26:24 +0100303 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
304 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
305 SREG t5, 0(t3)
Rick Chene8e39592017-12-26 13:55:48 +080030610:
Lukas Auerc55309c2018-11-22 11:26:24 +0100307 addi t1, t1, (REGBYTES*3)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200308 ble t1, t2, 6b
Rick Chene8e39592017-12-26 13:55:48 +0800309
310/*
311 * trap update
312*/
Lukas Auerc55309c2018-11-22 11:26:24 +0100313 la t0, trap_entry
314 add t0, t0, t6
Anup Pateld2db2a82018-12-03 10:57:40 +0530315 csrw MODE_PREFIX(tvec), t0
Rick Chene8e39592017-12-26 13:55:48 +0800316
317clear_bss:
Lukas Auerc55309c2018-11-22 11:26:24 +0100318 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
319 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
320 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
321 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100322 beq t0, t1, relocate_secondary_harts
Rick Chene8e39592017-12-26 13:55:48 +0800323
324clbss_l:
Lukas Auer31f90582018-11-22 11:26:28 +0100325 SREG zero, 0(t0) /* clear loop... */
Lukas Auerc55309c2018-11-22 11:26:24 +0100326 addi t0, t0, REGBYTES
Rick Chen444c4642019-11-14 13:52:27 +0800327 blt t0, t1, clbss_l
Rick Chene8e39592017-12-26 13:55:48 +0800328
Lukas Auer3dea63c2019-03-17 19:28:37 +0100329relocate_secondary_harts:
Bin Meng191636e2020-04-16 08:09:30 -0700330#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100331 /* send relocation IPI */
332 la t0, secondary_hart_relocate
333 add a0, t0, t6
334
335 /* store relocation offset */
336 mv s5, t6
337
338 mv a1, s2
339 mv a2, s3
Lukas Auer90ae2812019-12-08 23:28:51 +0100340 mv a3, zero
Lukas Auer3dea63c2019-03-17 19:28:37 +0100341 jal smp_call_function
342
Lukas Auer8ac39e22019-03-17 19:28:40 +0100343 /* hang if relocation of secondary harts has failed */
344 beqz a0, 1f
345 mv a1, a0
346 la a0, secondary_harts_relocation_error
347 jal printf
348 jal hang
349
Lukas Auer3dea63c2019-03-17 19:28:37 +0100350 /* restore relocation offset */
Lukas Auer8ac39e22019-03-17 19:28:40 +01003511: mv t6, s5
Lukas Auer3dea63c2019-03-17 19:28:37 +0100352#endif
353
Rick Chene8e39592017-12-26 13:55:48 +0800354/*
355 * We are done. Do not return, instead branch to second part of board
356 * initialization, now running from RAM.
357 */
358call_board_init_r:
Rick Chen52923c62018-11-07 09:34:06 +0800359 jal invalidate_icache_all
360 jal flush_dcache_all
Sean Anderson40433972020-01-27 16:39:44 -0500361 la t0, board_init_r /* offset of board_init_r() */
362 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene8e39592017-12-26 13:55:48 +0800363/*
364 * setup parameters for board_init_r
365 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100366 mv a0, s3 /* gd_t */
367 mv a1, s4 /* dest_addr */
Rick Chene8e39592017-12-26 13:55:48 +0800368
369/*
370 * jump to it ...
371 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100372 jr t4 /* jump to board_init_r() */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100373
Bin Meng191636e2020-04-16 08:09:30 -0700374#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100375hart_out_of_bounds_loop:
376 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
377 wfi
378 j hart_out_of_bounds_loop
Lukas Auer3dea63c2019-03-17 19:28:37 +0100379
Lukas Auer3dea63c2019-03-17 19:28:37 +0100380/* SMP relocation entry */
381secondary_hart_relocate:
382 /* a1: new sp */
383 /* a2: new gd */
384 /* tp: hart id */
385
386 /* setup stack */
387 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
388 sub sp, a1, t0
389
390 /* update global data pointer */
391 mv gp, a2
392#endif
393
394secondary_hart_loop:
395 wfi
396
Bin Meng191636e2020-04-16 08:09:30 -0700397#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100398 csrr t0, MODE_PREFIX(ip)
Lukas Auerfbfd92b2019-08-21 21:14:43 +0200399#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100400 andi t0, t0, MIE_MSIE
401#else
402 andi t0, t0, SIE_SSIE
403#endif
404 beqz t0, secondary_hart_loop
405
406 mv a0, tp
407 jal handle_ipi
408#endif
409
410 j secondary_hart_loop