mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
453ed4283b
The Sparx5 Switch SoC has a number of components that can be reset indiviually, but at least the Switch Core needs to be in a well defined state at power on, when any of the Sparx5 drivers starts to access the Switch Core, this reset driver is available. The reset driver is loaded early via the postcore_initcall interface, and will then be available for the other Sparx5 drivers (SGPIO, SwitchDev etc) that are loaded next, and the first of them to be loaded can perform the one-time Switch Core reset that is needed. The driver has protection so that the system busses, DDR controller, PCI-E and ARM A53 CPU and a few other subsystems are not touched by the reset. Signed-off-by: Steen Hegelund <steen.hegelund@microchip.com> Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
40 lines
1.7 KiB
Makefile
40 lines
1.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y += core.o
|
|
obj-y += hisilicon/
|
|
obj-$(CONFIG_ARCH_STI) += sti/
|
|
obj-$(CONFIG_ARCH_TEGRA) += tegra/
|
|
obj-$(CONFIG_RESET_A10SR) += reset-a10sr.o
|
|
obj-$(CONFIG_RESET_ATH79) += reset-ath79.o
|
|
obj-$(CONFIG_RESET_AXS10X) += reset-axs10x.o
|
|
obj-$(CONFIG_RESET_BCM6345) += reset-bcm6345.o
|
|
obj-$(CONFIG_RESET_BERLIN) += reset-berlin.o
|
|
obj-$(CONFIG_RESET_BRCMSTB) += reset-brcmstb.o
|
|
obj-$(CONFIG_RESET_BRCMSTB_RESCAL) += reset-brcmstb-rescal.o
|
|
obj-$(CONFIG_RESET_HSDK) += reset-hsdk.o
|
|
obj-$(CONFIG_RESET_IMX7) += reset-imx7.o
|
|
obj-$(CONFIG_RESET_INTEL_GW) += reset-intel-gw.o
|
|
obj-$(CONFIG_RESET_K210) += reset-k210.o
|
|
obj-$(CONFIG_RESET_LANTIQ) += reset-lantiq.o
|
|
obj-$(CONFIG_RESET_LPC18XX) += reset-lpc18xx.o
|
|
obj-$(CONFIG_RESET_MCHP_SPARX5) += reset-microchip-sparx5.o
|
|
obj-$(CONFIG_RESET_MESON) += reset-meson.o
|
|
obj-$(CONFIG_RESET_MESON_AUDIO_ARB) += reset-meson-audio-arb.o
|
|
obj-$(CONFIG_RESET_NPCM) += reset-npcm.o
|
|
obj-$(CONFIG_RESET_OXNAS) += reset-oxnas.o
|
|
obj-$(CONFIG_RESET_PISTACHIO) += reset-pistachio.o
|
|
obj-$(CONFIG_RESET_QCOM_AOSS) += reset-qcom-aoss.o
|
|
obj-$(CONFIG_RESET_QCOM_PDC) += reset-qcom-pdc.o
|
|
obj-$(CONFIG_RESET_RASPBERRYPI) += reset-raspberrypi.o
|
|
obj-$(CONFIG_RESET_SCMI) += reset-scmi.o
|
|
obj-$(CONFIG_RESET_SIMPLE) += reset-simple.o
|
|
obj-$(CONFIG_RESET_STM32MP157) += reset-stm32mp1.o
|
|
obj-$(CONFIG_RESET_SOCFPGA) += reset-socfpga.o
|
|
obj-$(CONFIG_RESET_SUNXI) += reset-sunxi.o
|
|
obj-$(CONFIG_RESET_TI_SCI) += reset-ti-sci.o
|
|
obj-$(CONFIG_RESET_TI_SYSCON) += reset-ti-syscon.o
|
|
obj-$(CONFIG_RESET_UNIPHIER) += reset-uniphier.o
|
|
obj-$(CONFIG_RESET_UNIPHIER_GLUE) += reset-uniphier-glue.o
|
|
obj-$(CONFIG_RESET_ZYNQ) += reset-zynq.o
|
|
obj-$(CONFIG_ARCH_ZYNQMP) += reset-zynqmp.o
|
|
|