Kconfig 42 KB

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