Commit 9fb1c8ff authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Simon Horman

ARM: dts: r8a7794: Stop grouping clocks under a "clocks" subnode

The current practice is to not group clocks under a "clocks" subnode,
but just put them together with the other on-SoC devices.
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
parent c67e243c
...@@ -982,71 +982,65 @@ can1: can@e6e88000 { ...@@ -982,71 +982,65 @@ can1: can@e6e88000 {
status = "disabled"; status = "disabled";
}; };
clocks { /* External root clock */
#address-cells = <2>; extal_clk: extal {
#size-cells = <2>; compatible = "fixed-clock";
ranges; #clock-cells = <0>;
/* This value must be overridden by the board. */
/* External root clock */ clock-frequency = <0>;
extal_clk: extal { };
compatible = "fixed-clock";
#clock-cells = <0>; /* External USB clock - can be overridden by the board */
/* This value must be overriden by the board. */ usb_extal_clk: usb_extal {
clock-frequency = <0>; compatible = "fixed-clock";
}; #clock-cells = <0>;
clock-frequency = <48000000>;
/* External USB clock - can be overridden by the board */ };
usb_extal_clk: usb_extal {
compatible = "fixed-clock"; /* External CAN clock */
#clock-cells = <0>; can_clk: can {
clock-frequency = <48000000>; compatible = "fixed-clock";
}; #clock-cells = <0>;
/* This value must be overridden by the board. */
/* External CAN clock */ clock-frequency = <0>;
can_clk: can { };
compatible = "fixed-clock";
#clock-cells = <0>; /* External SCIF clock */
/* This value must be overridden by the board. */ scif_clk: scif {
clock-frequency = <0>; compatible = "fixed-clock";
}; #clock-cells = <0>;
/* This value must be overridden by the board. */
/* External SCIF clock */ clock-frequency = <0>;
scif_clk: scif { };
compatible = "fixed-clock";
#clock-cells = <0>; /*
/* This value must be overridden by the board. */ * The external audio clocks are configured as 0 Hz fixed
clock-frequency = <0>; * frequency clocks by default. Boards that provide audio
}; * clocks should override them.
*/
/* audio_clka: audio_clka {
* The external audio clocks are configured as 0 Hz fixed compatible = "fixed-clock";
* frequency clocks by default. Boards that provide audio #clock-cells = <0>;
* clocks should override them. clock-frequency = <0>;
*/ };
audio_clka: audio_clka { audio_clkb: audio_clkb {
compatible = "fixed-clock"; compatible = "fixed-clock";
#clock-cells = <0>; #clock-cells = <0>;
clock-frequency = <0>; clock-frequency = <0>;
}; };
audio_clkb: audio_clkb { audio_clkc: audio_clkc {
compatible = "fixed-clock"; compatible = "fixed-clock";
#clock-cells = <0>; #clock-cells = <0>;
clock-frequency = <0>; clock-frequency = <0>;
}; };
audio_clkc: audio_clkc {
compatible = "fixed-clock"; cpg: clock-controller@e6150000 {
#clock-cells = <0>; compatible = "renesas,r8a7794-cpg-mssr";
clock-frequency = <0>; reg = <0 0xe6150000 0 0x1000>;
}; clocks = <&extal_clk>, <&usb_extal_clk>;
clock-names = "extal", "usb_extal";
cpg: clock-controller@e6150000 { #clock-cells = <2>;
compatible = "renesas,r8a7794-cpg-mssr"; #power-domain-cells = <0>;
reg = <0 0xe6150000 0 0x1000>;
clocks = <&extal_clk>, <&usb_extal_clk>;
clock-names = "extal", "usb_extal";
#clock-cells = <2>;
#power-domain-cells = <0>;
};
}; };
rst: reset-controller@e6160000 { rst: reset-controller@e6160000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment