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