Commit c67e243c authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Simon Horman

ARM: dts: r8a7793: 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 80e1a5f3
...@@ -972,71 +972,66 @@ can1: can@e6e88000 { ...@@ -972,71 +972,66 @@ 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>; /*
/* This value must be overridden by the board. */ * The external audio clocks are configured as 0 Hz fixed frequency
clock-frequency = <0>; * clocks by default.
}; * Boards that provide audio clocks should override them.
*/
/* audio_clk_a: audio_clk_a {
* The external audio clocks are configured as 0 Hz fixed frequency clocks by compatible = "fixed-clock";
* default. Boards that provide audio clocks should override them. #clock-cells = <0>;
*/ clock-frequency = <0>;
audio_clk_a: audio_clk_a { };
compatible = "fixed-clock"; audio_clk_b: audio_clk_b {
#clock-cells = <0>; compatible = "fixed-clock";
clock-frequency = <0>; #clock-cells = <0>;
}; clock-frequency = <0>;
audio_clk_b: audio_clk_b { };
compatible = "fixed-clock"; audio_clk_c: audio_clk_c {
#clock-cells = <0>; compatible = "fixed-clock";
clock-frequency = <0>; #clock-cells = <0>;
}; clock-frequency = <0>;
audio_clk_c: audio_clk_c { };
compatible = "fixed-clock";
#clock-cells = <0>; /* External USB clock - can be overridden by the board */
clock-frequency = <0>; usb_extal_clk: usb_extal {
}; compatible = "fixed-clock";
#clock-cells = <0>;
/* External USB clock - can be overridden by the board */ clock-frequency = <48000000>;
usb_extal_clk: usb_extal { };
compatible = "fixed-clock";
#clock-cells = <0>; /* External CAN clock */
clock-frequency = <48000000>; can_clk: can {
}; compatible = "fixed-clock";
#clock-cells = <0>;
/* External CAN clock */ /* This value must be overridden by the board. */
can_clk: can { 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>;
/* 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. */ /* Special CPG clocks */
clock-frequency = <0>; cpg: clock-controller@e6150000 {
}; compatible = "renesas,r8a7793-cpg-mssr";
reg = <0 0xe6150000 0 0x1000>;
/* Special CPG clocks */ clocks = <&extal_clk>, <&usb_extal_clk>;
cpg: clock-controller@e6150000 { clock-names = "extal", "usb_extal";
compatible = "renesas,r8a7793-cpg-mssr"; #clock-cells = <2>;
reg = <0 0xe6150000 0 0x1000>; #power-domain-cells = <0>;
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