blob: f408e41ab9dc74311acf7386817dc2df16663996 [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>
16#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
Lukas Auer39a652b2018-11-22 11:26:29 +010046 /* save hart id and dtb pointer */
Lukas Auer8de4b3e2019-03-17 19:28:36 +010047 mv tp, a0
Lukas Auer39a652b2018-11-22 11:26:29 +010048 mv s1, a1
49
Lukas Auer7cf43682018-11-22 11:26:24 +010050 la t0, trap_entry
Anup Patel89b39342018-12-03 10:57:40 +053051 csrw MODE_PREFIX(tvec), t0
Lukas Auer8598e6b2018-11-22 11:26:28 +010052
53 /* mask all interrupts */
Anup Patel89b39342018-12-03 10:57:40 +053054 csrw MODE_PREFIX(ie), zero
Rick Chene76b8042017-12-26 13:55:48 +080055
Bin Mengb161f902020-04-16 08:09:30 -070056#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +010057 /* check if hart is within range */
58 /* tp: hart id */
59 li t0, CONFIG_NR_CPUS
60 bge tp, t0, hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +010061
Lukas Auera3596652019-03-17 19:28:37 +010062 /* set xSIE bit to receive IPIs */
Lukas Auer61346592019-08-21 21:14:43 +020063#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +010064 li t0, MIE_MSIE
65#else
66 li t0, SIE_SSIE
67#endif
Sean Anderson84df2e12020-06-24 06:41:17 -040068 /* Clear any pending IPIs */
69 csrc MODE_PREFIX(ip), t0
Lukas Auera3596652019-03-17 19:28:37 +010070 csrs MODE_PREFIX(ie), t0
71#endif
72
Rick Chene76b8042017-12-26 13:55:48 +080073/*
Rick Chene76b8042017-12-26 13:55:48 +080074 * Set stackpointer in internal/ex RAM to call board_init_f
75 */
76call_board_init_f:
Lukas Auer7cf43682018-11-22 11:26:24 +010077 li t0, -16
Lukas Auer396f0bd2019-08-21 21:14:45 +020078#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
79 li t1, CONFIG_SPL_STACK
80#else
Lukas Auer7cf43682018-11-22 11:26:24 +010081 li t1, CONFIG_SYS_INIT_SP_ADDR
Lukas Auer396f0bd2019-08-21 21:14:45 +020082#endif
Lukas Auer7cf43682018-11-22 11:26:24 +010083 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene76b8042017-12-26 13:55:48 +080084
Rick Chene76b8042017-12-26 13:55:48 +080085call_board_init_f_0:
86 mv a0, sp
87 jal board_init_f_alloc_reserve
Lukas Auera3596652019-03-17 19:28:37 +010088
89 /*
90 * Set global data pointer here for all harts, uninitialized at this
91 * point.
92 */
93 mv gp, a0
94
95 /* setup stack */
Bin Mengb161f902020-04-16 08:09:30 -070096#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +010097 /* tp: hart id */
98 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
99 sub sp, a0, t0
100#else
Rick Chene76b8042017-12-26 13:55:48 +0800101 mv sp, a0
Lukas Auera3596652019-03-17 19:28:37 +0100102#endif
103
Rick Chene5e6c362019-04-30 13:49:33 +0800104#ifndef CONFIG_XIP
Lukas Auera3596652019-03-17 19:28:37 +0100105 /*
106 * Pick hart to initialize global data and run U-Boot. The other harts
107 * wait for initialization to complete.
108 */
109 la t0, hart_lottery
110 li s2, 1
111 amoswap.w s2, t1, 0(t0)
112 bnez s2, wait_for_gd_init
Rick Chene5e6c362019-04-30 13:49:33 +0800113#else
114 bnez tp, secondary_hart_loop
115#endif
Lukas Auer39a652b2018-11-22 11:26:29 +0100116
Rick Chen3043b902019-04-30 13:49:35 +0800117#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer39a652b2018-11-22 11:26:29 +0100118 la t0, prior_stage_fdt_address
119 SREG s1, 0(t0)
Rick Chen3043b902019-04-30 13:49:35 +0800120#endif
Lukas Auer39a652b2018-11-22 11:26:29 +0100121
Rick Chene76b8042017-12-26 13:55:48 +0800122 jal board_init_f_init_reserve
123
Atish Patra111b8042020-04-21 11:15:01 -0700124 SREG s1, GD_FIRMWARE_FDT_ADDR(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800125 /* save the boot hart id to global_data */
Lukas Auer8de4b3e2019-03-17 19:28:36 +0100126 SREG tp, GD_BOOT_HART(gp)
Bin Meng89681a72018-12-12 06:12:45 -0800127
Rick Chene5e6c362019-04-30 13:49:33 +0800128#ifndef CONFIG_XIP
Lukas Auera3596652019-03-17 19:28:37 +0100129 la t0, available_harts_lock
130 fence rw, w
131 amoswap.w zero, zero, 0(t0)
132
133wait_for_gd_init:
134 la t0, available_harts_lock
135 li t1, 1
1361: amoswap.w t1, t1, 0(t0)
137 fence r, rw
138 bnez t1, 1b
139
140 /* register available harts in the available_harts mask */
141 li t1, 1
142 sll t1, t1, tp
143 LREG t2, GD_AVAILABLE_HARTS(gp)
144 or t2, t2, t1
145 SREG t2, GD_AVAILABLE_HARTS(gp)
146
147 fence rw, w
148 amoswap.w zero, zero, 0(t0)
149
150 /*
151 * Continue on hart lottery winner, others branch to
152 * secondary_hart_loop.
153 */
154 bnez s2, secondary_hart_loop
Rick Chene5e6c362019-04-30 13:49:33 +0800155#endif
Lukas Auera3596652019-03-17 19:28:37 +0100156
Lukas Auer01558e22019-03-17 19:28:35 +0100157 /* Enable cache */
158 jal icache_enable
159 jal dcache_enable
160
161#ifdef CONFIG_DEBUG_UART
162 jal debug_uart_init
163#endif
164
Lukas Auer7cf43682018-11-22 11:26:24 +0100165 mv a0, zero /* a0 <-- boot_flags = 0 */
166 la t5, board_init_f
Lukas Auer396f0bd2019-08-21 21:14:45 +0200167 jalr t5 /* jump to board_init_f() */
168
169#ifdef CONFIG_SPL_BUILD
170spl_clear_bss:
171 la t0, __bss_start
172 la t1, __bss_end
Lukas Auer2a2a9252019-08-21 21:14:46 +0200173 beq t0, t1, spl_stack_gd_setup
Lukas Auer396f0bd2019-08-21 21:14:45 +0200174
175spl_clear_bss_loop:
176 SREG zero, 0(t0)
177 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800178 blt t0, t1, spl_clear_bss_loop
Lukas Auer396f0bd2019-08-21 21:14:45 +0200179
Lukas Auer2a2a9252019-08-21 21:14:46 +0200180spl_stack_gd_setup:
181 jal spl_relocate_stack_gd
182
183 /* skip setup if we did not relocate */
184 beqz a0, spl_call_board_init_r
185 mv s0, a0
186
187 /* setup stack on main hart */
Bin Mengb161f902020-04-16 08:09:30 -0700188#if CONFIG_IS_ENABLED(SMP)
Lukas Auer2a2a9252019-08-21 21:14:46 +0200189 /* tp: hart id */
190 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
191 sub sp, s0, t0
192#else
193 mv sp, s0
194#endif
195
196 /* set new stack and global data pointer on secondary harts */
197spl_secondary_hart_stack_gd_setup:
198 la a0, secondary_hart_relocate
199 mv a1, s0
200 mv a2, s0
Lukas Auerc308e012019-12-08 23:28:51 +0100201 mv a3, zero
Lukas Auer2a2a9252019-08-21 21:14:46 +0200202 jal smp_call_function
203
204 /* hang if relocation of secondary harts has failed */
205 beqz a0, 1f
206 mv a1, a0
207 la a0, secondary_harts_relocation_error
208 jal printf
209 jal hang
210
211 /* set new global data pointer on main hart */
2121: mv gp, s0
213
Lukas Auer396f0bd2019-08-21 21:14:45 +0200214spl_call_board_init_r:
215 mv a0, zero
216 mv a1, zero
217 jal board_init_r
218#endif
Rick Chene76b8042017-12-26 13:55:48 +0800219
220/*
Simon Glass284f71b2019-12-28 10:44:45 -0700221 * void relocate_code(addr_sp, gd, addr_moni)
Rick Chene76b8042017-12-26 13:55:48 +0800222 *
223 * This "function" does not return, instead it continues in RAM
224 * after relocating the monitor code.
225 *
226 */
227.globl relocate_code
228relocate_code:
Lukas Auer7cf43682018-11-22 11:26:24 +0100229 mv s2, a0 /* save addr_sp */
230 mv s3, a1 /* save addr of gd */
231 mv s4, a2 /* save addr of destination */
Rick Chene76b8042017-12-26 13:55:48 +0800232
233/*
234 *Set up the stack
235 */
236stack_setup:
Bin Mengb161f902020-04-16 08:09:30 -0700237#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100238 /* tp: hart id */
239 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
240 sub sp, s2, t0
241#else
Lukas Auer7cf43682018-11-22 11:26:24 +0100242 mv sp, s2
Lukas Auera3596652019-03-17 19:28:37 +0100243#endif
244
Lukas Auer7cf43682018-11-22 11:26:24 +0100245 la t0, _start
246 sub t6, s4, t0 /* t6 <- relocation offset */
247 beq t0, s4, clear_bss /* skip relocation */
Rick Chene76b8042017-12-26 13:55:48 +0800248
Lukas Auer7cf43682018-11-22 11:26:24 +0100249 mv t1, s4 /* t1 <- scratch for copy_loop */
250 la t3, __bss_start
251 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
252 add t2, t0, t3 /* t2 <- source end address */
Rick Chene76b8042017-12-26 13:55:48 +0800253
254copy_loop:
Lukas Auer7cf43682018-11-22 11:26:24 +0100255 LREG t5, 0(t0)
256 addi t0, t0, REGBYTES
257 SREG t5, 0(t1)
258 addi t1, t1, REGBYTES
259 blt t0, t2, copy_loop
Rick Chene76b8042017-12-26 13:55:48 +0800260
261/*
262 * Update dynamic relocations after board_init_f
263 */
264fix_rela_dyn:
Lukas Auer7cf43682018-11-22 11:26:24 +0100265 la t1, __rel_dyn_start
266 la t2, __rel_dyn_end
267 beq t1, t2, clear_bss
268 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
269 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene76b8042017-12-26 13:55:48 +0800270
271/*
272 * skip first reserved entry: address, type, addend
273 */
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200274 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800275
2766:
Lukas Auer7cf43682018-11-22 11:26:24 +0100277 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
278 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
279 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
280 LREG t3, -(REGBYTES*3)(t1)
281 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
282 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
283 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
284 SREG t5, 0(t3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200285 j 10f
Rick Chene76b8042017-12-26 13:55:48 +0800286
2878:
Lukas Auer7cf43682018-11-22 11:26:24 +0100288 la t4, __dyn_sym_start
289 add t4, t4, t6
Rick Chene76b8042017-12-26 13:55:48 +0800290
2919:
Lukas Auer7cf43682018-11-22 11:26:24 +0100292 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
293 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
294 andi t5, t5, 0xFF /* t5 <--- relocation type */
295 li t3, RELOC_TYPE
296 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene76b8042017-12-26 13:55:48 +0800297
Lukas Auer7cf43682018-11-22 11:26:24 +0100298 LREG t3, -(REGBYTES*3)(t1)
299 li t5, SYM_SIZE
300 mul t0, t0, t5
Lukas Auer39a652b2018-11-22 11:26:29 +0100301 add s5, t4, t0
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200302 LREG t0, -(REGBYTES)(t1) /* t0 <-- addend */
Lukas Auer39a652b2018-11-22 11:26:29 +0100303 LREG t5, REGBYTES(s5)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200304 add t5, t5, t0
Lukas Auer7cf43682018-11-22 11:26:24 +0100305 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
306 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
307 SREG t5, 0(t3)
Rick Chene76b8042017-12-26 13:55:48 +080030810:
Lukas Auer7cf43682018-11-22 11:26:24 +0100309 addi t1, t1, (REGBYTES*3)
Marcus Comstedtb9ad45d2019-08-11 14:45:29 +0200310 ble t1, t2, 6b
Rick Chene76b8042017-12-26 13:55:48 +0800311
312/*
313 * trap update
314*/
Lukas Auer7cf43682018-11-22 11:26:24 +0100315 la t0, trap_entry
316 add t0, t0, t6
Anup Patel89b39342018-12-03 10:57:40 +0530317 csrw MODE_PREFIX(tvec), t0
Rick Chene76b8042017-12-26 13:55:48 +0800318
319clear_bss:
Lukas Auer7cf43682018-11-22 11:26:24 +0100320 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
321 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
322 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
323 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auera3596652019-03-17 19:28:37 +0100324 beq t0, t1, relocate_secondary_harts
Rick Chene76b8042017-12-26 13:55:48 +0800325
326clbss_l:
Lukas Auer8598e6b2018-11-22 11:26:28 +0100327 SREG zero, 0(t0) /* clear loop... */
Lukas Auer7cf43682018-11-22 11:26:24 +0100328 addi t0, t0, REGBYTES
Rick Chen55bc1bd2019-11-14 13:52:27 +0800329 blt t0, t1, clbss_l
Rick Chene76b8042017-12-26 13:55:48 +0800330
Lukas Auera3596652019-03-17 19:28:37 +0100331relocate_secondary_harts:
Bin Mengb161f902020-04-16 08:09:30 -0700332#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100333 /* send relocation IPI */
334 la t0, secondary_hart_relocate
335 add a0, t0, t6
336
337 /* store relocation offset */
338 mv s5, t6
339
340 mv a1, s2
341 mv a2, s3
Lukas Auerc308e012019-12-08 23:28:51 +0100342 mv a3, zero
Lukas Auera3596652019-03-17 19:28:37 +0100343 jal smp_call_function
344
Lukas Auercddde092019-03-17 19:28:40 +0100345 /* hang if relocation of secondary harts has failed */
346 beqz a0, 1f
347 mv a1, a0
348 la a0, secondary_harts_relocation_error
349 jal printf
350 jal hang
351
Lukas Auera3596652019-03-17 19:28:37 +0100352 /* restore relocation offset */
Lukas Auercddde092019-03-17 19:28:40 +01003531: mv t6, s5
Lukas Auera3596652019-03-17 19:28:37 +0100354#endif
355
Rick Chene76b8042017-12-26 13:55:48 +0800356/*
357 * We are done. Do not return, instead branch to second part of board
358 * initialization, now running from RAM.
359 */
360call_board_init_r:
Rick Chen842d5802018-11-07 09:34:06 +0800361 jal invalidate_icache_all
362 jal flush_dcache_all
Sean Anderson750fee52020-01-27 16:39:44 -0500363 la t0, board_init_r /* offset of board_init_r() */
364 add t4, t0, t6 /* real address of board_init_r() */
Rick Chene76b8042017-12-26 13:55:48 +0800365/*
366 * setup parameters for board_init_r
367 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100368 mv a0, s3 /* gd_t */
369 mv a1, s4 /* dest_addr */
Rick Chene76b8042017-12-26 13:55:48 +0800370
371/*
372 * jump to it ...
373 */
Lukas Auer7cf43682018-11-22 11:26:24 +0100374 jr t4 /* jump to board_init_r() */
Lukas Auera3596652019-03-17 19:28:37 +0100375
Bin Mengb161f902020-04-16 08:09:30 -0700376#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100377hart_out_of_bounds_loop:
378 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
379 wfi
380 j hart_out_of_bounds_loop
Lukas Auera3596652019-03-17 19:28:37 +0100381
Lukas Auera3596652019-03-17 19:28:37 +0100382/* SMP relocation entry */
383secondary_hart_relocate:
384 /* a1: new sp */
385 /* a2: new gd */
386 /* tp: hart id */
387
388 /* setup stack */
389 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
390 sub sp, a1, t0
391
392 /* update global data pointer */
393 mv gp, a2
394#endif
395
396secondary_hart_loop:
397 wfi
398
Bin Mengb161f902020-04-16 08:09:30 -0700399#if CONFIG_IS_ENABLED(SMP)
Lukas Auera3596652019-03-17 19:28:37 +0100400 csrr t0, MODE_PREFIX(ip)
Lukas Auer61346592019-08-21 21:14:43 +0200401#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auera3596652019-03-17 19:28:37 +0100402 andi t0, t0, MIE_MSIE
403#else
404 andi t0, t0, SIE_SSIE
405#endif
406 beqz t0, secondary_hart_loop
407
408 mv a0, tp
409 jal handle_ipi
410#endif
411
412 j secondary_hart_loop