forked from comex/formatter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
exception.c
63 lines (47 loc) · 1.42 KB
/
exception.c
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
/*
BootMii - a Free Software replacement for the Nintendo/BroadOn bootloader.
Requires mini.
Copyright (C) 2008 Segher Boessenkool <[email protected]>
# This code is licensed to you under the terms of the GNU GPL, version 2;
# see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
*/
#include "bootmii_ppc.h"
#include "string.h"
extern char exception_2200_start, exception_2200_end;
void exception_handler(int exception)
{
u32 *x;
u32 i;
printf("\nException %04x occurred!\n", exception);
x = (u32 *)0x80002000;
printf("\n R0..R7 R8..R15 R16..R23 R24..R31\n");
for (i = 0; i < 8; i++) {
printf("%08x %08x %08x %08x\n", x[0], x[8], x[16], x[24]);
x++;
}
x = (u32 *)0x80002080;
printf("\n CR/XER LR/CTR SRR0/SRR1 DAR/DSISR\n");
for (i = 0; i < 2; i++) {
printf("%08x %08x %08x %08x\n", x[0], x[2], x[4], x[6]);
x++;
}
// Hang.
for (;;)
;
}
void exception_init(void)
{
u32 vector;
u32 len_2200;
for (vector = 0x100; vector < 0x2000; vector += 0x10) {
u32 *insn = (u32 *)(0x80000000 + vector);
insn[0] = 0xbc002000; // stmw 0,0x2000(0)
insn[1] = 0x38600000 | (u32)vector; // li 3,vector
insn[2] = 0x48002202; // ba 0x2200
insn[3] = 0;
}
sync_before_exec((void *)0x80000100, 0x1f00);
len_2200 = &exception_2200_end - &exception_2200_start;
memcpy((void *)0x80002200, &exception_2200_start, len_2200);
sync_before_exec((void *)0x80002200, len_2200);
}