2020-10-03 15:22:44 +00:00
|
|
|
#include "global.h"
|
|
|
|
#include "vt.h"
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2020-04-16 21:36:12 +00:00
|
|
|
s32 gScreenWidth = SCREEN_WIDTH;
|
|
|
|
s32 gScreenHeight = SCREEN_HEIGHT;
|
2020-03-17 04:31:30 +00:00
|
|
|
u32 gSystemHeapSize = 0;
|
|
|
|
|
2020-03-20 11:43:51 +00:00
|
|
|
PreNmiBuff* gAppNmiBufferPtr;
|
2020-03-17 04:31:30 +00:00
|
|
|
SchedContext gSchedContext;
|
|
|
|
PadMgr gPadMgr;
|
|
|
|
IrqMgr gIrqMgr;
|
|
|
|
u32 gSegments[NUM_SEGMENTS];
|
|
|
|
OSThread sGraphThread;
|
2022-02-06 18:00:01 +00:00
|
|
|
STACK(sGraphStack, 0x1800);
|
|
|
|
STACK(sSchedStack, 0x600);
|
|
|
|
STACK(sAudioStack, 0x800);
|
|
|
|
STACK(sPadMgrStack, 0x500);
|
|
|
|
STACK(sIrqMgrStack, 0x500);
|
2020-03-17 04:31:30 +00:00
|
|
|
StackEntry sGraphStackInfo;
|
|
|
|
StackEntry sSchedStackInfo;
|
|
|
|
StackEntry sAudioStackInfo;
|
|
|
|
StackEntry sPadMgrStackInfo;
|
|
|
|
StackEntry sIrqMgrStackInfo;
|
2020-05-11 00:04:41 +00:00
|
|
|
AudioMgr gAudioMgr;
|
2020-03-17 04:31:30 +00:00
|
|
|
OSMesgQueue sSiIntMsgQ;
|
|
|
|
OSMesg sSiIntMsgBuf[1];
|
|
|
|
|
2021-02-14 00:49:40 +00:00
|
|
|
void Main_LogSystemHeap(void) {
|
2020-03-17 04:31:30 +00:00
|
|
|
osSyncPrintf(VT_FGCOL(GREEN));
|
2021-09-04 13:33:19 +00:00
|
|
|
// "System heap size% 08x (% dKB) Start address% 08x"
|
2020-03-22 21:19:43 +00:00
|
|
|
osSyncPrintf("システムヒープサイズ %08x(%dKB) 開始アドレス %08x\n", gSystemHeapSize, gSystemHeapSize / 1024,
|
|
|
|
gSystemHeap);
|
2020-03-17 04:31:30 +00:00
|
|
|
osSyncPrintf(VT_RST);
|
|
|
|
}
|
|
|
|
|
2021-02-14 00:49:40 +00:00
|
|
|
void Main(void* arg) {
|
2020-03-17 04:31:30 +00:00
|
|
|
IrqMgrClient irqClient;
|
|
|
|
OSMesgQueue irqMgrMsgQ;
|
|
|
|
OSMesg irqMgrMsgBuf[60];
|
2022-03-13 23:22:14 +00:00
|
|
|
u32 systemHeapStart;
|
2020-03-17 04:31:30 +00:00
|
|
|
u32 fb;
|
2022-03-13 23:22:14 +00:00
|
|
|
s32 debugHeapStart;
|
2020-03-17 04:31:30 +00:00
|
|
|
s32 debugHeapSize;
|
2020-03-22 21:19:43 +00:00
|
|
|
s16* msg;
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2021-09-04 13:33:19 +00:00
|
|
|
osSyncPrintf("mainproc 実行開始\n"); // "Start running"
|
2020-03-17 04:31:30 +00:00
|
|
|
gScreenWidth = SCREEN_WIDTH;
|
|
|
|
gScreenHeight = SCREEN_HEIGHT;
|
2020-03-20 11:43:51 +00:00
|
|
|
gAppNmiBufferPtr = (PreNmiBuff*)osAppNmiBuffer;
|
|
|
|
PreNmiBuff_Init(gAppNmiBufferPtr);
|
2020-10-03 15:22:44 +00:00
|
|
|
Fault_Init();
|
2020-03-17 04:31:30 +00:00
|
|
|
SysCfb_Init(0);
|
2022-03-13 23:22:14 +00:00
|
|
|
systemHeapStart = (u32)gSystemHeap;
|
2020-03-17 04:31:30 +00:00
|
|
|
fb = SysCfb_GetFbPtr(0);
|
2022-03-13 23:22:14 +00:00
|
|
|
gSystemHeapSize = fb - systemHeapStart;
|
2021-09-04 13:33:19 +00:00
|
|
|
// "System heap initalization"
|
2022-03-13 23:22:14 +00:00
|
|
|
osSyncPrintf("システムヒープ初期化 %08x-%08x %08x\n", systemHeapStart, fb, gSystemHeapSize);
|
|
|
|
SystemHeap_Init(systemHeapStart, gSystemHeapSize); // initializes the system heap
|
2021-10-03 03:17:09 +00:00
|
|
|
if (osMemSize >= 0x800000) {
|
2022-03-13 23:22:14 +00:00
|
|
|
debugHeapStart = SysCfb_GetFbEnd();
|
|
|
|
debugHeapSize = PHYS_TO_K0(0x600000) - debugHeapStart;
|
2020-03-22 21:19:43 +00:00
|
|
|
} else {
|
2020-03-17 04:31:30 +00:00
|
|
|
debugHeapSize = 0x400;
|
2022-03-13 23:22:14 +00:00
|
|
|
debugHeapStart = SystemArena_MallocDebug(debugHeapSize, "../main.c", 565);
|
2020-03-17 04:31:30 +00:00
|
|
|
}
|
2022-03-13 23:22:14 +00:00
|
|
|
osSyncPrintf("debug_InitArena(%08x, %08x)\n", debugHeapStart, debugHeapSize);
|
|
|
|
DebugArena_Init(debugHeapStart, debugHeapSize);
|
2020-03-17 04:31:30 +00:00
|
|
|
func_800636C0();
|
|
|
|
|
2020-05-14 23:11:33 +00:00
|
|
|
R_ENABLE_ARENA_DBG = 0;
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2022-03-13 23:22:14 +00:00
|
|
|
osCreateMesgQueue(&sSiIntMsgQ, sSiIntMsgBuf, ARRAY_COUNT(sSiIntMsgBuf));
|
|
|
|
osSetEventMesg(OS_EVENT_SI, &sSiIntMsgQ, NULL);
|
2020-03-17 04:31:30 +00:00
|
|
|
|
|
|
|
Main_LogSystemHeap();
|
|
|
|
|
2022-03-13 23:22:14 +00:00
|
|
|
osCreateMesgQueue(&irqMgrMsgQ, irqMgrMsgBuf, ARRAY_COUNT(irqMgrMsgBuf));
|
2022-02-06 18:00:01 +00:00
|
|
|
StackCheck_Init(&sIrqMgrStackInfo, sIrqMgrStack, STACK_TOP(sIrqMgrStack), 0, 0x100, "irqmgr");
|
2022-03-13 23:22:14 +00:00
|
|
|
IrqMgr_Init(&gIrqMgr, STACK_TOP(sIrqMgrStack), Z_PRIORITY_IRQMGR, 1);
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2021-09-04 13:33:19 +00:00
|
|
|
osSyncPrintf("タスクスケジューラの初期化\n"); // "Initialize the task scheduler"
|
2022-02-06 18:00:01 +00:00
|
|
|
StackCheck_Init(&sSchedStackInfo, sSchedStack, STACK_TOP(sSchedStack), 0, 0x100, "sched");
|
2022-03-13 23:22:14 +00:00
|
|
|
Sched_Init(&gSchedContext, STACK_TOP(sSchedStack), Z_PRIORITY_SCHED, D_80013960, 1, &gIrqMgr);
|
2020-03-17 04:31:30 +00:00
|
|
|
|
|
|
|
IrqMgr_AddClient(&gIrqMgr, &irqClient, &irqMgrMsgQ);
|
|
|
|
|
2022-02-06 18:00:01 +00:00
|
|
|
StackCheck_Init(&sAudioStackInfo, sAudioStack, STACK_TOP(sAudioStack), 0, 0x100, "audio");
|
2022-03-13 23:22:14 +00:00
|
|
|
AudioMgr_Init(&gAudioMgr, STACK_TOP(sAudioStack), Z_PRIORITY_AUDIOMGR, 10, &gSchedContext, &gIrqMgr);
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2022-02-06 18:00:01 +00:00
|
|
|
StackCheck_Init(&sPadMgrStackInfo, sPadMgrStack, STACK_TOP(sPadMgrStack), 0, 0x100, "padmgr");
|
2022-03-13 23:22:14 +00:00
|
|
|
PadMgr_Init(&gPadMgr, &sSiIntMsgQ, &gIrqMgr, 7, Z_PRIORITY_PADMGR, STACK_TOP(sPadMgrStack));
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2020-05-11 00:04:41 +00:00
|
|
|
AudioMgr_Unlock(&gAudioMgr);
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2022-02-06 18:00:01 +00:00
|
|
|
StackCheck_Init(&sGraphStackInfo, sGraphStack, STACK_TOP(sGraphStack), 0, 0x100, "graph");
|
|
|
|
osCreateThread(&sGraphThread, 4, Graph_ThreadEntry, arg, STACK_TOP(sGraphStack), Z_PRIORITY_GRAPH);
|
2020-03-17 04:31:30 +00:00
|
|
|
osStartThread(&sGraphThread);
|
2022-03-13 23:22:14 +00:00
|
|
|
osSetThreadPri(NULL, 15);
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2020-03-22 21:19:43 +00:00
|
|
|
while (true) {
|
2020-03-17 04:31:30 +00:00
|
|
|
msg = NULL;
|
2021-02-14 00:49:40 +00:00
|
|
|
osRecvMesg(&irqMgrMsgQ, (OSMesg)&msg, OS_MESG_BLOCK);
|
2020-03-22 21:19:43 +00:00
|
|
|
if (msg == NULL) {
|
2020-03-17 04:31:30 +00:00
|
|
|
break;
|
2020-03-22 21:19:43 +00:00
|
|
|
}
|
|
|
|
if (*msg == OS_SC_PRE_NMI_MSG) {
|
2021-09-04 13:33:19 +00:00
|
|
|
osSyncPrintf("main.c: リセットされたみたいだよ\n"); // "Looks like it's been reset"
|
2020-03-20 11:43:51 +00:00
|
|
|
PreNmiBuff_SetReset(gAppNmiBufferPtr);
|
2020-03-17 04:31:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-04 13:33:19 +00:00
|
|
|
osSyncPrintf("mainproc 後始末\n"); // "Cleanup"
|
2020-03-17 04:31:30 +00:00
|
|
|
osDestroyThread(&sGraphThread);
|
2022-01-23 23:04:50 +00:00
|
|
|
RcpUtils_Reset();
|
2021-09-04 13:33:19 +00:00
|
|
|
osSyncPrintf("mainproc 実行終了\n"); // "End of execution"
|
2020-03-17 04:31:30 +00:00
|
|
|
}
|