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