blob: eb852538cab70b4238b9d32b6e13d58367548fb8 [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
Sean Anderson2c4c7d12020-09-21 07:51:40 -040050 /*
51 * Set the global data pointer to a known value in case we get a very
52 * early trap. The global data pointer will be set its actual value only
53 * after it has been initialized.
54 */
55 mv gp, zero
56
Lukas Auer7cf43682018-11-22 11:26:24 +010057 la t0, trap_entry
Anup Patel89b39342018-12-03 10:57:40 +053058 csrw MODE_PREFIX(tvec), t0
Lukas Auer8598e6b2018-11-22 11:26:28 +010059
60 /* mask all interrupts */
Anup Patel89b39342018-12-03 10:57:40 +053061 csrw MODE_PREFIX(ie), zero
Rick Chene76b8042017-12-26 13:55:48 +080062
Bin Mengb161f902020-04-16 08:09:30 -070063#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +010064 /* check if hart is within range */
65 /* tp: hart id */
66 li t0, CONFIG_NR_CPUS
67 bge tp, t0, hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +010068
Lukas Auera3596652019-03-17 19:28:37 +010069 /* set xSIE bit to receive IPIs */
Lukas Auer61346592019-08-21 21:14:43 +020070#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +010071 li t0, MIE_MSIE
72#else
73 li t0, SIE_SSIE
74#endif
75 csrs MODE_PREFIX(ie), t0
76#endif
77
Rick Chene76b8042017-12-26 13:55:48 +080078/*
Rick Chene76b8042017-12-26 13:55:48 +080079 * Set stackpointer in internal/ex RAM to call board_init_f
80 */
81call_board_init_f:
Lukas Auer7cf43682018-11-22 11:26:24 +010082 li t0, -16
Lukas Auer396f0bd2019-08-21 21:14:45 +020083#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
84 li t1, CONFIG_SPL_STACK
85#else
Lukas Auer7cf43682018-11-22 11:26:24 +010086 li t1, CONFIG_SYS_INIT_SP_ADDR
Lukas Auer396f0bd2019-08-21 21:14:45 +020087#endif
Lukas Auer7cf43682018-11-22 11:26:24 +010088 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene76b8042017-12-26 13:55:48 +080089
Rick Chene76b8042017-12-26 13:55:48 +080090call_board_init_f_0:
91 mv a0, sp
92 jal board_init_f_alloc_reserve
Lukas Auera3596652019-03-17 19:28:37 +010093
94 /*
Sean Anderson2c4c7d12020-09-21 07:51:40 -040095 * Save global data pointer for later. We don't set it here because it
96 * is not initialized yet.
Lukas Auera3596652019-03-17 19:28:37 +010097 */
Sean Anderson2c4c7d12020-09-21 07:51:40 -040098 mv s0, a0
Lukas Auera3596652019-03-17 19:28:37 +010099
100 /* setup stack */
Bin Mengb161f902020-04-16 08:09:30 -0700101#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100102 /* tp: hart id */
103 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
104 sub sp, a0, t0
105#else
Rick Chene76b8042017-12-26 13:55:48 +0800106 mv sp, a0
Lukas Auera3596652019-03-17 19:28:37 +0100107#endif
108
Rick Chene5e6c362019-04-30 13:49:33 +0800109#ifndef CONFIG_XIP
Lukas Auera3596652019-03-17 19:28:37 +0100110 /*
111 * Pick hart to initialize global data and run U-Boot. The other harts
112 * wait for initialization to complete.
113 */
114 la t0, hart_lottery
115 li s2, 1
116 amoswap.w s2, t1, 0(t0)
117 bnez s2, wait_for_gd_init
Rick Chene5e6c362019-04-30 13:49:33 +0800118#else
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400119 /*
120 * FIXME: gp is set before it is initialized. If an XIP U-Boot ever
121 * encounters a pending IPI on boot it is liable to jump to whatever
122 * memory happens to be in ipi_data.addr on boot. It may also run into
123 * problems if it encounters an exception too early (because printf/puts
124 * accesses gd).
125 */
126 mv gp, s0
Rick Chene5e6c362019-04-30 13:49:33 +0800127 bnez tp, secondary_hart_loop
128#endif
Lukas Auer39a652b2018-11-22 11:26:29 +0100129
Rick Chen3043b902019-04-30 13:49:35 +0800130#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer39a652b2018-11-22 11:26:29 +0100131 la t0, prior_stage_fdt_address
132 SREG s1, 0(t0)
Rick Chen3043b902019-04-30 13:49:35 +0800133#endif
Lukas Auer39a652b2018-11-22 11:26:29 +0100134
Rick Chene76b8042017-12-26 13:55:48 +0800135 jal board_init_f_init_reserve
136
Atish Patra111b8042020-04-21 11:15:01 -0700137 SREG s1, GD_FIRMWARE_FDT_ADDR(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800138 /* save the boot hart id to global_data */
Lukas Auer8de4b3e2019-03-17 19:28:36 +0100139 SREG tp, GD_BOOT_HART(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800140
Rick Chene5e6c362019-04-30 13:49:33 +0800141#ifndef CONFIG_XIP
Lukas Auera3596652019-03-17 19:28:37 +0100142 la t0, available_harts_lock
Sean Anderson934b24a2020-09-21 07:51:39 -0400143 amoswap.w.rl zero, zero, 0(t0)
Lukas Auera3596652019-03-17 19:28:37 +0100144
145wait_for_gd_init:
146 la t0, available_harts_lock
147 li t1, 1
Sean Anderson934b24a2020-09-21 07:51:39 -04001481: amoswap.w.aq t1, t1, 0(t0)
Lukas Auera3596652019-03-17 19:28:37 +0100149 bnez t1, 1b
150
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400151 /*
152 * Set the global data pointer only when gd_t has been initialized.
153 * This was already set by arch_setup_gd on the boot hart, but all other
154 * harts' global data pointers gets set here.
155 */
156 mv gp, s0
157
Lukas Auera3596652019-03-17 19:28:37 +0100158 /* register available harts in the available_harts mask */
159 li t1, 1
160 sll t1, t1, tp
161 LREG t2, GD_AVAILABLE_HARTS(gp)
162 or t2, t2, t1
163 SREG t2, GD_AVAILABLE_HARTS(gp)
164
Sean Anderson934b24a2020-09-21 07:51:39 -0400165 amoswap.w.rl zero, zero, 0(t0)
Lukas Auera3596652019-03-17 19:28:37 +0100166
167 /*
168 * Continue on hart lottery winner, others branch to
169 * secondary_hart_loop.
170 */
171 bnez s2, secondary_hart_loop
Rick Chene5e6c362019-04-30 13:49:33 +0800172#endif
Lukas Auera3596652019-03-17 19:28:37 +0100173
Lukas Auer01558e22019-03-17 19:28:35 +0100174 /* Enable cache */
175 jal icache_enable
176 jal dcache_enable
177
178#ifdef CONFIG_DEBUG_UART
179 jal debug_uart_init
180#endif
181
Lukas Auer7cf43682018-11-22 11:26:24 +0100182 mv a0, zero /* a0 <-- boot_flags = 0 */
183 la t5, board_init_f
Lukas Auer396f0bd2019-08-21 21:14:45 +0200184 jalr t5 /* jump to board_init_f() */
185
186#ifdef CONFIG_SPL_BUILD
187spl_clear_bss:
188 la t0, __bss_start
189 la t1, __bss_end
Lukas Auer2a2a9252019-08-21 21:14:46 +0200190 beq t0, t1, spl_stack_gd_setup
Lukas Auer396f0bd2019-08-21 21:14:45 +0200191
192spl_clear_bss_loop:
193 SREG zero, 0(t0)
194 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800195 blt t0, t1, spl_clear_bss_loop
Lukas Auer396f0bd2019-08-21 21:14:45 +0200196
Lukas Auer2a2a9252019-08-21 21:14:46 +0200197spl_stack_gd_setup:
198 jal spl_relocate_stack_gd
199
200 /* skip setup if we did not relocate */
201 beqz a0, spl_call_board_init_r
202 mv s0, a0
203
204 /* setup stack on main hart */
Bin Mengb161f902020-04-16 08:09:30 -0700205#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200206 /* tp: hart id */
207 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
208 sub sp, s0, t0
209#else
210 mv sp, s0
211#endif
212
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800213#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200214 /* set new stack and global data pointer on secondary harts */
215spl_secondary_hart_stack_gd_setup:
216 la a0, secondary_hart_relocate
217 mv a1, s0
218 mv a2, s0
Lukas Auerc308e012019-12-08 23:28:51 +0100219 mv a3, zero
Lukas Auer2a2a9252019-08-21 21:14:46 +0200220 jal smp_call_function
221
222 /* hang if relocation of secondary harts has failed */
223 beqz a0, 1f
224 mv a1, a0
225 la a0, secondary_harts_relocation_error
226 jal printf
227 jal hang
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800228#endif
Lukas Auer2a2a9252019-08-21 21:14:46 +0200229
230 /* set new global data pointer on main hart */
2311: mv gp, s0
232
Lukas Auer396f0bd2019-08-21 21:14:45 +0200233spl_call_board_init_r:
234 mv a0, zero
235 mv a1, zero
236 jal board_init_r
237#endif
Rick Chene76b8042017-12-26 13:55:48 +0800238
239/*
Simon Glass284f71b2019-12-28 10:44:45 -0700240 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene76b8042017-12-26 13:55:48 +0800241 *
242 * This "function" does not return, instead it continues in RAM
243 * after relocating the monitor code.
244 *
245 */
246.globl relocate_code
247relocate_code:
Lukas Auer7cf43682018-11-22 11:26:24 +0100248 mv s2, a0 /* save addr_sp */
249 mv s3, a1 /* save addr of gd */
250 mv s4, a2 /* save addr of destination */
Rick Chene76b8042017-12-26 13:55:48 +0800251
252/*
253 *Set up the stack
254 */
255stack_setup:
Bin Mengb161f902020-04-16 08:09:30 -0700256#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100257 /* tp: hart id */
258 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
259 sub sp, s2, t0
260#else
Lukas Auer7cf43682018-11-22 11:26:24 +0100261 mv sp, s2
Lukas Auera3596652019-03-17 19:28:37 +0100262#endif
263
Lukas Auer7cf43682018-11-22 11:26:24 +0100264 la t0, _start
265 sub t6, s4, t0 /* t6 <- relocation offset */
266 beq t0, s4, clear_bss /* skip relocation */
Rick Chene76b8042017-12-26 13:55:48 +0800267
Lukas Auer7cf43682018-11-22 11:26:24 +0100268 mv t1, s4 /* t1 <- scratch for copy_loop */
269 la t3, __bss_start
270 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
271 add t2, t0, t3 /* t2 <- source end address */
Rick Chene76b8042017-12-26 13:55:48 +0800272
273copy_loop:
Lukas Auer7cf43682018-11-22 11:26:24 +0100274 LREG t5, 0(t0)
275 addi t0, t0, REGBYTES
276 SREG t5, 0(t1)
277 addi t1, t1, REGBYTES
278 blt t0, t2, copy_loop
Rick Chene76b8042017-12-26 13:55:48 +0800279
280/*
281 * Update dynamic relocations after board_init_f
282 */
283fix_rela_dyn:
Lukas Auer7cf43682018-11-22 11:26:24 +0100284 la t1, __rel_dyn_start
285 la t2, __rel_dyn_end
286 beq t1, t2, clear_bss
287 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
288 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene76b8042017-12-26 13:55:48 +0800289
290/*
291 * skip first reserved entry: address, type, addend
292 */
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200293 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800294
2956:
Lukas Auer7cf43682018-11-22 11:26:24 +0100296 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
297 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
298 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
299 LREG t3, -(REGBYTES*3)(t1)
300 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
301 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
302 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
303 SREG t5, 0(t3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200304 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800305
3068:
Lukas Auer7cf43682018-11-22 11:26:24 +0100307 la t4, __dyn_sym_start
308 add t4, t4, t6
Rick Chene76b8042017-12-26 13:55:48 +0800309
3109:
Lukas Auer7cf43682018-11-22 11:26:24 +0100311 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
312 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
313 andi t5, t5, 0xFF /* t5 <--- relocation type */
314 li t3, RELOC_TYPE
315 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene76b8042017-12-26 13:55:48 +0800316
Lukas Auer7cf43682018-11-22 11:26:24 +0100317 LREG t3, -(REGBYTES*3)(t1)
318 li t5, SYM_SIZE
319 mul t0, t0, t5
Lukas Auer39a652b2018-11-22 11:26:29 +0100320 add s5, t4, t0
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200321 LREG t0, -(REGBYTES)(t1) /* t0 <-- addend */
Lukas Auer39a652b2018-11-22 11:26:29 +0100322 LREG t5, REGBYTES(s5)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200323 add t5, t5, t0
Lukas Auer7cf43682018-11-22 11:26:24 +0100324 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
325 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
326 SREG t5, 0(t3)
Rick Chene76b8042017-12-26 13:55:48 +080032710:
Lukas Auer7cf43682018-11-22 11:26:24 +0100328 addi t1, t1, (REGBYTES*3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200329 ble t1, t2, 6b
Rick Chene76b8042017-12-26 13:55:48 +0800330
331/*
332 * trap update
333*/
Lukas Auer7cf43682018-11-22 11:26:24 +0100334 la t0, trap_entry
335 add t0, t0, t6
Anup Patel89b39342018-12-03 10:57:40 +0530336 csrw MODE_PREFIX(tvec), t0
Rick Chene76b8042017-12-26 13:55:48 +0800337
338clear_bss:
Lukas Auer7cf43682018-11-22 11:26:24 +0100339 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
340 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
341 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
342 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auera3596652019-03-17 19:28:37 +0100343 beq t0, t1, relocate_secondary_harts
Rick Chene76b8042017-12-26 13:55:48 +0800344
345clbss_l:
Lukas Auer8598e6b2018-11-22 11:26:28 +0100346 SREG zero, 0(t0) /* clear loop... */
Lukas Auer7cf43682018-11-22 11:26:24 +0100347 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800348 blt t0, t1, clbss_l
Rick Chene76b8042017-12-26 13:55:48 +0800349
Lukas Auera3596652019-03-17 19:28:37 +0100350relocate_secondary_harts:
Bin Mengb161f902020-04-16 08:09:30 -0700351#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100352 /* send relocation IPI */
353 la t0, secondary_hart_relocate
354 add a0, t0, t6
355
356 /* store relocation offset */
357 mv s5, t6
358
359 mv a1, s2
360 mv a2, s3
Lukas Auerc308e012019-12-08 23:28:51 +0100361 mv a3, zero
Lukas Auera3596652019-03-17 19:28:37 +0100362 jal smp_call_function
363
Lukas Auercddde092019-03-17 19:28:40 +0100364 /* hang if relocation of secondary harts has failed */
365 beqz a0, 1f
366 mv a1, a0
367 la a0, secondary_harts_relocation_error
368 jal printf
369 jal hang
370
Lukas Auera3596652019-03-17 19:28:37 +0100371 /* restore relocation offset */
Lukas Auercddde092019-03-17 19:28:40 +01003721: mv t6, s5
Lukas Auera3596652019-03-17 19:28:37 +0100373#endif
374
Rick Chene76b8042017-12-26 13:55:48 +0800375/*
376 * We are done. Do not return, instead branch to second part of board
377 * initialization, now running from RAM.
378 */
379call_board_init_r:
Rick Chen842d5802018-11-07 09:34:06 +0800380 jal invalidate_icache_all
381 jal flush_dcache_all
Sean Anderson750fee52020-01-27 16:39:44 -0500382 la t0, board_init_r /* offset of board_init_r() */
383 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene76b8042017-12-26 13:55:48 +0800384/*
385 * setup parameters for board_init_r
386 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100387 mv a0, s3 /* gd_t */
388 mv a1, s4 /* dest_addr */
Rick Chene76b8042017-12-26 13:55:48 +0800389
390/*
391 * jump to it ...
392 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100393 jr t4 /* jump to board_init_r() */
Lukas Auera3596652019-03-17 19:28:37 +0100394
Bin Mengb161f902020-04-16 08:09:30 -0700395#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100396hart_out_of_bounds_loop:
397 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
398 wfi
399 j hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +0100400
Lukas Auera3596652019-03-17 19:28:37 +0100401/* SMP relocation entry */
402secondary_hart_relocate:
403 /* a1: new sp */
404 /* a2: new gd */
405 /* tp: hart id */
406
407 /* setup stack */
408 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
409 sub sp, a1, t0
410
411 /* update global data pointer */
412 mv gp, a2
413#endif
414
415secondary_hart_loop:
416 wfi
417
Bin Mengb161f902020-04-16 08:09:30 -0700418#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100419 csrr t0, MODE_PREFIX(ip)
Lukas Auer61346592019-08-21 21:14:43 +0200420#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +0100421 andi t0, t0, MIE_MSIE
422#else
423 andi t0, t0, SIE_SSIE
424#endif
425 beqz t0, secondary_hart_loop
426
427 mv a0, tp
428 jal handle_ipi
429#endif
430
431 j secondary_hart_loop