Skip to content
Snippets Groups Projects
Commit 6e30692e authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Christian Lamparter
Browse files

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: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Link: https://lore.kernel.org/r/20211002060706.30511-1-sergio.paracuellos@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9b52b4e5
No related branches found
No related tags found
No related merge requests found
...@@ -141,16 +141,6 @@ ...@@ -141,16 +141,6 @@
reg = <0x5000 0x1000>; reg = <0x5000 0x1000>;
}; };
cpc: cpc@1fbf0000 {
compatible = "mtk,mt7621-cpc";
reg = <0x1fbf0000 0x8000>;
};
mc: mc@1fbf8000 {
compatible = "mtk,mt7621-mc";
reg = <0x1fbf8000 0x8000>;
};
uartlite: uartlite@c00 { uartlite: uartlite@c00 {
compatible = "ns16550a"; compatible = "ns16550a";
reg = <0xc00 0x100>; reg = <0xc00 0x100>;
...@@ -426,6 +416,16 @@ ...@@ -426,6 +416,16 @@
clock-frequency = <125000000>; clock-frequency = <125000000>;
}; };
cpc: cpc@1fbf0000 {
compatible = "mti,mips-cpc";
reg = <0x1fbf0000 0x8000>;
};
mc: mc@1fbf8000 {
compatible = "mti,mips-cdmm";
reg = <0x1fbf8000 0x8000>;
};
nand: nand@1e003000 { nand: nand@1e003000 {
status = "disabled"; status = "disabled";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment