blob: 66ca1c7020495f9ee2fc7d362c769cfeb3eb61e6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rick Chene76b8042017-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 Chene76b8042017-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 Meng89681a72018-12-12 06:12:45 -080017#include <generated/asm-offsets.h>
Rick Chene76b8042017-12-26 13:55:48 +080018
19#ifdef CONFIG_32BIT
Lukas Auer7cf43682018-11-22 11:26:24 +010020#define LREG lw
21#define SREG sw
22#define REGBYTES 4
Rick Chene76b8042017-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 Auer7cf43682018-11-22 11:26:24 +010027#define LREG ld
28#define SREG sd
29#define REGBYTES 8
Rick Chene76b8042017-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 Auercddde092019-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 Auer7cf43682018-11-22 11:26:24 +010039.section .text
Rick Chene76b8042017-12-26 13:55:48 +080040.globl _start
41_start:
Lukas Auer61346592019-08-21 21:14:43 +020042#if CONFIG_IS_ENABLED(RISCV_MMODE)
Bin Mengf9426362019-07-10 23:43:13 -070043 csrr a0, CSR_MHARTID
Lukas Auer9ebf2942019-03-17 19:28:39 +010044#endif
45
Lukas Auer39a652b2018-11-22 11:26:29 +010046 /* save hart id and dtb pointer */
Lukas Auer8de4b3e2019-03-17 19:28:36 +010047 mv tp, a0
Lukas Auer39a652b2018-11-22 11:26:29 +010048 mv s1, a1
49
Lukas Auer7cf43682018-11-22 11:26:24 +010050 la t0, trap_entry
Anup Patel89b39342018-12-03 10:57:40 +053051 csrw MODE_PREFIX(tvec), t0
Lukas Auer8598e6b2018-11-22 11:26:28 +010052
53 /* mask all interrupts */
Anup Patel89b39342018-12-03 10:57:40 +053054 csrw MODE_PREFIX(ie), zero
Rick Chene76b8042017-12-26 13:55:48 +080055
Bin Mengb161f902020-04-16 08:09:30 -070056#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-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 Auera3596652019-03-17 19:28:37 +010061
Lukas Auera3596652019-03-17 19:28:37 +010062 /* set xSIE bit to receive IPIs */
Lukas Auer61346592019-08-21 21:14:43 +020063#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-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 Chene76b8042017-12-26 13:55:48 +080071/*
Rick Chene76b8042017-12-26 13:55:48 +080072 * Set stackpointer in internal/ex RAM to call board_init_f
73 */
74call_board_init_f:
Lukas Auer7cf43682018-11-22 11:26:24 +010075 li t0, -16
Lukas Auer396f0bd2019-08-21 21:14:45 +020076#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
77 li t1, CONFIG_SPL_STACK
78#else
Lukas Auer7cf43682018-11-22 11:26:24 +010079 li t1, CONFIG_SYS_INIT_SP_ADDR
Lukas Auer396f0bd2019-08-21 21:14:45 +020080#endif
Lukas Auer7cf43682018-11-22 11:26:24 +010081 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene76b8042017-12-26 13:55:48 +080082
Rick Chene76b8042017-12-26 13:55:48 +080083call_board_init_f_0:
84 mv a0, sp
85 jal board_init_f_alloc_reserve
Lukas Auera3596652019-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 Mengb161f902020-04-16 08:09:30 -070094#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-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 Chene76b8042017-12-26 13:55:48 +080099 mv sp, a0
Lukas Auera3596652019-03-17 19:28:37 +0100100#endif
101
Rick Chene5e6c362019-04-30 13:49:33 +0800102#ifndef CONFIG_XIP
Lukas Auera3596652019-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 Chene5e6c362019-04-30 13:49:33 +0800111#else
112 bnez tp, secondary_hart_loop
113#endif
Lukas Auer39a652b2018-11-22 11:26:29 +0100114
Rick Chen3043b902019-04-30 13:49:35 +0800115#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer39a652b2018-11-22 11:26:29 +0100116 la t0, prior_stage_fdt_address
117 SREG s1, 0(t0)
Rick Chen3043b902019-04-30 13:49:35 +0800118#endif
Lukas Auer39a652b2018-11-22 11:26:29 +0100119
Rick Chene76b8042017-12-26 13:55:48 +0800120 jal board_init_f_init_reserve
121
Atish Patra111b8042020-04-21 11:15:01 -0700122 SREG s1, GD_FIRMWARE_FDT_ADDR(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800123 /* save the boot hart id to global_data */
Lukas Auer8de4b3e2019-03-17 19:28:36 +0100124 SREG tp, GD_BOOT_HART(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800125
Rick Chene5e6c362019-04-30 13:49:33 +0800126#ifndef CONFIG_XIP
Lukas Auera3596652019-03-17 19:28:37 +0100127 la t0, available_harts_lock
Sean Anderson934b24a2020-09-21 07:51:39 -0400128 amoswap.w.rl zero, zero, 0(t0)
Lukas Auera3596652019-03-17 19:28:37 +0100129
130wait_for_gd_init:
131 la t0, available_harts_lock
132 li t1, 1
Sean Anderson934b24a2020-09-21 07:51:39 -04001331: amoswap.w.aq t1, t1, 0(t0)
Lukas Auera3596652019-03-17 19:28:37 +0100134 bnez t1, 1b
135
136 /* register available harts in the available_harts mask */
137 li t1, 1
138 sll t1, t1, tp
139 LREG t2, GD_AVAILABLE_HARTS(gp)
140 or t2, t2, t1
141 SREG t2, GD_AVAILABLE_HARTS(gp)
142
Sean Anderson934b24a2020-09-21 07:51:39 -0400143 amoswap.w.rl zero, zero, 0(t0)
Lukas Auera3596652019-03-17 19:28:37 +0100144
145 /*
146 * Continue on hart lottery winner, others branch to
147 * secondary_hart_loop.
148 */
149 bnez s2, secondary_hart_loop
Rick Chene5e6c362019-04-30 13:49:33 +0800150#endif
Lukas Auera3596652019-03-17 19:28:37 +0100151
Lukas Auer01558e22019-03-17 19:28:35 +0100152 /* Enable cache */
153 jal icache_enable
154 jal dcache_enable
155
156#ifdef CONFIG_DEBUG_UART
157 jal debug_uart_init
158#endif
159
Lukas Auer7cf43682018-11-22 11:26:24 +0100160 mv a0, zero /* a0 <-- boot_flags = 0 */
161 la t5, board_init_f
Lukas Auer396f0bd2019-08-21 21:14:45 +0200162 jalr t5 /* jump to board_init_f() */
163
164#ifdef CONFIG_SPL_BUILD
165spl_clear_bss:
166 la t0, __bss_start
167 la t1, __bss_end
Lukas Auer2a2a9252019-08-21 21:14:46 +0200168 beq t0, t1, spl_stack_gd_setup
Lukas Auer396f0bd2019-08-21 21:14:45 +0200169
170spl_clear_bss_loop:
171 SREG zero, 0(t0)
172 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800173 blt t0, t1, spl_clear_bss_loop
Lukas Auer396f0bd2019-08-21 21:14:45 +0200174
Lukas Auer2a2a9252019-08-21 21:14:46 +0200175spl_stack_gd_setup:
176 jal spl_relocate_stack_gd
177
178 /* skip setup if we did not relocate */
179 beqz a0, spl_call_board_init_r
180 mv s0, a0
181
182 /* setup stack on main hart */
Bin Mengb161f902020-04-16 08:09:30 -0700183#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200184 /* tp: hart id */
185 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
186 sub sp, s0, t0
187#else
188 mv sp, s0
189#endif
190
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800191#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200192 /* set new stack and global data pointer on secondary harts */
193spl_secondary_hart_stack_gd_setup:
194 la a0, secondary_hart_relocate
195 mv a1, s0
196 mv a2, s0
Lukas Auerc308e012019-12-08 23:28:51 +0100197 mv a3, zero
Lukas Auer2a2a9252019-08-21 21:14:46 +0200198 jal smp_call_function
199
200 /* hang if relocation of secondary harts has failed */
201 beqz a0, 1f
202 mv a1, a0
203 la a0, secondary_harts_relocation_error
204 jal printf
205 jal hang
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800206#endif
Lukas Auer2a2a9252019-08-21 21:14:46 +0200207
208 /* set new global data pointer on main hart */
2091: mv gp, s0
210
Lukas Auer396f0bd2019-08-21 21:14:45 +0200211spl_call_board_init_r:
212 mv a0, zero
213 mv a1, zero
214 jal board_init_r
215#endif
Rick Chene76b8042017-12-26 13:55:48 +0800216
217/*
Simon Glass284f71b2019-12-28 10:44:45 -0700218 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene76b8042017-12-26 13:55:48 +0800219 *
220 * This "function" does not return, instead it continues in RAM
221 * after relocating the monitor code.
222 *
223 */
224.globl relocate_code
225relocate_code:
Lukas Auer7cf43682018-11-22 11:26:24 +0100226 mv s2, a0 /* save addr_sp */
227 mv s3, a1 /* save addr of gd */
228 mv s4, a2 /* save addr of destination */
Rick Chene76b8042017-12-26 13:55:48 +0800229
230/*
231 *Set up the stack
232 */
233stack_setup:
Bin Mengb161f902020-04-16 08:09:30 -0700234#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100235 /* tp: hart id */
236 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
237 sub sp, s2, t0
238#else
Lukas Auer7cf43682018-11-22 11:26:24 +0100239 mv sp, s2
Lukas Auera3596652019-03-17 19:28:37 +0100240#endif
241
Lukas Auer7cf43682018-11-22 11:26:24 +0100242 la t0, _start
243 sub t6, s4, t0 /* t6 <- relocation offset */
244 beq t0, s4, clear_bss /* skip relocation */
Rick Chene76b8042017-12-26 13:55:48 +0800245
Lukas Auer7cf43682018-11-22 11:26:24 +0100246 mv t1, s4 /* t1 <- scratch for copy_loop */
247 la t3, __bss_start
248 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
249 add t2, t0, t3 /* t2 <- source end address */
Rick Chene76b8042017-12-26 13:55:48 +0800250
251copy_loop:
Lukas Auer7cf43682018-11-22 11:26:24 +0100252 LREG t5, 0(t0)
253 addi t0, t0, REGBYTES
254 SREG t5, 0(t1)
255 addi t1, t1, REGBYTES
256 blt t0, t2, copy_loop
Rick Chene76b8042017-12-26 13:55:48 +0800257
258/*
259 * Update dynamic relocations after board_init_f
260 */
261fix_rela_dyn:
Lukas Auer7cf43682018-11-22 11:26:24 +0100262 la t1, __rel_dyn_start
263 la t2, __rel_dyn_end
264 beq t1, t2, clear_bss
265 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
266 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene76b8042017-12-26 13:55:48 +0800267
268/*
269 * skip first reserved entry: address, type, addend
270 */
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200271 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800272
2736:
Lukas Auer7cf43682018-11-22 11:26:24 +0100274 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
275 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
276 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
277 LREG t3, -(REGBYTES*3)(t1)
278 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
279 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
280 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
281 SREG t5, 0(t3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200282 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800283
2848:
Lukas Auer7cf43682018-11-22 11:26:24 +0100285 la t4, __dyn_sym_start
286 add t4, t4, t6
Rick Chene76b8042017-12-26 13:55:48 +0800287
2889:
Lukas Auer7cf43682018-11-22 11:26:24 +0100289 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
290 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
291 andi t5, t5, 0xFF /* t5 <--- relocation type */
292 li t3, RELOC_TYPE
293 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene76b8042017-12-26 13:55:48 +0800294
Lukas Auer7cf43682018-11-22 11:26:24 +0100295 LREG t3, -(REGBYTES*3)(t1)
296 li t5, SYM_SIZE
297 mul t0, t0, t5
Lukas Auer39a652b2018-11-22 11:26:29 +0100298 add s5, t4, t0
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200299 LREG t0, -(REGBYTES)(t1) /* t0 <-- addend */
Lukas Auer39a652b2018-11-22 11:26:29 +0100300 LREG t5, REGBYTES(s5)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200301 add t5, t5, t0
Lukas Auer7cf43682018-11-22 11:26:24 +0100302 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
303 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
304 SREG t5, 0(t3)
Rick Chene76b8042017-12-26 13:55:48 +080030510:
Lukas Auer7cf43682018-11-22 11:26:24 +0100306 addi t1, t1, (REGBYTES*3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200307 ble t1, t2, 6b
Rick Chene76b8042017-12-26 13:55:48 +0800308
309/*
310 * trap update
311*/
Lukas Auer7cf43682018-11-22 11:26:24 +0100312 la t0, trap_entry
313 add t0, t0, t6
Anup Patel89b39342018-12-03 10:57:40 +0530314 csrw MODE_PREFIX(tvec), t0
Rick Chene76b8042017-12-26 13:55:48 +0800315
316clear_bss:
Lukas Auer7cf43682018-11-22 11:26:24 +0100317 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
318 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
319 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
320 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auera3596652019-03-17 19:28:37 +0100321 beq t0, t1, relocate_secondary_harts
Rick Chene76b8042017-12-26 13:55:48 +0800322
323clbss_l:
Lukas Auer8598e6b2018-11-22 11:26:28 +0100324 SREG zero, 0(t0) /* clear loop... */
Lukas Auer7cf43682018-11-22 11:26:24 +0100325 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800326 blt t0, t1, clbss_l
Rick Chene76b8042017-12-26 13:55:48 +0800327
Lukas Auera3596652019-03-17 19:28:37 +0100328relocate_secondary_harts:
Bin Mengb161f902020-04-16 08:09:30 -0700329#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100330 /* send relocation IPI */
331 la t0, secondary_hart_relocate
332 add a0, t0, t6
333
334 /* store relocation offset */
335 mv s5, t6
336
337 mv a1, s2
338 mv a2, s3
Lukas Auerc308e012019-12-08 23:28:51 +0100339 mv a3, zero
Lukas Auera3596652019-03-17 19:28:37 +0100340 jal smp_call_function
341
Lukas Auercddde092019-03-17 19:28:40 +0100342 /* hang if relocation of secondary harts has failed */
343 beqz a0, 1f
344 mv a1, a0
345 la a0, secondary_harts_relocation_error
346 jal printf
347 jal hang
348
Lukas Auera3596652019-03-17 19:28:37 +0100349 /* restore relocation offset */
Lukas Auercddde092019-03-17 19:28:40 +01003501: mv t6, s5
Lukas Auera3596652019-03-17 19:28:37 +0100351#endif
352
Rick Chene76b8042017-12-26 13:55:48 +0800353/*
354 * We are done. Do not return, instead branch to second part of board
355 * initialization, now running from RAM.
356 */
357call_board_init_r:
Rick Chen842d5802018-11-07 09:34:06 +0800358 jal invalidate_icache_all
359 jal flush_dcache_all
Sean Anderson750fee52020-01-27 16:39:44 -0500360 la t0, board_init_r /* offset of board_init_r() */
361 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene76b8042017-12-26 13:55:48 +0800362/*
363 * setup parameters for board_init_r
364 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100365 mv a0, s3 /* gd_t */
366 mv a1, s4 /* dest_addr */
Rick Chene76b8042017-12-26 13:55:48 +0800367
368/*
369 * jump to it ...
370 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100371 jr t4 /* jump to board_init_r() */
Lukas Auera3596652019-03-17 19:28:37 +0100372
Bin Mengb161f902020-04-16 08:09:30 -0700373#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100374hart_out_of_bounds_loop:
375 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
376 wfi
377 j hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +0100378
Lukas Auera3596652019-03-17 19:28:37 +0100379/* SMP relocation entry */
380secondary_hart_relocate:
381 /* a1: new sp */
382 /* a2: new gd */
383 /* tp: hart id */
384
385 /* setup stack */
386 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
387 sub sp, a1, t0
388
389 /* update global data pointer */
390 mv gp, a2
391#endif
392
393secondary_hart_loop:
394 wfi
395
Bin Mengb161f902020-04-16 08:09:30 -0700396#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100397 csrr t0, MODE_PREFIX(ip)
Lukas Auer61346592019-08-21 21:14:43 +0200398#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +0100399 andi t0, t0, MIE_MSIE
400#else
401 andi t0, t0, SIE_SSIE
402#endif
403 beqz t0, secondary_hart_loop
404
405 mv a0, tp
406 jal handle_ipi
407#endif
408
409 j secondary_hart_loop