mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
Add a reset-controller driver for performing reset management of various devices present on the SoC, with the reset registers shared between devices in a common register memory space. This driver uses the syscon/regmap frameworks to actually implement the various reset functionalities needed by the reset consumer devices. Signed-off-by: Andrew F. Davis <afd@ti.com> [s-anna@ti.com: add documentation, syscon name change] Signed-off-by: Suman Anna <s-anna@ti.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
14 lines
526 B
Makefile
14 lines
526 B
Makefile
obj-y += core.o
|
|
obj-$(CONFIG_ARCH_LPC18XX) += reset-lpc18xx.o
|
|
obj-$(CONFIG_ARCH_SOCFPGA) += reset-socfpga.o
|
|
obj-$(CONFIG_ARCH_BERLIN) += reset-berlin.o
|
|
obj-$(CONFIG_MACH_PISTACHIO) += reset-pistachio.o
|
|
obj-$(CONFIG_ARCH_MESON) += reset-meson.o
|
|
obj-$(CONFIG_ARCH_SUNXI) += reset-sunxi.o
|
|
obj-$(CONFIG_ARCH_STI) += sti/
|
|
obj-$(CONFIG_ARCH_HISI) += hisilicon/
|
|
obj-$(CONFIG_ARCH_ZYNQ) += reset-zynq.o
|
|
obj-$(CONFIG_ATH79) += reset-ath79.o
|
|
obj-$(CONFIG_RESET_OXNAS) += reset-oxnas.o
|
|
obj-$(CONFIG_TI_SYSCON_RESET) += reset-ti-syscon.o
|