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