Kconfig 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914
  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_NOWAYOUT
  27. bool "Disable watchdog shutdown on close"
  28. help
  29. The default watchdog behaviour (which you get if you say N here) is
  30. to stop the timer if the process managing it closes the file
  31. /dev/watchdog. It's always remotely possible that this process might
  32. get killed. If you say Y here, the watchdog cannot be stopped once
  33. it has been started.
  34. #
  35. # General Watchdog drivers
  36. #
  37. comment "Watchdog Device Drivers"
  38. # Architecture Independent
  39. config SOFT_WATCHDOG
  40. tristate "Software watchdog"
  41. help
  42. A software monitoring watchdog. This will fail to reboot your system
  43. from some situations that the hardware watchdog will recover
  44. from. Equally it's a lot cheaper to install.
  45. To compile this driver as a module, choose M here: the
  46. module will be called softdog.
  47. # ALPHA Architecture
  48. # ARM Architecture
  49. config AT91RM9200_WATCHDOG
  50. tristate "AT91RM9200 watchdog"
  51. depends on ARCH_AT91RM9200
  52. help
  53. Watchdog timer embedded into AT91RM9200 chips. This will reboot your
  54. system when the timeout is reached.
  55. config 21285_WATCHDOG
  56. tristate "DC21285 watchdog"
  57. depends on FOOTBRIDGE
  58. help
  59. The Intel Footbridge chip contains a built-in watchdog circuit. Say Y
  60. here if you wish to use this. Alternatively say M to compile the
  61. driver as a module, which will be called wdt285.
  62. This driver does not work on all machines. In particular, early CATS
  63. boards have hardware problems that will cause the machine to simply
  64. lock up if the watchdog fires.
  65. "If in doubt, leave it out" - say N.
  66. config 977_WATCHDOG
  67. tristate "NetWinder WB83C977 watchdog"
  68. depends on FOOTBRIDGE && ARCH_NETWINDER
  69. help
  70. Say Y here to include support for the WB977 watchdog included in
  71. NetWinder machines. Alternatively say M to compile the driver as
  72. a module, which will be called wdt977.
  73. Not sure? It's safe to say N.
  74. config IXP2000_WATCHDOG
  75. tristate "IXP2000 Watchdog"
  76. depends on ARCH_IXP2000
  77. help
  78. Say Y here if to include support for the watchdog timer
  79. in the Intel IXP2000(2400, 2800, 2850) network processors.
  80. This driver can be built as a module by choosing M. The module
  81. will be called ixp2000_wdt.
  82. Say N if you are unsure.
  83. config IXP4XX_WATCHDOG
  84. tristate "IXP4xx Watchdog"
  85. depends on ARCH_IXP4XX
  86. help
  87. Say Y here if to include support for the watchdog timer
  88. in the Intel IXP4xx network processors. This driver can
  89. be built as a module by choosing M. The module will
  90. be called ixp4xx_wdt.
  91. Note: The internal IXP4xx watchdog does a soft CPU reset
  92. which doesn't reset any peripherals. There are circumstances
  93. where the watchdog will fail to reset the board correctly
  94. (e.g., if the boot ROM is in an unreadable state).
  95. Say N if you are unsure.
  96. config KS8695_WATCHDOG
  97. tristate "KS8695 watchdog"
  98. depends on ARCH_KS8695
  99. help
  100. Watchdog timer embedded into KS8695 processor. This will reboot your
  101. system when the timeout is reached.
  102. config S3C2410_WATCHDOG
  103. tristate "S3C2410 Watchdog"
  104. depends on ARCH_S3C2410
  105. help
  106. Watchdog timer block in the Samsung S3C2410 chips. This will
  107. reboot the system when the timer expires with the watchdog
  108. enabled.
  109. The driver is limited by the speed of the system's PCLK
  110. signal, so with reasonably fast systems (PCLK around 50-66MHz)
  111. then watchdog intervals of over approximately 20seconds are
  112. unavailable.
  113. The driver can be built as a module by choosing M, and will
  114. be called s3c2410_wdt
  115. config SA1100_WATCHDOG
  116. tristate "SA1100/PXA2xx watchdog"
  117. depends on ARCH_SA1100 || ARCH_PXA
  118. help
  119. Watchdog timer embedded into SA11x0 and PXA2xx chips. This will
  120. reboot your system when timeout is reached.
  121. NOTE: once enabled, this timer cannot be disabled.
  122. To compile this driver as a module, choose M here: the
  123. module will be called sa1100_wdt.
  124. config MPCORE_WATCHDOG
  125. tristate "MPcore watchdog"
  126. depends on ARM_MPCORE_PLATFORM && LOCAL_TIMERS
  127. help
  128. Watchdog timer embedded into the MPcore system.
  129. To compile this driver as a module, choose M here: the
  130. module will be called mpcore_wdt.
  131. config EP93XX_WATCHDOG
  132. tristate "EP93xx Watchdog"
  133. depends on ARCH_EP93XX
  134. help
  135. Say Y here if to include support for the watchdog timer
  136. embedded in the Cirrus Logic EP93xx family of devices.
  137. To compile this driver as a module, choose M here: the
  138. module will be called ep93xx_wdt.
  139. config OMAP_WATCHDOG
  140. tristate "OMAP Watchdog"
  141. depends on ARCH_OMAP16XX || ARCH_OMAP24XX
  142. help
  143. Support for TI OMAP1610/OMAP1710/OMAP2420 watchdog. Say 'Y' here to
  144. enable the OMAP1610/OMAP1710 watchdog timer.
  145. config PNX4008_WATCHDOG
  146. tristate "PNX4008 Watchdog"
  147. depends on ARCH_PNX4008
  148. help
  149. Say Y here if to include support for the watchdog timer
  150. in the PNX4008 processor.
  151. This driver can be built as a module by choosing M. The module
  152. will be called pnx4008_wdt.
  153. Say N if you are unsure.
  154. config IOP_WATCHDOG
  155. tristate "IOP Watchdog"
  156. depends on PLAT_IOP
  157. select WATCHDOG_NOWAYOUT if (ARCH_IOP32X || ARCH_IOP33X)
  158. help
  159. Say Y here if to include support for the watchdog timer
  160. in the Intel IOP3XX & IOP13XX I/O Processors. This driver can
  161. be built as a module by choosing M. The module will
  162. be called iop_wdt.
  163. Note: The IOP13XX watchdog does an Internal Bus Reset which will
  164. affect both cores and the peripherals of the IOP. The ATU-X
  165. and/or ATUe configuration registers will remain intact, but if
  166. operating as an Root Complex and/or Central Resource, the PCI-X
  167. and/or PCIe busses will also be reset. THIS IS A VERY BIG HAMMER.
  168. config DAVINCI_WATCHDOG
  169. tristate "DaVinci watchdog"
  170. depends on ARCH_DAVINCI
  171. help
  172. Say Y here if to include support for the watchdog timer
  173. in the DaVinci DM644x/DM646x processors.
  174. To compile this driver as a module, choose M here: the
  175. module will be called davinci_wdt.
  176. NOTE: once enabled, this timer cannot be disabled.
  177. Say N if you are unsure.
  178. # ARM26 Architecture
  179. # AVR32 Architecture
  180. config AT32AP700X_WDT
  181. tristate "AT32AP700x watchdog"
  182. depends on CPU_AT32AP700X
  183. help
  184. Watchdog timer embedded into AT32AP700x devices. This will reboot
  185. your system when the timeout is reached.
  186. # BLACKFIN Architecture
  187. config BFIN_WDT
  188. tristate "Blackfin On-Chip Watchdog Timer"
  189. depends on BLACKFIN
  190. ---help---
  191. If you say yes here you will get support for the Blackfin On-Chip
  192. Watchdog Timer. If you have one of these processors and wish to
  193. have watchdog support enabled, say Y, otherwise say N.
  194. To compile this driver as a module, choose M here: the
  195. module will be called bfin_wdt.
  196. # CRIS Architecture
  197. # FRV Architecture
  198. # H8300 Architecture
  199. # X86 (i386 + ia64 + x86_64) Architecture
  200. config ACQUIRE_WDT
  201. tristate "Acquire SBC Watchdog Timer"
  202. depends on X86
  203. ---help---
  204. This is the driver for the hardware watchdog on Single Board
  205. Computers produced by Acquire Inc (and others). This watchdog
  206. simply watches your kernel to make sure it doesn't freeze, and if
  207. it does, it reboots your computer after a certain amount of time.
  208. To compile this driver as a module, choose M here: the
  209. module will be called acquirewdt.
  210. Most people will say N.
  211. config ADVANTECH_WDT
  212. tristate "Advantech SBC Watchdog Timer"
  213. depends on X86
  214. help
  215. If you are configuring a Linux kernel for the Advantech single-board
  216. computer, say `Y' here to support its built-in watchdog timer
  217. feature. More information can be found at
  218. <http://www.advantech.com.tw/products/>
  219. config ALIM1535_WDT
  220. tristate "ALi M1535 PMU Watchdog Timer"
  221. depends on X86 && PCI
  222. ---help---
  223. This is the driver for the hardware watchdog on the ALi M1535 PMU.
  224. To compile this driver as a module, choose M here: the
  225. module will be called alim1535_wdt.
  226. Most people will say N.
  227. config ALIM7101_WDT
  228. tristate "ALi M7101 PMU Computer Watchdog"
  229. depends on X86 && PCI
  230. help
  231. This is the driver for the hardware watchdog on the ALi M7101 PMU
  232. as used in the x86 Cobalt servers.
  233. To compile this driver as a module, choose M here: the
  234. module will be called alim7101_wdt.
  235. Most people will say N.
  236. config SC520_WDT
  237. tristate "AMD Elan SC520 processor Watchdog"
  238. depends on X86
  239. help
  240. This is the driver for the hardware watchdog built in to the
  241. AMD "Elan" SC520 microcomputer commonly used in embedded systems.
  242. This watchdog simply watches your kernel to make sure it doesn't
  243. freeze, and if it does, it reboots your computer after a certain
  244. amount of time.
  245. You can compile this driver directly into the kernel, or use
  246. it as a module. The module will be called sc520_wdt.
  247. config EUROTECH_WDT
  248. tristate "Eurotech CPU-1220/1410 Watchdog Timer"
  249. depends on X86
  250. help
  251. Enable support for the watchdog timer on the Eurotech CPU-1220 and
  252. CPU-1410 cards. These are PC/104 SBCs. Spec sheets and product
  253. information are at <http://www.eurotech.it/>.
  254. config IB700_WDT
  255. tristate "IB700 SBC Watchdog Timer"
  256. depends on X86
  257. ---help---
  258. This is the driver for the hardware watchdog on the IB700 Single
  259. Board Computer produced by TMC Technology (www.tmc-uk.com). This watchdog
  260. simply watches your kernel to make sure it doesn't freeze, and if
  261. it does, it reboots your computer after a certain amount of time.
  262. This driver is like the WDT501 driver but for slightly different hardware.
  263. To compile this driver as a module, choose M here: the
  264. module will be called ib700wdt.
  265. Most people will say N.
  266. config IBMASR
  267. tristate "IBM Automatic Server Restart"
  268. depends on X86
  269. help
  270. This is the driver for the IBM Automatic Server Restart watchdog
  271. timer built-in into some eServer xSeries machines.
  272. To compile this driver as a module, choose M here: the
  273. module will be called ibmasr.
  274. config WAFER_WDT
  275. tristate "ICP Single Board Computer Watchdog Timer"
  276. depends on X86
  277. help
  278. This is a driver for the hardware watchdog on the ICP Single
  279. Board Computer. This driver is working on (at least) the following
  280. IPC SBC's: Wafer 5823, Rocky 4783, Rocky 3703 and Rocky 3782.
  281. To compile this driver as a module, choose M here: the
  282. module will be called wafer5823wdt.
  283. config I6300ESB_WDT
  284. tristate "Intel 6300ESB Timer/Watchdog"
  285. depends on X86 && PCI
  286. ---help---
  287. Hardware driver for the watchdog timer built into the Intel
  288. 6300ESB controller hub.
  289. To compile this driver as a module, choose M here: the
  290. module will be called i6300esb.
  291. config ITCO_WDT
  292. tristate "Intel TCO Timer/Watchdog"
  293. depends on (X86 || IA64) && PCI
  294. ---help---
  295. Hardware driver for the intel TCO timer based watchdog devices.
  296. These drivers are included in the Intel 82801 I/O Controller
  297. Hub family (from ICH0 up to ICH8) and in the Intel 6300ESB
  298. controller hub.
  299. The TCO (Total Cost of Ownership) timer is a watchdog timer
  300. that will reboot the machine after its second expiration. The
  301. expiration time can be configured with the "heartbeat" parameter.
  302. On some motherboards the driver may fail to reset the chipset's
  303. NO_REBOOT flag which prevents the watchdog from rebooting the
  304. machine. If this is the case you will get a kernel message like
  305. "failed to reset NO_REBOOT flag, reboot disabled by hardware".
  306. To compile this driver as a module, choose M here: the
  307. module will be called iTCO_wdt.
  308. config ITCO_VENDOR_SUPPORT
  309. bool "Intel TCO Timer/Watchdog Specific Vendor Support"
  310. depends on ITCO_WDT
  311. ---help---
  312. Add vendor specific support to the intel TCO timer based watchdog
  313. devices. At this moment we only have additional support for some
  314. SuperMicro Inc. motherboards.
  315. config IT8712F_WDT
  316. tristate "IT8712F (Smart Guardian) Watchdog Timer"
  317. depends on X86
  318. ---help---
  319. This is the driver for the built-in watchdog timer on the IT8712F
  320. Super I/0 chipset used on many motherboards.
  321. To compile this driver as a module, choose M here: the
  322. module will be called it8712f_wdt.
  323. config HP_WATCHDOG
  324. tristate "HP Proliant iLO 2 Hardware Watchdog Timer"
  325. depends on X86
  326. help
  327. A software monitoring watchdog and NMI sourcing driver. This driver
  328. will detect lockups and provide stack trace. Also, when an NMI
  329. occurs this driver will make the necessary BIOS calls to log
  330. the cause of the NMI. This is a driver that will only load on a
  331. HP ProLiant system with a minimum of iLO2 support.
  332. To compile this driver as a module, choose M here: the
  333. module will be called hpwdt.
  334. config SC1200_WDT
  335. tristate "National Semiconductor PC87307/PC97307 (ala SC1200) Watchdog"
  336. depends on X86
  337. help
  338. This is a driver for National Semiconductor PC87307/PC97307 hardware
  339. watchdog cards as found on the SC1200. This watchdog is mainly used
  340. for power management purposes and can be used to power down the device
  341. during inactivity periods (includes interrupt activity monitoring).
  342. To compile this driver as a module, choose M here: the
  343. module will be called sc1200wdt.
  344. Most people will say N.
  345. config SCx200_WDT
  346. tristate "National Semiconductor SCx200 Watchdog"
  347. depends on SCx200 && PCI
  348. help
  349. Enable the built-in watchdog timer support on the National
  350. Semiconductor SCx200 processors.
  351. If compiled as a module, it will be called scx200_wdt.
  352. config PC87413_WDT
  353. tristate "NS PC87413 watchdog"
  354. depends on X86
  355. ---help---
  356. This is the driver for the hardware watchdog on the PC87413 chipset
  357. This watchdog simply watches your kernel to make sure it doesn't
  358. freeze, and if it does, it reboots your computer after a certain
  359. amount of time.
  360. To compile this driver as a module, choose M here: the
  361. module will be called pc87413_wdt.
  362. Most people will say N.
  363. config 60XX_WDT
  364. tristate "SBC-60XX Watchdog Timer"
  365. depends on X86
  366. help
  367. This driver can be used with the watchdog timer found on some
  368. single board computers, namely the 6010 PII based computer.
  369. It may well work with other cards. It reads port 0x443 to enable
  370. and re-set the watchdog timer, and reads port 0x45 to disable
  371. the watchdog. If you have a card that behave in similar ways,
  372. you can probably make this driver work with your card as well.
  373. You can compile this driver directly into the kernel, or use
  374. it as a module. The module will be called sbc60xxwdt.
  375. config SBC8360_WDT
  376. tristate "SBC8360 Watchdog Timer"
  377. depends on X86
  378. ---help---
  379. This is the driver for the hardware watchdog on the SBC8360 Single
  380. Board Computer produced by Axiomtek Co., Ltd. (www.axiomtek.com).
  381. To compile this driver as a module, choose M here: the
  382. module will be called sbc8360.ko.
  383. Most people will say N.
  384. config SBC7240_WDT
  385. tristate "SBC Nano 7240 Watchdog Timer"
  386. depends on X86_32
  387. ---help---
  388. This is the driver for the hardware watchdog found on the IEI
  389. single board computers EPIC Nano 7240 (and likely others). This
  390. watchdog simply watches your kernel to make sure it doesn't freeze,
  391. and if it does, it reboots your computer after a certain amount of
  392. time.
  393. To compile this driver as a module, choose M here: the
  394. module will be called sbc7240_wdt.
  395. config CPU5_WDT
  396. tristate "SMA CPU5 Watchdog"
  397. depends on X86
  398. ---help---
  399. TBD.
  400. To compile this driver as a module, choose M here: the
  401. module will be called cpu5wdt.
  402. config SMSC37B787_WDT
  403. tristate "Winbond SMsC37B787 Watchdog Timer"
  404. depends on X86
  405. ---help---
  406. This is the driver for the hardware watchdog component on the
  407. Winbond SMsC37B787 chipset as used on the NetRunner Mainboard
  408. from Vision Systems and maybe others.
  409. This watchdog simply watches your kernel to make sure it doesn't
  410. freeze, and if it does, it reboots your computer after a certain
  411. amount of time.
  412. Usually a userspace daemon will notify the kernel WDT driver that
  413. userspace is still alive, at regular intervals.
  414. To compile this driver as a module, choose M here: the
  415. module will be called smsc37b787_wdt.
  416. Most people will say N.
  417. config W83627HF_WDT
  418. tristate "W83627HF Watchdog Timer"
  419. depends on X86
  420. ---help---
  421. This is the driver for the hardware watchdog on the W83627HF chipset
  422. as used in Advantech PC-9578 and Tyan S2721-533 motherboards
  423. (and likely others). This watchdog simply watches your kernel to
  424. make sure it doesn't freeze, and if it does, it reboots your computer
  425. after a certain amount of time.
  426. To compile this driver as a module, choose M here: the
  427. module will be called w83627hf_wdt.
  428. Most people will say N.
  429. config W83697HF_WDT
  430. tristate "W83697HF/W83697HG Watchdog Timer"
  431. depends on X86
  432. ---help---
  433. This is the driver for the hardware watchdog on the W83697HF/HG
  434. chipset as used in Dedibox/VIA motherboards (and likely others).
  435. This watchdog simply watches your kernel to make sure it doesn't
  436. freeze, and if it does, it reboots your computer after a certain
  437. amount of time.
  438. To compile this driver as a module, choose M here: the
  439. module will be called w83697hf_wdt.
  440. Most people will say N.
  441. config W83877F_WDT
  442. tristate "W83877F (EMACS) Watchdog Timer"
  443. depends on X86
  444. ---help---
  445. This is the driver for the hardware watchdog on the W83877F chipset
  446. as used in EMACS PC-104 motherboards (and likely others). This
  447. watchdog simply watches your kernel to make sure it doesn't freeze,
  448. and if it does, it reboots your computer after a certain amount of
  449. time.
  450. To compile this driver as a module, choose M here: the
  451. module will be called w83877f_wdt.
  452. Most people will say N.
  453. config W83977F_WDT
  454. tristate "W83977F (PCM-5335) Watchdog Timer"
  455. depends on X86
  456. ---help---
  457. This is the driver for the hardware watchdog on the W83977F I/O chip
  458. as used in AAEON's PCM-5335 SBC (and likely others). This
  459. watchdog simply watches your kernel to make sure it doesn't freeze,
  460. and if it does, it reboots your computer after a certain amount of
  461. time.
  462. To compile this driver as a module, choose M here: the
  463. module will be called w83977f_wdt.
  464. config MACHZ_WDT
  465. tristate "ZF MachZ Watchdog"
  466. depends on X86
  467. ---help---
  468. If you are using a ZF Micro MachZ processor, say Y here, otherwise
  469. N. This is the driver for the watchdog timer built-in on that
  470. processor using ZF-Logic interface. This watchdog simply watches
  471. your kernel to make sure it doesn't freeze, and if it does, it
  472. reboots your computer after a certain amount of time.
  473. To compile this driver as a module, choose M here: the
  474. module will be called machzwd.
  475. config SBC_EPX_C3_WATCHDOG
  476. tristate "Winsystems SBC EPX-C3 watchdog"
  477. depends on X86
  478. ---help---
  479. This is the driver for the built-in watchdog timer on the EPX-C3
  480. Single-board computer made by Winsystems, Inc.
  481. *Note*: This hardware watchdog is not probeable and thus there
  482. is no way to know if writing to its IO address will corrupt
  483. your system or have any real effect. The only way to be sure
  484. that this driver does what you want is to make sure you
  485. are running it on an EPX-C3 from Winsystems with the watchdog
  486. timer at IO address 0x1ee and 0x1ef. It will write to both those
  487. IO ports. Basically, the assumption is made that if you compile
  488. this driver into your kernel and/or load it as a module, that you
  489. know what you are doing and that you are in fact running on an
  490. EPX-C3 board!
  491. To compile this driver as a module, choose M here: the
  492. module will be called sbc_epx_c3.
  493. # M32R Architecture
  494. # M68K Architecture
  495. # M68KNOMMU Architecture
  496. # MIPS Architecture
  497. config INDYDOG
  498. tristate "Indy/I2 Hardware Watchdog"
  499. depends on SGI_HAS_INDYDOG
  500. help
  501. Hardware driver for the Indy's/I2's watchdog. This is a
  502. watchdog timer that will reboot the machine after a 60 second
  503. timer expired and no process has written to /dev/watchdog during
  504. that time.
  505. config WDT_MTX1
  506. tristate "MTX-1 Hardware Watchdog"
  507. depends on MIPS_MTX1
  508. help
  509. Hardware driver for the MTX-1 boards. This is a watchdog timer that
  510. will reboot the machine after a 100 seconds timer expired.
  511. config WDT_RM9K_GPI
  512. tristate "RM9000/GPI hardware watchdog"
  513. depends on CPU_RM9000
  514. help
  515. Watchdog implementation using the GPI hardware found on
  516. PMC-Sierra RM9xxx CPUs.
  517. To compile this driver as a module, choose M here: the
  518. module will be called rm9k_wdt.
  519. config SIBYTE_WDOG
  520. tristate "Sibyte SoC hardware watchdog"
  521. depends on CPU_SB1
  522. help
  523. Watchdog driver for the built in watchdog hardware in Sibyte
  524. SoC processors. There are apparently two watchdog timers
  525. on such processors; this driver supports only the first one,
  526. because currently Linux only supports exporting one watchdog
  527. to userspace.
  528. To compile this driver as a loadable module, choose M here.
  529. The module will be called sb_wdog.
  530. config AR7_WDT
  531. tristate "TI AR7 Watchdog Timer"
  532. depends on AR7
  533. help
  534. Hardware driver for the TI AR7 Watchdog Timer.
  535. config TXX9_WDT
  536. tristate "Toshiba TXx9 Watchdog Timer"
  537. depends on CPU_TX39XX || CPU_TX49XX
  538. help
  539. Hardware driver for the built-in watchdog timer on TXx9 MIPS SoCs.
  540. # PARISC Architecture
  541. # POWERPC Architecture
  542. config MPC5200_WDT
  543. tristate "MPC5200 Watchdog Timer"
  544. depends on PPC_MPC52xx
  545. config 8xx_WDT
  546. tristate "MPC8xx Watchdog Timer"
  547. depends on 8xx
  548. config 83xx_WDT
  549. tristate "MPC83xx Watchdog Timer"
  550. depends on PPC_83xx
  551. config MV64X60_WDT
  552. tristate "MV64X60 (Marvell Discovery) Watchdog Timer"
  553. depends on MV64X60
  554. config BOOKE_WDT
  555. bool "PowerPC Book-E Watchdog Timer"
  556. depends on BOOKE || 4xx
  557. ---help---
  558. Please see Documentation/watchdog/watchdog-api.txt for
  559. more information.
  560. # PPC64 Architecture
  561. config WATCHDOG_RTAS
  562. tristate "RTAS watchdog"
  563. depends on PPC_RTAS
  564. help
  565. This driver adds watchdog support for the RTAS watchdog.
  566. To compile this driver as a module, choose M here. The module
  567. will be called wdrtas.
  568. # S390 Architecture
  569. config ZVM_WATCHDOG
  570. tristate "z/VM Watchdog Timer"
  571. depends on S390
  572. help
  573. IBM s/390 and zSeries machines running under z/VM 5.1 or later
  574. provide a virtual watchdog timer to their guest that cause a
  575. user define Control Program command to be executed after a
  576. timeout.
  577. To compile this driver as a module, choose M here. The module
  578. will be called vmwatchdog.
  579. # SUPERH (sh + sh64) Architecture
  580. config SH_WDT
  581. tristate "SuperH Watchdog"
  582. depends on SUPERH && (CPU_SH3 || CPU_SH4)
  583. help
  584. This driver adds watchdog support for the integrated watchdog in the
  585. SuperH processors. If you have one of these processors and wish
  586. to have watchdog support enabled, say Y, otherwise say N.
  587. As a side note, saying Y here will automatically boost HZ to 1000
  588. so that the timer has a chance to clear the overflow counter. On
  589. slower systems (such as the SH-2 and SH-3) this will likely yield
  590. some performance issues. As such, the WDT should be avoided here
  591. unless it is absolutely necessary.
  592. To compile this driver as a module, choose M here: the
  593. module will be called shwdt.
  594. config SH_WDT_MMAP
  595. bool "Allow mmap of SH WDT"
  596. default n
  597. depends on SH_WDT
  598. help
  599. If you say Y here, user applications will be able to mmap the
  600. WDT/CPG registers.
  601. # SPARC Architecture
  602. # SPARC64 Architecture
  603. config WATCHDOG_CP1XXX
  604. tristate "CP1XXX Hardware Watchdog support"
  605. depends on SPARC64 && PCI
  606. ---help---
  607. This is the driver for the hardware watchdog timers present on
  608. Sun Microsystems CompactPCI models CP1400 and CP1500.
  609. To compile this driver as a module, choose M here: the
  610. module will be called cpwatchdog.
  611. If you do not have a CompactPCI model CP1400 or CP1500, or
  612. another UltraSPARC-IIi-cEngine boardset with hardware watchdog,
  613. you should say N to this option.
  614. config WATCHDOG_RIO
  615. tristate "RIO Hardware Watchdog support"
  616. depends on SPARC64 && PCI
  617. help
  618. Say Y here to support the hardware watchdog capability on Sun RIO
  619. machines. The watchdog timeout period is normally one minute but
  620. can be changed with a boot-time parameter.
  621. # V850 Architecture
  622. # XTENSA Architecture
  623. #
  624. # ISA-based Watchdog Cards
  625. #
  626. comment "ISA-based Watchdog Cards"
  627. depends on ISA
  628. config PCWATCHDOG
  629. tristate "Berkshire Products ISA-PC Watchdog"
  630. depends on ISA
  631. ---help---
  632. This is the driver for the Berkshire Products ISA-PC Watchdog card.
  633. This card simply watches your kernel to make sure it doesn't freeze,
  634. and if it does, it reboots your computer after a certain amount of
  635. time. This driver is like the WDT501 driver but for different
  636. hardware. Please read <file:Documentation/watchdog/pcwd-watchdog.txt>. The PC
  637. watchdog cards can be ordered from <http://www.berkprod.com/>.
  638. To compile this driver as a module, choose M here: the
  639. module will be called pcwd.
  640. Most people will say N.
  641. config MIXCOMWD
  642. tristate "Mixcom Watchdog"
  643. depends on ISA
  644. ---help---
  645. This is a driver for the Mixcom hardware watchdog cards. This
  646. watchdog simply watches your kernel to make sure it doesn't freeze,
  647. and if it does, it reboots your computer after a certain amount of
  648. time.
  649. To compile this driver as a module, choose M here: the
  650. module will be called mixcomwd.
  651. Most people will say N.
  652. config WDT
  653. tristate "WDT Watchdog timer"
  654. depends on ISA
  655. ---help---
  656. If you have a WDT500P or WDT501P watchdog board, say Y here,
  657. otherwise N. It is not possible to probe for this board, which means
  658. that you have to inform the kernel about the IO port and IRQ that
  659. is needed (you can do this via the io and irq parameters)
  660. To compile this driver as a module, choose M here: the
  661. module will be called wdt.
  662. config WDT_501
  663. bool "WDT501 features"
  664. depends on WDT
  665. help
  666. Saying Y here and creating a character special file /dev/temperature
  667. with major number 10 and minor number 131 ("man mknod") will give
  668. you a thermometer inside your computer: reading from
  669. /dev/temperature yields one byte, the temperature in degrees
  670. Fahrenheit. This works only if you have a WDT501P watchdog board
  671. installed.
  672. If you want to enable the Fan Tachometer on the WDT501P, then you
  673. can do this via the tachometer parameter. Only do this if you have a
  674. fan tachometer actually set up.
  675. #
  676. # PCI-based Watchdog Cards
  677. #
  678. comment "PCI-based Watchdog Cards"
  679. depends on PCI
  680. config PCIPCWATCHDOG
  681. tristate "Berkshire Products PCI-PC Watchdog"
  682. depends on PCI
  683. ---help---
  684. This is the driver for the Berkshire Products PCI-PC Watchdog card.
  685. This card simply watches your kernel to make sure it doesn't freeze,
  686. and if it does, it reboots your computer after a certain amount of
  687. time. The card can also monitor the internal temperature of the PC.
  688. More info is available at <http://www.berkprod.com/pci_pc_watchdog.htm>.
  689. To compile this driver as a module, choose M here: the
  690. module will be called pcwd_pci.
  691. Most people will say N.
  692. config WDTPCI
  693. tristate "PCI-WDT500/501 Watchdog timer"
  694. depends on PCI
  695. ---help---
  696. If you have a PCI-WDT500/501 watchdog board, say Y here, otherwise N.
  697. To compile this driver as a module, choose M here: the
  698. module will be called wdt_pci.
  699. config WDT_501_PCI
  700. bool "PCI-WDT501 features"
  701. depends on WDTPCI
  702. help
  703. Saying Y here and creating a character special file /dev/temperature
  704. with major number 10 and minor number 131 ("man mknod") will give
  705. you a thermometer inside your computer: reading from
  706. /dev/temperature yields one byte, the temperature in degrees
  707. Fahrenheit. This works only if you have a PCI-WDT501 watchdog board
  708. installed.
  709. If you want to enable the Fan Tachometer on the PCI-WDT501, then you
  710. can do this via the tachometer parameter. Only do this if you have a
  711. fan tachometer actually set up.
  712. #
  713. # USB-based Watchdog Cards
  714. #
  715. comment "USB-based Watchdog Cards"
  716. depends on USB
  717. config USBPCWATCHDOG
  718. tristate "Berkshire Products USB-PC Watchdog"
  719. depends on USB
  720. ---help---
  721. This is the driver for the Berkshire Products USB-PC Watchdog card.
  722. This card simply watches your kernel to make sure it doesn't freeze,
  723. and if it does, it reboots your computer after a certain amount of
  724. time. The card can also monitor the internal temperature of the PC.
  725. More info is available at <http://www.berkprod.com/usb_pc_watchdog.htm>.
  726. To compile this driver as a module, choose M here: the
  727. module will be called pcwd_usb.
  728. Most people will say N.
  729. endif # WATCHDOG