diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-11 18:12:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-11 18:12:59 -0400 |
commit | 51a73ba5f409ef6f419c8ec3a0d1257633500aaa (patch) | |
tree | 7bd3d8c4b9b6de178342bd48636b85da79ddbd18 /drivers/watchdog/Kconfig | |
parent | e91eb6204fb826116453e43d4f5cf0f666bf46fe (diff) | |
parent | 6551881c86c791237a3bebf11eb3bd70b60ea782 (diff) |
Merge git://www.linux-watchdog.org/linux-watchdog
Pull watchdog updates from Wim Van Sebroeck:
- new driver for NXP LPC18xx Watchdog Timer
- new driver for SAMA5D4 watchdog timer
- add support for MCP79 to nv_tco driver
- clean-up and improvement of the mpc8xxx watchdog driver
- improvements to gpio-wdt
- at91sam9_wdt clock improvements
... and other small fixes and improvements
* git://www.linux-watchdog.org/linux-watchdog: (25 commits)
Watchdog: Fix parent of watchdog_devices
watchdog: at91rm9200: Correct check for syscon_node_to_regmap() errors
watchdog: at91sam9: get and use slow clock
Documentation: dt: binding: atmel-sama5d4-wdt: for SAMA5D4 watchdog driver
watchdog: add a driver to support SAMA5D4 watchdog timer
watchdog: mpc8xxx: allow to compile for MPC512x
watchdog: mpc8xxx: use better error code when watchdog cannot be enabled
watchdog: mpc8xxx: use dynamic memory for device specific data
watchdog: mpc8xxx: use devm_ioremap_resource to map memory
watchdog: mpc8xxx: make use of of_device_get_match_data
watchdog: mpc8xxx: simplify registration
watchdog: mpc8xxx: remove dead code
watchdog: lpc18xx_wdt_get_timeleft() can be static
DT: watchdog: Add NXP LPC18xx Watchdog Timer binding documentation
watchdog: NXP LPC18xx Watchdog Timer Driver
watchdog: gpio-wdt: ping already at startup for always running devices
watchdog: gpio-wdt: be more strict about hw_algo matching
Documentation: watchdog: at91sam9_wdt: add clocks property
watchdog: booke_wdt: Use infrastructure to check timeout limits
watchdog: (nv_tco) add support for MCP79
...
Diffstat (limited to 'drivers/watchdog/Kconfig')
-rw-r--r-- | drivers/watchdog/Kconfig | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index 55c4b5b0a317..c68edc16aa54 100644 --- a/drivers/watchdog/Kconfig +++ b/drivers/watchdog/Kconfig | |||
@@ -188,6 +188,15 @@ config AT91SAM9X_WATCHDOG | |||
188 | Watchdog timer embedded into AT91SAM9X and AT91CAP9 chips. This will | 188 | Watchdog timer embedded into AT91SAM9X and AT91CAP9 chips. This will |
189 | reboot your system when the timeout is reached. | 189 | reboot your system when the timeout is reached. |
190 | 190 | ||
191 | config SAMA5D4_WATCHDOG | ||
192 | tristate "Atmel SAMA5D4 Watchdog Timer" | ||
193 | depends on ARCH_AT91 | ||
194 | select WATCHDOG_CORE | ||
195 | help | ||
196 | Atmel SAMA5D4 watchdog timer is embedded into SAMA5D4 chips. | ||
197 | Its Watchdog Timer Mode Register can be written more than once. | ||
198 | This will reboot your system when the timeout is reached. | ||
199 | |||
191 | config CADENCE_WATCHDOG | 200 | config CADENCE_WATCHDOG |
192 | tristate "Cadence Watchdog Timer" | 201 | tristate "Cadence Watchdog Timer" |
193 | depends on HAS_IOMEM | 202 | depends on HAS_IOMEM |
@@ -558,6 +567,17 @@ config DIGICOLOR_WATCHDOG | |||
558 | To compile this driver as a module, choose M here: the | 567 | To compile this driver as a module, choose M here: the |
559 | module will be called digicolor_wdt. | 568 | module will be called digicolor_wdt. |
560 | 569 | ||
570 | config LPC18XX_WATCHDOG | ||
571 | tristate "LPC18xx/43xx Watchdog" | ||
572 | depends on ARCH_LPC18XX || COMPILE_TEST | ||
573 | select WATCHDOG_CORE | ||
574 | help | ||
575 | Say Y here if to include support for the watchdog timer | ||
576 | in NXP LPC SoCs family, which includes LPC18xx/LPC43xx | ||
577 | processors. | ||
578 | To compile this driver as a module, choose M here: the | ||
579 | module will be called lpc18xx_wdt. | ||
580 | |||
561 | # AVR32 Architecture | 581 | # AVR32 Architecture |
562 | 582 | ||
563 | config AT32AP700X_WDT | 583 | config AT32AP700X_WDT |
@@ -1334,7 +1354,7 @@ config MPC5200_WDT | |||
1334 | 1354 | ||
1335 | config 8xxx_WDT | 1355 | config 8xxx_WDT |
1336 | tristate "MPC8xxx Platform Watchdog Timer" | 1356 | tristate "MPC8xxx Platform Watchdog Timer" |
1337 | depends on PPC_8xx || PPC_83xx || PPC_86xx | 1357 | depends on PPC_8xx || PPC_83xx || PPC_86xx || PPC_MPC512x |
1338 | select WATCHDOG_CORE | 1358 | select WATCHDOG_CORE |
1339 | help | 1359 | help |
1340 | This driver is for a SoC level watchdog that exists on some | 1360 | This driver is for a SoC level watchdog that exists on some |