Kconfig 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300
  1. #
  2. # Watchdog device configuration
  3. #
  4. menuconfig WATCHDOG
  5. bool "Watchdog Timer Support"
  6. ---help---
  7. If you say Y here (and to one of the following options) and create a
  8. character special file /dev/watchdog with major number 10 and minor
  9. number 130 using mknod ("man mknod"), you will get a watchdog, i.e.:
  10. subsequently opening the file and then failing to write to it for
  11. longer than 1 minute will result in rebooting the machine. This
  12. could be useful for a networked machine that needs to come back
  13. on-line as fast as possible after a lock-up. There's both a watchdog
  14. implementation entirely in software (which can sometimes fail to
  15. reboot the machine) and a driver for hardware watchdog boards, which
  16. are more robust and can also keep track of the temperature inside
  17. your computer. For details, read
  18. <file:Documentation/watchdog/watchdog-api.txt> in the kernel source.
  19. The watchdog is usually used together with the watchdog daemon
  20. which is available from
  21. <ftp://ibiblio.org/pub/Linux/system/daemons/watchdog/>. This daemon can
  22. also monitor NFS connections and can reboot the machine when the process
  23. table is full.
  24. If unsure, say N.
  25. if WATCHDOG
  26. config WATCHDOG_CORE
  27. bool "WatchDog Timer Driver Core"
  28. ---help---
  29. Say Y here if you want to use the new watchdog timer driver core.
  30. This driver provides a framework for all watchdog timer drivers
  31. and gives them the /dev/watchdog interface (and later also the
  32. sysfs interface).
  33. config WATCHDOG_NOWAYOUT
  34. bool "Disable watchdog shutdown on close"
  35. help
  36. The default watchdog behaviour (which you get if you say N here) is
  37. to stop the timer if the process managing it closes the file
  38. /dev/watchdog. It's always remotely possible that this process might
  39. get killed. If you say Y here, the watchdog cannot be stopped once
  40. it has been started.
  41. #
  42. # General Watchdog drivers
  43. #
  44. comment "Watchdog Device Drivers"
  45. # Architecture Independent
  46. config SOFT_WATCHDOG
  47. tristate "Software watchdog"
  48. help
  49. A software monitoring watchdog. This will fail to reboot your system
  50. from some situations that the hardware watchdog will recover
  51. from. Equally it's a lot cheaper to install.
  52. To compile this driver as a module, choose M here: the
  53. module will be called softdog.
  54. config WM831X_WATCHDOG
  55. tristate "WM831x watchdog"
  56. depends on MFD_WM831X
  57. select WATCHDOG_CORE
  58. help
  59. Support for the watchdog in the WM831x AudioPlus PMICs. When
  60. the watchdog triggers the system will be reset.
  61. config WM8350_WATCHDOG
  62. tristate "WM8350 watchdog"
  63. depends on MFD_WM8350
  64. select WATCHDOG_CORE
  65. help
  66. Support for the watchdog in the WM8350 AudioPlus PMIC. When
  67. the watchdog triggers the system will be reset.
  68. # ALPHA Architecture
  69. # ARM Architecture
  70. config ARM_SP805_WATCHDOG
  71. tristate "ARM SP805 Watchdog"
  72. depends on ARM_AMBA
  73. help
  74. ARM Primecell SP805 Watchdog timer. This will reboot your system when
  75. the timeout is reached.
  76. config AT91RM9200_WATCHDOG
  77. tristate "AT91RM9200 watchdog"
  78. depends on ARCH_AT91RM9200
  79. help
  80. Watchdog timer embedded into AT91RM9200 chips. This will reboot your
  81. system when the timeout is reached.
  82. config AT91SAM9X_WATCHDOG
  83. tristate "AT91SAM9X / AT91CAP9 watchdog"
  84. depends on ARCH_AT91 && !ARCH_AT91RM9200
  85. help
  86. Watchdog timer embedded into AT91SAM9X and AT91CAP9 chips. This will
  87. reboot your system when the timeout is reached.
  88. config 21285_WATCHDOG
  89. tristate "DC21285 watchdog"
  90. depends on FOOTBRIDGE
  91. help
  92. The Intel Footbridge chip contains a built-in watchdog circuit. Say Y
  93. here if you wish to use this. Alternatively say M to compile the
  94. driver as a module, which will be called wdt285.
  95. This driver does not work on all machines. In particular, early CATS
  96. boards have hardware problems that will cause the machine to simply
  97. lock up if the watchdog fires.
  98. "If in doubt, leave it out" - say N.
  99. config 977_WATCHDOG
  100. tristate "NetWinder WB83C977 watchdog"
  101. depends on FOOTBRIDGE && ARCH_NETWINDER
  102. help
  103. Say Y here to include support for the WB977 watchdog included in
  104. NetWinder machines. Alternatively say M to compile the driver as
  105. a module, which will be called wdt977.
  106. Not sure? It's safe to say N.
  107. config IXP2000_WATCHDOG
  108. tristate "IXP2000 Watchdog"
  109. depends on ARCH_IXP2000
  110. help
  111. Say Y here if to include support for the watchdog timer
  112. in the Intel IXP2000(2400, 2800, 2850) network processors.
  113. This driver can be built as a module by choosing M. The module
  114. will be called ixp2000_wdt.
  115. Say N if you are unsure.
  116. config IXP4XX_WATCHDOG
  117. tristate "IXP4xx Watchdog"
  118. depends on ARCH_IXP4XX
  119. help
  120. Say Y here if to include support for the watchdog timer
  121. in the Intel IXP4xx network processors. This driver can
  122. be built as a module by choosing M. The module will
  123. be called ixp4xx_wdt.
  124. Note: The internal IXP4xx watchdog does a soft CPU reset
  125. which doesn't reset any peripherals. There are circumstances
  126. where the watchdog will fail to reset the board correctly
  127. (e.g., if the boot ROM is in an unreadable state).
  128. Say N if you are unsure.
  129. config KS8695_WATCHDOG
  130. tristate "KS8695 watchdog"
  131. depends on ARCH_KS8695
  132. help
  133. Watchdog timer embedded into KS8695 processor. This will reboot your
  134. system when the timeout is reached.
  135. config HAVE_S3C2410_WATCHDOG
  136. bool
  137. help
  138. This will include watchdog timer support for Samsung SoCs. If
  139. you want to include watchdog support for any machine, kindly
  140. select this in the respective mach-XXXX/Kconfig file.
  141. config S3C2410_WATCHDOG
  142. tristate "S3C2410 Watchdog"
  143. depends on ARCH_S3C2410 || HAVE_S3C2410_WATCHDOG
  144. select WATCHDOG_CORE
  145. help
  146. Watchdog timer block in the Samsung SoCs. This will reboot
  147. the system when the timer expires with the watchdog enabled.
  148. The driver is limited by the speed of the system's PCLK
  149. signal, so with reasonably fast systems (PCLK around 50-66MHz)
  150. then watchdog intervals of over approximately 20seconds are
  151. unavailable.
  152. The driver can be built as a module by choosing M, and will
  153. be called s3c2410_wdt
  154. config SA1100_WATCHDOG
  155. tristate "SA1100/PXA2xx watchdog"
  156. depends on ARCH_SA1100 || ARCH_PXA
  157. help
  158. Watchdog timer embedded into SA11x0 and PXA2xx chips. This will
  159. reboot your system when timeout is reached.
  160. NOTE: once enabled, this timer cannot be disabled.
  161. To compile this driver as a module, choose M here: the
  162. module will be called sa1100_wdt.
  163. config DW_WATCHDOG
  164. tristate "Synopsys DesignWare watchdog"
  165. depends on ARM && HAVE_CLK
  166. help
  167. Say Y here if to include support for the Synopsys DesignWare
  168. watchdog timer found in many ARM chips.
  169. To compile this driver as a module, choose M here: the
  170. module will be called dw_wdt.
  171. config MPCORE_WATCHDOG
  172. tristate "MPcore watchdog"
  173. depends on HAVE_ARM_TWD
  174. help
  175. Watchdog timer embedded into the MPcore system.
  176. To compile this driver as a module, choose M here: the
  177. module will be called mpcore_wdt.
  178. config EP93XX_WATCHDOG
  179. tristate "EP93xx Watchdog"
  180. depends on ARCH_EP93XX
  181. help
  182. Say Y here if to include support for the watchdog timer
  183. embedded in the Cirrus Logic EP93xx family of devices.
  184. To compile this driver as a module, choose M here: the
  185. module will be called ep93xx_wdt.
  186. config OMAP_WATCHDOG
  187. tristate "OMAP Watchdog"
  188. depends on ARCH_OMAP16XX || ARCH_OMAP2PLUS
  189. help
  190. Support for TI OMAP1610/OMAP1710/OMAP2420/OMAP3430/OMAP4430 watchdog. Say 'Y'
  191. here to enable the OMAP1610/OMAP1710/OMAP2420/OMAP3430/OMAP4430 watchdog timer.
  192. config PNX4008_WATCHDOG
  193. tristate "PNX4008 and LPC32XX Watchdog"
  194. depends on ARCH_PNX4008 || ARCH_LPC32XX
  195. help
  196. Say Y here if to include support for the watchdog timer
  197. in the PNX4008 or LPC32XX processor.
  198. This driver can be built as a module by choosing M. The module
  199. will be called pnx4008_wdt.
  200. Say N if you are unsure.
  201. config IOP_WATCHDOG
  202. tristate "IOP Watchdog"
  203. depends on PLAT_IOP
  204. select WATCHDOG_NOWAYOUT if (ARCH_IOP32X || ARCH_IOP33X)
  205. help
  206. Say Y here if to include support for the watchdog timer
  207. in the Intel IOP3XX & IOP13XX I/O Processors. This driver can
  208. be built as a module by choosing M. The module will
  209. be called iop_wdt.
  210. Note: The IOP13XX watchdog does an Internal Bus Reset which will
  211. affect both cores and the peripherals of the IOP. The ATU-X
  212. and/or ATUe configuration registers will remain intact, but if
  213. operating as an Root Complex and/or Central Resource, the PCI-X
  214. and/or PCIe busses will also be reset. THIS IS A VERY BIG HAMMER.
  215. config DAVINCI_WATCHDOG
  216. tristate "DaVinci watchdog"
  217. depends on ARCH_DAVINCI
  218. help
  219. Say Y here if to include support for the watchdog timer
  220. in the DaVinci DM644x/DM646x processors.
  221. To compile this driver as a module, choose M here: the
  222. module will be called davinci_wdt.
  223. NOTE: once enabled, this timer cannot be disabled.
  224. Say N if you are unsure.
  225. config ORION_WATCHDOG
  226. tristate "Orion watchdog"
  227. depends on ARCH_ORION5X || ARCH_KIRKWOOD
  228. help
  229. Say Y here if to include support for the watchdog timer
  230. in the Marvell Orion5x and Kirkwood ARM SoCs.
  231. To compile this driver as a module, choose M here: the
  232. module will be called orion_wdt.
  233. config COH901327_WATCHDOG
  234. bool "ST-Ericsson COH 901 327 watchdog"
  235. depends on ARCH_U300
  236. default y if MACH_U300
  237. help
  238. Say Y here to include Watchdog timer support for the
  239. watchdog embedded into the ST-Ericsson U300 series platforms.
  240. This watchdog is used to reset the system and thus cannot be
  241. compiled as a module.
  242. config TWL4030_WATCHDOG
  243. tristate "TWL4030 Watchdog"
  244. depends on TWL4030_CORE
  245. help
  246. Support for TI TWL4030 watchdog. Say 'Y' here to enable the
  247. watchdog timer support for TWL4030 chips.
  248. config STMP3XXX_WATCHDOG
  249. tristate "Freescale STMP3XXX watchdog"
  250. depends on ARCH_STMP3XXX
  251. help
  252. Say Y here if to include support for the watchdog timer
  253. for the Sigmatel STMP37XX/378X SoC.
  254. To compile this driver as a module, choose M here: the
  255. module will be called stmp3xxx_wdt.
  256. config NUC900_WATCHDOG
  257. tristate "Nuvoton NUC900 watchdog"
  258. depends on ARCH_W90X900
  259. help
  260. Say Y here if to include support for the watchdog timer
  261. for the Nuvoton NUC900 series SoCs.
  262. To compile this driver as a module, choose M here: the
  263. module will be called nuc900_wdt.
  264. config TS72XX_WATCHDOG
  265. tristate "TS-72XX SBC Watchdog"
  266. depends on MACH_TS72XX
  267. help
  268. Technologic Systems TS-7200, TS-7250 and TS-7260 boards have
  269. watchdog timer implemented in a external CPLD chip. Say Y here
  270. if you want to support for the watchdog timer on TS-72XX boards.
  271. To compile this driver as a module, choose M here: the
  272. module will be called ts72xx_wdt.
  273. config MAX63XX_WATCHDOG
  274. tristate "Max63xx watchdog"
  275. depends on ARM && HAS_IOMEM
  276. help
  277. Support for memory mapped max63{69,70,71,72,73,74} watchdog timer.
  278. config IMX2_WDT
  279. tristate "IMX2+ Watchdog"
  280. depends on IMX_HAVE_PLATFORM_IMX2_WDT
  281. help
  282. This is the driver for the hardware watchdog
  283. on the Freescale IMX2 and later processors.
  284. If you have one of these processors and wish to have
  285. watchdog support enabled, say Y, otherwise say N.
  286. To compile this driver as a module, choose M here: the
  287. module will be called imx2_wdt.
  288. # AVR32 Architecture
  289. config AT32AP700X_WDT
  290. tristate "AT32AP700x watchdog"
  291. depends on CPU_AT32AP700X
  292. help
  293. Watchdog timer embedded into AT32AP700x devices. This will reboot
  294. your system when the timeout is reached.
  295. # BLACKFIN Architecture
  296. config BFIN_WDT
  297. tristate "Blackfin On-Chip Watchdog Timer"
  298. depends on BLACKFIN
  299. ---help---
  300. If you say yes here you will get support for the Blackfin On-Chip
  301. Watchdog Timer. If you have one of these processors and wish to
  302. have watchdog support enabled, say Y, otherwise say N.
  303. To compile this driver as a module, choose M here: the
  304. module will be called bfin_wdt.
  305. # CRIS Architecture
  306. # FRV Architecture
  307. # H8300 Architecture
  308. # X86 (i386 + ia64 + x86_64) Architecture
  309. config ACQUIRE_WDT
  310. tristate "Acquire SBC Watchdog Timer"
  311. depends on X86
  312. ---help---
  313. This is the driver for the hardware watchdog on Single Board
  314. Computers produced by Acquire Inc (and others). This watchdog
  315. simply watches your kernel to make sure it doesn't freeze, and if
  316. it does, it reboots your computer after a certain amount of time.
  317. To compile this driver as a module, choose M here: the
  318. module will be called acquirewdt.
  319. Most people will say N.
  320. config ADVANTECH_WDT
  321. tristate "Advantech SBC Watchdog Timer"
  322. depends on X86
  323. help
  324. If you are configuring a Linux kernel for the Advantech single-board
  325. computer, say `Y' here to support its built-in watchdog timer
  326. feature. More information can be found at
  327. <http://www.advantech.com.tw/products/>
  328. config ALIM1535_WDT
  329. tristate "ALi M1535 PMU Watchdog Timer"
  330. depends on X86 && PCI
  331. ---help---
  332. This is the driver for the hardware watchdog on the ALi M1535 PMU.
  333. To compile this driver as a module, choose M here: the
  334. module will be called alim1535_wdt.
  335. Most people will say N.
  336. config ALIM7101_WDT
  337. tristate "ALi M7101 PMU Computer Watchdog"
  338. depends on PCI
  339. help
  340. This is the driver for the hardware watchdog on the ALi M7101 PMU
  341. as used in the x86 Cobalt servers and also found in some
  342. SPARC Netra servers too.
  343. To compile this driver as a module, choose M here: the
  344. module will be called alim7101_wdt.
  345. Most people will say N.
  346. config F71808E_WDT
  347. tristate "Fintek F71808E, F71862FG, F71869, F71882FG and F71889FG Watchdog"
  348. depends on X86 && EXPERIMENTAL
  349. help
  350. This is the driver for the hardware watchdog on the Fintek
  351. F71808E, F71862FG, F71869, F71882FG and F71889FG Super I/O controllers.
  352. You can compile this driver directly into the kernel, or use
  353. it as a module. The module will be called f71808e_wdt.
  354. config SP5100_TCO
  355. tristate "AMD/ATI SP5100 TCO Timer/Watchdog"
  356. depends on X86 && PCI
  357. ---help---
  358. Hardware watchdog driver for the AMD/ATI SP5100 chipset. The TCO
  359. (Total Cost of Ownership) timer is a watchdog timer that will reboot
  360. the machine after its expiration. The expiration time can be
  361. configured with the "heartbeat" parameter.
  362. To compile this driver as a module, choose M here: the
  363. module will be called sp5100_tco.
  364. config GEODE_WDT
  365. tristate "AMD Geode CS5535/CS5536 Watchdog"
  366. depends on CS5535_MFGPT
  367. help
  368. This driver enables a watchdog capability built into the
  369. CS5535/CS5536 companion chips for the AMD Geode GX and LX
  370. processors. This watchdog watches your kernel to make sure
  371. it doesn't freeze, and if it does, it reboots your computer after
  372. a certain amount of time.
  373. You can compile this driver directly into the kernel, or use
  374. it as a module. The module will be called geodewdt.
  375. config SC520_WDT
  376. tristate "AMD Elan SC520 processor Watchdog"
  377. depends on X86
  378. help
  379. This is the driver for the hardware watchdog built in to the
  380. AMD "Elan" SC520 microcomputer commonly used in embedded systems.
  381. This watchdog simply watches your kernel to make sure it doesn't
  382. freeze, and if it does, it reboots your computer after a certain
  383. amount of time.
  384. You can compile this driver directly into the kernel, or use
  385. it as a module. The module will be called sc520_wdt.
  386. config SBC_FITPC2_WATCHDOG
  387. tristate "Compulab SBC-FITPC2 watchdog"
  388. depends on X86
  389. ---help---
  390. This is the driver for the built-in watchdog timer on the fit-PC2,
  391. fit-PC2i, CM-iAM single-board computers made by Compulab.
  392. It`s possible to enable watchdog timer either from BIOS (F2) or from booted Linux.
  393. When "Watchdog Timer Value" enabled one can set 31-255 s operational range.
  394. Entering BIOS setup temporary disables watchdog operation regardless to current state,
  395. so system will not be restarted while user in BIOS setup.
  396. Once watchdog was enabled the system will be restarted every
  397. "Watchdog Timer Value" period, so to prevent it user can restart or
  398. disable the watchdog.
  399. To compile this driver as a module, choose M here: the
  400. module will be called sbc_fitpc2_wdt.
  401. Most people will say N.
  402. config EUROTECH_WDT
  403. tristate "Eurotech CPU-1220/1410 Watchdog Timer"
  404. depends on X86
  405. help
  406. Enable support for the watchdog timer on the Eurotech CPU-1220 and
  407. CPU-1410 cards. These are PC/104 SBCs. Spec sheets and product
  408. information are at <http://www.eurotech.it/>.
  409. config IB700_WDT
  410. tristate "IB700 SBC Watchdog Timer"
  411. depends on X86
  412. ---help---
  413. This is the driver for the hardware watchdog on the IB700 Single
  414. Board Computer produced by TMC Technology (www.tmc-uk.com). This watchdog
  415. simply watches your kernel to make sure it doesn't freeze, and if
  416. it does, it reboots your computer after a certain amount of time.
  417. This driver is like the WDT501 driver but for slightly different hardware.
  418. To compile this driver as a module, choose M here: the
  419. module will be called ib700wdt.
  420. Most people will say N.
  421. config IBMASR
  422. tristate "IBM Automatic Server Restart"
  423. depends on X86
  424. help
  425. This is the driver for the IBM Automatic Server Restart watchdog
  426. timer built-in into some eServer xSeries machines.
  427. To compile this driver as a module, choose M here: the
  428. module will be called ibmasr.
  429. config WAFER_WDT
  430. tristate "ICP Single Board Computer Watchdog Timer"
  431. depends on X86
  432. help
  433. This is a driver for the hardware watchdog on the ICP Single
  434. Board Computer. This driver is working on (at least) the following
  435. IPC SBC's: Wafer 5823, Rocky 4783, Rocky 3703 and Rocky 3782.
  436. To compile this driver as a module, choose M here: the
  437. module will be called wafer5823wdt.
  438. config I6300ESB_WDT
  439. tristate "Intel 6300ESB Timer/Watchdog"
  440. depends on X86 && PCI
  441. ---help---
  442. Hardware driver for the watchdog timer built into the Intel
  443. 6300ESB controller hub.
  444. To compile this driver as a module, choose M here: the
  445. module will be called i6300esb.
  446. config INTEL_SCU_WATCHDOG
  447. bool "Intel SCU Watchdog for Mobile Platforms"
  448. depends on X86_MRST
  449. ---help---
  450. Hardware driver for the watchdog time built into the Intel SCU
  451. for Intel Mobile Platforms.
  452. To compile this driver as a module, choose M here.
  453. config ITCO_WDT
  454. tristate "Intel TCO Timer/Watchdog"
  455. depends on (X86 || IA64) && PCI
  456. ---help---
  457. Hardware driver for the intel TCO timer based watchdog devices.
  458. These drivers are included in the Intel 82801 I/O Controller
  459. Hub family (from ICH0 up to ICH10) and in the Intel 63xxESB
  460. controller hub.
  461. The TCO (Total Cost of Ownership) timer is a watchdog timer
  462. that will reboot the machine after its second expiration. The
  463. expiration time can be configured with the "heartbeat" parameter.
  464. On some motherboards the driver may fail to reset the chipset's
  465. NO_REBOOT flag which prevents the watchdog from rebooting the
  466. machine. If this is the case you will get a kernel message like
  467. "failed to reset NO_REBOOT flag, reboot disabled by hardware".
  468. To compile this driver as a module, choose M here: the
  469. module will be called iTCO_wdt.
  470. config ITCO_VENDOR_SUPPORT
  471. bool "Intel TCO Timer/Watchdog Specific Vendor Support"
  472. depends on ITCO_WDT
  473. ---help---
  474. Add vendor specific support to the intel TCO timer based watchdog
  475. devices. At this moment we only have additional support for some
  476. SuperMicro Inc. motherboards.
  477. config IT8712F_WDT
  478. tristate "IT8712F (Smart Guardian) Watchdog Timer"
  479. depends on X86
  480. ---help---
  481. This is the driver for the built-in watchdog timer on the IT8712F
  482. Super I/0 chipset used on many motherboards.
  483. If the driver does not work, then make sure that the game port in
  484. the BIOS is enabled.
  485. To compile this driver as a module, choose M here: the
  486. module will be called it8712f_wdt.
  487. config IT87_WDT
  488. tristate "IT87 Watchdog Timer"
  489. depends on X86 && EXPERIMENTAL
  490. ---help---
  491. This is the driver for the hardware watchdog on the ITE IT8702,
  492. IT8712, IT8716, IT8718, IT8720, IT8721, IT8726 Super I/O chips.
  493. This watchdog simply watches your kernel to make sure it doesn't
  494. freeze, and if it does, it reboots your computer after a certain
  495. amount of time.
  496. To compile this driver as a module, choose M here: the module will
  497. be called it87_wdt.
  498. config HP_WATCHDOG
  499. tristate "HP ProLiant iLO2+ Hardware Watchdog Timer"
  500. depends on X86 && PCI
  501. help
  502. A software monitoring watchdog and NMI sourcing driver. This driver
  503. will detect lockups and provide a stack trace. This is a driver that
  504. will only load on an HP ProLiant system with a minimum of iLO2 support.
  505. To compile this driver as a module, choose M here: the module will be
  506. called hpwdt.
  507. config HPWDT_NMI_DECODING
  508. bool "NMI decoding support for the HP ProLiant iLO2+ Hardware Watchdog Timer"
  509. depends on HP_WATCHDOG
  510. default y
  511. help
  512. When an NMI occurs this feature will make the necessary BIOS calls to
  513. log the cause of the NMI.
  514. config SC1200_WDT
  515. tristate "National Semiconductor PC87307/PC97307 (ala SC1200) Watchdog"
  516. depends on X86
  517. help
  518. This is a driver for National Semiconductor PC87307/PC97307 hardware
  519. watchdog cards as found on the SC1200. This watchdog is mainly used
  520. for power management purposes and can be used to power down the device
  521. during inactivity periods (includes interrupt activity monitoring).
  522. To compile this driver as a module, choose M here: the
  523. module will be called sc1200wdt.
  524. Most people will say N.
  525. config SCx200_WDT
  526. tristate "National Semiconductor SCx200 Watchdog"
  527. depends on SCx200 && PCI
  528. help
  529. Enable the built-in watchdog timer support on the National
  530. Semiconductor SCx200 processors.
  531. If compiled as a module, it will be called scx200_wdt.
  532. config PC87413_WDT
  533. tristate "NS PC87413 watchdog"
  534. depends on X86
  535. ---help---
  536. This is the driver for the hardware watchdog on the PC87413 chipset
  537. This watchdog simply watches your kernel to make sure it doesn't
  538. freeze, and if it does, it reboots your computer after a certain
  539. amount of time.
  540. To compile this driver as a module, choose M here: the
  541. module will be called pc87413_wdt.
  542. Most people will say N.
  543. config NV_TCO
  544. tristate "nVidia TCO Timer/Watchdog"
  545. depends on X86 && PCI
  546. ---help---
  547. Hardware driver for the TCO timer built into the nVidia Hub family
  548. (such as the MCP51). The TCO (Total Cost of Ownership) timer is a
  549. watchdog timer that will reboot the machine after its second
  550. expiration. The expiration time can be configured with the
  551. "heartbeat" parameter.
  552. On some motherboards the driver may fail to reset the chipset's
  553. NO_REBOOT flag which prevents the watchdog from rebooting the
  554. machine. If this is the case you will get a kernel message like
  555. "failed to reset NO_REBOOT flag, reboot disabled by hardware".
  556. To compile this driver as a module, choose M here: the
  557. module will be called nv_tco.
  558. config RDC321X_WDT
  559. tristate "RDC R-321x SoC watchdog"
  560. depends on X86_RDC321X
  561. help
  562. This is the driver for the built in hardware watchdog
  563. in the RDC R-321x SoC.
  564. To compile this driver as a module, choose M here: the
  565. module will be called rdc321x_wdt.
  566. config 60XX_WDT
  567. tristate "SBC-60XX Watchdog Timer"
  568. depends on X86
  569. help
  570. This driver can be used with the watchdog timer found on some
  571. single board computers, namely the 6010 PII based computer.
  572. It may well work with other cards. It reads port 0x443 to enable
  573. and re-set the watchdog timer, and reads port 0x45 to disable
  574. the watchdog. If you have a card that behave in similar ways,
  575. you can probably make this driver work with your card as well.
  576. You can compile this driver directly into the kernel, or use
  577. it as a module. The module will be called sbc60xxwdt.
  578. config SBC8360_WDT
  579. tristate "SBC8360 Watchdog Timer"
  580. depends on X86
  581. ---help---
  582. This is the driver for the hardware watchdog on the SBC8360 Single
  583. Board Computer produced by Axiomtek Co., Ltd. (www.axiomtek.com).
  584. To compile this driver as a module, choose M here: the
  585. module will be called sbc8360.
  586. Most people will say N.
  587. config SBC7240_WDT
  588. tristate "SBC Nano 7240 Watchdog Timer"
  589. depends on X86_32 && !UML
  590. ---help---
  591. This is the driver for the hardware watchdog found on the IEI
  592. single board computers EPIC Nano 7240 (and likely others). This
  593. watchdog simply watches your kernel to make sure it doesn't freeze,
  594. and if it does, it reboots your computer after a certain amount of
  595. time.
  596. To compile this driver as a module, choose M here: the
  597. module will be called sbc7240_wdt.
  598. config CPU5_WDT
  599. tristate "SMA CPU5 Watchdog"
  600. depends on X86
  601. ---help---
  602. TBD.
  603. To compile this driver as a module, choose M here: the
  604. module will be called cpu5wdt.
  605. config SMSC_SCH311X_WDT
  606. tristate "SMSC SCH311X Watchdog Timer"
  607. depends on X86
  608. ---help---
  609. This is the driver for the hardware watchdog timer on the
  610. SMSC SCH3112, SCH3114 and SCH3116 Super IO chipset
  611. (LPC IO with 8042 KBC, Reset Generation, HWM and multiple
  612. serial ports).
  613. To compile this driver as a module, choose M here: the
  614. module will be called sch311x_wdt.
  615. config SMSC37B787_WDT
  616. tristate "Winbond SMsC37B787 Watchdog Timer"
  617. depends on X86
  618. ---help---
  619. This is the driver for the hardware watchdog component on the
  620. Winbond SMsC37B787 chipset as used on the NetRunner Mainboard
  621. from Vision Systems and maybe others.
  622. This watchdog simply watches your kernel to make sure it doesn't
  623. freeze, and if it does, it reboots your computer after a certain
  624. amount of time.
  625. Usually a userspace daemon will notify the kernel WDT driver that
  626. userspace is still alive, at regular intervals.
  627. To compile this driver as a module, choose M here: the
  628. module will be called smsc37b787_wdt.
  629. Most people will say N.
  630. config VIA_WDT
  631. tristate "VIA Watchdog Timer"
  632. depends on X86
  633. select WATCHDOG_CORE
  634. ---help---
  635. This is the driver for the hardware watchdog timer on VIA
  636. southbridge chipset CX700, VX800/VX820 or VX855/VX875.
  637. To compile this driver as a module, choose M here; the module
  638. will be called via_wdt.
  639. Most people will say N.
  640. config W83627HF_WDT
  641. tristate "W83627HF/W83627DHG Watchdog Timer"
  642. depends on X86
  643. ---help---
  644. This is the driver for the hardware watchdog on the W83627HF chipset
  645. as used in Advantech PC-9578 and Tyan S2721-533 motherboards
  646. (and likely others). The driver also supports the W83627DHG chip.
  647. This watchdog simply watches your kernel to make sure it doesn't
  648. freeze, and if it does, it reboots your computer after a certain
  649. amount of time.
  650. To compile this driver as a module, choose M here: the
  651. module will be called w83627hf_wdt.
  652. Most people will say N.
  653. config W83697HF_WDT
  654. tristate "W83697HF/W83697HG Watchdog Timer"
  655. depends on X86
  656. ---help---
  657. This is the driver for the hardware watchdog on the W83697HF/HG
  658. chipset as used in Dedibox/VIA motherboards (and likely others).
  659. This watchdog simply watches your kernel to make sure it doesn't
  660. freeze, and if it does, it reboots your computer after a certain
  661. amount of time.
  662. To compile this driver as a module, choose M here: the
  663. module will be called w83697hf_wdt.
  664. Most people will say N.
  665. config W83697UG_WDT
  666. tristate "W83697UG/W83697UF Watchdog Timer"
  667. depends on X86
  668. ---help---
  669. This is the driver for the hardware watchdog on the W83697UG/UF
  670. chipset as used in MSI Fuzzy CX700 VIA motherboards (and likely others).
  671. This watchdog simply watches your kernel to make sure it doesn't
  672. freeze, and if it does, it reboots your computer after a certain
  673. amount of time.
  674. To compile this driver as a module, choose M here: the
  675. module will be called w83697ug_wdt.
  676. Most people will say N.
  677. config W83877F_WDT
  678. tristate "W83877F (EMACS) Watchdog Timer"
  679. depends on X86
  680. ---help---
  681. This is the driver for the hardware watchdog on the W83877F chipset
  682. as used in EMACS PC-104 motherboards (and likely others). This
  683. watchdog simply watches your kernel to make sure it doesn't freeze,
  684. and if it does, it reboots your computer after a certain amount of
  685. time.
  686. To compile this driver as a module, choose M here: the
  687. module will be called w83877f_wdt.
  688. Most people will say N.
  689. config W83977F_WDT
  690. tristate "W83977F (PCM-5335) Watchdog Timer"
  691. depends on X86
  692. ---help---
  693. This is the driver for the hardware watchdog on the W83977F I/O chip
  694. as used in AAEON's PCM-5335 SBC (and likely others). This
  695. watchdog simply watches your kernel to make sure it doesn't freeze,
  696. and if it does, it reboots your computer after a certain amount of
  697. time.
  698. To compile this driver as a module, choose M here: the
  699. module will be called w83977f_wdt.
  700. config MACHZ_WDT
  701. tristate "ZF MachZ Watchdog"
  702. depends on X86
  703. ---help---
  704. If you are using a ZF Micro MachZ processor, say Y here, otherwise
  705. N. This is the driver for the watchdog timer built-in on that
  706. processor using ZF-Logic interface. This watchdog simply watches
  707. your kernel to make sure it doesn't freeze, and if it does, it
  708. reboots your computer after a certain amount of time.
  709. To compile this driver as a module, choose M here: the
  710. module will be called machzwd.
  711. config SBC_EPX_C3_WATCHDOG
  712. tristate "Winsystems SBC EPX-C3 watchdog"
  713. depends on X86
  714. ---help---
  715. This is the driver for the built-in watchdog timer on the EPX-C3
  716. Single-board computer made by Winsystems, Inc.
  717. *Note*: This hardware watchdog is not probeable and thus there
  718. is no way to know if writing to its IO address will corrupt
  719. your system or have any real effect. The only way to be sure
  720. that this driver does what you want is to make sure you
  721. are running it on an EPX-C3 from Winsystems with the watchdog
  722. timer at IO address 0x1ee and 0x1ef. It will write to both those
  723. IO ports. Basically, the assumption is made that if you compile
  724. this driver into your kernel and/or load it as a module, that you
  725. know what you are doing and that you are in fact running on an
  726. EPX-C3 board!
  727. To compile this driver as a module, choose M here: the
  728. module will be called sbc_epx_c3.
  729. # M32R Architecture
  730. # M68K Architecture
  731. config M54xx_WATCHDOG
  732. tristate "MCF54xx watchdog support"
  733. depends on M548x
  734. help
  735. To compile this driver as a module, choose M here: the
  736. module will be called m54xx_wdt.
  737. # MicroBlaze Architecture
  738. config XILINX_WATCHDOG
  739. tristate "Xilinx Watchdog timer"
  740. depends on MICROBLAZE
  741. ---help---
  742. Watchdog driver for the xps_timebase_wdt ip core.
  743. IMPORTANT: The xps_timebase_wdt parent must have the property
  744. "clock-frequency" at device tree.
  745. To compile this driver as a module, choose M here: the
  746. module will be called of_xilinx_wdt.
  747. # MIPS Architecture
  748. config ATH79_WDT
  749. tristate "Atheros AR71XX/AR724X/AR913X hardware watchdog"
  750. depends on ATH79
  751. help
  752. Hardware driver for the built-in watchdog timer on the Atheros
  753. AR71XX/AR724X/AR913X SoCs.
  754. config BCM47XX_WDT
  755. tristate "Broadcom BCM47xx Watchdog Timer"
  756. depends on BCM47XX
  757. help
  758. Hardware driver for the Broadcom BCM47xx Watchog Timer.
  759. config RC32434_WDT
  760. tristate "IDT RC32434 SoC Watchdog Timer"
  761. depends on MIKROTIK_RB532
  762. help
  763. Hardware driver for the IDT RC32434 SoC built-in
  764. watchdog timer.
  765. To compile this driver as a module, choose M here: the
  766. module will be called rc32434_wdt.
  767. config INDYDOG
  768. tristate "Indy/I2 Hardware Watchdog"
  769. depends on SGI_HAS_INDYDOG
  770. help
  771. Hardware driver for the Indy's/I2's watchdog. This is a
  772. watchdog timer that will reboot the machine after a 60 second
  773. timer expired and no process has written to /dev/watchdog during
  774. that time.
  775. config JZ4740_WDT
  776. tristate "Ingenic jz4740 SoC hardware watchdog"
  777. depends on MACH_JZ4740
  778. select WATCHDOG_CORE
  779. help
  780. Hardware driver for the built-in watchdog timer on Ingenic jz4740 SoCs.
  781. config WDT_MTX1
  782. tristate "MTX-1 Hardware Watchdog"
  783. depends on MIPS_MTX1
  784. help
  785. Hardware driver for the MTX-1 boards. This is a watchdog timer that
  786. will reboot the machine after a 100 seconds timer expired.
  787. config PNX833X_WDT
  788. tristate "PNX833x Hardware Watchdog"
  789. depends on SOC_PNX8335
  790. help
  791. Hardware driver for the PNX833x's watchdog. This is a
  792. watchdog timer that will reboot the machine after a programmable
  793. timer has expired and no process has written to /dev/watchdog during
  794. that time.
  795. config SIBYTE_WDOG
  796. tristate "Sibyte SoC hardware watchdog"
  797. depends on CPU_SB1
  798. help
  799. Watchdog driver for the built in watchdog hardware in Sibyte
  800. SoC processors. There are apparently two watchdog timers
  801. on such processors; this driver supports only the first one,
  802. because currently Linux only supports exporting one watchdog
  803. to userspace.
  804. To compile this driver as a loadable module, choose M here.
  805. The module will be called sb_wdog.
  806. config AR7_WDT
  807. tristate "TI AR7 Watchdog Timer"
  808. depends on AR7
  809. help
  810. Hardware driver for the TI AR7 Watchdog Timer.
  811. config TXX9_WDT
  812. tristate "Toshiba TXx9 Watchdog Timer"
  813. depends on CPU_TX39XX || CPU_TX49XX
  814. help
  815. Hardware driver for the built-in watchdog timer on TXx9 MIPS SoCs.
  816. config OCTEON_WDT
  817. tristate "Cavium OCTEON SOC family Watchdog Timer"
  818. depends on CPU_CAVIUM_OCTEON
  819. default y
  820. select EXPORT_UASM if OCTEON_WDT = m
  821. help
  822. Hardware driver for OCTEON's on chip watchdog timer.
  823. Enables the watchdog for all cores running Linux. It
  824. installs a NMI handler and pokes the watchdog based on an
  825. interrupt. On first expiration of the watchdog, the
  826. interrupt handler pokes it. The second expiration causes an
  827. NMI that prints a message. The third expiration causes a
  828. global soft reset.
  829. When userspace has /dev/watchdog open, no poking is done
  830. from the first interrupt, it is then only poked when the
  831. device is written.
  832. config BCM63XX_WDT
  833. tristate "Broadcom BCM63xx hardware watchdog"
  834. depends on BCM63XX
  835. help
  836. Watchdog driver for the built in watchdog hardware in Broadcom
  837. BCM63xx SoC.
  838. To compile this driver as a loadable module, choose M here.
  839. The module will be called bcm63xx_wdt.
  840. config LANTIQ_WDT
  841. tristate "Lantiq SoC watchdog"
  842. depends on LANTIQ
  843. help
  844. Hardware driver for the Lantiq SoC Watchdog Timer.
  845. # PARISC Architecture
  846. # POWERPC Architecture
  847. config GEF_WDT
  848. tristate "GE Watchdog Timer"
  849. depends on GE_FPGA
  850. ---help---
  851. Watchdog timer found in a number of GE single board computers.
  852. config MPC5200_WDT
  853. bool "MPC52xx Watchdog Timer"
  854. depends on PPC_MPC52xx
  855. help
  856. Use General Purpose Timer (GPT) 0 on the MPC5200 as Watchdog.
  857. config 8xxx_WDT
  858. tristate "MPC8xxx Platform Watchdog Timer"
  859. depends on PPC_8xx || PPC_83xx || PPC_86xx
  860. help
  861. This driver is for a SoC level watchdog that exists on some
  862. Freescale PowerPC processors. So far this driver supports:
  863. - MPC8xx watchdogs
  864. - MPC83xx watchdogs
  865. - MPC86xx watchdogs
  866. For BookE processors (MPC85xx) use the BOOKE_WDT driver instead.
  867. config MV64X60_WDT
  868. tristate "MV64X60 (Marvell Discovery) Watchdog Timer"
  869. depends on MV64X60
  870. config PIKA_WDT
  871. tristate "PIKA FPGA Watchdog"
  872. depends on WARP
  873. default y
  874. help
  875. This enables the watchdog in the PIKA FPGA. Currently used on
  876. the Warp platform.
  877. config BOOKE_WDT
  878. tristate "PowerPC Book-E Watchdog Timer"
  879. depends on BOOKE || 4xx
  880. ---help---
  881. Watchdog driver for PowerPC Book-E chips, such as the Freescale
  882. MPC85xx SOCs and the IBM PowerPC 440.
  883. Please see Documentation/watchdog/watchdog-api.txt for
  884. more information.
  885. config BOOKE_WDT_DEFAULT_TIMEOUT
  886. int "PowerPC Book-E Watchdog Timer Default Timeout"
  887. depends on BOOKE_WDT
  888. default 38 if FSL_BOOKE
  889. range 0 63 if FSL_BOOKE
  890. default 3 if !FSL_BOOKE
  891. range 0 3 if !FSL_BOOKE
  892. help
  893. Select the default watchdog timer period to be used by the PowerPC
  894. Book-E watchdog driver. A watchdog "event" occurs when the bit
  895. position represented by this number transitions from zero to one.
  896. For Freescale Book-E processors, this is a number between 0 and 63.
  897. For other Book-E processors, this is a number between 0 and 3.
  898. The value can be overridden by the wdt_period command-line parameter.
  899. # PPC64 Architecture
  900. config WATCHDOG_RTAS
  901. tristate "RTAS watchdog"
  902. depends on PPC_RTAS
  903. help
  904. This driver adds watchdog support for the RTAS watchdog.
  905. To compile this driver as a module, choose M here. The module
  906. will be called wdrtas.
  907. # S390 Architecture
  908. config ZVM_WATCHDOG
  909. tristate "z/VM Watchdog Timer"
  910. depends on S390
  911. help
  912. IBM s/390 and zSeries machines running under z/VM 5.1 or later
  913. provide a virtual watchdog timer to their guest that cause a
  914. user define Control Program command to be executed after a
  915. timeout.
  916. To compile this driver as a module, choose M here. The module
  917. will be called vmwatchdog.
  918. # SUPERH (sh + sh64) Architecture
  919. config SH_WDT
  920. tristate "SuperH Watchdog"
  921. depends on SUPERH && (CPU_SH3 || CPU_SH4)
  922. help
  923. This driver adds watchdog support for the integrated watchdog in the
  924. SuperH processors. If you have one of these processors and wish
  925. to have watchdog support enabled, say Y, otherwise say N.
  926. As a side note, saying Y here will automatically boost HZ to 1000
  927. so that the timer has a chance to clear the overflow counter. On
  928. slower systems (such as the SH-2 and SH-3) this will likely yield
  929. some performance issues. As such, the WDT should be avoided here
  930. unless it is absolutely necessary.
  931. To compile this driver as a module, choose M here: the
  932. module will be called shwdt.
  933. # SPARC Architecture
  934. # SPARC64 Architecture
  935. config WATCHDOG_CP1XXX
  936. tristate "CP1XXX Hardware Watchdog support"
  937. depends on SPARC64 && PCI
  938. ---help---
  939. This is the driver for the hardware watchdog timers present on
  940. Sun Microsystems CompactPCI models CP1400 and CP1500.
  941. To compile this driver as a module, choose M here: the
  942. module will be called cpwatchdog.
  943. If you do not have a CompactPCI model CP1400 or CP1500, or
  944. another UltraSPARC-IIi-cEngine boardset with hardware watchdog,
  945. you should say N to this option.
  946. config WATCHDOG_RIO
  947. tristate "RIO Hardware Watchdog support"
  948. depends on SPARC64 && PCI
  949. help
  950. Say Y here to support the hardware watchdog capability on Sun RIO
  951. machines. The watchdog timeout period is normally one minute but
  952. can be changed with a boot-time parameter.
  953. # XTENSA Architecture
  954. # Xen Architecture
  955. config XEN_WDT
  956. tristate "Xen Watchdog support"
  957. depends on XEN
  958. help
  959. Say Y here to support the hypervisor watchdog capability provided
  960. by Xen 4.0 and newer. The watchdog timeout period is normally one
  961. minute but can be changed with a boot-time parameter.
  962. config UML_WATCHDOG
  963. tristate "UML watchdog"
  964. depends on UML
  965. #
  966. # ISA-based Watchdog Cards
  967. #
  968. comment "ISA-based Watchdog Cards"
  969. depends on ISA
  970. config PCWATCHDOG
  971. tristate "Berkshire Products ISA-PC Watchdog"
  972. depends on ISA
  973. ---help---
  974. This is the driver for the Berkshire Products ISA-PC Watchdog card.
  975. This card simply watches your kernel to make sure it doesn't freeze,
  976. and if it does, it reboots your computer after a certain amount of
  977. time. This driver is like the WDT501 driver but for different
  978. hardware. Please read <file:Documentation/watchdog/pcwd-watchdog.txt>. The PC
  979. watchdog cards can be ordered from <http://www.berkprod.com/>.
  980. To compile this driver as a module, choose M here: the
  981. module will be called pcwd.
  982. Most people will say N.
  983. config MIXCOMWD
  984. tristate "Mixcom Watchdog"
  985. depends on ISA
  986. ---help---
  987. This is a driver for the Mixcom hardware watchdog cards. This
  988. watchdog simply watches your kernel to make sure it doesn't freeze,
  989. and if it does, it reboots your computer after a certain amount of
  990. time.
  991. To compile this driver as a module, choose M here: the
  992. module will be called mixcomwd.
  993. Most people will say N.
  994. config WDT
  995. tristate "WDT Watchdog timer"
  996. depends on ISA
  997. ---help---
  998. If you have a WDT500P or WDT501P watchdog board, say Y here,
  999. otherwise N. It is not possible to probe for this board, which means
  1000. that you have to inform the kernel about the IO port and IRQ that
  1001. is needed (you can do this via the io and irq parameters)
  1002. To compile this driver as a module, choose M here: the
  1003. module will be called wdt.
  1004. #
  1005. # PCI-based Watchdog Cards
  1006. #
  1007. comment "PCI-based Watchdog Cards"
  1008. depends on PCI
  1009. config PCIPCWATCHDOG
  1010. tristate "Berkshire Products PCI-PC Watchdog"
  1011. depends on PCI
  1012. ---help---
  1013. This is the driver for the Berkshire Products PCI-PC Watchdog card.
  1014. This card simply watches your kernel to make sure it doesn't freeze,
  1015. and if it does, it reboots your computer after a certain amount of
  1016. time. The card can also monitor the internal temperature of the PC.
  1017. More info is available at <http://www.berkprod.com/pci_pc_watchdog.htm>.
  1018. To compile this driver as a module, choose M here: the
  1019. module will be called pcwd_pci.
  1020. Most people will say N.
  1021. config WDTPCI
  1022. tristate "PCI-WDT500/501 Watchdog timer"
  1023. depends on PCI
  1024. ---help---
  1025. If you have a PCI-WDT500/501 watchdog board, say Y here, otherwise N.
  1026. If you have a PCI-WDT501 watchdog board then you can enable the
  1027. temperature sensor by setting the type parameter to 501.
  1028. If you want to enable the Fan Tachometer on the PCI-WDT501, then you
  1029. can do this via the tachometer parameter. Only do this if you have a
  1030. fan tachometer actually set up.
  1031. To compile this driver as a module, choose M here: the
  1032. module will be called wdt_pci.
  1033. #
  1034. # USB-based Watchdog Cards
  1035. #
  1036. comment "USB-based Watchdog Cards"
  1037. depends on USB
  1038. config USBPCWATCHDOG
  1039. tristate "Berkshire Products USB-PC Watchdog"
  1040. depends on USB
  1041. ---help---
  1042. This is the driver for the Berkshire Products USB-PC Watchdog card.
  1043. This card simply watches your kernel to make sure it doesn't freeze,
  1044. and if it does, it reboots your computer after a certain amount of
  1045. time. The card can also monitor the internal temperature of the PC.
  1046. More info is available at <http://www.berkprod.com/usb_pc_watchdog.htm>.
  1047. To compile this driver as a module, choose M here: the
  1048. module will be called pcwd_usb.
  1049. Most people will say N.
  1050. endif # WATCHDOG