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
50 /* Mask all interrupts */
54 #ifdef CONFIG_RISCV_M_MODE
55 /* flush the instruction cache */
58 /* Reset all registers except ra, a0, a1 */
61 /* Setup a PMP to permit access to all of memory. */
64 li a0, (PMP_A_NAPOT | PMP_R | PMP_W | PMP_X)
68 * The hartid in a0 is expected later on, and we have no firmware
72 #endif /* CONFIG_RISCV_M_MODE */
74 /* Load the global pointer */
77 la gp, __global_pointer$
81 * Disable FPU to detect illegal usage of
82 * floating point in kernel space
89 blt a0, t0, .Lgood_cores
94 /* Pick one hart to run the main boot sequence */
98 bnez a3, .Lsecondary_start
100 /* Clear BSS for flat non-ELF images */
103 ble a4, a3, clear_bss_done
106 add a3, a3, RISCV_SZPTR
107 blt a3, a4, clear_bss
110 /* Save hart ID and DTB physical address */
113 la a2, boot_cpu_hartid
116 /* Initialize page tables and relocate to virtual addresses */
117 la sp, init_thread_union + THREAD_SIZE
123 #endif /* CONFIG_MMU */
125 /* Restore C environment */
127 sw zero, TASK_TI_CPU(tp)
128 la sp, init_thread_union + THREAD_SIZE
131 call kasan_early_init
133 /* Start the kernel */
139 /* Relocate return address */
145 /* Point stvec to virtual address of intruction after satp write */
150 /* Compute satp for kernel page tables, but don't load it yet */
151 srl a2, a0, PAGE_SHIFT
156 * Load trampoline page directory, which will cause us to trap to
157 * stvec if VA != PA, or simply fall through if VA == PA. We need a
158 * full fence here because setup_vm() just wrote these PTEs and we need
159 * to ensure the new translations are in use.
161 la a0, trampoline_pg_dir
162 srl a0, a0, PAGE_SHIFT
168 /* Set trap vector to spin forever to help debug */
169 la a0, .Lsecondary_park
172 /* Reload the global pointer */
175 la gp, __global_pointer$
179 * Switch to kernel page tables. A full fence is necessary in order to
180 * avoid using the trampoline translations, which are only correct for
181 * the first superpage. Fetching the fence is guarnteed to work
182 * because that first superpage is translated the same way.
188 #endif /* CONFIG_MMU */
192 /* Set trap vector to spin forever to help debug */
193 la a3, .Lsecondary_park
197 la a1, __cpu_up_stack_pointer
198 la a2, __cpu_up_task_pointer
203 * This hart didn't win the lottery, so we wait for the winning hart to
204 * get far enough along the boot process that it should continue.
207 /* FIXME: We should WFI to save some energy here. */
210 beqz sp, .Lwait_for_cpu_up
211 beqz tp, .Lwait_for_cpu_up
215 /* Enable virtual memory and relocate to virtual address */
216 la a0, swapper_pg_dir
225 #ifdef CONFIG_RISCV_M_MODE
259 andi t0, t0, (COMPAT_HWCAP_ISA_F | COMPAT_HWCAP_ISA_D)
260 beqz t0, .Lreset_regs_done
297 /* note that the caller must clear SR_FS */
298 #endif /* CONFIG_FPU */
302 #endif /* CONFIG_RISCV_M_MODE */
304 .section ".text", "ax",@progbits
307 /* We lack SMP support or have too many harts, so park this hart */
312 /* Empty zero page */