Commit c5dab6e2 authored by Dinh Nguyen's avatar Dinh Nguyen

ARM: socfpga: dts: Correct the parent clock for l3_sp_clk and dbg_clk

The l3_sp_clk's parent should be the l3_mp_clk. This will account for
the extra divider that is present for the l3_mp_clk.

The dbg_clk's parent should be the dbg_at_clk. This will account for
the extra divider that is present for the dbg_at_clk.
Signed-off-by: default avatarDinh Nguyen <dinguyen@opensource.altera.com>
parent 57c0f8c9
...@@ -318,7 +318,7 @@ l3_mp_clk: l3_mp_clk { ...@@ -318,7 +318,7 @@ l3_mp_clk: l3_mp_clk {
l3_sp_clk: l3_sp_clk { l3_sp_clk: l3_sp_clk {
#clock-cells = <0>; #clock-cells = <0>;
compatible = "altr,socfpga-gate-clk"; compatible = "altr,socfpga-gate-clk";
clocks = <&mainclk>; clocks = <&l3_mp_clk>;
div-reg = <0x64 2 2>; div-reg = <0x64 2 2>;
}; };
...@@ -349,7 +349,7 @@ dbg_at_clk: dbg_at_clk { ...@@ -349,7 +349,7 @@ dbg_at_clk: dbg_at_clk {
dbg_clk: dbg_clk { dbg_clk: dbg_clk {
#clock-cells = <0>; #clock-cells = <0>;
compatible = "altr,socfpga-gate-clk"; compatible = "altr,socfpga-gate-clk";
clocks = <&dbg_base_clk>; clocks = <&dbg_at_clk>;
div-reg = <0x68 2 2>; div-reg = <0x68 2 2>;
clk-gate = <0x60 5>; clk-gate = <0x60 5>;
}; };
......
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