1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#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);
#define OSRoundUp32B(x) (((u32)(x) + 32 - 1) & ~(32 - 1))
#define OSRoundDown32B(x) (((u32)(x)) & ~(32 - 1))
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
|