kernel/arch/riscv64: Correct some architecture headers

This commit is contained in:
Alexander von Gluck IV
2019-04-04 09:09:38 -05:00
parent 45b21f00ce
commit 5e06ebe141
+48 -7
View File
@@ -1,11 +1,52 @@
/*
** Copyright 2003, Marcus Overhagen. All rights reserved.
** Distributed under the terms of the MIT license.
*/
#ifndef _KERNEL_ARCH_CPU_H
#define _KERNEL_ARCH_CPU_H
* Copyright 2003-2004, Axel Dörfler, [email protected].
* Copyright 2019, Adrien Destugues, [email protected].
* Distributed under the terms of the MIT License.
*/
#ifndef _KERNEL_ARCH_RISCV64_CPU_H
#define _KERNEL_ARCH_RISCV64_CPU_H
#define CPU_MAX_CACHE_LEVEL 8
#define ATOMIC_FUNCS_ARE_SYSCALLS 1
#include <arch/riscv64/arch_thread_types.h>
//#include <arch/riscv64/cpu.h>
#include <kernel.h>
#define CPU_MAX_CACHE_LEVEL 8
#define CACHE_LINE_SIZE 64
#define set_ac()
#define clear_ac()
typedef struct arch_cpu_info {
int null;
} arch_cpu_info;
#ifdef __cplusplus
extern "C" {
#endif
static inline void
arch_cpu_pause(void)
{
// TODO: CPU pause
}
static inline void
arch_cpu_idle(void)
{
// TODO: CPU idle call
}
#ifdef __cplusplus
}
#endif
#endif /* _KERNEL_ARCH_RISCV64_CPU_H */