Kconfig 42 KB

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