2022-11-15 19:10:32 +01:00
|
|
|
#pragma once
|
2022-12-04 12:42:43 +01:00
|
|
|
#include <luna/Result.h>
|
2022-11-15 19:10:32 +01:00
|
|
|
|
2022-11-16 17:37:18 +01:00
|
|
|
struct Registers;
|
|
|
|
|
2022-11-15 19:10:32 +01:00
|
|
|
namespace CPU
|
|
|
|
{
|
|
|
|
Result<const char*> identify();
|
2022-11-18 21:04:53 +01:00
|
|
|
const char* platform_string();
|
|
|
|
|
2022-11-15 19:10:32 +01:00
|
|
|
void platform_init();
|
2022-11-19 20:01:01 +01:00
|
|
|
void platform_finish_init();
|
2022-11-15 19:10:32 +01:00
|
|
|
|
|
|
|
[[noreturn]] void efficient_halt();
|
2022-11-15 20:41:59 +01:00
|
|
|
|
|
|
|
void switch_kernel_stack(u64 top);
|
2022-11-19 20:01:01 +01:00
|
|
|
|
|
|
|
void enable_interrupts();
|
|
|
|
void disable_interrupts();
|
|
|
|
void wait_for_interrupt();
|
2022-11-23 19:34:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void kernel_yield();
|