diff options
Diffstat (limited to 'board/ti/am335x/board.c')
| -rw-r--r-- | board/ti/am335x/board.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index c2fc5a613..57fedab34 100644 --- a/board/ti/am335x/board.c +++ b/board/ti/am335x/board.c @@ -28,6 +28,8 @@  #include <cpsw.h>  #include <power/tps65217.h>  #include <power/tps65910.h> +#include <environment.h> +#include <watchdog.h>  #include "board.h"  DECLARE_GLOBAL_DATA_PTR; @@ -485,6 +487,10 @@ int board_init(void)  		STNOR_GPMC_CONFIG5, STNOR_GPMC_CONFIG6, STNOR_GPMC_CONFIG7 };  #endif +#if defined(CONFIG_HW_WATCHDOG) +	hw_watchdog_init(); +#endif +  	gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;  	gpmc_init(); |