diff options
-rw-r--r-- | arch/arm/Kconfig | 7 | ||||
-rw-r--r-- | arch/arm/mach-realview/core.c | 106 | ||||
-rw-r--r-- | arch/arm/mach-realview/include/mach/clkdev.h | 16 | ||||
-rw-r--r-- | arch/arm/mach-realview/realview_eb.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-realview/realview_pb1176.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-realview/realview_pb11mp.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-realview/realview_pba8.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-realview/realview_pbx.c | 2 | ||||
-rw-r--r-- | drivers/clk/Kconfig | 7 | ||||
-rw-r--r-- | drivers/clk/Makefile | 2 | ||||
-rw-r--r-- | drivers/clk/versatile/Makefile | 1 | ||||
-rw-r--r-- | drivers/clk/versatile/clk-realview.c | 114 | ||||
-rw-r--r-- | include/linux/platform_data/clk-realview.h | 1 |
13 files changed, 137 insertions, 127 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index fb6014868d33..1a01ffa331d0 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -273,7 +273,7 @@ config ARCH_INTEGRATOR | |||
273 | select ARM_AMBA | 273 | select ARM_AMBA |
274 | select ARCH_HAS_CPUFREQ | 274 | select ARCH_HAS_CPUFREQ |
275 | select COMMON_CLK | 275 | select COMMON_CLK |
276 | select CLK_VERSATILE | 276 | select COMMON_CLK_VERSATILE |
277 | select HAVE_TCM | 277 | select HAVE_TCM |
278 | select ICST | 278 | select ICST |
279 | select GENERIC_CLOCKEVENTS | 279 | select GENERIC_CLOCKEVENTS |
@@ -289,13 +289,12 @@ config ARCH_INTEGRATOR | |||
289 | config ARCH_REALVIEW | 289 | config ARCH_REALVIEW |
290 | bool "ARM Ltd. RealView family" | 290 | bool "ARM Ltd. RealView family" |
291 | select ARM_AMBA | 291 | select ARM_AMBA |
292 | select CLKDEV_LOOKUP | 292 | select COMMON_CLK |
293 | select HAVE_MACH_CLKDEV | 293 | select COMMON_CLK_VERSATILE |
294 | select ICST | 294 | select ICST |
295 | select GENERIC_CLOCKEVENTS | 295 | select GENERIC_CLOCKEVENTS |
296 | select ARCH_WANT_OPTIONAL_GPIOLIB | 296 | select ARCH_WANT_OPTIONAL_GPIOLIB |
297 | select PLAT_VERSATILE | 297 | select PLAT_VERSATILE |
298 | select PLAT_VERSATILE_CLOCK | ||
299 | select PLAT_VERSATILE_CLCD | 298 | select PLAT_VERSATILE_CLCD |
300 | select ARM_TIMER_SP804 | 299 | select ARM_TIMER_SP804 |
301 | select GPIO_PL061 if GPIOLIB | 300 | select GPIO_PL061 if GPIOLIB |
diff --git a/arch/arm/mach-realview/core.c b/arch/arm/mach-realview/core.c index 45868bb43cbd..ff007d15e0ec 100644 --- a/arch/arm/mach-realview/core.c +++ b/arch/arm/mach-realview/core.c | |||
@@ -30,7 +30,6 @@ | |||
30 | #include <linux/ata_platform.h> | 30 | #include <linux/ata_platform.h> |
31 | #include <linux/amba/mmci.h> | 31 | #include <linux/amba/mmci.h> |
32 | #include <linux/gfp.h> | 32 | #include <linux/gfp.h> |
33 | #include <linux/clkdev.h> | ||
34 | #include <linux/mtd/physmap.h> | 33 | #include <linux/mtd/physmap.h> |
35 | 34 | ||
36 | #include <mach/hardware.h> | 35 | #include <mach/hardware.h> |
@@ -226,115 +225,10 @@ struct mmci_platform_data realview_mmc1_plat_data = { | |||
226 | .cd_invert = true, | 225 | .cd_invert = true, |
227 | }; | 226 | }; |
228 | 227 | ||
229 | /* | ||
230 | * Clock handling | ||
231 | */ | ||
232 | static const struct icst_params realview_oscvco_params = { | ||
233 | .ref = 24000000, | ||
234 | .vco_max = ICST307_VCO_MAX, | ||
235 | .vco_min = ICST307_VCO_MIN, | ||
236 | .vd_min = 4 + 8, | ||
237 | .vd_max = 511 + 8, | ||
238 | .rd_min = 1 + 2, | ||
239 | .rd_max = 127 + 2, | ||
240 | .s2div = icst307_s2div, | ||
241 | .idx2s = icst307_idx2s, | ||
242 | }; | ||
243 | |||
244 | static void realview_oscvco_set(struct clk *clk, struct icst_vco vco) | ||
245 | { | ||
246 | void __iomem *sys_lock = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_LOCK_OFFSET; | ||
247 | u32 val; | ||
248 | |||
249 | val = readl(clk->vcoreg) & ~0x7ffff; | ||
250 | val |= vco.v | (vco.r << 9) | (vco.s << 16); | ||
251 | |||
252 | writel(0xa05f, sys_lock); | ||
253 | writel(val, clk->vcoreg); | ||
254 | writel(0, sys_lock); | ||
255 | } | ||
256 | |||
257 | static const struct clk_ops oscvco_clk_ops = { | ||
258 | .round = icst_clk_round, | ||
259 | .set = icst_clk_set, | ||
260 | .setvco = realview_oscvco_set, | ||
261 | }; | ||
262 | |||
263 | static struct clk oscvco_clk = { | ||
264 | .ops = &oscvco_clk_ops, | ||
265 | .params = &realview_oscvco_params, | ||
266 | }; | ||
267 | |||
268 | /* | ||
269 | * These are fixed clocks. | ||
270 | */ | ||
271 | static struct clk ref24_clk = { | ||
272 | .rate = 24000000, | ||
273 | }; | ||
274 | |||
275 | static struct clk sp804_clk = { | ||
276 | .rate = 1000000, | ||
277 | }; | ||
278 | |||
279 | static struct clk dummy_apb_pclk; | ||
280 | |||
281 | static struct clk_lookup lookups[] = { | ||
282 | { /* Bus clock */ | ||
283 | .con_id = "apb_pclk", | ||
284 | .clk = &dummy_apb_pclk, | ||
285 | }, { /* UART0 */ | ||
286 | .dev_id = "dev:uart0", | ||
287 | .clk = &ref24_clk, | ||
288 | }, { /* UART1 */ | ||
289 | .dev_id = "dev:uart1", | ||
290 | .clk = &ref24_clk, | ||
291 | }, { /* UART2 */ | ||
292 | .dev_id = "dev:uart2", | ||
293 | .clk = &ref24_clk, | ||
294 | }, { /* UART3 */ | ||
295 | .dev_id = "fpga:uart3", | ||
296 | .clk = &ref24_clk, | ||
297 | }, { /* UART3 is on the dev chip in PB1176 */ | ||
298 | .dev_id = "dev:uart3", | ||
299 | .clk = &ref24_clk, | ||
300 | }, { /* UART4 only exists in PB1176 */ | ||
301 | .dev_id = "fpga:uart4", | ||
302 | .clk = &ref24_clk, | ||
303 | }, { /* KMI0 */ | ||
304 | .dev_id = "fpga:kmi0", | ||
305 | .clk = &ref24_clk, | ||
306 | }, { /* KMI1 */ | ||
307 | .dev_id = "fpga:kmi1", | ||
308 | .clk = &ref24_clk, | ||
309 | }, { /* MMC0 */ | ||
310 | .dev_id = "fpga:mmc0", | ||
311 | .clk = &ref24_clk, | ||
312 | }, { /* CLCD is in the PB1176 and EB DevChip */ | ||
313 | .dev_id = "dev:clcd", | ||
314 | .clk = &oscvco_clk, | ||
315 | }, { /* PB:CLCD */ | ||
316 | .dev_id = "issp:clcd", | ||
317 | .clk = &oscvco_clk, | ||
318 | }, { /* SSP */ | ||
319 | .dev_id = "dev:ssp0", | ||
320 | .clk = &ref24_clk, | ||
321 | }, { /* SP804 timers */ | ||
322 | .dev_id = "sp804", | ||
323 | .clk = &sp804_clk, | ||
324 | }, | ||
325 | }; | ||
326 | |||
327 | void __init realview_init_early(void) | 228 | void __init realview_init_early(void) |
328 | { | 229 | { |
329 | void __iomem *sys = __io_address(REALVIEW_SYS_BASE); | 230 | void __iomem *sys = __io_address(REALVIEW_SYS_BASE); |
330 | 231 | ||
331 | if (machine_is_realview_pb1176()) | ||
332 | oscvco_clk.vcoreg = sys + REALVIEW_SYS_OSC0_OFFSET; | ||
333 | else | ||
334 | oscvco_clk.vcoreg = sys + REALVIEW_SYS_OSC4_OFFSET; | ||
335 | |||
336 | clkdev_add_table(lookups, ARRAY_SIZE(lookups)); | ||
337 | |||
338 | versatile_sched_clock_init(sys + REALVIEW_SYS_24MHz_OFFSET, 24000000); | 232 | versatile_sched_clock_init(sys + REALVIEW_SYS_24MHz_OFFSET, 24000000); |
339 | } | 233 | } |
340 | 234 | ||
diff --git a/arch/arm/mach-realview/include/mach/clkdev.h b/arch/arm/mach-realview/include/mach/clkdev.h deleted file mode 100644 index e58d0771b64e..000000000000 --- a/arch/arm/mach-realview/include/mach/clkdev.h +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | #ifndef __ASM_MACH_CLKDEV_H | ||
2 | #define __ASM_MACH_CLKDEV_H | ||
3 | |||
4 | #include <plat/clock.h> | ||
5 | |||
6 | struct clk { | ||
7 | unsigned long rate; | ||
8 | const struct clk_ops *ops; | ||
9 | const struct icst_params *params; | ||
10 | void __iomem *vcoreg; | ||
11 | }; | ||
12 | |||
13 | #define __clk_get(clk) ({ 1; }) | ||
14 | #define __clk_put(clk) do { } while (0) | ||
15 | |||
16 | #endif | ||
diff --git a/arch/arm/mach-realview/realview_eb.c b/arch/arm/mach-realview/realview_eb.c index baf382c5e776..a33e33b76733 100644 --- a/arch/arm/mach-realview/realview_eb.c +++ b/arch/arm/mach-realview/realview_eb.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/amba/mmci.h> | 27 | #include <linux/amba/mmci.h> |
28 | #include <linux/amba/pl022.h> | 28 | #include <linux/amba/pl022.h> |
29 | #include <linux/io.h> | 29 | #include <linux/io.h> |
30 | #include <linux/platform_data/clk-realview.h> | ||
30 | 31 | ||
31 | #include <mach/hardware.h> | 32 | #include <mach/hardware.h> |
32 | #include <asm/irq.h> | 33 | #include <asm/irq.h> |
@@ -414,6 +415,7 @@ static void __init realview_eb_timer_init(void) | |||
414 | else | 415 | else |
415 | timer_irq = IRQ_EB_TIMER0_1; | 416 | timer_irq = IRQ_EB_TIMER0_1; |
416 | 417 | ||
418 | realview_clk_init(__io_address(REALVIEW_SYS_BASE), false); | ||
417 | realview_timer_init(timer_irq); | 419 | realview_timer_init(timer_irq); |
418 | realview_eb_twd_init(); | 420 | realview_eb_twd_init(); |
419 | } | 421 | } |
diff --git a/arch/arm/mach-realview/realview_pb1176.c b/arch/arm/mach-realview/realview_pb1176.c index b1d7cafa1a6d..f0298cbc203e 100644 --- a/arch/arm/mach-realview/realview_pb1176.c +++ b/arch/arm/mach-realview/realview_pb1176.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/mtd/physmap.h> | 29 | #include <linux/mtd/physmap.h> |
30 | #include <linux/mtd/partitions.h> | 30 | #include <linux/mtd/partitions.h> |
31 | #include <linux/io.h> | 31 | #include <linux/io.h> |
32 | #include <linux/platform_data/clk-realview.h> | ||
32 | 33 | ||
33 | #include <mach/hardware.h> | 34 | #include <mach/hardware.h> |
34 | #include <asm/irq.h> | 35 | #include <asm/irq.h> |
@@ -326,6 +327,7 @@ static void __init realview_pb1176_timer_init(void) | |||
326 | timer2_va_base = __io_address(REALVIEW_PB1176_TIMER2_3_BASE); | 327 | timer2_va_base = __io_address(REALVIEW_PB1176_TIMER2_3_BASE); |
327 | timer3_va_base = __io_address(REALVIEW_PB1176_TIMER2_3_BASE) + 0x20; | 328 | timer3_va_base = __io_address(REALVIEW_PB1176_TIMER2_3_BASE) + 0x20; |
328 | 329 | ||
330 | realview_clk_init(__io_address(REALVIEW_SYS_BASE), true); | ||
329 | realview_timer_init(IRQ_DC1176_TIMER0); | 331 | realview_timer_init(IRQ_DC1176_TIMER0); |
330 | } | 332 | } |
331 | 333 | ||
diff --git a/arch/arm/mach-realview/realview_pb11mp.c b/arch/arm/mach-realview/realview_pb11mp.c index a98c536e3327..1f019f76f7b5 100644 --- a/arch/arm/mach-realview/realview_pb11mp.c +++ b/arch/arm/mach-realview/realview_pb11mp.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/amba/mmci.h> | 27 | #include <linux/amba/mmci.h> |
28 | #include <linux/amba/pl022.h> | 28 | #include <linux/amba/pl022.h> |
29 | #include <linux/io.h> | 29 | #include <linux/io.h> |
30 | #include <linux/platform_data/clk-realview.h> | ||
30 | 31 | ||
31 | #include <mach/hardware.h> | 32 | #include <mach/hardware.h> |
32 | #include <asm/irq.h> | 33 | #include <asm/irq.h> |
@@ -312,6 +313,7 @@ static void __init realview_pb11mp_timer_init(void) | |||
312 | timer2_va_base = __io_address(REALVIEW_PB11MP_TIMER2_3_BASE); | 313 | timer2_va_base = __io_address(REALVIEW_PB11MP_TIMER2_3_BASE); |
313 | timer3_va_base = __io_address(REALVIEW_PB11MP_TIMER2_3_BASE) + 0x20; | 314 | timer3_va_base = __io_address(REALVIEW_PB11MP_TIMER2_3_BASE) + 0x20; |
314 | 315 | ||
316 | realview_clk_init(__io_address(REALVIEW_SYS_BASE), false); | ||
315 | realview_timer_init(IRQ_TC11MP_TIMER0_1); | 317 | realview_timer_init(IRQ_TC11MP_TIMER0_1); |
316 | realview_pb11mp_twd_init(); | 318 | realview_pb11mp_twd_init(); |
317 | } | 319 | } |
diff --git a/arch/arm/mach-realview/realview_pba8.c b/arch/arm/mach-realview/realview_pba8.c index 59650174e6ed..5032775dbfee 100644 --- a/arch/arm/mach-realview/realview_pba8.c +++ b/arch/arm/mach-realview/realview_pba8.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/amba/mmci.h> | 27 | #include <linux/amba/mmci.h> |
28 | #include <linux/amba/pl022.h> | 28 | #include <linux/amba/pl022.h> |
29 | #include <linux/io.h> | 29 | #include <linux/io.h> |
30 | #include <linux/platform_data/clk-realview.h> | ||
30 | 31 | ||
31 | #include <asm/irq.h> | 32 | #include <asm/irq.h> |
32 | #include <asm/leds.h> | 33 | #include <asm/leds.h> |
@@ -261,6 +262,7 @@ static void __init realview_pba8_timer_init(void) | |||
261 | timer2_va_base = __io_address(REALVIEW_PBA8_TIMER2_3_BASE); | 262 | timer2_va_base = __io_address(REALVIEW_PBA8_TIMER2_3_BASE); |
262 | timer3_va_base = __io_address(REALVIEW_PBA8_TIMER2_3_BASE) + 0x20; | 263 | timer3_va_base = __io_address(REALVIEW_PBA8_TIMER2_3_BASE) + 0x20; |
263 | 264 | ||
265 | realview_clk_init(__io_address(REALVIEW_SYS_BASE), false); | ||
264 | realview_timer_init(IRQ_PBA8_TIMER0_1); | 266 | realview_timer_init(IRQ_PBA8_TIMER0_1); |
265 | } | 267 | } |
266 | 268 | ||
diff --git a/arch/arm/mach-realview/realview_pbx.c b/arch/arm/mach-realview/realview_pbx.c index 3f2f605624e9..de64ba0ddb95 100644 --- a/arch/arm/mach-realview/realview_pbx.c +++ b/arch/arm/mach-realview/realview_pbx.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <linux/amba/mmci.h> | 26 | #include <linux/amba/mmci.h> |
27 | #include <linux/amba/pl022.h> | 27 | #include <linux/amba/pl022.h> |
28 | #include <linux/io.h> | 28 | #include <linux/io.h> |
29 | #include <linux/platform_data/clk-realview.h> | ||
29 | 30 | ||
30 | #include <asm/irq.h> | 31 | #include <asm/irq.h> |
31 | #include <asm/leds.h> | 32 | #include <asm/leds.h> |
@@ -320,6 +321,7 @@ static void __init realview_pbx_timer_init(void) | |||
320 | timer2_va_base = __io_address(REALVIEW_PBX_TIMER2_3_BASE); | 321 | timer2_va_base = __io_address(REALVIEW_PBX_TIMER2_3_BASE); |
321 | timer3_va_base = __io_address(REALVIEW_PBX_TIMER2_3_BASE) + 0x20; | 322 | timer3_va_base = __io_address(REALVIEW_PBX_TIMER2_3_BASE) + 0x20; |
322 | 323 | ||
324 | realview_clk_init(__io_address(REALVIEW_SYS_BASE), false); | ||
323 | realview_timer_init(IRQ_PBX_TIMER0_1); | 325 | realview_timer_init(IRQ_PBX_TIMER0_1); |
324 | realview_pbx_twd_init(); | 326 | realview_pbx_twd_init(); |
325 | } | 327 | } |
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 7f0b5ca78516..89b726d1afe5 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig | |||
@@ -40,4 +40,11 @@ config COMMON_CLK_WM831X | |||
40 | Supports the clocking subsystem of the WM831x/2x series of | 40 | Supports the clocking subsystem of the WM831x/2x series of |
41 | PMICs from Wolfson Microlectronics. | 41 | PMICs from Wolfson Microlectronics. |
42 | 42 | ||
43 | config COMMON_CLK_VERSATILE | ||
44 | tristate "Clock driver for ARM Reference designs" | ||
45 | depends on ARCH_INTEGRATOR || ARCH_REALVIEW | ||
46 | ---help--- | ||
47 | Supports clocking on ARM Reference designs Integrator/AP, | ||
48 | Integrator/CP, RealView PB1176, EB, PB11MP and PBX. | ||
49 | |||
43 | endmenu | 50 | endmenu |
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index d4c7253eb307..e30376c4ff5d 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile | |||
@@ -9,7 +9,7 @@ obj-$(CONFIG_ARCH_MXS) += mxs/ | |||
9 | obj-$(CONFIG_ARCH_SOCFPGA) += socfpga/ | 9 | obj-$(CONFIG_ARCH_SOCFPGA) += socfpga/ |
10 | obj-$(CONFIG_PLAT_SPEAR) += spear/ | 10 | obj-$(CONFIG_PLAT_SPEAR) += spear/ |
11 | obj-$(CONFIG_ARCH_U300) += clk-u300.o | 11 | obj-$(CONFIG_ARCH_U300) += clk-u300.o |
12 | obj-$(CONFIG_ARCH_INTEGRATOR) += versatile/ | 12 | obj-$(CONFIG_COMMON_CLK_VERSATILE) += versatile/ |
13 | obj-$(CONFIG_ARCH_PRIMA2) += clk-prima2.o | 13 | obj-$(CONFIG_ARCH_PRIMA2) += clk-prima2.o |
14 | 14 | ||
15 | # Chip specific | 15 | # Chip specific |
diff --git a/drivers/clk/versatile/Makefile b/drivers/clk/versatile/Makefile index 50cf6a2ee693..c0a0f6478798 100644 --- a/drivers/clk/versatile/Makefile +++ b/drivers/clk/versatile/Makefile | |||
@@ -1,3 +1,4 @@ | |||
1 | # Makefile for Versatile-specific clocks | 1 | # Makefile for Versatile-specific clocks |
2 | obj-$(CONFIG_ICST) += clk-icst.o | 2 | obj-$(CONFIG_ICST) += clk-icst.o |
3 | obj-$(CONFIG_ARCH_INTEGRATOR) += clk-integrator.o | 3 | obj-$(CONFIG_ARCH_INTEGRATOR) += clk-integrator.o |
4 | obj-$(CONFIG_ARCH_REALVIEW) += clk-realview.o | ||
diff --git a/drivers/clk/versatile/clk-realview.c b/drivers/clk/versatile/clk-realview.c new file mode 100644 index 000000000000..e21a99cef378 --- /dev/null +++ b/drivers/clk/versatile/clk-realview.c | |||
@@ -0,0 +1,114 @@ | |||
1 | #include <linux/clk.h> | ||
2 | #include <linux/clkdev.h> | ||
3 | #include <linux/err.h> | ||
4 | #include <linux/io.h> | ||
5 | #include <linux/clk-provider.h> | ||
6 | |||
7 | #include <mach/hardware.h> | ||
8 | #include <mach/platform.h> | ||
9 | |||
10 | #include "clk-icst.h" | ||
11 | |||
12 | /* | ||
13 | * Implementation of the ARM RealView clock trees. | ||
14 | */ | ||
15 | |||
16 | static void __iomem *sys_lock; | ||
17 | static void __iomem *sys_vcoreg; | ||
18 | |||
19 | /** | ||
20 | * realview_oscvco_get() - get ICST OSC settings for the RealView | ||
21 | */ | ||
22 | static struct icst_vco realview_oscvco_get(void) | ||
23 | { | ||
24 | u32 val; | ||
25 | struct icst_vco vco; | ||
26 | |||
27 | val = readl(sys_vcoreg); | ||
28 | vco.v = val & 0x1ff; | ||
29 | vco.r = (val >> 9) & 0x7f; | ||
30 | vco.s = (val >> 16) & 03; | ||
31 | return vco; | ||
32 | } | ||
33 | |||
34 | static void realview_oscvco_set(struct icst_vco vco) | ||
35 | { | ||
36 | u32 val; | ||
37 | |||
38 | val = readl(sys_vcoreg) & ~0x7ffff; | ||
39 | val |= vco.v | (vco.r << 9) | (vco.s << 16); | ||
40 | |||
41 | /* This magic unlocks the CM VCO so it can be controlled */ | ||
42 | writel(0xa05f, sys_lock); | ||
43 | writel(val, sys_vcoreg); | ||
44 | /* This locks the CM again */ | ||
45 | writel(0, sys_lock); | ||
46 | } | ||
47 | |||
48 | static const struct icst_params realview_oscvco_params = { | ||
49 | .ref = 24000000, | ||
50 | .vco_max = ICST307_VCO_MAX, | ||
51 | .vco_min = ICST307_VCO_MIN, | ||
52 | .vd_min = 4 + 8, | ||
53 | .vd_max = 511 + 8, | ||
54 | .rd_min = 1 + 2, | ||
55 | .rd_max = 127 + 2, | ||
56 | .s2div = icst307_s2div, | ||
57 | .idx2s = icst307_idx2s, | ||
58 | }; | ||
59 | |||
60 | static const struct clk_icst_desc __initdata realview_icst_desc = { | ||
61 | .params = &realview_oscvco_params, | ||
62 | .getvco = realview_oscvco_get, | ||
63 | .setvco = realview_oscvco_set, | ||
64 | }; | ||
65 | |||
66 | /* | ||
67 | * realview_clk_init() - set up the RealView clock tree | ||
68 | */ | ||
69 | void __init realview_clk_init(void __iomem *sysbase, bool is_pb1176) | ||
70 | { | ||
71 | struct clk *clk; | ||
72 | |||
73 | sys_lock = sysbase + REALVIEW_SYS_LOCK_OFFSET; | ||
74 | if (is_pb1176) | ||
75 | sys_vcoreg = sysbase + REALVIEW_SYS_OSC0_OFFSET; | ||
76 | else | ||
77 | sys_vcoreg = sysbase + REALVIEW_SYS_OSC4_OFFSET; | ||
78 | |||
79 | |||
80 | /* APB clock dummy */ | ||
81 | clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL, CLK_IS_ROOT, 0); | ||
82 | clk_register_clkdev(clk, "apb_pclk", NULL); | ||
83 | |||
84 | /* 24 MHz clock */ | ||
85 | clk = clk_register_fixed_rate(NULL, "clk24mhz", NULL, CLK_IS_ROOT, | ||
86 | 24000000); | ||
87 | clk_register_clkdev(clk, NULL, "dev:uart0"); | ||
88 | clk_register_clkdev(clk, NULL, "dev:uart1"); | ||
89 | clk_register_clkdev(clk, NULL, "dev:uart2"); | ||
90 | clk_register_clkdev(clk, NULL, "fpga:kmi0"); | ||
91 | clk_register_clkdev(clk, NULL, "fpga:kmi1"); | ||
92 | clk_register_clkdev(clk, NULL, "fpga:mmc0"); | ||
93 | clk_register_clkdev(clk, NULL, "dev:ssp0"); | ||
94 | if (is_pb1176) { | ||
95 | /* | ||
96 | * UART3 is on the dev chip in PB1176 | ||
97 | * UART4 only exists in PB1176 | ||
98 | */ | ||
99 | clk_register_clkdev(clk, NULL, "dev:uart3"); | ||
100 | clk_register_clkdev(clk, NULL, "dev:uart4"); | ||
101 | } else | ||
102 | clk_register_clkdev(clk, NULL, "fpga:uart3"); | ||
103 | |||
104 | |||
105 | /* 1 MHz clock */ | ||
106 | clk = clk_register_fixed_rate(NULL, "clk1mhz", NULL, CLK_IS_ROOT, | ||
107 | 1000000); | ||
108 | clk_register_clkdev(clk, NULL, "sp804"); | ||
109 | |||
110 | /* ICST VCO clock */ | ||
111 | clk = icst_clk_register(NULL, &realview_icst_desc); | ||
112 | clk_register_clkdev(clk, NULL, "dev:clcd"); | ||
113 | clk_register_clkdev(clk, NULL, "issp:clcd"); | ||
114 | } | ||
diff --git a/include/linux/platform_data/clk-realview.h b/include/linux/platform_data/clk-realview.h new file mode 100644 index 000000000000..2e426a7dbc51 --- /dev/null +++ b/include/linux/platform_data/clk-realview.h | |||
@@ -0,0 +1 @@ | |||
void realview_clk_init(void __iomem *sysbase, bool is_pb1176); | |||