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
| static const init_fnc_t init_sequence_f[] = { setup_mon_len, #ifdef CONFIG_OF_CONTROL fdtdec_setup, #endif initf_malloc, arch_cpu_init, initf_dm, env_init, init_baud_rate, serial_init, console_init_f, display_options, display_text_info, #if defined(CONFIG_DISPLAY_BOARDINFO) show_board_info, #endif INIT_FUNC_WATCHDOG_INIT INITCALL_EVENT(EVT_MISC_INIT_F), INIT_FUNC_WATCHDOG_RESET dram_init,
setup_dest_addr, reserve_round_4k, reserve_uboot, reserve_malloc, reserve_board, reserve_global_data, reserve_fdt, reserve_stacks, dram_init_banksize, show_dram_config, INIT_FUNC_WATCHDOG_RESET setup_bdinfo, display_new_sp, INIT_FUNC_WATCHDOG_RESET #if !defined(CONFIG_OF_BOARD_FIXUP) || !defined(CONFIG_OF_INITIAL_DTB_READONLY) reloc_fdt, #endif setup_reloc,
|