Files
ss/include/rvl/OS/OS.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

92 lines
2.1 KiB
C

#ifndef RVL_SDK_OS_H
#define RVL_SDK_OS_H
#include "common.h"
#include "rvl/OS/OSContext.h"
#include "rvl/OS/OSExec.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
OS_CONSOLE_MASK = 0xF0000000,
OS_CONSOLE_MASK_RVL = 0x00000000,
OS_CONSOLE_MASK_EMU = 0x10000000,
OS_CONSOLE_MASK_TDEV = 0x20000000,
OS_CONSOLE_RVL_PP_1 = 0x00000011,
OS_CONSOLE_RVL_PP_2_1 = 0x00000012,
OS_CONSOLE_RVL_PP_2_2 = 0x00000020,
OS_CONSOLE_RVL_EMU = 0x10000008,
OS_CONSOLE_NDEV_1_0 = 0x10000010,
OS_CONSOLE_NDEV_1_1 = 0x10000011,
OS_CONSOLE_NDEV_1_2 = 0x10000012,
OS_CONSOLE_NDEV_2_0 = 0x10000020,
OS_CONSOLE_NDEV_2_1 = 0x10000021,
} OSConsoleType;
typedef enum {
OS_APP_TYPE_IPL = 0x40,
OS_APP_TYPE_DVD = 0x80,
OS_APP_TYPE_CHANNEL = 0x81,
} OSAppType;
typedef enum {
OS_EXC_SYSTEM_RESET,
OS_EXC_MACHINE_CHECK,
OS_EXC_DSI,
OS_EXC_ISI,
OS_EXC_EXT_INTERRUPT,
OS_EXC_ALIGNMENT,
OS_EXC_PROGRAM,
OS_EXC_FP_UNAVAIL,
OS_EXC_DECREMENTER,
OS_EXC_SYSTEM_CALL,
OS_EXC_TRACE,
OS_EXC_PERF_MONITOR,
OS_EXC_IABR,
OS_EXC_SMI,
OS_EXC_THERMAL_INT,
OS_EXC_MAX
} OSExceptionType;
typedef struct OSIOSRev {
u8 idHi; // at 0x0
u8 idLo; // at 0x1
u8 verMajor; // at 0x2
u8 verMinor; // at 0x3
u8 buildMon; // at 0x4
u8 buildDay; // at 0x5
u16 buildYear; // at 0x6
} OSIOSRev;
typedef void (*OSExceptionHandler)(u8 type, OSContext *ctx);
extern BOOL __OSInIPL;
extern BOOL __OSInNandBoot;
extern BOOL __OSIsGcam;
extern s64 __OSStartTime;
extern OSExecParams __OSRebootParams;
void __OSFPRInit(void);
u32 __OSGetHollywoodRev(void);
void __OSGetIOSRev(OSIOSRev *rev);
u32 OSGetConsoleType(void);
void OSInit(void);
OSExceptionHandler __OSSetExceptionHandler(u8 type, OSExceptionHandler handler);
OSExceptionHandler __OSGetExceptionHandler(u8 type);
void OSDefaultExceptionHandler(u8 type, OSContext *ctx);
void __OSPSInit(void);
u32 __OSGetDIConfig(void);
void OSRegisterVersion(const char *ver);
const char *OSGetAppGamename(void);
u8 OSGetAppType(void);
#ifdef __cplusplus
}
#endif
#endif