Kconfig 802 字节
Newer Older
P
Philipp Zabel 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
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.
14

15 16
if RESET_CONTROLLER

17 18 19
config RESET_OXNAS
	bool

20 21 22 23 24 25 26 27 28 29
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.

30
source "drivers/reset/sti/Kconfig"
31
source "drivers/reset/hisilicon/Kconfig"
32 33

endif