Kconfig 43 KB

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