Kconfig 41 KB

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