blob: e82ee9e365a64ff77efe0d77e2dffb10d9741889 [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
Lukas Auer5d8b2e72018-11-22 11:26:29 +010046 /* save hart id and dtb pointer */
Lukas Auer1446b262019-03-17 19:28:36 +010047 mv tp, a0
Lukas Auer5d8b2e72018-11-22 11:26:29 +010048 mv s1, a1
49
Lukas Auerc55309c2018-11-22 11:26:24 +010050 la t0, trap_entry
Anup Pateld2db2a82018-12-03 10:57:40 +053051 csrw MODE_PREFIX(tvec), t0
Lukas Auer31f90582018-11-22 11:26:28 +010052
53 /* mask all interrupts */
Anup Pateld2db2a82018-12-03 10:57:40 +053054 csrw MODE_PREFIX(ie), zero
Rick Chene8e39592017-12-26 13:55:48 +080055
Lukas Auer3dea63c2019-03-17 19:28:37 +010056#ifdef CONFIG_SMP
57 /* 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
61#endif
62
63#ifdef CONFIG_SMP
64 /* set xSIE bit to receive IPIs */
Lukas Auerfbfd92b2019-08-21 21:14:43 +020065#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auer3dea63c2019-03-17 19:28:37 +010066 li t0, MIE_MSIE
67#else
68 li t0, SIE_SSIE
69#endif
70 csrs MODE_PREFIX(ie), t0
71#endif
72
Rick Chene8e39592017-12-26 13:55:48 +080073/*
Rick Chene8e39592017-12-26 13:55:48 +080074 * Set stackpointer in internal/ex RAM to call board_init_f
75 */
76call_board_init_f:
Lukas Auerc55309c2018-11-22 11:26:24 +010077 li t0, -16
78 li t1, CONFIG_SYS_INIT_SP_ADDR
79 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene8e39592017-12-26 13:55:48 +080080
Rick Chene8e39592017-12-26 13:55:48 +080081call_board_init_f_0:
82 mv a0, sp
83 jal board_init_f_alloc_reserve
Lukas Auer3dea63c2019-03-17 19:28:37 +010084
85 /*
86 * Set global data pointer here for all harts, uninitialized at this
87 * point.
88 */
89 mv gp, a0
90
91 /* setup stack */
92#ifdef CONFIG_SMP
93 /* tp: hart id */
94 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
95 sub sp, a0, t0
96#else
Rick Chene8e39592017-12-26 13:55:48 +080097 mv sp, a0
Lukas Auer3dea63c2019-03-17 19:28:37 +010098#endif
99
Rick Chenbdce3892019-04-30 13:49:33 +0800100#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100101 /*
102 * Pick hart to initialize global data and run U-Boot. The other harts
103 * wait for initialization to complete.
104 */
105 la t0, hart_lottery
106 li s2, 1
107 amoswap.w s2, t1, 0(t0)
108 bnez s2, wait_for_gd_init
Rick Chenbdce3892019-04-30 13:49:33 +0800109#else
110 bnez tp, secondary_hart_loop
111#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100112
Rick Chenf9281b82019-04-30 13:49:35 +0800113#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100114 la t0, prior_stage_fdt_address
115 SREG s1, 0(t0)
Rick Chenf9281b82019-04-30 13:49:35 +0800116#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100117
Rick Chene8e39592017-12-26 13:55:48 +0800118 jal board_init_f_init_reserve
119
Bin Meng51ab4572018-12-12 06:12:45 -0800120 /* save the boot hart id to global_data */
Lukas Auer1446b262019-03-17 19:28:36 +0100121 SREG tp, GD_BOOT_HART(gp)
Bin Meng51ab4572018-12-12 06:12:45 -0800122
Rick Chenbdce3892019-04-30 13:49:33 +0800123#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100124 la t0, available_harts_lock
125 fence rw, w
126 amoswap.w zero, zero, 0(t0)
127
128wait_for_gd_init:
129 la t0, available_harts_lock
130 li t1, 1
1311: amoswap.w t1, t1, 0(t0)
132 fence r, rw
133 bnez t1, 1b
134
135 /* register available harts in the available_harts mask */
136 li t1, 1
137 sll t1, t1, tp
138 LREG t2, GD_AVAILABLE_HARTS(gp)
139 or t2, t2, t1
140 SREG t2, GD_AVAILABLE_HARTS(gp)
141
142 fence rw, w
143 amoswap.w zero, zero, 0(t0)
144
145 /*
146 * Continue on hart lottery winner, others branch to
147 * secondary_hart_loop.
148 */
149 bnez s2, secondary_hart_loop
Rick Chenbdce3892019-04-30 13:49:33 +0800150#endif
Lukas Auer3dea63c2019-03-17 19:28:37 +0100151
Lukas Auer2503ccc2019-03-17 19:28:35 +0100152 /* Enable cache */
153 jal icache_enable
154 jal dcache_enable
155
156#ifdef CONFIG_DEBUG_UART
157 jal debug_uart_init
158#endif
159
Lukas Auerc55309c2018-11-22 11:26:24 +0100160 mv a0, zero /* a0 <-- boot_flags = 0 */
161 la t5, board_init_f
162 jr t5 /* jump to board_init_f() */
Rick Chene8e39592017-12-26 13:55:48 +0800163
164/*
165 * void relocate_code (addr_sp, gd, addr_moni)
166 *
167 * This "function" does not return, instead it continues in RAM
168 * after relocating the monitor code.
169 *
170 */
171.globl relocate_code
172relocate_code:
Lukas Auerc55309c2018-11-22 11:26:24 +0100173 mv s2, a0 /* save addr_sp */
174 mv s3, a1 /* save addr of gd */
175 mv s4, a2 /* save addr of destination */
Rick Chene8e39592017-12-26 13:55:48 +0800176
177/*
178 *Set up the stack
179 */
180stack_setup:
Lukas Auer3dea63c2019-03-17 19:28:37 +0100181#ifdef CONFIG_SMP
182 /* tp: hart id */
183 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
184 sub sp, s2, t0
185#else
Lukas Auerc55309c2018-11-22 11:26:24 +0100186 mv sp, s2
Lukas Auer3dea63c2019-03-17 19:28:37 +0100187#endif
188
Lukas Auerc55309c2018-11-22 11:26:24 +0100189 la t0, _start
190 sub t6, s4, t0 /* t6 <- relocation offset */
191 beq t0, s4, clear_bss /* skip relocation */
Rick Chene8e39592017-12-26 13:55:48 +0800192
Lukas Auerc55309c2018-11-22 11:26:24 +0100193 mv t1, s4 /* t1 <- scratch for copy_loop */
194 la t3, __bss_start
195 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
196 add t2, t0, t3 /* t2 <- source end address */
Rick Chene8e39592017-12-26 13:55:48 +0800197
198copy_loop:
Lukas Auerc55309c2018-11-22 11:26:24 +0100199 LREG t5, 0(t0)
200 addi t0, t0, REGBYTES
201 SREG t5, 0(t1)
202 addi t1, t1, REGBYTES
203 blt t0, t2, copy_loop
Rick Chene8e39592017-12-26 13:55:48 +0800204
205/*
206 * Update dynamic relocations after board_init_f
207 */
208fix_rela_dyn:
Lukas Auerc55309c2018-11-22 11:26:24 +0100209 la t1, __rel_dyn_start
210 la t2, __rel_dyn_end
211 beq t1, t2, clear_bss
212 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
213 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene8e39592017-12-26 13:55:48 +0800214
215/*
216 * skip first reserved entry: address, type, addend
217 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100218 bne t1, t2, 7f
Rick Chene8e39592017-12-26 13:55:48 +0800219
2206:
Lukas Auerc55309c2018-11-22 11:26:24 +0100221 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
222 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
223 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
224 LREG t3, -(REGBYTES*3)(t1)
225 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
226 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
227 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
228 SREG t5, 0(t3)
Rick Chene8e39592017-12-26 13:55:48 +08002297:
Lukas Auerc55309c2018-11-22 11:26:24 +0100230 addi t1, t1, (REGBYTES*3)
231 ble t1, t2, 6b
Rick Chene8e39592017-12-26 13:55:48 +0800232
2338:
Lukas Auerc55309c2018-11-22 11:26:24 +0100234 la t4, __dyn_sym_start
235 add t4, t4, t6
Rick Chene8e39592017-12-26 13:55:48 +0800236
2379:
Lukas Auerc55309c2018-11-22 11:26:24 +0100238 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
239 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
240 andi t5, t5, 0xFF /* t5 <--- relocation type */
241 li t3, RELOC_TYPE
242 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene8e39592017-12-26 13:55:48 +0800243
Lukas Auerc55309c2018-11-22 11:26:24 +0100244 LREG t3, -(REGBYTES*3)(t1)
245 li t5, SYM_SIZE
246 mul t0, t0, t5
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100247 add s5, t4, t0
248 LREG t5, REGBYTES(s5)
Lukas Auerc55309c2018-11-22 11:26:24 +0100249 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
250 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
251 SREG t5, 0(t3)
Rick Chene8e39592017-12-26 13:55:48 +080025210:
Lukas Auerc55309c2018-11-22 11:26:24 +0100253 addi t1, t1, (REGBYTES*3)
254 ble t1, t2, 9b
Rick Chene8e39592017-12-26 13:55:48 +0800255
256/*
257 * trap update
258*/
Lukas Auerc55309c2018-11-22 11:26:24 +0100259 la t0, trap_entry
260 add t0, t0, t6
Anup Pateld2db2a82018-12-03 10:57:40 +0530261 csrw MODE_PREFIX(tvec), t0
Rick Chene8e39592017-12-26 13:55:48 +0800262
263clear_bss:
Lukas Auerc55309c2018-11-22 11:26:24 +0100264 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
265 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
266 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
267 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100268 beq t0, t1, relocate_secondary_harts
Rick Chene8e39592017-12-26 13:55:48 +0800269
270clbss_l:
Lukas Auer31f90582018-11-22 11:26:28 +0100271 SREG zero, 0(t0) /* clear loop... */
Lukas Auerc55309c2018-11-22 11:26:24 +0100272 addi t0, t0, REGBYTES
273 bne t0, t1, clbss_l
Rick Chene8e39592017-12-26 13:55:48 +0800274
Lukas Auer3dea63c2019-03-17 19:28:37 +0100275relocate_secondary_harts:
276#ifdef CONFIG_SMP
277 /* send relocation IPI */
278 la t0, secondary_hart_relocate
279 add a0, t0, t6
280
281 /* store relocation offset */
282 mv s5, t6
283
284 mv a1, s2
285 mv a2, s3
286 jal smp_call_function
287
Lukas Auer8ac39e22019-03-17 19:28:40 +0100288 /* hang if relocation of secondary harts has failed */
289 beqz a0, 1f
290 mv a1, a0
291 la a0, secondary_harts_relocation_error
292 jal printf
293 jal hang
294
Lukas Auer3dea63c2019-03-17 19:28:37 +0100295 /* restore relocation offset */
Lukas Auer8ac39e22019-03-17 19:28:40 +01002961: mv t6, s5
Lukas Auer3dea63c2019-03-17 19:28:37 +0100297#endif
298
Rick Chene8e39592017-12-26 13:55:48 +0800299/*
300 * We are done. Do not return, instead branch to second part of board
301 * initialization, now running from RAM.
302 */
303call_board_init_r:
Rick Chen52923c62018-11-07 09:34:06 +0800304 jal invalidate_icache_all
305 jal flush_dcache_all
Lukas Auerc55309c2018-11-22 11:26:24 +0100306 la t0, board_init_r
307 mv t4, t0 /* offset of board_init_r() */
308 add t4, t4, t6 /* real address of board_init_r() */
Rick Chene8e39592017-12-26 13:55:48 +0800309/*
310 * setup parameters for board_init_r
311 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100312 mv a0, s3 /* gd_t */
313 mv a1, s4 /* dest_addr */
Rick Chene8e39592017-12-26 13:55:48 +0800314
315/*
316 * jump to it ...
317 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100318 jr t4 /* jump to board_init_r() */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100319
320#ifdef CONFIG_SMP
321hart_out_of_bounds_loop:
322 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
323 wfi
324 j hart_out_of_bounds_loop
325#endif
326
327#ifdef CONFIG_SMP
328/* SMP relocation entry */
329secondary_hart_relocate:
330 /* a1: new sp */
331 /* a2: new gd */
332 /* tp: hart id */
333
334 /* setup stack */
335 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
336 sub sp, a1, t0
337
338 /* update global data pointer */
339 mv gp, a2
340#endif
341
342secondary_hart_loop:
343 wfi
344
345#ifdef CONFIG_SMP
346 csrr t0, MODE_PREFIX(ip)
Lukas Auerfbfd92b2019-08-21 21:14:43 +0200347#if CONFIG_IS_ENABLED(RISCV_MMODE)
Lukas Auer3dea63c2019-03-17 19:28:37 +0100348 andi t0, t0, MIE_MSIE
349#else
350 andi t0, t0, SIE_SSIE
351#endif
352 beqz t0, secondary_hart_loop
353
354 mv a0, tp
355 jal handle_ipi
356#endif
357
358 j secondary_hart_loop