This source file includes following definitions.
- my_restart
1 #include "../generic/check_compat.c"
2
3
4
5
6 extern long *blob_chdk_core;
7
8 extern long blob_chdk_core_size;
9
10
11
12
13 void __attribute__((noreturn)) my_restart() {
14 {
15
16
17 long *dst = (long*)MEMISOSTART;
18 const long *src = blob_chdk_core;
19 long length = (blob_chdk_core_size + 3) >> 2;
20
21 core_copy(src, dst, length);
22
23 }
24
25 asm volatile(
26 "MRS R1, CPSR\n"
27 "BIC R1, R1, #0x3F\n"
28 "ORR R1, R1, #0xD3\n"
29 "MSR CPSR_cf, R1\n"
30
31 "LDR R2, =0xC0200000\n"
32 "MOV R1, #0xFFFFFFFF\n"
33 "STR R1, [R2,#0x10C]\n"
34 "STR R1, [R2,#0xC]\n"
35 "STR R1, [R2,#0x1C]\n"
36 "STR R1, [R2,#0x2C]\n"
37 "STR R1, [R2,#0x3C]\n"
38 "STR R1, [R2,#0x4C]\n"
39 "STR R1, [R2,#0x5C]\n"
40 "STR R1, [R2,#0x6C]\n"
41 "STR R1, [R2,#0x7C]\n"
42 "STR R1, [R2,#0x8C]\n"
43 "STR R1, [R2,#0x9C]\n"
44 "STR R1, [R2,#0xAC]\n"
45 "STR R1, [R2,#0xBC]\n"
46 "STR R1, [R2,#0xCC]\n"
47 "STR R1, [R2,#0xDC]\n"
48 "STR R1, [R2,#0xEC]\n"
49 "STR R1, [R2,#0xFC]\n"
50
51 "MOV R1, #0x78\n"
52 "MCR p15, 0, R1,c1,c0\n"
53 "MOV R1, #0\n"
54 "MCR p15, 0, R1,c7,c10, 4\n"
55 "MCR p15, 0, R1,c7,c5\n"
56 "MCR p15, 0, R1,c7,c6\n"
57 "MOV R2, #0x40000000\n"
58 "ORR R1, R2, #6\n"
59 "MCR p15, 0, R1,c9,c1\n"
60 "ORR R1, R1, #6\n"
61 "MCR p15, 0, R1,c9,c1, 1\n"
62 "MRC p15, 0, R1,c1,c0\n"
63 "ORR R1, R1, #0x50000\n"
64 "MCR p15, 0, R1,c1,c0\n"
65
66 "MOV R3, #0xFF0\n"
67 "LDR R1, =0x12345678\n"
68 "ADD R3, R3, #0x4000000C\n"
69 "STR R1, [R3]\n"
70
71 "MOV SP, #0x1900\n"
72 "MOV LR, PC\n"
73 "MOV PC, %0\n"
74 : : "r"(MEMISOSTART) : "memory","r1","r2","r3");
75
76 while(1);
77 }
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117