Kconfig 41 KB

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