]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/reset/Kconfig
reset: Add i.MX7 SRC reset driver
[karo-tx-linux.git] / drivers / reset / Kconfig
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.
14
15 if RESET_CONTROLLER
16
17 config RESET_ATH79
18         bool "AR71xx Reset Driver" if COMPILE_TEST
19         default ATH79
20         help
21           This enables the ATH79 reset controller driver that supports the
22           AR71xx SoC reset controller.
23
24 config RESET_BERLIN
25         bool "Berlin Reset Driver" if COMPILE_TEST
26         default ARCH_BERLIN
27         help
28           This enables the reset controller driver for Marvell Berlin SoCs.
29
30 config RESET_IMX7
31         bool "i.MX7 Reset Driver" if COMPILE_TEST
32         default SOC_IMX7D
33         select MFD_SYSCON
34         help
35           This enables the reset controller driver for i.MX7 SoCs.
36
37 config RESET_LPC18XX
38         bool "LPC18xx/43xx Reset Driver" if COMPILE_TEST
39         default ARCH_LPC18XX
40         help
41           This enables the reset controller driver for NXP LPC18xx/43xx SoCs.
42
43 config RESET_MESON
44         bool "Meson Reset Driver" if COMPILE_TEST
45         default ARCH_MESON
46         help
47           This enables the reset driver for Amlogic Meson SoCs.
48
49 config RESET_OXNAS
50         bool
51
52 config RESET_PISTACHIO
53         bool "Pistachio Reset Driver" if COMPILE_TEST
54         default MACH_PISTACHIO
55         help
56           This enables the reset driver for ImgTec Pistachio SoCs.
57
58 config RESET_SOCFPGA
59         bool "SoCFPGA Reset Driver" if COMPILE_TEST
60         default ARCH_SOCFPGA
61         help
62           This enables the reset controller driver for Altera SoCFPGAs.
63
64 config RESET_STM32
65         bool "STM32 Reset Driver" if COMPILE_TEST
66         default ARCH_STM32
67         help
68           This enables the RCC reset controller driver for STM32 MCUs.
69
70 config RESET_SUNXI
71         bool "Allwinner SoCs Reset Driver" if COMPILE_TEST && !ARCH_SUNXI
72         default ARCH_SUNXI
73         help
74           This enables the reset driver for Allwinner SoCs.
75
76 config TI_SYSCON_RESET
77         tristate "TI SYSCON Reset Driver"
78         depends on HAS_IOMEM
79         select MFD_SYSCON
80         help
81           This enables the reset driver support for TI devices with
82           memory-mapped reset registers as part of a syscon device node. If
83           you wish to use the reset framework for such memory-mapped devices,
84           say Y here. Otherwise, say N.
85
86 config RESET_UNIPHIER
87         tristate "Reset controller driver for UniPhier SoCs"
88         depends on ARCH_UNIPHIER || COMPILE_TEST
89         depends on OF && MFD_SYSCON
90         default ARCH_UNIPHIER
91         help
92           Support for reset controllers on UniPhier SoCs.
93           Say Y if you want to control reset signals provided by System Control
94           block, Media I/O block, Peripheral Block.
95
96 config RESET_ZX2967
97         bool "ZTE ZX2967 Reset Driver"
98         depends on ARCH_ZX || COMPILE_TEST
99         help
100           This enables the reset controller driver for ZTE's zx2967 family.
101
102 config RESET_ZYNQ
103         bool "ZYNQ Reset Driver" if COMPILE_TEST
104         default ARCH_ZYNQ
105         help
106           This enables the reset controller driver for Xilinx Zynq SoCs.
107
108 source "drivers/reset/sti/Kconfig"
109 source "drivers/reset/hisilicon/Kconfig"
110 source "drivers/reset/tegra/Kconfig"
111
112 endif