blob: b7f21ab63e00cbd117def75ca5a122a2e67fccd2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rick Chene8e39592017-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 Chene8e39592017-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 Rinieaf6ea62022-05-25 12:16:03 -040016#include <system-constants.h>
Rick Chene8e39592017-12-26 13:55:48 +080017#include <asm/encoding.h>
Bin Meng51ab4572018-12-12 06:12:45 -080018#include <generated/asm-offsets.h>
Rick Chene8e39592017-12-26 13:55:48 +080019
20#ifdef CONFIG_32BIT
Lukas Auerc55309c2018-11-22 11:26:24 +010021#define LREG lw
22#define SREG sw
23#define REGBYTES 4
Rick Chene8e39592017-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 Auerc55309c2018-11-22 11:26:24 +010028#define LREG ld
29#define SREG sd
30#define REGBYTES 8
Rick Chene8e39592017-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 Auer8ac39e22019-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 Auerc55309c2018-11-22 11:26:24 +010040.section .text
Rick Chene8e39592017-12-26 13:55:48 +080041.globl _start
42_start:
Lukas Auerfbfd92b2019-08-21 21:14:43 +020043#if CONFIG_IS_ENABLED(RISCV_MMODE)
Bin Meng4d2583d2019-07-10 23:43:13 -070044 csrr a0, CSR_MHARTID
Lukas Auere0432402019-03-17 19:28:39 +010045#endif
46
Sean Anderson924de322020-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 Auer1446b262019-03-17 19:28:36 +010051 mv tp, a0
Lukas Auer5d8b2e72018-11-22 11:26:29 +010052 mv s1, a1
53
Sean Anderson85768132020-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 Anderson924de322020-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 Auerc55309c2018-11-22 11:26:24 +010065 la t0, trap_entry
Anup Pateld2db2a82018-12-03 10:57:40 +053066 csrw MODE_PREFIX(tvec), t0
Lukas Auer31f90582018-11-22 11:26:28 +010067
Sean Anderson924de322020-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 Pateld2db2a82018-12-03 10:57:40 +053073 csrw MODE_PREFIX(ie), zero
Rick Chene8e39592017-12-26 13:55:48 +080074
Bin Meng191636e2020-04-16 08:09:30 -070075#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-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 Auer3dea63c2019-03-17 19:28:37 +010080
Lukas Auer3dea63c2019-03-17 19:28:37 +010081 /* set xSIE bit to receive IPIs */
Lukas Auerfbfd92b2019-08-21 21:14:43 +020082#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auer3dea63c2019-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 Chene8e39592017-12-26 13:55:48 +080090/*
Rick Chene8e39592017-12-26 13:55:48 +080091 * Set stackpointer in internal/ex RAM to call board_init_f
92 */
93call_board_init_f:
Lukas Auerc55309c2018-11-22 11:26:24 +010094 li t0, -16
Lukas Auer8c59f202019-08-21 21:14:45 +020095#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
96 li t1, CONFIG_SPL_STACK
97#else
Tom Rinieaf6ea62022-05-25 12:16:03 -040098 li t1, SYS_INIT_SP_ADDR
Lukas Auer8c59f202019-08-21 21:14:45 +020099#endif
Lukas Auerc55309c2018-11-22 11:26:24 +0100100 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene8e39592017-12-26 13:55:48 +0800101
Rick Chene8e39592017-12-26 13:55:48 +0800102call_board_init_f_0:
103 mv a0, sp
104 jal board_init_f_alloc_reserve
Lukas Auer3dea63c2019-03-17 19:28:37 +0100105
106 /*
Sean Anderson85768132020-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 Auer3dea63c2019-03-17 19:28:37 +0100109 */
Sean Anderson85768132020-09-21 07:51:40 -0400110 mv s0, a0
Lukas Auer3dea63c2019-03-17 19:28:37 +0100111
112 /* setup stack */
Bin Meng191636e2020-04-16 08:09:30 -0700113#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-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 Chene8e39592017-12-26 13:55:48 +0800118 mv sp, a0
Lukas Auer3dea63c2019-03-17 19:28:37 +0100119#endif
120
Green Wanedd9ad82021-05-02 23:23:04 -0700121 /* Configure proprietary settings and customized CSRs of harts */
122call_harts_early_init:
123 jal harts_early_init
124
Rick Chenbdce3892019-04-30 13:49:33 +0800125#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-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 Kimfb33eaa2020-11-13 20:47:51 +0900131 li t1, 1
Lukas Auer3dea63c2019-03-17 19:28:37 +0100132 amoswap.w s2, t1, 0(t0)
133 bnez s2, wait_for_gd_init
Rick Chenbdce3892019-04-30 13:49:33 +0800134#else
Sean Anderson85768132020-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 Liangf4512612022-06-01 10:01:49 +0800143#if CONFIG_IS_ENABLED(RISCV_MMODE)
Rick Chenbdce3892019-04-30 13:49:33 +0800144 bnez tp, secondary_hart_loop
145#endif
Leo Yu-Chi Liangf4512612022-06-01 10:01:49 +0800146#endif
147
Nikita Shubina5041e32022-05-20 14:41:17 +0300148 mv a0, s0
Rick Chene8e39592017-12-26 13:55:48 +0800149 jal board_init_f_init_reserve
150
Atish Patrad4ea6492020-04-21 11:15:01 -0700151 SREG s1, GD_FIRMWARE_FDT_ADDR(gp)
Bin Meng51ab4572018-12-12 06:12:45 -0800152 /* save the boot hart id to global_data */
Lukas Auer1446b262019-03-17 19:28:36 +0100153 SREG tp, GD_BOOT_HART(gp)
Bin Meng51ab4572018-12-12 06:12:45 -0800154
Rick Chenbdce3892019-04-30 13:49:33 +0800155#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100156 la t0, available_harts_lock
Sean Anderson309995b2020-09-21 07:51:39 -0400157 amoswap.w.rl zero, zero, 0(t0)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100158
159wait_for_gd_init:
160 la t0, available_harts_lock
161 li t1, 1
Sean Anderson309995b2020-09-21 07:51:39 -04001621: amoswap.w.aq t1, t1, 0(t0)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100163 bnez t1, 1b
164
Sean Anderson85768132020-09-21 07:51:40 -0400165 /*
166 * Set the global data pointer only when gd_t has been initialized.
167 * This was already set by arch_setup_gd on the boot hart, but all other
168 * harts' global data pointers gets set here.
169 */
170 mv gp, s0
171
Lukas Auer3dea63c2019-03-17 19:28:37 +0100172 /* register available harts in the available_harts mask */
173 li t1, 1
174 sll t1, t1, tp
175 LREG t2, GD_AVAILABLE_HARTS(gp)
176 or t2, t2, t1
177 SREG t2, GD_AVAILABLE_HARTS(gp)
178
Sean Anderson309995b2020-09-21 07:51:39 -0400179 amoswap.w.rl zero, zero, 0(t0)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100180
181 /*
182 * Continue on hart lottery winner, others branch to
183 * secondary_hart_loop.
184 */
185 bnez s2, secondary_hart_loop
Rick Chenbdce3892019-04-30 13:49:33 +0800186#endif
Lukas Auer3dea63c2019-03-17 19:28:37 +0100187
Lukas Auer2503ccc2019-03-17 19:28:35 +0100188 /* Enable cache */
189 jal icache_enable
190 jal dcache_enable
191
192#ifdef CONFIG_DEBUG_UART
193 jal debug_uart_init
194#endif
195
Lukas Auerc55309c2018-11-22 11:26:24 +0100196 mv a0, zero /* a0 <-- boot_flags = 0 */
197 la t5, board_init_f
Lukas Auer8c59f202019-08-21 21:14:45 +0200198 jalr t5 /* jump to board_init_f() */
199
200#ifdef CONFIG_SPL_BUILD
201spl_clear_bss:
202 la t0, __bss_start
203 la t1, __bss_end
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200204 beq t0, t1, spl_stack_gd_setup
Lukas Auer8c59f202019-08-21 21:14:45 +0200205
206spl_clear_bss_loop:
207 SREG zero, 0(t0)
208 addi t0, t0, REGBYTES
Rick Chen444c4642019-11-14 13:52:27 +0800209 blt t0, t1, spl_clear_bss_loop
Lukas Auer8c59f202019-08-21 21:14:45 +0200210
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200211spl_stack_gd_setup:
212 jal spl_relocate_stack_gd
213
214 /* skip setup if we did not relocate */
215 beqz a0, spl_call_board_init_r
216 mv s0, a0
217
218 /* setup stack on main hart */
Bin Meng191636e2020-04-16 08:09:30 -0700219#if CONFIG_IS_ENABLED(SMP)
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200220 /* tp: hart id */
221 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
222 sub sp, s0, t0
223#else
224 mv sp, s0
225#endif
226
Leo Yu-Chi Liange491e152020-06-29 16:27:28 +0800227#if CONFIG_IS_ENABLED(SMP)
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200228 /* set new stack and global data pointer on secondary harts */
229spl_secondary_hart_stack_gd_setup:
230 la a0, secondary_hart_relocate
231 mv a1, s0
232 mv a2, s0
Lukas Auer90ae2812019-12-08 23:28:51 +0100233 mv a3, zero
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200234 jal smp_call_function
235
236 /* hang if relocation of secondary harts has failed */
237 beqz a0, 1f
238 mv a1, a0
239 la a0, secondary_harts_relocation_error
240 jal printf
241 jal hang
Leo Yu-Chi Liange491e152020-06-29 16:27:28 +0800242#endif
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200243
244 /* set new global data pointer on main hart */
2451: mv gp, s0
246
Lukas Auer8c59f202019-08-21 21:14:45 +0200247spl_call_board_init_r:
248 mv a0, zero
249 mv a1, zero
250 jal board_init_r
251#endif
Rick Chene8e39592017-12-26 13:55:48 +0800252
253/*
Simon Glass94133872019-12-28 10:44:45 -0700254 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene8e39592017-12-26 13:55:48 +0800255 *
256 * This "function" does not return, instead it continues in RAM
257 * after relocating the monitor code.
258 *
259 */
260.globl relocate_code
261relocate_code:
Lukas Auerc55309c2018-11-22 11:26:24 +0100262 mv s2, a0 /* save addr_sp */
263 mv s3, a1 /* save addr of gd */
264 mv s4, a2 /* save addr of destination */
Rick Chene8e39592017-12-26 13:55:48 +0800265
266/*
267 *Set up the stack
268 */
269stack_setup:
Bin Meng191636e2020-04-16 08:09:30 -0700270#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100271 /* tp: hart id */
272 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
273 sub sp, s2, t0
274#else
Lukas Auerc55309c2018-11-22 11:26:24 +0100275 mv sp, s2
Lukas Auer3dea63c2019-03-17 19:28:37 +0100276#endif
277
Lukas Auerc55309c2018-11-22 11:26:24 +0100278 la t0, _start
279 sub t6, s4, t0 /* t6 <- relocation offset */
280 beq t0, s4, clear_bss /* skip relocation */
Rick Chene8e39592017-12-26 13:55:48 +0800281
Lukas Auerc55309c2018-11-22 11:26:24 +0100282 mv t1, s4 /* t1 <- scratch for copy_loop */
283 la t3, __bss_start
284 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
285 add t2, t0, t3 /* t2 <- source end address */
Rick Chene8e39592017-12-26 13:55:48 +0800286
287copy_loop:
Lukas Auerc55309c2018-11-22 11:26:24 +0100288 LREG t5, 0(t0)
289 addi t0, t0, REGBYTES
290 SREG t5, 0(t1)
291 addi t1, t1, REGBYTES
292 blt t0, t2, copy_loop
Rick Chene8e39592017-12-26 13:55:48 +0800293
294/*
295 * Update dynamic relocations after board_init_f
296 */
297fix_rela_dyn:
Lukas Auerc55309c2018-11-22 11:26:24 +0100298 la t1, __rel_dyn_start
299 la t2, __rel_dyn_end
300 beq t1, t2, clear_bss
301 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
302 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene8e39592017-12-26 13:55:48 +0800303
304/*
305 * skip first reserved entry: address, type, addend
306 */
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200307 j 10f
Rick Chene8e39592017-12-26 13:55:48 +0800308
3096:
Lukas Auerc55309c2018-11-22 11:26:24 +0100310 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
311 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
312 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
313 LREG t3, -(REGBYTES*3)(t1)
314 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
315 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
316 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
317 SREG t5, 0(t3)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200318 j 10f
Rick Chene8e39592017-12-26 13:55:48 +0800319
3208:
Lukas Auerc55309c2018-11-22 11:26:24 +0100321 la t4, __dyn_sym_start
322 add t4, t4, t6
Rick Chene8e39592017-12-26 13:55:48 +0800323
3249:
Lukas Auerc55309c2018-11-22 11:26:24 +0100325 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
326 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
327 andi t5, t5, 0xFF /* t5 <--- relocation type */
328 li t3, RELOC_TYPE
329 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene8e39592017-12-26 13:55:48 +0800330
Lukas Auerc55309c2018-11-22 11:26:24 +0100331 LREG t3, -(REGBYTES*3)(t1)
332 li t5, SYM_SIZE
333 mul t0, t0, t5
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100334 add s5, t4, t0
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200335 LREG t0, -(REGBYTES)(t1) /* t0 <-- addend */
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100336 LREG t5, REGBYTES(s5)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200337 add t5, t5, t0
Lukas Auerc55309c2018-11-22 11:26:24 +0100338 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
339 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
340 SREG t5, 0(t3)
Rick Chene8e39592017-12-26 13:55:48 +080034110:
Lukas Auerc55309c2018-11-22 11:26:24 +0100342 addi t1, t1, (REGBYTES*3)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200343 ble t1, t2, 6b
Rick Chene8e39592017-12-26 13:55:48 +0800344
345/*
346 * trap update
347*/
Lukas Auerc55309c2018-11-22 11:26:24 +0100348 la t0, trap_entry
349 add t0, t0, t6
Anup Pateld2db2a82018-12-03 10:57:40 +0530350 csrw MODE_PREFIX(tvec), t0
Rick Chene8e39592017-12-26 13:55:48 +0800351
352clear_bss:
Lukas Auerc55309c2018-11-22 11:26:24 +0100353 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
354 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
355 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
356 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100357 beq t0, t1, relocate_secondary_harts
Rick Chene8e39592017-12-26 13:55:48 +0800358
359clbss_l:
Lukas Auer31f90582018-11-22 11:26:28 +0100360 SREG zero, 0(t0) /* clear loop... */
Lukas Auerc55309c2018-11-22 11:26:24 +0100361 addi t0, t0, REGBYTES
Rick Chen444c4642019-11-14 13:52:27 +0800362 blt t0, t1, clbss_l
Rick Chene8e39592017-12-26 13:55:48 +0800363
Lukas Auer3dea63c2019-03-17 19:28:37 +0100364relocate_secondary_harts:
Bin Meng191636e2020-04-16 08:09:30 -0700365#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100366 /* send relocation IPI */
367 la t0, secondary_hart_relocate
368 add a0, t0, t6
369
370 /* store relocation offset */
371 mv s5, t6
372
373 mv a1, s2
374 mv a2, s3
Lukas Auer90ae2812019-12-08 23:28:51 +0100375 mv a3, zero
Lukas Auer3dea63c2019-03-17 19:28:37 +0100376 jal smp_call_function
377
Lukas Auer8ac39e22019-03-17 19:28:40 +0100378 /* hang if relocation of secondary harts has failed */
379 beqz a0, 1f
380 mv a1, a0
381 la a0, secondary_harts_relocation_error
382 jal printf
383 jal hang
384
Lukas Auer3dea63c2019-03-17 19:28:37 +0100385 /* restore relocation offset */
Lukas Auer8ac39e22019-03-17 19:28:40 +01003861: mv t6, s5
Lukas Auer3dea63c2019-03-17 19:28:37 +0100387#endif
388
Rick Chene8e39592017-12-26 13:55:48 +0800389/*
390 * We are done. Do not return, instead branch to second part of board
391 * initialization, now running from RAM.
392 */
393call_board_init_r:
Rick Chen52923c62018-11-07 09:34:06 +0800394 jal invalidate_icache_all
395 jal flush_dcache_all
Sean Anderson40433972020-01-27 16:39:44 -0500396 la t0, board_init_r /* offset of board_init_r() */
397 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene8e39592017-12-26 13:55:48 +0800398/*
399 * setup parameters for board_init_r
400 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100401 mv a0, s3 /* gd_t */
402 mv a1, s4 /* dest_addr */
Rick Chene8e39592017-12-26 13:55:48 +0800403
404/*
405 * jump to it ...
406 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100407 jr t4 /* jump to board_init_r() */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100408
Bin Meng191636e2020-04-16 08:09:30 -0700409#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100410hart_out_of_bounds_loop:
411 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
412 wfi
413 j hart_out_of_bounds_loop
Lukas Auer3dea63c2019-03-17 19:28:37 +0100414
Lukas Auer3dea63c2019-03-17 19:28:37 +0100415/* SMP relocation entry */
416secondary_hart_relocate:
417 /* a1: new sp */
418 /* a2: new gd */
419 /* tp: hart id */
420
421 /* setup stack */
422 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
423 sub sp, a1, t0
424
425 /* update global data pointer */
426 mv gp, a2
427#endif
428
Sean Anderson924de322020-09-21 07:51:41 -0400429/*
430 * Interrupts are disabled globally, but they can still be read from m/sip. The
431 * wfi function will wake us up if we get an IPI, even if we do not trap.
432 */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100433secondary_hart_loop:
434 wfi
435
Bin Meng191636e2020-04-16 08:09:30 -0700436#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100437 csrr t0, MODE_PREFIX(ip)
Lukas Auerfbfd92b2019-08-21 21:14:43 +0200438#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100439 andi t0, t0, MIE_MSIE
440#else
441 andi t0, t0, SIE_SSIE
442#endif
443 beqz t0, secondary_hart_loop
444
445 mv a0, tp
446 jal handle_ipi
447#endif
448
449 j secondary_hart_loop