blob: b2eede5531c8fab5840e8e0bb75944f350773ced [file] [log] [blame]
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +01001/*
2 * arch/arm/mach-ep93xx/clock.c
3 * Clock control for Cirrus EP93xx chips.
4 *
5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or (at
10 * your option) any later version.
11 */
12
13#include <linux/kernel.h>
14#include <linux/clk.h>
15#include <linux/err.h>
Lennert Buytenhek51dd2492007-02-04 22:45:33 +010016#include <linux/module.h>
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010017#include <linux/string.h>
Russell Kingfced80c2008-09-06 12:10:45 +010018#include <linux/io.h>
Russell Kingae696fd2008-11-30 17:11:49 +000019
20#include <asm/clkdev.h>
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010021#include <asm/div64.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/hardware.h>
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010023
Hartley Sweetenff05c032009-05-07 18:41:47 +010024
25/*
26 * The EP93xx has two external crystal oscillators. To generate the
27 * required high-frequency clocks, the processor uses two phase-locked-
28 * loops (PLLs) to multiply the incoming external clock signal to much
29 * higher frequencies that are then divided down by programmable dividers
30 * to produce the needed clocks. The PLLs operate independently of one
31 * another.
32 */
33#define EP93XX_EXT_CLK_RATE 14745600
34#define EP93XX_EXT_RTC_RATE 32768
35
36
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010037struct clk {
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010038 unsigned long rate;
39 int users;
Hartley Sweetenff05c032009-05-07 18:41:47 +010040 int sw_locked;
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010041 u32 enable_reg;
42 u32 enable_mask;
Hartley Sweetenff05c032009-05-07 18:41:47 +010043
44 unsigned long (*get_rate)(struct clk *clk);
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010045};
46
Hartley Sweetenff05c032009-05-07 18:41:47 +010047
48static unsigned long get_uart_rate(struct clk *clk);
49
50
51static struct clk clk_uart1 = {
52 .sw_locked = 1,
53 .enable_reg = EP93XX_SYSCON_DEVICE_CONFIG,
54 .enable_mask = EP93XX_SYSCON_DEVICE_CONFIG_U1EN,
55 .get_rate = get_uart_rate,
56};
57static struct clk clk_uart2 = {
58 .sw_locked = 1,
59 .enable_reg = EP93XX_SYSCON_DEVICE_CONFIG,
60 .enable_mask = EP93XX_SYSCON_DEVICE_CONFIG_U2EN,
61 .get_rate = get_uart_rate,
62};
63static struct clk clk_uart3 = {
64 .sw_locked = 1,
65 .enable_reg = EP93XX_SYSCON_DEVICE_CONFIG,
66 .enable_mask = EP93XX_SYSCON_DEVICE_CONFIG_U3EN,
67 .get_rate = get_uart_rate,
Russell Kinged519de2007-04-22 12:30:41 +010068};
Russell Kingae696fd2008-11-30 17:11:49 +000069static struct clk clk_pll1;
70static struct clk clk_f;
71static struct clk clk_h;
72static struct clk clk_p;
73static struct clk clk_pll2;
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010074static struct clk clk_usb_host = {
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +010075 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
76 .enable_mask = EP93XX_SYSCON_CLOCK_USH_EN,
77};
78
Ryan Mallon1c8daab2009-02-25 22:22:38 +010079/* DMA Clocks */
80static struct clk clk_m2p0 = {
81 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
82 .enable_mask = 0x00020000,
83};
84static struct clk clk_m2p1 = {
85 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
86 .enable_mask = 0x00010000,
87};
88static struct clk clk_m2p2 = {
89 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
90 .enable_mask = 0x00080000,
91};
92static struct clk clk_m2p3 = {
93 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
94 .enable_mask = 0x00040000,
95};
96static struct clk clk_m2p4 = {
97 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
98 .enable_mask = 0x00200000,
99};
100static struct clk clk_m2p5 = {
101 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
102 .enable_mask = 0x00100000,
103};
104static struct clk clk_m2p6 = {
105 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
106 .enable_mask = 0x00800000,
107};
108static struct clk clk_m2p7 = {
109 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
110 .enable_mask = 0x00400000,
111};
112static struct clk clk_m2p8 = {
113 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
114 .enable_mask = 0x02000000,
115};
116static struct clk clk_m2p9 = {
117 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
118 .enable_mask = 0x01000000,
119};
120static struct clk clk_m2m0 = {
121 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
122 .enable_mask = 0x04000000,
123};
124static struct clk clk_m2m1 = {
125 .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
126 .enable_mask = 0x08000000,
127};
128
Russell Kingae696fd2008-11-30 17:11:49 +0000129#define INIT_CK(dev,con,ck) \
130 { .dev_id = dev, .con_id = con, .clk = ck }
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100131
Russell Kingae696fd2008-11-30 17:11:49 +0000132static struct clk_lookup clocks[] = {
Hartley Sweetenff05c032009-05-07 18:41:47 +0100133 INIT_CK("apb:uart1", NULL, &clk_uart1),
134 INIT_CK("apb:uart2", NULL, &clk_uart2),
135 INIT_CK("apb:uart3", NULL, &clk_uart3),
Russell Kingae696fd2008-11-30 17:11:49 +0000136 INIT_CK(NULL, "pll1", &clk_pll1),
137 INIT_CK(NULL, "fclk", &clk_f),
138 INIT_CK(NULL, "hclk", &clk_h),
139 INIT_CK(NULL, "pclk", &clk_p),
140 INIT_CK(NULL, "pll2", &clk_pll2),
141 INIT_CK(NULL, "usb_host", &clk_usb_host),
Ryan Mallon1c8daab2009-02-25 22:22:38 +0100142 INIT_CK(NULL, "m2p0", &clk_m2p0),
143 INIT_CK(NULL, "m2p1", &clk_m2p1),
144 INIT_CK(NULL, "m2p2", &clk_m2p2),
145 INIT_CK(NULL, "m2p3", &clk_m2p3),
146 INIT_CK(NULL, "m2p4", &clk_m2p4),
147 INIT_CK(NULL, "m2p5", &clk_m2p5),
148 INIT_CK(NULL, "m2p6", &clk_m2p6),
149 INIT_CK(NULL, "m2p7", &clk_m2p7),
150 INIT_CK(NULL, "m2p8", &clk_m2p8),
151 INIT_CK(NULL, "m2p9", &clk_m2p9),
152 INIT_CK(NULL, "m2m0", &clk_m2m0),
153 INIT_CK(NULL, "m2m1", &clk_m2m1),
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100154};
155
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100156
157int clk_enable(struct clk *clk)
158{
159 if (!clk->users++ && clk->enable_reg) {
160 u32 value;
161
162 value = __raw_readl(clk->enable_reg);
Hartley Sweetenff05c032009-05-07 18:41:47 +0100163 if (clk->sw_locked)
164 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100165 __raw_writel(value | clk->enable_mask, clk->enable_reg);
166 }
167
168 return 0;
169}
Dmitry Baryshkov0c5d5b72008-07-10 14:44:23 +0100170EXPORT_SYMBOL(clk_enable);
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100171
172void clk_disable(struct clk *clk)
173{
174 if (!--clk->users && clk->enable_reg) {
175 u32 value;
176
177 value = __raw_readl(clk->enable_reg);
Hartley Sweetenff05c032009-05-07 18:41:47 +0100178 if (clk->sw_locked)
179 __raw_writel(0xaa, EP93XX_SYSCON_SWLOCK);
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100180 __raw_writel(value & ~clk->enable_mask, clk->enable_reg);
181 }
182}
Dmitry Baryshkov0c5d5b72008-07-10 14:44:23 +0100183EXPORT_SYMBOL(clk_disable);
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100184
Hartley Sweetenff05c032009-05-07 18:41:47 +0100185static unsigned long get_uart_rate(struct clk *clk)
186{
187 u32 value;
188
189 value = __raw_readl(EP93XX_SYSCON_CLOCK_CONTROL);
190 if (value & EP93XX_SYSCON_CLOCK_UARTBAUD)
191 return EP93XX_EXT_CLK_RATE;
192 else
193 return EP93XX_EXT_CLK_RATE / 2;
194}
195
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100196unsigned long clk_get_rate(struct clk *clk)
197{
Hartley Sweetenff05c032009-05-07 18:41:47 +0100198 if (clk->get_rate)
199 return clk->get_rate(clk);
200
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100201 return clk->rate;
202}
Dmitry Baryshkov0c5d5b72008-07-10 14:44:23 +0100203EXPORT_SYMBOL(clk_get_rate);
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100204
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100205
206static char fclk_divisors[] = { 1, 2, 4, 8, 16, 1, 1, 1 };
207static char hclk_divisors[] = { 1, 2, 4, 5, 6, 8, 16, 32 };
208static char pclk_divisors[] = { 1, 2, 4, 8 };
209
210/*
211 * PLL rate = 14.7456 MHz * (X1FBD + 1) * (X2FBD + 1) / (X2IPD + 1) / 2^PS
212 */
213static unsigned long calc_pll_rate(u32 config_word)
214{
215 unsigned long long rate;
216 int i;
217
Hartley Sweetenff05c032009-05-07 18:41:47 +0100218 rate = EP93XX_EXT_CLK_RATE;
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100219 rate *= ((config_word >> 11) & 0x1f) + 1; /* X1FBD */
220 rate *= ((config_word >> 5) & 0x3f) + 1; /* X2FBD */
221 do_div(rate, (config_word & 0x1f) + 1); /* X2IPD */
222 for (i = 0; i < ((config_word >> 16) & 3); i++) /* PS */
223 rate >>= 1;
224
225 return (unsigned long)rate;
226}
227
Ryan Mallon1c8daab2009-02-25 22:22:38 +0100228static void __init ep93xx_dma_clock_init(void)
229{
230 clk_m2p0.rate = clk_h.rate;
231 clk_m2p1.rate = clk_h.rate;
232 clk_m2p2.rate = clk_h.rate;
233 clk_m2p3.rate = clk_h.rate;
234 clk_m2p4.rate = clk_h.rate;
235 clk_m2p5.rate = clk_h.rate;
236 clk_m2p6.rate = clk_h.rate;
237 clk_m2p7.rate = clk_h.rate;
238 clk_m2p8.rate = clk_h.rate;
239 clk_m2p9.rate = clk_h.rate;
240 clk_m2m0.rate = clk_h.rate;
241 clk_m2m1.rate = clk_h.rate;
242}
243
Lennert Buytenhek51dd2492007-02-04 22:45:33 +0100244static int __init ep93xx_clock_init(void)
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100245{
246 u32 value;
Russell Kingae696fd2008-11-30 17:11:49 +0000247 int i;
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100248
249 value = __raw_readl(EP93XX_SYSCON_CLOCK_SET1);
250 if (!(value & 0x00800000)) { /* PLL1 bypassed? */
Hartley Sweetenff05c032009-05-07 18:41:47 +0100251 clk_pll1.rate = EP93XX_EXT_CLK_RATE;
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100252 } else {
253 clk_pll1.rate = calc_pll_rate(value);
254 }
255 clk_f.rate = clk_pll1.rate / fclk_divisors[(value >> 25) & 0x7];
256 clk_h.rate = clk_pll1.rate / hclk_divisors[(value >> 20) & 0x7];
257 clk_p.rate = clk_h.rate / pclk_divisors[(value >> 18) & 0x3];
Ryan Mallon1c8daab2009-02-25 22:22:38 +0100258 ep93xx_dma_clock_init();
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100259
260 value = __raw_readl(EP93XX_SYSCON_CLOCK_SET2);
261 if (!(value & 0x00080000)) { /* PLL2 bypassed? */
Hartley Sweetenff05c032009-05-07 18:41:47 +0100262 clk_pll2.rate = EP93XX_EXT_CLK_RATE;
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100263 } else if (value & 0x00040000) { /* PLL2 enabled? */
264 clk_pll2.rate = calc_pll_rate(value);
265 } else {
266 clk_pll2.rate = 0;
267 }
268 clk_usb_host.rate = clk_pll2.rate / (((value >> 28) & 0xf) + 1);
269
270 printk(KERN_INFO "ep93xx: PLL1 running at %ld MHz, PLL2 at %ld MHz\n",
271 clk_pll1.rate / 1000000, clk_pll2.rate / 1000000);
272 printk(KERN_INFO "ep93xx: FCLK %ld MHz, HCLK %ld MHz, PCLK %ld MHz\n",
273 clk_f.rate / 1000000, clk_h.rate / 1000000,
274 clk_p.rate / 1000000);
Lennert Buytenhek51dd2492007-02-04 22:45:33 +0100275
Russell Kingae696fd2008-11-30 17:11:49 +0000276 for (i = 0; i < ARRAY_SIZE(clocks); i++)
277 clkdev_add(&clocks[i]);
Lennert Buytenhek51dd2492007-02-04 22:45:33 +0100278 return 0;
Lennert Buytenhek1d81eed2006-06-24 10:33:02 +0100279}
Lennert Buytenhek51dd2492007-02-04 22:45:33 +0100280arch_initcall(ep93xx_clock_init);