blob: d21c07ccc94e501ff44206c151a8bc5c48db513e [file] [log] [blame]
Philipp Zabel61fc4132012-11-19 17:23:13 +01001config ARCH_HAS_RESET_CONTROLLER
2 bool
3
4menuconfig 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 Gallimoree5d76072013-08-07 15:53:12 +010014
Masahiro Yamada998cd462016-05-03 15:29:52 +090015if RESET_CONTROLLER
16
Thor Thayer62700682017-02-22 11:10:17 -060017config RESET_A10SR
18 tristate "Altera Arria10 System Resource Reset"
19 depends on MFD_ALTERA_A10SR
20 help
21 This option enables support for the external reset functions for
22 peripheral PHYs on the Altera Arria10 System Resource Chip.
23
Philipp Zabele27b4a62016-07-28 15:30:08 +020024config RESET_ATH79
25 bool "AR71xx Reset Driver" if COMPILE_TEST
26 default ATH79
27 help
28 This enables the ATH79 reset controller driver that supports the
29 AR71xx SoC reset controller.
30
Philipp Zabel70d467e2016-07-28 15:31:12 +020031config RESET_BERLIN
32 bool "Berlin Reset Driver" if COMPILE_TEST
33 default ARCH_BERLIN
34 help
35 This enables the reset controller driver for Marvell Berlin SoCs.
36
Andrey Smirnovabf97752017-02-21 08:13:31 -080037config RESET_IMX7
38 bool "i.MX7 Reset Driver" if COMPILE_TEST
39 default SOC_IMX7D
40 select MFD_SYSCON
41 help
42 This enables the reset controller driver for i.MX7 SoCs.
43
Philipp Zabelcd7f4b82016-07-28 15:32:01 +020044config RESET_LPC18XX
45 bool "LPC18xx/43xx Reset Driver" if COMPILE_TEST
46 default ARCH_LPC18XX
47 help
48 This enables the reset controller driver for NXP LPC18xx/43xx SoCs.
49
Philipp Zabel44336c22016-07-28 15:32:36 +020050config RESET_MESON
51 bool "Meson Reset Driver" if COMPILE_TEST
52 default ARCH_MESON
53 help
54 This enables the reset driver for Amlogic Meson SoCs.
55
Neil Armstrong6e667fa2016-04-01 16:16:13 +020056config RESET_OXNAS
57 bool
58
Philipp Zabelfab3f732016-07-28 15:33:07 +020059config RESET_PISTACHIO
60 bool "Pistachio Reset Driver" if COMPILE_TEST
61 default MACH_PISTACHIO
62 help
63 This enables the reset driver for ImgTec Pistachio SoCs.
64
Philipp Zabel5c914072016-07-28 15:33:43 +020065config RESET_SOCFPGA
66 bool "SoCFPGA Reset Driver" if COMPILE_TEST
67 default ARCH_SOCFPGA
68 help
69 This enables the reset controller driver for Altera SoCFPGAs.
70
Philipp Zabel7e0e9012016-07-28 15:34:15 +020071config RESET_STM32
72 bool "STM32 Reset Driver" if COMPILE_TEST
73 default ARCH_STM32
74 help
75 This enables the RCC reset controller driver for STM32 MCUs.
76
Philipp Zabel0ae08412016-08-09 09:28:44 +020077config RESET_SUNXI
78 bool "Allwinner SoCs Reset Driver" if COMPILE_TEST && !ARCH_SUNXI
79 default ARCH_SUNXI
80 help
81 This enables the reset driver for Allwinner SoCs.
82
Andrew F. Daviscc7c2bb2016-06-27 12:12:17 -050083config TI_SYSCON_RESET
84 tristate "TI SYSCON Reset Driver"
85 depends on HAS_IOMEM
86 select MFD_SYSCON
87 help
88 This enables the reset driver support for TI devices with
89 memory-mapped reset registers as part of a syscon device node. If
90 you wish to use the reset framework for such memory-mapped devices,
91 say Y here. Otherwise, say N.
92
Masahiro Yamada54e991b2016-08-02 13:18:29 +090093config RESET_UNIPHIER
94 tristate "Reset controller driver for UniPhier SoCs"
95 depends on ARCH_UNIPHIER || COMPILE_TEST
96 depends on OF && MFD_SYSCON
97 default ARCH_UNIPHIER
98 help
99 Support for reset controllers on UniPhier SoCs.
100 Say Y if you want to control reset signals provided by System Control
101 block, Media I/O block, Peripheral Block.
102
Baoyou Xieb38386f2017-01-17 11:22:57 +0800103config RESET_ZX2967
104 bool "ZTE ZX2967 Reset Driver"
105 depends on ARCH_ZX || COMPILE_TEST
106 help
107 This enables the reset controller driver for ZTE's zx2967 family.
108
Philipp Zabel6f51b862016-08-09 09:28:54 +0200109config RESET_ZYNQ
110 bool "ZYNQ Reset Driver" if COMPILE_TEST
111 default ARCH_ZYNQ
112 help
113 This enables the reset controller driver for Xilinx Zynq SoCs.
114
Stephen Gallimoree5d76072013-08-07 15:53:12 +0100115source "drivers/reset/sti/Kconfig"
Chen Fengf59d23c2015-11-20 10:10:05 +0800116source "drivers/reset/hisilicon/Kconfig"
Thierry Redingdc606c52016-08-18 15:50:09 +0200117source "drivers/reset/tegra/Kconfig"
Masahiro Yamada998cd462016-05-03 15:29:52 +0900118
119endif