diff -purN -x CVS u-boot-20040210cvs-prepare_post/cpu/nios/interrupts.c u-boot-20040210cvs-prepare_watchdog/cpu/nios/interrupts.c --- u-boot-20040210cvs-prepare_post/cpu/nios/interrupts.c 2004-02-16 21:50:23.000000000 +0000 +++ u-boot-20040210cvs-prepare_watchdog/cpu/nios/interrupts.c 2004-02-16 23:42:15.000000000 +0000 @@ -30,6 +30,7 @@ #include #include #include +#include #ifdef CONFIG_STATUS_LED #include #endif @@ -54,6 +55,7 @@ void reset_timer (void) ulong get_timer (ulong base) { + WATCHDOG_RESET (); return (timestamp - base); } diff -purN -x CVS u-boot-20040210cvs-prepare_post/cpu/nios/serial.c u-boot-20040210cvs-prepare_watchdog/cpu/nios/serial.c --- u-boot-20040210cvs-prepare_post/cpu/nios/serial.c 2003-10-08 23:26:14.000000000 +0000 +++ u-boot-20040210cvs-prepare_watchdog/cpu/nios/serial.c 2004-02-16 23:42:15.000000000 +0000 @@ -23,6 +23,7 @@ #include +#include #include @@ -62,7 +63,7 @@ void serial_putc( char c ) if (c == '\n') serial_putc('\r'); while( (uart->status & NIOS_UART_TRDY) == 0 ) - ; + WATCHDOG_RESET (); uart->txdata = (unsigned char)c; } @@ -81,6 +82,6 @@ int serial_tstc( void ) int serial_getc( void ) { while( serial_tstc() == 0 ) - ; + WATCHDOG_RESET (); return( uart->rxdata & 0x00ff ); } diff -purN -x CVS u-boot-20040210cvs-prepare_post/include/watchdog.h u-boot-20040210cvs-prepare_watchdog/include/watchdog.h --- u-boot-20040210cvs-prepare_post/include/watchdog.h 2003-08-29 10:05:54.000000000 +0000 +++ u-boot-20040210cvs-prepare_watchdog/include/watchdog.h 2004-02-16 23:42:15.000000000 +0000 @@ -31,6 +31,10 @@ # error "Configuration error: CONFIG_HW_WATCHDOG and CONFIG_WATCHDOG can't be used together." #endif +#if defined(__ASSEMBLY__) && defined(__NIOS__) +# error "Configuration error: WATCHDOG_RESET inside assembler not supported for Nios platforms." +#endif + /* * Hardware watchdog */ diff -purN -x CVS u-boot-20040210cvs-prepare_post/lib_nios/board.c u-boot-20040210cvs-prepare_watchdog/lib_nios/board.c --- u-boot-20040210cvs-prepare_post/lib_nios/board.c 2004-02-09 23:12:26.000000000 +0000 +++ u-boot-20040210cvs-prepare_watchdog/lib_nios/board.c 2004-02-16 23:42:15.000000000 +0000 @@ -139,13 +139,16 @@ void board_init (void) bd->bi_baudrate = CONFIG_BAUDRATE; for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { + WATCHDOG_RESET (); if ((*init_fnc_ptr) () != 0) { hang (); } } + WATCHDOG_RESET (); bd->bi_flashsize = flash_init(); + WATCHDOG_RESET (); mem_malloc_init(); malloc_bin_reloc(); env_relocate(); @@ -157,12 +160,14 @@ void board_init (void) if (s) s = (*e) ? e + 1 : e; } + WATCHDOG_RESET (); devices_init(); jumptable_init(); console_init_r(); /* */ + WATCHDOG_RESET (); interrupt_init (); #ifdef CONFIG_STATUS_LED diff -purN -x CVS u-boot-20040210cvs-prepare_post/lib_nios/time.c u-boot-20040210cvs-prepare_watchdog/lib_nios/time.c --- u-boot-20040210cvs-prepare_post/lib_nios/time.c 2003-10-08 23:26:15.000000000 +0000 +++ u-boot-20040210cvs-prepare_watchdog/lib_nios/time.c 2004-02-16 23:42:15.000000000 +0000 @@ -22,6 +22,7 @@ */ #include +#include extern void dly_clks( unsigned long ticks ); @@ -33,5 +34,6 @@ void udelay(unsigned long usec) * cpu clocks. */ unsigned long cnt = (CONFIG_SYS_CLK_FREQ/1000000) * usec; + WATCHDOG_RESET (); /* trigger watchdog if needed */ dly_clks (cnt); } diff -purN -x CVS u-boot-20040210cvs-prepare_post/nios_config.mk u-boot-20040210cvs-prepare_watchdog/nios_config.mk --- u-boot-20040210cvs-prepare_post/nios_config.mk 2003-10-08 23:26:14.000000000 +0000 +++ u-boot-20040210cvs-prepare_watchdog/nios_config.mk 2004-02-16 23:42:15.000000000 +0000 @@ -22,4 +22,4 @@ # MA 02111-1307 USA # -PLATFORM_CPPFLAGS += -m32 -DCONFIG_NIOS -ffixed-g7 +PLATFORM_CPPFLAGS += -m32 -DCONFIG_NIOS -D__NIOS__ -ffixed-g7