xref: /linux/drivers/watchdog/Kconfig (revision c434e25b62f8efcfbb6bf1f7ce55960206c1137e)
1# SPDX-License-Identifier: GPL-2.0-only
2
3#
4# Watchdog device configuration
5#
6
7menuconfig WATCHDOG
8	bool "Watchdog Timer Support"
9	help
10	  If you say Y here (and to one of the following options) and create a
11	  character special file /dev/watchdog with major number 10 and minor
12	  number 130 using mknod ("man mknod"), you will get a watchdog, i.e.:
13	  subsequently opening the file and then failing to write to it for
14	  longer than 1 minute will result in rebooting the machine. This
15	  could be useful for a networked machine that needs to come back
16	  on-line as fast as possible after a lock-up. There's both a watchdog
17	  implementation entirely in software (which can sometimes fail to
18	  reboot the machine) and a driver for hardware watchdog boards, which
19	  are more robust and can also keep track of the temperature inside
20	  your computer. For details, read
21	  <file:Documentation/watchdog/watchdog-api.rst> in the kernel source.
22
23	  The watchdog is usually used together with the watchdog daemon
24	  which is available from
25	  <https://ibiblio.org/pub/Linux/system/daemons/watchdog/>. This daemon
26	  can also monitor NFS connections and can reboot the machine when the
27	  process table is full.
28
29	  If unsure, say N.
30
31if WATCHDOG
32
33config WATCHDOG_CORE
34	tristate "WatchDog Timer Driver Core"
35	help
36	  Say Y here if you want to use the new watchdog timer driver core.
37	  This driver provides a framework for all watchdog timer drivers
38	  and gives them the /dev/watchdog interface (and later also the
39	  sysfs interface).
40
41config WATCHDOG_NOWAYOUT
42	bool "Disable watchdog shutdown on close"
43	help
44	  The default watchdog behaviour (which you get if you say N here) is
45	  to stop the timer if the process managing it closes the file
46	  /dev/watchdog. It's always remotely possible that this process might
47	  get killed. If you say Y here, the watchdog cannot be stopped once
48	  it has been started.
49
50config WATCHDOG_HANDLE_BOOT_ENABLED
51	bool "Update boot-enabled watchdog until userspace takes over"
52	default y
53	help
54	  The default watchdog behaviour (which you get if you say Y here) is
55	  to ping watchdog devices that were enabled before the driver has
56	  been loaded until control is taken over from userspace using the
57	  /dev/watchdog file. If you say N here, the kernel will not update
58	  the watchdog on its own. Thus if your userspace does not start fast
59	  enough your device will reboot.
60
61config WATCHDOG_OPEN_TIMEOUT
62	int "Timeout value for opening watchdog device"
63	default 0
64	help
65	  The maximum time, in seconds, for which the watchdog framework takes
66	  care of pinging a hardware watchdog.  A value of 0 means infinite. The
67	  value set here can be overridden by the commandline parameter
68	  "watchdog.open_timeout".
69
70config WATCHDOG_SYSFS
71	bool "Read different watchdog information through sysfs"
72	help
73	  Say Y here if you want to enable watchdog device status read through
74	  sysfs attributes.
75
76config WATCHDOG_HRTIMER_PRETIMEOUT
77	bool "Enable watchdog hrtimer-based pretimeouts"
78	help
79	  Enable this if you want to use a hrtimer timer based pretimeout for
80	  watchdogs that do not natively support pretimeout support. Be aware
81	  that because this pretimeout functionality uses hrtimers, it may not
82	  be able to fire before the actual watchdog fires in some situations.
83
84comment "Watchdog Pretimeout Governors"
85
86config WATCHDOG_PRETIMEOUT_GOV
87	bool "Enable watchdog pretimeout governors"
88	depends on WATCHDOG_CORE
89	help
90	  The option allows to select watchdog pretimeout governors.
91
92config WATCHDOG_PRETIMEOUT_GOV_SEL
93	tristate
94	depends on WATCHDOG_PRETIMEOUT_GOV
95	default m
96	select WATCHDOG_PRETIMEOUT_GOV_PANIC if WATCHDOG_PRETIMEOUT_GOV_NOOP=n
97
98if WATCHDOG_PRETIMEOUT_GOV
99
100config WATCHDOG_PRETIMEOUT_GOV_NOOP
101	tristate "Noop watchdog pretimeout governor"
102	depends on WATCHDOG_CORE
103	default WATCHDOG_CORE
104	help
105	  Noop watchdog pretimeout governor, only an informational
106	  message is added to kernel log buffer.
107
108config WATCHDOG_PRETIMEOUT_GOV_PANIC
109	tristate "Panic watchdog pretimeout governor"
110	depends on WATCHDOG_CORE
111	default WATCHDOG_CORE
112	help
113	  Panic watchdog pretimeout governor, on watchdog pretimeout
114	  event put the kernel into panic.
115
116choice
117	prompt "Default Watchdog Pretimeout Governor"
118	default WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC
119	help
120	  This option selects a default watchdog pretimeout governor.
121	  The governor takes its action, if a watchdog is capable
122	  to report a pretimeout event.
123
124config WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP
125	bool "noop"
126	depends on WATCHDOG_PRETIMEOUT_GOV_NOOP
127	help
128	  Use noop watchdog pretimeout governor by default. If noop
129	  governor is selected by a user, write a short message to
130	  the kernel log buffer and don't do any system changes.
131
132config WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC
133	bool "panic"
134	depends on WATCHDOG_PRETIMEOUT_GOV_PANIC
135	help
136	  Use panic watchdog pretimeout governor by default, if
137	  a watchdog pretimeout event happens, consider that
138	  a watchdog feeder is dead and reboot is unavoidable.
139
140endchoice
141
142endif # WATCHDOG_PRETIMEOUT_GOV
143
144#
145# General Watchdog drivers
146#
147
148comment "Watchdog Device Drivers"
149
150# Architecture Independent
151
152config SOFT_WATCHDOG
153	tristate "Software watchdog"
154	select WATCHDOG_CORE
155	help
156	  A software monitoring watchdog. This will fail to reboot your system
157	  from some situations that the hardware watchdog will recover
158	  from. Equally it's a lot cheaper to install.
159
160	  To compile this driver as a module, choose M here: the
161	  module will be called softdog.
162
163config SOFT_WATCHDOG_PRETIMEOUT
164	bool "Software watchdog pretimeout governor support"
165	depends on SOFT_WATCHDOG && WATCHDOG_PRETIMEOUT_GOV
166	help
167	  Enable this if you want to use pretimeout governors with the software
168	  watchdog. Be aware that governors might affect the watchdog because it
169	  is purely software, e.g. the panic governor will stall it!
170
171config BD957XMUF_WATCHDOG
172	tristate "ROHM BD9576MUF and BD9573MUF PMIC Watchdog"
173	depends on MFD_ROHM_BD957XMUF
174	select WATCHDOG_CORE
175	help
176	  Support for the watchdog in the ROHM BD9576 and BD9573 PMICs.
177	  These PMIC ICs contain watchdog block which can be configured
178	  to toggle reset line if SoC fails to ping watchdog via GPIO.
179
180	  Say Y here to include support for the ROHM BD9576 or BD9573
181	  watchdog. Alternatively say M to compile the driver as a module,
182	  which will be called bd9576_wdt.
183
184config BD96801_WATCHDOG
185	tristate "ROHM BD96801 PMIC Watchdog"
186	depends on MFD_ROHM_BD96801
187	select WATCHDOG_CORE
188	help
189	  Support for the watchdog in the ROHM BD96801 PMIC. Watchdog can be
190	  configured to only generate IRQ or to trigger system reset via reset
191	  pin.
192
193	  Say Y here to include support for the ROHM BD96801 watchdog.
194	  Alternatively say M to compile the driver as a module,
195	  which will be called bd96801_wdt.
196
197config CROS_EC_WATCHDOG
198	tristate "ChromeOS EC-based watchdog"
199	select WATCHDOG_CORE
200	depends on CROS_EC
201	help
202	  Watchdog driver for Chromebook devices equipped with embedded controller.
203	  Trigger event is recorded in EC and checked on the subsequent boot.
204
205	  To compile this driver as a module, choose M here: the
206	  module will be called cros_ec_wdt.
207
208config DA9052_WATCHDOG
209	tristate "Dialog DA9052 Watchdog"
210	depends on PMIC_DA9052 || COMPILE_TEST
211	select WATCHDOG_CORE
212	help
213	  Support for the watchdog in the DA9052 PMIC. Watchdog trigger
214	  cause system reset.
215
216	  Say Y here to include support for the DA9052 watchdog.
217	  Alternatively say M to compile the driver as a module,
218	  which will be called da9052_wdt.
219
220config DA9055_WATCHDOG
221	tristate "Dialog Semiconductor DA9055 Watchdog"
222	depends on MFD_DA9055 || COMPILE_TEST
223	select WATCHDOG_CORE
224	help
225	  If you say yes here you get support for watchdog on the Dialog
226	  Semiconductor DA9055 PMIC.
227
228	  This driver can also be built as a module.  If so, the module
229	  will be called da9055_wdt.
230
231config DA9063_WATCHDOG
232	tristate "Dialog DA9063 Watchdog"
233	depends on MFD_DA9063 || COMPILE_TEST
234	depends on I2C
235	select WATCHDOG_CORE
236	help
237	  Support for the watchdog in the DA9063 PMIC.
238
239	  This driver can be built as a module. The module name is da9063_wdt.
240
241config DA9062_WATCHDOG
242	tristate "Dialog DA9062/61 Watchdog"
243	depends on MFD_DA9062 || COMPILE_TEST
244	depends on I2C
245	select WATCHDOG_CORE
246	help
247	  Support for the watchdog in the DA9062 and DA9061 PMICs.
248
249	  This driver can be built as a module. The module name is da9062_wdt.
250
251config GPIO_WATCHDOG
252	tristate "Watchdog device controlled through GPIO-line"
253	depends on OF_GPIO
254	select WATCHDOG_CORE
255	help
256	  If you say yes here you get support for watchdog device
257	  controlled through GPIO-line.
258
259config GPIO_WATCHDOG_ARCH_INITCALL
260	bool "Register the watchdog as early as possible"
261	depends on GPIO_WATCHDOG=y
262	help
263	  In some situations, the default initcall level (module_init)
264	  in not early enough in the boot process to avoid the watchdog
265	  to be triggered.
266	  If you say yes here, the initcall level would be raised to
267	  arch_initcall.
268	  If in doubt, say N.
269
270config LENOVO_SE10_WDT
271	tristate "Lenovo SE10 Watchdog"
272	depends on (X86 && DMI) || COMPILE_TEST
273	depends on HAS_IOPORT
274	select WATCHDOG_CORE
275	help
276	  If you say yes here you get support for the watchdog
277	  functionality for the Lenovo SE10 platform.
278
279	  This driver can also be built as a module. If so, the module
280	  will be called lenovo-se10-wdt.
281
282config MENF21BMC_WATCHDOG
283	tristate "MEN 14F021P00 BMC Watchdog"
284	depends on MFD_MENF21BMC || COMPILE_TEST
285	depends on I2C
286	select WATCHDOG_CORE
287	help
288	  Say Y here to include support for the MEN 14F021P00 BMC Watchdog.
289
290	  This driver can also be built as a module. If so the module
291	  will be called menf21bmc_wdt.
292
293config MENZ069_WATCHDOG
294	tristate "MEN 16Z069 Watchdog"
295	depends on MCB
296	select WATCHDOG_CORE
297	help
298	  Say Y here to include support for the MEN 16Z069 Watchdog.
299
300	  This driver can also be built as a module. If so the module
301	  will be called menz069_wdt.
302
303config WDAT_WDT
304	tristate "ACPI Watchdog Action Table (WDAT)"
305	depends on ACPI
306	select WATCHDOG_CORE
307	select ACPI_WATCHDOG
308	help
309	  This driver adds support for systems with ACPI Watchdog Action
310	  Table (WDAT) table. Servers typically have this but it can be
311	  found on some desktop machines as well. This driver will take
312	  over the native iTCO watchdog driver found on many Intel CPUs.
313
314	  To compile this driver as module, choose M here: the module will
315	  be called wdat_wdt.
316
317config WM831X_WATCHDOG
318	tristate "WM831x watchdog"
319	depends on MFD_WM831X
320	select WATCHDOG_CORE
321	help
322	  Support for the watchdog in the WM831x AudioPlus PMICs.  When
323	  the watchdog triggers the system will be reset.
324
325config WM8350_WATCHDOG
326	tristate "WM8350 watchdog"
327	depends on MFD_WM8350
328	select WATCHDOG_CORE
329	help
330	  Support for the watchdog in the WM8350 AudioPlus PMIC.  When
331	  the watchdog triggers the system will be reset.
332
333config XILINX_WATCHDOG
334	tristate "Xilinx Watchdog timer"
335	depends on HAS_IOMEM
336	select WATCHDOG_CORE
337	help
338	  Watchdog driver for the xps_timebase_wdt IP core.
339
340	  To compile this driver as a module, choose M here: the
341	  module will be called of_xilinx_wdt.
342
343config XILINX_WINDOW_WATCHDOG
344	tristate "Xilinx window watchdog timer"
345	depends on HAS_IOMEM
346	depends on ARM64 || COMPILE_TEST
347	select WATCHDOG_CORE
348	help
349	  Window watchdog driver for the versal_wwdt IP core.
350	  Window watchdog timer(WWDT) contains closed(first) and
351	  open(second) window with 32 bit width. Write to the watchdog
352	  timer within predefined window periods of time. This means
353	  a period that is not too soon and a period that is not too
354	  late. The WWDT has to be restarted within the open window time.
355	  If software tries to restart WWDT outside of the open window
356	  time period, it generates a reset.
357
358	  To compile this driver as a module, choose M here: the
359	  module will be called xilinx_wwdt.
360
361config ZIIRAVE_WATCHDOG
362	tristate "Zodiac RAVE Watchdog Timer"
363	depends on I2C
364	select WATCHDOG_CORE
365	help
366	  Watchdog driver for the Zodiac Aerospace RAVE Switch Watchdog
367	  Processor.
368
369	  To compile this driver as a module, choose M here: the
370	  module will be called ziirave_wdt.
371
372config RAVE_SP_WATCHDOG
373	tristate "RAVE SP Watchdog timer"
374	depends on RAVE_SP_CORE
375	depends on NVMEM || !NVMEM
376	select WATCHDOG_CORE
377	help
378	  Support for the watchdog on RAVE SP device.
379
380config MLX_WDT
381	tristate "Mellanox Watchdog"
382	depends on MELLANOX_PLATFORM || COMPILE_TEST
383	select WATCHDOG_CORE
384	select REGMAP
385	help
386	  This is the driver for the hardware watchdog on Mellanox systems.
387	  If you are going to use it, say Y here, otherwise N.
388	  This driver can be used together with the watchdog daemon.
389	  It can also watch your kernel to make sure it doesn't freeze,
390	  and if it does, it reboots your system after a certain amount of
391	  time.
392
393	  To compile this driver as a module, choose M here: the
394	  module will be called mlx-wdt.
395
396config SL28CPLD_WATCHDOG
397	tristate "Kontron sl28cpld Watchdog"
398	depends on MFD_SL28CPLD || COMPILE_TEST
399	select WATCHDOG_CORE
400	help
401	  Say Y here to include support for the watchdog timer
402	  on the Kontron sl28 CPLD.
403
404	  To compile this driver as a module, choose M here: the
405	  module will be called sl28cpld_wdt.
406
407# ALPHA Architecture
408
409# ARM Architecture
410
411config ARM_SP805_WATCHDOG
412	tristate "ARM SP805 Watchdog"
413	depends on (ARM || ARM64 || COMPILE_TEST) && ARM_AMBA
414	select WATCHDOG_CORE
415	help
416	  ARM Primecell SP805 Watchdog timer. This will reboot your system when
417	  the timeout is reached.
418
419config ARM_SBSA_WATCHDOG
420	tristate "ARM SBSA Generic Watchdog"
421	depends on ARM64
422	depends on ARM_ARCH_TIMER
423	select WATCHDOG_CORE
424	help
425	  ARM SBSA Generic Watchdog has two stage timeouts:
426	  the first signal (WS0) is for alerting the system by interrupt,
427	  the second one (WS1) is a real hardware reset.
428	  More details: ARM DEN0029B - Server Base System Architecture (SBSA)
429
430	  This driver can operate ARM SBSA Generic Watchdog as a single stage
431	  or a two stages watchdog, it depends on the module parameter "action".
432
433	  Note: the maximum timeout in the two stages mode is half of that in
434	  the single stage mode.
435
436	  To compile this driver as module, choose M here: The module
437	  will be called sbsa_gwdt.
438
439config ARMADA_37XX_WATCHDOG
440	tristate "Armada 37xx watchdog"
441	depends on ARCH_MVEBU || COMPILE_TEST
442	depends on HAS_IOMEM
443	select MFD_SYSCON
444	select WATCHDOG_CORE
445	help
446	   Say Y here to include support for the watchdog timer found on
447	   Marvell Armada 37xx SoCs.
448	   To compile this driver as a module, choose M here: the
449	   module will be called armada_37xx_wdt.
450
451config ASM9260_WATCHDOG
452	tristate "Alphascale ASM9260 watchdog"
453	depends on MACH_ASM9260 || COMPILE_TEST
454	depends on OF
455	select WATCHDOG_CORE
456	select RESET_CONTROLLER
457	help
458	  Watchdog timer embedded into Alphascale asm9260 chips. This will
459	  reboot your system when the timeout is reached.
460
461config AT91RM9200_WATCHDOG
462	tristate "AT91RM9200 watchdog"
463	depends on (SOC_AT91RM9200 && MFD_SYSCON) || COMPILE_TEST
464	help
465	  Watchdog timer embedded into AT91RM9200 chips. This will reboot your
466	  system when the timeout is reached.
467
468config AT91SAM9X_WATCHDOG
469	tristate "AT91SAM9X / AT91CAP9 watchdog"
470	depends on ARCH_AT91 || COMPILE_TEST
471	select WATCHDOG_CORE
472	help
473	  Watchdog timer embedded into AT91SAM9X and AT91CAP9 chips. This will
474	  reboot your system when the timeout is reached.
475
476config SAMA5D4_WATCHDOG
477	tristate "Atmel SAMA5D4 Watchdog Timer"
478	depends on ARCH_AT91 || COMPILE_TEST
479	select WATCHDOG_CORE
480	help
481	  Atmel SAMA5D4 watchdog timer is embedded into SAMA5D4 chips.
482	  Its Watchdog Timer Mode Register can be written more than once.
483	  This will reboot your system when the timeout is reached.
484
485config CADENCE_WATCHDOG
486	tristate "Cadence Watchdog Timer"
487	depends on HAS_IOMEM
488	select WATCHDOG_CORE
489	help
490	  Say Y here if you want to include support for the watchdog
491	  timer in the Xilinx Zynq.
492
493config 21285_WATCHDOG
494	tristate "DC21285 watchdog"
495	depends on FOOTBRIDGE
496	help
497	  The Intel Footbridge chip contains a built-in watchdog circuit. Say Y
498	  here if you wish to use this. Alternatively say M to compile the
499	  driver as a module, which will be called wdt285.
500
501	  This driver does not work on all machines. In particular, early CATS
502	  boards have hardware problems that will cause the machine to simply
503	  lock up if the watchdog fires.
504
505	  "If in doubt, leave it out" - say N.
506
507config 977_WATCHDOG
508	tristate "NetWinder WB83C977 watchdog"
509	depends on (FOOTBRIDGE && ARCH_NETWINDER) || (ARM && COMPILE_TEST)
510	depends on HAS_IOPORT
511	help
512	  Say Y here to include support for the WB977 watchdog included in
513	  NetWinder machines. Alternatively say M to compile the driver as
514	  a module, which will be called wdt977.
515
516	  Not sure? It's safe to say N.
517
518config FTWDT010_WATCHDOG
519	tristate "Faraday Technology FTWDT010 watchdog"
520	depends on ARM || COMPILE_TEST
521	select WATCHDOG_CORE
522	default ARCH_GEMINI
523	help
524	  Say Y here if to include support for the Faraday Technology
525	  FTWDT010 watchdog timer embedded in the Cortina Systems Gemini
526	  family of devices.
527
528	  To compile this driver as a module, choose M here: the
529	  module will be called ftwdt010_wdt.
530
531config IXP4XX_WATCHDOG
532	tristate "IXP4xx Watchdog"
533	depends on ARCH_IXP4XX || (ARM && COMPILE_TEST)
534	select WATCHDOG_CORE
535	help
536	  Say Y here if to include support for the watchdog timer
537	  in the Intel IXP4xx network processors. This driver can
538	  be built as a module by choosing M. The module will
539	  be called ixp4xx_wdt.
540
541	  Note: The internal IXP4xx watchdog does a soft CPU reset
542	  which doesn't reset any peripherals. There are circumstances
543	  where the watchdog will fail to reset the board correctly
544	  (e.g., if the boot ROM is in an unreadable state).
545
546	  Say N if you are unsure.
547
548config S3C2410_WATCHDOG
549	tristate "S3C6410/S5Pv210/Exynos Watchdog"
550	depends on ARCH_S3C64XX || ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
551	select WATCHDOG_CORE
552	help
553	  Watchdog timer block in the Samsung S3C64xx, S5Pv210 and Exynos
554	  SoCs. This will reboot the system when the timer expires with
555	  the watchdog enabled.
556
557	  The driver is limited by the speed of the system's PCLK
558	  signal, so with reasonably fast systems (PCLK around 50-66MHz)
559	  then watchdog intervals of over approximately 20seconds are
560	  unavailable.
561
562	  Choose Y/M here only if you build for such Samsung SoC.
563	  The driver can be built as a module by choosing M, and will
564	  be called s3c2410_wdt.
565
566config SA1100_WATCHDOG
567	tristate "SA1100/PXA2xx watchdog"
568	depends on ARCH_SA1100 || ARCH_PXA || COMPILE_TEST
569	help
570	  Watchdog timer embedded into SA11x0 and PXA2xx chips. This will
571	  reboot your system when timeout is reached.
572
573	  NOTE: once enabled, this timer cannot be disabled.
574
575	  To compile this driver as a module, choose M here: the
576	  module will be called sa1100_wdt.
577
578config DW_WATCHDOG
579	tristate "Synopsys DesignWare watchdog"
580	depends on HAS_IOMEM
581	select WATCHDOG_CORE
582	help
583	  Say Y here if to include support for the Synopsys DesignWare
584	  watchdog timer found in many chips.
585	  To compile this driver as a module, choose M here: the
586	  module will be called dw_wdt.
587
588config EP93XX_WATCHDOG
589	tristate "EP93xx Watchdog"
590	depends on ARCH_EP93XX || COMPILE_TEST
591	select WATCHDOG_CORE
592	help
593	  Say Y here if to include support for the watchdog timer
594	  embedded in the Cirrus Logic EP93xx family of devices.
595
596	  To compile this driver as a module, choose M here: the
597	  module will be called ep93xx_wdt.
598
599config OMAP_WATCHDOG
600	tristate "OMAP Watchdog"
601	depends on ARCH_OMAP16XX || ARCH_OMAP2PLUS || COMPILE_TEST
602	select WATCHDOG_CORE
603	help
604	  Support for TI OMAP1610/OMAP1710/OMAP2420/OMAP3430/OMAP4430 watchdog.
605	  Say 'Y' here to enable the
606	  OMAP1610/OMAP1710/OMAP2420/OMAP3430/OMAP4430 watchdog timer.
607
608config PNX4008_WATCHDOG
609	tristate "LPC32XX Watchdog"
610	depends on ARCH_LPC32XX || COMPILE_TEST
611	select WATCHDOG_CORE
612	help
613	  Say Y here if to include support for the watchdog timer
614	  in the LPC32XX processor.
615	  This driver can be built as a module by choosing M. The module
616	  will be called pnx4008_wdt.
617
618	  Say N if you are unsure.
619
620config DAVINCI_WATCHDOG
621	tristate "DaVinci watchdog"
622	depends on ARCH_DAVINCI || ARCH_KEYSTONE || COMPILE_TEST
623	select WATCHDOG_CORE
624	help
625	  Say Y here if to include support for the watchdog timer
626	  in the DaVinci DM644x/DM646x or Keystone processors.
627	  To compile this driver as a module, choose M here: the
628	  module will be called davinci_wdt.
629
630	  NOTE: once enabled, this timer cannot be disabled.
631	  Say N if you are unsure.
632
633config K3_RTI_WATCHDOG
634	tristate "Texas Instruments K3 RTI watchdog"
635	depends on ARCH_K3 || COMPILE_TEST
636	select WATCHDOG_CORE
637	help
638	  Say Y here if you want to include support for the K3 watchdog
639	  timer (RTI module) available in the K3 generation of processors.
640
641config ORION_WATCHDOG
642	tristate "Orion watchdog"
643	depends on ARCH_ORION5X || ARCH_DOVE || MACH_DOVE || ARCH_MVEBU || COMPILE_TEST
644	depends on ARM
645	select WATCHDOG_CORE
646	help
647	  Say Y here if to include support for the watchdog timer
648	  in the Marvell Orion5x and Kirkwood ARM SoCs.
649	  To compile this driver as a module, choose M here: the
650	  module will be called orion_wdt.
651
652config RN5T618_WATCHDOG
653	tristate "Ricoh RN5T618 watchdog"
654	depends on MFD_RN5T618 || COMPILE_TEST
655	select WATCHDOG_CORE
656	help
657	  If you say yes here you get support for watchdog on the Ricoh
658	  RN5T618 PMIC.
659
660	  This driver can also be built as a module.  If so, the module
661	  will be called rn5t618_wdt.
662
663config SUNXI_WATCHDOG
664	tristate "Allwinner SoCs watchdog support"
665	depends on ARCH_SUNXI || COMPILE_TEST
666	select WATCHDOG_CORE
667	help
668	  Say Y here to include support for the watchdog timer
669	  in Allwinner SoCs.
670	  To compile this driver as a module, choose M here: the
671	  module will be called sunxi_wdt.
672
673config NPCM7XX_WATCHDOG
674	tristate "Nuvoton NPCM750 watchdog"
675	depends on ARCH_NPCM || COMPILE_TEST
676	default y if ARCH_NPCM7XX
677	select WATCHDOG_CORE
678	help
679	  Say Y here to include Watchdog timer support for the
680	  watchdog embedded into the NPCM7xx.
681	  This watchdog is used to reset the system and thus cannot be
682	  compiled as a module.
683
684config TWL4030_WATCHDOG
685	tristate "TWL4030 Watchdog"
686	depends on TWL4030_CORE
687	select WATCHDOG_CORE
688	help
689	  Support for TI TWL4030 watchdog.  Say 'Y' here to enable the
690	  watchdog timer support for TWL4030 chips.
691
692config STMP3XXX_RTC_WATCHDOG
693	tristate "Freescale STMP3XXX & i.MX23/28 watchdog"
694	depends on RTC_DRV_STMP || COMPILE_TEST
695	select WATCHDOG_CORE
696	help
697	  Say Y here to include support for the watchdog timer inside
698	  the RTC for the STMP37XX/378X or i.MX23/28 SoC.
699	  To compile this driver as a module, choose M here: the
700	  module will be called stmp3xxx_rtc_wdt.
701
702config TS4800_WATCHDOG
703	tristate "TS-4800 Watchdog"
704	depends on HAS_IOMEM && OF
705	depends on SOC_IMX51 || COMPILE_TEST
706	select WATCHDOG_CORE
707	select MFD_SYSCON
708	help
709	  Technologic Systems TS-4800 has watchdog timer implemented in
710	  an external FPGA. Say Y here if you want to support for the
711	  watchdog timer on TS-4800 board.
712
713config TS72XX_WATCHDOG
714	tristate "TS-72XX SBC Watchdog"
715	depends on MACH_TS72XX || COMPILE_TEST
716	select WATCHDOG_CORE
717	help
718	  Technologic Systems TS-7200, TS-7250 and TS-7260 boards have
719	  watchdog timer implemented in a external CPLD chip. Say Y here
720	  if you want to support for the watchdog timer on TS-72XX boards.
721
722	  To compile this driver as a module, choose M here: the
723	  module will be called ts72xx_wdt.
724
725config MAX63XX_WATCHDOG
726	tristate "Max63xx watchdog"
727	depends on HAS_IOMEM
728	select WATCHDOG_CORE
729	help
730	  Support for memory mapped max63{69,70,71,72,73,74} watchdog timer.
731
732config MAX77620_WATCHDOG
733	tristate "Maxim Max77620 Watchdog Timer"
734	depends on MFD_MAX77620 || MFD_MAX77714 || COMPILE_TEST
735	select WATCHDOG_CORE
736	help
737	  This is the driver for the Max77620 watchdog timer.
738	  Say 'Y' here to enable the watchdog timer support for
739	  MAX77620 chips. To compile this driver as a module,
740	  choose M here: the module will be called max77620_wdt.
741
742config IMX2_WDT
743	tristate "IMX2+ Watchdog"
744	depends on ARCH_MXC || ARCH_LAYERSCAPE || COMPILE_TEST
745	select REGMAP_MMIO
746	select WATCHDOG_CORE
747	help
748	  This is the driver for the hardware watchdog
749	  on the Freescale IMX2 and later processors.
750	  If you have one of these processors and wish to have
751	  watchdog support enabled, say Y, otherwise say N.
752
753	  To compile this driver as a module, choose M here: the
754	  module will be called imx2_wdt.
755
756config IMX_SC_WDT
757	tristate "IMX SC Watchdog"
758	depends on HAVE_ARM_SMCCC
759	depends on IMX_SCU || COMPILE_TEST
760	select WATCHDOG_CORE
761	help
762	  This is the driver for the system controller watchdog
763	  on the NXP i.MX SoCs with system controller inside, the
764	  watchdog driver will call ARM SMC API and trap into
765	  ARM-Trusted-Firmware for operations, ARM-Trusted-Firmware
766	  will request system controller to execute the operations.
767	  If you have one of these processors and wish to have
768	  watchdog support enabled, say Y, otherwise say N.
769
770	  To compile this driver as a module, choose M here: the
771	  module will be called imx_sc_wdt.
772
773config IMX7ULP_WDT
774	tristate "IMX7ULP Watchdog"
775	depends on ARCH_MXC || COMPILE_TEST
776	select WATCHDOG_CORE
777	help
778	  This is the driver for the hardware watchdog on the Freescale
779	  IMX7ULP and later processors. If you have one of these
780	  processors and wish to have watchdog support enabled,
781	  say Y, otherwise say N.
782
783	  To compile this driver as a module, choose M here: the
784	  module will be called imx7ulp_wdt.
785
786config DB500_WATCHDOG
787	tristate "ST-Ericsson DB800 watchdog"
788	depends on MFD_DB8500_PRCMU
789	select WATCHDOG_CORE
790	default y
791	help
792	  Say Y here to include Watchdog timer support for the watchdog
793	  existing in the prcmu of ST-Ericsson DB8500 platform.
794
795	  To compile this driver as a module, choose M here: the
796	  module will be called db500_wdt.
797
798config RETU_WATCHDOG
799	tristate "Retu watchdog"
800	depends on MFD_RETU
801	select WATCHDOG_CORE
802	help
803	  Retu watchdog driver for Nokia Internet Tablets (770, N800,
804	  N810). At least on N800 the watchdog cannot be disabled, so
805	  this driver is essential and you should enable it.
806
807	  To compile this driver as a module, choose M here: the
808	  module will be called retu_wdt.
809
810config MOXART_WDT
811	tristate "MOXART watchdog"
812	depends on ARCH_MOXART || COMPILE_TEST
813	help
814	  Say Y here to include Watchdog timer support for the watchdog
815	  existing on the MOXA ART SoC series platforms.
816
817	  To compile this driver as a module, choose M here: the
818	  module will be called moxart_wdt.
819
820config ST_LPC_WATCHDOG
821	tristate "STMicroelectronics LPC Watchdog"
822	depends on ARCH_STI || COMPILE_TEST
823	depends on OF
824	select WATCHDOG_CORE
825	help
826	  Say Y here to include STMicroelectronics Low Power Controller
827	  (LPC) based Watchdog timer support.
828
829	  To compile this driver as a module, choose M here: the
830	  module will be called st_lpc_wdt.
831
832config TEGRA_WATCHDOG
833	tristate "Tegra watchdog"
834	depends on (ARCH_TEGRA || COMPILE_TEST) && HAS_IOMEM
835	select WATCHDOG_CORE
836	help
837	  Say Y here to include support for the watchdog timer
838	  embedded in NVIDIA Tegra SoCs.
839
840	  To compile this driver as a module, choose M here: the
841	  module will be called tegra_wdt.
842
843config QCOM_WDT
844	tristate "QCOM watchdog"
845	depends on HAS_IOMEM
846	depends on ARCH_QCOM || COMPILE_TEST
847	select WATCHDOG_CORE
848	help
849	  Say Y here to include Watchdog timer support for the watchdog found
850	  on QCOM chipsets.  Currently supported targets are the MSM8960,
851	  APQ8064, and IPQ8064.
852
853	  To compile this driver as a module, choose M here: the
854	  module will be called qcom_wdt.
855
856config MESON_GXBB_WATCHDOG
857	tristate "Amlogic Meson GXBB SoCs watchdog support"
858	depends on ARCH_MESON || COMPILE_TEST
859	select WATCHDOG_CORE
860	help
861	  Say Y here to include support for the watchdog timer
862	  in Amlogic Meson GXBB SoCs.
863	  To compile this driver as a module, choose M here: the
864	  module will be called meson_gxbb_wdt.
865
866config MESON_WATCHDOG
867	tristate "Amlogic Meson SoCs watchdog support"
868	depends on ARCH_MESON || COMPILE_TEST
869	select WATCHDOG_CORE
870	help
871	  Say Y here to include support for the watchdog timer
872	  in Amlogic Meson SoCs.
873	  To compile this driver as a module, choose M here: the
874	  module will be called meson_wdt.
875
876config MEDIATEK_WATCHDOG
877	tristate "Mediatek SoCs watchdog support"
878	depends on ARCH_MEDIATEK || COMPILE_TEST
879	default ARCH_MEDIATEK
880	select WATCHDOG_CORE
881	select RESET_CONTROLLER
882	help
883	  Say Y here to include support for the watchdog timer
884	  in Mediatek SoCs.
885	  To compile this driver as a module, choose M here: the
886	  module will be called mtk_wdt.
887
888config DIGICOLOR_WATCHDOG
889	tristate "Conexant Digicolor SoCs watchdog support"
890	depends on ARCH_DIGICOLOR || COMPILE_TEST
891	select WATCHDOG_CORE
892	help
893	  Say Y here to include support for the watchdog timer
894	  in Conexant Digicolor SoCs.
895	  To compile this driver as a module, choose M here: the
896	  module will be called digicolor_wdt.
897
898config ARM_SMC_WATCHDOG
899	tristate "ARM Secure Monitor Call based watchdog support"
900	depends on ARM || ARM64
901	depends on OF
902	depends on HAVE_ARM_SMCCC
903	select WATCHDOG_CORE
904	help
905	  Say Y here to include support for a watchdog timer
906	  implemented by the EL3 Secure Monitor on ARM platforms.
907	  Requires firmware support.
908	  To compile this driver as a module, choose M here: the
909	  module will be called arm_smc_wdt.
910
911config LPC18XX_WATCHDOG
912	tristate "LPC18xx/43xx Watchdog"
913	depends on ARCH_LPC18XX || COMPILE_TEST
914	depends on HAS_IOMEM
915	select WATCHDOG_CORE
916	help
917	  Say Y here if to include support for the watchdog timer
918	  in NXP LPC SoCs family, which includes LPC18xx/LPC43xx
919	  processors.
920	  To compile this driver as a module, choose M here: the
921	  module will be called lpc18xx_wdt.
922
923config RENESAS_WDT
924	tristate "Renesas WDT Watchdog"
925	depends on ARCH_RENESAS || COMPILE_TEST
926	select WATCHDOG_CORE
927	help
928	  This driver adds watchdog support for the integrated watchdogs in the
929	  Renesas R-Car and other SH-Mobile SoCs (usually named RWDT or SWDT).
930
931config RENESAS_RZAWDT
932	tristate "Renesas RZ/A WDT Watchdog"
933	depends on ARCH_RENESAS || COMPILE_TEST
934	select WATCHDOG_CORE
935	help
936	  This driver adds watchdog support for the integrated watchdogs in the
937	  Renesas RZ/A SoCs. These watchdogs can be used to reset a system.
938
939config RENESAS_RZN1WDT
940	tristate "Renesas RZ/N1 watchdog"
941	depends on ARCH_RENESAS || COMPILE_TEST
942	select WATCHDOG_CORE
943	help
944	  This driver adds watchdog support for the integrated watchdogs in the
945	  Renesas RZ/N1 SoCs. These watchdogs can be used to reset a system.
946
947config RENESAS_RZG2LWDT
948	tristate "Renesas RZ/G2L WDT Watchdog"
949	depends on ARCH_RENESAS || COMPILE_TEST
950	select WATCHDOG_CORE
951	help
952	  This driver adds watchdog support for the integrated watchdogs in the
953	  Renesas RZ/G2L SoCs. These watchdogs can be used to reset a system.
954
955config ASPEED_WATCHDOG
956	tristate "Aspeed BMC watchdog support"
957	depends on ARCH_ASPEED || COMPILE_TEST
958	select WATCHDOG_CORE
959	help
960	  Say Y here to include support for the watchdog timer
961	  in Aspeed BMC SoCs.
962
963	  This driver is required to reboot the SoC.
964
965	  To compile this driver as a module, choose M here: the
966	  module will be called aspeed_wdt.
967
968config STM32_WATCHDOG
969	tristate "STM32 Independent WatchDoG (IWDG) support"
970	depends on ARCH_STM32 || COMPILE_TEST
971	select WATCHDOG_CORE
972	default y
973	help
974	  Say Y here to include support for the watchdog timer
975	  in stm32 SoCs.
976
977	  To compile this driver as a module, choose M here: the
978	  module will be called stm32_iwdg.
979
980config STPMIC1_WATCHDOG
981	tristate "STPMIC1 PMIC watchdog support"
982	depends on MFD_STPMIC1
983	select WATCHDOG_CORE
984	help
985	  Say Y here to include watchdog support embedded into STPMIC1 PMIC.
986	  If the watchdog timer expires, stpmic1 will shut down all its power
987	  supplies.
988
989	  To compile this driver as a module, choose M here: the
990	  module will be called spmic1_wdt.
991
992config UNIPHIER_WATCHDOG
993	tristate "UniPhier watchdog support"
994	depends on ARCH_UNIPHIER || COMPILE_TEST
995	depends on OF && MFD_SYSCON
996	select WATCHDOG_CORE
997	help
998	  Say Y here to include support watchdog timer embedded
999	  into the UniPhier system.
1000
1001	  To compile this driver as a module, choose M here: the
1002	  module will be called uniphier_wdt.
1003
1004config RTD119X_WATCHDOG
1005	bool "Realtek RTD119x/RTD129x watchdog support"
1006	depends on ARCH_REALTEK || COMPILE_TEST
1007	depends on OF
1008	select WATCHDOG_CORE
1009	default ARCH_REALTEK
1010	help
1011	  Say Y here to include support for the watchdog timer in
1012	  Realtek RTD1295 SoCs.
1013
1014config REALTEK_OTTO_WDT
1015	tristate "Realtek Otto MIPS watchdog support"
1016	depends on MACH_REALTEK_RTL || COMPILE_TEST
1017	depends on COMMON_CLK
1018	select WATCHDOG_CORE
1019	default MACH_REALTEK_RTL
1020	help
1021	  Say Y here to include support for the watchdog timer on Realtek
1022	  RTL838x, RTL839x, RTL930x SoCs. This watchdog has pretimeout
1023	  notifications and system reset on timeout.
1024
1025	  When built as a module this will be called realtek_otto_wdt.
1026
1027config SPRD_WATCHDOG
1028	tristate "Spreadtrum watchdog support"
1029	depends on ARCH_SPRD || COMPILE_TEST
1030	select WATCHDOG_CORE
1031	help
1032	  Say Y here to include watchdog timer supported
1033	  by Spreadtrum system.
1034
1035config PM8916_WATCHDOG
1036	tristate "QCOM PM8916 pmic watchdog"
1037	depends on OF && MFD_SPMI_PMIC
1038	select WATCHDOG_CORE
1039	help
1040	  Say Y here to include support watchdog timer embedded into the
1041	  pm8916 module.
1042
1043config VISCONTI_WATCHDOG
1044	tristate "Toshiba Visconti series watchdog support"
1045	depends on ARCH_VISCONTI || COMPILE_TEST
1046	select WATCHDOG_CORE
1047	help
1048	  Say Y here to include support for the watchdog timer in Toshiba
1049	  Visconti SoCs.
1050
1051config MSC313E_WATCHDOG
1052	tristate "MStar MSC313e watchdog"
1053	depends on ARCH_MSTARV7 || COMPILE_TEST
1054	select WATCHDOG_CORE
1055	help
1056	  Say Y here to include support for the Watchdog timer embedded
1057	  into MStar MSC313e chips. This will reboot your system when the
1058	  timeout is reached.
1059
1060	  To compile this driver as a module, choose M here: the
1061	  module will be called msc313e_wdt.
1062
1063config APPLE_WATCHDOG
1064	tristate "Apple SoC watchdog"
1065	depends on ARCH_APPLE || COMPILE_TEST
1066	select WATCHDOG_CORE
1067	help
1068	  Say Y here to include support for the Watchdog found in Apple
1069	  SoCs such as the M1. Next to the common watchdog features this
1070	  driver is also required in order to reboot these SoCs.
1071
1072	  To compile this driver as a module, choose M here: the
1073	  module will be called apple_wdt.
1074
1075config SUNPLUS_WATCHDOG
1076	tristate "Sunplus watchdog support"
1077	depends on ARCH_SUNPLUS || COMPILE_TEST
1078	select WATCHDOG_CORE
1079	help
1080	  Say Y here to include support for the watchdog timer
1081	  in Sunplus SoCs.
1082
1083	  To compile this driver as a module, choose M here: the
1084	  module will be called sunplus_wdt.
1085
1086# X86 (i386 + ia64 + x86_64) Architecture
1087
1088config ACQUIRE_WDT
1089	tristate "Acquire SBC Watchdog Timer"
1090	depends on X86
1091	help
1092	  This is the driver for the hardware watchdog on Single Board
1093	  Computers produced by Acquire Inc (and others). This watchdog
1094	  simply watches your kernel to make sure it doesn't freeze, and if
1095	  it does, it reboots your computer after a certain amount of time.
1096
1097	  To compile this driver as a module, choose M here: the
1098	  module will be called acquirewdt.
1099
1100	  Most people will say N.
1101
1102config ADVANTECH_WDT
1103	tristate "Advantech SBC Watchdog Timer"
1104	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1105	help
1106	  If you are configuring a Linux kernel for the Advantech single-board
1107	  computer, say `Y' here to support its built-in watchdog timer
1108	  feature. More information can be found at
1109	  <https://www.advantech.com.tw/products/>
1110
1111config ADVANTECH_EC_WDT
1112	tristate "Advantech Embedded Controller Watchdog Timer"
1113	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1114	select ISA_BUS_API
1115	select WATCHDOG_CORE
1116	help
1117		This driver supports Advantech products with ITE based Embedded Controller.
1118		It does not support Advantech products with other ECs or without EC.
1119
1120config ALIM1535_WDT
1121	tristate "ALi M1535 PMU Watchdog Timer"
1122	depends on (X86 || COMPILE_TEST) && PCI
1123	help
1124	  This is the driver for the hardware watchdog on the ALi M1535 PMU.
1125
1126	  To compile this driver as a module, choose M here: the
1127	  module will be called alim1535_wdt.
1128
1129	  Most people will say N.
1130
1131config ALIM7101_WDT
1132	tristate "ALi M7101 PMU Computer Watchdog"
1133	depends on PCI
1134	help
1135	  This is the driver for the hardware watchdog on the ALi M7101 PMU
1136	  as used in the x86 Cobalt servers and also found in some
1137	  SPARC Netra servers too.
1138
1139	  To compile this driver as a module, choose M here: the
1140	  module will be called alim7101_wdt.
1141
1142	  Most people will say N.
1143
1144config EBC_C384_WDT
1145	tristate "WinSystems EBC-C384 Watchdog Timer"
1146	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1147	select ISA_BUS_API
1148	select WATCHDOG_CORE
1149	help
1150	  Enables watchdog timer support for the watchdog timer on the
1151	  WinSystems EBC-C384 motherboard. The timeout may be configured via
1152	  the timeout module parameter.
1153
1154config EXAR_WDT
1155	tristate "Exar Watchdog Timer"
1156	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1157	select WATCHDOG_CORE
1158	help
1159	  Enables watchdog timer support for the watchdog timer present
1160	  in some Exar/MaxLinear UART chips like the XR28V38x.
1161
1162	  To compile this driver as a module, choose M here: the
1163	  module will be called exar_wdt.
1164
1165config F71808E_WDT
1166	tristate "Fintek F718xx, F818xx Super I/O Watchdog"
1167	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1168	select WATCHDOG_CORE
1169	help
1170	  This is the driver for the hardware watchdog on the Fintek F71808E,
1171	  F71862FG, F71868, F71869, F71882FG, F71889FG, F81803, F81865, and
1172	  F81866 Super I/O controllers.
1173
1174	  You can compile this driver directly into the kernel, or use
1175	  it as a module.  The module will be called f71808e_wdt.
1176
1177config SP5100_TCO
1178	tristate "AMD/ATI SP5100 TCO Timer/Watchdog"
1179	depends on (X86 || COMPILE_TEST) && PCI && HAS_IOPORT
1180	select WATCHDOG_CORE
1181	help
1182	  Hardware watchdog driver for the AMD/ATI SP5100 chipset. The TCO
1183	  (Total Cost of Ownership) timer is a watchdog timer that will reboot
1184	  the machine after its expiration. The expiration time can be
1185	  configured with the "heartbeat" parameter.
1186
1187	  To compile this driver as a module, choose M here: the
1188	  module will be called sp5100_tco.
1189
1190config GEODE_WDT
1191	tristate "AMD Geode CS5535/CS5536 Watchdog"
1192	depends on CS5535_MFGPT
1193	help
1194	  This driver enables a watchdog capability built into the
1195	  CS5535/CS5536 companion chips for the AMD Geode GX and LX
1196	  processors.  This watchdog watches your kernel to make sure
1197	  it doesn't freeze, and if it does, it reboots your computer after
1198	  a certain amount of time.
1199
1200	  You can compile this driver directly into the kernel, or use
1201	  it as a module.  The module will be called geodewdt.
1202
1203config SC520_WDT
1204	tristate "AMD Elan SC520 processor Watchdog"
1205	depends on MELAN || COMPILE_TEST
1206	help
1207	  This is the driver for the hardware watchdog built in to the
1208	  AMD "Elan" SC520 microcomputer commonly used in embedded systems.
1209	  This watchdog simply watches your kernel to make sure it doesn't
1210	  freeze, and if it does, it reboots your computer after a certain
1211	  amount of time.
1212
1213	  You can compile this driver directly into the kernel, or use
1214	  it as a module.  The module will be called sc520_wdt.
1215
1216config SBC_FITPC2_WATCHDOG
1217	tristate "Compulab SBC-FITPC2 watchdog"
1218	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1219	help
1220	  This is the driver for the built-in watchdog timer on the fit-PC2,
1221	  fit-PC2i, CM-iAM single-board computers made by Compulab.
1222
1223	  It's possible to enable the watchdog timer either from BIOS (F2) or
1224	  from booted Linux.
1225	  When the "Watchdog Timer Value" is enabled one can set 31-255 seconds
1226	  operational range.
1227
1228	  Entering BIOS setup temporarily disables watchdog operation regardless
1229	  of current state, so system will not be restarted while user is in
1230	  BIOS setup.
1231
1232	  Once the watchdog is enabled the system will be restarted every
1233	  "Watchdog Timer Value" period, so to prevent it user can restart or
1234	  disable the watchdog.
1235
1236	  To compile this driver as a module, choose M here: the
1237	  module will be called sbc_fitpc2_wdt.
1238
1239	  Most people will say N.
1240
1241config EUROTECH_WDT
1242	tristate "Eurotech CPU-1220/1410 Watchdog Timer"
1243	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1244	help
1245	  Enable support for the watchdog timer on the Eurotech CPU-1220 and
1246	  CPU-1410 cards.  These are PC/104 SBCs. Spec sheets and product
1247	  information are at <http://www.eurotech.it/>.
1248
1249config IB700_WDT
1250	tristate "IB700 SBC Watchdog Timer"
1251	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1252	help
1253	  This is the driver for the hardware watchdog on the IB700 Single
1254	  Board Computer produced by TMC Technology (www.tmc-uk.com). This
1255	  watchdog simply watches your kernel to make sure it doesn't freeze,
1256	  and if it does, it reboots your computer after a certain amount of time.
1257
1258	  This driver is like the WDT501 driver but for slightly different
1259	  hardware.
1260
1261	  To compile this driver as a module, choose M here: the
1262	  module will be called ib700wdt.
1263
1264	  Most people will say N.
1265
1266config IBMASR
1267	tristate "IBM Automatic Server Restart"
1268	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1269	help
1270	  This is the driver for the IBM Automatic Server Restart watchdog
1271	  timer built-in into some eServer xSeries machines.
1272
1273	  To compile this driver as a module, choose M here: the
1274	  module will be called ibmasr.
1275
1276config WAFER_WDT
1277	tristate "ICP Single Board Computer Watchdog Timer"
1278	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1279	help
1280	  This is a driver for the hardware watchdog on the ICP Single
1281	  Board Computer. This driver is working on (at least) the following
1282	  IPC SBC's: Wafer 5823, Rocky 4783, Rocky 3703 and Rocky 3782.
1283
1284	  To compile this driver as a module, choose M here: the
1285	  module will be called wafer5823wdt.
1286
1287config I6300ESB_WDT
1288	tristate "Intel 6300ESB Timer/Watchdog"
1289	depends on PCI
1290	select WATCHDOG_CORE
1291	help
1292	  Hardware driver for the watchdog timer built into the Intel
1293	  6300ESB controller hub.
1294
1295	  To compile this driver as a module, choose M here: the
1296	  module will be called i6300esb.
1297
1298config IE6XX_WDT
1299	tristate "Intel Atom E6xx Watchdog"
1300	depends on (X86 || COMPILE_TEST) && PCI && HAS_IOPORT
1301	select WATCHDOG_CORE
1302	select MFD_CORE
1303	select LPC_SCH
1304	help
1305	  Hardware driver for the watchdog timer built into the Intel
1306	  Atom E6XX (TunnelCreek) processor.
1307
1308	  To compile this driver as a module, choose M here: the
1309	  module will be called ie6xx_wdt.
1310
1311config INTEL_MID_WATCHDOG
1312	tristate "Intel MID Watchdog Timer"
1313	depends on X86_INTEL_MID
1314	select WATCHDOG_CORE
1315	help
1316	  Watchdog timer driver built into the Intel SCU for Intel MID
1317	  Platforms.
1318
1319	  This driver currently supports only the watchdog evolution
1320	  implementation in SCU, available for Merrifield generation.
1321
1322	  To compile this driver as a module, choose M here.
1323
1324config ITCO_WDT
1325	tristate "Intel TCO Timer/Watchdog"
1326	depends on X86 && PCI
1327	select WATCHDOG_CORE
1328	depends on I2C || I2C=n
1329	depends on MFD_INTEL_PMC_BXT || !MFD_INTEL_PMC_BXT
1330	depends on HAS_IOPORT # for I2C_I801
1331	select LPC_ICH if !EXPERT
1332	select I2C_I801 if !EXPERT && I2C
1333	help
1334	  Hardware driver for the intel TCO timer based watchdog devices.
1335	  These drivers are included in the Intel 82801 I/O Controller
1336	  Hub family (from ICH0 up to ICH10) and in the Intel 63xxESB
1337	  controller hub.
1338
1339	  The TCO (Total Cost of Ownership) timer is a watchdog timer
1340	  that will reboot the machine after its second expiration. The
1341	  expiration time can be configured with the "heartbeat" parameter.
1342
1343	  On some motherboards the driver may fail to reset the chipset's
1344	  NO_REBOOT flag which prevents the watchdog from rebooting the
1345	  machine. If this is the case you will get a kernel message like
1346	  "failed to reset NO_REBOOT flag, reboot disabled by hardware".
1347
1348	  To compile this driver as a module, choose M here: the
1349	  module will be called iTCO_wdt.
1350
1351config ITCO_VENDOR_SUPPORT
1352	bool "Intel TCO Timer/Watchdog Specific Vendor Support"
1353	depends on ITCO_WDT
1354	help
1355	  Add vendor specific support to the intel TCO timer based watchdog
1356	  devices. At this moment we only have additional support for some
1357	  SuperMicro Inc. motherboards.
1358
1359config IT8712F_WDT
1360	tristate "IT8712F (Smart Guardian) Watchdog Timer"
1361	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1362	help
1363	  This is the driver for the built-in watchdog timer on the IT8712F
1364	  Super I/0 chipset used on many motherboards.
1365
1366	  If the driver does not work, then make sure that the game port in
1367	  the BIOS is enabled.
1368
1369	  To compile this driver as a module, choose M here: the
1370	  module will be called it8712f_wdt.
1371
1372config IT87_WDT
1373	tristate "IT87 Watchdog Timer"
1374	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1375	select WATCHDOG_CORE
1376	help
1377	  This is the driver for the hardware watchdog on the ITE IT8607,
1378	  IT8620, IT8622, IT8625, IT8628, IT8655, IT8665, IT8686, IT8702,
1379	  IT8712, IT8716, IT8718, IT8720, IT8721, IT8726, IT8728, and
1380	  IT8783 Super I/O chips.
1381
1382	  This watchdog simply watches your kernel to make sure it doesn't
1383	  freeze, and if it does, it reboots your computer after a certain
1384	  amount of time.
1385
1386	  To compile this driver as a module, choose M here: the module will
1387	  be called it87_wdt.
1388
1389config HP_WATCHDOG
1390	tristate "HP ProLiant iLO2+ Hardware Watchdog Timer"
1391	select WATCHDOG_CORE
1392	depends on (ARM64 || X86 || COMPILE_TEST) && PCI
1393	help
1394	  A software monitoring watchdog and NMI handling driver. This driver
1395	  will detect lockups and provide a stack trace. This is a driver that
1396	  will only load on an HP ProLiant system with a minimum of iLO2 support.
1397	  To compile this driver as a module, choose M here: the module will be
1398	  called hpwdt.
1399
1400config HPWDT_NMI_DECODING
1401	bool "NMI support for the HP ProLiant iLO2+ Hardware Watchdog Timer"
1402	depends on X86 && HP_WATCHDOG
1403	default y
1404	help
1405	  Enables the NMI handler for the watchdog pretimeout NMI and the iLO
1406	  "Generate NMI to System" virtual button.  When an NMI is claimed
1407	  by the driver, panic is called.
1408
1409config KEMPLD_WDT
1410	tristate "Kontron COM Watchdog Timer"
1411	depends on MFD_KEMPLD
1412	select WATCHDOG_CORE
1413	help
1414	  Support for the PLD watchdog on some Kontron ETX and COMexpress
1415	  (ETXexpress) modules
1416
1417	  This driver can also be built as a module. If so, the module will be
1418	  called kempld_wdt.
1419
1420config SC1200_WDT
1421	tristate "National Semiconductor PC87307/PC97307 (ala SC1200) Watchdog"
1422	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1423	help
1424	  This is a driver for National Semiconductor PC87307/PC97307 hardware
1425	  watchdog cards as found on the SC1200. This watchdog is mainly used
1426	  for power management purposes and can be used to power down the device
1427	  during inactivity periods (includes interrupt activity monitoring).
1428
1429	  To compile this driver as a module, choose M here: the
1430	  module will be called sc1200wdt.
1431
1432	  Most people will say N.
1433
1434config SCx200_WDT
1435	tristate "National Semiconductor SCx200 Watchdog"
1436	depends on SCx200 && PCI
1437	help
1438	  Enable the built-in watchdog timer support on the National
1439	  Semiconductor SCx200 processors.
1440
1441	  If compiled as a module, it will be called scx200_wdt.
1442
1443config PC87413_WDT
1444	tristate "NS PC87413 watchdog"
1445	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1446	help
1447	  This is the driver for the hardware watchdog on the PC87413 chipset
1448	  This watchdog simply watches your kernel to make sure it doesn't
1449	  freeze, and if it does, it reboots your computer after a certain
1450	  amount of time.
1451
1452	  To compile this driver as a module, choose M here: the
1453	  module will be called pc87413_wdt.
1454
1455	  Most people will say N.
1456
1457config NV_TCO
1458	tristate "nVidia TCO Timer/Watchdog"
1459	depends on (X86 || COMPILE_TEST) && PCI && HAS_IOPORT
1460	help
1461	  Hardware driver for the TCO timer built into the nVidia Hub family
1462	  (such as the MCP51).  The TCO (Total Cost of Ownership) timer is a
1463	  watchdog timer that will reboot the machine after its second
1464	  expiration. The expiration time can be configured with the
1465	  "heartbeat" parameter.
1466
1467	  On some motherboards the driver may fail to reset the chipset's
1468	  NO_REBOOT flag which prevents the watchdog from rebooting the
1469	  machine. If this is the case you will get a kernel message like
1470	  "failed to reset NO_REBOOT flag, reboot disabled by hardware".
1471
1472	  To compile this driver as a module, choose M here: the
1473	  module will be called nv_tco.
1474
1475config RDC321X_WDT
1476	tristate "RDC R-321x SoC watchdog"
1477	depends on X86_RDC321X || COMPILE_TEST
1478	depends on PCI
1479	help
1480	  This is the driver for the built in hardware watchdog
1481	  in the RDC R-321x SoC.
1482
1483	  To compile this driver as a module, choose M here: the
1484	  module will be called rdc321x_wdt.
1485
1486config 60XX_WDT
1487	tristate "SBC-60XX Watchdog Timer"
1488	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1489	help
1490	  This driver can be used with the watchdog timer found on some
1491	  single board computers, namely the 6010 PII based computer.
1492	  It may well work with other cards.  It reads port 0x443 to enable
1493	  and re-set the watchdog timer, and reads port 0x45 to disable
1494	  the watchdog.  If you have a card that behave in similar ways,
1495	  you can probably make this driver work with your card as well.
1496
1497	  You can compile this driver directly into the kernel, or use
1498	  it as a module.  The module will be called sbc60xxwdt.
1499
1500config SBC8360_WDT
1501	tristate "SBC8360 Watchdog Timer"
1502	depends on X86_32
1503	help
1504
1505	  This is the driver for the hardware watchdog on the SBC8360 Single
1506	  Board Computer produced by Axiomtek Co., Ltd. (www.axiomtek.com).
1507
1508	  To compile this driver as a module, choose M here: the
1509	  module will be called sbc8360.
1510
1511	  Most people will say N.
1512
1513config SBC7240_WDT
1514	tristate "SBC Nano 7240 Watchdog Timer"
1515	depends on X86_32 && !UML
1516	help
1517	  This is the driver for the hardware watchdog found on the IEI
1518	  single board computers EPIC Nano 7240 (and likely others). This
1519	  watchdog simply watches your kernel to make sure it doesn't freeze,
1520	  and if it does, it reboots your computer after a certain amount of
1521	  time.
1522
1523	  To compile this driver as a module, choose M here: the
1524	  module will be called sbc7240_wdt.
1525
1526config CPU5_WDT
1527	tristate "SMA CPU5 Watchdog"
1528	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1529	help
1530	  TBD.
1531	  To compile this driver as a module, choose M here: the
1532	  module will be called cpu5wdt.
1533
1534config SMSC_SCH311X_WDT
1535	tristate "SMSC SCH311X Watchdog Timer"
1536	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1537	help
1538	  This is the driver for the hardware watchdog timer on the
1539	  SMSC SCH3112, SCH3114 and SCH3116 Super IO chipset
1540	  (LPC IO with 8042 KBC, Reset Generation, HWM and multiple
1541	  serial ports).
1542
1543	  To compile this driver as a module, choose M here: the
1544	  module will be called sch311x_wdt.
1545
1546config SMSC37B787_WDT
1547	tristate "Winbond SMsC37B787 Watchdog Timer"
1548	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1549	help
1550	  This is the driver for the hardware watchdog component on the
1551	  Winbond SMsC37B787 chipset as used on the NetRunner Mainboard
1552	  from Vision Systems and maybe others.
1553
1554	  This watchdog simply watches your kernel to make sure it doesn't
1555	  freeze, and if it does, it reboots your computer after a certain
1556	  amount of time.
1557
1558	  Usually a userspace daemon will notify the kernel WDT driver that
1559	  userspace is still alive, at regular intervals.
1560
1561	  To compile this driver as a module, choose M here: the
1562	  module will be called smsc37b787_wdt.
1563
1564	  Most people will say N.
1565
1566config TQMX86_WDT
1567	tristate "TQ-Systems TQMX86 Watchdog Timer"
1568	depends on X86 || COMPILE_TEST
1569	select WATCHDOG_CORE
1570	help
1571	  This is the driver for the hardware watchdog timer in the TQMX86 IO
1572	  controller found on some of their ComExpress Modules.
1573
1574	  To compile this driver as a module, choose M here; the module
1575	  will be called tqmx86_wdt.
1576
1577	  Most people will say N.
1578
1579config VIA_WDT
1580	tristate "VIA Watchdog Timer"
1581	depends on (X86 || COMPILE_TEST) && PCI
1582	select WATCHDOG_CORE
1583	help
1584	  This is the driver for the hardware watchdog timer on VIA
1585	  southbridge chipset CX700, VX800/VX820 or VX855/VX875.
1586
1587	  To compile this driver as a module, choose M here; the module
1588	  will be called via_wdt.
1589
1590	  Most people will say N.
1591
1592config W83627HF_WDT
1593	tristate "Watchdog timer for W83627HF/W83627DHG and compatibles"
1594	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1595	select WATCHDOG_CORE
1596	help
1597	  This is the driver for the hardware watchdog on the following
1598	  Super I/O chips.
1599		W83627DHG/DHG-P/EHF/EHG/F/G/HF/S/SF/THF/UHG/UG
1600		W83637HF
1601		W83667HG/HG-B
1602		W83687THF
1603		W83697HF
1604		W83697UG
1605		NCT6775
1606		NCT6776
1607		NCT6779
1608		NCT6791
1609		NCT6792
1610		NCT6102D/04D/06D
1611		NCT6116D
1612
1613	  This watchdog simply watches your kernel to make sure it doesn't
1614	  freeze, and if it does, it reboots your computer after a certain
1615	  amount of time.
1616
1617	  To compile this driver as a module, choose M here: the
1618	  module will be called w83627hf_wdt.
1619
1620	  Most people will say N.
1621
1622config W83877F_WDT
1623	tristate "W83877F (EMACS) Watchdog Timer"
1624	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1625	help
1626	  This is the driver for the hardware watchdog on the W83877F chipset
1627	  as used in EMACS PC-104 motherboards (and likely others).  This
1628	  watchdog simply watches your kernel to make sure it doesn't freeze,
1629	  and if it does, it reboots your computer after a certain amount of
1630	  time.
1631
1632	  To compile this driver as a module, choose M here: the
1633	  module will be called w83877f_wdt.
1634
1635	  Most people will say N.
1636
1637config W83977F_WDT
1638	tristate "W83977F (PCM-5335) Watchdog Timer"
1639	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1640	help
1641	  This is the driver for the hardware watchdog on the W83977F I/O chip
1642	  as used in AAEON's PCM-5335 SBC (and likely others).  This
1643	  watchdog simply watches your kernel to make sure it doesn't freeze,
1644	  and if it does, it reboots your computer after a certain amount of
1645	  time.
1646
1647	  To compile this driver as a module, choose M here: the
1648	  module will be called w83977f_wdt.
1649
1650config MACHZ_WDT
1651	tristate "ZF MachZ Watchdog"
1652	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1653	help
1654	  If you are using a ZF Micro MachZ processor, say Y here, otherwise
1655	  N.  This is the driver for the watchdog timer built-in on that
1656	  processor using ZF-Logic interface.  This watchdog simply watches
1657	  your kernel to make sure it doesn't freeze, and if it does, it
1658	  reboots your computer after a certain amount of time.
1659
1660	  To compile this driver as a module, choose M here: the
1661	  module will be called machzwd.
1662
1663config SBC_EPX_C3_WATCHDOG
1664	tristate "Winsystems SBC EPX-C3 watchdog"
1665	depends on (X86 || COMPILE_TEST) && HAS_IOPORT
1666	help
1667	  This is the driver for the built-in watchdog timer on the EPX-C3
1668	  Single-board computer made by Winsystems, Inc.
1669
1670	  *Note*: This hardware watchdog is not probeable and thus there
1671	  is no way to know if writing to its IO address will corrupt
1672	  your system or have any real effect.  The only way to be sure
1673	  that this driver does what you want is to make sure you
1674	  are running it on an EPX-C3 from Winsystems with the watchdog
1675	  timer at IO address 0x1ee and 0x1ef.  It will write to both those
1676	  IO ports.  Basically, the assumption is made that if you compile
1677	  this driver into your kernel and/or load it as a module, that you
1678	  know what you are doing and that you are in fact running on an
1679	  EPX-C3 board!
1680
1681	  To compile this driver as a module, choose M here: the
1682	  module will be called sbc_epx_c3.
1683
1684config INTEL_MEI_WDT
1685	tristate "Intel MEI iAMT Watchdog"
1686	depends on INTEL_MEI && X86
1687	select WATCHDOG_CORE
1688	help
1689	  A device driver for the Intel MEI iAMT watchdog.
1690
1691	  The Intel AMT Watchdog is an OS Health (Hang/Crash) watchdog.
1692	  Whenever the OS hangs or crashes, iAMT will send an event
1693	  to any subscriber to this event. The watchdog doesn't reset the
1694	  the platform.
1695
1696	  To compile this driver as a module, choose M here:
1697	  the module will be called mei_wdt.
1698
1699config NI903X_WDT
1700	tristate "NI 903x/913x Watchdog"
1701	depends on X86 && ACPI
1702	select WATCHDOG_CORE
1703	help
1704	  This is the driver for the watchdog timer on the National Instruments
1705	  903x/913x real-time controllers.
1706
1707	  To compile this driver as a module, choose M here: the module will be
1708	  called ni903x_wdt.
1709
1710config NIC7018_WDT
1711	tristate "NIC7018 Watchdog"
1712	depends on X86 && ACPI
1713	select WATCHDOG_CORE
1714	help
1715	  Support for National Instruments NIC7018 Watchdog.
1716
1717	  To compile this driver as a module, choose M here: the module will be
1718	  called nic7018_wdt.
1719
1720config SIEMENS_SIMATIC_IPC_WDT
1721	tristate "Siemens Simatic IPC Watchdog"
1722	depends on SIEMENS_SIMATIC_IPC && PCI
1723	default y
1724	select WATCHDOG_CORE
1725	select P2SB if X86
1726	help
1727	  This driver adds support for several watchdogs found in Industrial
1728	  PCs from Siemens.
1729
1730	  To compile this driver as a module, choose M here: the module will be
1731	  called simatic-ipc-wdt.
1732
1733# M68K Architecture
1734
1735config M54xx_WATCHDOG
1736	tristate "MCF54xx watchdog support"
1737	depends on M548x
1738	help
1739	  To compile this driver as a module, choose M here: the
1740	  module will be called m54xx_wdt.
1741
1742# MicroBlaze Architecture
1743
1744# MIPS Architecture
1745
1746config ATH79_WDT
1747	tristate "Atheros AR71XX/AR724X/AR913X hardware watchdog"
1748	depends on ATH79 || (ARM && COMPILE_TEST)
1749	help
1750	  Hardware driver for the built-in watchdog timer on the Atheros
1751	  AR71XX/AR724X/AR913X SoCs.
1752
1753config BCM47XX_WDT
1754	tristate "Broadcom BCM47xx Watchdog Timer"
1755	depends on BCM47XX || ARCH_BCM_5301X || COMPILE_TEST
1756	select WATCHDOG_CORE
1757	help
1758	  Hardware driver for the Broadcom BCM47xx Watchdog Timer.
1759
1760config RC32434_WDT
1761	tristate "IDT RC32434 SoC Watchdog Timer"
1762	depends on MIKROTIK_RB532
1763	help
1764	  Hardware driver for the IDT RC32434 SoC built-in
1765	  watchdog timer.
1766
1767	  To compile this driver as a module, choose M here: the
1768	  module will be called rc32434_wdt.
1769
1770config INDYDOG
1771	tristate "Indy/I2 Hardware Watchdog"
1772	depends on SGI_HAS_INDYDOG
1773	help
1774	  Hardware driver for the Indy's/I2's watchdog. This is a
1775	  watchdog timer that will reboot the machine after a 60 second
1776	  timer expired and no process has written to /dev/watchdog during
1777	  that time.
1778
1779config JZ4740_WDT
1780	tristate "Ingenic jz4740 SoC hardware watchdog"
1781	depends on MIPS || COMPILE_TEST
1782	depends on COMMON_CLK
1783	select WATCHDOG_CORE
1784	select MFD_SYSCON
1785	help
1786	  Hardware driver for the built-in watchdog timer on Ingenic jz4740 SoCs.
1787
1788config WDT_MTX1
1789	tristate "MTX-1 Hardware Watchdog"
1790	depends on MIPS_MTX1 || (MIPS && COMPILE_TEST)
1791	help
1792	  Hardware driver for the MTX-1 boards. This is a watchdog timer that
1793	  will reboot the machine after a 100 seconds timer expired.
1794
1795config SIBYTE_WDOG
1796	tristate "Sibyte SoC hardware watchdog"
1797	depends on CPU_SB1
1798	help
1799	  Watchdog driver for the built in watchdog hardware in Sibyte
1800	  SoC processors.  There are apparently two watchdog timers
1801	  on such processors; this driver supports only the first one,
1802	  because currently Linux only supports exporting one watchdog
1803	  to userspace.
1804
1805	  To compile this driver as a loadable module, choose M here.
1806	  The module will be called sb_wdog.
1807
1808config TXX9_WDT
1809	tristate "Toshiba TXx9 Watchdog Timer"
1810	depends on CPU_TX49XX || (MIPS && COMPILE_TEST)
1811	select WATCHDOG_CORE
1812	help
1813	  Hardware driver for the built-in watchdog timer on TXx9 MIPS SoCs.
1814
1815config OCTEON_WDT
1816	tristate "Cavium OCTEON SOC family Watchdog Timer"
1817	depends on CAVIUM_OCTEON_SOC
1818	default y
1819	select WATCHDOG_CORE
1820	select EXPORT_UASM if OCTEON_WDT = m
1821	help
1822	  Hardware driver for OCTEON's on chip watchdog timer.
1823	  Enables the watchdog for all cores running Linux. It
1824	  installs a NMI handler and pokes the watchdog based on an
1825	  interrupt.  On first expiration of the watchdog, the
1826	  interrupt handler pokes it.  The second expiration causes an
1827	  NMI that prints a message. The third expiration causes a
1828	  global soft reset.
1829
1830	  When userspace has /dev/watchdog open, no poking is done
1831	  from the first interrupt, it is then only poked when the
1832	  device is written.
1833
1834config MARVELL_GTI_WDT
1835	tristate "Marvell GTI Watchdog driver"
1836	depends on ARCH_THUNDER || (COMPILE_TEST && 64BIT)
1837	default y
1838	select WATCHDOG_CORE
1839	help
1840	  Marvell GTI hardware supports watchdog timer. First timeout
1841	  works as watchdog pretimeout and installed interrupt handler
1842	  will be called on first timeout. Hardware can generate interrupt
1843	  to SCP on second timeout but it is not enabled, so second
1844	  timeout is ignored. If device poke does not happen then system
1845	  will reboot on third timeout.
1846
1847config BCM2835_WDT
1848	tristate "Broadcom BCM2835 hardware watchdog"
1849	depends on ARCH_BCM2835 || (OF && COMPILE_TEST)
1850	select WATCHDOG_CORE
1851	help
1852	  Watchdog driver for the built in watchdog hardware in Broadcom
1853	  BCM2835 SoC.
1854
1855	  To compile this driver as a loadable module, choose M here.
1856	  The module will be called bcm2835_wdt.
1857
1858config BCM_KONA_WDT
1859	tristate "BCM Kona Watchdog"
1860	depends on ARCH_BCM_MOBILE || COMPILE_TEST
1861	select WATCHDOG_CORE
1862	help
1863	  Support for the watchdog timer on the following Broadcom BCM281xx
1864	  family, which includes BCM11130, BCM11140, BCM11351, BCM28145 and
1865	  BCM28155 variants.
1866
1867	  Say 'Y' or 'M' here to enable the driver. The module will be called
1868	  bcm_kona_wdt.
1869
1870config BCM_KONA_WDT_DEBUG
1871	bool "DEBUGFS support for BCM Kona Watchdog"
1872	depends on BCM_KONA_WDT || COMPILE_TEST
1873	help
1874	  If enabled, adds /sys/kernel/debug/bcm_kona_wdt/info which provides
1875	  access to the driver's internal data structures as well as watchdog
1876	  timer hardware registres.
1877
1878	  If in doubt, say 'N'.
1879
1880config BCM7038_WDT
1881	tristate "BCM63xx/BCM7038 Watchdog"
1882	select WATCHDOG_CORE
1883	depends on HAS_IOMEM
1884	depends on ARCH_BCMBCA || ARCH_BRCMSTB || BMIPS_GENERIC || BCM63XX || COMPILE_TEST
1885	help
1886	  Watchdog driver for the built-in hardware in Broadcom 7038 and
1887	  later SoCs used in set-top boxes.  BCM7038 was made public
1888	  during the 2004 CES, and since then, many Broadcom chips use this
1889	  watchdog block, including some cable modem chips and DSL (63xx)
1890	  chips.
1891
1892config IMGPDC_WDT
1893	tristate "Imagination Technologies PDC Watchdog Timer"
1894	depends on HAS_IOMEM
1895	depends on MIPS || COMPILE_TEST
1896	select WATCHDOG_CORE
1897	help
1898	  Driver for Imagination Technologies PowerDown Controller
1899	  Watchdog Timer.
1900
1901	  To compile this driver as a loadable module, choose M here.
1902	  The module will be called imgpdc_wdt.
1903
1904config LANTIQ_WDT
1905	tristate "Lantiq SoC watchdog"
1906	depends on LANTIQ
1907	select WATCHDOG_CORE
1908	help
1909	  Hardware driver for the Lantiq SoC Watchdog Timer.
1910
1911config LOONGSON1_WDT
1912	tristate "Loongson1 SoC hardware watchdog"
1913	depends on MACH_LOONGSON32 || COMPILE_TEST
1914	select WATCHDOG_CORE
1915	help
1916	  Hardware driver for the Loongson1 SoC Watchdog Timer.
1917
1918config RALINK_WDT
1919	tristate "Ralink SoC watchdog"
1920	select WATCHDOG_CORE
1921	depends on RALINK
1922	help
1923	  Hardware driver for the Ralink SoC Watchdog Timer.
1924
1925config GXP_WATCHDOG
1926	tristate "HPE GXP watchdog support"
1927	depends on ARCH_HPE_GXP || COMPILE_TEST
1928	select WATCHDOG_CORE
1929	help
1930	  Say Y here to include support for the watchdog timer
1931	  in HPE GXP SoCs.
1932
1933	  To compile this driver as a module, choose M here.
1934	  The module will be called gxp-wdt.
1935
1936config MT7621_WDT
1937	tristate "Mediatek SoC watchdog"
1938	select WATCHDOG_CORE
1939	select REGMAP_MMIO
1940	select MFD_SYSCON
1941	depends on SOC_MT7620 || SOC_MT7621 || COMPILE_TEST
1942	help
1943	  Hardware driver for the Mediatek/Ralink MT7621/8 SoC Watchdog Timer.
1944
1945config PIC32_WDT
1946	tristate "Microchip PIC32 hardware watchdog"
1947	select WATCHDOG_CORE
1948	depends on MACH_PIC32 || (MIPS && COMPILE_TEST)
1949	help
1950	  Watchdog driver for the built in watchdog hardware in a PIC32.
1951
1952	  Configuration bits must be set appropriately for the watchdog to be
1953	  controlled by this driver.
1954
1955	  To compile this driver as a loadable module, choose M here.
1956	  The module will be called pic32-wdt.
1957
1958config PIC32_DMT
1959	tristate "Microchip PIC32 Deadman Timer"
1960	select WATCHDOG_CORE
1961	depends on MACH_PIC32 || (MIPS && COMPILE_TEST)
1962	help
1963	  Watchdog driver for PIC32 instruction fetch counting timer. This
1964	  specific timer is typically be used in mission critical and safety
1965	  critical applications, where any single failure of the software
1966	  functionality and sequencing must be detected.
1967
1968	  To compile this driver as a loadable module, choose M here.
1969	  The module will be called pic32-dmt.
1970
1971# PARISC Architecture
1972
1973# POWERPC Architecture
1974
1975config GEF_WDT
1976	tristate "GE Watchdog Timer"
1977	depends on GE_FPGA
1978	help
1979	  Watchdog timer found in a number of GE single board computers.
1980
1981config MPC5200_WDT
1982	bool "MPC52xx Watchdog Timer"
1983	depends on PPC_MPC52xx || COMPILE_TEST
1984	help
1985	  Use General Purpose Timer (GPT) 0 on the MPC5200 as Watchdog.
1986
1987config 8xxx_WDT
1988	tristate "MPC8xxx Platform Watchdog Timer"
1989	depends on PPC_8xx || PPC_83xx || PPC_86xx || PPC_MPC512x
1990	select WATCHDOG_CORE
1991	help
1992	  This driver is for a SoC level watchdog that exists on some
1993	  Freescale PowerPC processors. So far this driver supports:
1994	  - MPC8xx watchdogs
1995	  - MPC83xx watchdogs
1996	  - MPC86xx watchdogs
1997
1998	  For BookE processors (MPC85xx) use the BOOKE_WDT driver instead.
1999
2000config PIKA_WDT
2001	tristate "PIKA FPGA Watchdog"
2002	depends on WARP || (PPC64 && COMPILE_TEST)
2003	default y
2004	help
2005	  This enables the watchdog in the PIKA FPGA. Currently used on
2006	  the Warp platform.
2007
2008config BOOKE_WDT
2009	tristate "PowerPC Book-E Watchdog Timer"
2010	depends on BOOKE || 4xx
2011	select WATCHDOG_CORE
2012	help
2013	  Watchdog driver for PowerPC Book-E chips, such as the Freescale
2014	  MPC85xx SOCs and the IBM PowerPC 440.
2015
2016	  Please see Documentation/watchdog/watchdog-api.rst for
2017	  more information.
2018
2019config BOOKE_WDT_DEFAULT_TIMEOUT
2020	int "PowerPC Book-E Watchdog Timer Default Timeout"
2021	depends on BOOKE_WDT
2022	default 38 if PPC_E500
2023	range 0 63 if PPC_E500
2024	default 3 if !PPC_E500
2025	range 0 3 if !PPC_E500
2026	help
2027	  Select the default watchdog timer period to be used by the PowerPC
2028	  Book-E watchdog driver.  A watchdog "event" occurs when the bit
2029	  position represented by this number transitions from zero to one.
2030
2031	  For Freescale Book-E processors, this is a number between 0 and 63.
2032	  For other Book-E processors, this is a number between 0 and 3.
2033
2034	  The value can be overridden by the wdt_period command-line parameter.
2035
2036config MEN_A21_WDT
2037	tristate "MEN A21 VME CPU Carrier Board Watchdog Timer"
2038	select WATCHDOG_CORE
2039	depends on GPIOLIB || COMPILE_TEST
2040	help
2041	  Watchdog driver for MEN A21 VMEbus CPU Carrier Boards.
2042
2043	  The driver can also be built as a module. If so, the module will be
2044	  called mena21_wdt.
2045
2046	  If unsure select N here.
2047
2048# PPC64 Architecture
2049
2050config PSERIES_WDT
2051	tristate "POWER Architecture Platform Watchdog Timer"
2052	depends on PPC_PSERIES
2053	select WATCHDOG_CORE
2054	help
2055	  Driver for virtual watchdog timers provided by PAPR
2056	  hypervisors (e.g. PowerVM, KVM).
2057
2058config WATCHDOG_RTAS
2059	tristate "RTAS watchdog"
2060	depends on PPC_RTAS
2061	help
2062	  This driver adds watchdog support for the RTAS watchdog.
2063
2064	  To compile this driver as a module, choose M here. The module
2065	  will be called wdrtas.
2066
2067# RISC-V Architecture
2068
2069config STARFIVE_WATCHDOG
2070	tristate "StarFive Watchdog support"
2071	depends on ARCH_STARFIVE || COMPILE_TEST
2072	select WATCHDOG_CORE
2073	default ARCH_STARFIVE
2074	help
2075	  Say Y here to support the watchdog of StarFive JH7100 and JH7110
2076	  SoC. This driver can also be built as a module if choose M.
2077
2078# S390 Architecture
2079
2080config DIAG288_WATCHDOG
2081	tristate "System z diag288 Watchdog"
2082	depends on S390
2083	select WATCHDOG_CORE
2084	help
2085	  IBM s/390 and zSeries machines running under z/VM 5.1 or later
2086	  provide a virtual watchdog timer to their guest that cause a
2087	  user define Control Program command to be executed after a
2088	  timeout.
2089	  LPAR provides a very similar interface. This driver handles
2090	  both.
2091
2092	  To compile this driver as a module, choose M here. The module
2093	  will be called diag288_wdt.
2094
2095# SUPERH (sh + sh64) Architecture
2096
2097config SH_WDT
2098	tristate "SuperH Watchdog"
2099	depends on SUPERH && (CPU_SH3 || CPU_SH4 || COMPILE_TEST)
2100	select WATCHDOG_CORE
2101	help
2102	  This driver adds watchdog support for the integrated watchdog in the
2103	  SuperH processors. If you have one of these processors and wish
2104	  to have watchdog support enabled, say Y, otherwise say N.
2105
2106	  As a side note, saying Y here will automatically boost HZ to 1000
2107	  so that the timer has a chance to clear the overflow counter. On
2108	  slower systems (such as the SH-2 and SH-3) this will likely yield
2109	  some performance issues. As such, the WDT should be avoided here
2110	  unless it is absolutely necessary.
2111
2112	  To compile this driver as a module, choose M here: the
2113	  module will be called shwdt.
2114
2115# SPARC Architecture
2116
2117# SPARC64 Architecture
2118
2119config WATCHDOG_CP1XXX
2120	tristate "CP1XXX Hardware Watchdog support"
2121	depends on SPARC64 && PCI
2122	help
2123	  This is the driver for the hardware watchdog timers present on
2124	  Sun Microsystems CompactPCI models CP1400 and CP1500.
2125
2126	  To compile this driver as a module, choose M here: the
2127	  module will be called cpwatchdog.
2128
2129	  If you do not have a CompactPCI model CP1400 or CP1500, or
2130	  another UltraSPARC-IIi-cEngine boardset with hardware watchdog,
2131	  you should say N to this option.
2132
2133config WATCHDOG_RIO
2134	tristate "RIO Hardware Watchdog support"
2135	depends on SPARC64 && PCI
2136	help
2137	  Say Y here to support the hardware watchdog capability on Sun RIO
2138	  machines.  The watchdog timeout period is normally one minute but
2139	  can be changed with a boot-time parameter.
2140
2141config WATCHDOG_SUN4V
2142	tristate "Sun4v Watchdog support"
2143	select WATCHDOG_CORE
2144	depends on SPARC64
2145	help
2146	  Say Y here to support the hypervisor watchdog capability embedded
2147	  in the SPARC sun4v architecture.
2148
2149	  To compile this driver as a module, choose M here. The module will
2150	  be called sun4v_wdt.
2151
2152# XTENSA Architecture
2153
2154# Xen Architecture
2155
2156config XEN_WDT
2157	tristate "Xen Watchdog support"
2158	depends on XEN
2159	select WATCHDOG_CORE
2160	help
2161	  Say Y here to support the hypervisor watchdog capability provided
2162	  by Xen 4.0 and newer.  The watchdog timeout period is normally one
2163	  minute but can be changed with a boot-time parameter.
2164
2165config UML_WATCHDOG
2166	tristate "UML watchdog"
2167	depends on UML || COMPILE_TEST
2168
2169#
2170# ISA-based Watchdog Cards
2171#
2172
2173comment "ISA-based Watchdog Cards"
2174	depends on ISA
2175
2176config PCWATCHDOG
2177	tristate "Berkshire Products ISA-PC Watchdog"
2178	depends on ISA
2179	help
2180	  This is the driver for the Berkshire Products ISA-PC Watchdog card.
2181	  This card simply watches your kernel to make sure it doesn't freeze,
2182	  and if it does, it reboots your computer after a certain amount of
2183	  time. This driver is like the WDT501 driver but for different
2184	  hardware. Please read <file:Documentation/watchdog/pcwd-watchdog.rst>.
2185	  The PC watchdog cards can be ordered from <http://www.berkprod.com/>.
2186
2187	  To compile this driver as a module, choose M here: the
2188	  module will be called pcwd.
2189
2190	  Most people will say N.
2191
2192config MIXCOMWD
2193	tristate "Mixcom Watchdog"
2194	depends on ISA
2195	help
2196	  This is a driver for the Mixcom hardware watchdog cards.  This
2197	  watchdog simply watches your kernel to make sure it doesn't freeze,
2198	  and if it does, it reboots your computer after a certain amount of
2199	  time.
2200
2201	  To compile this driver as a module, choose M here: the
2202	  module will be called mixcomwd.
2203
2204	  Most people will say N.
2205
2206config WDT
2207	tristate "WDT Watchdog timer"
2208	depends on ISA
2209	help
2210	  If you have a WDT500P or WDT501P watchdog board, say Y here,
2211	  otherwise N. It is not possible to probe for this board, which means
2212	  that you have to inform the kernel about the IO port and IRQ that
2213	  is needed (you can do this via the io and irq parameters)
2214
2215	  To compile this driver as a module, choose M here: the
2216	  module will be called wdt.
2217
2218#
2219# PCI-based Watchdog Cards
2220#
2221
2222comment "PCI-based Watchdog Cards"
2223	depends on PCI
2224
2225config PCIPCWATCHDOG
2226	tristate "Berkshire Products PCI-PC Watchdog"
2227	depends on PCI && HAS_IOPORT
2228	help
2229	  This is the driver for the Berkshire Products PCI-PC Watchdog card.
2230	  This card simply watches your kernel to make sure it doesn't freeze,
2231	  and if it does, it reboots your computer after a certain amount of
2232	  time. The card can also monitor the internal temperature of the PC.
2233	  More info is available at <http://www.berkprod.com/pci_pc_watchdog.htm>.
2234
2235	  To compile this driver as a module, choose M here: the
2236	  module will be called pcwd_pci.
2237
2238	  Most people will say N.
2239
2240config WDTPCI
2241	tristate "PCI-WDT500/501 Watchdog timer"
2242	depends on PCI && HAS_IOPORT
2243	help
2244	  If you have a PCI-WDT500/501 watchdog board, say Y here, otherwise N.
2245
2246	  If you have a PCI-WDT501 watchdog board then you can enable the
2247	  temperature sensor by setting the type parameter to 501.
2248
2249	  If you want to enable the Fan Tachometer on the PCI-WDT501, then you
2250	  can do this via the tachometer parameter. Only do this if you have a
2251	  fan tachometer actually set up.
2252
2253	  To compile this driver as a module, choose M here: the
2254	  module will be called wdt_pci.
2255
2256#
2257# USB-based Watchdog Cards
2258#
2259
2260comment "USB-based Watchdog Cards"
2261	depends on USB
2262
2263config USBPCWATCHDOG
2264	tristate "Berkshire Products USB-PC Watchdog"
2265	depends on USB
2266	help
2267	  This is the driver for the Berkshire Products USB-PC Watchdog card.
2268	  This card simply watches your kernel to make sure it doesn't freeze,
2269	  and if it does, it reboots your computer after a certain amount of
2270	  time. The card can also monitor the internal temperature of the PC.
2271	  More info is available at <http://www.berkprod.com/usb_pc_watchdog.htm>.
2272
2273	  To compile this driver as a module, choose M here: the
2274	  module will be called pcwd_usb.
2275
2276	  Most people will say N.
2277
2278config KEEMBAY_WATCHDOG
2279	tristate "Intel Keem Bay SoC non-secure watchdog"
2280	depends on ARCH_KEEMBAY || (ARM64 && COMPILE_TEST)
2281	select WATCHDOG_CORE
2282	help
2283	  This option enable support for an In-secure watchdog timer driver for
2284	  Intel Keem Bay SoC. This WDT has a 32 bit timer and decrements in every
2285	  count unit. An interrupt will be triggered, when the count crosses
2286	  the threshold configured in the register.
2287
2288	  To compile this driver as a module, choose M here: the
2289	  module will be called keembay_wdt.
2290
2291endif # WATCHDOG
2292