blob: 8e58f641f1b7f5436654e9d248d45ea5437257bb [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#ifdef CONFIG_DEBUG_UART
214 jal debug_uart_init
215#endif
216
Lukas Auer7cf43682018-11-22 11:26:24 +0100217 mv a0, zero /* a0 <-- boot_flags = 0 */
218 la t5, board_init_f
Lukas Auer396f0bd2019-08-21 21:14:45 +0200219 jalr t5 /* jump to board_init_f() */
220
221#ifdef CONFIG_SPL_BUILD
222spl_clear_bss:
223 la t0, __bss_start
224 la t1, __bss_end
Lukas Auer2a2a9252019-08-21 21:14:46 +0200225 beq t0, t1, spl_stack_gd_setup
Lukas Auer396f0bd2019-08-21 21:14:45 +0200226
227spl_clear_bss_loop:
228 SREG zero, 0(t0)
229 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800230 blt t0, t1, spl_clear_bss_loop
Lukas Auer396f0bd2019-08-21 21:14:45 +0200231
Lukas Auer2a2a9252019-08-21 21:14:46 +0200232spl_stack_gd_setup:
233 jal spl_relocate_stack_gd
234
235 /* skip setup if we did not relocate */
236 beqz a0, spl_call_board_init_r
237 mv s0, a0
238
239 /* setup stack on main hart */
Bin Mengb161f902020-04-16 08:09:30 -0700240#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200241 /* tp: hart id */
242 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
243 sub sp, s0, t0
244#else
245 mv sp, s0
246#endif
247
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800248#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200249 /* set new stack and global data pointer on secondary harts */
250spl_secondary_hart_stack_gd_setup:
251 la a0, secondary_hart_relocate
252 mv a1, s0
253 mv a2, s0
Lukas Auerc308e012019-12-08 23:28:51 +0100254 mv a3, zero
Lukas Auer2a2a9252019-08-21 21:14:46 +0200255 jal smp_call_function
256
257 /* hang if relocation of secondary harts has failed */
258 beqz a0, 1f
259 mv a1, a0
260 la a0, secondary_harts_relocation_error
261 jal printf
262 jal hang
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800263#endif
Lukas Auer2a2a9252019-08-21 21:14:46 +0200264
265 /* set new global data pointer on main hart */
2661: mv gp, s0
267
Lukas Auer396f0bd2019-08-21 21:14:45 +0200268spl_call_board_init_r:
269 mv a0, zero
270 mv a1, zero
Bin Meng8615b1d2023-04-13 14:20:06 +0800271 j board_init_r
Lukas Auer396f0bd2019-08-21 21:14:45 +0200272#endif
Rick Chene76b8042017-12-26 13:55:48 +0800273
Bin Meng604a0c52023-04-13 14:20:07 +0800274#if !defined(CONFIG_SPL_BUILD)
Rick Chene76b8042017-12-26 13:55:48 +0800275/*
Simon Glass284f71b2019-12-28 10:44:45 -0700276 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene76b8042017-12-26 13:55:48 +0800277 *
278 * This "function" does not return, instead it continues in RAM
279 * after relocating the monitor code.
280 *
281 */
282.globl relocate_code
283relocate_code:
Lukas Auer7cf43682018-11-22 11:26:24 +0100284 mv s2, a0 /* save addr_sp */
285 mv s3, a1 /* save addr of gd */
286 mv s4, a2 /* save addr of destination */
Rick Chene76b8042017-12-26 13:55:48 +0800287
288/*
289 *Set up the stack
290 */
291stack_setup:
Bin Mengb161f902020-04-16 08:09:30 -0700292#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100293 /* tp: hart id */
294 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
295 sub sp, s2, t0
296#else
Lukas Auer7cf43682018-11-22 11:26:24 +0100297 mv sp, s2
Lukas Auera3596652019-03-17 19:28:37 +0100298#endif
299
Lukas Auer7cf43682018-11-22 11:26:24 +0100300 la t0, _start
301 sub t6, s4, t0 /* t6 <- relocation offset */
302 beq t0, s4, clear_bss /* skip relocation */
Rick Chene76b8042017-12-26 13:55:48 +0800303
Lukas Auer7cf43682018-11-22 11:26:24 +0100304 mv t1, s4 /* t1 <- scratch for copy_loop */
Bin Meng3ccd29e2023-04-13 14:20:00 +0800305 la t2, __bss_start /* t2 <- source end address */
Rick Chene76b8042017-12-26 13:55:48 +0800306
307copy_loop:
Lukas Auer7cf43682018-11-22 11:26:24 +0100308 LREG t5, 0(t0)
309 addi t0, t0, REGBYTES
310 SREG t5, 0(t1)
311 addi t1, t1, REGBYTES
312 blt t0, t2, copy_loop
Rick Chene76b8042017-12-26 13:55:48 +0800313
314/*
315 * Update dynamic relocations after board_init_f
316 */
317fix_rela_dyn:
Lukas Auer7cf43682018-11-22 11:26:24 +0100318 la t1, __rel_dyn_start
319 la t2, __rel_dyn_end
320 beq t1, t2, clear_bss
321 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
322 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene76b8042017-12-26 13:55:48 +0800323
Rick Chene76b8042017-12-26 13:55:48 +08003246:
Bin Meng63d0fe42023-04-13 14:20:05 +0800325 LREG t5, REGBYTES(t1) /* t5 <-- relocation info:type */
Lukas Auer7cf43682018-11-22 11:26:24 +0100326 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
327 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
Bin Meng63d0fe42023-04-13 14:20:05 +0800328 LREG t3, 0(t1)
329 LREG t5, (REGBYTES * 2)(t1) /* t5 <-- addend */
Lukas Auer7cf43682018-11-22 11:26:24 +0100330 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
331 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
332 SREG t5, 0(t3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200333 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800334
3358:
Lukas Auer7cf43682018-11-22 11:26:24 +0100336 la t4, __dyn_sym_start
337 add t4, t4, t6
Rick Chene76b8042017-12-26 13:55:48 +0800338
3399:
Lukas Auer7cf43682018-11-22 11:26:24 +0100340 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
341 andi t5, t5, 0xFF /* t5 <--- relocation type */
342 li t3, RELOC_TYPE
343 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene76b8042017-12-26 13:55:48 +0800344
Bin Meng63d0fe42023-04-13 14:20:05 +0800345 LREG t3, 0(t1)
Lukas Auer7cf43682018-11-22 11:26:24 +0100346 li t5, SYM_SIZE
347 mul t0, t0, t5
Lukas Auer39a652b2018-11-22 11:26:29 +0100348 add s5, t4, t0
Bin Meng63d0fe42023-04-13 14:20:05 +0800349 LREG t0, (REGBYTES * 2)(t1) /* t0 <-- addend */
Lukas Auer39a652b2018-11-22 11:26:29 +0100350 LREG t5, REGBYTES(s5)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200351 add t5, t5, t0
Lukas Auer7cf43682018-11-22 11:26:24 +0100352 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
353 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
354 SREG t5, 0(t3)
Rick Chene76b8042017-12-26 13:55:48 +080035510:
Bin Meng63d0fe42023-04-13 14:20:05 +0800356 addi t1, t1, (REGBYTES * 3)
357 blt t1, t2, 6b
Rick Chene76b8042017-12-26 13:55:48 +0800358
359/*
360 * trap update
361*/
Lukas Auer7cf43682018-11-22 11:26:24 +0100362 la t0, trap_entry
363 add t0, t0, t6
Anup Patel89b39342018-12-03 10:57:40 +0530364 csrw MODE_PREFIX(tvec), t0
Rick Chene76b8042017-12-26 13:55:48 +0800365
366clear_bss:
Lukas Auer7cf43682018-11-22 11:26:24 +0100367 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
368 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
369 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
370 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auera3596652019-03-17 19:28:37 +0100371 beq t0, t1, relocate_secondary_harts
Rick Chene76b8042017-12-26 13:55:48 +0800372
373clbss_l:
Lukas Auer8598e6b2018-11-22 11:26:28 +0100374 SREG zero, 0(t0) /* clear loop... */
Lukas Auer7cf43682018-11-22 11:26:24 +0100375 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800376 blt t0, t1, clbss_l
Rick Chene76b8042017-12-26 13:55:48 +0800377
Lukas Auera3596652019-03-17 19:28:37 +0100378relocate_secondary_harts:
Bin Mengb161f902020-04-16 08:09:30 -0700379#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100380 /* send relocation IPI */
381 la t0, secondary_hart_relocate
382 add a0, t0, t6
383
384 /* store relocation offset */
385 mv s5, t6
386
387 mv a1, s2
388 mv a2, s3
Lukas Auerc308e012019-12-08 23:28:51 +0100389 mv a3, zero
Lukas Auera3596652019-03-17 19:28:37 +0100390 jal smp_call_function
391
Lukas Auercddde092019-03-17 19:28:40 +0100392 /* hang if relocation of secondary harts has failed */
393 beqz a0, 1f
394 mv a1, a0
395 la a0, secondary_harts_relocation_error
396 jal printf
397 jal hang
398
Lukas Auera3596652019-03-17 19:28:37 +0100399 /* restore relocation offset */
Lukas Auercddde092019-03-17 19:28:40 +01004001: mv t6, s5
Lukas Auera3596652019-03-17 19:28:37 +0100401#endif
402
Rick Chene76b8042017-12-26 13:55:48 +0800403/*
404 * We are done. Do not return, instead branch to second part of board
405 * initialization, now running from RAM.
406 */
407call_board_init_r:
Rick Chen842d5802018-11-07 09:34:06 +0800408 jal invalidate_icache_all
409 jal flush_dcache_all
Sean Anderson750fee52020-01-27 16:39:44 -0500410 la t0, board_init_r /* offset of board_init_r() */
411 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene76b8042017-12-26 13:55:48 +0800412/*
413 * setup parameters for board_init_r
414 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100415 mv a0, s3 /* gd_t */
416 mv a1, s4 /* dest_addr */
Ben Dooks8a813c12023-09-05 13:12:53 +0100417 mv s0, zero /* fp == NULL */
Rick Chene76b8042017-12-26 13:55:48 +0800418
419/*
420 * jump to it ...
421 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100422 jr t4 /* jump to board_init_r() */
Bin Meng604a0c52023-04-13 14:20:07 +0800423#endif /* !defined(CONFIG_SPL_BUILD) */
Lukas Auera3596652019-03-17 19:28:37 +0100424
Bin Mengb161f902020-04-16 08:09:30 -0700425#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100426hart_out_of_bounds_loop:
427 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
428 wfi
429 j hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +0100430
Lukas Auera3596652019-03-17 19:28:37 +0100431/* SMP relocation entry */
432secondary_hart_relocate:
433 /* a1: new sp */
434 /* a2: new gd */
435 /* tp: hart id */
436
437 /* setup stack */
438 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
439 sub sp, a1, t0
440
441 /* update global data pointer */
442 mv gp, a2
443#endif
444
Sean Anderson5bdad9f2020-09-21 07:51:41 -0400445/*
446 * Interrupts are disabled globally, but they can still be read from m/sip. The
447 * wfi function will wake us up if we get an IPI, even if we do not trap.
448 */
Lukas Auera3596652019-03-17 19:28:37 +0100449secondary_hart_loop:
450 wfi
451
Bin Mengb161f902020-04-16 08:09:30 -0700452#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100453 csrr t0, MODE_PREFIX(ip)
Lukas Auer61346592019-08-21 21:14:43 +0200454#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +0100455 andi t0, t0, MIE_MSIE
456#else
457 andi t0, t0, SIE_SSIE
458#endif
459 beqz t0, secondary_hart_loop
460
461 mv a0, tp
462 jal handle_ipi
463#endif
464
465 j secondary_hart_loop