/** * @brief The basic entry point for board initialization. * * This is called as part of machine init (after arch init). * This is again called with stack in SRAM, so not too many * constructs possible here. * * @return void */ static int sdp343x_board_init(void) { int in_sdram = omap3_running_in_sdram(); if (!in_sdram) omap3_core_init(); mux_config(); if (!in_sdram) sdrc_init(); return 0; }
/** * @brief The basic entry point for board initialization. * * This is called as part of machine init (after arch init). * This is again called with stack in SRAM, so not too many * constructs possible here. * * @return void */ static int beagle_board_init(void) { int in_sdram = omap3_running_in_sdram(); if (!in_sdram) omap3_core_init(); mux_config(); /* Dont reconfigure SDRAM while running in SDRAM! */ if (!in_sdram) sdrc_init(); return 0; }