blob: 60ac8c621e4d20df2d1a6662725091983a6f5e5d [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>
Lukas Auer3dea63c2019-03-17 19:28:37 +010016#include <asm/csr.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 Auere0432402019-03-17 19:28:39 +010043#ifdef CONFIG_RISCV_MMODE
44 csrr a0, mhartid
45#endif
46
Lukas Auer5d8b2e72018-11-22 11:26:29 +010047 /* save hart id and dtb pointer */
Lukas Auer1446b262019-03-17 19:28:36 +010048 mv tp, a0
Lukas Auer5d8b2e72018-11-22 11:26:29 +010049 mv s1, a1
50
Lukas Auerc55309c2018-11-22 11:26:24 +010051 la t0, trap_entry
Anup Pateld2db2a82018-12-03 10:57:40 +053052 csrw MODE_PREFIX(tvec), t0
Lukas Auer31f90582018-11-22 11:26:28 +010053
54 /* mask all interrupts */
Anup Pateld2db2a82018-12-03 10:57:40 +053055 csrw MODE_PREFIX(ie), zero
Rick Chene8e39592017-12-26 13:55:48 +080056
Lukas Auer3dea63c2019-03-17 19:28:37 +010057#ifdef CONFIG_SMP
58 /* check if hart is within range */
59 /* tp: hart id */
60 li t0, CONFIG_NR_CPUS
61 bge tp, t0, hart_out_of_bounds_loop
62#endif
63
64#ifdef CONFIG_SMP
65 /* set xSIE bit to receive IPIs */
66#ifdef CONFIG_RISCV_MMODE
67 li t0, MIE_MSIE
68#else
69 li t0, SIE_SSIE
70#endif
71 csrs MODE_PREFIX(ie), t0
72#endif
73
Rick Chene8e39592017-12-26 13:55:48 +080074/*
Rick Chene8e39592017-12-26 13:55:48 +080075 * Set stackpointer in internal/ex RAM to call board_init_f
76 */
77call_board_init_f:
Lukas Auerc55309c2018-11-22 11:26:24 +010078 li t0, -16
79 li t1, CONFIG_SYS_INIT_SP_ADDR
80 and sp, t1, t0 /* force 16 byte alignment */
Rick Chene8e39592017-12-26 13:55:48 +080081
Rick Chene8e39592017-12-26 13:55:48 +080082call_board_init_f_0:
83 mv a0, sp
84 jal board_init_f_alloc_reserve
Lukas Auer3dea63c2019-03-17 19:28:37 +010085
86 /*
87 * Set global data pointer here for all harts, uninitialized at this
88 * point.
89 */
90 mv gp, a0
91
92 /* setup stack */
93#ifdef CONFIG_SMP
94 /* tp: hart id */
95 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
96 sub sp, a0, t0
97#else
Rick Chene8e39592017-12-26 13:55:48 +080098 mv sp, a0
Lukas Auer3dea63c2019-03-17 19:28:37 +010099#endif
100
Rick Chenbdce3892019-04-30 13:49:33 +0800101#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100102 /*
103 * Pick hart to initialize global data and run U-Boot. The other harts
104 * wait for initialization to complete.
105 */
106 la t0, hart_lottery
107 li s2, 1
108 amoswap.w s2, t1, 0(t0)
109 bnez s2, wait_for_gd_init
Rick Chenbdce3892019-04-30 13:49:33 +0800110#else
111 bnez tp, secondary_hart_loop
112#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100113
Rick Chenf9281b82019-04-30 13:49:35 +0800114#ifdef CONFIG_OF_PRIOR_STAGE
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100115 la t0, prior_stage_fdt_address
116 SREG s1, 0(t0)
Rick Chenf9281b82019-04-30 13:49:35 +0800117#endif
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100118
Rick Chene8e39592017-12-26 13:55:48 +0800119 jal board_init_f_init_reserve
120
Bin Meng51ab4572018-12-12 06:12:45 -0800121 /* save the boot hart id to global_data */
Lukas Auer1446b262019-03-17 19:28:36 +0100122 SREG tp, GD_BOOT_HART(gp)
Bin Meng51ab4572018-12-12 06:12:45 -0800123
Rick Chenbdce3892019-04-30 13:49:33 +0800124#ifndef CONFIG_XIP
Lukas Auer3dea63c2019-03-17 19:28:37 +0100125 la t0, available_harts_lock
126 fence rw, w
127 amoswap.w zero, zero, 0(t0)
128
129wait_for_gd_init:
130 la t0, available_harts_lock
131 li t1, 1
1321: amoswap.w t1, t1, 0(t0)
133 fence r, rw
134 bnez t1, 1b
135
136 /* register available harts in the available_harts mask */
137 li t1, 1
138 sll t1, t1, tp
139 LREG t2, GD_AVAILABLE_HARTS(gp)
140 or t2, t2, t1
141 SREG t2, GD_AVAILABLE_HARTS(gp)
142
143 fence rw, w
144 amoswap.w zero, zero, 0(t0)
145
146 /*
147 * Continue on hart lottery winner, others branch to
148 * secondary_hart_loop.
149 */
150 bnez s2, secondary_hart_loop
Rick Chenbdce3892019-04-30 13:49:33 +0800151#endif
Lukas Auer3dea63c2019-03-17 19:28:37 +0100152
Lukas Auer2503ccc2019-03-17 19:28:35 +0100153 /* Enable cache */
154 jal icache_enable
155 jal dcache_enable
156
157#ifdef CONFIG_DEBUG_UART
158 jal debug_uart_init
159#endif
160
Lukas Auerc55309c2018-11-22 11:26:24 +0100161 mv a0, zero /* a0 <-- boot_flags = 0 */
162 la t5, board_init_f
163 jr t5 /* jump to board_init_f() */
Rick Chene8e39592017-12-26 13:55:48 +0800164
165/*
166 * void relocate_code (addr_sp, gd, addr_moni)
167 *
168 * This "function" does not return, instead it continues in RAM
169 * after relocating the monitor code.
170 *
171 */
172.globl relocate_code
173relocate_code:
Lukas Auerc55309c2018-11-22 11:26:24 +0100174 mv s2, a0 /* save addr_sp */
175 mv s3, a1 /* save addr of gd */
176 mv s4, a2 /* save addr of destination */
Rick Chene8e39592017-12-26 13:55:48 +0800177
178/*
179 *Set up the stack
180 */
181stack_setup:
Lukas Auer3dea63c2019-03-17 19:28:37 +0100182#ifdef CONFIG_SMP
183 /* tp: hart id */
184 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
185 sub sp, s2, t0
186#else
Lukas Auerc55309c2018-11-22 11:26:24 +0100187 mv sp, s2
Lukas Auer3dea63c2019-03-17 19:28:37 +0100188#endif
189
Lukas Auerc55309c2018-11-22 11:26:24 +0100190 la t0, _start
191 sub t6, s4, t0 /* t6 <- relocation offset */
192 beq t0, s4, clear_bss /* skip relocation */
Rick Chene8e39592017-12-26 13:55:48 +0800193
Lukas Auerc55309c2018-11-22 11:26:24 +0100194 mv t1, s4 /* t1 <- scratch for copy_loop */
195 la t3, __bss_start
196 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
197 add t2, t0, t3 /* t2 <- source end address */
Rick Chene8e39592017-12-26 13:55:48 +0800198
199copy_loop:
Lukas Auerc55309c2018-11-22 11:26:24 +0100200 LREG t5, 0(t0)
201 addi t0, t0, REGBYTES
202 SREG t5, 0(t1)
203 addi t1, t1, REGBYTES
204 blt t0, t2, copy_loop
Rick Chene8e39592017-12-26 13:55:48 +0800205
206/*
207 * Update dynamic relocations after board_init_f
208 */
209fix_rela_dyn:
Lukas Auerc55309c2018-11-22 11:26:24 +0100210 la t1, __rel_dyn_start
211 la t2, __rel_dyn_end
212 beq t1, t2, clear_bss
213 add t1, t1, t6 /* t1 <- rela_dyn_start in RAM */
214 add t2, t2, t6 /* t2 <- rela_dyn_end in RAM */
Rick Chene8e39592017-12-26 13:55:48 +0800215
216/*
217 * skip first reserved entry: address, type, addend
218 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100219 bne t1, t2, 7f
Rick Chene8e39592017-12-26 13:55:48 +0800220
2216:
Lukas Auerc55309c2018-11-22 11:26:24 +0100222 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
223 li t3, R_RISCV_RELATIVE /* reloc type R_RISCV_RELATIVE */
224 bne t5, t3, 8f /* skip non-RISCV_RELOC entries */
225 LREG t3, -(REGBYTES*3)(t1)
226 LREG t5, -(REGBYTES)(t1) /* t5 <-- addend */
227 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
228 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
229 SREG t5, 0(t3)
Rick Chene8e39592017-12-26 13:55:48 +08002307:
Lukas Auerc55309c2018-11-22 11:26:24 +0100231 addi t1, t1, (REGBYTES*3)
232 ble t1, t2, 6b
Rick Chene8e39592017-12-26 13:55:48 +0800233
2348:
Lukas Auerc55309c2018-11-22 11:26:24 +0100235 la t4, __dyn_sym_start
236 add t4, t4, t6
Rick Chene8e39592017-12-26 13:55:48 +0800237
2389:
Lukas Auerc55309c2018-11-22 11:26:24 +0100239 LREG t5, -(REGBYTES*2)(t1) /* t5 <-- relocation info:type */
240 srli t0, t5, SYM_INDEX /* t0 <--- sym table index */
241 andi t5, t5, 0xFF /* t5 <--- relocation type */
242 li t3, RELOC_TYPE
243 bne t5, t3, 10f /* skip non-addned entries */
Rick Chene8e39592017-12-26 13:55:48 +0800244
Lukas Auerc55309c2018-11-22 11:26:24 +0100245 LREG t3, -(REGBYTES*3)(t1)
246 li t5, SYM_SIZE
247 mul t0, t0, t5
Lukas Auer5d8b2e72018-11-22 11:26:29 +0100248 add s5, t4, t0
249 LREG t5, REGBYTES(s5)
Lukas Auerc55309c2018-11-22 11:26:24 +0100250 add t5, t5, t6 /* t5 <-- location to fix up in RAM */
251 add t3, t3, t6 /* t3 <-- location to fix up in RAM */
252 SREG t5, 0(t3)
Rick Chene8e39592017-12-26 13:55:48 +080025310:
Lukas Auerc55309c2018-11-22 11:26:24 +0100254 addi t1, t1, (REGBYTES*3)
255 ble t1, t2, 9b
Rick Chene8e39592017-12-26 13:55:48 +0800256
257/*
258 * trap update
259*/
Lukas Auerc55309c2018-11-22 11:26:24 +0100260 la t0, trap_entry
261 add t0, t0, t6
Anup Pateld2db2a82018-12-03 10:57:40 +0530262 csrw MODE_PREFIX(tvec), t0
Rick Chene8e39592017-12-26 13:55:48 +0800263
264clear_bss:
Lukas Auerc55309c2018-11-22 11:26:24 +0100265 la t0, __bss_start /* t0 <- rel __bss_start in FLASH */
266 add t0, t0, t6 /* t0 <- rel __bss_start in RAM */
267 la t1, __bss_end /* t1 <- rel __bss_end in FLASH */
268 add t1, t1, t6 /* t1 <- rel __bss_end in RAM */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100269 beq t0, t1, relocate_secondary_harts
Rick Chene8e39592017-12-26 13:55:48 +0800270
271clbss_l:
Lukas Auer31f90582018-11-22 11:26:28 +0100272 SREG zero, 0(t0) /* clear loop... */
Lukas Auerc55309c2018-11-22 11:26:24 +0100273 addi t0, t0, REGBYTES
274 bne t0, t1, clbss_l
Rick Chene8e39592017-12-26 13:55:48 +0800275
Lukas Auer3dea63c2019-03-17 19:28:37 +0100276relocate_secondary_harts:
277#ifdef CONFIG_SMP
278 /* send relocation IPI */
279 la t0, secondary_hart_relocate
280 add a0, t0, t6
281
282 /* store relocation offset */
283 mv s5, t6
284
285 mv a1, s2
286 mv a2, s3
287 jal smp_call_function
288
Lukas Auer8ac39e22019-03-17 19:28:40 +0100289 /* hang if relocation of secondary harts has failed */
290 beqz a0, 1f
291 mv a1, a0
292 la a0, secondary_harts_relocation_error
293 jal printf
294 jal hang
295
Lukas Auer3dea63c2019-03-17 19:28:37 +0100296 /* restore relocation offset */
Lukas Auer8ac39e22019-03-17 19:28:40 +01002971: mv t6, s5
Lukas Auer3dea63c2019-03-17 19:28:37 +0100298#endif
299
Rick Chene8e39592017-12-26 13:55:48 +0800300/*
301 * We are done. Do not return, instead branch to second part of board
302 * initialization, now running from RAM.
303 */
304call_board_init_r:
Rick Chen52923c62018-11-07 09:34:06 +0800305 jal invalidate_icache_all
306 jal flush_dcache_all
Lukas Auerc55309c2018-11-22 11:26:24 +0100307 la t0, board_init_r
308 mv t4, t0 /* offset of board_init_r() */
309 add t4, t4, t6 /* real address of board_init_r() */
Rick Chene8e39592017-12-26 13:55:48 +0800310/*
311 * setup parameters for board_init_r
312 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100313 mv a0, s3 /* gd_t */
314 mv a1, s4 /* dest_addr */
Rick Chene8e39592017-12-26 13:55:48 +0800315
316/*
317 * jump to it ...
318 */
Lukas Auerc55309c2018-11-22 11:26:24 +0100319 jr t4 /* jump to board_init_r() */
Lukas Auer3dea63c2019-03-17 19:28:37 +0100320
321#ifdef CONFIG_SMP
322hart_out_of_bounds_loop:
323 /* Harts in this loop are out of bounds, increase CONFIG_NR_CPUS. */
324 wfi
325 j hart_out_of_bounds_loop
326#endif
327
328#ifdef CONFIG_SMP
329/* SMP relocation entry */
330secondary_hart_relocate:
331 /* a1: new sp */
332 /* a2: new gd */
333 /* tp: hart id */
334
335 /* setup stack */
336 slli t0, tp, CONFIG_STACK_SIZE_SHIFT
337 sub sp, a1, t0
338
339 /* update global data pointer */
340 mv gp, a2
341#endif
342
343secondary_hart_loop:
344 wfi
345
346#ifdef CONFIG_SMP
347 csrr t0, MODE_PREFIX(ip)
348#ifdef CONFIG_RISCV_MMODE
349 andi t0, t0, MIE_MSIE
350#else
351 andi t0, t0, SIE_SSIE
352#endif
353 beqz t0, secondary_hart_loop
354
355 mv a0, tp
356 jal handle_ipi
357#endif
358
359 j secondary_hart_loop