mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
e5d76075d9
This patch adds a reset controller implementation for STMicroelectronics STi family SoCs; it allows a group of related reset like controls found in multiple system configuration registers to be represented by a single controller device. System configuration registers are accessed through the regmap framework and the mfd/syscon driver. The implementation optionally supports waiting for the reset action to be acknowledged in a separate status register and supports both active high and active low reset lines. These properties are common across all the reset channels in a specific reset controller instance, hence all channels in a paritcular controller are expected to behave in the same way. Signed-off-by: Stephen Gallimore <stephen.gallimore@st.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com> Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
4 lines
114 B
Makefile
4 lines
114 B
Makefile
obj-$(CONFIG_RESET_CONTROLLER) += core.o
|
|
obj-$(CONFIG_ARCH_SUNXI) += reset-sunxi.o
|
|
obj-$(CONFIG_ARCH_STI) += sti/
|