[openwrt/openwrt] ramips: mt7621-dts: properly define 'cpc' and 'mc' nodes

LEDE Commits lede-commits at lists.infradead.org
Sat Nov 6 15:41:15 PDT 2021


chunkeey pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/6e30692e99b1175ad8602b0087497f39c0fdb00f

commit 6e30692e99b1175ad8602b0087497f39c0fdb00f
Author: Sergio Paracuellos <sergio.paracuellos at gmail.com>
AuthorDate: Sat Oct 2 08:07:06 2021 +0200

    ramips: mt7621-dts: properly define 'cpc' and 'mc' nodes
    
    'cpc' and 'mc' nodes correspond with the MIPS 'Cluster Power Controller'
    and 'MIPS Common Device Memory Map' which are present in some MIPS related
    boards. There is already bindings documentation for these two located in:
    - Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
    - Documentation/devicetree/bindings/bus/mti,mips-cdmm.yaml
    
    Hence, properly update compatible strings and align nodes with already
    mainlined bindings documentation. Also, move their definition to a proper
    place since both of them are not related with the palmbus at all.
    
    Signed-off-by: Sergio Paracuellos <sergio.paracuellos at gmail.com>
    Link: https://lore.kernel.org/r/20211002060706.30511-1-sergio.paracuellos@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh at linuxfoundation.org>
---
 target/linux/ramips/dts/mt7621.dtsi | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/target/linux/ramips/dts/mt7621.dtsi b/target/linux/ramips/dts/mt7621.dtsi
index 0860b07029..8d9a2e43ad 100644
--- a/target/linux/ramips/dts/mt7621.dtsi
+++ b/target/linux/ramips/dts/mt7621.dtsi
@@ -141,16 +141,6 @@
 			reg = <0x5000 0x1000>;
 		};
 
-		cpc: cpc at 1fbf0000 {
-			compatible = "mtk,mt7621-cpc";
-			reg = <0x1fbf0000 0x8000>;
-		};
-
-		mc: mc at 1fbf8000 {
-			compatible = "mtk,mt7621-mc";
-			reg = <0x1fbf8000 0x8000>;
-		};
-
 		uartlite: uartlite at c00 {
 			compatible = "ns16550a";
 			reg = <0xc00 0x100>;
@@ -426,6 +416,16 @@
 		clock-frequency = <125000000>;
 	};
 
+	cpc: cpc at 1fbf0000 {
+		compatible = "mti,mips-cpc";
+		reg = <0x1fbf0000 0x8000>;
+	};
+
+	mc: mc at 1fbf8000 {
+		compatible = "mti,mips-cdmm";
+		reg = <0x1fbf8000 0x8000>;
+	};
+
 	nand: nand at 1e003000 {
 		status = "disabled";
 



More information about the lede-commits mailing list