Skip to content

Commit

Permalink
dts: vt8500: Correct reference clock on WM8850 SoCs
Browse files Browse the repository at this point in the history
WM8850 SoCs use a 24Mhz reference clock for the PLLs but the SoC file
currently parents all PLLs to the 25Mhz reference clock.

This patch corrects the PLL parent clock references.

Signed-off-by: Tony Prisk <[email protected]>
  • Loading branch information
tonyprisk committed Jun 3, 2013
1 parent 9e7b6d3 commit e36572b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions arch/arm/boot/dts/wm8850.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -84,49 +84,49 @@
plla: plla {
#clock-cells = <0>;
compatible = "wm,wm8850-pll-clock";
clocks = <&ref25>;
clocks = <&ref24>;
reg = <0x200>;
};

pllb: pllb {
#clock-cells = <0>;
compatible = "wm,wm8850-pll-clock";
clocks = <&ref25>;
clocks = <&ref24>;
reg = <0x204>;
};

pllc: pllc {
#clock-cells = <0>;
compatible = "wm,wm8850-pll-clock";
clocks = <&ref25>;
clocks = <&ref24>;
reg = <0x208>;
};

plld: plld {
#clock-cells = <0>;
compatible = "wm,wm8850-pll-clock";
clocks = <&ref25>;
clocks = <&ref24>;
reg = <0x20c>;
};

plle: plle {
#clock-cells = <0>;
compatible = "wm,wm8850-pll-clock";
clocks = <&ref25>;
clocks = <&ref24>;
reg = <0x210>;
};

pllf: pllf {
#clock-cells = <0>;
compatible = "wm,wm8850-pll-clock";
clocks = <&ref25>;
clocks = <&ref24>;
reg = <0x214>;
};

pllg: pllg {
#clock-cells = <0>;
compatible = "wm,wm8850-pll-clock";
clocks = <&ref25>;
clocks = <&ref24>;
reg = <0x218>;
};

Expand Down

0 comments on commit e36572b

Please sign in to comment.