Kconfig 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  1. #
  2. # Watchdog device configuration
  3. #
  4. menu "Watchdog Cards"
  5. config WATCHDOG
  6. bool "Watchdog Timer Support"
  7. ---help---
  8. If you say Y here (and to one of the following options) and create a
  9. character special file /dev/watchdog with major number 10 and minor
  10. number 130 using mknod ("man mknod"), you will get a watchdog, i.e.:
  11. subsequently opening the file and then failing to write to it for
  12. longer than 1 minute will result in rebooting the machine. This
  13. could be useful for a networked machine that needs to come back
  14. online as fast as possible after a lock-up. There's both a watchdog
  15. implementation entirely in software (which can sometimes fail to
  16. reboot the machine) and a driver for hardware watchdog boards, which
  17. are more robust and can also keep track of the temperature inside
  18. your computer. For details, read <file:Documentation/watchdog/watchdog.txt>
  19. in the kernel source.
  20. The watchdog is usually used together with the watchdog daemon
  21. which is available from
  22. <ftp://ibiblio.org/pub/Linux/system/daemons/watchdog/>. This daemon can
  23. also monitor NFS connections and can reboot the machine when the process
  24. table is full.
  25. If unsure, say N.
  26. config WATCHDOG_NOWAYOUT
  27. bool "Disable watchdog shutdown on close"
  28. depends on WATCHDOG
  29. help
  30. The default watchdog behaviour (which you get if you say N here) is
  31. to stop the timer if the process managing it closes the file
  32. /dev/watchdog. It's always remotely possible that this process might
  33. get killed. If you say Y here, the watchdog cannot be stopped once
  34. it has been started.
  35. #
  36. # General Watchdog drivers
  37. #
  38. comment "Watchdog Device Drivers"
  39. depends on WATCHDOG
  40. # Architecture Independant
  41. config SOFT_WATCHDOG
  42. tristate "Software watchdog"
  43. depends on WATCHDOG
  44. help
  45. A software monitoring watchdog. This will fail to reboot your system
  46. from some situations that the hardware watchdog will recover
  47. from. Equally it's a lot cheaper to install.
  48. To compile this driver as a module, choose M here: the
  49. module will be called softdog.
  50. # ARM Architecture
  51. config 21285_WATCHDOG
  52. tristate "DC21285 watchdog"
  53. depends on WATCHDOG && FOOTBRIDGE
  54. help
  55. The Intel Footbridge chip contains a builtin watchdog circuit. Say Y
  56. here if you wish to use this. Alternatively say M to compile the
  57. driver as a module, which will be called wdt285.
  58. This driver does not work on all machines. In particular, early CATS
  59. boards have hardware problems that will cause the machine to simply
  60. lock up if the watchdog fires.
  61. "If in doubt, leave it out" - say N.
  62. config 977_WATCHDOG
  63. tristate "NetWinder WB83C977 watchdog"
  64. depends on WATCHDOG && FOOTBRIDGE && ARCH_NETWINDER
  65. help
  66. Say Y here to include support for the WB977 watchdog included in
  67. NetWinder machines. Alternatively say M to compile the driver as
  68. a module, which will be called wdt977.
  69. Not sure? It's safe to say N.
  70. config IXP2000_WATCHDOG
  71. tristate "IXP2000 Watchdog"
  72. depends on WATCHDOG && ARCH_IXP2000
  73. help
  74. Say Y here if to include support for the watchdog timer
  75. in the Intel IXP2000(2400, 2800, 2850) network processors.
  76. This driver can be built as a module by choosing M. The module
  77. will be called ixp2000_wdt.
  78. Say N if you are unsure.
  79. config IXP4XX_WATCHDOG
  80. tristate "IXP4xx Watchdog"
  81. depends on WATCHDOG && ARCH_IXP4XX
  82. help
  83. Say Y here if to include support for the watchdog timer
  84. in the Intel IXP4xx network processors. This driver can
  85. be built as a module by choosing M. The module will
  86. be called ixp4xx_wdt.
  87. Note: The internal IXP4xx watchdog does a soft CPU reset
  88. which doesn't reset any peripherals. There are circumstances
  89. where the watchdog will fail to reset the board correctly
  90. (e.g., if the boot ROM is in an unreadable state).
  91. Say N if you are unsure.
  92. config S3C2410_WATCHDOG
  93. tristate "S3C2410 Watchdog"
  94. depends on WATCHDOG && ARCH_S3C2410
  95. help
  96. Watchdog timer block in the Samsung S3C2410 chips. This will
  97. reboot the system when the timer expires with the watchdog
  98. enabled.
  99. The driver is limited by the speed of the system's PCLK
  100. signal, so with reasonbaly fast systems (PCLK around 50-66MHz)
  101. then watchdog intervals of over approximately 20seconds are
  102. unavailable.
  103. The driver can be built as a module by choosing M, and will
  104. be called s3c2410_wdt
  105. config SA1100_WATCHDOG
  106. tristate "SA1100/PXA2xx watchdog"
  107. depends on WATCHDOG && ( ARCH_SA1100 || ARCH_PXA )
  108. help
  109. Watchdog timer embedded into SA11x0 and PXA2xx chips. This will
  110. reboot your system when timeout is reached.
  111. NOTE: once enabled, this timer cannot be disabled.
  112. To compile this driver as a module, choose M here: the
  113. module will be called sa1100_wdt.
  114. # X86 (i386 + ia64 + x86_64) Architecture
  115. config ACQUIRE_WDT
  116. tristate "Acquire SBC Watchdog Timer"
  117. depends on WATCHDOG && X86
  118. ---help---
  119. This is the driver for the hardware watchdog on Single Board
  120. Computers produced by Acquire Inc (and others). This watchdog
  121. simply watches your kernel to make sure it doesn't freeze, and if
  122. it does, it reboots your computer after a certain amount of time.
  123. To compile this driver as a module, choose M here: the
  124. module will be called acquirewdt.
  125. Most people will say N.
  126. config ADVANTECH_WDT
  127. tristate "Advantech SBC Watchdog Timer"
  128. depends on WATCHDOG && X86
  129. help
  130. If you are configuring a Linux kernel for the Advantech single-board
  131. computer, say `Y' here to support its built-in watchdog timer
  132. feature. More information can be found at
  133. <http://www.advantech.com.tw/products/>
  134. config ALIM1535_WDT
  135. tristate "ALi M1535 PMU Watchdog Timer"
  136. depends on WATCHDOG && X86 && PCI
  137. ---help---
  138. This is the driver for the hardware watchdog on the ALi M1535 PMU.
  139. To compile this driver as a module, choose M here: the
  140. module will be called alim1535_wdt.
  141. Most people will say N.
  142. config ALIM7101_WDT
  143. tristate "ALi M7101 PMU Computer Watchdog"
  144. depends on WATCHDOG && X86 && PCI
  145. help
  146. This is the driver for the hardware watchdog on the ALi M7101 PMU
  147. as used in the x86 Cobalt servers.
  148. To compile this driver as a module, choose M here: the
  149. module will be called alim7101_wdt.
  150. Most people will say N.
  151. config SC520_WDT
  152. tristate "AMD Elan SC520 processor Watchdog"
  153. depends on WATCHDOG && X86
  154. help
  155. This is the driver for the hardware watchdog built in to the
  156. AMD "Elan" SC520 microcomputer commonly used in embedded systems.
  157. This watchdog simply watches your kernel to make sure it doesn't
  158. freeze, and if it does, it reboots your computer after a certain
  159. amount of time.
  160. You can compile this driver directly into the kernel, or use
  161. it as a module. The module will be called sc520_wdt.
  162. config EUROTECH_WDT
  163. tristate "Eurotech CPU-1220/1410 Watchdog Timer"
  164. depends on WATCHDOG && X86
  165. help
  166. Enable support for the watchdog timer on the Eurotech CPU-1220 and
  167. CPU-1410 cards. These are PC/104 SBCs. Spec sheets and product
  168. information are at <http://www.eurotech.it/>.
  169. config IB700_WDT
  170. tristate "IB700 SBC Watchdog Timer"
  171. depends on WATCHDOG && X86
  172. ---help---
  173. This is the driver for the hardware watchdog on the IB700 Single
  174. Board Computer produced by TMC Technology (www.tmc-uk.com). This watchdog
  175. simply watches your kernel to make sure it doesn't freeze, and if
  176. it does, it reboots your computer after a certain amount of time.
  177. This driver is like the WDT501 driver but for slightly different hardware.
  178. To compile this driver as a module, choose M here: the
  179. module will be called ib700wdt.
  180. Most people will say N.
  181. config WAFER_WDT
  182. tristate "ICP Wafer 5823 Single Board Computer Watchdog"
  183. depends on WATCHDOG && X86
  184. help
  185. This is a driver for the hardware watchdog on the ICP Wafer 5823
  186. Single Board Computer (and probably other similar models).
  187. To compile this driver as a module, choose M here: the
  188. module will be called wafer5823wdt.
  189. config I6300ESB_WDT
  190. tristate "Intel 6300ESB Timer/Watchdog"
  191. depends on WATCHDOG && X86 && PCI
  192. ---help---
  193. Hardware driver for the watchdog timer built into the Intel
  194. 6300ESB controller hub.
  195. To compile this driver as a module, choose M here: the
  196. module will be called i6300esb.
  197. config I8XX_TCO
  198. tristate "Intel i8xx TCO Timer/Watchdog"
  199. depends on WATCHDOG && (X86 || IA64) && PCI
  200. ---help---
  201. Hardware driver for the TCO timer built into the Intel 82801
  202. I/O Controller Hub family. The TCO (Total Cost of Ownership)
  203. timer is a watchdog timer that will reboot the machine after
  204. its second expiration. The expiration time can be configured
  205. with the "heartbeat" parameter.
  206. On some motherboards the driver may fail to reset the chipset's
  207. NO_REBOOT flag which prevents the watchdog from rebooting the
  208. machine. If this is the case you will get a kernel message like
  209. "failed to reset NO_REBOOT flag, reboot disabled by hardware".
  210. To compile this driver as a module, choose M here: the
  211. module will be called i8xx_tco.
  212. config SC1200_WDT
  213. tristate "National Semiconductor PC87307/PC97307 (ala SC1200) Watchdog"
  214. depends on WATCHDOG && X86
  215. help
  216. This is a driver for National Semiconductor PC87307/PC97307 hardware
  217. watchdog cards as found on the SC1200. This watchdog is mainly used
  218. for power management purposes and can be used to power down the device
  219. during inactivity periods (includes interrupt activity monitoring).
  220. To compile this driver as a module, choose M here: the
  221. module will be called sc1200wdt.
  222. Most people will say N.
  223. config SCx200_WDT
  224. tristate "National Semiconductor SCx200 Watchdog"
  225. depends on WATCHDOG && SCx200 && PCI
  226. help
  227. Enable the built-in watchdog timer support on the National
  228. Semiconductor SCx200 processors.
  229. If compiled as a module, it will be called scx200_wdt.
  230. config 60XX_WDT
  231. tristate "SBC-60XX Watchdog Timer"
  232. depends on WATCHDOG && X86
  233. help
  234. This driver can be used with the watchdog timer found on some
  235. single board computers, namely the 6010 PII based computer.
  236. It may well work with other cards. It reads port 0x443 to enable
  237. and re-set the watchdog timer, and reads port 0x45 to disable
  238. the watchdog. If you have a card that behave in similar ways,
  239. you can probably make this driver work with your card as well.
  240. You can compile this driver directly into the kernel, or use
  241. it as a module. The module will be called sbc60xxwdt.
  242. config CPU5_WDT
  243. tristate "SMA CPU5 Watchdog"
  244. depends on WATCHDOG && X86
  245. ---help---
  246. TBD.
  247. To compile this driver as a module, choose M here: the
  248. module will be called cpu5wdt.
  249. config W83627HF_WDT
  250. tristate "W83627HF Watchdog Timer"
  251. depends on WATCHDOG && X86
  252. ---help---
  253. This is the driver for the hardware watchdog on the W83627HF chipset
  254. as used in Advantech PC-9578 and Tyan S2721-533 motherboards
  255. (and likely others). This watchdog simply watches your kernel to
  256. make sure it doesn't freeze, and if it does, it reboots your computer
  257. after a certain amount of time.
  258. To compile this driver as a module, choose M here: the
  259. module will be called w83627hf_wdt.
  260. Most people will say N.
  261. config W83877F_WDT
  262. tristate "W83877F (EMACS) Watchdog Timer"
  263. depends on WATCHDOG && X86
  264. ---help---
  265. This is the driver for the hardware watchdog on the W83877F chipset
  266. as used in EMACS PC-104 motherboards (and likely others). This
  267. watchdog simply watches your kernel to make sure it doesn't freeze,
  268. and if it does, it reboots your computer after a certain amount of
  269. time.
  270. To compile this driver as a module, choose M here: the
  271. module will be called w83877f_wdt.
  272. Most people will say N.
  273. config MACHZ_WDT
  274. tristate "ZF MachZ Watchdog"
  275. depends on WATCHDOG && X86
  276. ---help---
  277. If you are using a ZF Micro MachZ processor, say Y here, otherwise
  278. N. This is the driver for the watchdog timer builtin on that
  279. processor using ZF-Logic interface. This watchdog simply watches
  280. your kernel to make sure it doesn't freeze, and if it does, it
  281. reboots your computer after a certain amount of time.
  282. To compile this driver as a module, choose M here: the
  283. module will be called machzwd.
  284. # PowerPC Architecture
  285. config 8xx_WDT
  286. tristate "MPC8xx Watchdog Timer"
  287. depends on WATCHDOG && 8xx
  288. config MV64X60_WDT
  289. tristate "MV64X60 (Marvell Discovery) Watchdog Timer"
  290. depends on WATCHDOG && MV64X60
  291. config BOOKE_WDT
  292. tristate "PowerPC Book-E Watchdog Timer"
  293. depends on WATCHDOG && (BOOKE || 4xx)
  294. ---help---
  295. Please see Documentation/watchdog/watchdog-api.txt for
  296. more information.
  297. # PPC64 Architecture
  298. config WATCHDOG_RTAS
  299. tristate "RTAS watchdog"
  300. depends on WATCHDOG && PPC_RTAS
  301. help
  302. This driver adds watchdog support for the RTAS watchdog.
  303. To compile this driver as a module, choose M here. The module
  304. will be called wdrtas.
  305. # MIPS Architecture
  306. config INDYDOG
  307. tristate "Indy/I2 Hardware Watchdog"
  308. depends on WATCHDOG && SGI_IP22
  309. help
  310. Hardwaredriver for the Indy's/I2's watchdog. This is a
  311. watchdog timer that will reboot the machine after a 60 second
  312. timer expired and no process has written to /dev/watchdog during
  313. that time.
  314. # S390 Architecture
  315. config ZVM_WATCHDOG
  316. tristate "z/VM Watchdog Timer"
  317. depends on WATCHDOG && ARCH_S390
  318. help
  319. IBM s/390 and zSeries machines running under z/VM 5.1 or later
  320. provide a virtual watchdog timer to their guest that cause a
  321. user define Control Program command to be executed after a
  322. timeout.
  323. To compile this driver as a module, choose M here. The module
  324. will be called vmwatchdog.
  325. # SUPERH Architecture
  326. config SH_WDT
  327. tristate "SuperH Watchdog"
  328. depends on WATCHDOG && SUPERH
  329. help
  330. This driver adds watchdog support for the integrated watchdog in the
  331. SuperH processors. If you have one of these processors and wish
  332. to have watchdog support enabled, say Y, otherwise say N.
  333. As a side note, saying Y here will automatically boost HZ to 1000
  334. so that the timer has a chance to clear the overflow counter. On
  335. slower systems (such as the SH-2 and SH-3) this will likely yield
  336. some performance issues. As such, the WDT should be avoided here
  337. unless it is absolutely necessary.
  338. To compile this driver as a module, choose M here: the
  339. module will be called shwdt.
  340. # SPARC64 Architecture
  341. config WATCHDOG_CP1XXX
  342. tristate "CP1XXX Hardware Watchdog support"
  343. depends on WATCHDOG && SPARC64 && PCI
  344. ---help---
  345. This is the driver for the hardware watchdog timers present on
  346. Sun Microsystems CompactPCI models CP1400 and CP1500.
  347. To compile this driver as a module, choose M here: the
  348. module will be called cpwatchdog.
  349. If you do not have a CompactPCI model CP1400 or CP1500, or
  350. another UltraSPARC-IIi-cEngine boardset with hardware watchdog,
  351. you should say N to this option.
  352. config WATCHDOG_RIO
  353. tristate "RIO Hardware Watchdog support"
  354. depends on WATCHDOG && SPARC64 && PCI
  355. help
  356. Say Y here to support the hardware watchdog capability on Sun RIO
  357. machines. The watchdog timeout period is normally one minute but
  358. can be changed with a boot-time parameter.
  359. #
  360. # ISA-based Watchdog Cards
  361. #
  362. comment "ISA-based Watchdog Cards"
  363. depends on WATCHDOG && ISA
  364. config PCWATCHDOG
  365. tristate "Berkshire Products ISA-PC Watchdog"
  366. depends on WATCHDOG && ISA
  367. ---help---
  368. This is the driver for the Berkshire Products ISA-PC Watchdog card.
  369. This card simply watches your kernel to make sure it doesn't freeze,
  370. and if it does, it reboots your computer after a certain amount of
  371. time. This driver is like the WDT501 driver but for different
  372. hardware. Please read <file:Documentation/watchdog/pcwd-watchdog.txt>. The PC
  373. watchdog cards can be ordered from <http://www.berkprod.com/>.
  374. To compile this driver as a module, choose M here: the
  375. module will be called pcwd.
  376. Most people will say N.
  377. config MIXCOMWD
  378. tristate "Mixcom Watchdog"
  379. depends on WATCHDOG && ISA
  380. ---help---
  381. This is a driver for the Mixcom hardware watchdog cards. This
  382. watchdog simply watches your kernel to make sure it doesn't freeze,
  383. and if it does, it reboots your computer after a certain amount of
  384. time.
  385. To compile this driver as a module, choose M here: the
  386. module will be called mixcomwd.
  387. Most people will say N.
  388. config WDT
  389. tristate "WDT Watchdog timer"
  390. depends on WATCHDOG && ISA
  391. ---help---
  392. If you have a WDT500P or WDT501P watchdog board, say Y here,
  393. otherwise N. It is not possible to probe for this board, which means
  394. that you have to inform the kernel about the IO port and IRQ that
  395. is needed (you can do this via the io and irq parameters)
  396. To compile this driver as a module, choose M here: the
  397. module will be called wdt.
  398. config WDT_501
  399. bool "WDT501 features"
  400. depends on WDT
  401. help
  402. Saying Y here and creating a character special file /dev/temperature
  403. with major number 10 and minor number 131 ("man mknod") will give
  404. you a thermometer inside your computer: reading from
  405. /dev/temperature yields one byte, the temperature in degrees
  406. Fahrenheit. This works only if you have a WDT501P watchdog board
  407. installed.
  408. If you want to enable the Fan Tachometer on the WDT501P, then you
  409. can do this via the tachometer parameter. Only do this if you have a
  410. fan tachometer actually set up.
  411. #
  412. # PCI-based Watchdog Cards
  413. #
  414. comment "PCI-based Watchdog Cards"
  415. depends on WATCHDOG && PCI
  416. config PCIPCWATCHDOG
  417. tristate "Berkshire Products PCI-PC Watchdog"
  418. depends on WATCHDOG && PCI
  419. ---help---
  420. This is the driver for the Berkshire Products PCI-PC Watchdog card.
  421. This card simply watches your kernel to make sure it doesn't freeze,
  422. and if it does, it reboots your computer after a certain amount of
  423. time. The card can also monitor the internal temperature of the PC.
  424. More info is available at <http://www.berkprod.com/pci_pc_watchdog.htm>.
  425. To compile this driver as a module, choose M here: the
  426. module will be called pcwd_pci.
  427. Most people will say N.
  428. config WDTPCI
  429. tristate "PCI-WDT500/501 Watchdog timer"
  430. depends on WATCHDOG && PCI
  431. ---help---
  432. If you have a PCI-WDT500/501 watchdog board, say Y here, otherwise N.
  433. To compile this driver as a module, choose M here: the
  434. module will be called wdt_pci.
  435. config WDT_501_PCI
  436. bool "PCI-WDT501 features"
  437. depends on WDTPCI
  438. help
  439. Saying Y here and creating a character special file /dev/temperature
  440. with major number 10 and minor number 131 ("man mknod") will give
  441. you a thermometer inside your computer: reading from
  442. /dev/temperature yields one byte, the temperature in degrees
  443. Fahrenheit. This works only if you have a PCI-WDT501 watchdog board
  444. installed.
  445. If you want to enable the Fan Tachometer on the PCI-WDT501, then you
  446. can do this via the tachometer parameter. Only do this if you have a
  447. fan tachometer actually set up.
  448. #
  449. # USB-based Watchdog Cards
  450. #
  451. comment "USB-based Watchdog Cards"
  452. depends on WATCHDOG && USB
  453. config USBPCWATCHDOG
  454. tristate "Berkshire Products USB-PC Watchdog"
  455. depends on WATCHDOG && USB
  456. ---help---
  457. This is the driver for the Berkshire Products USB-PC Watchdog card.
  458. This card simply watches your kernel to make sure it doesn't freeze,
  459. and if it does, it reboots your computer after a certain amount of
  460. time. The card can also monitor the internal temperature of the PC.
  461. More info is available at <http://www.berkprod.com/usb_pc_watchdog.htm>.
  462. To compile this driver as a module, choose M here: the
  463. module will be called pcwd_usb.
  464. Most people will say N.
  465. endmenu