Kconfig 41 KB

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