From 7abf0c5886c395a3cc7e11f191d67be9a964a1bf Mon Sep 17 00:00:00 2001 From: wdenk Date: Sun, 18 Apr 2004 21:45:42 +0000 Subject: * Patch by Dan Malek, 07 Apr 2004: - Add support for RPC/STx GP3, Motorola 8560 board - Update 85xx TSEC driver so it searches MII for first available PHY and uses that one. - Add functions to support console MII commands. * Patch by Tolunay Orkun, 07 Apr 2004: Move initialization of bi_iic_fast[] from board_init_f() to board_init_r() * Patch by Yasushi Shoji, 07 Apr 2004: Cleanup microblaze port * Patch by Sangmoon Kim, 07 Apr 2004: Add auto SDRAM module detection for Debris board --- lib_microblaze/board.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'lib_microblaze') diff --git a/lib_microblaze/board.c b/lib_microblaze/board.c index 3e3fb3762..b720e8203 100644 --- a/lib_microblaze/board.c +++ b/lib_microblaze/board.c @@ -26,6 +26,7 @@ #include #include #include +#include const char version_string[] = U_BOOT_VERSION" (" __DATE__ " - " __TIME__ ")"; @@ -69,6 +70,24 @@ init_fnc_t *init_sequence[] = { NULL, }; +void board_init(void) +{ + init_fnc_t **init_fnc_ptr; + + for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { + WATCHDOG_RESET (); + if ((*init_fnc_ptr) () != 0) { + hang (); + } + } + + /* main_loop */ + for (;;) { + WATCHDOG_RESET (); + main_loop (); + } +} + void hang (void) { puts ("### ERROR ### Please RESET the board ###\n"); -- cgit v1.2.3