<div dir="ltr">Hi<div>As there is none u-boot mailing list anymore I will ask question here. Maybe someone will know answer.</div><div>I have two watchdogs in hardware. One is synopsys designware one (so standard u-boot global functions hw_watchdog_init and hw_watchdog_reset are implemented by open source synopsys designware driver. And I have second watchdog for which I implement my own driver and it bases on device tree model. Let's see at below code:</div><div>include/watchdog.h  (I added second config and modify macro WATCHDOG_RESET)</div><div>[code]</div><div> extern void hw_watchdog_reset(void);<br>          #if defined(CONFIG_DM_HW_WATCHDOG)<br>     extern void dm_hw_watchdog_reset(void);<br>                   #define WATCHDOG_RESET() {hw_watchdog_reset();      dm_hw_watchdog_reset();}<br>               #else<br>                 #define WATCHDOG_RESET hw_watchdog_reset<br>              #endif<br></div><div>[/code]</div><div><br></div><div>implementation of dm_hw_watchdog_reset function:</div><div>[code]</div><div>#ifndef CONFIG_SPL_BUILD<br>struct udevice* wdt = NULL;<br>void dm_hw_watchdog_reset(void)<br>{<br>   int ret;<br>      if (wdt) {<br>    printf("dm_hw_watchdog_reset\n");<br>    wdt_reset(wdt);<br>  }<br>     else {<br>    ret = 2+8;<br>    /*ret = uclass_get_device_by_driver(UCLASS_WDT,       DM_GET_DRIVER(wdt_bmu), &wdt);<br>    if (ret)<br>        printf("Lack of watchdog device\n");<br>    else<br>        wdt_start(wdt, 60000, 0);*/<br>    }<br>}<br>#else<br>void dm_hw_watchdog_reset(void)<br>{<br>}<br>#endif  [/code]<br></div><div><br></div><div>What is weird when Uboot is started it prints tens of times:</div><div>" dm_hw_watchdog_reset" <br></div><div>and then hangs on. I have to power on/off the board and recovery it with the aid of jtag. I don't understand why 'wdt' variable isn't NULL and code under if (wdt) is executed. Seems like something uboot specific. </div></div>