diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2013-04-16 17:44:31 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-05-12 15:49:56 -0400 |
commit | 7690fbb293df83025cffb608f9c2e81414c468a8 (patch) | |
tree | 1d1605c8c26b1d12bb2763ce447677f76d400f71 | |
parent | 6e2b07a172b6ed98c7cdc301333b2d9f86c11880 (diff) |
ARM: nomadik: register clocksource from device tree
This switches the Nomadik platform to also registering its
clocksource from the device tree, removing unused support
code as we go along.
Acked-by: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | arch/arm/boot/dts/ste-nomadik-stn8815.dtsi | 11 | ||||
-rw-r--r-- | arch/arm/mach-nomadik/Kconfig | 1 | ||||
-rw-r--r-- | arch/arm/mach-nomadik/cpu-8815.c | 6 | ||||
-rw-r--r-- | drivers/clk/clk-nomadik.c | 15 |
4 files changed, 12 insertions, 21 deletions
diff --git a/arch/arm/boot/dts/ste-nomadik-stn8815.dtsi b/arch/arm/boot/dts/ste-nomadik-stn8815.dtsi index f0df9482cb6f..51a33e080ca9 100644 --- a/arch/arm/boot/dts/ste-nomadik-stn8815.dtsi +++ b/arch/arm/boot/dts/ste-nomadik-stn8815.dtsi | |||
@@ -21,18 +21,23 @@ | |||
21 | cache-level = <2>; | 21 | cache-level = <2>; |
22 | }; | 22 | }; |
23 | 23 | ||
24 | mtu0 { | 24 | mtu0: mtu@101e2000 { |
25 | /* Nomadik system timer */ | 25 | /* Nomadik system timer */ |
26 | compatible = "st,nomadik-mtu"; | ||
26 | reg = <0x101e2000 0x1000>; | 27 | reg = <0x101e2000 0x1000>; |
27 | interrupt-parent = <&vica>; | 28 | interrupt-parent = <&vica>; |
28 | interrupts = <4>; | 29 | interrupts = <4>; |
30 | clocks = <&timclk>, <&pclk>; | ||
31 | clock-names = "timclk", "apb_pclk"; | ||
29 | }; | 32 | }; |
30 | 33 | ||
31 | mtu1 { | 34 | mtu1: mtu@101e3000 { |
32 | /* Secondary timer */ | 35 | /* Secondary timer */ |
33 | reg = <0x101e3000 0x1000>; | 36 | reg = <0x101e3000 0x1000>; |
34 | interrupt-parent = <&vica>; | 37 | interrupt-parent = <&vica>; |
35 | interrupts = <5>; | 38 | interrupts = <5>; |
39 | clocks = <&timclk>, <&pclk>; | ||
40 | clock-names = "timclk", "apb_pclk"; | ||
36 | }; | 41 | }; |
37 | 42 | ||
38 | gpio0: gpio@101e4000 { | 43 | gpio0: gpio@101e4000 { |
@@ -101,7 +106,7 @@ | |||
101 | pclk: pclk@0 { | 106 | pclk: pclk@0 { |
102 | #clock-cells = <0>; | 107 | #clock-cells = <0>; |
103 | compatible = "fixed-clock"; | 108 | compatible = "fixed-clock"; |
104 | clock-frequency = <2400000>; | 109 | clock-frequency = <0>; |
105 | }; | 110 | }; |
106 | /* | 111 | /* |
107 | * The 2.4 MHz TIMCLK reference clock is active at | 112 | * The 2.4 MHz TIMCLK reference clock is active at |
diff --git a/arch/arm/mach-nomadik/Kconfig b/arch/arm/mach-nomadik/Kconfig index 9b9d105f194c..5981c3db9b41 100644 --- a/arch/arm/mach-nomadik/Kconfig +++ b/arch/arm/mach-nomadik/Kconfig | |||
@@ -6,6 +6,7 @@ config ARCH_NOMADIK | |||
6 | select ARM_VIC | 6 | select ARM_VIC |
7 | select CLKSRC_NOMADIK_MTU | 7 | select CLKSRC_NOMADIK_MTU |
8 | select CLKSRC_NOMADIK_MTU_SCHED_CLOCK | 8 | select CLKSRC_NOMADIK_MTU_SCHED_CLOCK |
9 | select CLKSRC_OF | ||
9 | select COMMON_CLK | 10 | select COMMON_CLK |
10 | select CPU_ARM926T | 11 | select CPU_ARM926T |
11 | select GENERIC_CLOCKEVENTS | 12 | select GENERIC_CLOCKEVENTS |
diff --git a/arch/arm/mach-nomadik/cpu-8815.c b/arch/arm/mach-nomadik/cpu-8815.c index 0e2c5e0cd65e..e73a71f78b4d 100644 --- a/arch/arm/mach-nomadik/cpu-8815.c +++ b/arch/arm/mach-nomadik/cpu-8815.c | |||
@@ -29,7 +29,7 @@ | |||
29 | #include <linux/platform_data/clk-nomadik.h> | 29 | #include <linux/platform_data/clk-nomadik.h> |
30 | #include <linux/platform_data/pinctrl-nomadik.h> | 30 | #include <linux/platform_data/pinctrl-nomadik.h> |
31 | #include <linux/pinctrl/machine.h> | 31 | #include <linux/pinctrl/machine.h> |
32 | #include <linux/platform_data/clocksource-nomadik-mtu.h> | 32 | #include <linux/clocksource.h> |
33 | #include <linux/of_irq.h> | 33 | #include <linux/of_irq.h> |
34 | #include <linux/of_gpio.h> | 34 | #include <linux/of_gpio.h> |
35 | #include <linux/of_address.h> | 35 | #include <linux/of_address.h> |
@@ -172,7 +172,7 @@ static void __init cpu8815_timer_init_of(void) | |||
172 | /* We need this to be up now */ | 172 | /* We need this to be up now */ |
173 | nomadik_clk_init(); | 173 | nomadik_clk_init(); |
174 | 174 | ||
175 | mtu = of_find_node_by_path("/mtu0"); | 175 | mtu = of_find_node_by_path("/mtu@101e2000"); |
176 | if (!mtu) | 176 | if (!mtu) |
177 | return; | 177 | return; |
178 | base = of_iomap(mtu, 0); | 178 | base = of_iomap(mtu, 0); |
@@ -188,7 +188,7 @@ static void __init cpu8815_timer_init_of(void) | |||
188 | src_cr |= SRC_CR_INIT_VAL; | 188 | src_cr |= SRC_CR_INIT_VAL; |
189 | writel(src_cr, base); | 189 | writel(src_cr, base); |
190 | 190 | ||
191 | nmdk_timer_init(base, irq); | 191 | clocksource_of_init(); |
192 | } | 192 | } |
193 | 193 | ||
194 | static struct fsmc_nand_timings cpu8815_nand_timings = { | 194 | static struct fsmc_nand_timings cpu8815_nand_timings = { |
diff --git a/drivers/clk/clk-nomadik.c b/drivers/clk/clk-nomadik.c index 19f197ccf28d..4a1ab27ee87f 100644 --- a/drivers/clk/clk-nomadik.c +++ b/drivers/clk/clk-nomadik.c | |||
@@ -17,20 +17,5 @@ static const __initconst struct of_device_id cpu8815_clk_match[] = { | |||
17 | 17 | ||
18 | void __init nomadik_clk_init(void) | 18 | void __init nomadik_clk_init(void) |
19 | { | 19 | { |
20 | struct clk *clk; | ||
21 | |||
22 | clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL, CLK_IS_ROOT, 0); | ||
23 | clk_register_clkdev(clk, "apb_pclk", NULL); | ||
24 | |||
25 | /* | ||
26 | * The 2.4 MHz TIMCLK reference clock is active at boot time, this is | ||
27 | * actually the MXTALCLK @19.2 MHz divided by 8. This clock is used | ||
28 | * by the timers and watchdog. See page 105 ff. | ||
29 | */ | ||
30 | clk = clk_register_fixed_rate(NULL, "TIMCLK", NULL, CLK_IS_ROOT, | ||
31 | 2400000); | ||
32 | clk_register_clkdev(clk, NULL, "mtu0"); | ||
33 | clk_register_clkdev(clk, NULL, "mtu1"); | ||
34 | |||
35 | of_clk_init(cpu8815_clk_match); | 20 | of_clk_init(cpu8815_clk_match); |
36 | } | 21 | } |