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