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