aboutsummaryrefslogtreecommitdiff
path: root/src/arch/riscv/bootblock.S
blob: 514511ed0d397ae3655b9d09d22d5f30162be758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Early initialization code for RISC-V
 *
 * Copyright 2013 Google Inc.
 * Copyright 2016 Jonathan Neuschäfer <j.neuschaefer@gmx.net>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; version 2 of
 * the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
 * GNU General Public License for more details.
 */

#include <arch/encoding.h>

.section ".text._start", "ax", %progbits

.globl _start
_start:

#define STACK_START 0x80800000 /* 2GiB + 8MiB */
#define STACK_SIZE  0x0000fff0

	li sp, STACK_START + STACK_SIZE

	# make room for HLS and initialize it
	addi sp, sp, -64 // MENTRY_FRAME_SIZE
	csrr a0, mhartid
	call hls_init

	# poison the stack
	li t1, STACK_START
	li t0, 0xdeadbeef
	sd t0, 0(t1)

	la t0, trap_entry
	csrw mtvec, t0

	# clear any pending interrupts
	csrwi mip, 0

	# set up the mstatus register for VM
	call mstatus_init
	tail main