mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 06:33:41 +00:00
39 lines
1.5 KiB
Diff
39 lines
1.5 KiB
Diff
|
From 819d2a48d45f3734c876186e651917bae69be9ba Mon Sep 17 00:00:00 2001
|
||
|
From: Chuanhong Guo <gch981213@gmail.com>
|
||
|
Date: Tue, 20 Aug 2024 08:33:43 +0800
|
||
|
Subject: [PATCH 3/9] reset: add support for sf19a2890
|
||
|
|
||
|
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
|
||
|
---
|
||
|
drivers/reset/Kconfig | 8 ++++++++
|
||
|
drivers/reset/Makefile | 1 +
|
||
|
2 files changed, 9 insertions(+)
|
||
|
|
||
|
--- a/drivers/reset/Kconfig
|
||
|
+++ b/drivers/reset/Kconfig
|
||
|
@@ -211,6 +211,14 @@ config RESET_SCMI
|
||
|
This driver uses SCMI Message Protocol to interact with the
|
||
|
firmware controlling all the reset signals.
|
||
|
|
||
|
+config RESET_SF19A2890_PERIPH
|
||
|
+ bool "Siflower SF19A2890 Peripheral Reset Controller Driver"
|
||
|
+ default MACH_SIFLOWER_MIPS
|
||
|
+ depends on HAS_IOMEM
|
||
|
+ help
|
||
|
+ This enables reset controller driver for peripheral reset blocks
|
||
|
+ found on Siflower SF19A2890 SoC.
|
||
|
+
|
||
|
config RESET_SIMPLE
|
||
|
bool "Simple Reset Controller Driver" if COMPILE_TEST || EXPERT
|
||
|
default ARCH_ASPEED || ARCH_BCMBCA || ARCH_BITMAIN || ARCH_REALTEK || ARCH_STM32 || (ARCH_INTEL_SOCFPGA && ARM64) || ARCH_SUNXI || ARC
|
||
|
--- a/drivers/reset/Makefile
|
||
|
+++ b/drivers/reset/Makefile
|
||
|
@@ -29,6 +29,7 @@ obj-$(CONFIG_RESET_QCOM_PDC) += reset-qc
|
||
|
obj-$(CONFIG_RESET_RASPBERRYPI) += reset-raspberrypi.o
|
||
|
obj-$(CONFIG_RESET_RZG2L_USBPHY_CTRL) += reset-rzg2l-usbphy-ctrl.o
|
||
|
obj-$(CONFIG_RESET_SCMI) += reset-scmi.o
|
||
|
+obj-$(CONFIG_RESET_SF19A2890_PERIPH) += reset-sf19a2890-periph.o
|
||
|
obj-$(CONFIG_RESET_SIMPLE) += reset-simple.o
|
||
|
obj-$(CONFIG_RESET_SOCFPGA) += reset-socfpga.o
|
||
|
obj-$(CONFIG_RESET_SUNPLUS) += reset-sunplus.o
|