Philipp Zabel | 61fc413 | 2012-11-19 17:23:13 +0100 | [diff] [blame] | 1 | config ARCH_HAS_RESET_CONTROLLER |
| 2 | bool |
| 3 | |
| 4 | menuconfig RESET_CONTROLLER |
| 5 | bool "Reset Controller Support" |
| 6 | default y if ARCH_HAS_RESET_CONTROLLER |
| 7 | help |
| 8 | Generic Reset Controller support. |
| 9 | |
| 10 | This framework is designed to abstract reset handling of devices |
| 11 | via GPIOs or SoC-internal reset controller modules. |
| 12 | |
| 13 | If unsure, say no. |
Stephen Gallimore | e5d7607 | 2013-08-07 15:53:12 +0100 | [diff] [blame] | 14 | |
Masahiro Yamada | 998cd46 | 2016-05-03 15:29:52 +0900 | [diff] [blame] | 15 | if RESET_CONTROLLER |
| 16 | |
Neil Armstrong | 6e667fa | 2016-04-01 16:16:13 +0200 | [diff] [blame] | 17 | config RESET_OXNAS |
| 18 | bool |
| 19 | |
Andrew F. Davis | cc7c2bb | 2016-06-27 12:12:17 -0500 | [diff] [blame] | 20 | config TI_SYSCON_RESET |
| 21 | tristate "TI SYSCON Reset Driver" |
| 22 | depends on HAS_IOMEM |
| 23 | select MFD_SYSCON |
| 24 | help |
| 25 | This enables the reset driver support for TI devices with |
| 26 | memory-mapped reset registers as part of a syscon device node. If |
| 27 | you wish to use the reset framework for such memory-mapped devices, |
| 28 | say Y here. Otherwise, say N. |
| 29 | |
Masahiro Yamada | 54e991b | 2016-08-02 13:18:29 +0900 | [diff] [blame^] | 30 | config RESET_UNIPHIER |
| 31 | tristate "Reset controller driver for UniPhier SoCs" |
| 32 | depends on ARCH_UNIPHIER || COMPILE_TEST |
| 33 | depends on OF && MFD_SYSCON |
| 34 | default ARCH_UNIPHIER |
| 35 | help |
| 36 | Support for reset controllers on UniPhier SoCs. |
| 37 | Say Y if you want to control reset signals provided by System Control |
| 38 | block, Media I/O block, Peripheral Block. |
| 39 | |
Stephen Gallimore | e5d7607 | 2013-08-07 15:53:12 +0100 | [diff] [blame] | 40 | source "drivers/reset/sti/Kconfig" |
Chen Feng | f59d23c | 2015-11-20 10:10:05 +0800 | [diff] [blame] | 41 | source "drivers/reset/hisilicon/Kconfig" |
Masahiro Yamada | 998cd46 | 2016-05-03 15:29:52 +0900 | [diff] [blame] | 42 | |
| 43 | endif |