2016-04-26 22:06:19 +02:00
|
|
|
/*
|
|
|
|
* exceptions.c
|
|
|
|
* by TuxSH
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "exceptions.h"
|
|
|
|
#include "fs.h"
|
|
|
|
#include "memory.h"
|
2016-05-03 17:05:19 +02:00
|
|
|
#include "screeninit.h"
|
|
|
|
#include "draw.h"
|
|
|
|
#include "i2c.h"
|
2016-04-26 22:06:19 +02:00
|
|
|
#include "utils.h"
|
|
|
|
#include "../build/arm9_exceptions.h"
|
|
|
|
|
|
|
|
void installArm9Handlers(void)
|
|
|
|
{
|
2016-05-03 17:05:19 +02:00
|
|
|
void *payloadAddress = (void *)0x01FF8000;
|
|
|
|
|
|
|
|
memcpy(payloadAddress, arm9_exceptions, arm9_exceptions_size);
|
|
|
|
((void (*)())payloadAddress)();
|
2016-04-26 22:06:19 +02:00
|
|
|
}
|
|
|
|
|
2016-05-27 15:15:25 +02:00
|
|
|
static void hexItoa(u32 n, char *out)
|
2016-05-06 22:50:01 +02:00
|
|
|
{
|
2016-05-27 15:15:25 +02:00
|
|
|
const char hexDigits[] = "0123456789ABCDEF";
|
|
|
|
u32 i = 0;
|
|
|
|
|
2016-05-06 22:50:01 +02:00
|
|
|
while(n > 0)
|
|
|
|
{
|
2016-05-27 15:15:25 +02:00
|
|
|
out[7 - i++] = hexDigits[n & 0xF];
|
2016-05-06 22:50:01 +02:00
|
|
|
n >>= 4;
|
|
|
|
}
|
2016-05-27 15:15:25 +02:00
|
|
|
|
|
|
|
for(; i < 8; i++) out[7 - i] = '0';
|
2016-05-06 22:50:01 +02:00
|
|
|
}
|
|
|
|
|
2016-04-26 22:06:19 +02:00
|
|
|
void detectAndProcessExceptionDumps(void)
|
|
|
|
{
|
2016-05-27 15:15:25 +02:00
|
|
|
const char *handledExceptionNames[] = {
|
2016-05-06 22:50:01 +02:00
|
|
|
"FIQ", "undefined instruction", "prefetch abort", "data abort"
|
|
|
|
};
|
|
|
|
|
2016-05-27 15:15:25 +02:00
|
|
|
const char *registerNames[] = {
|
2016-05-06 22:50:01 +02:00
|
|
|
"R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R10", "R11", "R12",
|
|
|
|
"SP", "LR", "PC", "CPSR"
|
|
|
|
};
|
|
|
|
|
|
|
|
char hexstring[] = "00000000";
|
|
|
|
|
2016-04-26 22:06:19 +02:00
|
|
|
vu32 *dump = (u32 *)0x25000000;
|
|
|
|
|
|
|
|
if(dump[0] == 0xDEADC0DE && dump[1] == 0xDEADCAFE && dump[3] == 9)
|
|
|
|
{
|
|
|
|
char path[41] = "/luma/dumps/arm9";
|
|
|
|
char fileName[] = "crash_dump_00000000.dmp";
|
|
|
|
|
|
|
|
findDumpFile(path, fileName);
|
|
|
|
|
|
|
|
path[16] = '/';
|
|
|
|
memcpy(&path[17], fileName, sizeof(fileName));
|
|
|
|
|
|
|
|
fileWrite((void *)dump, path, dump[5]);
|
|
|
|
|
2016-05-03 17:05:19 +02:00
|
|
|
initScreens();
|
|
|
|
|
2016-05-06 22:50:01 +02:00
|
|
|
drawString("An exception occurred", 10, 10, COLOR_RED);
|
|
|
|
int posY = drawString("Processor: ARM9", 10, 30, COLOR_WHITE) + SPACING_Y;
|
|
|
|
posY = drawString("Exception type: ", 10, posY, COLOR_WHITE);
|
|
|
|
posY = drawString(handledExceptionNames[dump[4]], 10 + 16 * SPACING_X, posY, COLOR_WHITE);
|
2016-05-27 15:15:25 +02:00
|
|
|
|
2016-05-06 22:50:01 +02:00
|
|
|
posY += 3 * SPACING_Y;
|
|
|
|
for(u32 i = 0; i < 17; i += 2)
|
|
|
|
{
|
|
|
|
posY = drawString(registerNames[i], 10, posY, COLOR_WHITE);
|
|
|
|
hexItoa(dump[10 + i], hexstring);
|
|
|
|
posY = drawString(hexstring, 10 + 7 * SPACING_X, posY, COLOR_WHITE);
|
2016-05-27 15:15:25 +02:00
|
|
|
|
2016-05-06 22:50:01 +02:00
|
|
|
if(i != 16)
|
|
|
|
{
|
|
|
|
posY = drawString(registerNames[i + 1], 10 + 22 * SPACING_X, posY, COLOR_WHITE);
|
|
|
|
hexItoa(dump[10 + i + 1], hexstring);
|
|
|
|
posY = drawString(hexstring, 10 + 29 * SPACING_X, posY, COLOR_WHITE);
|
|
|
|
}
|
2016-05-27 15:15:25 +02:00
|
|
|
|
2016-05-06 22:50:01 +02:00
|
|
|
posY += SPACING_Y;
|
|
|
|
}
|
2016-05-27 15:15:25 +02:00
|
|
|
|
2016-05-06 22:50:01 +02:00
|
|
|
posY += 2 * SPACING_Y;
|
|
|
|
posY = drawString("You can find a dump in the following file:", 10, posY, COLOR_WHITE) + SPACING_Y;
|
|
|
|
posY = drawString(path, 10, posY, COLOR_WHITE) + 2 * SPACING_Y;
|
|
|
|
drawString("Press any button to shutdown", 10, posY, COLOR_WHITE);
|
2016-05-27 15:15:25 +02:00
|
|
|
|
2016-05-03 17:05:19 +02:00
|
|
|
waitInput();
|
|
|
|
|
|
|
|
i2cWriteRegister(I2C_DEV_MCU, 0x20, 1);
|
|
|
|
while(1);
|
2016-04-26 22:06:19 +02:00
|
|
|
}
|
|
|
|
}
|