Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 64c47b62 authored by Manivannan Sadhasivam's avatar Manivannan Sadhasivam Committed by Philipp Zabel
Browse files

reset: Add reset controller support for BM1880 SoC



Add reset controller support for Bitmain BM1880 SoC reusing the
reset-simple driver.

Signed-off-by: default avatarManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Reviewed-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
parent ef98682a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -117,7 +117,7 @@ config RESET_QCOM_PDC

config RESET_SIMPLE
	bool "Simple Reset Controller Driver" if COMPILE_TEST
	default ARCH_STM32 || ARCH_STRATIX10 || ARCH_SUNXI || ARCH_ZX || ARCH_ASPEED
	default ARCH_STM32 || ARCH_STRATIX10 || ARCH_SUNXI || ARCH_ZX || ARCH_ASPEED || ARCH_BITMAIN
	help
	  This enables a simple reset controller driver for reset lines that
	  that can be asserted and deasserted by toggling bits in a contiguous,
@@ -129,6 +129,7 @@ config RESET_SIMPLE
	   - RCC reset controller in STM32 MCUs
	   - Allwinner SoCs
	   - ZTE's zx2967 family
	   - Bitmain BM1880 SoC

config RESET_STM32MP157
	bool "STM32MP157 Reset Driver" if COMPILE_TEST
+2 −0
Original line number Diff line number Diff line
@@ -129,6 +129,8 @@ static const struct of_device_id reset_simple_dt_ids[] = {
		.data = &reset_simple_active_low },
	{ .compatible = "aspeed,ast2400-lpc-reset" },
	{ .compatible = "aspeed,ast2500-lpc-reset" },
	{ .compatible = "bitmain,bm1880-reset",
		.data = &reset_simple_active_low },
	{ /* sentinel */ },
};