.
.
.
common/board_r.c
1 static int initr_secondary_cpu(void)
2 {
3 /*
4 * after non-volatile devices & environment is setup and cpu code have
5 * another round to deal with any initialization that might require
6 * full access to the environment or loading of some image (firmware)
7 * from a non-volatile device
8 */
9 /* TODO: maybe define this for all archs? */
10 cpu_secondary_init_r();
11
12 return 0;
13 }
.
.