aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/kernel/main.c
blob: 9ce256e012ac02cfd75118ea20f5e7077a6048fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <apos/utils.h>
#include <csr.h>

void arch_setup(void *fdt)
{
	UNUSED(fdt);
	/* allow supervisor code to touch user pages */
	csr_set(CSR_SSTATUS, SSTATUS_SUM);
	/* mark that we want to eventually jump to userspace */
	csr_clear(CSR_SSTATUS, SSTATUS_SPP);
}