CHDK_DE Vorschauversion  Trunk Rev. 6014
 Alle Datenstrukturen Dateien Funktionen Variablen Typdefinitionen Aufzählungen Aufzählungswerte Makrodefinitionen
boot.c-Dateireferenz
#include "lolevel.h"
#include "platform.h"
#include "core.h"
+ Include-Abhängigkeitsdiagramm für boot.c:

gehe zum Quellcode dieser Datei

Funktionen

void createHook (void *pNewTcb)
 
void deleteHook (void *pTcb)
 
void boot ()
 
void __attribute__ ((naked, noinline))
 *-------------------------------------------------------------------— Mehr ...
 
void h_usrInit ()
 
void h_usrKernelInit ()
 
void h_usrRoot ()
 

Variablen

long wrs_kernel_bss_start
 
long wrs_kernel_bss_end
 
const char *const new_sa = &_end
 

Dokumentation der Funktionen

void __attribute__ ( (naked, noinline)  )

*-------------------------------------------------------------------—

!!

IS_ERROR( hSoundHandle )

IS_ERROR( RetCode )

IS_ERROR( RetCode )

IS_ERROR( RetCode )

IS_ERROR( RetCode )

Definiert in Zeile 21 der Datei boot.c.

28 {
29  long *canon_data_src = (void*)0xffad76d0; // This is the address of the "Startofdata" string on the firmware
30  long *canon_data_dst = (void*)MEMBASEADDR; // This is where the boot data is copiedduring firmware update
31  long canon_data_len = 0xEB60; // This is the length of data from "Startofdata" to the end of the firmware dump
32  long *canon_bss_start = (void*) (canon_data_len + MEMBASEADDR); // = 0xEB60 + 0x1900, just after data
33  long canon_bss_len = MEMISOSTART - (long) canon_bss_start; // The original address of h_usrKernelInit - bss start
34  long i;
35 
36  asm volatile (
37  "MRC p15, 0, R0,c1,c0\n"
38  "ORR R0, R0, #0x1000\n"
39  "ORR R0, R0, #4\n"
40  "ORR R0, R0, #1\n"
41  "MCR p15, 0, R0,c1,c0\n"
42  :::"r0");
43 
44 
45  for(i=0;i<canon_data_len/4;i++)
46  canon_data_dst[i]=canon_data_src[i];
47 
48  for(i=0;i<canon_bss_len/4;i++)
49  canon_bss_start[i]=0;
50 
51  asm volatile (
52  "MRC p15, 0, R0,c1,c0\n"
53  "ORR R0, R0, #0x1000\n"
54  "BIC R0, R0, #4\n"
55  "ORR R0, R0, #1\n"
56  "MCR p15, 0, R0,c1,c0\n"
57  :::"r0");
58 
59  h_usrInit();
60 }
void boot ( )

Definiert in Zeile 43 der Datei boot.c.

43  {
44 
45  long *canon_data_src = (void*)0xFFEDAC70; // value taken at ROM:FFC00188
46  long *canon_data_dst = (void*)0x1900;
47  long canon_data_len = 0xDF84 - 0x1900; // data_end - data_start 0xDF7C taken at ROM:FFC00138
48  long *canon_bss_start = (void*)0xDF84; // just after data
49  long canon_bss_len = 0xD4F38 - 0xDF84; // d4ec8 taken at ROM:FFC00FB4
50 
51  long i;
52 
53  // enable caches and write buffer...
54  // this is a carryover from old dryos ports, may not be useful
55  asm volatile (
56  "MRC p15, 0, R0,c1,c0\n"
57  "ORR R0, R0, #0x1000\n"
58  "ORR R0, R0, #4\n"
59  "ORR R0, R0, #1\n"
60  "MCR p15, 0, R0,c1,c0\n"
61  :::"r0"
62  );
63 
64  for(i=0;i<canon_data_len/4;i++)
65  canon_data_dst[i]=canon_data_src[i];
66 
67  for(i=0;i<canon_bss_len/4;i++)
68  canon_bss_start[i]=0;
69 
70  asm volatile ("B sub_FFC001A4_my\n");
71 };
void createHook ( void *  pNewTcb)

Definiert in Zeile 110 der Datei main.c.

111 {
112  char *name = (char*)(*(long*)((char*)pNewTcb+0x34));
113  long *entry = (long*)((char*)pNewTcb+0x74);
114 
115  // always hook first task creation
116  // to create SpyProc
117  if (!stop_hooking){
118  task_prev = (void*)(*entry);
119  *entry = (long)task_start_hook;
120  stop_hooking = 1;
121  } else {
122  // hook/replace another tasks
123  if (my_ncmp(name, "tPhySw", 6) == 0){
124  *entry = (long)physw_hook;
125  }
126 
127  if (my_ncmp(name, "tInitFileM", 10) == 0){
128  init_file_modules_prev = (void*)(*entry);
129 #if CAM_MULTIPART
130  *entry = (long)init_file_modules_task;
131 #else
132  *entry = (long)init_file_modules_hook;
133 #endif
134  }
135 
136  if (my_ncmp(name, "tCaptSeqTa", 10) == 0){
137  *entry = (long)capt_seq_hook;
138  }
139 
140 #if CAM_CHDK_HAS_EXT_VIDEO_MENU
141  if (my_ncmp(name, "tMovieReco", 10) == 0){
142  *entry = (long)movie_record_hook;
143  }
144 #endif
145 
146 #if CAM_EXT_TV_RANGE
147  if (my_ncmp(name, "tExpDrvTas", 10) == 0){
148  *entry = (long)exp_drv_task;
149  }
150 #endif
151 
152 #if CAM_HAS_FILEWRITETASK_HOOK
153  if (my_ncmp(name, "tFileWrite", 10) == 0){
154  *entry = (long)filewritetask;
155  }
156 #endif
157 
158 // for cameras that have a "touch control dial" with 'TouchW' task.
159 // some cameras may use a different task name
160 #ifdef HOOK_TOUCHW
161  if (my_ncmp(name, "tTouchW", 7) == 0){
162  *entry = (long)my_touchw_task;
163  }
164 #endif
165 
166  core_hook_task_create(pNewTcb);
167  }
168 }
void deleteHook ( void *  pTcb)

Definiert in Zeile 170 der Datei main.c.

171 {
172  core_hook_task_delete(pTcb);
173 }
void h_usrInit ( )

Definiert in Zeile 63 der Datei boot.c.

64 {
65  asm volatile (
66  "STR LR, [SP,#-4]!\n"
67  "BL sub_FF811B20\n"
68  "MOV R0, #2\n"
69  "MOV R1, R0\n"
70  "BL sub_ffabdc74\n"
71  "BL sub_ffaaa210\n"
72  "BL sub_FF81125C\n"
73  "BL sub_FF811838\n"
74  "LDR LR, [SP],#4\n"
75  "B h_usrKernelInit\n"
76  );
77 
78 }
void h_usrKernelInit ( )

Definiert in Zeile 81 der Datei boot.c.

82 {
83  asm volatile (
84  "STMFD SP!, {R4,LR}\n"
85  "SUB SP, SP, #8\n"
86  "BL sub_ffabe140\n"
87  "BL sub_ffad0c00\n"
88  "LDR R3, =0xF88C\n"
89  "LDR R2, =0x704A0\n"
90  "LDR R1, [R3]\n"
91  "LDR R0, =0x7278C\n"
92  "MOV R3, #0x100\n"
93  "BL sub_ffacc43c\n"
94  "LDR R3, =0xF84C\n"
95  "LDR R0, =0xFC6C\n"
96  "LDR R1, [R3]\n"
97  "BL sub_ffacc43c\n"
98  "LDR R3, =0xF908\n"
99  "LDR R0, =0x72760\n"
100  "LDR R1, [R3]\n"
101  "BL sub_ffacc43c\n"
102  "BL sub_ffad5780\n"
103  "BL sub_FF811348\n"
104  "MOV R4, #0\n"
105  "MOV R3, R0\n"
106  "MOV R12, #0x800\n"
107  "LDR R0, =h_usrRoot\n"
108  "MOV R1, #0x4000\n"
109  );
110 
111  //"LDR R2, =0xB2DC0\n" // 0x72DC0 + 0x40000
112  asm volatile (
113  "LDR R2, =new_sa\n"
114  "LDR R2, [R2]\n"
115  );
116 
117  asm volatile (
118  "STR R12, [SP]\n"
119  "STR R4, [SP,#4]\n"
120  "BL sub_ffacde40\n"
121  "ADD SP, SP, #8\n"
122  "LDMFD SP!, {R4,PC}\n"
123  );
124 
125 }
void h_usrRoot ( )

Definiert in Zeile 128 der Datei boot.c.

129 {
130 // volatile long *p;
131 
132  asm volatile (
133  "STMFD SP!, {R4,R5,LR}\n"
134  "MOV R5, R0\n"
135  "MOV R4, R1\n"
136  "BL sub_FF811BA0\n"
137  "MOV R1, R4\n"
138  "MOV R0, R5\n"
139  "BL sub_ffac4428\n" // memInit
140  "MOV R1, R4\n"
141  "MOV R0, R5\n"
142  "BL sub_ffac4ea0\n" // mmPartLibInit <----- OK up to here!!
143 
144  //"BL sub_FF811928\n" // Here something BAD happens! It initializes the MMU, but SD500 has this replaced by a NULLSUB call...
145 
146  "BL sub_FF811814\n"
147  "MOV R0, #0x32\n"
148  "BL sub_ffac6910\n" // selectInit
149  "BL sub_FF811BE4\n"
150  "BL sub_FF811BC4\n"
151  "BL sub_FF811C10\n"
152  "BL sub_ffac61d0\n" //selTaskDeleteHookAdd
153  "BL sub_FF811B94\n"
154  );
155 
158 
159  drv_self_hide();
160 
161  asm volatile (
162  "LDMFD SP!, {R4,R5,LR}\n"
163  "B sub_FF811408\n"
164  );
165 
166 }

Variablen-Dokumentation

const char* const new_sa = &_end

Definiert in Zeile 16 der Datei boot.c.

long wrs_kernel_bss_end
long wrs_kernel_bss_start

this code completely copied from ../100k + adapted to the 100j firmware