blob: 308b0a97a58fa0ad81af39c9a9aa39c59ce849a6 [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>
16#include <asm/encoding.h>
Bin Meng51ab4572018-12-12 06:12:45 -080017#include <generated/asm-offsets.h>
Rick Chene8e39592017-12-26 13:55:48 +080018
19#ifdef CONFIG_32BIT
Lukas Auerc55309c2018-11-22 11:26:24 +010020#define LREG lw
21#define SREG sw
22#define REGBYTES 4
Rick Chene8e39592017-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 Auerc55309c2018-11-22 11:26:24 +010027#define LREG ld
28#define SREG sd
29#define REGBYTES 8
Rick Chene8e39592017-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 Auer8ac39e22019-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 Auerc55309c2018-11-22 11:26:24 +010039.section .text
Rick Chene8e39592017-12-26 13:55:48 +080040.globl _start
41_start:
Lukas Auerfbfd92b2019-08-21 21:14:43 +020042#if CONFIG_IS_ENABLED(RISCV_MMODE)
Bin Meng4d2583d2019-07-10 23:43:13 -070043 csrr a0, CSR_MHARTID
Lukas Auere0432402019-03-17 19:28:39 +010044#endif
45
Sean Anderson924de322020-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 Auer1446b262019-03-17 19:28:36 +010050 mv tp, a0
Lukas Auer5d8b2e72018-11-22 11:26:29 +010051 mv s1, a1
52
Sean Anderson85768132020-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 Anderson924de322020-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 Auerc55309c2018-11-22 11:26:24 +010064 la t0, trap_entry
Anup Pateld2db2a82018-12-03 10:57:40 +053065 csrw MODE_PREFIX(tvec), t0
Lukas Auer31f90582018-11-22 11:26:28 +010066
Sean Anderson924de322020-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 Pateld2db2a82018-12-03 10:57:40 +053072 csrw MODE_PREFIX(ie), zero
Rick Chene8e39592017-12-26 13:55:48 +080073
Bin Meng191636e2020-04-16 08:09:30 -070074#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-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 Auer3dea63c2019-03-17 19:28:37 +010079
Lukas Auer3dea63c2019-03-17 19:28:37 +010080 /* set xSIE bit to receive IPIs */
Lukas Auerfbfd92b2019-08-21 21:14:43 +020081#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auer3dea63c2019-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 Chene8e39592017-12-26 13:55:48 +080089/*
Rick Chene8e39592017-12-26 13:55:48 +080090 * Set stackpointer in internal/ex RAM to call board_init_f
91 */
92call_board_init_f:
Lukas Auerc55309c2018-11-22 11:26:24 +010093 li t0, -16
Lukas Auer8c59f202019-08-21 21:14:45 +020094#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
95 li t1, CONFIG_SPL_STACK
96#else
Lukas Auerc55309c2018-11-22 11:26:24 +010097 li t1, CONFIG_SYS_INIT_SP_ADDR
Lukas Auer8c59f202019-08-21 21:14:45 +020098#endif
Lukas Auerc55309c2018-11-22 11:26:24 +010099 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene8e39592017-12-26 13:55:48 +0800100
Rick Chene8e39592017-12-26 13:55:48 +0800101call_board_init_f_0:
102 mv a0, sp
103 jal board_init_f_alloc_reserve
Lukas Auer3dea63c2019-03-17 19:28:37 +0100104
105 /*
Sean Anderson85768132020-09-21 07:51:40 -0400106 * Save global data pointer for later. We don't set it here because it
107 * is not initialized yet.
Lukas Auer3dea63c2019-03-17 19:28:37 +0100108 */
Sean Anderson85768132020-09-21 07:51:40 -0400109 mv s0, a0
Lukas Auer3dea63c2019-03-17 19:28:37 +0100110
111 /* setup stack */
Bin Meng191636e2020-04-16 08:09:30 -0700112#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100113 /* tp: hart id */
114 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
115 sub sp, a0, t0
116#else
Rick Chene8e39592017-12-26 13:55:48 +0800117 mv sp, a0
Lukas Auer3dea63c2019-03-17 19:28:37 +0100118#endif
119
Green Wanedd9ad82021-05-02 23:23:04 -0700120 /* Configure proprietary settings and customized CSRs of harts */
121call_harts_early_init:
122 jal harts_early_init
123
Rick Chenbdce3892019-04-30 13:49:33 +0800124#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100125 /*
126 * Pick hart to initialize global data and run U-Boot. The other harts
127 * wait for initialization to complete.
128 */
129 la t0, hart_lottery
Brad Kimfb33eaa2020-11-13 20:47:51 +0900130 li t1, 1
Lukas Auer3dea63c2019-03-17 19:28:37 +0100131 amoswap.w s2, t1, 0(t0)
132 bnez s2, wait_for_gd_init
Rick Chenbdce3892019-04-30 13:49:33 +0800133#else
Sean Anderson85768132020-09-21 07:51:40 -0400134 /*
135 * FIXME: gp is set before it is initialized. If an XIP U-Boot ever
136 * encounters a pending IPI on boot it is liable to jump to whatever
137 * memory happens to be in ipi_data.addr on boot. It may also run into
138 * problems if it encounters an exception too early (because printf/puts
139 * accesses gd).
140 */
141 mv gp, s0
Rick Chenbdce3892019-04-30 13:49:33 +0800142 bnez tp, secondary_hart_loop
143#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100144
Rick Chenf9281b82019-04-30 13:49:35 +0800145#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100146 la t0, prior_stage_fdt_address
147 SREG s1, 0(t0)
Rick Chenf9281b82019-04-30 13:49:35 +0800148#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100149
Rick Chene8e39592017-12-26 13:55:48 +0800150 jal board_init_f_init_reserve
151
Atish Patrad4ea6492020-04-21 11:15:01 -0700152 SREG s1, GD_FIRMWARE_FDT_ADDR(gp)
Bin Meng51ab4572018-12-12 06:12:45 -0800153 /* save the boot hart id to global_data */
Lukas Auer1446b262019-03-17 19:28:36 +0100154 SREG tp, GD_BOOT_HART(gp)
Bin Meng51ab4572018-12-12 06:12:45 -0800155
Rick Chenbdce3892019-04-30 13:49:33 +0800156#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100157 la t0, available_harts_lock
Sean Anderson309995b2020-09-21 07:51:39 -0400158 amoswap.w.rl zero, zero, 0(t0)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100159
160wait_for_gd_init:
161 la t0, available_harts_lock
162 li t1, 1
Sean Anderson309995b2020-09-21 07:51:39 -04001631: amoswap.w.aq t1, t1, 0(t0)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100164 bnez t1, 1b
165
Sean Anderson85768132020-09-21 07:51:40 -0400166 /*
167 * Set the global data pointer only when gd_t has been initialized.
168 * This was already set by arch_setup_gd on the boot hart, but all other
169 * harts' global data pointers gets set here.
170 */
171 mv gp, s0
172
Lukas Auer3dea63c2019-03-17 19:28:37 +0100173 /* register available harts in the available_harts mask */
174 li t1, 1
175 sll t1, t1, tp
176 LREG t2, GD_AVAILABLE_HARTS(gp)
177 or t2, t2, t1
178 SREG t2, GD_AVAILABLE_HARTS(gp)
179
Sean Anderson309995b2020-09-21 07:51:39 -0400180 amoswap.w.rl zero, zero, 0(t0)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100181
182 /*
183 * Continue on hart lottery winner, others branch to
184 * secondary_hart_loop.
185 */
186 bnez s2, secondary_hart_loop
Rick Chenbdce3892019-04-30 13:49:33 +0800187#endif
Lukas Auer3dea63c2019-03-17 19:28:37 +0100188
Lukas Auer2503ccc2019-03-17 19:28:35 +0100189 /* Enable cache */
190 jal icache_enable
191 jal dcache_enable
192
193#ifdef CONFIG_DEBUG_UART
194 jal debug_uart_init
195#endif
196
Lukas Auerc55309c2018-11-22 11:26:24 +0100197 mv a0, zero /* a0 <-- boot_flags = 0 */
198 la t5, board_init_f
Lukas Auer8c59f202019-08-21 21:14:45 +0200199 jalr t5 /* jump to board_init_f() */
200
201#ifdef CONFIG_SPL_BUILD
202spl_clear_bss:
203 la t0, __bss_start
204 la t1, __bss_end
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200205 beq t0, t1, spl_stack_gd_setup
Lukas Auer8c59f202019-08-21 21:14:45 +0200206
207spl_clear_bss_loop:
208 SREG zero, 0(t0)
209 addi t0, t0, REGBYTES
Rick Chen444c4642019-11-14 13:52:27 +0800210 blt t0, t1, spl_clear_bss_loop
Lukas Auer8c59f202019-08-21 21:14:45 +0200211
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200212spl_stack_gd_setup:
213 jal spl_relocate_stack_gd
214
215 /* skip setup if we did not relocate */
216 beqz a0, spl_call_board_init_r
217 mv s0, a0
218
219 /* setup stack on main hart */
Bin Meng191636e2020-04-16 08:09:30 -0700220#if CONFIG_IS_ENABLED(SMP)
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200221 /* tp: hart id */
222 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
223 sub sp, s0, t0
224#else
225 mv sp, s0
226#endif
227
Leo Yu-Chi Liange491e152020-06-29 16:27:28 +0800228#if CONFIG_IS_ENABLED(SMP)
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200229 /* set new stack and global data pointer on secondary harts */
230spl_secondary_hart_stack_gd_setup:
231 la a0, secondary_hart_relocate
232 mv a1, s0
233 mv a2, s0
Lukas Auer90ae2812019-12-08 23:28:51 +0100234 mv a3, zero
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200235 jal smp_call_function
236
237 /* hang if relocation of secondary harts has failed */
238 beqz a0, 1f
239 mv a1, a0
240 la a0, secondary_harts_relocation_error
241 jal printf
242 jal hang
Leo Yu-Chi Liange491e152020-06-29 16:27:28 +0800243#endif
Lukas Auerc7e1eff2019-08-21 21:14:46 +0200244
245 /* set new global data pointer on main hart */
2461: mv gp, s0
247
Lukas Auer8c59f202019-08-21 21:14:45 +0200248spl_call_board_init_r:
249 mv a0, zero
250 mv a1, zero
251 jal board_init_r
252#endif
Rick Chene8e39592017-12-26 13:55:48 +0800253
254/*
Simon Glass94133872019-12-28 10:44:45 -0700255 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene8e39592017-12-26 13:55:48 +0800256 *
257 * This "function" does not return, instead it continues in RAM
258 * after relocating the monitor code.
259 *
260 */
261.globl relocate_code
262relocate_code:
Lukas Auerc55309c2018-11-22 11:26:24 +0100263 mv s2, a0 /* save addr_sp */
264 mv s3, a1 /* save addr of gd */
265 mv s4, a2 /* save addr of destination */
Rick Chene8e39592017-12-26 13:55:48 +0800266
267/*
268 *Set up the stack
269 */
270stack_setup:
Bin Meng191636e2020-04-16 08:09:30 -0700271#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100272 /* tp: hart id */
273 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
274 sub sp, s2, t0
275#else
Lukas Auerc55309c2018-11-22 11:26:24 +0100276 mv sp, s2
Lukas Auer3dea63c2019-03-17 19:28:37 +0100277#endif
278
Lukas Auerc55309c2018-11-22 11:26:24 +0100279 la t0, _start
280 sub t6, s4, t0 /* t6 <- relocation offset */
281 beq t0, s4, clear_bss /* skip relocation */
Rick Chene8e39592017-12-26 13:55:48 +0800282
Lukas Auerc55309c2018-11-22 11:26:24 +0100283 mv t1, s4 /* t1 <- scratch for copy_loop */
284 la t3, __bss_start
285 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
286 add t2, t0, t3 /* t2 <- source end address */
Rick Chene8e39592017-12-26 13:55:48 +0800287
288copy_loop:
Lukas Auerc55309c2018-11-22 11:26:24 +0100289 LREG t5, 0(t0)
290 addi t0, t0, REGBYTES
291 SREG t5, 0(t1)
292 addi t1, t1, REGBYTES
293 blt t0, t2, copy_loop
Rick Chene8e39592017-12-26 13:55:48 +0800294
295/*
296 * Update dynamic relocations after board_init_f
297 */
298fix_rela_dyn:
Lukas Auerc55309c2018-11-22 11:26:24 +0100299 la t1, __rel_dyn_start
300 la t2, __rel_dyn_end
301 beq t1, t2, clear_bss
302 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
303 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene8e39592017-12-26 13:55:48 +0800304
305/*
306 * skip first reserved entry: address, type, addend
307 */
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200308 j 10f
Rick Chene8e39592017-12-26 13:55:48 +0800309
3106:
Lukas Auerc55309c2018-11-22 11:26:24 +0100311 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
312 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
313 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
314 LREG t3, -(REGBYTES*3)(t1)
315 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
316 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
317 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
318 SREG t5, 0(t3)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200319 j 10f
Rick Chene8e39592017-12-26 13:55:48 +0800320
3218:
Lukas Auerc55309c2018-11-22 11:26:24 +0100322 la t4, __dyn_sym_start
323 add t4, t4, t6
Rick Chene8e39592017-12-26 13:55:48 +0800324
3259:
Lukas Auerc55309c2018-11-22 11:26:24 +0100326 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
327 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
328 andi t5, t5, 0xFF /* t5 <--- relocation type */
329 li t3, RELOC_TYPE
330 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene8e39592017-12-26 13:55:48 +0800331
Lukas Auerc55309c2018-11-22 11:26:24 +0100332 LREG t3, -(REGBYTES*3)(t1)
333 li t5, SYM_SIZE
334 mul t0, t0, t5
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100335 add s5, t4, t0
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200336 LREG t0, -(REGBYTES)(t1) /* t0 <-- addend */
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100337 LREG t5, REGBYTES(s5)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200338 add t5, t5, t0
Lukas Auerc55309c2018-11-22 11:26:24 +0100339 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
340 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
341 SREG t5, 0(t3)
Rick Chene8e39592017-12-26 13:55:48 +080034210:
Lukas Auerc55309c2018-11-22 11:26:24 +0100343 addi t1, t1, (REGBYTES*3)
Marcus Comstedtf6cb4272019-08-11 14:45:29 +0200344 ble t1, t2, 6b
Rick Chene8e39592017-12-26 13:55:48 +0800345
346/*
347 * trap update
348*/
Lukas Auerc55309c2018-11-22 11:26:24 +0100349 la t0, trap_entry
350 add t0, t0, t6
Anup Pateld2db2a82018-12-03 10:57:40 +0530351 csrw MODE_PREFIX(tvec), t0
Rick Chene8e39592017-12-26 13:55:48 +0800352
353clear_bss:
Lukas Auerc55309c2018-11-22 11:26:24 +0100354 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
355 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
356 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
357 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100358 beq t0, t1, relocate_secondary_harts
Rick Chene8e39592017-12-26 13:55:48 +0800359
360clbss_l:
Lukas Auer31f90582018-11-22 11:26:28 +0100361 SREG zero, 0(t0) /* clear loop... */
Lukas Auerc55309c2018-11-22 11:26:24 +0100362 addi t0, t0, REGBYTES
Rick Chen444c4642019-11-14 13:52:27 +0800363 blt t0, t1, clbss_l
Rick Chene8e39592017-12-26 13:55:48 +0800364
Lukas Auer3dea63c2019-03-17 19:28:37 +0100365relocate_secondary_harts:
Bin Meng191636e2020-04-16 08:09:30 -0700366#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100367 /* send relocation IPI */
368 la t0, secondary_hart_relocate
369 add a0, t0, t6
370
371 /* store relocation offset */
372 mv s5, t6
373
374 mv a1, s2
375 mv a2, s3
Lukas Auer90ae2812019-12-08 23:28:51 +0100376 mv a3, zero
Lukas Auer3dea63c2019-03-17 19:28:37 +0100377 jal smp_call_function
378
Lukas Auer8ac39e22019-03-17 19:28:40 +0100379 /* hang if relocation of secondary harts has failed */
380 beqz a0, 1f
381 mv a1, a0
382 la a0, secondary_harts_relocation_error
383 jal printf
384 jal hang
385
Lukas Auer3dea63c2019-03-17 19:28:37 +0100386 /* restore relocation offset */
Lukas Auer8ac39e22019-03-17 19:28:40 +01003871: mv t6, s5
Lukas Auer3dea63c2019-03-17 19:28:37 +0100388#endif
389
Rick Chene8e39592017-12-26 13:55:48 +0800390/*
391 * We are done. Do not return, instead branch to second part of board
392 * initialization, now running from RAM.
393 */
394call_board_init_r:
Rick Chen52923c62018-11-07 09:34:06 +0800395 jal invalidate_icache_all
396 jal flush_dcache_all
Sean Anderson40433972020-01-27 16:39:44 -0500397 la t0, board_init_r /* offset of board_init_r() */
398 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene8e39592017-12-26 13:55:48 +0800399/*
400 * setup parameters for board_init_r
401 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100402 mv a0, s3 /* gd_t */
403 mv a1, s4 /* dest_addr */
Rick Chene8e39592017-12-26 13:55:48 +0800404
405/*
406 * jump to it ...
407 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100408 jr t4 /* jump to board_init_r() */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100409
Bin Meng191636e2020-04-16 08:09:30 -0700410#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100411hart_out_of_bounds_loop:
412 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
413 wfi
414 j hart_out_of_bounds_loop
Lukas Auer3dea63c2019-03-17 19:28:37 +0100415
Lukas Auer3dea63c2019-03-17 19:28:37 +0100416/* SMP relocation entry */
417secondary_hart_relocate:
418 /* a1: new sp */
419 /* a2: new gd */
420 /* tp: hart id */
421
422 /* setup stack */
423 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
424 sub sp, a1, t0
425
426 /* update global data pointer */
427 mv gp, a2
428#endif
429
Sean Anderson924de322020-09-21 07:51:41 -0400430/*
431 * Interrupts are disabled globally, but they can still be read from m/sip. The
432 * wfi function will wake us up if we get an IPI, even if we do not trap.
433 */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100434secondary_hart_loop:
435 wfi
436
Bin Meng191636e2020-04-16 08:09:30 -0700437#if CONFIG_IS_ENABLED(SMP)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100438 csrr t0, MODE_PREFIX(ip)
Lukas Auerfbfd92b2019-08-21 21:14:43 +0200439#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100440 andi t0, t0, MIE_MSIE
441#else
442 andi t0, t0, SIE_SSIE
443#endif
444 beqz t0, secondary_hart_loop
445
446 mv a0, tp
447 jal handle_ipi
448#endif
449
450 j secondary_hart_loop