Kconfig 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  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. config WATCHDOG_SYSFS
  42. bool "Read different watchdog information through sysfs"
  43. help
  44. Say Y here if you want to enable watchdog device status read through
  45. sysfs attributes.
  46. #
  47. # General Watchdog drivers
  48. #
  49. comment "Watchdog Device Drivers"
  50. # Architecture Independent
  51. config SOFT_WATCHDOG
  52. tristate "Software watchdog"
  53. select WATCHDOG_CORE
  54. help
  55. A software monitoring watchdog. This will fail to reboot your system
  56. from some situations that the hardware watchdog will recover
  57. from. Equally it's a lot cheaper to install.
  58. To compile this driver as a module, choose M here: the
  59. module will be called softdog.
  60. config DA9052_WATCHDOG
  61. tristate "Dialog DA9052 Watchdog"
  62. depends on PMIC_DA9052
  63. select WATCHDOG_CORE
  64. help
  65. Support for the watchdog in the DA9052 PMIC. Watchdog trigger
  66. cause system reset.
  67. Say Y here to include support for the DA9052 watchdog.
  68. Alternatively say M to compile the driver as a module,
  69. which will be called da9052_wdt.
  70. config DA9055_WATCHDOG
  71. tristate "Dialog Semiconductor DA9055 Watchdog"
  72. depends on MFD_DA9055
  73. select WATCHDOG_CORE
  74. help
  75. If you say yes here you get support for watchdog on the Dialog
  76. Semiconductor DA9055 PMIC.
  77. This driver can also be built as a module. If so, the module
  78. will be called da9055_wdt.
  79. config DA9063_WATCHDOG
  80. tristate "Dialog DA9063 Watchdog"
  81. depends on MFD_DA9063
  82. select WATCHDOG_CORE
  83. help
  84. Support for the watchdog in the DA9063 PMIC.
  85. This driver can be built as a module. The module name is da9063_wdt.
  86. config DA9062_WATCHDOG
  87. tristate "Dialog DA9062 Watchdog"
  88. depends on MFD_DA9062
  89. select WATCHDOG_CORE
  90. help
  91. Support for the watchdog in the DA9062 PMIC.
  92. This driver can be built as a module. The module name is da9062_wdt.
  93. config GPIO_WATCHDOG
  94. tristate "Watchdog device controlled through GPIO-line"
  95. depends on OF_GPIO
  96. select WATCHDOG_CORE
  97. help
  98. If you say yes here you get support for watchdog device
  99. controlled through GPIO-line.
  100. config GPIO_WATCHDOG_ARCH_INITCALL
  101. bool "Register the watchdog as early as possible"
  102. depends on GPIO_WATCHDOG=y
  103. help
  104. In some situations, the default initcall level (module_init)
  105. in not early enough in the boot process to avoid the watchdog
  106. to be triggered.
  107. If you say yes here, the initcall level would be raised to
  108. arch_initcall.
  109. If in doubt, say N.
  110. config MENF21BMC_WATCHDOG
  111. tristate "MEN 14F021P00 BMC Watchdog"
  112. depends on MFD_MENF21BMC
  113. select WATCHDOG_CORE
  114. help
  115. Say Y here to include support for the MEN 14F021P00 BMC Watchdog.
  116. This driver can also be built as a module. If so the module
  117. will be called menf21bmc_wdt.
  118. config TANGOX_WATCHDOG
  119. tristate "Sigma Designs SMP86xx/SMP87xx watchdog"
  120. select WATCHDOG_CORE
  121. depends on ARCH_TANGO || COMPILE_TEST
  122. depends on HAS_IOMEM
  123. help
  124. Support for the watchdog in Sigma Designs SMP86xx (tango3)
  125. and SMP87xx (tango4) family chips.
  126. This driver can be built as a module. The module name is tangox_wdt.
  127. config WDAT_WDT
  128. tristate "ACPI Watchdog Action Table (WDAT)"
  129. depends on ACPI
  130. select WATCHDOG_CORE
  131. select ACPI_WATCHDOG
  132. help
  133. This driver adds support for systems with ACPI Watchdog Action
  134. Table (WDAT) table. Servers typically have this but it can be
  135. found on some desktop machines as well. This driver will take
  136. over the native iTCO watchdog driver found on many Intel CPUs.
  137. To compile this driver as module, choose M here: the module will
  138. be called wdat_wdt.
  139. config WM831X_WATCHDOG
  140. tristate "WM831x watchdog"
  141. depends on MFD_WM831X
  142. select WATCHDOG_CORE
  143. help
  144. Support for the watchdog in the WM831x AudioPlus PMICs. When
  145. the watchdog triggers the system will be reset.
  146. config WM8350_WATCHDOG
  147. tristate "WM8350 watchdog"
  148. depends on MFD_WM8350
  149. select WATCHDOG_CORE
  150. help
  151. Support for the watchdog in the WM8350 AudioPlus PMIC. When
  152. the watchdog triggers the system will be reset.
  153. config XILINX_WATCHDOG
  154. tristate "Xilinx Watchdog timer"
  155. depends on HAS_IOMEM
  156. select WATCHDOG_CORE
  157. help
  158. Watchdog driver for the xps_timebase_wdt ip core.
  159. To compile this driver as a module, choose M here: the
  160. module will be called of_xilinx_wdt.
  161. config ZIIRAVE_WATCHDOG
  162. tristate "Zodiac RAVE Watchdog Timer"
  163. depends on I2C
  164. select WATCHDOG_CORE
  165. help
  166. Watchdog driver for the Zodiac Aerospace RAVE Switch Watchdog
  167. Processor.
  168. To compile this driver as a module, choose M here: the
  169. module will be called ziirave_wdt.
  170. # ALPHA Architecture
  171. # ARM Architecture
  172. config ARM_SP805_WATCHDOG
  173. tristate "ARM SP805 Watchdog"
  174. depends on (ARM || ARM64) && ARM_AMBA
  175. select WATCHDOG_CORE
  176. help
  177. ARM Primecell SP805 Watchdog timer. This will reboot your system when
  178. the timeout is reached.
  179. config ARM_SBSA_WATCHDOG
  180. tristate "ARM SBSA Generic Watchdog"
  181. depends on ARM64
  182. depends on ARM_ARCH_TIMER
  183. select WATCHDOG_CORE
  184. help
  185. ARM SBSA Generic Watchdog has two stage timeouts:
  186. the first signal (WS0) is for alerting the system by interrupt,
  187. the second one (WS1) is a real hardware reset.
  188. More details: ARM DEN0029B - Server Base System Architecture (SBSA)
  189. This driver can operate ARM SBSA Generic Watchdog as a single stage
  190. or a two stages watchdog, it depends on the module parameter "action".
  191. Note: the maximum timeout in the two stages mode is half of that in
  192. the single stage mode.
  193. To compile this driver as module, choose M here: The module
  194. will be called sbsa_gwdt.
  195. config ASM9260_WATCHDOG
  196. tristate "Alphascale ASM9260 watchdog"
  197. depends on MACH_ASM9260
  198. depends on OF
  199. select WATCHDOG_CORE
  200. select RESET_CONTROLLER
  201. help
  202. Watchdog timer embedded into Alphascale asm9260 chips. This will reboot your
  203. system when the timeout is reached.
  204. config AT91RM9200_WATCHDOG
  205. tristate "AT91RM9200 watchdog"
  206. depends on SOC_AT91RM9200 && MFD_SYSCON
  207. help
  208. Watchdog timer embedded into AT91RM9200 chips. This will reboot your
  209. system when the timeout is reached.
  210. config AT91SAM9X_WATCHDOG
  211. tristate "AT91SAM9X / AT91CAP9 watchdog"
  212. depends on ARCH_AT91
  213. select WATCHDOG_CORE
  214. help
  215. Watchdog timer embedded into AT91SAM9X and AT91CAP9 chips. This will
  216. reboot your system when the timeout is reached.
  217. config SAMA5D4_WATCHDOG
  218. tristate "Atmel SAMA5D4 Watchdog Timer"
  219. depends on ARCH_AT91
  220. select WATCHDOG_CORE
  221. help
  222. Atmel SAMA5D4 watchdog timer is embedded into SAMA5D4 chips.
  223. Its Watchdog Timer Mode Register can be written more than once.
  224. This will reboot your system when the timeout is reached.
  225. config CADENCE_WATCHDOG
  226. tristate "Cadence Watchdog Timer"
  227. depends on HAS_IOMEM
  228. select WATCHDOG_CORE
  229. help
  230. Say Y here if you want to include support for the watchdog
  231. timer in the Xilinx Zynq.
  232. config 21285_WATCHDOG
  233. tristate "DC21285 watchdog"
  234. depends on FOOTBRIDGE
  235. help
  236. The Intel Footbridge chip contains a built-in watchdog circuit. Say Y
  237. here if you wish to use this. Alternatively say M to compile the
  238. driver as a module, which will be called wdt285.
  239. This driver does not work on all machines. In particular, early CATS
  240. boards have hardware problems that will cause the machine to simply
  241. lock up if the watchdog fires.
  242. "If in doubt, leave it out" - say N.
  243. config 977_WATCHDOG
  244. tristate "NetWinder WB83C977 watchdog"
  245. depends on FOOTBRIDGE && ARCH_NETWINDER
  246. help
  247. Say Y here to include support for the WB977 watchdog included in
  248. NetWinder machines. Alternatively say M to compile the driver as
  249. a module, which will be called wdt977.
  250. Not sure? It's safe to say N.
  251. config IXP4XX_WATCHDOG
  252. tristate "IXP4xx Watchdog"
  253. depends on ARCH_IXP4XX
  254. help
  255. Say Y here if to include support for the watchdog timer
  256. in the Intel IXP4xx network processors. This driver can
  257. be built as a module by choosing M. The module will
  258. be called ixp4xx_wdt.
  259. Note: The internal IXP4xx watchdog does a soft CPU reset
  260. which doesn't reset any peripherals. There are circumstances
  261. where the watchdog will fail to reset the board correctly
  262. (e.g., if the boot ROM is in an unreadable state).
  263. Say N if you are unsure.
  264. config KS8695_WATCHDOG
  265. tristate "KS8695 watchdog"
  266. depends on ARCH_KS8695
  267. help
  268. Watchdog timer embedded into KS8695 processor. This will reboot your
  269. system when the timeout is reached.
  270. config HAVE_S3C2410_WATCHDOG
  271. bool
  272. help
  273. This will include watchdog timer support for Samsung SoCs. If
  274. you want to include watchdog support for any machine, kindly
  275. select this in the respective mach-XXXX/Kconfig file.
  276. config S3C2410_WATCHDOG
  277. tristate "S3C2410 Watchdog"
  278. depends on HAVE_S3C2410_WATCHDOG
  279. select WATCHDOG_CORE
  280. select MFD_SYSCON if ARCH_EXYNOS5
  281. help
  282. Watchdog timer block in the Samsung SoCs. This will reboot
  283. the system when the timer expires with the watchdog enabled.
  284. The driver is limited by the speed of the system's PCLK
  285. signal, so with reasonably fast systems (PCLK around 50-66MHz)
  286. then watchdog intervals of over approximately 20seconds are
  287. unavailable.
  288. The driver can be built as a module by choosing M, and will
  289. be called s3c2410_wdt
  290. config SA1100_WATCHDOG
  291. tristate "SA1100/PXA2xx watchdog"
  292. depends on ARCH_SA1100 || ARCH_PXA
  293. help
  294. Watchdog timer embedded into SA11x0 and PXA2xx chips. This will
  295. reboot your system when timeout is reached.
  296. NOTE: once enabled, this timer cannot be disabled.
  297. To compile this driver as a module, choose M here: the
  298. module will be called sa1100_wdt.
  299. config DW_WATCHDOG
  300. tristate "Synopsys DesignWare watchdog"
  301. depends on HAS_IOMEM
  302. select WATCHDOG_CORE
  303. help
  304. Say Y here if to include support for the Synopsys DesignWare
  305. watchdog timer found in many chips.
  306. To compile this driver as a module, choose M here: the
  307. module will be called dw_wdt.
  308. config EP93XX_WATCHDOG
  309. tristate "EP93xx Watchdog"
  310. depends on ARCH_EP93XX
  311. select WATCHDOG_CORE
  312. help
  313. Say Y here if to include support for the watchdog timer
  314. embedded in the Cirrus Logic EP93xx family of devices.
  315. To compile this driver as a module, choose M here: the
  316. module will be called ep93xx_wdt.
  317. config OMAP_WATCHDOG
  318. tristate "OMAP Watchdog"
  319. depends on ARCH_OMAP16XX || ARCH_OMAP2PLUS
  320. select WATCHDOG_CORE
  321. help
  322. Support for TI OMAP1610/OMAP1710/OMAP2420/OMAP3430/OMAP4430 watchdog. Say 'Y'
  323. here to enable the OMAP1610/OMAP1710/OMAP2420/OMAP3430/OMAP4430 watchdog timer.
  324. config PNX4008_WATCHDOG
  325. tristate "LPC32XX Watchdog"
  326. depends on ARCH_LPC32XX
  327. select WATCHDOG_CORE
  328. help
  329. Say Y here if to include support for the watchdog timer
  330. in the LPC32XX processor.
  331. This driver can be built as a module by choosing M. The module
  332. will be called pnx4008_wdt.
  333. Say N if you are unsure.
  334. config IOP_WATCHDOG
  335. tristate "IOP Watchdog"
  336. depends on ARCH_IOP13XX
  337. select WATCHDOG_NOWAYOUT if (ARCH_IOP32X || ARCH_IOP33X)
  338. help
  339. Say Y here if to include support for the watchdog timer
  340. in the Intel IOP3XX & IOP13XX I/O Processors. This driver can
  341. be built as a module by choosing M. The module will
  342. be called iop_wdt.
  343. Note: The IOP13XX watchdog does an Internal Bus Reset which will
  344. affect both cores and the peripherals of the IOP. The ATU-X
  345. and/or ATUe configuration registers will remain intact, but if
  346. operating as an Root Complex and/or Central Resource, the PCI-X
  347. and/or PCIe busses will also be reset. THIS IS A VERY BIG HAMMER.
  348. config DAVINCI_WATCHDOG
  349. tristate "DaVinci watchdog"
  350. depends on ARCH_DAVINCI || ARCH_KEYSTONE
  351. select WATCHDOG_CORE
  352. help
  353. Say Y here if to include support for the watchdog timer
  354. in the DaVinci DM644x/DM646x or Keystone processors.
  355. To compile this driver as a module, choose M here: the
  356. module will be called davinci_wdt.
  357. NOTE: once enabled, this timer cannot be disabled.
  358. Say N if you are unsure.
  359. config ORION_WATCHDOG
  360. tristate "Orion watchdog"
  361. depends on ARCH_ORION5X || ARCH_DOVE || MACH_DOVE || ARCH_MVEBU
  362. depends on ARM
  363. select WATCHDOG_CORE
  364. help
  365. Say Y here if to include support for the watchdog timer
  366. in the Marvell Orion5x and Kirkwood ARM SoCs.
  367. To compile this driver as a module, choose M here: the
  368. module will be called orion_wdt.
  369. config RN5T618_WATCHDOG
  370. tristate "Ricoh RN5T618 watchdog"
  371. depends on MFD_RN5T618
  372. select WATCHDOG_CORE
  373. help
  374. If you say yes here you get support for watchdog on the Ricoh
  375. RN5T618 PMIC.
  376. This driver can also be built as a module. If so, the module
  377. will be called rn5t618_wdt.
  378. config SUNXI_WATCHDOG
  379. tristate "Allwinner SoCs watchdog support"
  380. depends on ARCH_SUNXI
  381. select WATCHDOG_CORE
  382. help
  383. Say Y here to include support for the watchdog timer
  384. in Allwinner SoCs.
  385. To compile this driver as a module, choose M here: the
  386. module will be called sunxi_wdt.
  387. config COH901327_WATCHDOG
  388. bool "ST-Ericsson COH 901 327 watchdog"
  389. depends on ARCH_U300
  390. default y if MACH_U300
  391. select WATCHDOG_CORE
  392. help
  393. Say Y here to include Watchdog timer support for the
  394. watchdog embedded into the ST-Ericsson U300 series platforms.
  395. This watchdog is used to reset the system and thus cannot be
  396. compiled as a module.
  397. config TWL4030_WATCHDOG
  398. tristate "TWL4030 Watchdog"
  399. depends on TWL4030_CORE
  400. select WATCHDOG_CORE
  401. help
  402. Support for TI TWL4030 watchdog. Say 'Y' here to enable the
  403. watchdog timer support for TWL4030 chips.
  404. config STMP3XXX_RTC_WATCHDOG
  405. tristate "Freescale STMP3XXX & i.MX23/28 watchdog"
  406. depends on RTC_DRV_STMP
  407. select WATCHDOG_CORE
  408. help
  409. Say Y here to include support for the watchdog timer inside
  410. the RTC for the STMP37XX/378X or i.MX23/28 SoC.
  411. To compile this driver as a module, choose M here: the
  412. module will be called stmp3xxx_rtc_wdt.
  413. config NUC900_WATCHDOG
  414. tristate "Nuvoton NUC900 watchdog"
  415. depends on ARCH_W90X900
  416. help
  417. Say Y here if to include support for the watchdog timer
  418. for the Nuvoton NUC900 series SoCs.
  419. To compile this driver as a module, choose M here: the
  420. module will be called nuc900_wdt.
  421. config TS4800_WATCHDOG
  422. tristate "TS-4800 Watchdog"
  423. depends on HAS_IOMEM && OF
  424. depends on SOC_IMX51 || COMPILE_TEST
  425. select WATCHDOG_CORE
  426. select MFD_SYSCON
  427. help
  428. Technologic Systems TS-4800 has watchdog timer implemented in
  429. an external FPGA. Say Y here if you want to support for the
  430. watchdog timer on TS-4800 board.
  431. config TS72XX_WATCHDOG
  432. tristate "TS-72XX SBC Watchdog"
  433. depends on MACH_TS72XX
  434. help
  435. Technologic Systems TS-7200, TS-7250 and TS-7260 boards have
  436. watchdog timer implemented in a external CPLD chip. Say Y here
  437. if you want to support for the watchdog timer on TS-72XX boards.
  438. To compile this driver as a module, choose M here: the
  439. module will be called ts72xx_wdt.
  440. config MAX63XX_WATCHDOG
  441. tristate "Max63xx watchdog"
  442. depends on HAS_IOMEM
  443. select WATCHDOG_CORE
  444. help
  445. Support for memory mapped max63{69,70,71,72,73,74} watchdog timer.
  446. config MAX77620_WATCHDOG
  447. tristate "Maxim Max77620 Watchdog Timer"
  448. depends on MFD_MAX77620
  449. help
  450. This is the driver for the Max77620 watchdog timer.
  451. Say 'Y' here to enable the watchdog timer support for
  452. MAX77620 chips. To compile this driver as a module,
  453. choose M here: the module will be called max77620_wdt.
  454. config IMX2_WDT
  455. tristate "IMX2+ Watchdog"
  456. depends on ARCH_MXC || ARCH_LAYERSCAPE
  457. select REGMAP_MMIO
  458. select WATCHDOG_CORE
  459. help
  460. This is the driver for the hardware watchdog
  461. on the Freescale IMX2 and later processors.
  462. If you have one of these processors and wish to have
  463. watchdog support enabled, say Y, otherwise say N.
  464. To compile this driver as a module, choose M here: the
  465. module will be called imx2_wdt.
  466. config UX500_WATCHDOG
  467. tristate "ST-Ericsson Ux500 watchdog"
  468. depends on MFD_DB8500_PRCMU
  469. select WATCHDOG_CORE
  470. default y
  471. help
  472. Say Y here to include Watchdog timer support for the watchdog
  473. existing in the prcmu of ST-Ericsson Ux500 series platforms.
  474. To compile this driver as a module, choose M here: the
  475. module will be called ux500_wdt.
  476. config RETU_WATCHDOG
  477. tristate "Retu watchdog"
  478. depends on MFD_RETU
  479. select WATCHDOG_CORE
  480. help
  481. Retu watchdog driver for Nokia Internet Tablets (770, N800,
  482. N810). At least on N800 the watchdog cannot be disabled, so
  483. this driver is essential and you should enable it.
  484. To compile this driver as a module, choose M here: the
  485. module will be called retu_wdt.
  486. config MOXART_WDT
  487. tristate "MOXART watchdog"
  488. depends on ARCH_MOXART
  489. help
  490. Say Y here to include Watchdog timer support for the watchdog
  491. existing on the MOXA ART SoC series platforms.
  492. To compile this driver as a module, choose M here: the
  493. module will be called moxart_wdt.
  494. config SIRFSOC_WATCHDOG
  495. tristate "SiRFSOC watchdog"
  496. depends on ARCH_SIRF
  497. select WATCHDOG_CORE
  498. default y
  499. help
  500. Support for CSR SiRFprimaII and SiRFatlasVI watchdog. When
  501. the watchdog triggers the system will be reset.
  502. config ST_LPC_WATCHDOG
  503. tristate "STMicroelectronics LPC Watchdog"
  504. depends on ARCH_STI
  505. depends on OF
  506. select WATCHDOG_CORE
  507. help
  508. Say Y here to include STMicroelectronics Low Power Controller
  509. (LPC) based Watchdog timer support.
  510. To compile this driver as a module, choose M here: the
  511. module will be called st_lpc_wdt.
  512. config TEGRA_WATCHDOG
  513. tristate "Tegra watchdog"
  514. depends on (ARCH_TEGRA || COMPILE_TEST) && HAS_IOMEM
  515. select WATCHDOG_CORE
  516. help
  517. Say Y here to include support for the watchdog timer
  518. embedded in NVIDIA Tegra SoCs.
  519. To compile this driver as a module, choose M here: the
  520. module will be called tegra_wdt.
  521. config QCOM_WDT
  522. tristate "QCOM watchdog"
  523. depends on HAS_IOMEM
  524. depends on ARCH_QCOM
  525. select WATCHDOG_CORE
  526. help
  527. Say Y here to include Watchdog timer support for the watchdog found
  528. on QCOM chipsets. Currently supported targets are the MSM8960,
  529. APQ8064, and IPQ8064.
  530. To compile this driver as a module, choose M here: the
  531. module will be called qcom_wdt.
  532. config MESON_GXBB_WATCHDOG
  533. tristate "Amlogic Meson GXBB SoCs watchdog support"
  534. depends on ARCH_MESON
  535. select WATCHDOG_CORE
  536. help
  537. Say Y here to include support for the watchdog timer
  538. in Amlogic Meson GXBB SoCs.
  539. To compile this driver as a module, choose M here: the
  540. module will be called meson_gxbb_wdt.
  541. config MESON_WATCHDOG
  542. tristate "Amlogic Meson SoCs watchdog support"
  543. depends on ARCH_MESON
  544. select WATCHDOG_CORE
  545. help
  546. Say Y here to include support for the watchdog timer
  547. in Amlogic Meson SoCs.
  548. To compile this driver as a module, choose M here: the
  549. module will be called meson_wdt.
  550. config MEDIATEK_WATCHDOG
  551. tristate "Mediatek SoCs watchdog support"
  552. depends on ARCH_MEDIATEK
  553. select WATCHDOG_CORE
  554. help
  555. Say Y here to include support for the watchdog timer
  556. in Mediatek SoCs.
  557. To compile this driver as a module, choose M here: the
  558. module will be called mtk_wdt.
  559. config DIGICOLOR_WATCHDOG
  560. tristate "Conexant Digicolor SoCs watchdog support"
  561. depends on ARCH_DIGICOLOR
  562. select WATCHDOG_CORE
  563. help
  564. Say Y here to include support for the watchdog timer
  565. in Conexant Digicolor SoCs.
  566. To compile this driver as a module, choose M here: the
  567. module will be called digicolor_wdt.
  568. config LPC18XX_WATCHDOG
  569. tristate "LPC18xx/43xx Watchdog"
  570. depends on ARCH_LPC18XX || COMPILE_TEST
  571. depends on HAS_IOMEM
  572. select WATCHDOG_CORE
  573. help
  574. Say Y here if to include support for the watchdog timer
  575. in NXP LPC SoCs family, which includes LPC18xx/LPC43xx
  576. processors.
  577. To compile this driver as a module, choose M here: the
  578. module will be called lpc18xx_wdt.
  579. config ATLAS7_WATCHDOG
  580. tristate "CSRatlas7 watchdog"
  581. depends on ARCH_ATLAS7
  582. help
  583. Say Y here to include Watchdog timer support for the watchdog
  584. existing on the CSRatlas7 series platforms.
  585. To compile this driver as a module, choose M here: the
  586. module will be called atlas7_wdt.
  587. config RENESAS_WDT
  588. tristate "Renesas WDT Watchdog"
  589. depends on ARCH_RENESAS || COMPILE_TEST
  590. select WATCHDOG_CORE
  591. help
  592. This driver adds watchdog support for the integrated watchdogs in the
  593. Renesas R-Car and other SH-Mobile SoCs (usually named RWDT or SWDT).
  594. config ASPEED_WATCHDOG
  595. tristate "Aspeed 2400 watchdog support"
  596. depends on ARCH_ASPEED || COMPILE_TEST
  597. select WATCHDOG_CORE
  598. help
  599. Say Y here to include support for the watchdog timer
  600. in Apseed BMC SoCs.
  601. This driver is required to reboot the SoC.
  602. To compile this driver as a module, choose M here: the
  603. module will be called aspeed_wdt.
  604. # AVR32 Architecture
  605. config AT32AP700X_WDT
  606. tristate "AT32AP700x watchdog"
  607. depends on CPU_AT32AP700X
  608. help
  609. Watchdog timer embedded into AT32AP700x devices. This will reboot
  610. your system when the timeout is reached.
  611. # BLACKFIN Architecture
  612. config BFIN_WDT
  613. tristate "Blackfin On-Chip Watchdog Timer"
  614. depends on BLACKFIN
  615. ---help---
  616. If you say yes here you will get support for the Blackfin On-Chip
  617. Watchdog Timer. If you have one of these processors and wish to
  618. have watchdog support enabled, say Y, otherwise say N.
  619. To compile this driver as a module, choose M here: the
  620. module will be called bfin_wdt.
  621. # CRIS Architecture
  622. # FRV Architecture
  623. # X86 (i386 + ia64 + x86_64) Architecture
  624. config ACQUIRE_WDT
  625. tristate "Acquire SBC Watchdog Timer"
  626. depends on X86
  627. ---help---
  628. This is the driver for the hardware watchdog on Single Board
  629. Computers produced by Acquire Inc (and others). This watchdog
  630. simply watches your kernel to make sure it doesn't freeze, and if
  631. it does, it reboots your computer after a certain amount of time.
  632. To compile this driver as a module, choose M here: the
  633. module will be called acquirewdt.
  634. Most people will say N.
  635. config ADVANTECH_WDT
  636. tristate "Advantech SBC Watchdog Timer"
  637. depends on X86
  638. help
  639. If you are configuring a Linux kernel for the Advantech single-board
  640. computer, say `Y' here to support its built-in watchdog timer
  641. feature. More information can be found at
  642. <http://www.advantech.com.tw/products/>
  643. config ALIM1535_WDT
  644. tristate "ALi M1535 PMU Watchdog Timer"
  645. depends on X86 && PCI
  646. ---help---
  647. This is the driver for the hardware watchdog on the ALi M1535 PMU.
  648. To compile this driver as a module, choose M here: the
  649. module will be called alim1535_wdt.
  650. Most people will say N.
  651. config ALIM7101_WDT
  652. tristate "ALi M7101 PMU Computer Watchdog"
  653. depends on PCI
  654. help
  655. This is the driver for the hardware watchdog on the ALi M7101 PMU
  656. as used in the x86 Cobalt servers and also found in some
  657. SPARC Netra servers too.
  658. To compile this driver as a module, choose M here: the
  659. module will be called alim7101_wdt.
  660. Most people will say N.
  661. config EBC_C384_WDT
  662. tristate "WinSystems EBC-C384 Watchdog Timer"
  663. depends on X86 && ISA_BUS_API
  664. select WATCHDOG_CORE
  665. help
  666. Enables watchdog timer support for the watchdog timer on the
  667. WinSystems EBC-C384 motherboard. The timeout may be configured via
  668. the timeout module parameter.
  669. config F71808E_WDT
  670. tristate "Fintek F718xx, F818xx Super I/O Watchdog"
  671. depends on X86
  672. help
  673. This is the driver for the hardware watchdog on the Fintek F71808E,
  674. F71862FG, F71868, F71869, F71882FG, F71889FG, F81865 and F81866
  675. Super I/O controllers.
  676. You can compile this driver directly into the kernel, or use
  677. it as a module. The module will be called f71808e_wdt.
  678. config SP5100_TCO
  679. tristate "AMD/ATI SP5100 TCO Timer/Watchdog"
  680. depends on X86 && PCI
  681. ---help---
  682. Hardware watchdog driver for the AMD/ATI SP5100 chipset. The TCO
  683. (Total Cost of Ownership) timer is a watchdog timer that will reboot
  684. the machine after its expiration. The expiration time can be
  685. configured with the "heartbeat" parameter.
  686. To compile this driver as a module, choose M here: the
  687. module will be called sp5100_tco.
  688. config GEODE_WDT
  689. tristate "AMD Geode CS5535/CS5536 Watchdog"
  690. depends on CS5535_MFGPT
  691. help
  692. This driver enables a watchdog capability built into the
  693. CS5535/CS5536 companion chips for the AMD Geode GX and LX
  694. processors. This watchdog watches your kernel to make sure
  695. it doesn't freeze, and if it does, it reboots your computer after
  696. a certain amount of time.
  697. You can compile this driver directly into the kernel, or use
  698. it as a module. The module will be called geodewdt.
  699. config SC520_WDT
  700. tristate "AMD Elan SC520 processor Watchdog"
  701. depends on MELAN
  702. help
  703. This is the driver for the hardware watchdog built in to the
  704. AMD "Elan" SC520 microcomputer commonly used in embedded systems.
  705. This watchdog simply watches your kernel to make sure it doesn't
  706. freeze, and if it does, it reboots your computer after a certain
  707. amount of time.
  708. You can compile this driver directly into the kernel, or use
  709. it as a module. The module will be called sc520_wdt.
  710. config SBC_FITPC2_WATCHDOG
  711. tristate "Compulab SBC-FITPC2 watchdog"
  712. depends on X86
  713. ---help---
  714. This is the driver for the built-in watchdog timer on the fit-PC2,
  715. fit-PC2i, CM-iAM single-board computers made by Compulab.
  716. It`s possible to enable watchdog timer either from BIOS (F2) or from booted Linux.
  717. When "Watchdog Timer Value" enabled one can set 31-255 s operational range.
  718. Entering BIOS setup temporary disables watchdog operation regardless to current state,
  719. so system will not be restarted while user in BIOS setup.
  720. Once watchdog was enabled the system will be restarted every
  721. "Watchdog Timer Value" period, so to prevent it user can restart or
  722. disable the watchdog.
  723. To compile this driver as a module, choose M here: the
  724. module will be called sbc_fitpc2_wdt.
  725. Most people will say N.
  726. config EUROTECH_WDT
  727. tristate "Eurotech CPU-1220/1410 Watchdog Timer"
  728. depends on X86
  729. help
  730. Enable support for the watchdog timer on the Eurotech CPU-1220 and
  731. CPU-1410 cards. These are PC/104 SBCs. Spec sheets and product
  732. information are at <http://www.eurotech.it/>.
  733. config IB700_WDT
  734. tristate "IB700 SBC Watchdog Timer"
  735. depends on X86
  736. ---help---
  737. This is the driver for the hardware watchdog on the IB700 Single
  738. Board Computer produced by TMC Technology (www.tmc-uk.com). This watchdog
  739. simply watches your kernel to make sure it doesn't freeze, and if
  740. it does, it reboots your computer after a certain amount of time.
  741. This driver is like the WDT501 driver but for slightly different hardware.
  742. To compile this driver as a module, choose M here: the
  743. module will be called ib700wdt.
  744. Most people will say N.
  745. config IBMASR
  746. tristate "IBM Automatic Server Restart"
  747. depends on X86
  748. help
  749. This is the driver for the IBM Automatic Server Restart watchdog
  750. timer built-in into some eServer xSeries machines.
  751. To compile this driver as a module, choose M here: the
  752. module will be called ibmasr.
  753. config WAFER_WDT
  754. tristate "ICP Single Board Computer Watchdog Timer"
  755. depends on X86
  756. help
  757. This is a driver for the hardware watchdog on the ICP Single
  758. Board Computer. This driver is working on (at least) the following
  759. IPC SBC's: Wafer 5823, Rocky 4783, Rocky 3703 and Rocky 3782.
  760. To compile this driver as a module, choose M here: the
  761. module will be called wafer5823wdt.
  762. config I6300ESB_WDT
  763. tristate "Intel 6300ESB Timer/Watchdog"
  764. depends on PCI
  765. ---help---
  766. Hardware driver for the watchdog timer built into the Intel
  767. 6300ESB controller hub.
  768. To compile this driver as a module, choose M here: the
  769. module will be called i6300esb.
  770. config IE6XX_WDT
  771. tristate "Intel Atom E6xx Watchdog"
  772. depends on X86 && PCI
  773. select WATCHDOG_CORE
  774. select MFD_CORE
  775. select LPC_SCH
  776. ---help---
  777. Hardware driver for the watchdog timer built into the Intel
  778. Atom E6XX (TunnelCreek) processor.
  779. To compile this driver as a module, choose M here: the
  780. module will be called ie6xx_wdt.
  781. config INTEL_SCU_WATCHDOG
  782. bool "Intel SCU Watchdog for Mobile Platforms"
  783. depends on X86_INTEL_MID
  784. ---help---
  785. Hardware driver for the watchdog time built into the Intel SCU
  786. for Intel Mobile Platforms.
  787. To compile this driver as a module, choose M here.
  788. config INTEL_MID_WATCHDOG
  789. tristate "Intel MID Watchdog Timer"
  790. depends on X86_INTEL_MID
  791. select WATCHDOG_CORE
  792. ---help---
  793. Watchdog timer driver built into the Intel SCU for Intel MID
  794. Platforms.
  795. This driver currently supports only the watchdog evolution
  796. implementation in SCU, available for Merrifield generation.
  797. To compile this driver as a module, choose M here.
  798. config ITCO_WDT
  799. tristate "Intel TCO Timer/Watchdog"
  800. depends on (X86 || IA64) && PCI
  801. select WATCHDOG_CORE
  802. depends on I2C || I2C=n
  803. select LPC_ICH if !EXPERT
  804. select I2C_I801 if !EXPERT && I2C
  805. ---help---
  806. Hardware driver for the intel TCO timer based watchdog devices.
  807. These drivers are included in the Intel 82801 I/O Controller
  808. Hub family (from ICH0 up to ICH10) and in the Intel 63xxESB
  809. controller hub.
  810. The TCO (Total Cost of Ownership) timer is a watchdog timer
  811. that will reboot the machine after its second expiration. The
  812. expiration time can be configured with the "heartbeat" parameter.
  813. On some motherboards the driver may fail to reset the chipset's
  814. NO_REBOOT flag which prevents the watchdog from rebooting the
  815. machine. If this is the case you will get a kernel message like
  816. "failed to reset NO_REBOOT flag, reboot disabled by hardware".
  817. To compile this driver as a module, choose M here: the
  818. module will be called iTCO_wdt.
  819. config ITCO_VENDOR_SUPPORT
  820. bool "Intel TCO Timer/Watchdog Specific Vendor Support"
  821. depends on ITCO_WDT
  822. ---help---
  823. Add vendor specific support to the intel TCO timer based watchdog
  824. devices. At this moment we only have additional support for some
  825. SuperMicro Inc. motherboards.
  826. config IT8712F_WDT
  827. tristate "IT8712F (Smart Guardian) Watchdog Timer"
  828. depends on X86
  829. ---help---
  830. This is the driver for the built-in watchdog timer on the IT8712F
  831. Super I/0 chipset used on many motherboards.
  832. If the driver does not work, then make sure that the game port in
  833. the BIOS is enabled.
  834. To compile this driver as a module, choose M here: the
  835. module will be called it8712f_wdt.
  836. config IT87_WDT
  837. tristate "IT87 Watchdog Timer"
  838. depends on X86
  839. ---help---
  840. This is the driver for the hardware watchdog on the ITE IT8702,
  841. IT8712, IT8716, IT8718, IT8720, IT8721, IT8726 and IT8728
  842. Super I/O chips.
  843. If the driver does not work, then make sure that the game port in
  844. the BIOS is enabled.
  845. This watchdog simply watches your kernel to make sure it doesn't
  846. freeze, and if it does, it reboots your computer after a certain
  847. amount of time.
  848. To compile this driver as a module, choose M here: the module will
  849. be called it87_wdt.
  850. config HP_WATCHDOG
  851. tristate "HP ProLiant iLO2+ Hardware Watchdog Timer"
  852. depends on X86 && PCI
  853. help
  854. A software monitoring watchdog and NMI sourcing driver. This driver
  855. will detect lockups and provide a stack trace. This is a driver that
  856. will only load on an HP ProLiant system with a minimum of iLO2 support.
  857. To compile this driver as a module, choose M here: the module will be
  858. called hpwdt.
  859. config KEMPLD_WDT
  860. tristate "Kontron COM Watchdog Timer"
  861. depends on MFD_KEMPLD
  862. select WATCHDOG_CORE
  863. help
  864. Support for the PLD watchdog on some Kontron ETX and COMexpress
  865. (ETXexpress) modules
  866. This driver can also be built as a module. If so, the module will be
  867. called kempld_wdt.
  868. config HPWDT_NMI_DECODING
  869. bool "NMI decoding support for the HP ProLiant iLO2+ Hardware Watchdog Timer"
  870. depends on HP_WATCHDOG
  871. default y
  872. help
  873. When an NMI occurs this feature will make the necessary BIOS calls to
  874. log the cause of the NMI.
  875. config SC1200_WDT
  876. tristate "National Semiconductor PC87307/PC97307 (ala SC1200) Watchdog"
  877. depends on X86
  878. help
  879. This is a driver for National Semiconductor PC87307/PC97307 hardware
  880. watchdog cards as found on the SC1200. This watchdog is mainly used
  881. for power management purposes and can be used to power down the device
  882. during inactivity periods (includes interrupt activity monitoring).
  883. To compile this driver as a module, choose M here: the
  884. module will be called sc1200wdt.
  885. Most people will say N.
  886. config SCx200_WDT
  887. tristate "National Semiconductor SCx200 Watchdog"
  888. depends on SCx200 && PCI
  889. help
  890. Enable the built-in watchdog timer support on the National
  891. Semiconductor SCx200 processors.
  892. If compiled as a module, it will be called scx200_wdt.
  893. config PC87413_WDT
  894. tristate "NS PC87413 watchdog"
  895. depends on X86
  896. ---help---
  897. This is the driver for the hardware watchdog on the PC87413 chipset
  898. This watchdog simply watches your kernel to make sure it doesn't
  899. freeze, and if it does, it reboots your computer after a certain
  900. amount of time.
  901. To compile this driver as a module, choose M here: the
  902. module will be called pc87413_wdt.
  903. Most people will say N.
  904. config NV_TCO
  905. tristate "nVidia TCO Timer/Watchdog"
  906. depends on X86 && PCI
  907. ---help---
  908. Hardware driver for the TCO timer built into the nVidia Hub family
  909. (such as the MCP51). The TCO (Total Cost of Ownership) timer is a
  910. watchdog timer that will reboot the machine after its second
  911. expiration. The expiration time can be configured with the
  912. "heartbeat" parameter.
  913. On some motherboards the driver may fail to reset the chipset's
  914. NO_REBOOT flag which prevents the watchdog from rebooting the
  915. machine. If this is the case you will get a kernel message like
  916. "failed to reset NO_REBOOT flag, reboot disabled by hardware".
  917. To compile this driver as a module, choose M here: the
  918. module will be called nv_tco.
  919. config RDC321X_WDT
  920. tristate "RDC R-321x SoC watchdog"
  921. depends on X86_RDC321X
  922. help
  923. This is the driver for the built in hardware watchdog
  924. in the RDC R-321x SoC.
  925. To compile this driver as a module, choose M here: the
  926. module will be called rdc321x_wdt.
  927. config 60XX_WDT
  928. tristate "SBC-60XX Watchdog Timer"
  929. depends on X86
  930. help
  931. This driver can be used with the watchdog timer found on some
  932. single board computers, namely the 6010 PII based computer.
  933. It may well work with other cards. It reads port 0x443 to enable
  934. and re-set the watchdog timer, and reads port 0x45 to disable
  935. the watchdog. If you have a card that behave in similar ways,
  936. you can probably make this driver work with your card as well.
  937. You can compile this driver directly into the kernel, or use
  938. it as a module. The module will be called sbc60xxwdt.
  939. config SBC8360_WDT
  940. tristate "SBC8360 Watchdog Timer"
  941. depends on X86_32
  942. ---help---
  943. This is the driver for the hardware watchdog on the SBC8360 Single
  944. Board Computer produced by Axiomtek Co., Ltd. (www.axiomtek.com).
  945. To compile this driver as a module, choose M here: the
  946. module will be called sbc8360.
  947. Most people will say N.
  948. config SBC7240_WDT
  949. tristate "SBC Nano 7240 Watchdog Timer"
  950. depends on X86_32 && !UML
  951. ---help---
  952. This is the driver for the hardware watchdog found on the IEI
  953. single board computers EPIC Nano 7240 (and likely others). This
  954. watchdog simply watches your kernel to make sure it doesn't freeze,
  955. and if it does, it reboots your computer after a certain amount of
  956. time.
  957. To compile this driver as a module, choose M here: the
  958. module will be called sbc7240_wdt.
  959. config CPU5_WDT
  960. tristate "SMA CPU5 Watchdog"
  961. depends on X86
  962. ---help---
  963. TBD.
  964. To compile this driver as a module, choose M here: the
  965. module will be called cpu5wdt.
  966. config SMSC_SCH311X_WDT
  967. tristate "SMSC SCH311X Watchdog Timer"
  968. depends on X86
  969. ---help---
  970. This is the driver for the hardware watchdog timer on the
  971. SMSC SCH3112, SCH3114 and SCH3116 Super IO chipset
  972. (LPC IO with 8042 KBC, Reset Generation, HWM and multiple
  973. serial ports).
  974. To compile this driver as a module, choose M here: the
  975. module will be called sch311x_wdt.
  976. config SMSC37B787_WDT
  977. tristate "Winbond SMsC37B787 Watchdog Timer"
  978. depends on X86
  979. ---help---
  980. This is the driver for the hardware watchdog component on the
  981. Winbond SMsC37B787 chipset as used on the NetRunner Mainboard
  982. from Vision Systems and maybe others.
  983. This watchdog simply watches your kernel to make sure it doesn't
  984. freeze, and if it does, it reboots your computer after a certain
  985. amount of time.
  986. Usually a userspace daemon will notify the kernel WDT driver that
  987. userspace is still alive, at regular intervals.
  988. To compile this driver as a module, choose M here: the
  989. module will be called smsc37b787_wdt.
  990. Most people will say N.
  991. config VIA_WDT
  992. tristate "VIA Watchdog Timer"
  993. depends on X86 && PCI
  994. select WATCHDOG_CORE
  995. ---help---
  996. This is the driver for the hardware watchdog timer on VIA
  997. southbridge chipset CX700, VX800/VX820 or VX855/VX875.
  998. To compile this driver as a module, choose M here; the module
  999. will be called via_wdt.
  1000. Most people will say N.
  1001. config W83627HF_WDT
  1002. tristate "Watchdog timer for W83627HF/W83627DHG and compatibles"
  1003. depends on X86
  1004. select WATCHDOG_CORE
  1005. ---help---
  1006. This is the driver for the hardware watchdog on the following
  1007. Super I/O chips.
  1008. W83627DHG/DHG-P/EHF/EHG/F/G/HF/S/SF/THF/UHG/UG
  1009. W83637HF
  1010. W83667HG/HG-B
  1011. W83687THF
  1012. W83697HF
  1013. W83697UG
  1014. NCT6775
  1015. NCT6776
  1016. NCT6779
  1017. NCT6791
  1018. NCT6792
  1019. NCT6102D/04D/06D
  1020. This watchdog simply watches your kernel to make sure it doesn't
  1021. freeze, and if it does, it reboots your computer after a certain
  1022. amount of time.
  1023. To compile this driver as a module, choose M here: the
  1024. module will be called w83627hf_wdt.
  1025. Most people will say N.
  1026. config W83877F_WDT
  1027. tristate "W83877F (EMACS) Watchdog Timer"
  1028. depends on X86
  1029. ---help---
  1030. This is the driver for the hardware watchdog on the W83877F chipset
  1031. as used in EMACS PC-104 motherboards (and likely others). This
  1032. watchdog simply watches your kernel to make sure it doesn't freeze,
  1033. and if it does, it reboots your computer after a certain amount of
  1034. time.
  1035. To compile this driver as a module, choose M here: the
  1036. module will be called w83877f_wdt.
  1037. Most people will say N.
  1038. config W83977F_WDT
  1039. tristate "W83977F (PCM-5335) Watchdog Timer"
  1040. depends on X86
  1041. ---help---
  1042. This is the driver for the hardware watchdog on the W83977F I/O chip
  1043. as used in AAEON's PCM-5335 SBC (and likely others). This
  1044. watchdog simply watches your kernel to make sure it doesn't freeze,
  1045. and if it does, it reboots your computer after a certain amount of
  1046. time.
  1047. To compile this driver as a module, choose M here: the
  1048. module will be called w83977f_wdt.
  1049. config MACHZ_WDT
  1050. tristate "ZF MachZ Watchdog"
  1051. depends on X86
  1052. ---help---
  1053. If you are using a ZF Micro MachZ processor, say Y here, otherwise
  1054. N. This is the driver for the watchdog timer built-in on that
  1055. processor using ZF-Logic interface. This watchdog simply watches
  1056. your kernel to make sure it doesn't freeze, and if it does, it
  1057. reboots your computer after a certain amount of time.
  1058. To compile this driver as a module, choose M here: the
  1059. module will be called machzwd.
  1060. config SBC_EPX_C3_WATCHDOG
  1061. tristate "Winsystems SBC EPX-C3 watchdog"
  1062. depends on X86
  1063. ---help---
  1064. This is the driver for the built-in watchdog timer on the EPX-C3
  1065. Single-board computer made by Winsystems, Inc.
  1066. *Note*: This hardware watchdog is not probeable and thus there
  1067. is no way to know if writing to its IO address will corrupt
  1068. your system or have any real effect. The only way to be sure
  1069. that this driver does what you want is to make sure you
  1070. are running it on an EPX-C3 from Winsystems with the watchdog
  1071. timer at IO address 0x1ee and 0x1ef. It will write to both those
  1072. IO ports. Basically, the assumption is made that if you compile
  1073. this driver into your kernel and/or load it as a module, that you
  1074. know what you are doing and that you are in fact running on an
  1075. EPX-C3 board!
  1076. To compile this driver as a module, choose M here: the
  1077. module will be called sbc_epx_c3.
  1078. config INTEL_MEI_WDT
  1079. tristate "Intel MEI iAMT Watchdog"
  1080. depends on INTEL_MEI && X86
  1081. select WATCHDOG_CORE
  1082. ---help---
  1083. A device driver for the Intel MEI iAMT watchdog.
  1084. The Intel AMT Watchdog is an OS Health (Hang/Crash) watchdog.
  1085. Whenever the OS hangs or crashes, iAMT will send an event
  1086. to any subscriber to this event. The watchdog doesn't reset the
  1087. the platform.
  1088. To compile this driver as a module, choose M here:
  1089. the module will be called mei_wdt.
  1090. config NI903X_WDT
  1091. tristate "NI 903x/913x Watchdog"
  1092. depends on X86 && ACPI
  1093. select WATCHDOG_CORE
  1094. ---help---
  1095. This is the driver for the watchdog timer on the National Instruments
  1096. 903x/913x real-time controllers.
  1097. To compile this driver as a module, choose M here: the module will be
  1098. called ni903x_wdt.
  1099. # M32R Architecture
  1100. # M68K Architecture
  1101. config M54xx_WATCHDOG
  1102. tristate "MCF54xx watchdog support"
  1103. depends on M548x
  1104. help
  1105. To compile this driver as a module, choose M here: the
  1106. module will be called m54xx_wdt.
  1107. # MicroBlaze Architecture
  1108. # MIPS Architecture
  1109. config ATH79_WDT
  1110. tristate "Atheros AR71XX/AR724X/AR913X hardware watchdog"
  1111. depends on ATH79
  1112. help
  1113. Hardware driver for the built-in watchdog timer on the Atheros
  1114. AR71XX/AR724X/AR913X SoCs.
  1115. config BCM47XX_WDT
  1116. tristate "Broadcom BCM47xx Watchdog Timer"
  1117. depends on BCM47XX || ARCH_BCM_5301X
  1118. select WATCHDOG_CORE
  1119. help
  1120. Hardware driver for the Broadcom BCM47xx Watchdog Timer.
  1121. config RC32434_WDT
  1122. tristate "IDT RC32434 SoC Watchdog Timer"
  1123. depends on MIKROTIK_RB532
  1124. help
  1125. Hardware driver for the IDT RC32434 SoC built-in
  1126. watchdog timer.
  1127. To compile this driver as a module, choose M here: the
  1128. module will be called rc32434_wdt.
  1129. config INDYDOG
  1130. tristate "Indy/I2 Hardware Watchdog"
  1131. depends on SGI_HAS_INDYDOG
  1132. help
  1133. Hardware driver for the Indy's/I2's watchdog. This is a
  1134. watchdog timer that will reboot the machine after a 60 second
  1135. timer expired and no process has written to /dev/watchdog during
  1136. that time.
  1137. config JZ4740_WDT
  1138. tristate "Ingenic jz4740 SoC hardware watchdog"
  1139. depends on MACH_JZ4740
  1140. select WATCHDOG_CORE
  1141. help
  1142. Hardware driver for the built-in watchdog timer on Ingenic jz4740 SoCs.
  1143. config WDT_MTX1
  1144. tristate "MTX-1 Hardware Watchdog"
  1145. depends on MIPS_MTX1
  1146. help
  1147. Hardware driver for the MTX-1 boards. This is a watchdog timer that
  1148. will reboot the machine after a 100 seconds timer expired.
  1149. config PNX833X_WDT
  1150. tristate "PNX833x Hardware Watchdog"
  1151. depends on SOC_PNX8335
  1152. help
  1153. Hardware driver for the PNX833x's watchdog. This is a
  1154. watchdog timer that will reboot the machine after a programmable
  1155. timer has expired and no process has written to /dev/watchdog during
  1156. that time.
  1157. config SIBYTE_WDOG
  1158. tristate "Sibyte SoC hardware watchdog"
  1159. depends on CPU_SB1
  1160. help
  1161. Watchdog driver for the built in watchdog hardware in Sibyte
  1162. SoC processors. There are apparently two watchdog timers
  1163. on such processors; this driver supports only the first one,
  1164. because currently Linux only supports exporting one watchdog
  1165. to userspace.
  1166. To compile this driver as a loadable module, choose M here.
  1167. The module will be called sb_wdog.
  1168. config AR7_WDT
  1169. tristate "TI AR7 Watchdog Timer"
  1170. depends on AR7
  1171. help
  1172. Hardware driver for the TI AR7 Watchdog Timer.
  1173. config TXX9_WDT
  1174. tristate "Toshiba TXx9 Watchdog Timer"
  1175. depends on CPU_TX39XX || CPU_TX49XX
  1176. select WATCHDOG_CORE
  1177. help
  1178. Hardware driver for the built-in watchdog timer on TXx9 MIPS SoCs.
  1179. config OCTEON_WDT
  1180. tristate "Cavium OCTEON SOC family Watchdog Timer"
  1181. depends on CAVIUM_OCTEON_SOC
  1182. default y
  1183. select WATCHDOG_CORE
  1184. select EXPORT_UASM if OCTEON_WDT = m
  1185. help
  1186. Hardware driver for OCTEON's on chip watchdog timer.
  1187. Enables the watchdog for all cores running Linux. It
  1188. installs a NMI handler and pokes the watchdog based on an
  1189. interrupt. On first expiration of the watchdog, the
  1190. interrupt handler pokes it. The second expiration causes an
  1191. NMI that prints a message. The third expiration causes a
  1192. global soft reset.
  1193. When userspace has /dev/watchdog open, no poking is done
  1194. from the first interrupt, it is then only poked when the
  1195. device is written.
  1196. config BCM63XX_WDT
  1197. tristate "Broadcom BCM63xx hardware watchdog"
  1198. depends on BCM63XX
  1199. help
  1200. Watchdog driver for the built in watchdog hardware in Broadcom
  1201. BCM63xx SoC.
  1202. To compile this driver as a loadable module, choose M here.
  1203. The module will be called bcm63xx_wdt.
  1204. config BCM2835_WDT
  1205. tristate "Broadcom BCM2835 hardware watchdog"
  1206. depends on ARCH_BCM2835
  1207. select WATCHDOG_CORE
  1208. help
  1209. Watchdog driver for the built in watchdog hardware in Broadcom
  1210. BCM2835 SoC.
  1211. To compile this driver as a loadable module, choose M here.
  1212. The module will be called bcm2835_wdt.
  1213. config BCM_KONA_WDT
  1214. tristate "BCM Kona Watchdog"
  1215. depends on ARCH_BCM_MOBILE
  1216. select WATCHDOG_CORE
  1217. help
  1218. Support for the watchdog timer on the following Broadcom BCM281xx
  1219. family, which includes BCM11130, BCM11140, BCM11351, BCM28145 and
  1220. BCM28155 variants.
  1221. Say 'Y' or 'M' here to enable the driver. The module will be called
  1222. bcm_kona_wdt.
  1223. config BCM_KONA_WDT_DEBUG
  1224. bool "DEBUGFS support for BCM Kona Watchdog"
  1225. depends on BCM_KONA_WDT
  1226. help
  1227. If enabled, adds /sys/kernel/debug/bcm_kona_wdt/info which provides
  1228. access to the driver's internal data structures as well as watchdog
  1229. timer hardware registres.
  1230. If in doubt, say 'N'.
  1231. config BCM7038_WDT
  1232. tristate "BCM7038 Watchdog"
  1233. select WATCHDOG_CORE
  1234. depends on HAS_IOMEM
  1235. depends on ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST
  1236. help
  1237. Watchdog driver for the built-in hardware in Broadcom 7038 and
  1238. later SoCs used in set-top boxes. BCM7038 was made public
  1239. during the 2004 CES, and since then, many Broadcom chips use this
  1240. watchdog block, including some cable modem chips.
  1241. config IMGPDC_WDT
  1242. tristate "Imagination Technologies PDC Watchdog Timer"
  1243. depends on HAS_IOMEM
  1244. depends on METAG || MIPS || COMPILE_TEST
  1245. select WATCHDOG_CORE
  1246. help
  1247. Driver for Imagination Technologies PowerDown Controller
  1248. Watchdog Timer.
  1249. To compile this driver as a loadable module, choose M here.
  1250. The module will be called imgpdc_wdt.
  1251. config LANTIQ_WDT
  1252. tristate "Lantiq SoC watchdog"
  1253. depends on LANTIQ
  1254. help
  1255. Hardware driver for the Lantiq SoC Watchdog Timer.
  1256. config RALINK_WDT
  1257. tristate "Ralink SoC watchdog"
  1258. select WATCHDOG_CORE
  1259. depends on RALINK
  1260. help
  1261. Hardware driver for the Ralink SoC Watchdog Timer.
  1262. config MT7621_WDT
  1263. tristate "Mediatek SoC watchdog"
  1264. select WATCHDOG_CORE
  1265. depends on SOC_MT7620 || SOC_MT7621
  1266. help
  1267. Hardware driver for the Mediatek/Ralink MT7621/8 SoC Watchdog Timer.
  1268. config PIC32_WDT
  1269. tristate "Microchip PIC32 hardware watchdog"
  1270. select WATCHDOG_CORE
  1271. depends on MACH_PIC32
  1272. help
  1273. Watchdog driver for the built in watchdog hardware in a PIC32.
  1274. Configuration bits must be set appropriately for the watchdog to be
  1275. controlled by this driver.
  1276. To compile this driver as a loadable module, choose M here.
  1277. The module will be called pic32-wdt.
  1278. config PIC32_DMT
  1279. tristate "Microchip PIC32 Deadman Timer"
  1280. select WATCHDOG_CORE
  1281. depends on MACH_PIC32
  1282. help
  1283. Watchdog driver for PIC32 instruction fetch counting timer. This specific
  1284. timer is typically be used in misson critical and safety critical
  1285. applications, where any single failure of the software functionality
  1286. and sequencing must be detected.
  1287. To compile this driver as a loadable module, choose M here.
  1288. The module will be called pic32-dmt.
  1289. # PARISC Architecture
  1290. # POWERPC Architecture
  1291. config GEF_WDT
  1292. tristate "GE Watchdog Timer"
  1293. depends on GE_FPGA
  1294. ---help---
  1295. Watchdog timer found in a number of GE single board computers.
  1296. config MPC5200_WDT
  1297. bool "MPC52xx Watchdog Timer"
  1298. depends on PPC_MPC52xx
  1299. help
  1300. Use General Purpose Timer (GPT) 0 on the MPC5200 as Watchdog.
  1301. config 8xxx_WDT
  1302. tristate "MPC8xxx Platform Watchdog Timer"
  1303. depends on PPC_8xx || PPC_83xx || PPC_86xx || PPC_MPC512x
  1304. select WATCHDOG_CORE
  1305. help
  1306. This driver is for a SoC level watchdog that exists on some
  1307. Freescale PowerPC processors. So far this driver supports:
  1308. - MPC8xx watchdogs
  1309. - MPC83xx watchdogs
  1310. - MPC86xx watchdogs
  1311. For BookE processors (MPC85xx) use the BOOKE_WDT driver instead.
  1312. config MV64X60_WDT
  1313. tristate "MV64X60 (Marvell Discovery) Watchdog Timer"
  1314. depends on MV64X60
  1315. config PIKA_WDT
  1316. tristate "PIKA FPGA Watchdog"
  1317. depends on WARP
  1318. default y
  1319. help
  1320. This enables the watchdog in the PIKA FPGA. Currently used on
  1321. the Warp platform.
  1322. config BOOKE_WDT
  1323. tristate "PowerPC Book-E Watchdog Timer"
  1324. depends on BOOKE || 4xx
  1325. select WATCHDOG_CORE
  1326. ---help---
  1327. Watchdog driver for PowerPC Book-E chips, such as the Freescale
  1328. MPC85xx SOCs and the IBM PowerPC 440.
  1329. Please see Documentation/watchdog/watchdog-api.txt for
  1330. more information.
  1331. config BOOKE_WDT_DEFAULT_TIMEOUT
  1332. int "PowerPC Book-E Watchdog Timer Default Timeout"
  1333. depends on BOOKE_WDT
  1334. default 38 if PPC_FSL_BOOK3E
  1335. range 0 63 if PPC_FSL_BOOK3E
  1336. default 3 if !PPC_FSL_BOOK3E
  1337. range 0 3 if !PPC_FSL_BOOK3E
  1338. help
  1339. Select the default watchdog timer period to be used by the PowerPC
  1340. Book-E watchdog driver. A watchdog "event" occurs when the bit
  1341. position represented by this number transitions from zero to one.
  1342. For Freescale Book-E processors, this is a number between 0 and 63.
  1343. For other Book-E processors, this is a number between 0 and 3.
  1344. The value can be overridden by the wdt_period command-line parameter.
  1345. config MEN_A21_WDT
  1346. tristate "MEN A21 VME CPU Carrier Board Watchdog Timer"
  1347. select WATCHDOG_CORE
  1348. depends on GPIOLIB || COMPILE_TEST
  1349. help
  1350. Watchdog driver for MEN A21 VMEbus CPU Carrier Boards.
  1351. The driver can also be built as a module. If so, the module will be
  1352. called mena21_wdt.
  1353. If unsure select N here.
  1354. # PPC64 Architecture
  1355. config WATCHDOG_RTAS
  1356. tristate "RTAS watchdog"
  1357. depends on PPC_RTAS
  1358. help
  1359. This driver adds watchdog support for the RTAS watchdog.
  1360. To compile this driver as a module, choose M here. The module
  1361. will be called wdrtas.
  1362. # S390 Architecture
  1363. config DIAG288_WATCHDOG
  1364. tristate "System z diag288 Watchdog"
  1365. depends on S390
  1366. select WATCHDOG_CORE
  1367. help
  1368. IBM s/390 and zSeries machines running under z/VM 5.1 or later
  1369. provide a virtual watchdog timer to their guest that cause a
  1370. user define Control Program command to be executed after a
  1371. timeout.
  1372. LPAR provides a very similar interface. This driver handles
  1373. both.
  1374. To compile this driver as a module, choose M here. The module
  1375. will be called diag288_wdt.
  1376. # SUPERH (sh + sh64) Architecture
  1377. config SH_WDT
  1378. tristate "SuperH Watchdog"
  1379. depends on SUPERH && (CPU_SH3 || CPU_SH4)
  1380. select WATCHDOG_CORE
  1381. help
  1382. This driver adds watchdog support for the integrated watchdog in the
  1383. SuperH processors. If you have one of these processors and wish
  1384. to have watchdog support enabled, say Y, otherwise say N.
  1385. As a side note, saying Y here will automatically boost HZ to 1000
  1386. so that the timer has a chance to clear the overflow counter. On
  1387. slower systems (such as the SH-2 and SH-3) this will likely yield
  1388. some performance issues. As such, the WDT should be avoided here
  1389. unless it is absolutely necessary.
  1390. To compile this driver as a module, choose M here: the
  1391. module will be called shwdt.
  1392. # SPARC Architecture
  1393. # SPARC64 Architecture
  1394. config WATCHDOG_CP1XXX
  1395. tristate "CP1XXX Hardware Watchdog support"
  1396. depends on SPARC64 && PCI
  1397. ---help---
  1398. This is the driver for the hardware watchdog timers present on
  1399. Sun Microsystems CompactPCI models CP1400 and CP1500.
  1400. To compile this driver as a module, choose M here: the
  1401. module will be called cpwatchdog.
  1402. If you do not have a CompactPCI model CP1400 or CP1500, or
  1403. another UltraSPARC-IIi-cEngine boardset with hardware watchdog,
  1404. you should say N to this option.
  1405. config WATCHDOG_RIO
  1406. tristate "RIO Hardware Watchdog support"
  1407. depends on SPARC64 && PCI
  1408. help
  1409. Say Y here to support the hardware watchdog capability on Sun RIO
  1410. machines. The watchdog timeout period is normally one minute but
  1411. can be changed with a boot-time parameter.
  1412. config WATCHDOG_SUN4V
  1413. tristate "Sun4v Watchdog support"
  1414. select WATCHDOG_CORE
  1415. depends on SPARC64
  1416. help
  1417. Say Y here to support the hypervisor watchdog capability embedded
  1418. in the SPARC sun4v architecture.
  1419. To compile this driver as a module, choose M here. The module will
  1420. be called sun4v_wdt.
  1421. # XTENSA Architecture
  1422. # Xen Architecture
  1423. config XEN_WDT
  1424. tristate "Xen Watchdog support"
  1425. depends on XEN
  1426. help
  1427. Say Y here to support the hypervisor watchdog capability provided
  1428. by Xen 4.0 and newer. The watchdog timeout period is normally one
  1429. minute but can be changed with a boot-time parameter.
  1430. config UML_WATCHDOG
  1431. tristate "UML watchdog"
  1432. depends on UML
  1433. #
  1434. # ISA-based Watchdog Cards
  1435. #
  1436. comment "ISA-based Watchdog Cards"
  1437. depends on ISA
  1438. config PCWATCHDOG
  1439. tristate "Berkshire Products ISA-PC Watchdog"
  1440. depends on ISA
  1441. ---help---
  1442. This is the driver for the Berkshire Products ISA-PC Watchdog card.
  1443. This card simply watches your kernel to make sure it doesn't freeze,
  1444. and if it does, it reboots your computer after a certain amount of
  1445. time. This driver is like the WDT501 driver but for different
  1446. hardware. Please read <file:Documentation/watchdog/pcwd-watchdog.txt>. The PC
  1447. watchdog cards can be ordered from <http://www.berkprod.com/>.
  1448. To compile this driver as a module, choose M here: the
  1449. module will be called pcwd.
  1450. Most people will say N.
  1451. config MIXCOMWD
  1452. tristate "Mixcom Watchdog"
  1453. depends on ISA
  1454. ---help---
  1455. This is a driver for the Mixcom hardware watchdog cards. This
  1456. watchdog simply watches your kernel to make sure it doesn't freeze,
  1457. and if it does, it reboots your computer after a certain amount of
  1458. time.
  1459. To compile this driver as a module, choose M here: the
  1460. module will be called mixcomwd.
  1461. Most people will say N.
  1462. config WDT
  1463. tristate "WDT Watchdog timer"
  1464. depends on ISA
  1465. ---help---
  1466. If you have a WDT500P or WDT501P watchdog board, say Y here,
  1467. otherwise N. It is not possible to probe for this board, which means
  1468. that you have to inform the kernel about the IO port and IRQ that
  1469. is needed (you can do this via the io and irq parameters)
  1470. To compile this driver as a module, choose M here: the
  1471. module will be called wdt.
  1472. #
  1473. # PCI-based Watchdog Cards
  1474. #
  1475. comment "PCI-based Watchdog Cards"
  1476. depends on PCI
  1477. config PCIPCWATCHDOG
  1478. tristate "Berkshire Products PCI-PC Watchdog"
  1479. depends on PCI
  1480. ---help---
  1481. This is the driver for the Berkshire Products PCI-PC Watchdog card.
  1482. This card simply watches your kernel to make sure it doesn't freeze,
  1483. and if it does, it reboots your computer after a certain amount of
  1484. time. The card can also monitor the internal temperature of the PC.
  1485. More info is available at <http://www.berkprod.com/pci_pc_watchdog.htm>.
  1486. To compile this driver as a module, choose M here: the
  1487. module will be called pcwd_pci.
  1488. Most people will say N.
  1489. config WDTPCI
  1490. tristate "PCI-WDT500/501 Watchdog timer"
  1491. depends on PCI
  1492. ---help---
  1493. If you have a PCI-WDT500/501 watchdog board, say Y here, otherwise N.
  1494. If you have a PCI-WDT501 watchdog board then you can enable the
  1495. temperature sensor by setting the type parameter to 501.
  1496. If you want to enable the Fan Tachometer on the PCI-WDT501, then you
  1497. can do this via the tachometer parameter. Only do this if you have a
  1498. fan tachometer actually set up.
  1499. To compile this driver as a module, choose M here: the
  1500. module will be called wdt_pci.
  1501. #
  1502. # USB-based Watchdog Cards
  1503. #
  1504. comment "USB-based Watchdog Cards"
  1505. depends on USB
  1506. config USBPCWATCHDOG
  1507. tristate "Berkshire Products USB-PC Watchdog"
  1508. depends on USB
  1509. ---help---
  1510. This is the driver for the Berkshire Products USB-PC Watchdog card.
  1511. This card simply watches your kernel to make sure it doesn't freeze,
  1512. and if it does, it reboots your computer after a certain amount of
  1513. time. The card can also monitor the internal temperature of the PC.
  1514. More info is available at <http://www.berkprod.com/usb_pc_watchdog.htm>.
  1515. To compile this driver as a module, choose M here: the
  1516. module will be called pcwd_usb.
  1517. Most people will say N.
  1518. comment "Watchdog Pretimeout Governors"
  1519. config WATCHDOG_PRETIMEOUT_GOV
  1520. bool "Enable watchdog pretimeout governors"
  1521. help
  1522. The option allows to select watchdog pretimeout governors.
  1523. if WATCHDOG_PRETIMEOUT_GOV
  1524. choice
  1525. prompt "Default Watchdog Pretimeout Governor"
  1526. default WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC
  1527. help
  1528. This option selects a default watchdog pretimeout governor.
  1529. The governor takes its action, if a watchdog is capable
  1530. to report a pretimeout event.
  1531. config WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP
  1532. bool "noop"
  1533. select WATCHDOG_PRETIMEOUT_GOV_NOOP
  1534. help
  1535. Use noop watchdog pretimeout governor by default. If noop
  1536. governor is selected by a user, write a short message to
  1537. the kernel log buffer and don't do any system changes.
  1538. config WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC
  1539. bool "panic"
  1540. select WATCHDOG_PRETIMEOUT_GOV_PANIC
  1541. help
  1542. Use panic watchdog pretimeout governor by default, if
  1543. a watchdog pretimeout event happens, consider that
  1544. a watchdog feeder is dead and reboot is unavoidable.
  1545. endchoice
  1546. config WATCHDOG_PRETIMEOUT_GOV_NOOP
  1547. tristate "Noop watchdog pretimeout governor"
  1548. help
  1549. Noop watchdog pretimeout governor, only an informational
  1550. message is added to kernel log buffer.
  1551. config WATCHDOG_PRETIMEOUT_GOV_PANIC
  1552. tristate "Panic watchdog pretimeout governor"
  1553. help
  1554. Panic watchdog pretimeout governor, on watchdog pretimeout
  1555. event put the kernel into panic.
  1556. endif # WATCHDOG_PRETIMEOUT_GOV
  1557. endif # WATCHDOG