aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/reset/Kconfig
diff options
context:
space:
mode:
authorPhilipp Zabel <p.zabel@pengutronix.de>2013-05-30 05:09:00 -0400
committerNitin Garg <nitin.garg@freescale.com>2014-04-16 09:00:39 -0400
commit27e3604c82cbb1eabe69c1e068339b898b4afc63 (patch)
tree32fc2ba30b1d4b1412650afbf35da92021f70cbd /drivers/reset/Kconfig
parent771a6a3cd224caa6b39cfd6c729834a9d18854d0 (diff)
reset: Add driver for gpio-controlled reset pins
This driver implements a reset controller device that toggle a gpio connected to a reset pin of a peripheral IC. The delay between assertion and de-assertion of the reset signal can be configured via device tree. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Reviewed-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Pavel Machek <pavel@ucw.cz> Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'drivers/reset/Kconfig')
-rw-r--r--drivers/reset/Kconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig
index c9d04f797862..1a862dfe62f6 100644
--- a/drivers/reset/Kconfig
+++ b/drivers/reset/Kconfig
@@ -11,3 +11,14 @@ menuconfig RESET_CONTROLLER
11 via GPIOs or SoC-internal reset controller modules. 11 via GPIOs or SoC-internal reset controller modules.
12 12
13 If unsure, say no. 13 If unsure, say no.
14
15if RESET_CONTROLLER
16
17config RESET_GPIO
18 tristate "GPIO reset controller support"
19 depends on GPIOLIB && OF
20 help
21 This driver provides support for reset lines that are controlled
22 directly by GPIOs.
23
24endif