1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only 25e53c8edSJean-Baptiste Theou 3b7e04f8cSWim Van Sebroeck# 4b7e04f8cSWim Van Sebroeck# Watchdog device configuration 5b7e04f8cSWim Van Sebroeck# 6b7e04f8cSWim Van Sebroeck 7b7e04f8cSWim Van Sebroeckmenuconfig WATCHDOG 8b7e04f8cSWim Van Sebroeck bool "Watchdog Timer Support" 9a7f7f624SMasahiro Yamada help 10b7e04f8cSWim Van Sebroeck If you say Y here (and to one of the following options) and create a 11b7e04f8cSWim Van Sebroeck character special file /dev/watchdog with major number 10 and minor 12b7e04f8cSWim Van Sebroeck number 130 using mknod ("man mknod"), you will get a watchdog, i.e.: 13b7e04f8cSWim Van Sebroeck subsequently opening the file and then failing to write to it for 14b7e04f8cSWim Van Sebroeck longer than 1 minute will result in rebooting the machine. This 15b7e04f8cSWim Van Sebroeck could be useful for a networked machine that needs to come back 16b7e04f8cSWim Van Sebroeck on-line as fast as possible after a lock-up. There's both a watchdog 17b7e04f8cSWim Van Sebroeck implementation entirely in software (which can sometimes fail to 18b7e04f8cSWim Van Sebroeck reboot the machine) and a driver for hardware watchdog boards, which 19b7e04f8cSWim Van Sebroeck are more robust and can also keep track of the temperature inside 20e403149cSDirk Hohndel your computer. For details, read 2174665686SMauro Carvalho Chehab <file:Documentation/watchdog/watchdog-api.rst> in the kernel source. 22b7e04f8cSWim Van Sebroeck 23b7e04f8cSWim Van Sebroeck The watchdog is usually used together with the watchdog daemon 24b7e04f8cSWim Van Sebroeck which is available from 2501028829SRandy Dunlap <https://ibiblio.org/pub/Linux/system/daemons/watchdog/>. This daemon 2601028829SRandy Dunlap can also monitor NFS connections and can reboot the machine when the 2701028829SRandy Dunlap process table is full. 28b7e04f8cSWim Van Sebroeck 29b7e04f8cSWim Van Sebroeck If unsure, say N. 30b7e04f8cSWim Van Sebroeck 31b7e04f8cSWim Van Sebroeckif WATCHDOG 32b7e04f8cSWim Van Sebroeck 3343316044SWim Van Sebroeckconfig WATCHDOG_CORE 340d3e1563SGuenter Roeck tristate "WatchDog Timer Driver Core" 35a7f7f624SMasahiro Yamada help 3643316044SWim Van Sebroeck Say Y here if you want to use the new watchdog timer driver core. 3743316044SWim Van Sebroeck This driver provides a framework for all watchdog timer drivers 3843316044SWim Van Sebroeck and gives them the /dev/watchdog interface (and later also the 3943316044SWim Van Sebroeck sysfs interface). 4043316044SWim Van Sebroeck 41b7e04f8cSWim Van Sebroeckconfig WATCHDOG_NOWAYOUT 42b7e04f8cSWim Van Sebroeck bool "Disable watchdog shutdown on close" 43b7e04f8cSWim Van Sebroeck help 44b7e04f8cSWim Van Sebroeck The default watchdog behaviour (which you get if you say N here) is 45b7e04f8cSWim Van Sebroeck to stop the timer if the process managing it closes the file 46b7e04f8cSWim Van Sebroeck /dev/watchdog. It's always remotely possible that this process might 47b7e04f8cSWim Van Sebroeck get killed. If you say Y here, the watchdog cannot be stopped once 48b7e04f8cSWim Van Sebroeck it has been started. 49b7e04f8cSWim Van Sebroeck 502501b015SSebastian Reichelconfig WATCHDOG_HANDLE_BOOT_ENABLED 512501b015SSebastian Reichel bool "Update boot-enabled watchdog until userspace takes over" 522501b015SSebastian Reichel default y 532501b015SSebastian Reichel help 542501b015SSebastian Reichel The default watchdog behaviour (which you get if you say Y here) is 552501b015SSebastian Reichel to ping watchdog devices that were enabled before the driver has 562501b015SSebastian Reichel been loaded until control is taken over from userspace using the 572501b015SSebastian Reichel /dev/watchdog file. If you say N here, the kernel will not update 582501b015SSebastian Reichel the watchdog on its own. Thus if your userspace does not start fast 592501b015SSebastian Reichel enough your device will reboot. 602501b015SSebastian Reichel 61487e4e08SRasmus Villemoesconfig WATCHDOG_OPEN_TIMEOUT 62487e4e08SRasmus Villemoes int "Timeout value for opening watchdog device" 63487e4e08SRasmus Villemoes default 0 64487e4e08SRasmus Villemoes help 65487e4e08SRasmus Villemoes The maximum time, in seconds, for which the watchdog framework takes 66487e4e08SRasmus Villemoes care of pinging a hardware watchdog. A value of 0 means infinite. The 67487e4e08SRasmus Villemoes value set here can be overridden by the commandline parameter 68487e4e08SRasmus Villemoes "watchdog.open_timeout". 69487e4e08SRasmus Villemoes 7033b71126SPratyush Anandconfig WATCHDOG_SYSFS 7133b71126SPratyush Anand bool "Read different watchdog information through sysfs" 7233b71126SPratyush Anand help 7333b71126SPratyush Anand Say Y here if you want to enable watchdog device status read through 7433b71126SPratyush Anand sysfs attributes. 7533b71126SPratyush Anand 767b7d2fdcSCurtis Kleinconfig WATCHDOG_HRTIMER_PRETIMEOUT 777b7d2fdcSCurtis Klein bool "Enable watchdog hrtimer-based pretimeouts" 787b7d2fdcSCurtis Klein help 797b7d2fdcSCurtis Klein Enable this if you want to use a hrtimer timer based pretimeout for 807b7d2fdcSCurtis Klein watchdogs that do not natively support pretimeout support. Be aware 817b7d2fdcSCurtis Klein that because this pretimeout functionality uses hrtimers, it may not 827b7d2fdcSCurtis Klein be able to fire before the actual watchdog fires in some situations. 837b7d2fdcSCurtis Klein 84471ce88bSGuenter Roeckcomment "Watchdog Pretimeout Governors" 85471ce88bSGuenter Roeck 86471ce88bSGuenter Roeckconfig WATCHDOG_PRETIMEOUT_GOV 87471ce88bSGuenter Roeck bool "Enable watchdog pretimeout governors" 88471ce88bSGuenter Roeck depends on WATCHDOG_CORE 89471ce88bSGuenter Roeck help 90471ce88bSGuenter Roeck The option allows to select watchdog pretimeout governors. 91471ce88bSGuenter Roeck 92a9f0bda5SGuenter Roeckconfig WATCHDOG_PRETIMEOUT_GOV_SEL 93a9f0bda5SGuenter Roeck tristate 94a9f0bda5SGuenter Roeck depends on WATCHDOG_PRETIMEOUT_GOV 95a9f0bda5SGuenter Roeck default m 96a9f0bda5SGuenter Roeck select WATCHDOG_PRETIMEOUT_GOV_PANIC if WATCHDOG_PRETIMEOUT_GOV_NOOP=n 97a9f0bda5SGuenter Roeck 98471ce88bSGuenter Roeckif WATCHDOG_PRETIMEOUT_GOV 99471ce88bSGuenter Roeck 100471ce88bSGuenter Roeckconfig WATCHDOG_PRETIMEOUT_GOV_NOOP 101471ce88bSGuenter Roeck tristate "Noop watchdog pretimeout governor" 1020d3e1563SGuenter Roeck depends on WATCHDOG_CORE 103471ce88bSGuenter Roeck default WATCHDOG_CORE 104471ce88bSGuenter Roeck help 105471ce88bSGuenter Roeck Noop watchdog pretimeout governor, only an informational 106471ce88bSGuenter Roeck message is added to kernel log buffer. 107471ce88bSGuenter Roeck 108471ce88bSGuenter Roeckconfig WATCHDOG_PRETIMEOUT_GOV_PANIC 109471ce88bSGuenter Roeck tristate "Panic watchdog pretimeout governor" 1100d3e1563SGuenter Roeck depends on WATCHDOG_CORE 111471ce88bSGuenter Roeck default WATCHDOG_CORE 112471ce88bSGuenter Roeck help 113471ce88bSGuenter Roeck Panic watchdog pretimeout governor, on watchdog pretimeout 114471ce88bSGuenter Roeck event put the kernel into panic. 115471ce88bSGuenter Roeck 116471ce88bSGuenter Roeckchoice 117471ce88bSGuenter Roeck prompt "Default Watchdog Pretimeout Governor" 118471ce88bSGuenter Roeck default WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC 119471ce88bSGuenter Roeck help 120471ce88bSGuenter Roeck This option selects a default watchdog pretimeout governor. 121471ce88bSGuenter Roeck The governor takes its action, if a watchdog is capable 122471ce88bSGuenter Roeck to report a pretimeout event. 123471ce88bSGuenter Roeck 124471ce88bSGuenter Roeckconfig WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP 125471ce88bSGuenter Roeck bool "noop" 126471ce88bSGuenter Roeck depends on WATCHDOG_PRETIMEOUT_GOV_NOOP 127471ce88bSGuenter Roeck help 128471ce88bSGuenter Roeck Use noop watchdog pretimeout governor by default. If noop 129471ce88bSGuenter Roeck governor is selected by a user, write a short message to 130471ce88bSGuenter Roeck the kernel log buffer and don't do any system changes. 131471ce88bSGuenter Roeck 132471ce88bSGuenter Roeckconfig WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC 133471ce88bSGuenter Roeck bool "panic" 134471ce88bSGuenter Roeck depends on WATCHDOG_PRETIMEOUT_GOV_PANIC 135471ce88bSGuenter Roeck help 136471ce88bSGuenter Roeck Use panic watchdog pretimeout governor by default, if 137471ce88bSGuenter Roeck a watchdog pretimeout event happens, consider that 138471ce88bSGuenter Roeck a watchdog feeder is dead and reboot is unavoidable. 139471ce88bSGuenter Roeck 140471ce88bSGuenter Roeckendchoice 141471ce88bSGuenter Roeck 142471ce88bSGuenter Roeckendif # WATCHDOG_PRETIMEOUT_GOV 143471ce88bSGuenter Roeck 144b7e04f8cSWim Van Sebroeck# 145b7e04f8cSWim Van Sebroeck# General Watchdog drivers 146b7e04f8cSWim Van Sebroeck# 147b7e04f8cSWim Van Sebroeck 148b7e04f8cSWim Van Sebroeckcomment "Watchdog Device Drivers" 149b7e04f8cSWim Van Sebroeck 150b7e04f8cSWim Van Sebroeck# Architecture Independent 151b7e04f8cSWim Van Sebroeck 152b7e04f8cSWim Van Sebroeckconfig SOFT_WATCHDOG 153b7e04f8cSWim Van Sebroeck tristate "Software watchdog" 154a5132cafSAlan Cox select WATCHDOG_CORE 155b7e04f8cSWim Van Sebroeck help 156b7e04f8cSWim Van Sebroeck A software monitoring watchdog. This will fail to reboot your system 157b7e04f8cSWim Van Sebroeck from some situations that the hardware watchdog will recover 158b7e04f8cSWim Van Sebroeck from. Equally it's a lot cheaper to install. 159b7e04f8cSWim Van Sebroeck 160b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 161b7e04f8cSWim Van Sebroeck module will be called softdog. 162b7e04f8cSWim Van Sebroeck 1634cbc6902SWolfram Sangconfig SOFT_WATCHDOG_PRETIMEOUT 1644cbc6902SWolfram Sang bool "Software watchdog pretimeout governor support" 1654cbc6902SWolfram Sang depends on SOFT_WATCHDOG && WATCHDOG_PRETIMEOUT_GOV 1664cbc6902SWolfram Sang help 1674cbc6902SWolfram Sang Enable this if you want to use pretimeout governors with the software 1684cbc6902SWolfram Sang watchdog. Be aware that governors might affect the watchdog because it 1694cbc6902SWolfram Sang is purely software, e.g. the panic governor will stall it! 1704cbc6902SWolfram Sang 171b237bcacSMatti Vaittinenconfig BD957XMUF_WATCHDOG 172b237bcacSMatti Vaittinen tristate "ROHM BD9576MUF and BD9573MUF PMIC Watchdog" 173b237bcacSMatti Vaittinen depends on MFD_ROHM_BD957XMUF 174b237bcacSMatti Vaittinen select WATCHDOG_CORE 175b237bcacSMatti Vaittinen help 176b237bcacSMatti Vaittinen Support for the watchdog in the ROHM BD9576 and BD9573 PMICs. 177b237bcacSMatti Vaittinen These PMIC ICs contain watchdog block which can be configured 178b237bcacSMatti Vaittinen to toggle reset line if SoC fails to ping watchdog via GPIO. 179b237bcacSMatti Vaittinen 180b237bcacSMatti Vaittinen Say Y here to include support for the ROHM BD9576 or BD9573 181b237bcacSMatti Vaittinen watchdog. Alternatively say M to compile the driver as a module, 182b237bcacSMatti Vaittinen which will be called bd9576_wdt. 183b237bcacSMatti Vaittinen 184664a0d78SAshish Jangamconfig DA9052_WATCHDOG 185664a0d78SAshish Jangam tristate "Dialog DA9052 Watchdog" 186da2a68b3SGuenter Roeck depends on PMIC_DA9052 || COMPILE_TEST 187664a0d78SAshish Jangam select WATCHDOG_CORE 188664a0d78SAshish Jangam help 189664a0d78SAshish Jangam Support for the watchdog in the DA9052 PMIC. Watchdog trigger 190664a0d78SAshish Jangam cause system reset. 191664a0d78SAshish Jangam 192664a0d78SAshish Jangam Say Y here to include support for the DA9052 watchdog. 193664a0d78SAshish Jangam Alternatively say M to compile the driver as a module, 194664a0d78SAshish Jangam which will be called da9052_wdt. 195664a0d78SAshish Jangam 196312b00e1SAshish Jangamconfig DA9055_WATCHDOG 197312b00e1SAshish Jangam tristate "Dialog Semiconductor DA9055 Watchdog" 198da2a68b3SGuenter Roeck depends on MFD_DA9055 || COMPILE_TEST 19912a5c05cSRandy Dunlap select WATCHDOG_CORE 200312b00e1SAshish Jangam help 201312b00e1SAshish Jangam If you say yes here you get support for watchdog on the Dialog 202312b00e1SAshish Jangam Semiconductor DA9055 PMIC. 203312b00e1SAshish Jangam 204312b00e1SAshish Jangam This driver can also be built as a module. If so, the module 205312b00e1SAshish Jangam will be called da9055_wdt. 206312b00e1SAshish Jangam 2075e9c16e3SKrystian Garbaciakconfig DA9063_WATCHDOG 2085e9c16e3SKrystian Garbaciak tristate "Dialog DA9063 Watchdog" 209da2a68b3SGuenter Roeck depends on MFD_DA9063 || COMPILE_TEST 2105e9c16e3SKrystian Garbaciak select WATCHDOG_CORE 2115e9c16e3SKrystian Garbaciak help 2125e9c16e3SKrystian Garbaciak Support for the watchdog in the DA9063 PMIC. 2135e9c16e3SKrystian Garbaciak 2145e9c16e3SKrystian Garbaciak This driver can be built as a module. The module name is da9063_wdt. 2155e9c16e3SKrystian Garbaciak 2167a7cb009SS Twissconfig DA9062_WATCHDOG 21772106c18SSteve Twiss tristate "Dialog DA9062/61 Watchdog" 218da2a68b3SGuenter Roeck depends on MFD_DA9062 || COMPILE_TEST 21944144c80SGuenter Roeck depends on I2C 2207a7cb009SS Twiss select WATCHDOG_CORE 2217a7cb009SS Twiss help 22272106c18SSteve Twiss Support for the watchdog in the DA9062 and DA9061 PMICs. 2237a7cb009SS Twiss 2247a7cb009SS Twiss This driver can be built as a module. The module name is da9062_wdt. 2257a7cb009SS Twiss 22625134eafSAlexander Shiyanconfig GPIO_WATCHDOG 22725134eafSAlexander Shiyan tristate "Watchdog device controlled through GPIO-line" 22825134eafSAlexander Shiyan depends on OF_GPIO 22925134eafSAlexander Shiyan select WATCHDOG_CORE 23025134eafSAlexander Shiyan help 23125134eafSAlexander Shiyan If you say yes here you get support for watchdog device 23225134eafSAlexander Shiyan controlled through GPIO-line. 23325134eafSAlexander Shiyan 2345e53c8edSJean-Baptiste Theouconfig GPIO_WATCHDOG_ARCH_INITCALL 2355e53c8edSJean-Baptiste Theou bool "Register the watchdog as early as possible" 2365e53c8edSJean-Baptiste Theou depends on GPIO_WATCHDOG=y 2375e53c8edSJean-Baptiste Theou help 2385e53c8edSJean-Baptiste Theou In some situations, the default initcall level (module_init) 2395e53c8edSJean-Baptiste Theou in not early enough in the boot process to avoid the watchdog 2405e53c8edSJean-Baptiste Theou to be triggered. 2415e53c8edSJean-Baptiste Theou If you say yes here, the initcall level would be raised to 2425e53c8edSJean-Baptiste Theou arch_initcall. 2435e53c8edSJean-Baptiste Theou If in doubt, say N. 2445e53c8edSJean-Baptiste Theou 24550332639SAndreas Wernerconfig MENF21BMC_WATCHDOG 24650332639SAndreas Werner tristate "MEN 14F021P00 BMC Watchdog" 247da2a68b3SGuenter Roeck depends on MFD_MENF21BMC || COMPILE_TEST 2486fb303a8SArnd Bergmann depends on I2C 24950332639SAndreas Werner select WATCHDOG_CORE 25050332639SAndreas Werner help 25150332639SAndreas Werner Say Y here to include support for the MEN 14F021P00 BMC Watchdog. 25250332639SAndreas Werner 25350332639SAndreas Werner This driver can also be built as a module. If so the module 25450332639SAndreas Werner will be called menf21bmc_wdt. 25550332639SAndreas Werner 25681ceed41SJohannes Thumshirnconfig MENZ069_WATCHDOG 25781ceed41SJohannes Thumshirn tristate "MEN 16Z069 Watchdog" 25812aea518SJohannes Thumshirn depends on MCB 25981ceed41SJohannes Thumshirn select WATCHDOG_CORE 26081ceed41SJohannes Thumshirn help 26181ceed41SJohannes Thumshirn Say Y here to include support for the MEN 16Z069 Watchdog. 26281ceed41SJohannes Thumshirn 26381ceed41SJohannes Thumshirn This driver can also be built as a module. If so the module 26481ceed41SJohannes Thumshirn will be called menz069_wdt. 26581ceed41SJohannes Thumshirn 266058dfc76SMika Westerbergconfig WDAT_WDT 267058dfc76SMika Westerberg tristate "ACPI Watchdog Action Table (WDAT)" 268058dfc76SMika Westerberg depends on ACPI 269effb46b4SMika Westerberg select WATCHDOG_CORE 270058dfc76SMika Westerberg select ACPI_WATCHDOG 271058dfc76SMika Westerberg help 272058dfc76SMika Westerberg This driver adds support for systems with ACPI Watchdog Action 273058dfc76SMika Westerberg Table (WDAT) table. Servers typically have this but it can be 274058dfc76SMika Westerberg found on some desktop machines as well. This driver will take 275058dfc76SMika Westerberg over the native iTCO watchdog driver found on many Intel CPUs. 276058dfc76SMika Westerberg 277058dfc76SMika Westerberg To compile this driver as module, choose M here: the module will 278058dfc76SMika Westerberg be called wdat_wdt. 279058dfc76SMika Westerberg 280502a0106SMark Brownconfig WM831X_WATCHDOG 281502a0106SMark Brown tristate "WM831x watchdog" 282d0e32fbaSArnd Bergmann depends on MFD_WM831X 28300411ee9SMark Brown select WATCHDOG_CORE 284502a0106SMark Brown help 285502a0106SMark Brown Support for the watchdog in the WM831x AudioPlus PMICs. When 286502a0106SMark Brown the watchdog triggers the system will be reset. 287502a0106SMark Brown 288006948baSMark Brownconfig WM8350_WATCHDOG 289006948baSMark Brown tristate "WM8350 watchdog" 290006948baSMark Brown depends on MFD_WM8350 2912e51d90fSAxel Lin select WATCHDOG_CORE 292006948baSMark Brown help 293006948baSMark Brown Support for the watchdog in the WM8350 AudioPlus PMIC. When 294006948baSMark Brown the watchdog triggers the system will be reset. 295006948baSMark Brown 296c9dcf9f2SMichal Simekconfig XILINX_WATCHDOG 297c9dcf9f2SMichal Simek tristate "Xilinx Watchdog timer" 29871fd380aSChen Gang depends on HAS_IOMEM 299c9dcf9f2SMichal Simek select WATCHDOG_CORE 300c9dcf9f2SMichal Simek help 30101028829SRandy Dunlap Watchdog driver for the xps_timebase_wdt IP core. 302c9dcf9f2SMichal Simek 303c9dcf9f2SMichal Simek To compile this driver as a module, choose M here: the 304c9dcf9f2SMichal Simek module will be called of_xilinx_wdt. 305c9dcf9f2SMichal Simek 3062a7b753aSMartyn Welchconfig ZIIRAVE_WATCHDOG 3072a7b753aSMartyn Welch tristate "Zodiac RAVE Watchdog Timer" 3082a7b753aSMartyn Welch depends on I2C 3092a7b753aSMartyn Welch select WATCHDOG_CORE 3102a7b753aSMartyn Welch help 3112a7b753aSMartyn Welch Watchdog driver for the Zodiac Aerospace RAVE Switch Watchdog 3122a7b753aSMartyn Welch Processor. 3132a7b753aSMartyn Welch 3142a7b753aSMartyn Welch To compile this driver as a module, choose M here: the 3152a7b753aSMartyn Welch module will be called ziirave_wdt. 3162a7b753aSMartyn Welch 317c3bb3334SAndrey Smirnovconfig RAVE_SP_WATCHDOG 318c3bb3334SAndrey Smirnov tristate "RAVE SP Watchdog timer" 319c3bb3334SAndrey Smirnov depends on RAVE_SP_CORE 32020e6bb17SArnd Bergmann depends on NVMEM || !NVMEM 321c3bb3334SAndrey Smirnov select WATCHDOG_CORE 322c3bb3334SAndrey Smirnov help 323c3bb3334SAndrey Smirnov Support for the watchdog on RAVE SP device. 324c3bb3334SAndrey Smirnov 325c60923ddSMichael Shychconfig MLX_WDT 326c60923ddSMichael Shych tristate "Mellanox Watchdog" 327c60923ddSMichael Shych depends on MELLANOX_PLATFORM 328c60923ddSMichael Shych select WATCHDOG_CORE 329c60923ddSMichael Shych select REGMAP 330c60923ddSMichael Shych help 331c60923ddSMichael Shych This is the driver for the hardware watchdog on Mellanox systems. 332c60923ddSMichael Shych If you are going to use it, say Y here, otherwise N. 333c60923ddSMichael Shych This driver can be used together with the watchdog daemon. 334c60923ddSMichael Shych It can also watch your kernel to make sure it doesn't freeze, 335c60923ddSMichael Shych and if it does, it reboots your system after a certain amount of 336c60923ddSMichael Shych time. 337c60923ddSMichael Shych 338c60923ddSMichael Shych To compile this driver as a module, choose M here: the 339c60923ddSMichael Shych module will be called mlx-wdt. 340c60923ddSMichael Shych 34185174ca6SMichael Walleconfig SL28CPLD_WATCHDOG 34285174ca6SMichael Walle tristate "Kontron sl28cpld Watchdog" 34385174ca6SMichael Walle depends on MFD_SL28CPLD || COMPILE_TEST 34485174ca6SMichael Walle select WATCHDOG_CORE 34585174ca6SMichael Walle help 34685174ca6SMichael Walle Say Y here to include support for the watchdog timer 34785174ca6SMichael Walle on the Kontron sl28 CPLD. 34885174ca6SMichael Walle 34985174ca6SMichael Walle To compile this driver as a module, choose M here: the 35085174ca6SMichael Walle module will be called sl28cpld_wdt. 35185174ca6SMichael Walle 352b7e04f8cSWim Van Sebroeck# ALPHA Architecture 353b7e04f8cSWim Van Sebroeck 354b7e04f8cSWim Van Sebroeck# ARM Architecture 355b7e04f8cSWim Van Sebroeck 3564a370278SViresh KUMARconfig ARM_SP805_WATCHDOG 3574a370278SViresh KUMAR tristate "ARM SP805 Watchdog" 3583eafee95SArnd Bergmann depends on (ARM || ARM64 || COMPILE_TEST) && ARM_AMBA 3594a516539SViresh Kumar select WATCHDOG_CORE 3604a370278SViresh KUMAR help 3614a370278SViresh KUMAR ARM Primecell SP805 Watchdog timer. This will reboot your system when 3624a370278SViresh KUMAR the timeout is reached. 3634a370278SViresh KUMAR 36457d2caaaSFu Weiconfig ARM_SBSA_WATCHDOG 36557d2caaaSFu Wei tristate "ARM SBSA Generic Watchdog" 36657d2caaaSFu Wei depends on ARM64 36757d2caaaSFu Wei depends on ARM_ARCH_TIMER 36857d2caaaSFu Wei select WATCHDOG_CORE 36957d2caaaSFu Wei help 37057d2caaaSFu Wei ARM SBSA Generic Watchdog has two stage timeouts: 37157d2caaaSFu Wei the first signal (WS0) is for alerting the system by interrupt, 37257d2caaaSFu Wei the second one (WS1) is a real hardware reset. 37357d2caaaSFu Wei More details: ARM DEN0029B - Server Base System Architecture (SBSA) 37457d2caaaSFu Wei 37557d2caaaSFu Wei This driver can operate ARM SBSA Generic Watchdog as a single stage 37657d2caaaSFu Wei or a two stages watchdog, it depends on the module parameter "action". 37757d2caaaSFu Wei 37857d2caaaSFu Wei Note: the maximum timeout in the two stages mode is half of that in 37957d2caaaSFu Wei the single stage mode. 38057d2caaaSFu Wei 38157d2caaaSFu Wei To compile this driver as module, choose M here: The module 38257d2caaaSFu Wei will be called sbsa_gwdt. 38357d2caaaSFu Wei 38454e3d9b5SMarek Behúnconfig ARMADA_37XX_WATCHDOG 38554e3d9b5SMarek Behún tristate "Armada 37xx watchdog" 38654e3d9b5SMarek Behún depends on ARCH_MVEBU || COMPILE_TEST 3877f6f1dfbSGuenter Roeck depends on HAS_IOMEM 38854e3d9b5SMarek Behún select MFD_SYSCON 38954e3d9b5SMarek Behún select WATCHDOG_CORE 39054e3d9b5SMarek Behún help 39154e3d9b5SMarek Behún Say Y here to include support for the watchdog timer found on 39254e3d9b5SMarek Behún Marvell Armada 37xx SoCs. 39354e3d9b5SMarek Behún To compile this driver as a module, choose M here: the 39454e3d9b5SMarek Behún module will be called armada_37xx_wdt. 39554e3d9b5SMarek Behún 396aae03dc9SOleksij Rempelconfig ASM9260_WATCHDOG 397aae03dc9SOleksij Rempel tristate "Alphascale ASM9260 watchdog" 398da2a68b3SGuenter Roeck depends on MACH_ASM9260 || COMPILE_TEST 399aae03dc9SOleksij Rempel depends on OF 400aae03dc9SOleksij Rempel select WATCHDOG_CORE 401aae03dc9SOleksij Rempel select RESET_CONTROLLER 402aae03dc9SOleksij Rempel help 40301028829SRandy Dunlap Watchdog timer embedded into Alphascale asm9260 chips. This will 40401028829SRandy Dunlap reboot your system when the timeout is reached. 405aae03dc9SOleksij Rempel 406b7e04f8cSWim Van Sebroeckconfig AT91RM9200_WATCHDOG 407b7e04f8cSWim Van Sebroeck tristate "AT91RM9200 watchdog" 408da2a68b3SGuenter Roeck depends on (SOC_AT91RM9200 && MFD_SYSCON) || COMPILE_TEST 409b7e04f8cSWim Van Sebroeck help 410b7e04f8cSWim Van Sebroeck Watchdog timer embedded into AT91RM9200 chips. This will reboot your 411b7e04f8cSWim Van Sebroeck system when the timeout is reached. 412b7e04f8cSWim Van Sebroeck 413e6bb42e3SRenaud CERRATOconfig AT91SAM9X_WATCHDOG 414f0e625c1SAndrew Victor tristate "AT91SAM9X / AT91CAP9 watchdog" 415da2a68b3SGuenter Roeck depends on ARCH_AT91 || COMPILE_TEST 416490ac7afSWenyou Yang select WATCHDOG_CORE 417e6bb42e3SRenaud CERRATO help 418f0e625c1SAndrew Victor Watchdog timer embedded into AT91SAM9X and AT91CAP9 chips. This will 419f0e625c1SAndrew Victor reboot your system when the timeout is reached. 420e6bb42e3SRenaud CERRATO 42176534860SWenyou Yangconfig SAMA5D4_WATCHDOG 42276534860SWenyou Yang tristate "Atmel SAMA5D4 Watchdog Timer" 423da2a68b3SGuenter Roeck depends on ARCH_AT91 || COMPILE_TEST 42476534860SWenyou Yang select WATCHDOG_CORE 42576534860SWenyou Yang help 42676534860SWenyou Yang Atmel SAMA5D4 watchdog timer is embedded into SAMA5D4 chips. 42776534860SWenyou Yang Its Watchdog Timer Mode Register can be written more than once. 42876534860SWenyou Yang This will reboot your system when the timeout is reached. 42976534860SWenyou Yang 43058bf0164SHarini Katakamconfig CADENCE_WATCHDOG 43158bf0164SHarini Katakam tristate "Cadence Watchdog Timer" 4326960d485SRichard Weinberger depends on HAS_IOMEM 43358bf0164SHarini Katakam select WATCHDOG_CORE 43458bf0164SHarini Katakam help 43558bf0164SHarini Katakam Say Y here if you want to include support for the watchdog 43658bf0164SHarini Katakam timer in the Xilinx Zynq. 43758bf0164SHarini Katakam 438b7e04f8cSWim Van Sebroeckconfig 21285_WATCHDOG 439b7e04f8cSWim Van Sebroeck tristate "DC21285 watchdog" 440b7e04f8cSWim Van Sebroeck depends on FOOTBRIDGE 441b7e04f8cSWim Van Sebroeck help 442b7e04f8cSWim Van Sebroeck The Intel Footbridge chip contains a built-in watchdog circuit. Say Y 443b7e04f8cSWim Van Sebroeck here if you wish to use this. Alternatively say M to compile the 444b7e04f8cSWim Van Sebroeck driver as a module, which will be called wdt285. 445b7e04f8cSWim Van Sebroeck 446b7e04f8cSWim Van Sebroeck This driver does not work on all machines. In particular, early CATS 447b7e04f8cSWim Van Sebroeck boards have hardware problems that will cause the machine to simply 448b7e04f8cSWim Van Sebroeck lock up if the watchdog fires. 449b7e04f8cSWim Van Sebroeck 450b7e04f8cSWim Van Sebroeck "If in doubt, leave it out" - say N. 451b7e04f8cSWim Van Sebroeck 452b7e04f8cSWim Van Sebroeckconfig 977_WATCHDOG 453b7e04f8cSWim Van Sebroeck tristate "NetWinder WB83C977 watchdog" 454da2a68b3SGuenter Roeck depends on (FOOTBRIDGE && ARCH_NETWINDER) || (ARM && COMPILE_TEST) 455b7e04f8cSWim Van Sebroeck help 456b7e04f8cSWim Van Sebroeck Say Y here to include support for the WB977 watchdog included in 457b7e04f8cSWim Van Sebroeck NetWinder machines. Alternatively say M to compile the driver as 458b7e04f8cSWim Van Sebroeck a module, which will be called wdt977. 459b7e04f8cSWim Van Sebroeck 460b7e04f8cSWim Van Sebroeck Not sure? It's safe to say N. 461b7e04f8cSWim Van Sebroeck 462766a2aadSLinus Walleijconfig FTWDT010_WATCHDOG 463766a2aadSLinus Walleij tristate "Faraday Technology FTWDT010 watchdog" 464766a2aadSLinus Walleij depends on ARM || COMPILE_TEST 465eca10ae6SLinus Walleij select WATCHDOG_CORE 466766a2aadSLinus Walleij default ARCH_GEMINI 467eca10ae6SLinus Walleij help 468766a2aadSLinus Walleij Say Y here if to include support for the Faraday Technology 469766a2aadSLinus Walleij FTWDT010 watchdog timer embedded in the Cortina Systems Gemini 470766a2aadSLinus Walleij family of devices. 471eca10ae6SLinus Walleij 472eca10ae6SLinus Walleij To compile this driver as a module, choose M here: the 473766a2aadSLinus Walleij module will be called ftwdt010_wdt. 474eca10ae6SLinus Walleij 475b7e04f8cSWim Van Sebroeckconfig IXP4XX_WATCHDOG 476b7e04f8cSWim Van Sebroeck tristate "IXP4xx Watchdog" 477b7e04f8cSWim Van Sebroeck depends on ARCH_IXP4XX 478580b8e28SLinus Walleij select WATCHDOG_CORE 479b7e04f8cSWim Van Sebroeck help 480b7e04f8cSWim Van Sebroeck Say Y here if to include support for the watchdog timer 481b7e04f8cSWim Van Sebroeck in the Intel IXP4xx network processors. This driver can 482b7e04f8cSWim Van Sebroeck be built as a module by choosing M. The module will 483b7e04f8cSWim Van Sebroeck be called ixp4xx_wdt. 484b7e04f8cSWim Van Sebroeck 485b7e04f8cSWim Van Sebroeck Note: The internal IXP4xx watchdog does a soft CPU reset 486b7e04f8cSWim Van Sebroeck which doesn't reset any peripherals. There are circumstances 487b7e04f8cSWim Van Sebroeck where the watchdog will fail to reset the board correctly 488b7e04f8cSWim Van Sebroeck (e.g., if the boot ROM is in an unreadable state). 489b7e04f8cSWim Van Sebroeck 490b7e04f8cSWim Van Sebroeck Say N if you are unsure. 491b7e04f8cSWim Van Sebroeck 492b7e04f8cSWim Van Sebroeckconfig S3C2410_WATCHDOG 493b7e04f8cSWim Van Sebroeck tristate "S3C2410 Watchdog" 4947dd3cae9SKrzysztof Kozlowski depends on ARCH_S3C24XX || ARCH_S3C64XX || ARCH_S5PV210 || ARCH_EXYNOS || \ 4957dd3cae9SKrzysztof Kozlowski COMPILE_TEST 49625dc46e3SWolfram Sang select WATCHDOG_CORE 49753eac48dSKrzysztof Kozlowski select MFD_SYSCON if ARCH_EXYNOS 498b7e04f8cSWim Van Sebroeck help 4998740f71dSBanajit Goswami Watchdog timer block in the Samsung SoCs. This will reboot 5008740f71dSBanajit Goswami the system when the timer expires with the watchdog enabled. 501b7e04f8cSWim Van Sebroeck 502b7e04f8cSWim Van Sebroeck The driver is limited by the speed of the system's PCLK 503b7e04f8cSWim Van Sebroeck signal, so with reasonably fast systems (PCLK around 50-66MHz) 504b7e04f8cSWim Van Sebroeck then watchdog intervals of over approximately 20seconds are 505b7e04f8cSWim Van Sebroeck unavailable. 506b7e04f8cSWim Van Sebroeck 507b7e04f8cSWim Van Sebroeck The driver can be built as a module by choosing M, and will 508b7e04f8cSWim Van Sebroeck be called s3c2410_wdt 509b7e04f8cSWim Van Sebroeck 510b7e04f8cSWim Van Sebroeckconfig SA1100_WATCHDOG 511b7e04f8cSWim Van Sebroeck tristate "SA1100/PXA2xx watchdog" 512b7e04f8cSWim Van Sebroeck depends on ARCH_SA1100 || ARCH_PXA 513b7e04f8cSWim Van Sebroeck help 514b7e04f8cSWim Van Sebroeck Watchdog timer embedded into SA11x0 and PXA2xx chips. This will 515b7e04f8cSWim Van Sebroeck reboot your system when timeout is reached. 516b7e04f8cSWim Van Sebroeck 517b7e04f8cSWim Van Sebroeck NOTE: once enabled, this timer cannot be disabled. 518b7e04f8cSWim Van Sebroeck 519b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 520b7e04f8cSWim Van Sebroeck module will be called sa1100_wdt. 521b7e04f8cSWim Van Sebroeck 522c9353ae1SJamie Ilesconfig DW_WATCHDOG 523c9353ae1SJamie Iles tristate "Synopsys DesignWare watchdog" 5241ccfe6f9SRichard Weinberger depends on HAS_IOMEM 525f29a72c2SGuenter Roeck select WATCHDOG_CORE 526c9353ae1SJamie Iles help 527c9353ae1SJamie Iles Say Y here if to include support for the Synopsys DesignWare 52858a251f2SBaruch Siach watchdog timer found in many chips. 529c9353ae1SJamie Iles To compile this driver as a module, choose M here: the 530c9353ae1SJamie Iles module will be called dw_wdt. 531c9353ae1SJamie Iles 532b7e04f8cSWim Van Sebroeckconfig EP93XX_WATCHDOG 533b7e04f8cSWim Van Sebroeck tristate "EP93xx Watchdog" 534da2a68b3SGuenter Roeck depends on ARCH_EP93XX || COMPILE_TEST 535e12a679dSH Hartley Sweeten select WATCHDOG_CORE 536b7e04f8cSWim Van Sebroeck help 537b7e04f8cSWim Van Sebroeck Say Y here if to include support for the watchdog timer 538b7e04f8cSWim Van Sebroeck embedded in the Cirrus Logic EP93xx family of devices. 539b7e04f8cSWim Van Sebroeck 540b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 541b7e04f8cSWim Van Sebroeck module will be called ep93xx_wdt. 542b7e04f8cSWim Van Sebroeck 543b7e04f8cSWim Van Sebroeckconfig OMAP_WATCHDOG 544b7e04f8cSWim Van Sebroeck tristate "OMAP Watchdog" 545da2a68b3SGuenter Roeck depends on ARCH_OMAP16XX || ARCH_OMAP2PLUS || COMPILE_TEST 54667c0f554SAaro Koskinen select WATCHDOG_CORE 547b7e04f8cSWim Van Sebroeck help 54801028829SRandy Dunlap Support for TI OMAP1610/OMAP1710/OMAP2420/OMAP3430/OMAP4430 watchdog. 54901028829SRandy Dunlap Say 'Y' here to enable the 55001028829SRandy Dunlap OMAP1610/OMAP1710/OMAP2420/OMAP3430/OMAP4430 watchdog timer. 551b7e04f8cSWim Van Sebroeck 552b7e04f8cSWim Van Sebroeckconfig PNX4008_WATCHDOG 553d684f05fSRoland Stigge tristate "LPC32XX Watchdog" 554c9b8af43SArnd Bergmann depends on ARCH_LPC32XX || COMPILE_TEST 5556b1e8386SWolfram Sang select WATCHDOG_CORE 556b7e04f8cSWim Van Sebroeck help 557b7e04f8cSWim Van Sebroeck Say Y here if to include support for the watchdog timer 558d684f05fSRoland Stigge in the LPC32XX processor. 559b7e04f8cSWim Van Sebroeck This driver can be built as a module by choosing M. The module 560b7e04f8cSWim Van Sebroeck will be called pnx4008_wdt. 561b7e04f8cSWim Van Sebroeck 562b7e04f8cSWim Van Sebroeck Say N if you are unsure. 563b7e04f8cSWim Van Sebroeck 564b7e04f8cSWim Van Sebroeckconfig DAVINCI_WATCHDOG 565b7e04f8cSWim Van Sebroeck tristate "DaVinci watchdog" 566da2a68b3SGuenter Roeck depends on ARCH_DAVINCI || ARCH_KEYSTONE || COMPILE_TEST 567f48f3ceaSIvan Khoronzhuk select WATCHDOG_CORE 568b7e04f8cSWim Van Sebroeck help 569b7e04f8cSWim Van Sebroeck Say Y here if to include support for the watchdog timer 5708832b200SIvan Khoronzhuk in the DaVinci DM644x/DM646x or Keystone processors. 571b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 572b7e04f8cSWim Van Sebroeck module will be called davinci_wdt. 573b7e04f8cSWim Van Sebroeck 574b7e04f8cSWim Van Sebroeck NOTE: once enabled, this timer cannot be disabled. 575b7e04f8cSWim Van Sebroeck Say N if you are unsure. 576b7e04f8cSWim Van Sebroeck 5772d63908bSTero Kristoconfig K3_RTI_WATCHDOG 5782d63908bSTero Kristo tristate "Texas Instruments K3 RTI watchdog" 5792d63908bSTero Kristo depends on ARCH_K3 || COMPILE_TEST 5802d63908bSTero Kristo select WATCHDOG_CORE 5812d63908bSTero Kristo help 5822d63908bSTero Kristo Say Y here if you want to include support for the K3 watchdog 5832d63908bSTero Kristo timer (RTI module) available in the K3 generation of processors. 5842d63908bSTero Kristo 5853b937a7dSNicolas Pitreconfig ORION_WATCHDOG 5863b937a7dSNicolas Pitre tristate "Orion watchdog" 5873e3f354bSArnd Bergmann depends on ARCH_ORION5X || ARCH_DOVE || MACH_DOVE || ARCH_MVEBU || COMPILE_TEST 588c3525e3fSThierry Reding depends on ARM 5890dd6e484SAxel Lin select WATCHDOG_CORE 59022ac9232SSylver Bruneau help 59122ac9232SSylver Bruneau Say Y here if to include support for the watchdog timer 5923b937a7dSNicolas Pitre in the Marvell Orion5x and Kirkwood ARM SoCs. 59322ac9232SSylver Bruneau To compile this driver as a module, choose M here: the 5943b937a7dSNicolas Pitre module will be called orion_wdt. 59522ac9232SSylver Bruneau 59622b1c841SBeniamino Galvaniconfig RN5T618_WATCHDOG 59722b1c841SBeniamino Galvani tristate "Ricoh RN5T618 watchdog" 598da2a68b3SGuenter Roeck depends on MFD_RN5T618 || COMPILE_TEST 59922b1c841SBeniamino Galvani select WATCHDOG_CORE 60022b1c841SBeniamino Galvani help 60122b1c841SBeniamino Galvani If you say yes here you get support for watchdog on the Ricoh 60222b1c841SBeniamino Galvani RN5T618 PMIC. 60322b1c841SBeniamino Galvani 60422b1c841SBeniamino Galvani This driver can also be built as a module. If so, the module 60522b1c841SBeniamino Galvani will be called rn5t618_wdt. 60622b1c841SBeniamino Galvani 607d00680edSCarlo Caioneconfig SUNXI_WATCHDOG 608d00680edSCarlo Caione tristate "Allwinner SoCs watchdog support" 609da2a68b3SGuenter Roeck depends on ARCH_SUNXI || COMPILE_TEST 610d00680edSCarlo Caione select WATCHDOG_CORE 611d00680edSCarlo Caione help 612d00680edSCarlo Caione Say Y here to include support for the watchdog timer 613d00680edSCarlo Caione in Allwinner SoCs. 614d00680edSCarlo Caione To compile this driver as a module, choose M here: the 615d00680edSCarlo Caione module will be called sunxi_wdt. 616d00680edSCarlo Caione 617975b7f0fSJoel Stanleyconfig NPCM7XX_WATCHDOG 618ec242929SGuenter Roeck tristate "Nuvoton NPCM750 watchdog" 619975b7f0fSJoel Stanley depends on ARCH_NPCM || COMPILE_TEST 6207db706a2STomer Maimon default y if ARCH_NPCM7XX 621975b7f0fSJoel Stanley select WATCHDOG_CORE 622975b7f0fSJoel Stanley help 623975b7f0fSJoel Stanley Say Y here to include Watchdog timer support for the 624975b7f0fSJoel Stanley watchdog embedded into the NPCM7xx. 625975b7f0fSJoel Stanley This watchdog is used to reset the system and thus cannot be 626975b7f0fSJoel Stanley compiled as a module. 627975b7f0fSJoel Stanley 62880e45b1eSTimo Kokkonenconfig TWL4030_WATCHDOG 62980e45b1eSTimo Kokkonen tristate "TWL4030 Watchdog" 63080e45b1eSTimo Kokkonen depends on TWL4030_CORE 631b2c4e4b2SJarkko Nikula select WATCHDOG_CORE 63280e45b1eSTimo Kokkonen help 63380e45b1eSTimo Kokkonen Support for TI TWL4030 watchdog. Say 'Y' here to enable the 63480e45b1eSTimo Kokkonen watchdog timer support for TWL4030 chips. 63580e45b1eSTimo Kokkonen 636de6303abSWolfram Sangconfig STMP3XXX_RTC_WATCHDOG 637de6303abSWolfram Sang tristate "Freescale STMP3XXX & i.MX23/28 watchdog" 638da2a68b3SGuenter Roeck depends on RTC_DRV_STMP || COMPILE_TEST 639de6303abSWolfram Sang select WATCHDOG_CORE 640de6303abSWolfram Sang help 641de6303abSWolfram Sang Say Y here to include support for the watchdog timer inside 642de6303abSWolfram Sang the RTC for the STMP37XX/378X or i.MX23/28 SoC. 643de6303abSWolfram Sang To compile this driver as a module, choose M here: the 644de6303abSWolfram Sang module will be called stmp3xxx_rtc_wdt. 645de6303abSWolfram Sang 646bf900639SDamien Riegelconfig TS4800_WATCHDOG 647bf900639SDamien Riegel tristate "TS-4800 Watchdog" 648bf900639SDamien Riegel depends on HAS_IOMEM && OF 6490519e91dSJean Delvare depends on SOC_IMX51 || COMPILE_TEST 650bf900639SDamien Riegel select WATCHDOG_CORE 651bf900639SDamien Riegel select MFD_SYSCON 652bf900639SDamien Riegel help 653bf900639SDamien Riegel Technologic Systems TS-4800 has watchdog timer implemented in 654bf900639SDamien Riegel an external FPGA. Say Y here if you want to support for the 655bf900639SDamien Riegel watchdog timer on TS-4800 board. 656bf900639SDamien Riegel 657c90bf2aaSMika Westerbergconfig TS72XX_WATCHDOG 658c90bf2aaSMika Westerberg tristate "TS-72XX SBC Watchdog" 659da2a68b3SGuenter Roeck depends on MACH_TS72XX || COMPILE_TEST 6600f0dbd9bSShyam Saini select WATCHDOG_CORE 661c90bf2aaSMika Westerberg help 662c90bf2aaSMika Westerberg Technologic Systems TS-7200, TS-7250 and TS-7260 boards have 663c90bf2aaSMika Westerberg watchdog timer implemented in a external CPLD chip. Say Y here 664c90bf2aaSMika Westerberg if you want to support for the watchdog timer on TS-72XX boards. 665c90bf2aaSMika Westerberg 666c90bf2aaSMika Westerberg To compile this driver as a module, choose M here: the 667c90bf2aaSMika Westerberg module will be called ts72xx_wdt. 668c90bf2aaSMika Westerberg 6695e803716SMarc Zyngierconfig MAX63XX_WATCHDOG 6705e803716SMarc Zyngier tristate "Max63xx watchdog" 67104658449SVivien Didelot depends on HAS_IOMEM 672a0f36833SAxel Lin select WATCHDOG_CORE 6735e803716SMarc Zyngier help 6745e803716SMarc Zyngier Support for memory mapped max63{69,70,71,72,73,74} watchdog timer. 6755e803716SMarc Zyngier 676ff3bb2f5SLaxman Dewanganconfig MAX77620_WATCHDOG 677ff3bb2f5SLaxman Dewangan tristate "Maxim Max77620 Watchdog Timer" 678da2a68b3SGuenter Roeck depends on MFD_MAX77620 || COMPILE_TEST 679da9e3f4eSDavid Engraf select WATCHDOG_CORE 680ff3bb2f5SLaxman Dewangan help 681ff3bb2f5SLaxman Dewangan This is the driver for the Max77620 watchdog timer. 682ff3bb2f5SLaxman Dewangan Say 'Y' here to enable the watchdog timer support for 683ff3bb2f5SLaxman Dewangan MAX77620 chips. To compile this driver as a module, 684ff3bb2f5SLaxman Dewangan choose M here: the module will be called max77620_wdt. 685ff3bb2f5SLaxman Dewangan 686bb2fd8a8SWolfram Sangconfig IMX2_WDT 687bb2fd8a8SWolfram Sang tristate "IMX2+ Watchdog" 688da2a68b3SGuenter Roeck depends on ARCH_MXC || ARCH_LAYERSCAPE || COMPILE_TEST 689a7977003SXiubo Li select REGMAP_MMIO 690faad5de0SAnatolij Gustschin select WATCHDOG_CORE 691bb2fd8a8SWolfram Sang help 692bb2fd8a8SWolfram Sang This is the driver for the hardware watchdog 693bb2fd8a8SWolfram Sang on the Freescale IMX2 and later processors. 694bb2fd8a8SWolfram Sang If you have one of these processors and wish to have 695bb2fd8a8SWolfram Sang watchdog support enabled, say Y, otherwise say N. 696bb2fd8a8SWolfram Sang 697bb2fd8a8SWolfram Sang To compile this driver as a module, choose M here: the 698bb2fd8a8SWolfram Sang module will be called imx2_wdt. 699bb2fd8a8SWolfram Sang 700986857acSAnson Huangconfig IMX_SC_WDT 701986857acSAnson Huang tristate "IMX SC Watchdog" 702986857acSAnson Huang depends on HAVE_ARM_SMCCC 70315f7d7fcSAnson Huang depends on IMX_SCU 704986857acSAnson Huang select WATCHDOG_CORE 705986857acSAnson Huang help 706986857acSAnson Huang This is the driver for the system controller watchdog 707986857acSAnson Huang on the NXP i.MX SoCs with system controller inside, the 708986857acSAnson Huang watchdog driver will call ARM SMC API and trap into 709986857acSAnson Huang ARM-Trusted-Firmware for operations, ARM-Trusted-Firmware 710986857acSAnson Huang will request system controller to execute the operations. 711986857acSAnson Huang If you have one of these processors and wish to have 712986857acSAnson Huang watchdog support enabled, say Y, otherwise say N. 713986857acSAnson Huang 714986857acSAnson Huang To compile this driver as a module, choose M here: the 715986857acSAnson Huang module will be called imx_sc_wdt. 716986857acSAnson Huang 71741b630f4SAnson Huangconfig IMX7ULP_WDT 71841b630f4SAnson Huang tristate "IMX7ULP Watchdog" 71941b630f4SAnson Huang depends on ARCH_MXC || COMPILE_TEST 72041b630f4SAnson Huang select WATCHDOG_CORE 72141b630f4SAnson Huang help 72241b630f4SAnson Huang This is the driver for the hardware watchdog on the Freescale 72341b630f4SAnson Huang IMX7ULP and later processors. If you have one of these 72441b630f4SAnson Huang processors and wish to have watchdog support enabled, 72541b630f4SAnson Huang say Y, otherwise say N. 72641b630f4SAnson Huang 72741b630f4SAnson Huang To compile this driver as a module, choose M here: the 72841b630f4SAnson Huang module will be called imx7ulp_wdt. 72941b630f4SAnson Huang 730f0e5bd41SFabio Baltiericonfig UX500_WATCHDOG 731f0e5bd41SFabio Baltieri tristate "ST-Ericsson Ux500 watchdog" 7329297b652SArnd Bergmann depends on MFD_DB8500_PRCMU 733f0e5bd41SFabio Baltieri select WATCHDOG_CORE 734f0e5bd41SFabio Baltieri default y 735f0e5bd41SFabio Baltieri help 736f0e5bd41SFabio Baltieri Say Y here to include Watchdog timer support for the watchdog 737f0e5bd41SFabio Baltieri existing in the prcmu of ST-Ericsson Ux500 series platforms. 738f0e5bd41SFabio Baltieri 739f0e5bd41SFabio Baltieri To compile this driver as a module, choose M here: the 740f0e5bd41SFabio Baltieri module will be called ux500_wdt. 741f0e5bd41SFabio Baltieri 7423d3a6d18SAaro Koskinenconfig RETU_WATCHDOG 7433d3a6d18SAaro Koskinen tristate "Retu watchdog" 7449ad82f11SArnd Bergmann depends on MFD_RETU 7453d3a6d18SAaro Koskinen select WATCHDOG_CORE 7463d3a6d18SAaro Koskinen help 7473d3a6d18SAaro Koskinen Retu watchdog driver for Nokia Internet Tablets (770, N800, 7483d3a6d18SAaro Koskinen N810). At least on N800 the watchdog cannot be disabled, so 7493d3a6d18SAaro Koskinen this driver is essential and you should enable it. 7503d3a6d18SAaro Koskinen 7513d3a6d18SAaro Koskinen To compile this driver as a module, choose M here: the 7523d3a6d18SAaro Koskinen module will be called retu_wdt. 7533d3a6d18SAaro Koskinen 754e14538e0SJonas Jensenconfig MOXART_WDT 755e14538e0SJonas Jensen tristate "MOXART watchdog" 756da2a68b3SGuenter Roeck depends on ARCH_MOXART || COMPILE_TEST 757e14538e0SJonas Jensen help 758e14538e0SJonas Jensen Say Y here to include Watchdog timer support for the watchdog 759e14538e0SJonas Jensen existing on the MOXA ART SoC series platforms. 760e14538e0SJonas Jensen 761e14538e0SJonas Jensen To compile this driver as a module, choose M here: the 762e14538e0SJonas Jensen module will be called moxart_wdt. 763e14538e0SJonas Jensen 764f27925a6SLee Jonesconfig ST_LPC_WATCHDOG 765f27925a6SLee Jones tristate "STMicroelectronics LPC Watchdog" 766da2a68b3SGuenter Roeck depends on ARCH_STI || COMPILE_TEST 767f27925a6SLee Jones depends on OF 768f27925a6SLee Jones select WATCHDOG_CORE 769f27925a6SLee Jones help 770f27925a6SLee Jones Say Y here to include STMicroelectronics Low Power Controller 771f27925a6SLee Jones (LPC) based Watchdog timer support. 772f27925a6SLee Jones 773f27925a6SLee Jones To compile this driver as a module, choose M here: the 774f27925a6SLee Jones module will be called st_lpc_wdt. 775f27925a6SLee Jones 776c33a1597SAndrew Chewconfig TEGRA_WATCHDOG 777c33a1597SAndrew Chew tristate "Tegra watchdog" 77871fd380aSChen Gang depends on (ARCH_TEGRA || COMPILE_TEST) && HAS_IOMEM 779c33a1597SAndrew Chew select WATCHDOG_CORE 780c33a1597SAndrew Chew help 781c33a1597SAndrew Chew Say Y here to include support for the watchdog timer 782c33a1597SAndrew Chew embedded in NVIDIA Tegra SoCs. 783c33a1597SAndrew Chew 784c33a1597SAndrew Chew To compile this driver as a module, choose M here: the 785c33a1597SAndrew Chew module will be called tegra_wdt. 786c33a1597SAndrew Chew 7871094ebe9SJosh Cartwrightconfig QCOM_WDT 7881094ebe9SJosh Cartwright tristate "QCOM watchdog" 7891094ebe9SJosh Cartwright depends on HAS_IOMEM 790da2a68b3SGuenter Roeck depends on ARCH_QCOM || COMPILE_TEST 7911094ebe9SJosh Cartwright select WATCHDOG_CORE 7921094ebe9SJosh Cartwright help 7931094ebe9SJosh Cartwright Say Y here to include Watchdog timer support for the watchdog found 7941094ebe9SJosh Cartwright on QCOM chipsets. Currently supported targets are the MSM8960, 7951094ebe9SJosh Cartwright APQ8064, and IPQ8064. 7961094ebe9SJosh Cartwright 7971094ebe9SJosh Cartwright To compile this driver as a module, choose M here: the 7981094ebe9SJosh Cartwright module will be called qcom_wdt. 7991094ebe9SJosh Cartwright 800683fa50fSNeil Armstrongconfig MESON_GXBB_WATCHDOG 801683fa50fSNeil Armstrong tristate "Amlogic Meson GXBB SoCs watchdog support" 802da2a68b3SGuenter Roeck depends on ARCH_MESON || COMPILE_TEST 803683fa50fSNeil Armstrong select WATCHDOG_CORE 804683fa50fSNeil Armstrong help 805683fa50fSNeil Armstrong Say Y here to include support for the watchdog timer 806683fa50fSNeil Armstrong in Amlogic Meson GXBB SoCs. 807683fa50fSNeil Armstrong To compile this driver as a module, choose M here: the 808683fa50fSNeil Armstrong module will be called meson_gxbb_wdt. 809683fa50fSNeil Armstrong 81022e1b8f6SCarlo Caioneconfig MESON_WATCHDOG 81122e1b8f6SCarlo Caione tristate "Amlogic Meson SoCs watchdog support" 812da2a68b3SGuenter Roeck depends on ARCH_MESON || COMPILE_TEST 81322e1b8f6SCarlo Caione select WATCHDOG_CORE 81422e1b8f6SCarlo Caione help 81522e1b8f6SCarlo Caione Say Y here to include support for the watchdog timer 81622e1b8f6SCarlo Caione in Amlogic Meson SoCs. 81722e1b8f6SCarlo Caione To compile this driver as a module, choose M here: the 81822e1b8f6SCarlo Caione module will be called meson_wdt. 81922e1b8f6SCarlo Caione 820a44a4553SMatthias Bruggerconfig MEDIATEK_WATCHDOG 821a44a4553SMatthias Brugger tristate "Mediatek SoCs watchdog support" 822da2a68b3SGuenter Roeck depends on ARCH_MEDIATEK || COMPILE_TEST 823a44a4553SMatthias Brugger select WATCHDOG_CORE 8245eee7c62SRandy Dunlap select RESET_CONTROLLER 825a44a4553SMatthias Brugger help 826a44a4553SMatthias Brugger Say Y here to include support for the watchdog timer 827a44a4553SMatthias Brugger in Mediatek SoCs. 828a44a4553SMatthias Brugger To compile this driver as a module, choose M here: the 829a44a4553SMatthias Brugger module will be called mtk_wdt. 830a44a4553SMatthias Brugger 831336694a0SBaruch Siachconfig DIGICOLOR_WATCHDOG 832336694a0SBaruch Siach tristate "Conexant Digicolor SoCs watchdog support" 833da2a68b3SGuenter Roeck depends on ARCH_DIGICOLOR || COMPILE_TEST 834336694a0SBaruch Siach select WATCHDOG_CORE 835336694a0SBaruch Siach help 836336694a0SBaruch Siach Say Y here to include support for the watchdog timer 837336694a0SBaruch Siach in Conexant Digicolor SoCs. 838336694a0SBaruch Siach To compile this driver as a module, choose M here: the 839336694a0SBaruch Siach module will be called digicolor_wdt. 840336694a0SBaruch Siach 84172a9e7feSJulius Wernerconfig ARM_SMC_WATCHDOG 84272a9e7feSJulius Werner tristate "ARM Secure Monitor Call based watchdog support" 84372a9e7feSJulius Werner depends on ARM || ARM64 84472a9e7feSJulius Werner depends on OF 84572a9e7feSJulius Werner depends on HAVE_ARM_SMCCC 84672a9e7feSJulius Werner select WATCHDOG_CORE 84772a9e7feSJulius Werner help 84872a9e7feSJulius Werner Say Y here to include support for a watchdog timer 84972a9e7feSJulius Werner implemented by the EL3 Secure Monitor on ARM platforms. 85072a9e7feSJulius Werner Requires firmware support. 85172a9e7feSJulius Werner To compile this driver as a module, choose M here: the 85272a9e7feSJulius Werner module will be called arm_smc_wdt. 85372a9e7feSJulius Werner 8547c25f8c9SAriel D'Alessandroconfig LPC18XX_WATCHDOG 8557c25f8c9SAriel D'Alessandro tristate "LPC18xx/43xx Watchdog" 8567c25f8c9SAriel D'Alessandro depends on ARCH_LPC18XX || COMPILE_TEST 857d42d6108SRichard Weinberger depends on HAS_IOMEM 8587c25f8c9SAriel D'Alessandro select WATCHDOG_CORE 8597c25f8c9SAriel D'Alessandro help 8607c25f8c9SAriel D'Alessandro Say Y here if to include support for the watchdog timer 8617c25f8c9SAriel D'Alessandro in NXP LPC SoCs family, which includes LPC18xx/LPC43xx 8627c25f8c9SAriel D'Alessandro processors. 8637c25f8c9SAriel D'Alessandro To compile this driver as a module, choose M here: the 8647c25f8c9SAriel D'Alessandro module will be called lpc18xx_wdt. 8657c25f8c9SAriel D'Alessandro 866bd99b68eSWolfram Sangconfig RENESAS_WDT 867bd99b68eSWolfram Sang tristate "Renesas WDT Watchdog" 868bd99b68eSWolfram Sang depends on ARCH_RENESAS || COMPILE_TEST 869bd99b68eSWolfram Sang select WATCHDOG_CORE 870bd99b68eSWolfram Sang help 871bd99b68eSWolfram Sang This driver adds watchdog support for the integrated watchdogs in the 872bd99b68eSWolfram Sang Renesas R-Car and other SH-Mobile SoCs (usually named RWDT or SWDT). 873bd99b68eSWolfram Sang 874aea24187SChris Brandtconfig RENESAS_RZAWDT 875aea24187SChris Brandt tristate "Renesas RZ/A WDT Watchdog" 876aea24187SChris Brandt depends on ARCH_RENESAS || COMPILE_TEST 877aea24187SChris Brandt select WATCHDOG_CORE 878aea24187SChris Brandt help 879aea24187SChris Brandt This driver adds watchdog support for the integrated watchdogs in the 880aea24187SChris Brandt Renesas RZ/A SoCs. These watchdogs can be used to reset a system. 881aea24187SChris Brandt 882efa859f7SJoel Stanleyconfig ASPEED_WATCHDOG 8832050dd06SAndrew Jeffery tristate "Aspeed BMC watchdog support" 884efa859f7SJoel Stanley depends on ARCH_ASPEED || COMPILE_TEST 885efa859f7SJoel Stanley select WATCHDOG_CORE 886efa859f7SJoel Stanley help 887efa859f7SJoel Stanley Say Y here to include support for the watchdog timer 888ffff023aSAndrew Jeffery in Aspeed BMC SoCs. 889efa859f7SJoel Stanley 890efa859f7SJoel Stanley This driver is required to reboot the SoC. 891efa859f7SJoel Stanley 892efa859f7SJoel Stanley To compile this driver as a module, choose M here: the 893efa859f7SJoel Stanley module will be called aspeed_wdt. 894efa859f7SJoel Stanley 8954332d113SYannick Fertreconfig STM32_WATCHDOG 8964332d113SYannick Fertre tristate "STM32 Independent WatchDoG (IWDG) support" 8974332d113SYannick Fertre depends on ARCH_STM32 8984332d113SYannick Fertre select WATCHDOG_CORE 8994332d113SYannick Fertre default y 9004332d113SYannick Fertre help 9014332d113SYannick Fertre Say Y here to include support for the watchdog timer 9024332d113SYannick Fertre in stm32 SoCs. 9034332d113SYannick Fertre 9044332d113SYannick Fertre To compile this driver as a module, choose M here: the 9054332d113SYannick Fertre module will be called stm32_iwdg. 9064332d113SYannick Fertre 90728804c2cSPascal PAILLET-LMEconfig STPMIC1_WATCHDOG 90828804c2cSPascal PAILLET-LME tristate "STPMIC1 PMIC watchdog support" 90928804c2cSPascal PAILLET-LME depends on MFD_STPMIC1 91028804c2cSPascal PAILLET-LME select WATCHDOG_CORE 91128804c2cSPascal PAILLET-LME help 91228804c2cSPascal PAILLET-LME Say Y here to include watchdog support embedded into STPMIC1 PMIC. 91328804c2cSPascal PAILLET-LME If the watchdog timer expires, stpmic1 will shut down all its power 91428804c2cSPascal PAILLET-LME supplies. 91528804c2cSPascal PAILLET-LME 91628804c2cSPascal PAILLET-LME To compile this driver as a module, choose M here: the 91728804c2cSPascal PAILLET-LME module will be called spmic1_wdt. 91828804c2cSPascal PAILLET-LME 919e7bf0289SKeiji Hayashibaraconfig UNIPHIER_WATCHDOG 920e7bf0289SKeiji Hayashibara tristate "UniPhier watchdog support" 921e7bf0289SKeiji Hayashibara depends on ARCH_UNIPHIER || COMPILE_TEST 922e7bf0289SKeiji Hayashibara depends on OF && MFD_SYSCON 923e7bf0289SKeiji Hayashibara select WATCHDOG_CORE 924e7bf0289SKeiji Hayashibara help 925e7bf0289SKeiji Hayashibara Say Y here to include support watchdog timer embedded 926e7bf0289SKeiji Hayashibara into the UniPhier system. 927e7bf0289SKeiji Hayashibara 928e7bf0289SKeiji Hayashibara To compile this driver as a module, choose M here: the 929e7bf0289SKeiji Hayashibara module will be called uniphier_wdt. 930e7bf0289SKeiji Hayashibara 9312bdf6acbSAndreas Färberconfig RTD119X_WATCHDOG 9322bdf6acbSAndreas Färber bool "Realtek RTD119x/RTD129x watchdog support" 9332bdf6acbSAndreas Färber depends on ARCH_REALTEK || COMPILE_TEST 9342bdf6acbSAndreas Färber depends on OF 9352bdf6acbSAndreas Färber select WATCHDOG_CORE 9362bdf6acbSAndreas Färber default ARCH_REALTEK 937b7e04f8cSWim Van Sebroeck help 9382bdf6acbSAndreas Färber Say Y here to include support for the watchdog timer in 9392bdf6acbSAndreas Färber Realtek RTD1295 SoCs. 9402bdf6acbSAndreas Färber 94147760346SEric Longconfig SPRD_WATCHDOG 94247760346SEric Long tristate "Spreadtrum watchdog support" 94347760346SEric Long depends on ARCH_SPRD || COMPILE_TEST 94447760346SEric Long select WATCHDOG_CORE 94547760346SEric Long help 94647760346SEric Long Say Y here to include watchdog timer supported 94747760346SEric Long by Spreadtrum system. 948b7e04f8cSWim Van Sebroeck 949969c0accSLoic Poulainconfig PM8916_WATCHDOG 950969c0accSLoic Poulain tristate "QCOM PM8916 pmic watchdog" 951969c0accSLoic Poulain depends on OF && MFD_SPMI_PMIC 952969c0accSLoic Poulain select WATCHDOG_CORE 953969c0accSLoic Poulain help 954969c0accSLoic Poulain Say Y here to include support watchdog timer embedded into the 955969c0accSLoic Poulain pm8916 module. 956969c0accSLoic Poulain 957c5b8e464SNobuhiro Iwamatsuconfig VISCONTI_WATCHDOG 958c5b8e464SNobuhiro Iwamatsu tristate "Toshiba Visconti series watchdog support" 959c5b8e464SNobuhiro Iwamatsu depends on ARCH_VISCONTI || COMPILE_TEST 960c5b8e464SNobuhiro Iwamatsu select WATCHDOG_CORE 961c5b8e464SNobuhiro Iwamatsu help 962c5b8e464SNobuhiro Iwamatsu Say Y here to include support for the watchdog timer in Toshiba 963c5b8e464SNobuhiro Iwamatsu Visconti SoCs. 964c5b8e464SNobuhiro Iwamatsu 965e9800b79SDaniel Palmerconfig MSC313E_WATCHDOG 966e9800b79SDaniel Palmer tristate "MStar MSC313e watchdog" 967e9800b79SDaniel Palmer depends on ARCH_MSTARV7 || COMPILE_TEST 968e9800b79SDaniel Palmer select WATCHDOG_CORE 969e9800b79SDaniel Palmer help 970e9800b79SDaniel Palmer Say Y here to include support for the Watchdog timer embedded 971e9800b79SDaniel Palmer into MStar MSC313e chips. This will reboot your system when the 972e9800b79SDaniel Palmer timeout is reached. 973e9800b79SDaniel Palmer 974e9800b79SDaniel Palmer To compile this driver as a module, choose M here: the 975e9800b79SDaniel Palmer module will be called msc313e_wdt. 976e9800b79SDaniel Palmer 977b7e04f8cSWim Van Sebroeck# X86 (i386 + ia64 + x86_64) Architecture 978b7e04f8cSWim Van Sebroeck 979b7e04f8cSWim Van Sebroeckconfig ACQUIRE_WDT 980b7e04f8cSWim Van Sebroeck tristate "Acquire SBC Watchdog Timer" 981b7e04f8cSWim Van Sebroeck depends on X86 982a7f7f624SMasahiro Yamada help 983b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog on Single Board 984b7e04f8cSWim Van Sebroeck Computers produced by Acquire Inc (and others). This watchdog 985b7e04f8cSWim Van Sebroeck simply watches your kernel to make sure it doesn't freeze, and if 986b7e04f8cSWim Van Sebroeck it does, it reboots your computer after a certain amount of time. 987b7e04f8cSWim Van Sebroeck 988b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 989b7e04f8cSWim Van Sebroeck module will be called acquirewdt. 990b7e04f8cSWim Van Sebroeck 991b7e04f8cSWim Van Sebroeck Most people will say N. 992b7e04f8cSWim Van Sebroeck 993b7e04f8cSWim Van Sebroeckconfig ADVANTECH_WDT 994b7e04f8cSWim Van Sebroeck tristate "Advantech SBC Watchdog Timer" 995b7e04f8cSWim Van Sebroeck depends on X86 996b7e04f8cSWim Van Sebroeck help 997b7e04f8cSWim Van Sebroeck If you are configuring a Linux kernel for the Advantech single-board 998b7e04f8cSWim Van Sebroeck computer, say `Y' here to support its built-in watchdog timer 999b7e04f8cSWim Van Sebroeck feature. More information can be found at 10002ab77a34SAlexander A. Klimov <https://www.advantech.com.tw/products/> 1001b7e04f8cSWim Van Sebroeck 1002b7e04f8cSWim Van Sebroeckconfig ALIM1535_WDT 1003b7e04f8cSWim Van Sebroeck tristate "ALi M1535 PMU Watchdog Timer" 1004b7e04f8cSWim Van Sebroeck depends on X86 && PCI 1005a7f7f624SMasahiro Yamada help 1006b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog on the ALi M1535 PMU. 1007b7e04f8cSWim Van Sebroeck 1008b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1009b7e04f8cSWim Van Sebroeck module will be called alim1535_wdt. 1010b7e04f8cSWim Van Sebroeck 1011b7e04f8cSWim Van Sebroeck Most people will say N. 1012b7e04f8cSWim Van Sebroeck 1013b7e04f8cSWim Van Sebroeckconfig ALIM7101_WDT 1014b7e04f8cSWim Van Sebroeck tristate "ALi M7101 PMU Computer Watchdog" 1015bdd87354SAlexander Clouter depends on PCI 1016b7e04f8cSWim Van Sebroeck help 1017b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog on the ALi M7101 PMU 1018bdd87354SAlexander Clouter as used in the x86 Cobalt servers and also found in some 1019bdd87354SAlexander Clouter SPARC Netra servers too. 1020b7e04f8cSWim Van Sebroeck 1021b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1022b7e04f8cSWim Van Sebroeck module will be called alim7101_wdt. 1023b7e04f8cSWim Van Sebroeck 1024b7e04f8cSWim Van Sebroeck Most people will say N. 1025b7e04f8cSWim Van Sebroeck 1026c36a483dSWilliam Breathitt Grayconfig EBC_C384_WDT 1027c36a483dSWilliam Breathitt Gray tristate "WinSystems EBC-C384 Watchdog Timer" 1028ccfe35eaSWilliam Breathitt Gray depends on X86 1029ccfe35eaSWilliam Breathitt Gray select ISA_BUS_API 1030c36a483dSWilliam Breathitt Gray select WATCHDOG_CORE 1031c36a483dSWilliam Breathitt Gray help 1032c36a483dSWilliam Breathitt Gray Enables watchdog timer support for the watchdog timer on the 1033c36a483dSWilliam Breathitt Gray WinSystems EBC-C384 motherboard. The timeout may be configured via 1034c36a483dSWilliam Breathitt Gray the timeout module parameter. 1035c36a483dSWilliam Breathitt Gray 103696cb4eb0SGiel van Schijndelconfig F71808E_WDT 1037166fbcf8SMaciej S. Szmigiero tristate "Fintek F718xx, F818xx Super I/O Watchdog" 1038e1926349SKees Cook depends on X86 10398bea27edSAhmad Fatoum select WATCHDOG_CORE 104096cb4eb0SGiel van Schijndel help 1041166fbcf8SMaciej S. Szmigiero This is the driver for the hardware watchdog on the Fintek F71808E, 1042ca2fc5efSJaret Cantu F71862FG, F71868, F71869, F71882FG, F71889FG, F81803, F81865, and 1043ca2fc5efSJaret Cantu F81866 Super I/O controllers. 104496cb4eb0SGiel van Schijndel 104596cb4eb0SGiel van Schijndel You can compile this driver directly into the kernel, or use 104696cb4eb0SGiel van Schijndel it as a module. The module will be called f71808e_wdt. 104796cb4eb0SGiel van Schijndel 104815e28bf1SPriyanka Guptaconfig SP5100_TCO 104915e28bf1SPriyanka Gupta tristate "AMD/ATI SP5100 TCO Timer/Watchdog" 105015e28bf1SPriyanka Gupta depends on X86 && PCI 1051a17f4f03SWim Van Sebroeck select WATCHDOG_CORE 1052a7f7f624SMasahiro Yamada help 105315e28bf1SPriyanka Gupta Hardware watchdog driver for the AMD/ATI SP5100 chipset. The TCO 105415e28bf1SPriyanka Gupta (Total Cost of Ownership) timer is a watchdog timer that will reboot 105515e28bf1SPriyanka Gupta the machine after its expiration. The expiration time can be 105615e28bf1SPriyanka Gupta configured with the "heartbeat" parameter. 105715e28bf1SPriyanka Gupta 105815e28bf1SPriyanka Gupta To compile this driver as a module, choose M here: the 105915e28bf1SPriyanka Gupta module will be called sp5100_tco. 106096cb4eb0SGiel van Schijndel 10610b36086bSJordan Crouseconfig GEODE_WDT 10620b36086bSJordan Crouse tristate "AMD Geode CS5535/CS5536 Watchdog" 10630369fdf2SArnd Bergmann depends on CS5535_MFGPT 10640b36086bSJordan Crouse help 10650b36086bSJordan Crouse This driver enables a watchdog capability built into the 10660b36086bSJordan Crouse CS5535/CS5536 companion chips for the AMD Geode GX and LX 10670b36086bSJordan Crouse processors. This watchdog watches your kernel to make sure 10680b36086bSJordan Crouse it doesn't freeze, and if it does, it reboots your computer after 10690b36086bSJordan Crouse a certain amount of time. 10700b36086bSJordan Crouse 10710b36086bSJordan Crouse You can compile this driver directly into the kernel, or use 10720b36086bSJordan Crouse it as a module. The module will be called geodewdt. 10730b36086bSJordan Crouse 1074b7e04f8cSWim Van Sebroeckconfig SC520_WDT 1075b7e04f8cSWim Van Sebroeck tristate "AMD Elan SC520 processor Watchdog" 1076da2a68b3SGuenter Roeck depends on MELAN || COMPILE_TEST 1077b7e04f8cSWim Van Sebroeck help 1078b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog built in to the 1079b7e04f8cSWim Van Sebroeck AMD "Elan" SC520 microcomputer commonly used in embedded systems. 1080b7e04f8cSWim Van Sebroeck This watchdog simply watches your kernel to make sure it doesn't 1081b7e04f8cSWim Van Sebroeck freeze, and if it does, it reboots your computer after a certain 1082b7e04f8cSWim Van Sebroeck amount of time. 1083b7e04f8cSWim Van Sebroeck 1084b7e04f8cSWim Van Sebroeck You can compile this driver directly into the kernel, or use 1085b7e04f8cSWim Van Sebroeck it as a module. The module will be called sc520_wdt. 1086b7e04f8cSWim Van Sebroeck 10873a5f9000SDenis Turischevconfig SBC_FITPC2_WATCHDOG 10883a5f9000SDenis Turischev tristate "Compulab SBC-FITPC2 watchdog" 10893a5f9000SDenis Turischev depends on X86 1090a7f7f624SMasahiro Yamada help 1091ef39a1bfSDenis Turischev This is the driver for the built-in watchdog timer on the fit-PC2, 1092ef39a1bfSDenis Turischev fit-PC2i, CM-iAM single-board computers made by Compulab. 10933a5f9000SDenis Turischev 109401028829SRandy Dunlap It's possible to enable the watchdog timer either from BIOS (F2) or 109501028829SRandy Dunlap from booted Linux. 109601028829SRandy Dunlap When the "Watchdog Timer Value" is enabled one can set 31-255 seconds 109701028829SRandy Dunlap operational range. 10983a5f9000SDenis Turischev 109901028829SRandy Dunlap Entering BIOS setup temporarily disables watchdog operation regardless 110001028829SRandy Dunlap of current state, so system will not be restarted while user is in 110101028829SRandy Dunlap BIOS setup. 11023a5f9000SDenis Turischev 110301028829SRandy Dunlap Once the watchdog is enabled the system will be restarted every 11043a5f9000SDenis Turischev "Watchdog Timer Value" period, so to prevent it user can restart or 11053a5f9000SDenis Turischev disable the watchdog. 11063a5f9000SDenis Turischev 11073a5f9000SDenis Turischev To compile this driver as a module, choose M here: the 11083a5f9000SDenis Turischev module will be called sbc_fitpc2_wdt. 11093a5f9000SDenis Turischev 11103a5f9000SDenis Turischev Most people will say N. 11113a5f9000SDenis Turischev 1112b7e04f8cSWim Van Sebroeckconfig EUROTECH_WDT 1113b7e04f8cSWim Van Sebroeck tristate "Eurotech CPU-1220/1410 Watchdog Timer" 1114b7e04f8cSWim Van Sebroeck depends on X86 1115b7e04f8cSWim Van Sebroeck help 1116b7e04f8cSWim Van Sebroeck Enable support for the watchdog timer on the Eurotech CPU-1220 and 1117b7e04f8cSWim Van Sebroeck CPU-1410 cards. These are PC/104 SBCs. Spec sheets and product 1118b7e04f8cSWim Van Sebroeck information are at <http://www.eurotech.it/>. 1119b7e04f8cSWim Van Sebroeck 1120b7e04f8cSWim Van Sebroeckconfig IB700_WDT 1121b7e04f8cSWim Van Sebroeck tristate "IB700 SBC Watchdog Timer" 1122b7e04f8cSWim Van Sebroeck depends on X86 1123a7f7f624SMasahiro Yamada help 1124b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog on the IB700 Single 112501028829SRandy Dunlap Board Computer produced by TMC Technology (www.tmc-uk.com). This 112601028829SRandy Dunlap watchdog simply watches your kernel to make sure it doesn't freeze, 112701028829SRandy Dunlap and if it does, it reboots your computer after a certain amount of time. 1128b7e04f8cSWim Van Sebroeck 112901028829SRandy Dunlap This driver is like the WDT501 driver but for slightly different 113001028829SRandy Dunlap hardware. 1131b7e04f8cSWim Van Sebroeck 1132b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1133b7e04f8cSWim Van Sebroeck module will be called ib700wdt. 1134b7e04f8cSWim Van Sebroeck 1135b7e04f8cSWim Van Sebroeck Most people will say N. 1136b7e04f8cSWim Van Sebroeck 1137b7e04f8cSWim Van Sebroeckconfig IBMASR 1138b7e04f8cSWim Van Sebroeck tristate "IBM Automatic Server Restart" 1139b7e04f8cSWim Van Sebroeck depends on X86 1140b7e04f8cSWim Van Sebroeck help 1141b7e04f8cSWim Van Sebroeck This is the driver for the IBM Automatic Server Restart watchdog 1142b7e04f8cSWim Van Sebroeck timer built-in into some eServer xSeries machines. 1143b7e04f8cSWim Van Sebroeck 1144b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1145b7e04f8cSWim Van Sebroeck module will be called ibmasr. 1146b7e04f8cSWim Van Sebroeck 1147b7e04f8cSWim Van Sebroeckconfig WAFER_WDT 114801ed08c1SVeljkovic Srdjan tristate "ICP Single Board Computer Watchdog Timer" 1149b7e04f8cSWim Van Sebroeck depends on X86 1150b7e04f8cSWim Van Sebroeck help 115101ed08c1SVeljkovic Srdjan This is a driver for the hardware watchdog on the ICP Single 115201ed08c1SVeljkovic Srdjan Board Computer. This driver is working on (at least) the following 115301ed08c1SVeljkovic Srdjan IPC SBC's: Wafer 5823, Rocky 4783, Rocky 3703 and Rocky 3782. 1154b7e04f8cSWim Van Sebroeck 1155b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1156b7e04f8cSWim Van Sebroeck module will be called wafer5823wdt. 1157b7e04f8cSWim Van Sebroeck 1158b7e04f8cSWim Van Sebroeckconfig I6300ESB_WDT 1159b7e04f8cSWim Van Sebroeck tristate "Intel 6300ESB Timer/Watchdog" 11607050bd54SMichael Olbrich depends on PCI 11617e2e5158SMatteo Croce select WATCHDOG_CORE 1162a7f7f624SMasahiro Yamada help 1163b7e04f8cSWim Van Sebroeck Hardware driver for the watchdog timer built into the Intel 1164b7e04f8cSWim Van Sebroeck 6300ESB controller hub. 1165b7e04f8cSWim Van Sebroeck 1166b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1167b7e04f8cSWim Van Sebroeck module will be called i6300esb. 1168b7e04f8cSWim Van Sebroeck 1169101ce87bSAlexander Steinconfig IE6XX_WDT 1170101ce87bSAlexander Stein tristate "Intel Atom E6xx Watchdog" 1171101ce87bSAlexander Stein depends on X86 && PCI 1172101ce87bSAlexander Stein select WATCHDOG_CORE 1173101ce87bSAlexander Stein select MFD_CORE 1174101ce87bSAlexander Stein select LPC_SCH 1175a7f7f624SMasahiro Yamada help 1176101ce87bSAlexander Stein Hardware driver for the watchdog timer built into the Intel 1177101ce87bSAlexander Stein Atom E6XX (TunnelCreek) processor. 1178101ce87bSAlexander Stein 1179101ce87bSAlexander Stein To compile this driver as a module, choose M here: the 1180101ce87bSAlexander Stein module will be called ie6xx_wdt. 1181101ce87bSAlexander Stein 118287a1ef80SDavid Cohenconfig INTEL_MID_WATCHDOG 118387a1ef80SDavid Cohen tristate "Intel MID Watchdog Timer" 118487a1ef80SDavid Cohen depends on X86_INTEL_MID 118587a1ef80SDavid Cohen select WATCHDOG_CORE 1186a7f7f624SMasahiro Yamada help 118787a1ef80SDavid Cohen Watchdog timer driver built into the Intel SCU for Intel MID 118887a1ef80SDavid Cohen Platforms. 118987a1ef80SDavid Cohen 119087a1ef80SDavid Cohen This driver currently supports only the watchdog evolution 119187a1ef80SDavid Cohen implementation in SCU, available for Merrifield generation. 119287a1ef80SDavid Cohen 119387a1ef80SDavid Cohen To compile this driver as a module, choose M here. 119487a1ef80SDavid Cohen 1195b7e04f8cSWim Van Sebroeckconfig ITCO_WDT 1196b7e04f8cSWim Van Sebroeck tristate "Intel TCO Timer/Watchdog" 1197b7e04f8cSWim Van Sebroeck depends on (X86 || IA64) && PCI 1198bff23431SWim Van Sebroeck select WATCHDOG_CORE 11993cef072dSGuenter Roeck depends on I2C || I2C=n 1200b30c1a46SArnd Bergmann depends on MFD_INTEL_PMC_BXT || !MFD_INTEL_PMC_BXT 12012a7a0e9bSMatt Fleming select LPC_ICH if !EXPERT 12023cef072dSGuenter Roeck select I2C_I801 if !EXPERT && I2C 1203a7f7f624SMasahiro Yamada help 1204b7e04f8cSWim Van Sebroeck Hardware driver for the intel TCO timer based watchdog devices. 1205b7e04f8cSWim Van Sebroeck These drivers are included in the Intel 82801 I/O Controller 120612d60e28SWim Van Sebroeck Hub family (from ICH0 up to ICH10) and in the Intel 63xxESB 1207b7e04f8cSWim Van Sebroeck controller hub. 1208b7e04f8cSWim Van Sebroeck 1209b7e04f8cSWim Van Sebroeck The TCO (Total Cost of Ownership) timer is a watchdog timer 1210b7e04f8cSWim Van Sebroeck that will reboot the machine after its second expiration. The 1211b7e04f8cSWim Van Sebroeck expiration time can be configured with the "heartbeat" parameter. 1212b7e04f8cSWim Van Sebroeck 1213b7e04f8cSWim Van Sebroeck On some motherboards the driver may fail to reset the chipset's 1214b7e04f8cSWim Van Sebroeck NO_REBOOT flag which prevents the watchdog from rebooting the 1215b7e04f8cSWim Van Sebroeck machine. If this is the case you will get a kernel message like 1216b7e04f8cSWim Van Sebroeck "failed to reset NO_REBOOT flag, reboot disabled by hardware". 1217b7e04f8cSWim Van Sebroeck 1218b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1219b7e04f8cSWim Van Sebroeck module will be called iTCO_wdt. 1220b7e04f8cSWim Van Sebroeck 1221b7e04f8cSWim Van Sebroeckconfig ITCO_VENDOR_SUPPORT 1222b7e04f8cSWim Van Sebroeck bool "Intel TCO Timer/Watchdog Specific Vendor Support" 1223b7e04f8cSWim Van Sebroeck depends on ITCO_WDT 1224a7f7f624SMasahiro Yamada help 1225b7e04f8cSWim Van Sebroeck Add vendor specific support to the intel TCO timer based watchdog 1226b7e04f8cSWim Van Sebroeck devices. At this moment we only have additional support for some 1227b7e04f8cSWim Van Sebroeck SuperMicro Inc. motherboards. 1228b7e04f8cSWim Van Sebroeck 122938ff6fd2SJorge Boncompte [DTI2]config IT8712F_WDT 123038ff6fd2SJorge Boncompte [DTI2] tristate "IT8712F (Smart Guardian) Watchdog Timer" 123138ff6fd2SJorge Boncompte [DTI2] depends on X86 1232a7f7f624SMasahiro Yamada help 123338ff6fd2SJorge Boncompte [DTI2] This is the driver for the built-in watchdog timer on the IT8712F 123438ff6fd2SJorge Boncompte [DTI2] Super I/0 chipset used on many motherboards. 123538ff6fd2SJorge Boncompte [DTI2] 12364fc36808SWim Van Sebroeck If the driver does not work, then make sure that the game port in 12374fc36808SWim Van Sebroeck the BIOS is enabled. 12384fc36808SWim Van Sebroeck 123938ff6fd2SJorge Boncompte [DTI2] To compile this driver as a module, choose M here: the 124038ff6fd2SJorge Boncompte [DTI2] module will be called it8712f_wdt. 124138ff6fd2SJorge Boncompte [DTI2] 1242e1fee94fSOliver Schusterconfig IT87_WDT 1243e1fee94fSOliver Schuster tristate "IT87 Watchdog Timer" 1244e1926349SKees Cook depends on X86 12451d7b8039SGuenter Roeck select WATCHDOG_CORE 1246a7f7f624SMasahiro Yamada help 1247cddda07cSGuenter Roeck This is the driver for the hardware watchdog on the ITE IT8607, 1248cddda07cSGuenter Roeck IT8620, IT8622, IT8625, IT8628, IT8655, IT8665, IT8686, IT8702, 1249cddda07cSGuenter Roeck IT8712, IT8716, IT8718, IT8720, IT8721, IT8726, IT8728, and 1250cddda07cSGuenter Roeck IT8783 Super I/O chips. 1251198ca015SDiego Elio Pettenò 1252dfb0b8eaSOndrej Zajicek This watchdog simply watches your kernel to make sure it doesn't 1253dfb0b8eaSOndrej Zajicek freeze, and if it does, it reboots your computer after a certain 1254dfb0b8eaSOndrej Zajicek amount of time. 1255e1fee94fSOliver Schuster 1256e1fee94fSOliver Schuster To compile this driver as a module, choose M here: the module will 1257e1fee94fSOliver Schuster be called it87_wdt. 1258e1fee94fSOliver Schuster 12597f4da474SThomas Mingarelliconfig HP_WATCHDOG 1260ea6649c7SNaga Chumbalkar tristate "HP ProLiant iLO2+ Hardware Watchdog Timer" 1261d0a4027fSJerry Hoemann select WATCHDOG_CORE 1262f71d26bbSRandy Dunlap depends on X86 && PCI 12637f4da474SThomas Mingarelli help 126400fd20b4SJerry Hoemann A software monitoring watchdog and NMI handling driver. This driver 126586ded1f3Sdann frazier will detect lockups and provide a stack trace. This is a driver that 1266ea6649c7SNaga Chumbalkar will only load on an HP ProLiant system with a minimum of iLO2 support. 126786ded1f3Sdann frazier To compile this driver as a module, choose M here: the module will be 126886ded1f3Sdann frazier called hpwdt. 126986ded1f3Sdann frazier 1270345f1625SGuenter Roeckconfig HPWDT_NMI_DECODING 1271345f1625SGuenter Roeck bool "NMI support for the HP ProLiant iLO2+ Hardware Watchdog Timer" 1272345f1625SGuenter Roeck depends on HP_WATCHDOG 1273345f1625SGuenter Roeck default y 1274345f1625SGuenter Roeck help 1275345f1625SGuenter Roeck Enables the NMI handler for the watchdog pretimeout NMI and the iLO 1276345f1625SGuenter Roeck "Generate NMI to System" virtual button. When an NMI is claimed 1277345f1625SGuenter Roeck by the driver, panic is called. 1278345f1625SGuenter Roeck 1279e51c288eSKevin Strasserconfig KEMPLD_WDT 1280e51c288eSKevin Strasser tristate "Kontron COM Watchdog Timer" 1281ed4a9ecaSArnd Bergmann depends on MFD_KEMPLD 1282e51c288eSKevin Strasser select WATCHDOG_CORE 1283e51c288eSKevin Strasser help 1284e51c288eSKevin Strasser Support for the PLD watchdog on some Kontron ETX and COMexpress 1285e51c288eSKevin Strasser (ETXexpress) modules 1286e51c288eSKevin Strasser 1287e51c288eSKevin Strasser This driver can also be built as a module. If so, the module will be 1288e51c288eSKevin Strasser called kempld_wdt. 1289e51c288eSKevin Strasser 1290b7e04f8cSWim Van Sebroeckconfig SC1200_WDT 1291b7e04f8cSWim Van Sebroeck tristate "National Semiconductor PC87307/PC97307 (ala SC1200) Watchdog" 1292b7e04f8cSWim Van Sebroeck depends on X86 1293b7e04f8cSWim Van Sebroeck help 1294b7e04f8cSWim Van Sebroeck This is a driver for National Semiconductor PC87307/PC97307 hardware 1295b7e04f8cSWim Van Sebroeck watchdog cards as found on the SC1200. This watchdog is mainly used 1296b7e04f8cSWim Van Sebroeck for power management purposes and can be used to power down the device 1297b7e04f8cSWim Van Sebroeck during inactivity periods (includes interrupt activity monitoring). 1298b7e04f8cSWim Van Sebroeck 1299b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1300b7e04f8cSWim Van Sebroeck module will be called sc1200wdt. 1301b7e04f8cSWim Van Sebroeck 1302b7e04f8cSWim Van Sebroeck Most people will say N. 1303b7e04f8cSWim Van Sebroeck 1304b7e04f8cSWim Van Sebroeckconfig SCx200_WDT 1305b7e04f8cSWim Van Sebroeck tristate "National Semiconductor SCx200 Watchdog" 1306b7e04f8cSWim Van Sebroeck depends on SCx200 && PCI 1307b7e04f8cSWim Van Sebroeck help 1308b7e04f8cSWim Van Sebroeck Enable the built-in watchdog timer support on the National 1309b7e04f8cSWim Van Sebroeck Semiconductor SCx200 processors. 1310b7e04f8cSWim Van Sebroeck 1311b7e04f8cSWim Van Sebroeck If compiled as a module, it will be called scx200_wdt. 1312b7e04f8cSWim Van Sebroeck 1313b7e04f8cSWim Van Sebroeckconfig PC87413_WDT 1314b7e04f8cSWim Van Sebroeck tristate "NS PC87413 watchdog" 1315b7e04f8cSWim Van Sebroeck depends on X86 1316a7f7f624SMasahiro Yamada help 1317b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog on the PC87413 chipset 1318b7e04f8cSWim Van Sebroeck This watchdog simply watches your kernel to make sure it doesn't 1319b7e04f8cSWim Van Sebroeck freeze, and if it does, it reboots your computer after a certain 1320b7e04f8cSWim Van Sebroeck amount of time. 1321b7e04f8cSWim Van Sebroeck 1322b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1323b7e04f8cSWim Van Sebroeck module will be called pc87413_wdt. 1324b7e04f8cSWim Van Sebroeck 1325b7e04f8cSWim Van Sebroeck Most people will say N. 1326b7e04f8cSWim Van Sebroeck 1327456c7301SMike Waychisonconfig NV_TCO 1328456c7301SMike Waychison tristate "nVidia TCO Timer/Watchdog" 1329456c7301SMike Waychison depends on X86 && PCI 1330a7f7f624SMasahiro Yamada help 1331456c7301SMike Waychison Hardware driver for the TCO timer built into the nVidia Hub family 1332456c7301SMike Waychison (such as the MCP51). The TCO (Total Cost of Ownership) timer is a 1333456c7301SMike Waychison watchdog timer that will reboot the machine after its second 1334456c7301SMike Waychison expiration. The expiration time can be configured with the 1335456c7301SMike Waychison "heartbeat" parameter. 1336456c7301SMike Waychison 1337456c7301SMike Waychison On some motherboards the driver may fail to reset the chipset's 1338456c7301SMike Waychison NO_REBOOT flag which prevents the watchdog from rebooting the 1339456c7301SMike Waychison machine. If this is the case you will get a kernel message like 1340456c7301SMike Waychison "failed to reset NO_REBOOT flag, reboot disabled by hardware". 1341456c7301SMike Waychison 1342456c7301SMike Waychison To compile this driver as a module, choose M here: the 1343456c7301SMike Waychison module will be called nv_tco. 1344456c7301SMike Waychison 1345b3e8f2c1SFlorian Fainelliconfig RDC321X_WDT 1346b3e8f2c1SFlorian Fainelli tristate "RDC R-321x SoC watchdog" 1347da2a68b3SGuenter Roeck depends on X86_RDC321X || COMPILE_TEST 13488751f90cSGuenter Roeck depends on PCI 1349b3e8f2c1SFlorian Fainelli help 1350b3e8f2c1SFlorian Fainelli This is the driver for the built in hardware watchdog 1351b3e8f2c1SFlorian Fainelli in the RDC R-321x SoC. 1352b3e8f2c1SFlorian Fainelli 1353b3e8f2c1SFlorian Fainelli To compile this driver as a module, choose M here: the 1354b3e8f2c1SFlorian Fainelli module will be called rdc321x_wdt. 1355b3e8f2c1SFlorian Fainelli 1356b7e04f8cSWim Van Sebroeckconfig 60XX_WDT 1357b7e04f8cSWim Van Sebroeck tristate "SBC-60XX Watchdog Timer" 1358b7e04f8cSWim Van Sebroeck depends on X86 1359b7e04f8cSWim Van Sebroeck help 1360b7e04f8cSWim Van Sebroeck This driver can be used with the watchdog timer found on some 1361b7e04f8cSWim Van Sebroeck single board computers, namely the 6010 PII based computer. 1362b7e04f8cSWim Van Sebroeck It may well work with other cards. It reads port 0x443 to enable 1363b7e04f8cSWim Van Sebroeck and re-set the watchdog timer, and reads port 0x45 to disable 1364b7e04f8cSWim Van Sebroeck the watchdog. If you have a card that behave in similar ways, 1365b7e04f8cSWim Van Sebroeck you can probably make this driver work with your card as well. 1366b7e04f8cSWim Van Sebroeck 1367b7e04f8cSWim Van Sebroeck You can compile this driver directly into the kernel, or use 1368b7e04f8cSWim Van Sebroeck it as a module. The module will be called sbc60xxwdt. 1369b7e04f8cSWim Van Sebroeck 1370b7e04f8cSWim Van Sebroeckconfig SBC8360_WDT 1371b7e04f8cSWim Van Sebroeck tristate "SBC8360 Watchdog Timer" 13721e8c8a5bSJean Delvare depends on X86_32 1373a7f7f624SMasahiro Yamada help 1374b7e04f8cSWim Van Sebroeck 1375b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog on the SBC8360 Single 1376b7e04f8cSWim Van Sebroeck Board Computer produced by Axiomtek Co., Ltd. (www.axiomtek.com). 1377b7e04f8cSWim Van Sebroeck 1378b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 13794737f097SPavel Machek module will be called sbc8360. 1380b7e04f8cSWim Van Sebroeck 1381b7e04f8cSWim Van Sebroeck Most people will say N. 1382b7e04f8cSWim Van Sebroeck 1383c4c28335SGilles Giganconfig SBC7240_WDT 1384c4c28335SGilles Gigan tristate "SBC Nano 7240 Watchdog Timer" 13853369465eSAl Viro depends on X86_32 && !UML 1386a7f7f624SMasahiro Yamada help 1387c4c28335SGilles Gigan This is the driver for the hardware watchdog found on the IEI 1388c4c28335SGilles Gigan single board computers EPIC Nano 7240 (and likely others). This 1389c4c28335SGilles Gigan watchdog simply watches your kernel to make sure it doesn't freeze, 1390c4c28335SGilles Gigan and if it does, it reboots your computer after a certain amount of 1391c4c28335SGilles Gigan time. 1392c4c28335SGilles Gigan 1393c4c28335SGilles Gigan To compile this driver as a module, choose M here: the 1394c4c28335SGilles Gigan module will be called sbc7240_wdt. 1395c4c28335SGilles Gigan 1396b7e04f8cSWim Van Sebroeckconfig CPU5_WDT 1397b7e04f8cSWim Van Sebroeck tristate "SMA CPU5 Watchdog" 1398b7e04f8cSWim Van Sebroeck depends on X86 1399a7f7f624SMasahiro Yamada help 1400b7e04f8cSWim Van Sebroeck TBD. 1401b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1402b7e04f8cSWim Van Sebroeck module will be called cpu5wdt. 1403b7e04f8cSWim Van Sebroeck 14044c6e63bdSWim Van Sebroeckconfig SMSC_SCH311X_WDT 14054c6e63bdSWim Van Sebroeck tristate "SMSC SCH311X Watchdog Timer" 14064c6e63bdSWim Van Sebroeck depends on X86 1407a7f7f624SMasahiro Yamada help 14084c6e63bdSWim Van Sebroeck This is the driver for the hardware watchdog timer on the 14094c6e63bdSWim Van Sebroeck SMSC SCH3112, SCH3114 and SCH3116 Super IO chipset 14104c6e63bdSWim Van Sebroeck (LPC IO with 8042 KBC, Reset Generation, HWM and multiple 14114c6e63bdSWim Van Sebroeck serial ports). 14124c6e63bdSWim Van Sebroeck 14134c6e63bdSWim Van Sebroeck To compile this driver as a module, choose M here: the 14144c6e63bdSWim Van Sebroeck module will be called sch311x_wdt. 14154c6e63bdSWim Van Sebroeck 1416b7e04f8cSWim Van Sebroeckconfig SMSC37B787_WDT 1417b7e04f8cSWim Van Sebroeck tristate "Winbond SMsC37B787 Watchdog Timer" 1418b7e04f8cSWim Van Sebroeck depends on X86 1419a7f7f624SMasahiro Yamada help 1420b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog component on the 1421b7e04f8cSWim Van Sebroeck Winbond SMsC37B787 chipset as used on the NetRunner Mainboard 1422b7e04f8cSWim Van Sebroeck from Vision Systems and maybe others. 1423b7e04f8cSWim Van Sebroeck 1424b7e04f8cSWim Van Sebroeck This watchdog simply watches your kernel to make sure it doesn't 1425b7e04f8cSWim Van Sebroeck freeze, and if it does, it reboots your computer after a certain 1426b7e04f8cSWim Van Sebroeck amount of time. 1427b7e04f8cSWim Van Sebroeck 1428b7e04f8cSWim Van Sebroeck Usually a userspace daemon will notify the kernel WDT driver that 1429b7e04f8cSWim Van Sebroeck userspace is still alive, at regular intervals. 1430b7e04f8cSWim Van Sebroeck 1431b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1432b7e04f8cSWim Van Sebroeck module will be called smsc37b787_wdt. 1433b7e04f8cSWim Van Sebroeck 1434b7e04f8cSWim Van Sebroeck Most people will say N. 1435b7e04f8cSWim Van Sebroeck 1436e3c21e08SAndrew Lunnconfig TQMX86_WDT 1437e3c21e08SAndrew Lunn tristate "TQ-Systems TQMX86 Watchdog Timer" 1438e3c21e08SAndrew Lunn depends on X86 14399a6c274aSYueHaibing select WATCHDOG_CORE 1440e3c21e08SAndrew Lunn help 1441e3c21e08SAndrew Lunn This is the driver for the hardware watchdog timer in the TQMX86 IO 1442e3c21e08SAndrew Lunn controller found on some of their ComExpress Modules. 1443e3c21e08SAndrew Lunn 1444e3c21e08SAndrew Lunn To compile this driver as a module, choose M here; the module 1445e3c21e08SAndrew Lunn will be called tqmx86_wdt. 1446e3c21e08SAndrew Lunn 1447e3c21e08SAndrew Lunn Most people will say N. 1448e3c21e08SAndrew Lunn 1449dc3c56b7SMarc Vertesconfig VIA_WDT 1450dc3c56b7SMarc Vertes tristate "VIA Watchdog Timer" 1451690e7a70SRandy Dunlap depends on X86 && PCI 1452dc3c56b7SMarc Vertes select WATCHDOG_CORE 1453a7f7f624SMasahiro Yamada help 1454dc3c56b7SMarc Vertes This is the driver for the hardware watchdog timer on VIA 1455dc3c56b7SMarc Vertes southbridge chipset CX700, VX800/VX820 or VX855/VX875. 1456dc3c56b7SMarc Vertes 1457dc3c56b7SMarc Vertes To compile this driver as a module, choose M here; the module 1458dc3c56b7SMarc Vertes will be called via_wdt. 1459dc3c56b7SMarc Vertes 1460dc3c56b7SMarc Vertes Most people will say N. 1461dc3c56b7SMarc Vertes 1462b7e04f8cSWim Van Sebroeckconfig W83627HF_WDT 1463962c04f5SGuenter Roeck tristate "Watchdog timer for W83627HF/W83627DHG and compatibles" 1464b7e04f8cSWim Van Sebroeck depends on X86 146530a83695SGuenter Roeck select WATCHDOG_CORE 1466a7f7f624SMasahiro Yamada help 1467962c04f5SGuenter Roeck This is the driver for the hardware watchdog on the following 1468962c04f5SGuenter Roeck Super I/O chips. 1469962c04f5SGuenter Roeck W83627DHG/DHG-P/EHF/EHG/F/G/HF/S/SF/THF/UHG/UG 1470962c04f5SGuenter Roeck W83637HF 1471962c04f5SGuenter Roeck W83667HG/HG-B 1472962c04f5SGuenter Roeck W83687THF 14737b6d0b6aSGuenter Roeck W83697HF 14747b6d0b6aSGuenter Roeck W83697UG 1475962c04f5SGuenter Roeck NCT6775 1476962c04f5SGuenter Roeck NCT6776 1477962c04f5SGuenter Roeck NCT6779 1478a77841d5SGuenter Roeck NCT6791 1479a77841d5SGuenter Roeck NCT6792 148033f74b89SRob Kramer NCT6102D/04D/06D 1481e11cfc69SSrikanth Krishnakar NCT6116D 1482962c04f5SGuenter Roeck 14839c67bea4SBenny Loenstrup Ammitzboell This watchdog simply watches your kernel to make sure it doesn't 14849c67bea4SBenny Loenstrup Ammitzboell freeze, and if it does, it reboots your computer after a certain 14859c67bea4SBenny Loenstrup Ammitzboell amount of time. 1486b7e04f8cSWim Van Sebroeck 1487b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1488b7e04f8cSWim Van Sebroeck module will be called w83627hf_wdt. 1489b7e04f8cSWim Van Sebroeck 1490b7e04f8cSWim Van Sebroeck Most people will say N. 1491b7e04f8cSWim Van Sebroeck 1492b7e04f8cSWim Van Sebroeckconfig W83877F_WDT 1493b7e04f8cSWim Van Sebroeck tristate "W83877F (EMACS) Watchdog Timer" 1494b7e04f8cSWim Van Sebroeck depends on X86 1495a7f7f624SMasahiro Yamada help 1496b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog on the W83877F chipset 1497b7e04f8cSWim Van Sebroeck as used in EMACS PC-104 motherboards (and likely others). This 1498b7e04f8cSWim Van Sebroeck watchdog simply watches your kernel to make sure it doesn't freeze, 1499b7e04f8cSWim Van Sebroeck and if it does, it reboots your computer after a certain amount of 1500b7e04f8cSWim Van Sebroeck time. 1501b7e04f8cSWim Van Sebroeck 1502b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1503b7e04f8cSWim Van Sebroeck module will be called w83877f_wdt. 1504b7e04f8cSWim Van Sebroeck 1505b7e04f8cSWim Van Sebroeck Most people will say N. 1506b7e04f8cSWim Van Sebroeck 1507b7e04f8cSWim Van Sebroeckconfig W83977F_WDT 1508b7e04f8cSWim Van Sebroeck tristate "W83977F (PCM-5335) Watchdog Timer" 1509b7e04f8cSWim Van Sebroeck depends on X86 1510a7f7f624SMasahiro Yamada help 1511b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog on the W83977F I/O chip 1512b7e04f8cSWim Van Sebroeck as used in AAEON's PCM-5335 SBC (and likely others). This 1513b7e04f8cSWim Van Sebroeck watchdog simply watches your kernel to make sure it doesn't freeze, 1514b7e04f8cSWim Van Sebroeck and if it does, it reboots your computer after a certain amount of 1515b7e04f8cSWim Van Sebroeck time. 1516b7e04f8cSWim Van Sebroeck 1517b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1518b7e04f8cSWim Van Sebroeck module will be called w83977f_wdt. 1519b7e04f8cSWim Van Sebroeck 1520b7e04f8cSWim Van Sebroeckconfig MACHZ_WDT 1521b7e04f8cSWim Van Sebroeck tristate "ZF MachZ Watchdog" 1522b7e04f8cSWim Van Sebroeck depends on X86 1523a7f7f624SMasahiro Yamada help 1524b7e04f8cSWim Van Sebroeck If you are using a ZF Micro MachZ processor, say Y here, otherwise 1525b7e04f8cSWim Van Sebroeck N. This is the driver for the watchdog timer built-in on that 1526b7e04f8cSWim Van Sebroeck processor using ZF-Logic interface. This watchdog simply watches 1527b7e04f8cSWim Van Sebroeck your kernel to make sure it doesn't freeze, and if it does, it 1528b7e04f8cSWim Van Sebroeck reboots your computer after a certain amount of time. 1529b7e04f8cSWim Van Sebroeck 1530b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1531b7e04f8cSWim Van Sebroeck module will be called machzwd. 1532b7e04f8cSWim Van Sebroeck 1533b7e04f8cSWim Van Sebroeckconfig SBC_EPX_C3_WATCHDOG 1534b7e04f8cSWim Van Sebroeck tristate "Winsystems SBC EPX-C3 watchdog" 1535b7e04f8cSWim Van Sebroeck depends on X86 1536a7f7f624SMasahiro Yamada help 1537b7e04f8cSWim Van Sebroeck This is the driver for the built-in watchdog timer on the EPX-C3 1538b7e04f8cSWim Van Sebroeck Single-board computer made by Winsystems, Inc. 1539b7e04f8cSWim Van Sebroeck 1540b7e04f8cSWim Van Sebroeck *Note*: This hardware watchdog is not probeable and thus there 1541b7e04f8cSWim Van Sebroeck is no way to know if writing to its IO address will corrupt 1542b7e04f8cSWim Van Sebroeck your system or have any real effect. The only way to be sure 1543b7e04f8cSWim Van Sebroeck that this driver does what you want is to make sure you 1544b7e04f8cSWim Van Sebroeck are running it on an EPX-C3 from Winsystems with the watchdog 1545b7e04f8cSWim Van Sebroeck timer at IO address 0x1ee and 0x1ef. It will write to both those 1546b7e04f8cSWim Van Sebroeck IO ports. Basically, the assumption is made that if you compile 1547b7e04f8cSWim Van Sebroeck this driver into your kernel and/or load it as a module, that you 1548b7e04f8cSWim Van Sebroeck know what you are doing and that you are in fact running on an 1549b7e04f8cSWim Van Sebroeck EPX-C3 board! 1550b7e04f8cSWim Van Sebroeck 1551b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1552b7e04f8cSWim Van Sebroeck module will be called sbc_epx_c3. 1553b7e04f8cSWim Van Sebroeck 1554222818c3STomas Winklerconfig INTEL_MEI_WDT 1555222818c3STomas Winkler tristate "Intel MEI iAMT Watchdog" 1556222818c3STomas Winkler depends on INTEL_MEI && X86 1557222818c3STomas Winkler select WATCHDOG_CORE 1558a7f7f624SMasahiro Yamada help 1559222818c3STomas Winkler A device driver for the Intel MEI iAMT watchdog. 1560222818c3STomas Winkler 1561222818c3STomas Winkler The Intel AMT Watchdog is an OS Health (Hang/Crash) watchdog. 1562222818c3STomas Winkler Whenever the OS hangs or crashes, iAMT will send an event 1563222818c3STomas Winkler to any subscriber to this event. The watchdog doesn't reset the 1564222818c3STomas Winkler the platform. 1565222818c3STomas Winkler 1566222818c3STomas Winkler To compile this driver as a module, choose M here: 1567222818c3STomas Winkler the module will be called mei_wdt. 1568222818c3STomas Winkler 156970f39976SKyle Roeschleyconfig NI903X_WDT 157070f39976SKyle Roeschley tristate "NI 903x/913x Watchdog" 157170f39976SKyle Roeschley depends on X86 && ACPI 157270f39976SKyle Roeschley select WATCHDOG_CORE 1573a7f7f624SMasahiro Yamada help 157470f39976SKyle Roeschley This is the driver for the watchdog timer on the National Instruments 157570f39976SKyle Roeschley 903x/913x real-time controllers. 157670f39976SKyle Roeschley 157770f39976SKyle Roeschley To compile this driver as a module, choose M here: the module will be 157870f39976SKyle Roeschley called ni903x_wdt. 157970f39976SKyle Roeschley 158098078ca3SHui Chun Ongconfig NIC7018_WDT 158198078ca3SHui Chun Ong tristate "NIC7018 Watchdog" 158298078ca3SHui Chun Ong depends on X86 && ACPI 158398078ca3SHui Chun Ong select WATCHDOG_CORE 1584a7f7f624SMasahiro Yamada help 158598078ca3SHui Chun Ong Support for National Instruments NIC7018 Watchdog. 158698078ca3SHui Chun Ong 158798078ca3SHui Chun Ong To compile this driver as a module, choose M here: the module will be 158898078ca3SHui Chun Ong called nic7018_wdt. 158998078ca3SHui Chun Ong 1590b7e04f8cSWim Van Sebroeck# M68K Architecture 1591b7e04f8cSWim Van Sebroeck 15924157a04dSPhilippe De Muyterconfig M54xx_WATCHDOG 15934157a04dSPhilippe De Muyter tristate "MCF54xx watchdog support" 159488cce427SPhilippe De Muyter depends on M548x 159588cce427SPhilippe De Muyter help 159688cce427SPhilippe De Muyter To compile this driver as a module, choose M here: the 15974157a04dSPhilippe De Muyter module will be called m54xx_wdt. 1598b7e04f8cSWim Van Sebroeck 1599e9659e69SAlejandro Cabrera# MicroBlaze Architecture 1600e9659e69SAlejandro Cabrera 1601b7e04f8cSWim Van Sebroeck# MIPS Architecture 1602b7e04f8cSWim Van Sebroeck 1603f8394f61SGabor Juhosconfig ATH79_WDT 1604f8394f61SGabor Juhos tristate "Atheros AR71XX/AR724X/AR913X hardware watchdog" 1605da2a68b3SGuenter Roeck depends on ATH79 || (ARM && COMPILE_TEST) 1606f8394f61SGabor Juhos help 1607f8394f61SGabor Juhos Hardware driver for the built-in watchdog timer on the Atheros 1608f8394f61SGabor Juhos AR71XX/AR724X/AR913X SoCs. 1609f8394f61SGabor Juhos 161090074dceSmatthieu castetconfig BCM47XX_WDT 161190074dceSmatthieu castet tristate "Broadcom BCM47xx Watchdog Timer" 1612da2a68b3SGuenter Roeck depends on BCM47XX || ARCH_BCM_5301X || COMPILE_TEST 16135434a04dSHauke Mehrtens select WATCHDOG_CORE 161490074dceSmatthieu castet help 16156b2aac42SMasanari Iida Hardware driver for the Broadcom BCM47xx Watchdog Timer. 161690074dceSmatthieu castet 161703ec5856SFlorian Fainelliconfig RC32434_WDT 161803ec5856SFlorian Fainelli tristate "IDT RC32434 SoC Watchdog Timer" 161903ec5856SFlorian Fainelli depends on MIKROTIK_RB532 162003ec5856SFlorian Fainelli help 162103ec5856SFlorian Fainelli Hardware driver for the IDT RC32434 SoC built-in 162203ec5856SFlorian Fainelli watchdog timer. 162303ec5856SFlorian Fainelli 162403ec5856SFlorian Fainelli To compile this driver as a module, choose M here: the 162503ec5856SFlorian Fainelli module will be called rc32434_wdt. 162603ec5856SFlorian Fainelli 1627b7e04f8cSWim Van Sebroeckconfig INDYDOG 1628b7e04f8cSWim Van Sebroeck tristate "Indy/I2 Hardware Watchdog" 162924f8d233SMatt Redfearn depends on SGI_HAS_INDYDOG 1630b7e04f8cSWim Van Sebroeck help 1631b7e04f8cSWim Van Sebroeck Hardware driver for the Indy's/I2's watchdog. This is a 1632b7e04f8cSWim Van Sebroeck watchdog timer that will reboot the machine after a 60 second 1633b7e04f8cSWim Van Sebroeck timer expired and no process has written to /dev/watchdog during 1634b7e04f8cSWim Van Sebroeck that time. 1635b7e04f8cSWim Van Sebroeck 1636f865c352SPaul Cercueilconfig JZ4740_WDT 1637f865c352SPaul Cercueil tristate "Ingenic jz4740 SoC hardware watchdog" 163833c26ab4SPaul Cercueil depends on MIPS 16391d9c3074SPaul Cercueil depends on COMMON_CLK 164085f6df14SAxel Lin select WATCHDOG_CORE 16416d532143SPaul Cercueil select MFD_SYSCON 1642f865c352SPaul Cercueil help 1643f865c352SPaul Cercueil Hardware driver for the built-in watchdog timer on Ingenic jz4740 SoCs. 1644f865c352SPaul Cercueil 1645b7e04f8cSWim Van Sebroeckconfig WDT_MTX1 1646b7e04f8cSWim Van Sebroeck tristate "MTX-1 Hardware Watchdog" 1647da2a68b3SGuenter Roeck depends on MIPS_MTX1 || (MIPS && COMPILE_TEST) 1648b7e04f8cSWim Van Sebroeck help 1649b7e04f8cSWim Van Sebroeck Hardware driver for the MTX-1 boards. This is a watchdog timer that 1650b7e04f8cSWim Van Sebroeck will reboot the machine after a 100 seconds timer expired. 1651b7e04f8cSWim Van Sebroeck 165275c752e6SAndrew Sharpconfig SIBYTE_WDOG 165375c752e6SAndrew Sharp tristate "Sibyte SoC hardware watchdog" 1654c388a189SJackie Liu depends on CPU_SB1 165575c752e6SAndrew Sharp help 165675c752e6SAndrew Sharp Watchdog driver for the built in watchdog hardware in Sibyte 165775c752e6SAndrew Sharp SoC processors. There are apparently two watchdog timers 165875c752e6SAndrew Sharp on such processors; this driver supports only the first one, 165975c752e6SAndrew Sharp because currently Linux only supports exporting one watchdog 166075c752e6SAndrew Sharp to userspace. 166175c752e6SAndrew Sharp 166275c752e6SAndrew Sharp To compile this driver as a loadable module, choose M here. 166375c752e6SAndrew Sharp The module will be called sb_wdog. 166475c752e6SAndrew Sharp 1665c283cf2cSMatteo Croceconfig AR7_WDT 1666c283cf2cSMatteo Croce tristate "TI AR7 Watchdog Timer" 1667*28b7ee33SJackie Liu depends on AR7 || (MIPS && 32BIT && COMPILE_TEST) 1668c283cf2cSMatteo Croce help 1669c283cf2cSMatteo Croce Hardware driver for the TI AR7 Watchdog Timer. 1670c283cf2cSMatteo Croce 16716f702fceSAtsushi Nemotoconfig TXX9_WDT 16726f702fceSAtsushi Nemoto tristate "Toshiba TXx9 Watchdog Timer" 1673da2a68b3SGuenter Roeck depends on CPU_TX39XX || CPU_TX49XX || (MIPS && COMPILE_TEST) 1674d6245842SAxel Lin select WATCHDOG_CORE 16756f702fceSAtsushi Nemoto help 16766f702fceSAtsushi Nemoto Hardware driver for the built-in watchdog timer on TXx9 MIPS SoCs. 16776f702fceSAtsushi Nemoto 16784c076fb4SDavid Daneyconfig OCTEON_WDT 16794c076fb4SDavid Daney tristate "Cavium OCTEON SOC family Watchdog Timer" 16809ddebc46SDavid Daney depends on CAVIUM_OCTEON_SOC 16814c076fb4SDavid Daney default y 16823d588c93SAaro Koskinen select WATCHDOG_CORE 16834c076fb4SDavid Daney select EXPORT_UASM if OCTEON_WDT = m 16844c076fb4SDavid Daney help 16854c076fb4SDavid Daney Hardware driver for OCTEON's on chip watchdog timer. 16864c076fb4SDavid Daney Enables the watchdog for all cores running Linux. It 16874c076fb4SDavid Daney installs a NMI handler and pokes the watchdog based on an 16884c076fb4SDavid Daney interrupt. On first expiration of the watchdog, the 16894c076fb4SDavid Daney interrupt handler pokes it. The second expiration causes an 16904c076fb4SDavid Daney NMI that prints a message. The third expiration causes a 16914c076fb4SDavid Daney global soft reset. 16924c076fb4SDavid Daney 16934c076fb4SDavid Daney When userspace has /dev/watchdog open, no poking is done 16944c076fb4SDavid Daney from the first interrupt, it is then only poked when the 16954c076fb4SDavid Daney device is written. 16964c076fb4SDavid Daney 1697b63aa731SFlorian Fainelliconfig BCM63XX_WDT 1698b63aa731SFlorian Fainelli tristate "Broadcom BCM63xx hardware watchdog" 1699b63aa731SFlorian Fainelli depends on BCM63XX 1700b63aa731SFlorian Fainelli help 1701b63aa731SFlorian Fainelli Watchdog driver for the built in watchdog hardware in Broadcom 1702b63aa731SFlorian Fainelli BCM63xx SoC. 1703b63aa731SFlorian Fainelli 1704b63aa731SFlorian Fainelli To compile this driver as a loadable module, choose M here. 1705b63aa731SFlorian Fainelli The module will be called bcm63xx_wdt. 1706b63aa731SFlorian Fainelli 1707938d0a84SLubomir Rintelconfig BCM2835_WDT 1708938d0a84SLubomir Rintel tristate "Broadcom BCM2835 hardware watchdog" 17092672b7e0SArnd Bergmann depends on ARCH_BCM2835 || (OF && COMPILE_TEST) 1710938d0a84SLubomir Rintel select WATCHDOG_CORE 1711938d0a84SLubomir Rintel help 1712938d0a84SLubomir Rintel Watchdog driver for the built in watchdog hardware in Broadcom 1713938d0a84SLubomir Rintel BCM2835 SoC. 1714938d0a84SLubomir Rintel 1715938d0a84SLubomir Rintel To compile this driver as a loadable module, choose M here. 1716938d0a84SLubomir Rintel The module will be called bcm2835_wdt. 1717938d0a84SLubomir Rintel 17186adb730dSMarkus Mayerconfig BCM_KONA_WDT 17196adb730dSMarkus Mayer tristate "BCM Kona Watchdog" 1720da2a68b3SGuenter Roeck depends on ARCH_BCM_MOBILE || COMPILE_TEST 17216adb730dSMarkus Mayer select WATCHDOG_CORE 17226adb730dSMarkus Mayer help 17236adb730dSMarkus Mayer Support for the watchdog timer on the following Broadcom BCM281xx 17246adb730dSMarkus Mayer family, which includes BCM11130, BCM11140, BCM11351, BCM28145 and 17256adb730dSMarkus Mayer BCM28155 variants. 17266adb730dSMarkus Mayer 17276adb730dSMarkus Mayer Say 'Y' or 'M' here to enable the driver. The module will be called 17286adb730dSMarkus Mayer bcm_kona_wdt. 17296adb730dSMarkus Mayer 17306e2ac20eSMarkus Mayerconfig BCM_KONA_WDT_DEBUG 17316e2ac20eSMarkus Mayer bool "DEBUGFS support for BCM Kona Watchdog" 1732345f1625SGuenter Roeck depends on BCM_KONA_WDT 17336e2ac20eSMarkus Mayer help 17346e2ac20eSMarkus Mayer If enabled, adds /sys/kernel/debug/bcm_kona_wdt/info which provides 17356e2ac20eSMarkus Mayer access to the driver's internal data structures as well as watchdog 17366e2ac20eSMarkus Mayer timer hardware registres. 17376e2ac20eSMarkus Mayer 17386e2ac20eSMarkus Mayer If in doubt, say 'N'. 17396e2ac20eSMarkus Mayer 17407a3629feSJustin Chenconfig BCM7038_WDT 17417a3629feSJustin Chen tristate "BCM7038 Watchdog" 17427a3629feSJustin Chen select WATCHDOG_CORE 1743d42d6108SRichard Weinberger depends on HAS_IOMEM 1744972ec351SJean Delvare depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST 17457a3629feSJustin Chen help 1746972ec351SJean Delvare Watchdog driver for the built-in hardware in Broadcom 7038 and 1747972ec351SJean Delvare later SoCs used in set-top boxes. BCM7038 was made public 1748972ec351SJean Delvare during the 2004 CES, and since then, many Broadcom chips use this 1749972ec351SJean Delvare watchdog block, including some cable modem chips. 17507a3629feSJustin Chen 175193937669SNaidu Tellapaticonfig IMGPDC_WDT 175293937669SNaidu Tellapati tristate "Imagination Technologies PDC Watchdog Timer" 175393937669SNaidu Tellapati depends on HAS_IOMEM 1754b9b29090SJames Hogan depends on MIPS || COMPILE_TEST 1755df1a3e64SArnd Bergmann select WATCHDOG_CORE 175693937669SNaidu Tellapati help 175793937669SNaidu Tellapati Driver for Imagination Technologies PowerDown Controller 175893937669SNaidu Tellapati Watchdog Timer. 175993937669SNaidu Tellapati 176093937669SNaidu Tellapati To compile this driver as a loadable module, choose M here. 176193937669SNaidu Tellapati The module will be called imgpdc_wdt. 176293937669SNaidu Tellapati 17632f58b8d0SJohn Crispinconfig LANTIQ_WDT 17642f58b8d0SJohn Crispin tristate "Lantiq SoC watchdog" 17652f58b8d0SJohn Crispin depends on LANTIQ 1766dcd7e04eSHauke Mehrtens select WATCHDOG_CORE 17672f58b8d0SJohn Crispin help 17682f58b8d0SJohn Crispin Hardware driver for the Lantiq SoC Watchdog Timer. 17692f58b8d0SJohn Crispin 17701d8565eeSYang Lingconfig LOONGSON1_WDT 17711d8565eeSYang Ling tristate "Loongson1 SoC hardware watchdog" 17721d8565eeSYang Ling depends on MACH_LOONGSON32 17731d8565eeSYang Ling select WATCHDOG_CORE 17741d8565eeSYang Ling help 17751d8565eeSYang Ling Hardware driver for the Loongson1 SoC Watchdog Timer. 17761d8565eeSYang Ling 1777473cf939SJohn Crispinconfig RALINK_WDT 1778473cf939SJohn Crispin tristate "Ralink SoC watchdog" 1779473cf939SJohn Crispin select WATCHDOG_CORE 1780473cf939SJohn Crispin depends on RALINK 1781473cf939SJohn Crispin help 1782473cf939SJohn Crispin Hardware driver for the Ralink SoC Watchdog Timer. 1783473cf939SJohn Crispin 1784ab3f09feSJohn Crispinconfig MT7621_WDT 1785ab3f09feSJohn Crispin tristate "Mediatek SoC watchdog" 1786ab3f09feSJohn Crispin select WATCHDOG_CORE 1787ab3f09feSJohn Crispin depends on SOC_MT7620 || SOC_MT7621 1788ab3f09feSJohn Crispin help 1789ab3f09feSJohn Crispin Hardware driver for the Mediatek/Ralink MT7621/8 SoC Watchdog Timer. 1790ab3f09feSJohn Crispin 17918f91fc56SJoshua Hendersonconfig PIC32_WDT 17928f91fc56SJoshua Henderson tristate "Microchip PIC32 hardware watchdog" 17938f91fc56SJoshua Henderson select WATCHDOG_CORE 1794da2a68b3SGuenter Roeck depends on MACH_PIC32 || (MIPS && COMPILE_TEST) 17958f91fc56SJoshua Henderson help 17968f91fc56SJoshua Henderson Watchdog driver for the built in watchdog hardware in a PIC32. 17978f91fc56SJoshua Henderson 17988f91fc56SJoshua Henderson Configuration bits must be set appropriately for the watchdog to be 17998f91fc56SJoshua Henderson controlled by this driver. 18008f91fc56SJoshua Henderson 18018f91fc56SJoshua Henderson To compile this driver as a loadable module, choose M here. 18028f91fc56SJoshua Henderson The module will be called pic32-wdt. 18038f91fc56SJoshua Henderson 1804b0d8a082SPurna Chandra Mandalconfig PIC32_DMT 1805b0d8a082SPurna Chandra Mandal tristate "Microchip PIC32 Deadman Timer" 1806b0d8a082SPurna Chandra Mandal select WATCHDOG_CORE 1807da2a68b3SGuenter Roeck depends on MACH_PIC32 || (MIPS && COMPILE_TEST) 1808b0d8a082SPurna Chandra Mandal help 180901028829SRandy Dunlap Watchdog driver for PIC32 instruction fetch counting timer. This 181001028829SRandy Dunlap specific timer is typically be used in mission critical and safety 181101028829SRandy Dunlap critical applications, where any single failure of the software 181201028829SRandy Dunlap functionality and sequencing must be detected. 1813b0d8a082SPurna Chandra Mandal 1814b0d8a082SPurna Chandra Mandal To compile this driver as a loadable module, choose M here. 1815b0d8a082SPurna Chandra Mandal The module will be called pic32-dmt. 1816b0d8a082SPurna Chandra Mandal 1817b7e04f8cSWim Van Sebroeck# PARISC Architecture 1818b7e04f8cSWim Van Sebroeck 1819b7e04f8cSWim Van Sebroeck# POWERPC Architecture 1820b7e04f8cSWim Van Sebroeck 18213268b561SMartyn Welchconfig GEF_WDT 1822cda61c94SMartyn Welch tristate "GE Watchdog Timer" 1823330bbf48SMartyn Welch depends on GE_FPGA 1824a7f7f624SMasahiro Yamada help 1825cda61c94SMartyn Welch Watchdog timer found in a number of GE single board computers. 18263268b561SMartyn Welch 1827b7e04f8cSWim Van Sebroeckconfig MPC5200_WDT 18286d535599SAlbrecht Dreß bool "MPC52xx Watchdog Timer" 1829da2a68b3SGuenter Roeck depends on PPC_MPC52xx || COMPILE_TEST 18306d535599SAlbrecht Dreß help 18316d535599SAlbrecht Dreß Use General Purpose Timer (GPT) 0 on the MPC5200 as Watchdog. 1832b7e04f8cSWim Van Sebroeck 183328acd02fSAnton Vorontsovconfig 8xxx_WDT 183428acd02fSAnton Vorontsov tristate "MPC8xxx Platform Watchdog Timer" 1835f8c33e97SUwe Kleine-König depends on PPC_8xx || PPC_83xx || PPC_86xx || PPC_MPC512x 1836d5cfaf0aSChristophe Leroy select WATCHDOG_CORE 183728acd02fSAnton Vorontsov help 183828acd02fSAnton Vorontsov This driver is for a SoC level watchdog that exists on some 183928acd02fSAnton Vorontsov Freescale PowerPC processors. So far this driver supports: 18400d7b1014SAnton Vorontsov - MPC8xx watchdogs 184128acd02fSAnton Vorontsov - MPC83xx watchdogs 184228acd02fSAnton Vorontsov - MPC86xx watchdogs 184328acd02fSAnton Vorontsov 184428acd02fSAnton Vorontsov For BookE processors (MPC85xx) use the BOOKE_WDT driver instead. 1845b7e04f8cSWim Van Sebroeck 1846618efba9SSean MacLennanconfig PIKA_WDT 1847618efba9SSean MacLennan tristate "PIKA FPGA Watchdog" 1848da2a68b3SGuenter Roeck depends on WARP || (PPC64 && COMPILE_TEST) 1849618efba9SSean MacLennan default y 1850618efba9SSean MacLennan help 1851618efba9SSean MacLennan This enables the watchdog in the PIKA FPGA. Currently used on 1852618efba9SSean MacLennan the Warp platform. 1853618efba9SSean MacLennan 1854b7e04f8cSWim Van Sebroeckconfig BOOKE_WDT 1855fbdd7144STimur Tabi tristate "PowerPC Book-E Watchdog Timer" 1856b7e04f8cSWim Van Sebroeck depends on BOOKE || 4xx 185752e5cc4eSGuenter Roeck select WATCHDOG_CORE 1858a7f7f624SMasahiro Yamada help 1859fbdd7144STimur Tabi Watchdog driver for PowerPC Book-E chips, such as the Freescale 1860fbdd7144STimur Tabi MPC85xx SOCs and the IBM PowerPC 440. 1861fbdd7144STimur Tabi 186274665686SMauro Carvalho Chehab Please see Documentation/watchdog/watchdog-api.rst for 1863b7e04f8cSWim Van Sebroeck more information. 1864b7e04f8cSWim Van Sebroeck 1865e0dc09ffSTimur Tabiconfig BOOKE_WDT_DEFAULT_TIMEOUT 1866e0dc09ffSTimur Tabi int "PowerPC Book-E Watchdog Timer Default Timeout" 1867e0dc09ffSTimur Tabi depends on BOOKE_WDT 1868be0884ceSShaohui Xie default 38 if PPC_FSL_BOOK3E 1869be0884ceSShaohui Xie range 0 63 if PPC_FSL_BOOK3E 1870be0884ceSShaohui Xie default 3 if !PPC_FSL_BOOK3E 1871be0884ceSShaohui Xie range 0 3 if !PPC_FSL_BOOK3E 1872e0dc09ffSTimur Tabi help 1873e0dc09ffSTimur Tabi Select the default watchdog timer period to be used by the PowerPC 1874e0dc09ffSTimur Tabi Book-E watchdog driver. A watchdog "event" occurs when the bit 1875e0dc09ffSTimur Tabi position represented by this number transitions from zero to one. 1876e0dc09ffSTimur Tabi 1877e0dc09ffSTimur Tabi For Freescale Book-E processors, this is a number between 0 and 63. 1878e0dc09ffSTimur Tabi For other Book-E processors, this is a number between 0 and 3. 1879e0dc09ffSTimur Tabi 1880e1d1d68aSMasanari Iida The value can be overridden by the wdt_period command-line parameter. 1881e0dc09ffSTimur Tabi 188226c57ef1SJohannes Thumshirnconfig MEN_A21_WDT 188326c57ef1SJohannes Thumshirn tristate "MEN A21 VME CPU Carrier Board Watchdog Timer" 188426c57ef1SJohannes Thumshirn select WATCHDOG_CORE 188521a926a3SGeert Uytterhoeven depends on GPIOLIB || COMPILE_TEST 188626c57ef1SJohannes Thumshirn help 188726c57ef1SJohannes Thumshirn Watchdog driver for MEN A21 VMEbus CPU Carrier Boards. 188826c57ef1SJohannes Thumshirn 188926c57ef1SJohannes Thumshirn The driver can also be built as a module. If so, the module will be 189026c57ef1SJohannes Thumshirn called mena21_wdt. 189126c57ef1SJohannes Thumshirn 189226c57ef1SJohannes Thumshirn If unsure select N here. 189326c57ef1SJohannes Thumshirn 1894b7e04f8cSWim Van Sebroeck# PPC64 Architecture 1895b7e04f8cSWim Van Sebroeck 1896b7e04f8cSWim Van Sebroeckconfig WATCHDOG_RTAS 1897b7e04f8cSWim Van Sebroeck tristate "RTAS watchdog" 189842bed042SMurilo Opsfelder Araujo depends on PPC_RTAS 1899b7e04f8cSWim Van Sebroeck help 1900b7e04f8cSWim Van Sebroeck This driver adds watchdog support for the RTAS watchdog. 1901b7e04f8cSWim Van Sebroeck 1902b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here. The module 1903b7e04f8cSWim Van Sebroeck will be called wdrtas. 1904b7e04f8cSWim Van Sebroeck 1905b7e04f8cSWim Van Sebroeck# S390 Architecture 1906b7e04f8cSWim Van Sebroeck 1907f7a94db4SPhilipp Hachtmannconfig DIAG288_WATCHDOG 1908f7a94db4SPhilipp Hachtmann tristate "System z diag288 Watchdog" 1909b7e04f8cSWim Van Sebroeck depends on S390 1910f7a94db4SPhilipp Hachtmann select WATCHDOG_CORE 1911b7e04f8cSWim Van Sebroeck help 1912b7e04f8cSWim Van Sebroeck IBM s/390 and zSeries machines running under z/VM 5.1 or later 1913b7e04f8cSWim Van Sebroeck provide a virtual watchdog timer to their guest that cause a 1914b7e04f8cSWim Van Sebroeck user define Control Program command to be executed after a 1915b7e04f8cSWim Van Sebroeck timeout. 1916646f919eSPhilipp Hachtmann LPAR provides a very similar interface. This driver handles 1917646f919eSPhilipp Hachtmann both. 1918b7e04f8cSWim Van Sebroeck 1919b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here. The module 1920a8fa3943SPhilipp Hachtmann will be called diag288_wdt. 1921b7e04f8cSWim Van Sebroeck 1922b7e04f8cSWim Van Sebroeck# SUPERH (sh + sh64) Architecture 1923b7e04f8cSWim Van Sebroeck 1924b7e04f8cSWim Van Sebroeckconfig SH_WDT 1925b7e04f8cSWim Van Sebroeck tristate "SuperH Watchdog" 1926da2a68b3SGuenter Roeck depends on SUPERH && (CPU_SH3 || CPU_SH4 || COMPILE_TEST) 19271950f499SPaul Mundt select WATCHDOG_CORE 1928b7e04f8cSWim Van Sebroeck help 1929b7e04f8cSWim Van Sebroeck This driver adds watchdog support for the integrated watchdog in the 1930b7e04f8cSWim Van Sebroeck SuperH processors. If you have one of these processors and wish 1931b7e04f8cSWim Van Sebroeck to have watchdog support enabled, say Y, otherwise say N. 1932b7e04f8cSWim Van Sebroeck 1933b7e04f8cSWim Van Sebroeck As a side note, saying Y here will automatically boost HZ to 1000 1934b7e04f8cSWim Van Sebroeck so that the timer has a chance to clear the overflow counter. On 1935b7e04f8cSWim Van Sebroeck slower systems (such as the SH-2 and SH-3) this will likely yield 1936b7e04f8cSWim Van Sebroeck some performance issues. As such, the WDT should be avoided here 1937b7e04f8cSWim Van Sebroeck unless it is absolutely necessary. 1938b7e04f8cSWim Van Sebroeck 1939b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1940b7e04f8cSWim Van Sebroeck module will be called shwdt. 1941b7e04f8cSWim Van Sebroeck 1942b7e04f8cSWim Van Sebroeck# SPARC Architecture 1943b7e04f8cSWim Van Sebroeck 1944b7e04f8cSWim Van Sebroeck# SPARC64 Architecture 1945b7e04f8cSWim Van Sebroeck 1946b7e04f8cSWim Van Sebroeckconfig WATCHDOG_CP1XXX 1947b7e04f8cSWim Van Sebroeck tristate "CP1XXX Hardware Watchdog support" 1948b7e04f8cSWim Van Sebroeck depends on SPARC64 && PCI 1949a7f7f624SMasahiro Yamada help 1950b7e04f8cSWim Van Sebroeck This is the driver for the hardware watchdog timers present on 1951b7e04f8cSWim Van Sebroeck Sun Microsystems CompactPCI models CP1400 and CP1500. 1952b7e04f8cSWim Van Sebroeck 1953b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 1954b7e04f8cSWim Van Sebroeck module will be called cpwatchdog. 1955b7e04f8cSWim Van Sebroeck 1956b7e04f8cSWim Van Sebroeck If you do not have a CompactPCI model CP1400 or CP1500, or 1957b7e04f8cSWim Van Sebroeck another UltraSPARC-IIi-cEngine boardset with hardware watchdog, 1958b7e04f8cSWim Van Sebroeck you should say N to this option. 1959b7e04f8cSWim Van Sebroeck 1960b7e04f8cSWim Van Sebroeckconfig WATCHDOG_RIO 1961b7e04f8cSWim Van Sebroeck tristate "RIO Hardware Watchdog support" 1962b7e04f8cSWim Van Sebroeck depends on SPARC64 && PCI 1963b7e04f8cSWim Van Sebroeck help 1964b7e04f8cSWim Van Sebroeck Say Y here to support the hardware watchdog capability on Sun RIO 1965b7e04f8cSWim Van Sebroeck machines. The watchdog timeout period is normally one minute but 1966b7e04f8cSWim Van Sebroeck can be changed with a boot-time parameter. 1967b7e04f8cSWim Van Sebroeck 1968ca0bb079Swim.coekaerts@oracle.comconfig WATCHDOG_SUN4V 1969ca0bb079Swim.coekaerts@oracle.com tristate "Sun4v Watchdog support" 1970ca0bb079Swim.coekaerts@oracle.com select WATCHDOG_CORE 1971ca0bb079Swim.coekaerts@oracle.com depends on SPARC64 1972ca0bb079Swim.coekaerts@oracle.com help 1973ca0bb079Swim.coekaerts@oracle.com Say Y here to support the hypervisor watchdog capability embedded 1974ca0bb079Swim.coekaerts@oracle.com in the SPARC sun4v architecture. 1975ca0bb079Swim.coekaerts@oracle.com 1976ca0bb079Swim.coekaerts@oracle.com To compile this driver as a module, choose M here. The module will 1977ca0bb079Swim.coekaerts@oracle.com be called sun4v_wdt. 1978ca0bb079Swim.coekaerts@oracle.com 1979b7e04f8cSWim Van Sebroeck# XTENSA Architecture 1980b7e04f8cSWim Van Sebroeck 1981066d6c7fSJan Beulich# Xen Architecture 1982066d6c7fSJan Beulich 1983066d6c7fSJan Beulichconfig XEN_WDT 1984066d6c7fSJan Beulich tristate "Xen Watchdog support" 1985066d6c7fSJan Beulich depends on XEN 19864cd67644SRadu Rendec select WATCHDOG_CORE 1987066d6c7fSJan Beulich help 1988066d6c7fSJan Beulich Say Y here to support the hypervisor watchdog capability provided 1989066d6c7fSJan Beulich by Xen 4.0 and newer. The watchdog timeout period is normally one 1990066d6c7fSJan Beulich minute but can be changed with a boot-time parameter. 1991066d6c7fSJan Beulich 1992d805a786SAl Viroconfig UML_WATCHDOG 1993d805a786SAl Viro tristate "UML watchdog" 1994da2a68b3SGuenter Roeck depends on UML || COMPILE_TEST 1995d805a786SAl Viro 1996b7e04f8cSWim Van Sebroeck# 1997b7e04f8cSWim Van Sebroeck# ISA-based Watchdog Cards 1998b7e04f8cSWim Van Sebroeck# 1999b7e04f8cSWim Van Sebroeck 2000b7e04f8cSWim Van Sebroeckcomment "ISA-based Watchdog Cards" 2001b7e04f8cSWim Van Sebroeck depends on ISA 2002b7e04f8cSWim Van Sebroeck 2003b7e04f8cSWim Van Sebroeckconfig PCWATCHDOG 2004b7e04f8cSWim Van Sebroeck tristate "Berkshire Products ISA-PC Watchdog" 2005b7e04f8cSWim Van Sebroeck depends on ISA 2006a7f7f624SMasahiro Yamada help 2007b7e04f8cSWim Van Sebroeck This is the driver for the Berkshire Products ISA-PC Watchdog card. 2008b7e04f8cSWim Van Sebroeck This card simply watches your kernel to make sure it doesn't freeze, 2009b7e04f8cSWim Van Sebroeck and if it does, it reboots your computer after a certain amount of 2010b7e04f8cSWim Van Sebroeck time. This driver is like the WDT501 driver but for different 201101028829SRandy Dunlap hardware. Please read <file:Documentation/watchdog/pcwd-watchdog.rst>. 201201028829SRandy Dunlap The PC watchdog cards can be ordered from <http://www.berkprod.com/>. 2013b7e04f8cSWim Van Sebroeck 2014b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 2015b7e04f8cSWim Van Sebroeck module will be called pcwd. 2016b7e04f8cSWim Van Sebroeck 2017b7e04f8cSWim Van Sebroeck Most people will say N. 2018b7e04f8cSWim Van Sebroeck 2019b7e04f8cSWim Van Sebroeckconfig MIXCOMWD 2020b7e04f8cSWim Van Sebroeck tristate "Mixcom Watchdog" 2021b7e04f8cSWim Van Sebroeck depends on ISA 2022a7f7f624SMasahiro Yamada help 2023b7e04f8cSWim Van Sebroeck This is a driver for the Mixcom hardware watchdog cards. This 2024b7e04f8cSWim Van Sebroeck watchdog simply watches your kernel to make sure it doesn't freeze, 2025b7e04f8cSWim Van Sebroeck and if it does, it reboots your computer after a certain amount of 2026b7e04f8cSWim Van Sebroeck time. 2027b7e04f8cSWim Van Sebroeck 2028b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 2029b7e04f8cSWim Van Sebroeck module will be called mixcomwd. 2030b7e04f8cSWim Van Sebroeck 2031b7e04f8cSWim Van Sebroeck Most people will say N. 2032b7e04f8cSWim Van Sebroeck 2033b7e04f8cSWim Van Sebroeckconfig WDT 2034b7e04f8cSWim Van Sebroeck tristate "WDT Watchdog timer" 2035b7e04f8cSWim Van Sebroeck depends on ISA 2036a7f7f624SMasahiro Yamada help 2037b7e04f8cSWim Van Sebroeck If you have a WDT500P or WDT501P watchdog board, say Y here, 2038b7e04f8cSWim Van Sebroeck otherwise N. It is not possible to probe for this board, which means 2039b7e04f8cSWim Van Sebroeck that you have to inform the kernel about the IO port and IRQ that 2040b7e04f8cSWim Van Sebroeck is needed (you can do this via the io and irq parameters) 2041b7e04f8cSWim Van Sebroeck 2042b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 2043b7e04f8cSWim Van Sebroeck module will be called wdt. 2044b7e04f8cSWim Van Sebroeck 2045b7e04f8cSWim Van Sebroeck# 2046b7e04f8cSWim Van Sebroeck# PCI-based Watchdog Cards 2047b7e04f8cSWim Van Sebroeck# 2048b7e04f8cSWim Van Sebroeck 2049b7e04f8cSWim Van Sebroeckcomment "PCI-based Watchdog Cards" 2050b7e04f8cSWim Van Sebroeck depends on PCI 2051b7e04f8cSWim Van Sebroeck 2052b7e04f8cSWim Van Sebroeckconfig PCIPCWATCHDOG 2053b7e04f8cSWim Van Sebroeck tristate "Berkshire Products PCI-PC Watchdog" 2054b7e04f8cSWim Van Sebroeck depends on PCI 2055a7f7f624SMasahiro Yamada help 2056b7e04f8cSWim Van Sebroeck This is the driver for the Berkshire Products PCI-PC Watchdog card. 2057b7e04f8cSWim Van Sebroeck This card simply watches your kernel to make sure it doesn't freeze, 2058b7e04f8cSWim Van Sebroeck and if it does, it reboots your computer after a certain amount of 2059b7e04f8cSWim Van Sebroeck time. The card can also monitor the internal temperature of the PC. 2060b7e04f8cSWim Van Sebroeck More info is available at <http://www.berkprod.com/pci_pc_watchdog.htm>. 2061b7e04f8cSWim Van Sebroeck 2062b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 2063b7e04f8cSWim Van Sebroeck module will be called pcwd_pci. 2064b7e04f8cSWim Van Sebroeck 2065b7e04f8cSWim Van Sebroeck Most people will say N. 2066b7e04f8cSWim Van Sebroeck 2067b7e04f8cSWim Van Sebroeckconfig WDTPCI 2068b7e04f8cSWim Van Sebroeck tristate "PCI-WDT500/501 Watchdog timer" 2069b7e04f8cSWim Van Sebroeck depends on PCI 2070a7f7f624SMasahiro Yamada help 2071b7e04f8cSWim Van Sebroeck If you have a PCI-WDT500/501 watchdog board, say Y here, otherwise N. 2072b7e04f8cSWim Van Sebroeck 20739b901ee0SWim Van Sebroeck If you have a PCI-WDT501 watchdog board then you can enable the 20749b901ee0SWim Van Sebroeck temperature sensor by setting the type parameter to 501. 2075b7e04f8cSWim Van Sebroeck 2076b7e04f8cSWim Van Sebroeck If you want to enable the Fan Tachometer on the PCI-WDT501, then you 2077b7e04f8cSWim Van Sebroeck can do this via the tachometer parameter. Only do this if you have a 2078b7e04f8cSWim Van Sebroeck fan tachometer actually set up. 2079b7e04f8cSWim Van Sebroeck 20809b901ee0SWim Van Sebroeck To compile this driver as a module, choose M here: the 20819b901ee0SWim Van Sebroeck module will be called wdt_pci. 20829b901ee0SWim Van Sebroeck 2083b7e04f8cSWim Van Sebroeck# 2084b7e04f8cSWim Van Sebroeck# USB-based Watchdog Cards 2085b7e04f8cSWim Van Sebroeck# 2086b7e04f8cSWim Van Sebroeck 2087b7e04f8cSWim Van Sebroeckcomment "USB-based Watchdog Cards" 2088b7e04f8cSWim Van Sebroeck depends on USB 2089b7e04f8cSWim Van Sebroeck 2090b7e04f8cSWim Van Sebroeckconfig USBPCWATCHDOG 2091b7e04f8cSWim Van Sebroeck tristate "Berkshire Products USB-PC Watchdog" 2092b7e04f8cSWim Van Sebroeck depends on USB 2093a7f7f624SMasahiro Yamada help 2094b7e04f8cSWim Van Sebroeck This is the driver for the Berkshire Products USB-PC Watchdog card. 2095b7e04f8cSWim Van Sebroeck This card simply watches your kernel to make sure it doesn't freeze, 2096b7e04f8cSWim Van Sebroeck and if it does, it reboots your computer after a certain amount of 2097b7e04f8cSWim Van Sebroeck time. The card can also monitor the internal temperature of the PC. 2098b7e04f8cSWim Van Sebroeck More info is available at <http://www.berkprod.com/usb_pc_watchdog.htm>. 2099b7e04f8cSWim Van Sebroeck 2100b7e04f8cSWim Van Sebroeck To compile this driver as a module, choose M here: the 2101b7e04f8cSWim Van Sebroeck module will be called pcwd_usb. 2102b7e04f8cSWim Van Sebroeck 2103b7e04f8cSWim Van Sebroeck Most people will say N. 2104b7e04f8cSWim Van Sebroeck 2105fa0f8d51SVijayakannan Ayyathuraiconfig KEEMBAY_WATCHDOG 2106fa0f8d51SVijayakannan Ayyathurai tristate "Intel Keem Bay SoC non-secure watchdog" 2107fa0f8d51SVijayakannan Ayyathurai depends on ARCH_KEEMBAY || (ARM64 && COMPILE_TEST) 2108fa0f8d51SVijayakannan Ayyathurai select WATCHDOG_CORE 2109fa0f8d51SVijayakannan Ayyathurai help 2110fa0f8d51SVijayakannan Ayyathurai This option enable support for an In-secure watchdog timer driver for 2111fa0f8d51SVijayakannan Ayyathurai Intel Keem Bay SoC. This WDT has a 32 bit timer and decrements in every 2112fa0f8d51SVijayakannan Ayyathurai count unit. An interrupt will be triggered, when the count crosses 2113c891ef7dSWong Vee Khee the threshold configured in the register. 2114fa0f8d51SVijayakannan Ayyathurai 2115fa0f8d51SVijayakannan Ayyathurai To compile this driver as a module, choose M here: the 2116fa0f8d51SVijayakannan Ayyathurai module will be called keembay_wdt. 2117fa0f8d51SVijayakannan Ayyathurai 2118b7e04f8cSWim Van Sebroeckendif # WATCHDOG 2119