Skip to content

Commit

Permalink
ARM: at91/dt: sam9261: correctly define mainck
Browse files Browse the repository at this point in the history
mainck (CKGR_MCFR register) is actually using main_osc (CKGR_MOR register).

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
  • Loading branch information
Alexandre Belloni authored and Nicolas Ferre committed Jun 25, 2014
1 parent 8cbff69 commit 5de4728
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions arch/arm/boot/dts/at91sam9261.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -581,13 +581,19 @@
clocks = <&slow_rc_osc &slow_xtal>;
};

main: mainck {
compatible = "atmel,at91rm9200-clk-main";
main_osc: main_osc {
compatible = "atmel,at91rm9200-clk-main-osc";
#clock-cells = <0>;
interrupts-extended = <&pmc AT91_PMC_MOSCS>;
clocks = <&main_xtal>;
};

main: mainck {
compatible = "atmel,at91rm9200-clk-main";
#clock-cells = <0>;
clocks = <&main_osc>;
};

plla: pllack {
compatible = "atmel,at91rm9200-clk-pll";
#clock-cells = <0>;
Expand Down

0 comments on commit 5de4728

Please sign in to comment.