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