blob: 1bb67f5035231df9f6ce01adb08d074855393143 [file] [log] [blame]
maxims@google.comdaea6d42017-04-17 12:00:21 -07001menu "Watchdog Timer Support"
Ye Li62862b62017-02-22 16:21:48 +08002
Shreenidhi Shedi0787c7c2018-02-21 16:50:20 +01003config WATCHDOG
4 bool "Enable U-Boot watchdog reset"
Christophe Leroy9a5760e2020-02-26 16:17:52 +00005 depends on !HW_WATCHDOG
Stefan Roesecce24722022-08-18 13:22:46 +02006 select CYCLIC
Simon Glass0b385222024-07-31 08:44:08 -06007 imply SPL_CYCLIC if SPL
Shreenidhi Shedi0787c7c2018-02-21 16:50:20 +01008 help
9 This option enables U-Boot watchdog support where U-Boot is using
10 watchdog_reset function to service watchdog device in U-Boot. Enable
11 this option if you want to service enabled watchdog by U-Boot. Disable
12 this option if you want U-Boot to start watchdog but never service it.
13
Pali Rohárf698a772021-03-09 14:26:56 +010014config WATCHDOG_AUTOSTART
15 bool "Automatically start watchdog timer"
16 depends on WDT
Heinrich Schuchardt150528f2021-11-05 19:34:31 +010017 default n if ARCH_SUNXI
Pali Rohárf698a772021-03-09 14:26:56 +010018 default y
19 help
20 Automatically start watchdog timer and start servicing it during
21 init phase. Enabled by default. Disable this option if you want
22 to compile U-Boot with CONFIG_WDT support but do not want to
23 activate watchdog, like when CONFIG_WDT option is disabled. You
24 would be able to start watchdog manually by 'wdt' command. Useful
25 when you want to have support for 'wdt' command but do not want
26 to have watchdog enabled by default.
27
Heiko Schocherf409f1a2019-09-30 09:33:43 +020028config WATCHDOG_TIMEOUT_MSECS
29 int "Watchdog timeout in msec"
Tom Rinieac76b82021-09-09 07:54:50 -040030 default 128000 if ARCH_MX31 || ARCH_MX5 || ARCH_MX6
Heiko Schocherf409f1a2019-09-30 09:33:43 +020031 default 128000 if ARCH_MX7 || ARCH_VF610
32 default 30000 if ARCH_SOCFPGA
Samuel Holland65c982b2021-08-22 13:53:27 -050033 default 16000 if ARCH_SUNXI
Tom Rini0ab49a12023-01-10 11:19:44 -050034 default 5376 if ULP_WATCHDOG
ETIENNE DUBLE73a6e702023-01-25 10:57:28 +010035 default 15000 if ARCH_BCM283X
Heiko Schocherf409f1a2019-09-30 09:33:43 +020036 default 60000
37 help
38 Watchdog timeout in msec
39
Paolo Pisati6213c552017-02-10 17:28:05 +010040config HW_WATCHDOG
41 bool
42
Patrice Chotard4a0ae732019-04-30 17:26:20 +020043config IMX_WATCHDOG
44 bool "Enable Watchdog Timer support for IMX and LSCH2 of NXP"
Marek Vasutf7fc5c12019-06-09 03:46:22 +020045 select HW_WATCHDOG if !WDT
Patrice Chotard4a0ae732019-04-30 17:26:20 +020046 help
Michal Simek5288b9b2020-03-11 12:26:53 +010047 Select this to enable the IMX and LSCH2 of Layerscape watchdog
48 driver.
Patrice Chotard4a0ae732019-04-30 17:26:20 +020049
Michael Walleb9c72d02020-09-24 10:09:15 +020050config WATCHDOG_RESET_DISABLE
51 bool "Disable reset watchdog"
52 depends on IMX_WATCHDOG
53 help
54 Disable reset watchdog, which can let WATCHDOG_RESET invalid, so
55 that the watchdog will not be fed in u-boot.
56
Tom Rini4a3e7982017-05-12 22:33:24 -040057config OMAP_WATCHDOG
58 bool "TI OMAP watchdog driver"
59 depends on ARCH_OMAP2PLUS
60 select HW_WATCHDOG
Tom Rini4a3e7982017-05-12 22:33:24 -040061 help
62 Say Y here to enable the OMAP3+ watchdog driver.
Felipe Balbi24252da2017-07-05 20:33:20 +030063
Ye Li62862b62017-02-22 16:21:48 +080064config ULP_WATCHDOG
65 bool "i.MX7ULP watchdog"
66 help
67 Say Y here to enable i.MX7ULP watchdog driver.
68
Marek Vasut40919d92019-06-27 00:26:34 +020069config DESIGNWARE_WATCHDOG
70 bool "Designware watchdog timer support"
Tom Rinib5eb2fe2022-06-15 12:03:46 -040071 depends on WDT
72 default y if ROCKCHIP_RK3399
Marek Vasut40919d92019-06-27 00:26:34 +020073 help
Michal Simek5288b9b2020-03-11 12:26:53 +010074 Enable this to support Designware Watchdog Timer IP, present e.g.
75 on Altera SoCFPGA SoCs.
Marek Vasut40919d92019-06-27 00:26:34 +020076
maxims@google.comdaea6d42017-04-17 12:00:21 -070077config WDT
78 bool "Enable driver model for watchdog timer drivers"
79 depends on DM
Stefan Roese502acb02019-04-11 15:58:44 +020080 imply WATCHDOG
Stefan Roesecce24722022-08-18 13:22:46 +020081 select CYCLIC
maxims@google.comdaea6d42017-04-17 12:00:21 -070082 help
83 Enable driver model for watchdog timer. At the moment the API
84 is very simple and only supports four operations:
Patrice Chotard0a060242019-04-25 12:57:28 +020085 start, stop, reset and expire_now (expire immediately).
maxims@google.comdaea6d42017-04-17 12:00:21 -070086 What exactly happens when the timer expires is up to a particular
87 device/driver.
88
Mark Kettenis7e8c6dd2022-01-12 19:55:15 +010089config WDT_APPLE
90 bool "Apple watchdog timer support"
91 depends on WDT
92 default y if ARCH_APPLE
93 help
94 Enable support for the watchdog timer on Apple SoCs.
95 The watchdog will perform a full SoC reset resulting in a
96 reboot of the entire system.
97
Nathan Barrett-Morrison5724a9d2025-02-26 12:30:30 -050098config WDT_ADI
99 bool "Analog Devices watchdog timer support"
100 select WDT
101 select SPL_WDT if SPL
102 depends on ARCH_SC5XX
103 help
104 Enable this to support Watchdog Timer on ADI SC57X, SC58X, SC59X,
105 and SC59X_64 processors
106
Marek Behúna86b97d2018-04-24 17:21:30 +0200107config WDT_ARMADA_37XX
108 bool "Marvell Armada 37xx watchdog timer support"
109 depends on WDT && ARMADA_3700
110 help
Michal Simek5288b9b2020-03-11 12:26:53 +0100111 Enable this to support Watchdog Timer on Marvell Armada 37xx SoC.
112 There are 4 possible clocks which can be used on these SoCs. This
113 driver uses the second clock (ID 1), assuming that so will also
114 Linux's driver.
Marek Behúna86b97d2018-04-24 17:21:30 +0200115
maxims@google.comdf35df22017-04-17 12:00:22 -0700116config WDT_ASPEED
117 bool "Aspeed ast2400/ast2500 watchdog timer support"
118 depends on WDT
119 default y if ARCH_ASPEED
120 help
121 Select this to enable watchdog timer for Aspeed ast2500/ast2400 devices.
122 The watchdog timer is stopped when initialized. It performs reset, either
123 full SoC reset or CPU or just some peripherals, based on the flags.
124 It currently does not support Boot Flash Addressing Mode Detection or
125 Second Boot.
126
Chia-Wei, Wang67ef5872020-12-14 13:54:25 +0800127config WDT_AST2600
128 bool "Aspeed AST2600 watchdog timer support"
129 depends on WDT
130 default y if ASPEED_AST2600
131 help
132 Select this to enable watchdog timer for Aspeed ast2500/ast2400 devices.
133 The watchdog timer is stopped when initialized. It performs reset, either
134 full SoC reset or CPU or just some peripherals, based on the flags.
135
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200136config WDT_AT91
137 bool "AT91 watchdog timer support"
138 depends on WDT
139 help
Michal Simek5288b9b2020-03-11 12:26:53 +0100140 Select this to enable Microchip watchdog timer, which can be found on
141 some AT91 devices.
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200142
Randolph330222c2024-01-24 14:21:32 +0800143config WDT_ATCWDT200
144 bool "Andes watchdog timer support"
145 depends on WDT
146 help
147 Select this to enable Andes ATCWDT200 watchdog timer
148
Álvaro Fernández Rojasd8759a52017-05-16 18:29:09 +0200149config WDT_BCM6345
150 bool "BCM6345 watchdog timer support"
William Zhangdf0b5bb2022-08-22 11:31:43 -0700151 depends on WDT && (ARCH_BMIPS || BCM6856 || \
William Zhang38921822022-08-22 11:49:08 -0700152 BCM6858 || BCM63158 || BCM6855)
Álvaro Fernández Rojasd8759a52017-05-16 18:29:09 +0200153 help
154 Select this to enable watchdog timer for BCM6345 SoCs.
155 The watchdog timer is stopped when initialized.
156 It performs full SoC reset.
157
Chris Packham69a430f2021-03-05 16:32:58 +1300158config WDT_BOOKE
159 bool "PowerPC Book-E watchdog driver"
160 depends on WDT && MPC85xx
161 help
162 Watchdog driver for PowerPC Book-E chips, such as the Freescale
163 MPC85xx SOCs and the IBM PowerPC 440.
164
Shreenidhi Shedi0787c7c2018-02-21 16:50:20 +0100165config WDT_CDNS
166 bool "Cadence watchdog timer support"
167 depends on WDT
168 imply WATCHDOG
169 help
Michal Simek5288b9b2020-03-11 12:26:53 +0100170 Select this to enable Cadence watchdog timer, which can be found on some
171 Xilinx Microzed Platform.
Shreenidhi Shedi0787c7c2018-02-21 16:50:20 +0100172
Jason Lidd2b30b2020-01-30 12:34:57 -0800173config WDT_CORTINA
174 bool "Cortina Access CAxxxx watchdog timer support"
175 depends on WDT
176 help
177 Cortina Access CAxxxx watchdog timer support.
178 This driver support all CPU ISAs supported by Cortina
Michal Simek5288b9b2020-03-11 12:26:53 +0100179 Access CAxxxx SoCs.
Jason Lidd2b30b2020-01-30 12:34:57 -0800180
Fabio Estevam74bee302024-09-17 10:55:50 -0300181config WDT_DA9063
182 bool "DA9063 watchdog timer support"
183 depends on WDT && DM_PMIC_DA9063
184 help
185 Enable support for the watchdog timer in Dialog DA9063.
186
Bastien Curutchet617f5d22024-10-03 10:42:55 +0200187config WDT_DAVINCI
188 bool "DaVinci watchdog timer support"
189 depends on WDT
190 help
191 Select this to enable the watchdog timer for DaVinci SoCs such as the
192 OMAP-L138.
193
Rasmus Villemoes08667602021-08-19 11:57:04 +0200194config WDT_GPIO
195 bool "External gpio watchdog support"
196 depends on WDT
197 depends on DM_GPIO
198 help
199 Support for external watchdog fed by toggling a gpio. See
200 doc/device-tree-bindings/watchdog/gpio-wdt.txt for
201 information on how to describe the watchdog in device tree.
202
Rasmus Villemoesbae005f2024-10-07 19:47:16 +0200203config SPL_WDT_GPIO
204 bool "External gpio watchdog support in SPL"
205 depends on SPL_WDT
206 depends on SPL_DM_GPIO
207 depends on SPL_OF_REAL
208 default WDT_GPIO
209 help
210 Support for external watchdog fed by toggling a gpio in SPL.
211
Pali Rohárb93e8ea2022-05-02 18:41:07 +0200212config WDT_MAX6370
213 bool "MAX6370 watchdog timer support"
214 depends on WDT
215 select DM_GPIO
216 help
217 Select this to enable max6370 watchdog timer.
218
Angelo Dureghello5e118dd2023-06-24 22:30:18 +0200219config WDT_MCF
220 bool "ColdFire family watchdog timer support"
221 depends on WDT
222 help
223 Select this to enable ColdFire watchdog timer,
224 which supports mcf52x2 mcf532x mcf523x families.
225
Philippe Boos35de0c52022-06-13 16:00:56 +0200226config WDT_MESON_GXBB
227 bool "Amlogic watchdog timer support"
228 depends on WDT
229 help
230 Select this to enable Meson watchdog timer,
231 which can be found on some Amlogic platforms.
232
Christophe Leroy1919fce2023-04-03 10:27:39 +0200233config WDT_MPC8xxx
234 bool "MPC8xxx watchdog timer support"
Christophe Leroy39d37952023-04-03 10:39:59 +0200235 depends on WDT && (MPC8xx || MPC83xx)
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200236 help
Christophe Leroy1919fce2023-04-03 10:27:39 +0200237 Select this to enable mpc8xxx watchdog timer
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200238
Christophe Leroy0fe1a202023-04-03 10:27:39 +0200239config WDT_MPC8xxx_BME
240 bool "Enable MPC8xx Bus Monitoring"
241 depends on WDT_MPC8xxx && MPC8xx
242 help
243 Select this to enable mpc8xx Bus Monitor.
244
245config WDT_MPC8xxx_BMT
246 int "MPC8xx Bus Monitor Timing" if WDT_MPC8xxx_BME
247 range 0 255
248 default 255
249 depends on WDT_MPC8xxx
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200250 help
Christophe Leroy0fe1a202023-04-03 10:27:39 +0200251 Bus monitor timing. Defines the timeout period, in 8 system clock
252 resolution, for the bus monitor.
253
254 Maximum timeout is 2,040 clocks (255 x 8).
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200255
developer33a3bc92020-11-12 16:36:28 +0800256config WDT_MT7620
257 bool "MediaTek MT7620 watchdog timer support"
258 depends on WDT && SOC_MT7620
259 help
260 Select this to enable watchdog timer on MediaTek MT7620 and earlier
261 SoC chips.
262
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200263config WDT_MT7621
264 bool "MediaTek MT7621 watchdog timer support"
developercf569c02022-05-20 11:23:19 +0800265 depends on WDT && (SOC_MT7621 || SOC_MT7628)
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200266 help
Michal Simek5288b9b2020-03-11 12:26:53 +0100267 Select this to enable Ralink / Mediatek watchdog timer,
268 which can be found on some MediaTek chips.
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200269
developer93053be2018-11-15 10:07:57 +0800270config WDT_MTK
271 bool "MediaTek watchdog timer support"
272 depends on WDT && ARCH_MEDIATEK
273 help
274 Select this to enable watchdog timer for MediaTek SoCs.
275 The watchdog timer is stopped when initialized.
276 It performs full SoC reset.
277
Jim Liufc166b02022-04-01 17:59:39 +0800278config WDT_NPCM
279 bool "Nuvoton watchdog timer support"
280 depends on WDT && ARCH_NPCM
281 help
282 This enables Nuvoton npcm7xx/npcm8xx watchdog timer driver,
283 The watchdog timer is stopped when initialized.
284 It performs full SoC reset.
285
Suneel Garapati7072b172019-10-21 16:09:36 -0700286config WDT_OCTEONTX
Stefan Roeseaf3b2102022-05-11 09:08:47 +0200287 bool "Octeon core watchdog support"
288 depends on WDT && (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2)
Suneel Garapati7072b172019-10-21 16:09:36 -0700289 default y
290 imply WATCHDOG
291 help
Stefan Roeseaf3b2102022-05-11 09:08:47 +0200292 This enables the Octeon watchdog driver, which can be found on
293 various Octeon parts such as Octeon II/III and OcteonTX/TX2.
Suneel Garapati7072b172019-10-21 16:09:36 -0700294
Suniel Mahesh1c783ab2019-07-31 21:54:06 +0530295config WDT_OMAP3
Michal Simek5288b9b2020-03-11 12:26:53 +0100296 bool "TI OMAP watchdog timer support"
297 depends on WDT && ARCH_OMAP2PLUS
298 default y if AM33XX
299 help
Suniel Mahesh1c783ab2019-07-31 21:54:06 +0530300 This enables OMAP3+ watchdog timer driver, which can be
301 found on some TI chipsets and inline with driver model.
302
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200303config WDT_ORION
304 bool "Orion watchdog timer support"
Shreenidhi Shedi335fb5b2018-07-15 02:05:41 +0530305 depends on WDT
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200306 select CLK
Shreenidhi Shedi335fb5b2018-07-15 02:05:41 +0530307 help
Michal Simek5288b9b2020-03-11 12:26:53 +0100308 Select this to enable Orion watchdog timer, which can be found on some
309 Marvell Armada chips.
Shreenidhi Shedi335fb5b2018-07-15 02:05:41 +0530310
Jan Kiszkaddf21d52020-06-23 13:15:08 +0200311config WDT_K3_RTI
312 bool "Texas Instruments K3 RTI watchdog"
313 depends on WDT && ARCH_K3
314 help
315 Say Y here if you want to include support for the K3 watchdog
316 timer (RTI module) available in the K3 generation of processors.
317
Jan Kiszkad35cdfb2021-09-18 08:17:55 +0200318if WDT_K3_RTI
319
320config WDT_K3_RTI_LOAD_FW
321 bool "Load watchdog firmware"
322 depends on REMOTEPROC
323 help
324 Automatically load the specified firmware image into the MCU R5F
325 core 0. On the AM65x, this firmware is supposed to handle the expiry
326 of the watchdog timer, typically by resetting the system.
327
328config WDT_K3_RTI_FW_FILE
329 string "Watchdog firmware image file"
330 default "k3-rti-wdt.fw"
331 depends on WDT_K3_RTI_LOAD_FW
332 help
333 Firmware image to be embedded into U-Boot and loaded on watchdog
334 start.
335
336endif
337
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200338config WDT_SANDBOX
339 bool "Enable Watchdog Timer support for Sandbox"
340 depends on SANDBOX && WDT
Xiaoliang Yang4161dc22018-10-18 17:14:19 +0800341 help
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200342 Enable Watchdog Timer support in Sandbox. This is a dummy device that
343 can be probed and supports all of the methods of WDT, but does not
344 really do anything.
Xiaoliang Yang4161dc22018-10-18 17:14:19 +0800345
Rasmus Villemoesae400f32022-09-27 11:54:04 +0200346config WDT_ALARM_SANDBOX
347 bool "Enable SIGALRM-based Watchdog Timer support for Sandbox"
348 depends on SANDBOX && WDT
349 help
350 Enable support for a SIGALRM-based watchdog timer in Sandbox. This is
351 a watchdog device based on the host OS' alarm() function, which will
352 kill the sandbox with SIGALRM unless properly maintained.
353
Zhao Qiangfb816fa2020-07-10 16:55:18 +0800354config WDT_SBSA
355 bool "SBSA watchdog timer support"
356 depends on WDT
357 help
358 Select this to enable SBSA watchdog timer.
359 This driver can operate ARM SBSA Generic Watchdog as a single stage.
360 In the single stage mode, when the timeout is reached, your system
361 will be reset by WS1. The first signal (WS0) is ignored.
362
Heiko Schocher2480b152024-11-23 17:52:45 +0100363config WDT_SIEMENS_PMIC
364 bool "Enable PMIC Watchdog Timer support for Siemens platforms"
365 depends on ARCH_IMX8 && WDT
366 help
367 Select this to enable the PMIC watchdog driver controlled via
368 IMX8 SCU API found on Siemens platforms.
369
Michael Wallefa842012021-11-15 23:45:43 +0100370config WDT_SL28CPLD
371 bool "sl28cpld watchdog timer support"
372 depends on WDT && SL28CPLD
373 help
374 Enable support for the watchdog timer in the Kontron sl28cpld
375 management controller.
376
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200377config WDT_SP805
378 bool "SP805 watchdog timer support"
Prasanthi Chellakumar0509c4e2018-10-09 11:46:40 -0700379 depends on WDT
380 help
Michal Simek5288b9b2020-03-11 12:26:53 +0100381 Select this to enable SP805 watchdog timer, which can be found on some
382 nxp layerscape chips.
Stefan Roese84569692018-10-04 13:39:07 +0200383
Patrice Chotard473b2442019-04-30 17:26:22 +0200384config WDT_STM32MP
385 bool "IWDG watchdog driver for STM32 MP's family"
386 depends on WDT
387 imply WATCHDOG
388 help
389 Enable the STM32 watchdog (IWDG) driver. Enable support to
390 configure STM32's on-SoC watchdog.
391
Chanho Parke8a348f2023-11-06 08:13:16 +0900392config WDT_STARFIVE
393 bool "StarFive watchdog timer support"
394 depends on WDT
395 imply WATCHDOG
396 help
397 Enable support for the watchdog timer of StarFive JH7110 SoC.
398
Samuel Holland65c982b2021-08-22 13:53:27 -0500399config WDT_SUNXI
400 bool "Allwinner sunxi watchdog timer support"
401 depends on WDT && ARCH_SUNXI
402 default y
403 help
404 Enable support for the watchdog timer in Allwinner sunxi SoCs.
405
ETIENNE DUBLE73a6e702023-01-25 10:57:28 +0100406config WDT_BCM2835
407 bool "Broadcom 2835 watchdog timer support"
408 depends on WDT && ARCH_BCM283X
409 default y
410 help
411 Enable support for the watchdog timer in Broadcom 283X SoCs such
412 as Raspberry Pi boards.
413
Patrice Chotard4a0ae732019-04-30 17:26:20 +0200414config XILINX_TB_WATCHDOG
415 bool "Xilinx Axi watchdog timer support"
416 depends on WDT
417 imply WATCHDOG
Christophe Leroy40159302018-11-21 08:51:45 +0000418 help
Michal Simek5288b9b2020-03-11 12:26:53 +0100419 Select this to enable Xilinx Axi watchdog timer, which can be found on some
420 Xilinx Microblaze Platforms.
Christophe Leroy40159302018-11-21 08:51:45 +0000421
Ashok Reddy Somaf4aecf42020-03-11 03:06:04 -0600422config WDT_XILINX
423 bool "Xilinx window watchdog timer support"
424 depends on WDT && ARCH_VERSAL
425 select REGMAP
426 imply WATCHDOG
427 help
428 Select this to enable Xilinx window watchdog timer, which can be found on
429 Xilinx Versal Platforms.
430
Andy Shevchenkod13a8a32019-06-21 13:28:08 +0300431config WDT_TANGIER
432 bool "Intel Tangier watchdog timer support"
433 depends on WDT && INTEL_MID
434 help
435 This enables support for watchdog controller available on
436 Intel Tangier SoC. If you're using a board with Intel Tangier
437 SoC, say Y here.
438
Lionel Debieve47e022c2023-04-14 15:49:15 +0200439config WDT_ARM_SMC
440 bool "ARM SMC watchdog timer support"
441 depends on WDT && ARM_SMCCC
442 imply WATCHDOG
443 help
444 Select this to enable Arm SMC watchdog timer. This watchdog will manage
445 a watchdog based on ARM SMCCC communication.
446
Marek Vasut55ec91b2019-06-09 03:46:21 +0200447config SPL_WDT
448 bool "Enable driver model for watchdog timer drivers in SPL"
449 depends on SPL_DM
Simon Glass0b385222024-07-31 08:44:08 -0600450 select SPL_CYCLIC if CYCLIC
Marek Vasut55ec91b2019-06-09 03:46:21 +0200451 help
452 Enable driver model for watchdog timer in SPL.
453 This is similar to CONFIG_WDT in U-Boot.
454
Sergei Antonova0d98602023-04-12 14:01:58 +0300455config WDT_FTWDT010
456 bool "Faraday Technology ftwdt010 watchdog timer support"
457 depends on WDT
458 imply WATCHDOG
459 help
460 Faraday Technology ftwdt010 watchdog is an architecture independent
461 watchdog. It is usually used in SoC chip design.
Ye Li62862b62017-02-22 16:21:48 +0800462endmenu