blob: 6cecadfac56d01714f183312c8e839643fd1b01e [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>
Rick Chene76b8042017-12-26 13:55:48 +080014#include <elf.h>
Tom Rini4ddbade2022-05-25 12:16:03 -040015#include <system-constants.h>
Rick Chene76b8042017-12-26 13:55:48 +080016#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
Sean Anderson5bdad9f2020-09-21 07:51:41 -040046 /*
47 * Save hart id and dtb pointer. The thread pointer register is not
48 * modified by C code. It is used by secondary_hart_loop.
49 */
Lukas Auer8de4b3e2019-03-17 19:28:36 +010050 mv tp, a0
Lukas Auer39a652b2018-11-22 11:26:29 +010051 mv s1, a1
52
Sean Anderson2c4c7d12020-09-21 07:51:40 -040053 /*
54 * Set the global data pointer to a known value in case we get a very
55 * early trap. The global data pointer will be set its actual value only
56 * after it has been initialized.
57 */
58 mv gp, zero
59
Sean Anderson5bdad9f2020-09-21 07:51:41 -040060 /*
61 * Set the trap handler. This must happen after initializing gp because
62 * the handler may use it.
63 */
Lukas Auer7cf43682018-11-22 11:26:24 +010064 la t0, trap_entry
Anup Patel89b39342018-12-03 10:57:40 +053065 csrw MODE_PREFIX(tvec), t0
Lukas Auer8598e6b2018-11-22 11:26:28 +010066
Sean Anderson5bdad9f2020-09-21 07:51:41 -040067 /*
68 * Mask all interrupts. Interrupts are disabled globally (in m/sstatus)
69 * for U-Boot, but we will need to read m/sip to determine if we get an
70 * IPI
71 */
Anup Patel89b39342018-12-03 10:57:40 +053072 csrw MODE_PREFIX(ie), zero
Rick Chene76b8042017-12-26 13:55:48 +080073
Bin Mengb161f902020-04-16 08:09:30 -070074#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +010075 /* check if hart is within range */
76 /* tp: hart id */
77 li t0, CONFIG_NR_CPUS
78 bge tp, t0, hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +010079
Lukas Auera3596652019-03-17 19:28:37 +010080 /* set xSIE bit to receive IPIs */
Lukas Auer61346592019-08-21 21:14:43 +020081#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +010082 li t0, MIE_MSIE
83#else
84 li t0, SIE_SSIE
85#endif
86 csrs MODE_PREFIX(ie), t0
87#endif
88
Rick Chene76b8042017-12-26 13:55:48 +080089/*
Rick Chene76b8042017-12-26 13:55:48 +080090 * Set stackpointer in internal/ex RAM to call board_init_f
91 */
92call_board_init_f:
Lukas Auer396f0bd2019-08-21 21:14:45 +020093#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
Bo Gan0cbd55b2023-06-11 16:54:17 -070094 li t0, CONFIG_SPL_STACK
Lukas Auer396f0bd2019-08-21 21:14:45 +020095#else
Bo Gan0cbd55b2023-06-11 16:54:17 -070096 li t0, SYS_INIT_SP_ADDR
Lukas Auer396f0bd2019-08-21 21:14:45 +020097#endif
Bo Gan0cbd55b2023-06-11 16:54:17 -070098 and t0, t0, -16 /* force 16 byte alignment */
99
100 /* setup stack */
101#if CONFIG_IS_ENABLED(SMP)
102 /* tp: hart id */
103 slli t1, tp, CONFIG_STACK_SIZE_SHIFT
104 sub sp, t0, t1
105#else
106 mv sp, t0
107#endif
108/*
109 * Now sp points to the right stack belonging to current CPU.
110 * It's essential before any function call, otherwise, we get data-race.
111 */
Rick Chene76b8042017-12-26 13:55:48 +0800112
Shengyu Qu62b89a12023-08-09 21:11:32 +0800113/* clear stack if necessary */
114#if CONFIG_IS_ENABLED(ZERO_MEM_BEFORE_USE)
115clear_stack:
116 li t1, 1
117 slli t1, t1, CONFIG_STACK_SIZE_SHIFT
118 sub t1, sp, t1
119clear_stack_loop:
120 SREG zero, 0(t1) /* t1 is always 16 byte aligned */
121 addi t1, t1, REGBYTES
122 blt t1, sp, clear_stack_loop
123#endif
124
Rick Chene76b8042017-12-26 13:55:48 +0800125call_board_init_f_0:
Bo Gan0cbd55b2023-06-11 16:54:17 -0700126 /* find top of reserve space */
127#if CONFIG_IS_ENABLED(SMP)
128 li t1, CONFIG_NR_CPUS
129#else
130 li t1, 1
131#endif
132 slli t1, t1, CONFIG_STACK_SIZE_SHIFT
133 sub a0, t0, t1 /* t1 -> size of all CPU stacks */
Rick Chene76b8042017-12-26 13:55:48 +0800134 jal board_init_f_alloc_reserve
Lukas Auera3596652019-03-17 19:28:37 +0100135
136 /*
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400137 * Save global data pointer for later. We don't set it here because it
138 * is not initialized yet.
Lukas Auera3596652019-03-17 19:28:37 +0100139 */
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400140 mv s0, a0
Lukas Auera3596652019-03-17 19:28:37 +0100141
Lukas Auera3596652019-03-17 19:28:37 +0100142
Green Wan26120802021-05-02 23:23:04 -0700143 /* Configure proprietary settings and customized CSRs of harts */
144call_harts_early_init:
145 jal harts_early_init
146
Nikita Shubin7e5e0292022-09-02 11:47:39 +0300147#if !CONFIG_IS_ENABLED(XIP)
Lukas Auera3596652019-03-17 19:28:37 +0100148 /*
149 * Pick hart to initialize global data and run U-Boot. The other harts
150 * wait for initialization to complete.
151 */
152 la t0, hart_lottery
Brad Kim4b96c882020-11-13 20:47:51 +0900153 li t1, 1
Lukas Auera3596652019-03-17 19:28:37 +0100154 amoswap.w s2, t1, 0(t0)
155 bnez s2, wait_for_gd_init
Rick Chene5e6c362019-04-30 13:49:33 +0800156#else
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400157 /*
158 * FIXME: gp is set before it is initialized. If an XIP U-Boot ever
159 * encounters a pending IPI on boot it is liable to jump to whatever
160 * memory happens to be in ipi_data.addr on boot. It may also run into
161 * problems if it encounters an exception too early (because printf/puts
162 * accesses gd).
163 */
164 mv gp, s0
Leo Yu-Chi Liang4150eec2022-06-01 10:01:49 +0800165#if CONFIG_IS_ENABLED(RISCV_MMODE)
Rick Chene5e6c362019-04-30 13:49:33 +0800166 bnez tp, secondary_hart_loop
167#endif
Leo Yu-Chi Liang4150eec2022-06-01 10:01:49 +0800168#endif
169
Nikita Shubin66ae7fe2022-05-20 14:41:17 +0300170 mv a0, s0
Rick Chene76b8042017-12-26 13:55:48 +0800171 jal board_init_f_init_reserve
172
Atish Patra111b8042020-04-21 11:15:01 -0700173 SREG s1, GD_FIRMWARE_FDT_ADDR(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800174 /* save the boot hart id to global_data */
Lukas Auer8de4b3e2019-03-17 19:28:36 +0100175 SREG tp, GD_BOOT_HART(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800176
Nikita Shubin7e5e0292022-09-02 11:47:39 +0300177#if !CONFIG_IS_ENABLED(XIP)
Rick Chen9c4d5c12022-09-21 14:34:54 +0800178#ifdef CONFIG_AVAILABLE_HARTS
Lukas Auera3596652019-03-17 19:28:37 +0100179 la t0, available_harts_lock
Sean Anderson934b24a2020-09-21 07:51:39 -0400180 amoswap.w.rl zero, zero, 0(t0)
Rick Chen9c4d5c12022-09-21 14:34:54 +0800181#endif
Lukas Auera3596652019-03-17 19:28:37 +0100182
183wait_for_gd_init:
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400184 /*
185 * Set the global data pointer only when gd_t has been initialized.
186 * This was already set by arch_setup_gd on the boot hart, but all other
187 * harts' global data pointers gets set here.
188 */
189 mv gp, s0
Rick Chen9c4d5c12022-09-21 14:34:54 +0800190#ifdef CONFIG_AVAILABLE_HARTS
191 la t0, available_harts_lock
192 li t1, 1
1931: amoswap.w.aq t1, t1, 0(t0)
194 bnez t1, 1b
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400195
Lukas Auera3596652019-03-17 19:28:37 +0100196 /* register available harts in the available_harts mask */
197 li t1, 1
198 sll t1, t1, tp
199 LREG t2, GD_AVAILABLE_HARTS(gp)
200 or t2, t2, t1
201 SREG t2, GD_AVAILABLE_HARTS(gp)
202
Sean Anderson934b24a2020-09-21 07:51:39 -0400203 amoswap.w.rl zero, zero, 0(t0)
Rick Chen9c4d5c12022-09-21 14:34:54 +0800204#endif
Lukas Auera3596652019-03-17 19:28:37 +0100205
206 /*
207 * Continue on hart lottery winner, others branch to
208 * secondary_hart_loop.
209 */
210 bnez s2, secondary_hart_loop
Rick Chene5e6c362019-04-30 13:49:33 +0800211#endif
Lukas Auera3596652019-03-17 19:28:37 +0100212
Lukas Auer01558e22019-03-17 19:28:35 +0100213 /* Enable cache */
214 jal icache_enable
215 jal dcache_enable
216
217#ifdef CONFIG_DEBUG_UART
218 jal debug_uart_init
219#endif
220
Lukas Auer7cf43682018-11-22 11:26:24 +0100221 mv a0, zero /* a0 <-- boot_flags = 0 */
222 la t5, board_init_f
Lukas Auer396f0bd2019-08-21 21:14:45 +0200223 jalr t5 /* jump to board_init_f() */
224
225#ifdef CONFIG_SPL_BUILD
226spl_clear_bss:
227 la t0, __bss_start
228 la t1, __bss_end
Lukas Auer2a2a9252019-08-21 21:14:46 +0200229 beq t0, t1, spl_stack_gd_setup
Lukas Auer396f0bd2019-08-21 21:14:45 +0200230
231spl_clear_bss_loop:
232 SREG zero, 0(t0)
233 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800234 blt t0, t1, spl_clear_bss_loop
Lukas Auer396f0bd2019-08-21 21:14:45 +0200235
Lukas Auer2a2a9252019-08-21 21:14:46 +0200236spl_stack_gd_setup:
237 jal spl_relocate_stack_gd
238
239 /* skip setup if we did not relocate */
240 beqz a0, spl_call_board_init_r
241 mv s0, a0
242
243 /* setup stack on main hart */
Bin Mengb161f902020-04-16 08:09:30 -0700244#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200245 /* tp: hart id */
246 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
247 sub sp, s0, t0
248#else
249 mv sp, s0
250#endif
251
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800252#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200253 /* set new stack and global data pointer on secondary harts */
254spl_secondary_hart_stack_gd_setup:
255 la a0, secondary_hart_relocate
256 mv a1, s0
257 mv a2, s0
Lukas Auerc308e012019-12-08 23:28:51 +0100258 mv a3, zero
Lukas Auer2a2a9252019-08-21 21:14:46 +0200259 jal smp_call_function
260
261 /* hang if relocation of secondary harts has failed */
262 beqz a0, 1f
263 mv a1, a0
264 la a0, secondary_harts_relocation_error
265 jal printf
266 jal hang
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800267#endif
Lukas Auer2a2a9252019-08-21 21:14:46 +0200268
269 /* set new global data pointer on main hart */
2701: mv gp, s0
271
Lukas Auer396f0bd2019-08-21 21:14:45 +0200272spl_call_board_init_r:
273 mv a0, zero
274 mv a1, zero
Bin Meng8615b1d2023-04-13 14:20:06 +0800275 j board_init_r
Lukas Auer396f0bd2019-08-21 21:14:45 +0200276#endif
Rick Chene76b8042017-12-26 13:55:48 +0800277
Bin Meng604a0c52023-04-13 14:20:07 +0800278#if !defined(CONFIG_SPL_BUILD)
Rick Chene76b8042017-12-26 13:55:48 +0800279/*
Simon Glass284f71b2019-12-28 10:44:45 -0700280 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene76b8042017-12-26 13:55:48 +0800281 *
282 * This "function" does not return, instead it continues in RAM
283 * after relocating the monitor code.
284 *
285 */
286.globl relocate_code
287relocate_code:
Lukas Auer7cf43682018-11-22 11:26:24 +0100288 mv s2, a0 /* save addr_sp */
289 mv s3, a1 /* save addr of gd */
290 mv s4, a2 /* save addr of destination */
Rick Chene76b8042017-12-26 13:55:48 +0800291
292/*
293 *Set up the stack
294 */
295stack_setup:
Bin Mengb161f902020-04-16 08:09:30 -0700296#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100297 /* tp: hart id */
298 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
299 sub sp, s2, t0
300#else
Lukas Auer7cf43682018-11-22 11:26:24 +0100301 mv sp, s2
Lukas Auera3596652019-03-17 19:28:37 +0100302#endif
303
Lukas Auer7cf43682018-11-22 11:26:24 +0100304 la t0, _start
305 sub t6, s4, t0 /* t6 <- relocation offset */
306 beq t0, s4, clear_bss /* skip relocation */
Rick Chene76b8042017-12-26 13:55:48 +0800307
Lukas Auer7cf43682018-11-22 11:26:24 +0100308 mv t1, s4 /* t1 <- scratch for copy_loop */
Bin Meng3ccd29e2023-04-13 14:20:00 +0800309 la t2, __bss_start /* t2 <- source end address */
Rick Chene76b8042017-12-26 13:55:48 +0800310
311copy_loop:
Lukas Auer7cf43682018-11-22 11:26:24 +0100312 LREG t5, 0(t0)
313 addi t0, t0, REGBYTES
314 SREG t5, 0(t1)
315 addi t1, t1, REGBYTES
316 blt t0, t2, copy_loop
Rick Chene76b8042017-12-26 13:55:48 +0800317
318/*
319 * Update dynamic relocations after board_init_f
320 */
321fix_rela_dyn:
Lukas Auer7cf43682018-11-22 11:26:24 +0100322 la t1, __rel_dyn_start
323 la t2, __rel_dyn_end
324 beq t1, t2, clear_bss
325 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
326 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene76b8042017-12-26 13:55:48 +0800327
Rick Chene76b8042017-12-26 13:55:48 +08003286:
Bin Meng63d0fe42023-04-13 14:20:05 +0800329 LREG t5, REGBYTES(t1) /* t5 <-- relocation info:type */
Lukas Auer7cf43682018-11-22 11:26:24 +0100330 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
331 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
Bin Meng63d0fe42023-04-13 14:20:05 +0800332 LREG t3, 0(t1)
333 LREG t5, (REGBYTES * 2)(t1) /* t5 <-- addend */
Lukas Auer7cf43682018-11-22 11:26:24 +0100334 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
335 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
336 SREG t5, 0(t3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200337 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800338
3398:
Lukas Auer7cf43682018-11-22 11:26:24 +0100340 la t4, __dyn_sym_start
341 add t4, t4, t6
Rick Chene76b8042017-12-26 13:55:48 +0800342
3439:
Lukas Auer7cf43682018-11-22 11:26:24 +0100344 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
345 andi t5, t5, 0xFF /* t5 <--- relocation type */
346 li t3, RELOC_TYPE
347 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene76b8042017-12-26 13:55:48 +0800348
Bin Meng63d0fe42023-04-13 14:20:05 +0800349 LREG t3, 0(t1)
Lukas Auer7cf43682018-11-22 11:26:24 +0100350 li t5, SYM_SIZE
351 mul t0, t0, t5
Lukas Auer39a652b2018-11-22 11:26:29 +0100352 add s5, t4, t0
Bin Meng63d0fe42023-04-13 14:20:05 +0800353 LREG t0, (REGBYTES * 2)(t1) /* t0 <-- addend */
Lukas Auer39a652b2018-11-22 11:26:29 +0100354 LREG t5, REGBYTES(s5)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200355 add t5, t5, t0
Lukas Auer7cf43682018-11-22 11:26:24 +0100356 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
357 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
358 SREG t5, 0(t3)
Rick Chene76b8042017-12-26 13:55:48 +080035910:
Bin Meng63d0fe42023-04-13 14:20:05 +0800360 addi t1, t1, (REGBYTES * 3)
361 blt t1, t2, 6b
Rick Chene76b8042017-12-26 13:55:48 +0800362
363/*
364 * trap update
365*/
Lukas Auer7cf43682018-11-22 11:26:24 +0100366 la t0, trap_entry
367 add t0, t0, t6
Anup Patel89b39342018-12-03 10:57:40 +0530368 csrw MODE_PREFIX(tvec), t0
Rick Chene76b8042017-12-26 13:55:48 +0800369
370clear_bss:
Lukas Auer7cf43682018-11-22 11:26:24 +0100371 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
372 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
373 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
374 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auera3596652019-03-17 19:28:37 +0100375 beq t0, t1, relocate_secondary_harts
Rick Chene76b8042017-12-26 13:55:48 +0800376
377clbss_l:
Lukas Auer8598e6b2018-11-22 11:26:28 +0100378 SREG zero, 0(t0) /* clear loop... */
Lukas Auer7cf43682018-11-22 11:26:24 +0100379 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800380 blt t0, t1, clbss_l
Rick Chene76b8042017-12-26 13:55:48 +0800381
Lukas Auera3596652019-03-17 19:28:37 +0100382relocate_secondary_harts:
Bin Mengb161f902020-04-16 08:09:30 -0700383#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100384 /* send relocation IPI */
385 la t0, secondary_hart_relocate
386 add a0, t0, t6
387
388 /* store relocation offset */
389 mv s5, t6
390
391 mv a1, s2
392 mv a2, s3
Lukas Auerc308e012019-12-08 23:28:51 +0100393 mv a3, zero
Lukas Auera3596652019-03-17 19:28:37 +0100394 jal smp_call_function
395
Lukas Auercddde092019-03-17 19:28:40 +0100396 /* hang if relocation of secondary harts has failed */
397 beqz a0, 1f
398 mv a1, a0
399 la a0, secondary_harts_relocation_error
400 jal printf
401 jal hang
402
Lukas Auera3596652019-03-17 19:28:37 +0100403 /* restore relocation offset */
Lukas Auercddde092019-03-17 19:28:40 +01004041: mv t6, s5
Lukas Auera3596652019-03-17 19:28:37 +0100405#endif
406
Rick Chene76b8042017-12-26 13:55:48 +0800407/*
408 * We are done. Do not return, instead branch to second part of board
409 * initialization, now running from RAM.
410 */
411call_board_init_r:
Rick Chen842d5802018-11-07 09:34:06 +0800412 jal invalidate_icache_all
413 jal flush_dcache_all
Sean Anderson750fee52020-01-27 16:39:44 -0500414 la t0, board_init_r /* offset of board_init_r() */
415 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene76b8042017-12-26 13:55:48 +0800416/*
417 * setup parameters for board_init_r
418 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100419 mv a0, s3 /* gd_t */
420 mv a1, s4 /* dest_addr */
Rick Chene76b8042017-12-26 13:55:48 +0800421
422/*
423 * jump to it ...
424 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100425 jr t4 /* jump to board_init_r() */
Bin Meng604a0c52023-04-13 14:20:07 +0800426#endif /* !defined(CONFIG_SPL_BUILD) */
Lukas Auera3596652019-03-17 19:28:37 +0100427
Bin Mengb161f902020-04-16 08:09:30 -0700428#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100429hart_out_of_bounds_loop:
430 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
431 wfi
432 j hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +0100433
Lukas Auera3596652019-03-17 19:28:37 +0100434/* SMP relocation entry */
435secondary_hart_relocate:
436 /* a1: new sp */
437 /* a2: new gd */
438 /* tp: hart id */
439
440 /* setup stack */
441 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
442 sub sp, a1, t0
443
444 /* update global data pointer */
445 mv gp, a2
446#endif
447
Sean Anderson5bdad9f2020-09-21 07:51:41 -0400448/*
449 * Interrupts are disabled globally, but they can still be read from m/sip. The
450 * wfi function will wake us up if we get an IPI, even if we do not trap.
451 */
Lukas Auera3596652019-03-17 19:28:37 +0100452secondary_hart_loop:
453 wfi
454
Bin Mengb161f902020-04-16 08:09:30 -0700455#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100456 csrr t0, MODE_PREFIX(ip)
Lukas Auer61346592019-08-21 21:14:43 +0200457#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +0100458 andi t0, t0, MIE_MSIE
459#else
460 andi t0, t0, SIE_SSIE
461#endif
462 beqz t0, secondary_hart_loop
463
464 mv a0, tp
465 jal handle_ipi
466#endif
467
468 j secondary_hart_loop