aboutsummaryrefslogtreecommitdiff
path: root/src/arch/riscv64/boot/entry.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/riscv64/boot/entry.S')
-rw-r--r--src/arch/riscv64/boot/entry.S37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/arch/riscv64/boot/entry.S b/src/arch/riscv64/boot/entry.S
new file mode 100644
index 0000000..f5fa092
--- /dev/null
+++ b/src/arch/riscv64/boot/entry.S
@@ -0,0 +1,37 @@
+.section .init
+
+.option norvc
+
+.type start, @function
+.global start
+start:
+ .cfi_startproc
+
+.option push
+.option norelax
+ la gp, global_pointer
+.option pop
+
+ /* Reset satp */
+ csrw satp, zero
+
+ /* Setup stack */
+ la sp, stack_top
+
+ /* Clear the BSS section */
+ la t5, bss_start
+ la t6, bss_end
+bss_clear:
+ sd zero, (t5)
+ addi t5, t5, 8
+ bltu t5, t6, bss_clear
+
+ la t0, kernel_main
+ csrw sepc, t0
+
+ /* Jump to kernel! */
+ tail kernel_main
+
+ .cfi_endproc
+
+.end