Kconfig 42 KB

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