blob: 4687bca3c996618a3ac40a027af8b22a186519af [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>
Tom Rini4ddbade2022-05-25 12:16:03 -040016#include <system-constants.h>
Rick Chene76b8042017-12-26 13:55:48 +080017#include <asm/encoding.h>
Bin Meng89681a72018-12-12 06:12:45 -080018#include <generated/asm-offsets.h>
Rick Chene76b8042017-12-26 13:55:48 +080019
20#ifdef CONFIG_32BIT
Lukas Auer7cf43682018-11-22 11:26:24 +010021#define LREG lw
22#define SREG sw
23#define REGBYTES 4
Rick Chene76b8042017-12-26 13:55:48 +080024#define RELOC_TYPE R_RISCV_32
25#define SYM_INDEX 0x8
26#define SYM_SIZE 0x10
27#else
Lukas Auer7cf43682018-11-22 11:26:24 +010028#define LREG ld
29#define SREG sd
30#define REGBYTES 8
Rick Chene76b8042017-12-26 13:55:48 +080031#define RELOC_TYPE R_RISCV_64
32#define SYM_INDEX 0x20
33#define SYM_SIZE 0x18
34#endif
35
Lukas Auercddde092019-03-17 19:28:40 +010036.section .data
37secondary_harts_relocation_error:
38 .ascii "Relocation of secondary harts has failed, error %d\n"
39
Lukas Auer7cf43682018-11-22 11:26:24 +010040.section .text
Rick Chene76b8042017-12-26 13:55:48 +080041.globl _start
42_start:
Lukas Auer61346592019-08-21 21:14:43 +020043#if CONFIG_IS_ENABLED(RISCV_MMODE)
Bin Mengf9426362019-07-10 23:43:13 -070044 csrr a0, CSR_MHARTID
Lukas Auer9ebf2942019-03-17 19:28:39 +010045#endif
46
Sean Anderson5bdad9f2020-09-21 07:51:41 -040047 /*
48 * Save hart id and dtb pointer. The thread pointer register is not
49 * modified by C code. It is used by secondary_hart_loop.
50 */
Lukas Auer8de4b3e2019-03-17 19:28:36 +010051 mv tp, a0
Lukas Auer39a652b2018-11-22 11:26:29 +010052 mv s1, a1
53
Sean Anderson2c4c7d12020-09-21 07:51:40 -040054 /*
55 * Set the global data pointer to a known value in case we get a very
56 * early trap. The global data pointer will be set its actual value only
57 * after it has been initialized.
58 */
59 mv gp, zero
60
Sean Anderson5bdad9f2020-09-21 07:51:41 -040061 /*
62 * Set the trap handler. This must happen after initializing gp because
63 * the handler may use it.
64 */
Lukas Auer7cf43682018-11-22 11:26:24 +010065 la t0, trap_entry
Anup Patel89b39342018-12-03 10:57:40 +053066 csrw MODE_PREFIX(tvec), t0
Lukas Auer8598e6b2018-11-22 11:26:28 +010067
Sean Anderson5bdad9f2020-09-21 07:51:41 -040068 /*
69 * Mask all interrupts. Interrupts are disabled globally (in m/sstatus)
70 * for U-Boot, but we will need to read m/sip to determine if we get an
71 * IPI
72 */
Anup Patel89b39342018-12-03 10:57:40 +053073 csrw MODE_PREFIX(ie), zero
Rick Chene76b8042017-12-26 13:55:48 +080074
Bin Mengb161f902020-04-16 08:09:30 -070075#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +010076 /* check if hart is within range */
77 /* tp: hart id */
78 li t0, CONFIG_NR_CPUS
79 bge tp, t0, hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +010080
Lukas Auera3596652019-03-17 19:28:37 +010081 /* set xSIE bit to receive IPIs */
Lukas Auer61346592019-08-21 21:14:43 +020082#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +010083 li t0, MIE_MSIE
84#else
85 li t0, SIE_SSIE
86#endif
87 csrs MODE_PREFIX(ie), t0
88#endif
89
Rick Chene76b8042017-12-26 13:55:48 +080090/*
Rick Chene76b8042017-12-26 13:55:48 +080091 * Set stackpointer in internal/ex RAM to call board_init_f
92 */
93call_board_init_f:
Lukas Auer7cf43682018-11-22 11:26:24 +010094 li t0, -16
Lukas Auer396f0bd2019-08-21 21:14:45 +020095#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
96 li t1, CONFIG_SPL_STACK
97#else
Tom Rini4ddbade2022-05-25 12:16:03 -040098 li t1, SYS_INIT_SP_ADDR
Lukas Auer396f0bd2019-08-21 21:14:45 +020099#endif
Lukas Auer7cf43682018-11-22 11:26:24 +0100100 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene76b8042017-12-26 13:55:48 +0800101
Rick Chene76b8042017-12-26 13:55:48 +0800102call_board_init_f_0:
103 mv a0, sp
104 jal board_init_f_alloc_reserve
Lukas Auera3596652019-03-17 19:28:37 +0100105
106 /*
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400107 * Save global data pointer for later. We don't set it here because it
108 * is not initialized yet.
Lukas Auera3596652019-03-17 19:28:37 +0100109 */
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400110 mv s0, a0
Lukas Auera3596652019-03-17 19:28:37 +0100111
112 /* setup stack */
Bin Mengb161f902020-04-16 08:09:30 -0700113#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100114 /* tp: hart id */
115 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
116 sub sp, a0, t0
117#else
Rick Chene76b8042017-12-26 13:55:48 +0800118 mv sp, a0
Lukas Auera3596652019-03-17 19:28:37 +0100119#endif
120
Green Wan26120802021-05-02 23:23:04 -0700121 /* Configure proprietary settings and customized CSRs of harts */
122call_harts_early_init:
123 jal harts_early_init
124
Nikita Shubin7e5e0292022-09-02 11:47:39 +0300125#if !CONFIG_IS_ENABLED(XIP)
Lukas Auera3596652019-03-17 19:28:37 +0100126 /*
127 * Pick hart to initialize global data and run U-Boot. The other harts
128 * wait for initialization to complete.
129 */
130 la t0, hart_lottery
Brad Kim4b96c882020-11-13 20:47:51 +0900131 li t1, 1
Lukas Auera3596652019-03-17 19:28:37 +0100132 amoswap.w s2, t1, 0(t0)
133 bnez s2, wait_for_gd_init
Rick Chene5e6c362019-04-30 13:49:33 +0800134#else
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400135 /*
136 * FIXME: gp is set before it is initialized. If an XIP U-Boot ever
137 * encounters a pending IPI on boot it is liable to jump to whatever
138 * memory happens to be in ipi_data.addr on boot. It may also run into
139 * problems if it encounters an exception too early (because printf/puts
140 * accesses gd).
141 */
142 mv gp, s0
Leo Yu-Chi Liang4150eec2022-06-01 10:01:49 +0800143#if CONFIG_IS_ENABLED(RISCV_MMODE)
Rick Chene5e6c362019-04-30 13:49:33 +0800144 bnez tp, secondary_hart_loop
145#endif
Leo Yu-Chi Liang4150eec2022-06-01 10:01:49 +0800146#endif
147
Nikita Shubin66ae7fe2022-05-20 14:41:17 +0300148 mv a0, s0
Rick Chene76b8042017-12-26 13:55:48 +0800149 jal board_init_f_init_reserve
150
Atish Patra111b8042020-04-21 11:15:01 -0700151 SREG s1, GD_FIRMWARE_FDT_ADDR(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800152 /* save the boot hart id to global_data */
Lukas Auer8de4b3e2019-03-17 19:28:36 +0100153 SREG tp, GD_BOOT_HART(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800154
Nikita Shubin7e5e0292022-09-02 11:47:39 +0300155#if !CONFIG_IS_ENABLED(XIP)
Rick Chen9c4d5c12022-09-21 14:34:54 +0800156#ifdef CONFIG_AVAILABLE_HARTS
Lukas Auera3596652019-03-17 19:28:37 +0100157 la t0, available_harts_lock
Sean Anderson934b24a2020-09-21 07:51:39 -0400158 amoswap.w.rl zero, zero, 0(t0)
Rick Chen9c4d5c12022-09-21 14:34:54 +0800159#endif
Lukas Auera3596652019-03-17 19:28:37 +0100160
161wait_for_gd_init:
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400162 /*
163 * Set the global data pointer only when gd_t has been initialized.
164 * This was already set by arch_setup_gd on the boot hart, but all other
165 * harts' global data pointers gets set here.
166 */
167 mv gp, s0
Rick Chen9c4d5c12022-09-21 14:34:54 +0800168#ifdef CONFIG_AVAILABLE_HARTS
169 la t0, available_harts_lock
170 li t1, 1
1711: amoswap.w.aq t1, t1, 0(t0)
172 bnez t1, 1b
Sean Anderson2c4c7d12020-09-21 07:51:40 -0400173
Lukas Auera3596652019-03-17 19:28:37 +0100174 /* register available harts in the available_harts mask */
175 li t1, 1
176 sll t1, t1, tp
177 LREG t2, GD_AVAILABLE_HARTS(gp)
178 or t2, t2, t1
179 SREG t2, GD_AVAILABLE_HARTS(gp)
180
Sean Anderson934b24a2020-09-21 07:51:39 -0400181 amoswap.w.rl zero, zero, 0(t0)
Rick Chen9c4d5c12022-09-21 14:34:54 +0800182#endif
Lukas Auera3596652019-03-17 19:28:37 +0100183
184 /*
185 * Continue on hart lottery winner, others branch to
186 * secondary_hart_loop.
187 */
188 bnez s2, secondary_hart_loop
Rick Chene5e6c362019-04-30 13:49:33 +0800189#endif
Lukas Auera3596652019-03-17 19:28:37 +0100190
Lukas Auer01558e22019-03-17 19:28:35 +0100191 /* Enable cache */
192 jal icache_enable
193 jal dcache_enable
194
195#ifdef CONFIG_DEBUG_UART
196 jal debug_uart_init
197#endif
198
Lukas Auer7cf43682018-11-22 11:26:24 +0100199 mv a0, zero /* a0 <-- boot_flags = 0 */
200 la t5, board_init_f
Lukas Auer396f0bd2019-08-21 21:14:45 +0200201 jalr t5 /* jump to board_init_f() */
202
203#ifdef CONFIG_SPL_BUILD
204spl_clear_bss:
205 la t0, __bss_start
206 la t1, __bss_end
Lukas Auer2a2a9252019-08-21 21:14:46 +0200207 beq t0, t1, spl_stack_gd_setup
Lukas Auer396f0bd2019-08-21 21:14:45 +0200208
209spl_clear_bss_loop:
210 SREG zero, 0(t0)
211 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800212 blt t0, t1, spl_clear_bss_loop
Lukas Auer396f0bd2019-08-21 21:14:45 +0200213
Lukas Auer2a2a9252019-08-21 21:14:46 +0200214spl_stack_gd_setup:
215 jal spl_relocate_stack_gd
216
217 /* skip setup if we did not relocate */
218 beqz a0, spl_call_board_init_r
219 mv s0, a0
220
221 /* setup stack on main hart */
Bin Mengb161f902020-04-16 08:09:30 -0700222#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200223 /* tp: hart id */
224 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
225 sub sp, s0, t0
226#else
227 mv sp, s0
228#endif
229
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800230#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200231 /* set new stack and global data pointer on secondary harts */
232spl_secondary_hart_stack_gd_setup:
233 la a0, secondary_hart_relocate
234 mv a1, s0
235 mv a2, s0
Lukas Auerc308e012019-12-08 23:28:51 +0100236 mv a3, zero
Lukas Auer2a2a9252019-08-21 21:14:46 +0200237 jal smp_call_function
238
239 /* hang if relocation of secondary harts has failed */
240 beqz a0, 1f
241 mv a1, a0
242 la a0, secondary_harts_relocation_error
243 jal printf
244 jal hang
Leo Yu-Chi Liang4e3ba2a2020-06-29 16:27:28 +0800245#endif
Lukas Auer2a2a9252019-08-21 21:14:46 +0200246
247 /* set new global data pointer on main hart */
2481: mv gp, s0
249
Lukas Auer396f0bd2019-08-21 21:14:45 +0200250spl_call_board_init_r:
251 mv a0, zero
252 mv a1, zero
253 jal board_init_r
254#endif
Rick Chene76b8042017-12-26 13:55:48 +0800255
256/*
Simon Glass284f71b2019-12-28 10:44:45 -0700257 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene76b8042017-12-26 13:55:48 +0800258 *
259 * This "function" does not return, instead it continues in RAM
260 * after relocating the monitor code.
261 *
262 */
263.globl relocate_code
264relocate_code:
Lukas Auer7cf43682018-11-22 11:26:24 +0100265 mv s2, a0 /* save addr_sp */
266 mv s3, a1 /* save addr of gd */
267 mv s4, a2 /* save addr of destination */
Rick Chene76b8042017-12-26 13:55:48 +0800268
269/*
270 *Set up the stack
271 */
272stack_setup:
Bin Mengb161f902020-04-16 08:09:30 -0700273#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100274 /* tp: hart id */
275 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
276 sub sp, s2, t0
277#else
Lukas Auer7cf43682018-11-22 11:26:24 +0100278 mv sp, s2
Lukas Auera3596652019-03-17 19:28:37 +0100279#endif
280
Lukas Auer7cf43682018-11-22 11:26:24 +0100281 la t0, _start
282 sub t6, s4, t0 /* t6 <- relocation offset */
283 beq t0, s4, clear_bss /* skip relocation */
Rick Chene76b8042017-12-26 13:55:48 +0800284
Lukas Auer7cf43682018-11-22 11:26:24 +0100285 mv t1, s4 /* t1 <- scratch for copy_loop */
286 la t3, __bss_start
287 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
288 add t2, t0, t3 /* t2 <- source end address */
Rick Chene76b8042017-12-26 13:55:48 +0800289
290copy_loop:
Lukas Auer7cf43682018-11-22 11:26:24 +0100291 LREG t5, 0(t0)
292 addi t0, t0, REGBYTES
293 SREG t5, 0(t1)
294 addi t1, t1, REGBYTES
295 blt t0, t2, copy_loop
Rick Chene76b8042017-12-26 13:55:48 +0800296
297/*
298 * Update dynamic relocations after board_init_f
299 */
300fix_rela_dyn:
Lukas Auer7cf43682018-11-22 11:26:24 +0100301 la t1, __rel_dyn_start
302 la t2, __rel_dyn_end
303 beq t1, t2, clear_bss
304 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
305 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene76b8042017-12-26 13:55:48 +0800306
307/*
308 * skip first reserved entry: address, type, addend
309 */
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200310 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800311
3126:
Lukas Auer7cf43682018-11-22 11:26:24 +0100313 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
314 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
315 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
316 LREG t3, -(REGBYTES*3)(t1)
317 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
318 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
319 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
320 SREG t5, 0(t3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200321 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800322
3238:
Lukas Auer7cf43682018-11-22 11:26:24 +0100324 la t4, __dyn_sym_start
325 add t4, t4, t6
Rick Chene76b8042017-12-26 13:55:48 +0800326
3279:
Lukas Auer7cf43682018-11-22 11:26:24 +0100328 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
329 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
330 andi t5, t5, 0xFF /* t5 <--- relocation type */
331 li t3, RELOC_TYPE
332 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene76b8042017-12-26 13:55:48 +0800333
Lukas Auer7cf43682018-11-22 11:26:24 +0100334 LREG t3, -(REGBYTES*3)(t1)
335 li t5, SYM_SIZE
336 mul t0, t0, t5
Lukas Auer39a652b2018-11-22 11:26:29 +0100337 add s5, t4, t0
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200338 LREG t0, -(REGBYTES)(t1) /* t0 <-- addend */
Lukas Auer39a652b2018-11-22 11:26:29 +0100339 LREG t5, REGBYTES(s5)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200340 add t5, t5, t0
Lukas Auer7cf43682018-11-22 11:26:24 +0100341 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
342 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
343 SREG t5, 0(t3)
Rick Chene76b8042017-12-26 13:55:48 +080034410:
Lukas Auer7cf43682018-11-22 11:26:24 +0100345 addi t1, t1, (REGBYTES*3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200346 ble t1, t2, 6b
Rick Chene76b8042017-12-26 13:55:48 +0800347
348/*
349 * trap update
350*/
Lukas Auer7cf43682018-11-22 11:26:24 +0100351 la t0, trap_entry
352 add t0, t0, t6
Anup Patel89b39342018-12-03 10:57:40 +0530353 csrw MODE_PREFIX(tvec), t0
Rick Chene76b8042017-12-26 13:55:48 +0800354
355clear_bss:
Lukas Auer7cf43682018-11-22 11:26:24 +0100356 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
357 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
358 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
359 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auera3596652019-03-17 19:28:37 +0100360 beq t0, t1, relocate_secondary_harts
Rick Chene76b8042017-12-26 13:55:48 +0800361
362clbss_l:
Lukas Auer8598e6b2018-11-22 11:26:28 +0100363 SREG zero, 0(t0) /* clear loop... */
Lukas Auer7cf43682018-11-22 11:26:24 +0100364 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800365 blt t0, t1, clbss_l
Rick Chene76b8042017-12-26 13:55:48 +0800366
Lukas Auera3596652019-03-17 19:28:37 +0100367relocate_secondary_harts:
Bin Mengb161f902020-04-16 08:09:30 -0700368#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100369 /* send relocation IPI */
370 la t0, secondary_hart_relocate
371 add a0, t0, t6
372
373 /* store relocation offset */
374 mv s5, t6
375
376 mv a1, s2
377 mv a2, s3
Lukas Auerc308e012019-12-08 23:28:51 +0100378 mv a3, zero
Lukas Auera3596652019-03-17 19:28:37 +0100379 jal smp_call_function
380
Lukas Auercddde092019-03-17 19:28:40 +0100381 /* hang if relocation of secondary harts has failed */
382 beqz a0, 1f
383 mv a1, a0
384 la a0, secondary_harts_relocation_error
385 jal printf
386 jal hang
387
Lukas Auera3596652019-03-17 19:28:37 +0100388 /* restore relocation offset */
Lukas Auercddde092019-03-17 19:28:40 +01003891: mv t6, s5
Lukas Auera3596652019-03-17 19:28:37 +0100390#endif
391
Rick Chene76b8042017-12-26 13:55:48 +0800392/*
393 * We are done. Do not return, instead branch to second part of board
394 * initialization, now running from RAM.
395 */
396call_board_init_r:
Rick Chen842d5802018-11-07 09:34:06 +0800397 jal invalidate_icache_all
398 jal flush_dcache_all
Sean Anderson750fee52020-01-27 16:39:44 -0500399 la t0, board_init_r /* offset of board_init_r() */
400 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene76b8042017-12-26 13:55:48 +0800401/*
402 * setup parameters for board_init_r
403 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100404 mv a0, s3 /* gd_t */
405 mv a1, s4 /* dest_addr */
Rick Chene76b8042017-12-26 13:55:48 +0800406
407/*
408 * jump to it ...
409 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100410 jr t4 /* jump to board_init_r() */
Lukas Auera3596652019-03-17 19:28:37 +0100411
Bin Mengb161f902020-04-16 08:09:30 -0700412#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100413hart_out_of_bounds_loop:
414 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
415 wfi
416 j hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +0100417
Lukas Auera3596652019-03-17 19:28:37 +0100418/* SMP relocation entry */
419secondary_hart_relocate:
420 /* a1: new sp */
421 /* a2: new gd */
422 /* tp: hart id */
423
424 /* setup stack */
425 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
426 sub sp, a1, t0
427
428 /* update global data pointer */
429 mv gp, a2
430#endif
431
Sean Anderson5bdad9f2020-09-21 07:51:41 -0400432/*
433 * Interrupts are disabled globally, but they can still be read from m/sip. The
434 * wfi function will wake us up if we get an IPI, even if we do not trap.
435 */
Lukas Auera3596652019-03-17 19:28:37 +0100436secondary_hart_loop:
437 wfi
438
Bin Mengb161f902020-04-16 08:09:30 -0700439#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100440 csrr t0, MODE_PREFIX(ip)
Lukas Auer61346592019-08-21 21:14:43 +0200441#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +0100442 andi t0, t0, MIE_MSIE
443#else
444 andi t0, t0, SIE_SSIE
445#endif
446 beqz t0, secondary_hart_loop
447
448 mv a0, tp
449 jal handle_ipi
450#endif
451
452 j secondary_hart_loop