14 lines
288 B
C
14 lines
288 B
C
#ifndef _KERNEL_PLATFORM_RISCV64_CPUINFO_H
|
|
#define _KERNEL_PLATFORM_RISCV64_CPUINFO_H
|
|
|
|
#include <libkern/c_attrs.h>
|
|
#include <libkern/types.h>
|
|
#include <platform/generic/cpu.h>
|
|
|
|
static inline bool cpuinfo_has_1gb_pages()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
#endif // _KERNEL_PLATFORM_RISCV64_CPUINFO_H
|