Kconfig 42 KB

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