diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2013-05-30 05:09:00 -0400 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2014-04-16 09:00:39 -0400 |
commit | 27e3604c82cbb1eabe69c1e068339b898b4afc63 (patch) | |
tree | 32fc2ba30b1d4b1412650afbf35da92021f70cbd /drivers/reset/Kconfig | |
parent | 771a6a3cd224caa6b39cfd6c729834a9d18854d0 (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/Kconfig | 11 |
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 | |||
15 | if RESET_CONTROLLER | ||
16 | |||
17 | config 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 | |||
24 | endif | ||