blob: c4f2d280a22b926efbc4e54193944e700dff4b7d (
plain) (
blame)
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
|
#ifndef APOS_ARCH_H
#define APOS_ARCH_H
/**
* @file arch.h
* Arch-specific generic stuff, generally implemented in
* arch/whatever/kernel/main.c
*/
#include <apos/types.h>
#if defined(riscv64)
#include "../../arch/riscv64/include/arch.h"
#elif defined(riscv32)
#include "../../arch/riscv32/include/arch.h"
#endif
/**
* Setup arch specific stuff.
*
* See arch documentation if there is any.
*
* @param fdt Global FDT.
* @return \ref OK if boot can continue, error otherwise.
* \todo Check errors.
*/
stat_t setup_arch(void *fdt);
#endif /* APOS_ARCH_H */
|