1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2012 Regents of the University of California
6 #include <asm/thread_info.h>
7 #include <asm/asm-offsets.h>
9 #include <linux/init.h>
10 #include <linux/linkage.h>
11 #include <asm/thread_info.h>
14 #include <asm/hwcap.h>
15 #include <asm/image.h>
20 * Image header expected by Linux boot-loaders. The image header data
21 * structure is described in asm/image.h.
22 * Do not modify it without modifying the structure and all bootloaders
23 * that expects this header format!!
25 /* jump to start kernel */
30 #if __riscv_xlen == 64
31 /* Image load offset(2MB) from start of RAM */
34 /* Image load offset(4MB) from start of RAM */
37 /* Effective size of kernel image */
40 .word RISCV_HEADER_VERSION
43 .ascii RISCV_IMAGE_MAGIC
45 .ascii RISCV_IMAGE_MAGIC2
51 /* Relocate return address */
57 /* Point stvec to virtual address of intruction after satp write */
62 /* Compute satp for kernel page tables, but don't load it yet */
63 srl a2, a0, PAGE_SHIFT
68 * Load trampoline page directory, which will cause us to trap to
69 * stvec if VA != PA, or simply fall through if VA == PA. We need a
70 * full fence here because setup_vm() just wrote these PTEs and we need
71 * to ensure the new translations are in use.
73 la a0, trampoline_pg_dir
74 srl a0, a0, PAGE_SHIFT
80 /* Set trap vector to spin forever to help debug */
81 la a0, .Lsecondary_park
84 /* Reload the global pointer */
87 la gp, __global_pointer$
91 * Switch to kernel page tables. A full fence is necessary in order to
92 * avoid using the trampoline translations, which are only correct for
93 * the first superpage. Fetching the fence is guarnteed to work
94 * because that first superpage is translated the same way.
100 #endif /* CONFIG_MMU */
102 .global secondary_start_sbi
104 /* Mask all interrupts */
108 /* Load the global pointer */
111 la gp, __global_pointer$
115 * Disable FPU to detect illegal usage of
116 * floating point in kernel space
121 /* Set trap vector to spin forever to help debug */
122 la a3, .Lsecondary_park
126 la a4, __cpu_up_stack_pointer
127 la a5, __cpu_up_task_pointer
133 .global secondary_start_common
134 secondary_start_common:
137 /* Enable virtual memory and relocate to virtual address */
138 la a0, swapper_pg_dir
142 #endif /* CONFIG_SMP */
145 /* We lack SMP support or have too many harts, so park this hart */
153 /* Mask all interrupts */
157 #ifdef CONFIG_RISCV_M_MODE
158 /* flush the instruction cache */
161 /* Reset all registers except ra, a0, a1 */
164 /* Setup a PMP to permit access to all of memory. */
166 csrw CSR_PMPADDR0, a0
167 li a0, (PMP_A_NAPOT | PMP_R | PMP_W | PMP_X)
171 * The hartid in a0 is expected later on, and we have no firmware
175 #endif /* CONFIG_RISCV_M_MODE */
177 /* Load the global pointer */
180 la gp, __global_pointer$
184 * Disable FPU to detect illegal usage of
185 * floating point in kernel space
191 li t0, CONFIG_NR_CPUS
192 blt a0, t0, .Lgood_cores
193 tail .Lsecondary_park
197 /* Pick one hart to run the main boot sequence */
200 amoadd.w a3, a2, (a3)
201 bnez a3, .Lsecondary_start
203 /* Clear BSS for flat non-ELF images */
206 ble a4, a3, clear_bss_done
209 add a3, a3, RISCV_SZPTR
210 blt a3, a4, clear_bss
213 /* Save hart ID and DTB physical address */
216 la a2, boot_cpu_hartid
219 /* Initialize page tables and relocate to virtual addresses */
220 la sp, init_thread_union + THREAD_SIZE
226 #endif /* CONFIG_MMU */
228 /* Restore C environment */
230 sw zero, TASK_TI_CPU(tp)
231 la sp, init_thread_union + THREAD_SIZE
234 call kasan_early_init
236 /* Start the kernel */
243 /* Set trap vector to spin forever to help debug */
244 la a3, .Lsecondary_park
248 la a1, __cpu_up_stack_pointer
249 la a2, __cpu_up_task_pointer
254 * This hart didn't win the lottery, so we wait for the winning hart to
255 * get far enough along the boot process that it should continue.
258 /* FIXME: We should WFI to save some energy here. */
261 beqz sp, .Lwait_for_cpu_up
262 beqz tp, .Lwait_for_cpu_up
265 tail secondary_start_common
270 #ifdef CONFIG_RISCV_M_MODE
304 andi t0, t0, (COMPAT_HWCAP_ISA_F | COMPAT_HWCAP_ISA_D)
305 beqz t0, .Lreset_regs_done
342 /* note that the caller must clear SR_FS */
343 #endif /* CONFIG_FPU */
347 #endif /* CONFIG_RISCV_M_MODE */
350 /* Empty zero page */