xref: /rk3399_rockchip-uboot/drivers/watchdog/Kconfig (revision 0753bc2d30d7ca4a0ea4ef7f97083961c3a9d0e0)
1menu "Watchdog Timer Support"
2
3config ULP_WATCHDOG
4	bool "i.MX7ULP watchdog"
5	help
6	  Say Y here to enable i.MX7ULP watchdog driver.
7
8config WDT
9	bool "Enable driver model for watchdog timer drivers"
10	depends on DM
11	help
12	  Enable driver model for watchdog timer. At the moment the API
13	  is very simple and only supports four operations:
14	  start, restart, stop and reset (expire immediately).
15	  What exactly happens when the timer expires is up to a particular
16	  device/driver.
17
18config WDT_SANDBOX
19	bool "Enable Watchdog Timer support for Sandbox"
20	depends on SANDBOX && WDT
21	help
22		Enable Watchdog Timer support in Sandbox. This is a dummy device that
23		can be probed and supports all of the methods of WDT, but does not
24		really do anything.
25
26endmenu
27