diff options
author | Andrew F. Davis <afd@ti.com> | 2016-06-27 12:12:17 -0500 |
---|---|---|
committer | Philipp Zabel <p.zabel@pengutronix.de> | 2016-06-29 23:39:10 +0200 |
commit | cc7c2bb1493c4118d5ae69e350a405faf3ddfb89 (patch) | |
tree | 4983259634a033ddc5d8220fa98662cd24c6f0d1 /drivers/reset/Kconfig | |
parent | a3828519c39aa9c85bae14bad2572d12dc0d1da6 (diff) | |
download | op-kernel-dev-cc7c2bb1493c4118d5ae69e350a405faf3ddfb89.zip op-kernel-dev-cc7c2bb1493c4118d5ae69e350a405faf3ddfb89.tar.gz |
reset: add TI SYSCON based reset driver
Add a reset-controller driver for performing reset management of
various devices present on the SoC, with the reset registers shared
between devices in a common register memory space. This driver uses
the syscon/regmap frameworks to actually implement the various reset
functionalities needed by the reset consumer devices.
Signed-off-by: Andrew F. Davis <afd@ti.com>
[s-anna@ti.com: add documentation, syscon name change]
Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Diffstat (limited to 'drivers/reset/Kconfig')
-rw-r--r-- | drivers/reset/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig index ab37f4d..4be1b8c 100644 --- a/drivers/reset/Kconfig +++ b/drivers/reset/Kconfig @@ -17,6 +17,16 @@ if RESET_CONTROLLER config RESET_OXNAS bool +config TI_SYSCON_RESET + tristate "TI SYSCON Reset Driver" + depends on HAS_IOMEM + select MFD_SYSCON + help + This enables the reset driver support for TI devices with + memory-mapped reset registers as part of a syscon device node. If + you wish to use the reset framework for such memory-mapped devices, + say Y here. Otherwise, say N. + source "drivers/reset/sti/Kconfig" source "drivers/reset/hisilicon/Kconfig" |