26 lines
542 B
C
26 lines
542 B
C
#ifndef HAL_CPU_H_
|
|
#define HAL_CPU_H_
|
|
|
|
#include <stdint.h>
|
|
#include "compiler/attr.h"
|
|
#include "vmm.h"
|
|
#include "intr.h"
|
|
|
|
#define HAL_CPUS_MAX 0xff
|
|
|
|
#define HAL_CPU_EFER 0xC0000080
|
|
|
|
#define HAL_CPU_STAR 0xC0000081
|
|
#define HAL_CPU_LSTAR 0xC0000082
|
|
#define HAL_CPU_CSTAR 0xC0000083
|
|
#define HAL_CPU_FMASK 0xC0000084
|
|
|
|
#define HAL_CPU_FSBASE 0xC0000100
|
|
#define HAL_CPU_GSBASE 0xC0000101
|
|
#define HAL_CPU_KGSBASE 0xC0000102
|
|
|
|
uint64_t hal_cpu_rdmsr(uint32_t id);
|
|
uint64_t hal_cpu_wrmsr(uint32_t id, uint64_t val);
|
|
|
|
#endif // HAL_CPU_H_
|