2022-11-15 18:10:32 +00:00
|
|
|
#pragma once
|
2022-12-04 11:42:43 +00:00
|
|
|
#include <luna/Result.h>
|
2022-11-15 18:10:32 +00:00
|
|
|
|
2022-11-16 16:37:18 +00:00
|
|
|
struct Registers;
|
|
|
|
|
2022-11-15 18:10:32 +00:00
|
|
|
namespace CPU
|
|
|
|
{
|
|
|
|
Result<const char*> identify();
|
2022-11-18 20:04:53 +00:00
|
|
|
const char* platform_string();
|
|
|
|
|
2022-11-15 18:10:32 +00:00
|
|
|
void platform_init();
|
2022-11-19 19:01:01 +00:00
|
|
|
void platform_finish_init();
|
2022-11-15 18:10:32 +00:00
|
|
|
|
|
|
|
[[noreturn]] void efficient_halt();
|
2022-11-15 19:41:59 +00:00
|
|
|
|
2022-12-07 13:46:56 +00:00
|
|
|
[[noreturn]] void idle_loop();
|
2022-12-07 11:26:09 +00:00
|
|
|
|
2022-11-15 19:41:59 +00:00
|
|
|
void switch_kernel_stack(u64 top);
|
2022-11-19 19:01:01 +00:00
|
|
|
|
|
|
|
void enable_interrupts();
|
|
|
|
void disable_interrupts();
|
|
|
|
void wait_for_interrupt();
|
2022-12-07 16:39:59 +00:00
|
|
|
|
|
|
|
void get_stack_trace(void (*callback)(u64, void*), void* arg);
|
2022-12-07 17:11:24 +00:00
|
|
|
void print_stack_trace();
|
2022-12-07 16:39:59 +00:00
|
|
|
void get_stack_trace_at(Registers* regs, void (*callback)(u64, void*), void* arg);
|
2022-12-07 17:11:24 +00:00
|
|
|
void print_stack_trace_at(Registers* regs);
|
2022-12-07 14:55:58 +00:00
|
|
|
}
|