summaryrefslogtreecommitdiff
path: root/drivers/reset/Kconfig
blob: 1e9bdb21c39a5410b69d091d6f340eba49b21110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
config ARCH_HAS_RESET_CONTROLLER
	bool

menuconfig RESET_CONTROLLER
	bool "Reset Controller Support"
	default y if ARCH_HAS_RESET_CONTROLLER
	help
	  Generic Reset Controller support.

	  This framework is designed to abstract reset handling of devices
	  via GPIOs or SoC-internal reset controller modules.

	  If unsure, say no.

source "drivers/reset/sti/Kconfig"
if RESET_CONTROLLER

config RESET_GPIO
	tristate "GPIO reset controller support"
	default y
	depends on GPIOLIB && OF
	help
	  This driver provides support for reset lines that are controlled
	  directly by GPIOs.

endif