blob: dafe4f71d15f2a4785f076d444a58e529480e176 [file] [log] [blame]
Tony Lindgren3179a012005-11-10 14:26:48 +00001/*
2 * linux/arch/arm/mach-omap1/clock.c
3 *
4 * Copyright (C) 2004 - 2005 Nokia corporation
5 * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
6 *
7 * Modified to use omap shared clock framework by
8 * Tony Lindgren <tony@atomide.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/list.h>
17#include <linux/errno.h>
18#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000019#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010020#include <linux/io.h>
Tony Lindgren3179a012005-11-10 14:26:48 +000021
Tony Lindgren90afd5c2006-09-25 13:27:20 +030022#include <asm/mach-types.h>
Russell Kingd7e8f1f2009-01-18 23:03:15 +000023#include <asm/clkdev.h>
Tony Lindgren3179a012005-11-10 14:26:48 +000024
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/cpu.h>
26#include <mach/usb.h>
27#include <mach/clock.h>
28#include <mach/sram.h>
Tony Lindgren3179a012005-11-10 14:26:48 +000029
Russell King548d8492008-11-04 14:02:46 +000030static const struct clkops clkops_generic;
31static const struct clkops clkops_uart;
32static const struct clkops clkops_dspck;
33
Tony Lindgren3179a012005-11-10 14:26:48 +000034#include "clock.h"
35
Russell Kingf1c25432009-01-23 22:34:09 +000036static int clk_omap1_dummy_enable(struct clk *clk)
37{
38 return 0;
39}
40
41static void clk_omap1_dummy_disable(struct clk *clk)
42{
43}
44
45static const struct clkops clkops_dummy = {
46 .enable = clk_omap1_dummy_enable,
47 .disable = clk_omap1_dummy_disable,
48};
49
50static struct clk dummy_ck = {
51 .name = "dummy",
52 .ops = &clkops_dummy,
53 .flags = RATE_FIXED,
54};
55
Russell Kingd7e8f1f2009-01-18 23:03:15 +000056struct omap_clk {
57 u32 cpu;
58 struct clk_lookup lk;
59};
60
61#define CLK(dev, con, ck, cp) \
62 { \
63 .cpu = cp, \
64 .lk = { \
65 .dev_id = dev, \
66 .con_id = con, \
67 .clk = ck, \
68 }, \
69 }
70
71#define CK_310 (1 << 0)
72#define CK_730 (1 << 1)
73#define CK_1510 (1 << 2)
74#define CK_16XX (1 << 3)
75
76static struct omap_clk omap_clks[] = {
77 /* non-ULPD clocks */
78 CLK(NULL, "ck_ref", &ck_ref, CK_16XX | CK_1510 | CK_310),
79 CLK(NULL, "ck_dpll1", &ck_dpll1, CK_16XX | CK_1510 | CK_310),
80 /* CK_GEN1 clocks */
81 CLK(NULL, "ck_dpll1out", &ck_dpll1out.clk, CK_16XX),
82 CLK(NULL, "ck_sossi", &sossi_ck, CK_16XX),
83 CLK(NULL, "arm_ck", &arm_ck, CK_16XX | CK_1510 | CK_310),
84 CLK(NULL, "armper_ck", &armper_ck.clk, CK_16XX | CK_1510 | CK_310),
85 CLK(NULL, "arm_gpio_ck", &arm_gpio_ck, CK_1510 | CK_310),
86 CLK(NULL, "armxor_ck", &armxor_ck.clk, CK_16XX | CK_1510 | CK_310),
87 CLK(NULL, "armtim_ck", &armtim_ck.clk, CK_16XX | CK_1510 | CK_310),
Russell King39a80c72009-01-19 20:44:33 +000088 CLK("omap_wdt", "fck", &armwdt_ck.clk, CK_16XX | CK_1510 | CK_310),
Russell King4c5e1942009-01-23 12:48:37 +000089 CLK("omap_wdt", "ick", &armper_ck.clk, CK_16XX),
90 CLK("omap_wdt", "ick", &dummy_ck, CK_1510 | CK_310),
Russell Kingd7e8f1f2009-01-18 23:03:15 +000091 CLK(NULL, "arminth_ck", &arminth_ck1510, CK_1510 | CK_310),
92 CLK(NULL, "arminth_ck", &arminth_ck16xx, CK_16XX),
93 /* CK_GEN2 clocks */
94 CLK(NULL, "dsp_ck", &dsp_ck, CK_16XX | CK_1510 | CK_310),
95 CLK(NULL, "dspmmu_ck", &dspmmu_ck, CK_16XX | CK_1510 | CK_310),
96 CLK(NULL, "dspper_ck", &dspper_ck, CK_16XX | CK_1510 | CK_310),
97 CLK(NULL, "dspxor_ck", &dspxor_ck, CK_16XX | CK_1510 | CK_310),
98 CLK(NULL, "dsptim_ck", &dsptim_ck, CK_16XX | CK_1510 | CK_310),
99 /* CK_GEN3 clocks */
100 CLK(NULL, "tc_ck", &tc_ck.clk, CK_16XX | CK_1510 | CK_310 | CK_730),
101 CLK(NULL, "tipb_ck", &tipb_ck, CK_1510 | CK_310),
102 CLK(NULL, "l3_ocpi_ck", &l3_ocpi_ck, CK_16XX),
103 CLK(NULL, "tc1_ck", &tc1_ck, CK_16XX),
104 CLK(NULL, "tc2_ck", &tc2_ck, CK_16XX),
105 CLK(NULL, "dma_ck", &dma_ck, CK_16XX | CK_1510 | CK_310),
106 CLK(NULL, "dma_lcdfree_ck", &dma_lcdfree_ck, CK_16XX),
107 CLK(NULL, "api_ck", &api_ck.clk, CK_16XX | CK_1510 | CK_310),
108 CLK(NULL, "lb_ck", &lb_ck.clk, CK_1510 | CK_310),
109 CLK(NULL, "rhea1_ck", &rhea1_ck, CK_16XX),
110 CLK(NULL, "rhea2_ck", &rhea2_ck, CK_16XX),
111 CLK(NULL, "lcd_ck", &lcd_ck_16xx, CK_16XX | CK_730),
112 CLK(NULL, "lcd_ck", &lcd_ck_1510.clk, CK_1510 | CK_310),
113 /* ULPD clocks */
114 CLK(NULL, "uart1_ck", &uart1_1510, CK_1510 | CK_310),
115 CLK(NULL, "uart1_ck", &uart1_16xx.clk, CK_16XX),
116 CLK(NULL, "uart2_ck", &uart2_ck, CK_16XX | CK_1510 | CK_310),
117 CLK(NULL, "uart3_ck", &uart3_1510, CK_1510 | CK_310),
118 CLK(NULL, "uart3_ck", &uart3_16xx.clk, CK_16XX),
119 CLK(NULL, "usb_clko", &usb_clko, CK_16XX | CK_1510 | CK_310),
120 CLK(NULL, "usb_hhc_ck", &usb_hhc_ck1510, CK_1510 | CK_310),
121 CLK(NULL, "usb_hhc_ck", &usb_hhc_ck16xx, CK_16XX),
122 CLK(NULL, "usb_dc_ck", &usb_dc_ck, CK_16XX),
123 CLK(NULL, "mclk", &mclk_1510, CK_1510 | CK_310),
124 CLK(NULL, "mclk", &mclk_16xx, CK_16XX),
125 CLK(NULL, "bclk", &bclk_1510, CK_1510 | CK_310),
126 CLK(NULL, "bclk", &bclk_16xx, CK_16XX),
Russell King5c9e02b2009-01-19 20:53:30 +0000127 CLK("mmci-omap.0", "fck", &mmc1_ck, CK_16XX | CK_1510 | CK_310),
Russell Kingd4a36645a2009-01-23 19:03:37 +0000128 CLK("mmci-omap.0", "ick", &armper_ck.clk, CK_16XX | CK_1510 | CK_310),
Russell King5c9e02b2009-01-19 20:53:30 +0000129 CLK("mmci-omap.1", "fck", &mmc2_ck, CK_16XX),
Russell Kingd4a36645a2009-01-23 19:03:37 +0000130 CLK("mmci-omap.1", "ick", &armper_ck.clk, CK_16XX),
Russell Kingd7e8f1f2009-01-18 23:03:15 +0000131 /* Virtual clocks */
132 CLK(NULL, "mpu", &virtual_ck_mpu, CK_16XX | CK_1510 | CK_310),
Russell King1d14de02009-01-19 21:02:29 +0000133 CLK("i2c_omap.1", "fck", &i2c_fck, CK_16XX | CK_1510 | CK_310),
134 CLK("i2c_omap.1", "ick", &i2c_ick, CK_16XX),
Russell King5fe23382009-01-23 22:57:12 +0000135 CLK("i2c_omap.1", "ick", &dummy_ck, CK_1510 | CK_310),
Russell Kingb1ad3792009-01-22 19:41:20 +0000136 CLK("omap_uwire", "fck", &armxor_ck.clk, CK_16XX | CK_1510 | CK_310),
Russell Kingb820ce42009-01-23 10:26:46 +0000137 CLK("omap-mcbsp.1", "ick", &dspper_ck, CK_16XX),
138 CLK("omap-mcbsp.1", "ick", &dummy_ck, CK_1510 | CK_310),
139 CLK("omap-mcbsp.2", "ick", &armper_ck.clk, CK_16XX),
140 CLK("omap-mcbsp.2", "ick", &dummy_ck, CK_1510 | CK_310),
141 CLK("omap-mcbsp.3", "ick", &dspper_ck, CK_16XX),
142 CLK("omap-mcbsp.3", "ick", &dummy_ck, CK_1510 | CK_310),
143 CLK("omap-mcbsp.1", "fck", &dspxor_ck, CK_16XX | CK_1510 | CK_310),
144 CLK("omap-mcbsp.2", "fck", &armper_ck.clk, CK_16XX | CK_1510 | CK_310),
145 CLK("omap-mcbsp.3", "fck", &dspxor_ck, CK_16XX | CK_1510 | CK_310),
Russell Kingd7e8f1f2009-01-18 23:03:15 +0000146};
147
Russell King548d8492008-11-04 14:02:46 +0000148static int omap1_clk_enable_generic(struct clk * clk);
149static int omap1_clk_enable(struct clk *clk);
150static void omap1_clk_disable_generic(struct clk * clk);
151static void omap1_clk_disable(struct clk *clk);
152
Tony Lindgren3179a012005-11-10 14:26:48 +0000153__u32 arm_idlect1_mask;
154
155/*-------------------------------------------------------------------------
156 * Omap1 specific clock functions
157 *-------------------------------------------------------------------------*/
158
Russell King8b9dbc12009-02-12 10:12:59 +0000159static unsigned long omap1_watchdog_recalc(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000160{
Russell King8b9dbc12009-02-12 10:12:59 +0000161 return clk->parent->rate / 14;
Tony Lindgren3179a012005-11-10 14:26:48 +0000162}
163
Russell King8b9dbc12009-02-12 10:12:59 +0000164static unsigned long omap1_uart_recalc(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000165{
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700166 unsigned int val = __raw_readl(clk->enable_reg);
Russell King8b9dbc12009-02-12 10:12:59 +0000167 return val & clk->enable_bit ? 48000000 : 12000000;
Tony Lindgren3179a012005-11-10 14:26:48 +0000168}
169
Russell King8b9dbc12009-02-12 10:12:59 +0000170static unsigned long omap1_sossi_recalc(struct clk *clk)
Imre Deakdf2c2e72007-03-05 17:22:58 +0200171{
172 u32 div = omap_readl(MOD_CONF_CTRL_1);
173
174 div = (div >> 17) & 0x7;
175 div++;
Russell King8b9dbc12009-02-12 10:12:59 +0000176
177 return clk->parent->rate / div;
Imre Deakdf2c2e72007-03-05 17:22:58 +0200178}
179
Tony Lindgren3179a012005-11-10 14:26:48 +0000180static int omap1_clk_enable_dsp_domain(struct clk *clk)
181{
182 int retval;
183
Tony Lindgren10b55792006-01-17 15:30:42 -0800184 retval = omap1_clk_enable(&api_ck.clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000185 if (!retval) {
Tony Lindgren10b55792006-01-17 15:30:42 -0800186 retval = omap1_clk_enable_generic(clk);
187 omap1_clk_disable(&api_ck.clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000188 }
189
190 return retval;
191}
192
193static void omap1_clk_disable_dsp_domain(struct clk *clk)
194{
Tony Lindgren10b55792006-01-17 15:30:42 -0800195 if (omap1_clk_enable(&api_ck.clk) == 0) {
196 omap1_clk_disable_generic(clk);
197 omap1_clk_disable(&api_ck.clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000198 }
199}
200
Russell King548d8492008-11-04 14:02:46 +0000201static const struct clkops clkops_dspck = {
202 .enable = &omap1_clk_enable_dsp_domain,
203 .disable = &omap1_clk_disable_dsp_domain,
204};
205
Tony Lindgren3179a012005-11-10 14:26:48 +0000206static int omap1_clk_enable_uart_functional(struct clk *clk)
207{
208 int ret;
209 struct uart_clk *uclk;
210
Tony Lindgren10b55792006-01-17 15:30:42 -0800211 ret = omap1_clk_enable_generic(clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000212 if (ret == 0) {
213 /* Set smart idle acknowledgement mode */
214 uclk = (struct uart_clk *)clk;
215 omap_writeb((omap_readb(uclk->sysc_addr) & ~0x10) | 8,
216 uclk->sysc_addr);
217 }
218
219 return ret;
220}
221
222static void omap1_clk_disable_uart_functional(struct clk *clk)
223{
224 struct uart_clk *uclk;
225
226 /* Set force idle acknowledgement mode */
227 uclk = (struct uart_clk *)clk;
228 omap_writeb((omap_readb(uclk->sysc_addr) & ~0x18), uclk->sysc_addr);
229
Tony Lindgren10b55792006-01-17 15:30:42 -0800230 omap1_clk_disable_generic(clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000231}
232
Russell King548d8492008-11-04 14:02:46 +0000233static const struct clkops clkops_uart = {
234 .enable = &omap1_clk_enable_uart_functional,
235 .disable = &omap1_clk_disable_uart_functional,
236};
237
Tony Lindgren3179a012005-11-10 14:26:48 +0000238static void omap1_clk_allow_idle(struct clk *clk)
239{
240 struct arm_idlect1_clk * iclk = (struct arm_idlect1_clk *)clk;
241
242 if (!(clk->flags & CLOCK_IDLE_CONTROL))
243 return;
244
245 if (iclk->no_idle_count > 0 && !(--iclk->no_idle_count))
246 arm_idlect1_mask |= 1 << iclk->idlect_shift;
247}
248
249static void omap1_clk_deny_idle(struct clk *clk)
250{
251 struct arm_idlect1_clk * iclk = (struct arm_idlect1_clk *)clk;
252
253 if (!(clk->flags & CLOCK_IDLE_CONTROL))
254 return;
255
256 if (iclk->no_idle_count++ == 0)
257 arm_idlect1_mask &= ~(1 << iclk->idlect_shift);
258}
259
260static __u16 verify_ckctl_value(__u16 newval)
261{
262 /* This function checks for following limitations set
263 * by the hardware (all conditions must be true):
264 * DSPMMU_CK == DSP_CK or DSPMMU_CK == DSP_CK/2
265 * ARM_CK >= TC_CK
266 * DSP_CK >= TC_CK
267 * DSPMMU_CK >= TC_CK
268 *
269 * In addition following rules are enforced:
270 * LCD_CK <= TC_CK
271 * ARMPER_CK <= TC_CK
272 *
273 * However, maximum frequencies are not checked for!
274 */
275 __u8 per_exp;
276 __u8 lcd_exp;
277 __u8 arm_exp;
278 __u8 dsp_exp;
279 __u8 tc_exp;
280 __u8 dspmmu_exp;
281
282 per_exp = (newval >> CKCTL_PERDIV_OFFSET) & 3;
283 lcd_exp = (newval >> CKCTL_LCDDIV_OFFSET) & 3;
284 arm_exp = (newval >> CKCTL_ARMDIV_OFFSET) & 3;
285 dsp_exp = (newval >> CKCTL_DSPDIV_OFFSET) & 3;
286 tc_exp = (newval >> CKCTL_TCDIV_OFFSET) & 3;
287 dspmmu_exp = (newval >> CKCTL_DSPMMUDIV_OFFSET) & 3;
288
289 if (dspmmu_exp < dsp_exp)
290 dspmmu_exp = dsp_exp;
291 if (dspmmu_exp > dsp_exp+1)
292 dspmmu_exp = dsp_exp+1;
293 if (tc_exp < arm_exp)
294 tc_exp = arm_exp;
295 if (tc_exp < dspmmu_exp)
296 tc_exp = dspmmu_exp;
297 if (tc_exp > lcd_exp)
298 lcd_exp = tc_exp;
299 if (tc_exp > per_exp)
300 per_exp = tc_exp;
301
302 newval &= 0xf000;
303 newval |= per_exp << CKCTL_PERDIV_OFFSET;
304 newval |= lcd_exp << CKCTL_LCDDIV_OFFSET;
305 newval |= arm_exp << CKCTL_ARMDIV_OFFSET;
306 newval |= dsp_exp << CKCTL_DSPDIV_OFFSET;
307 newval |= tc_exp << CKCTL_TCDIV_OFFSET;
308 newval |= dspmmu_exp << CKCTL_DSPMMUDIV_OFFSET;
309
310 return newval;
311}
312
313static int calc_dsor_exp(struct clk *clk, unsigned long rate)
314{
315 /* Note: If target frequency is too low, this function will return 4,
316 * which is invalid value. Caller must check for this value and act
317 * accordingly.
318 *
319 * Note: This function does not check for following limitations set
320 * by the hardware (all conditions must be true):
321 * DSPMMU_CK == DSP_CK or DSPMMU_CK == DSP_CK/2
322 * ARM_CK >= TC_CK
323 * DSP_CK >= TC_CK
324 * DSPMMU_CK >= TC_CK
325 */
326 unsigned long realrate;
327 struct clk * parent;
328 unsigned dsor_exp;
329
Tony Lindgren3179a012005-11-10 14:26:48 +0000330 parent = clk->parent;
Russell Kingc0fc18c52008-09-05 15:10:27 +0100331 if (unlikely(parent == NULL))
Tony Lindgren3179a012005-11-10 14:26:48 +0000332 return -EIO;
333
334 realrate = parent->rate;
335 for (dsor_exp=0; dsor_exp<4; dsor_exp++) {
336 if (realrate <= rate)
337 break;
338
339 realrate /= 2;
340 }
341
342 return dsor_exp;
343}
344
Russell King8b9dbc12009-02-12 10:12:59 +0000345static unsigned long omap1_ckctl_recalc(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000346{
Tony Lindgren3179a012005-11-10 14:26:48 +0000347 /* Calculate divisor encoded as 2-bit exponent */
Russell King8b9dbc12009-02-12 10:12:59 +0000348 int dsor = 1 << (3 & (omap_readw(ARM_CKCTL) >> clk->rate_offset));
Tony Lindgren3179a012005-11-10 14:26:48 +0000349
Russell King8b9dbc12009-02-12 10:12:59 +0000350 return clk->parent->rate / dsor;
Tony Lindgren3179a012005-11-10 14:26:48 +0000351}
352
Russell King8b9dbc12009-02-12 10:12:59 +0000353static unsigned long omap1_ckctl_recalc_dsp_domain(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000354{
355 int dsor;
356
357 /* Calculate divisor encoded as 2-bit exponent
358 *
359 * The clock control bits are in DSP domain,
360 * so api_ck is needed for access.
361 * Note that DSP_CKCTL virt addr = phys addr, so
362 * we must use __raw_readw() instead of omap_readw().
363 */
Tony Lindgren10b55792006-01-17 15:30:42 -0800364 omap1_clk_enable(&api_ck.clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000365 dsor = 1 << (3 & (__raw_readw(DSP_CKCTL) >> clk->rate_offset));
Tony Lindgren10b55792006-01-17 15:30:42 -0800366 omap1_clk_disable(&api_ck.clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000367
Russell King8b9dbc12009-02-12 10:12:59 +0000368 return clk->parent->rate / dsor;
Tony Lindgren3179a012005-11-10 14:26:48 +0000369}
370
371/* MPU virtual clock functions */
372static int omap1_select_table_rate(struct clk * clk, unsigned long rate)
373{
374 /* Find the highest supported frequency <= rate and switch to it */
375 struct mpu_rate * ptr;
376
377 if (clk != &virtual_ck_mpu)
378 return -EINVAL;
379
380 for (ptr = rate_table; ptr->rate; ptr++) {
381 if (ptr->xtal != ck_ref.rate)
382 continue;
383
384 /* DPLL1 cannot be reprogrammed without risking system crash */
385 if (likely(ck_dpll1.rate!=0) && ptr->pll_rate != ck_dpll1.rate)
386 continue;
387
388 /* Can check only after xtal frequency check */
389 if (ptr->rate <= rate)
390 break;
391 }
392
393 if (!ptr->rate)
394 return -EINVAL;
395
396 /*
397 * In most cases we should not need to reprogram DPLL.
398 * Reprogramming the DPLL is tricky, it must be done from SRAM.
Brian Swetland495f71d2006-06-26 16:16:03 -0700399 * (on 730, bit 13 must always be 1)
Tony Lindgren3179a012005-11-10 14:26:48 +0000400 */
Brian Swetland495f71d2006-06-26 16:16:03 -0700401 if (cpu_is_omap730())
402 omap_sram_reprogram_clock(ptr->dpllctl_val, ptr->ckctl_val | 0x2000);
403 else
404 omap_sram_reprogram_clock(ptr->dpllctl_val, ptr->ckctl_val);
Tony Lindgren3179a012005-11-10 14:26:48 +0000405
406 ck_dpll1.rate = ptr->pll_rate;
Tony Lindgren3179a012005-11-10 14:26:48 +0000407 return 0;
408}
409
410static int omap1_clk_set_rate_dsp_domain(struct clk *clk, unsigned long rate)
411{
Russell Kingd5e60722009-02-08 16:07:46 +0000412 int dsor_exp;
413 u16 regval;
Tony Lindgren3179a012005-11-10 14:26:48 +0000414
Russell Kingd5e60722009-02-08 16:07:46 +0000415 dsor_exp = calc_dsor_exp(clk, rate);
416 if (dsor_exp > 3)
417 dsor_exp = -EINVAL;
418 if (dsor_exp < 0)
419 return dsor_exp;
Tony Lindgren3179a012005-11-10 14:26:48 +0000420
Russell Kingd5e60722009-02-08 16:07:46 +0000421 regval = __raw_readw(DSP_CKCTL);
422 regval &= ~(3 << clk->rate_offset);
423 regval |= dsor_exp << clk->rate_offset;
424 __raw_writew(regval, DSP_CKCTL);
425 clk->rate = clk->parent->rate / (1 << dsor_exp);
Tony Lindgren3179a012005-11-10 14:26:48 +0000426
Russell Kingd5e60722009-02-08 16:07:46 +0000427 return 0;
428}
429
430static long omap1_clk_round_rate_ckctl_arm(struct clk *clk, unsigned long rate)
431{
432 int dsor_exp = calc_dsor_exp(clk, rate);
433 if (dsor_exp < 0)
434 return dsor_exp;
435 if (dsor_exp > 3)
436 dsor_exp = 3;
437 return clk->parent->rate / (1 << dsor_exp);
438}
439
440static int omap1_clk_set_rate_ckctl_arm(struct clk *clk, unsigned long rate)
441{
442 int dsor_exp;
443 u16 regval;
444
445 dsor_exp = calc_dsor_exp(clk, rate);
446 if (dsor_exp > 3)
447 dsor_exp = -EINVAL;
448 if (dsor_exp < 0)
449 return dsor_exp;
450
451 regval = omap_readw(ARM_CKCTL);
452 regval &= ~(3 << clk->rate_offset);
453 regval |= dsor_exp << clk->rate_offset;
454 regval = verify_ckctl_value(regval);
455 omap_writew(regval, ARM_CKCTL);
456 clk->rate = clk->parent->rate / (1 << dsor_exp);
457 return 0;
Tony Lindgren3179a012005-11-10 14:26:48 +0000458}
459
460static long omap1_round_to_table_rate(struct clk * clk, unsigned long rate)
461{
462 /* Find the highest supported frequency <= rate */
463 struct mpu_rate * ptr;
464 long highest_rate;
465
466 if (clk != &virtual_ck_mpu)
467 return -EINVAL;
468
469 highest_rate = -EINVAL;
470
471 for (ptr = rate_table; ptr->rate; ptr++) {
472 if (ptr->xtal != ck_ref.rate)
473 continue;
474
475 highest_rate = ptr->rate;
476
477 /* Can check only after xtal frequency check */
478 if (ptr->rate <= rate)
479 break;
480 }
481
482 return highest_rate;
483}
484
485static unsigned calc_ext_dsor(unsigned long rate)
486{
487 unsigned dsor;
488
489 /* MCLK and BCLK divisor selection is not linear:
490 * freq = 96MHz / dsor
491 *
492 * RATIO_SEL range: dsor <-> RATIO_SEL
493 * 0..6: (RATIO_SEL+2) <-> (dsor-2)
494 * 6..48: (8+(RATIO_SEL-6)*2) <-> ((dsor-8)/2+6)
495 * Minimum dsor is 2 and maximum is 96. Odd divisors starting from 9
496 * can not be used.
497 */
498 for (dsor = 2; dsor < 96; ++dsor) {
499 if ((dsor & 1) && dsor > 8)
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100500 continue;
Tony Lindgren3179a012005-11-10 14:26:48 +0000501 if (rate >= 96000000 / dsor)
502 break;
503 }
504 return dsor;
505}
506
507/* Only needed on 1510 */
508static int omap1_set_uart_rate(struct clk * clk, unsigned long rate)
509{
510 unsigned int val;
511
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700512 val = __raw_readl(clk->enable_reg);
Tony Lindgren3179a012005-11-10 14:26:48 +0000513 if (rate == 12000000)
514 val &= ~(1 << clk->enable_bit);
515 else if (rate == 48000000)
516 val |= (1 << clk->enable_bit);
517 else
518 return -EINVAL;
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700519 __raw_writel(val, clk->enable_reg);
Tony Lindgren3179a012005-11-10 14:26:48 +0000520 clk->rate = rate;
521
522 return 0;
523}
524
525/* External clock (MCLK & BCLK) functions */
526static int omap1_set_ext_clk_rate(struct clk * clk, unsigned long rate)
527{
528 unsigned dsor;
529 __u16 ratio_bits;
530
531 dsor = calc_ext_dsor(rate);
532 clk->rate = 96000000 / dsor;
533 if (dsor > 8)
534 ratio_bits = ((dsor - 8) / 2 + 6) << 2;
535 else
536 ratio_bits = (dsor - 2) << 2;
537
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700538 ratio_bits |= __raw_readw(clk->enable_reg) & ~0xfd;
539 __raw_writew(ratio_bits, clk->enable_reg);
Tony Lindgren3179a012005-11-10 14:26:48 +0000540
541 return 0;
542}
543
Imre Deakdf2c2e72007-03-05 17:22:58 +0200544static int omap1_set_sossi_rate(struct clk *clk, unsigned long rate)
545{
546 u32 l;
547 int div;
548 unsigned long p_rate;
549
550 p_rate = clk->parent->rate;
551 /* Round towards slower frequency */
552 div = (p_rate + rate - 1) / rate;
553 div--;
554 if (div < 0 || div > 7)
555 return -EINVAL;
556
557 l = omap_readl(MOD_CONF_CTRL_1);
558 l &= ~(7 << 17);
559 l |= div << 17;
560 omap_writel(l, MOD_CONF_CTRL_1);
561
562 clk->rate = p_rate / (div + 1);
Imre Deakdf2c2e72007-03-05 17:22:58 +0200563
564 return 0;
565}
566
Tony Lindgren3179a012005-11-10 14:26:48 +0000567static long omap1_round_ext_clk_rate(struct clk * clk, unsigned long rate)
568{
569 return 96000000 / calc_ext_dsor(rate);
570}
571
572static void omap1_init_ext_clk(struct clk * clk)
573{
574 unsigned dsor;
575 __u16 ratio_bits;
576
577 /* Determine current rate and ensure clock is based on 96MHz APLL */
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700578 ratio_bits = __raw_readw(clk->enable_reg) & ~1;
579 __raw_writew(ratio_bits, clk->enable_reg);
Tony Lindgren3179a012005-11-10 14:26:48 +0000580
581 ratio_bits = (ratio_bits & 0xfc) >> 2;
582 if (ratio_bits > 6)
583 dsor = (ratio_bits - 6) * 2 + 8;
584 else
585 dsor = ratio_bits + 2;
586
587 clk-> rate = 96000000 / dsor;
588}
589
Tony Lindgren10b55792006-01-17 15:30:42 -0800590static int omap1_clk_enable(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000591{
592 int ret = 0;
593 if (clk->usecount++ == 0) {
594 if (likely(clk->parent)) {
Tony Lindgren10b55792006-01-17 15:30:42 -0800595 ret = omap1_clk_enable(clk->parent);
Tony Lindgren3179a012005-11-10 14:26:48 +0000596
597 if (unlikely(ret != 0)) {
598 clk->usecount--;
599 return ret;
600 }
601
602 if (clk->flags & CLOCK_NO_IDLE_PARENT)
Dirk Behme6f9c92f2006-12-06 17:13:51 -0800603 omap1_clk_deny_idle(clk->parent);
Tony Lindgren3179a012005-11-10 14:26:48 +0000604 }
605
Russell King548d8492008-11-04 14:02:46 +0000606 ret = clk->ops->enable(clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000607
608 if (unlikely(ret != 0) && clk->parent) {
Tony Lindgren10b55792006-01-17 15:30:42 -0800609 omap1_clk_disable(clk->parent);
Tony Lindgren3179a012005-11-10 14:26:48 +0000610 clk->usecount--;
611 }
612 }
613
614 return ret;
615}
616
Tony Lindgren10b55792006-01-17 15:30:42 -0800617static void omap1_clk_disable(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000618{
619 if (clk->usecount > 0 && !(--clk->usecount)) {
Russell King548d8492008-11-04 14:02:46 +0000620 clk->ops->disable(clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000621 if (likely(clk->parent)) {
Tony Lindgren10b55792006-01-17 15:30:42 -0800622 omap1_clk_disable(clk->parent);
Tony Lindgren3179a012005-11-10 14:26:48 +0000623 if (clk->flags & CLOCK_NO_IDLE_PARENT)
Dirk Behme6f9c92f2006-12-06 17:13:51 -0800624 omap1_clk_allow_idle(clk->parent);
Tony Lindgren3179a012005-11-10 14:26:48 +0000625 }
626 }
627}
628
Tony Lindgren10b55792006-01-17 15:30:42 -0800629static int omap1_clk_enable_generic(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000630{
631 __u16 regval16;
632 __u32 regval32;
633
Russell Kingc0fc18c52008-09-05 15:10:27 +0100634 if (unlikely(clk->enable_reg == NULL)) {
Tony Lindgren3179a012005-11-10 14:26:48 +0000635 printk(KERN_ERR "clock.c: Enable for %s without enable code\n",
636 clk->name);
Dirk Behme6f9c92f2006-12-06 17:13:51 -0800637 return -EINVAL;
Tony Lindgren3179a012005-11-10 14:26:48 +0000638 }
639
640 if (clk->flags & ENABLE_REG_32BIT) {
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700641 regval32 = __raw_readl(clk->enable_reg);
642 regval32 |= (1 << clk->enable_bit);
643 __raw_writel(regval32, clk->enable_reg);
Tony Lindgren3179a012005-11-10 14:26:48 +0000644 } else {
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700645 regval16 = __raw_readw(clk->enable_reg);
646 regval16 |= (1 << clk->enable_bit);
647 __raw_writew(regval16, clk->enable_reg);
Tony Lindgren3179a012005-11-10 14:26:48 +0000648 }
649
Dirk Behme6f9c92f2006-12-06 17:13:51 -0800650 return 0;
Tony Lindgren3179a012005-11-10 14:26:48 +0000651}
652
Tony Lindgren10b55792006-01-17 15:30:42 -0800653static void omap1_clk_disable_generic(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000654{
655 __u16 regval16;
656 __u32 regval32;
657
Russell Kingc0fc18c52008-09-05 15:10:27 +0100658 if (clk->enable_reg == NULL)
Tony Lindgren3179a012005-11-10 14:26:48 +0000659 return;
660
661 if (clk->flags & ENABLE_REG_32BIT) {
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700662 regval32 = __raw_readl(clk->enable_reg);
663 regval32 &= ~(1 << clk->enable_bit);
664 __raw_writel(regval32, clk->enable_reg);
Tony Lindgren3179a012005-11-10 14:26:48 +0000665 } else {
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700666 regval16 = __raw_readw(clk->enable_reg);
667 regval16 &= ~(1 << clk->enable_bit);
668 __raw_writew(regval16, clk->enable_reg);
Tony Lindgren3179a012005-11-10 14:26:48 +0000669 }
670}
671
Russell King548d8492008-11-04 14:02:46 +0000672static const struct clkops clkops_generic = {
673 .enable = &omap1_clk_enable_generic,
674 .disable = &omap1_clk_disable_generic,
675};
676
Tony Lindgren3179a012005-11-10 14:26:48 +0000677static long omap1_clk_round_rate(struct clk *clk, unsigned long rate)
678{
Tony Lindgren3179a012005-11-10 14:26:48 +0000679 if (clk->flags & RATE_FIXED)
680 return clk->rate;
681
Russell Kingc0fc18c52008-09-05 15:10:27 +0100682 if (clk->round_rate != NULL)
Tony Lindgren3179a012005-11-10 14:26:48 +0000683 return clk->round_rate(clk, rate);
684
685 return clk->rate;
686}
687
688static int omap1_clk_set_rate(struct clk *clk, unsigned long rate)
689{
690 int ret = -EINVAL;
Tony Lindgren3179a012005-11-10 14:26:48 +0000691
692 if (clk->set_rate)
693 ret = clk->set_rate(clk, rate);
Tony Lindgren3179a012005-11-10 14:26:48 +0000694 return ret;
695}
696
697/*-------------------------------------------------------------------------
698 * Omap1 clock reset and init functions
699 *-------------------------------------------------------------------------*/
700
701#ifdef CONFIG_OMAP_RESET_CLOCKS
Tony Lindgren3179a012005-11-10 14:26:48 +0000702
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300703static void __init omap1_clk_disable_unused(struct clk *clk)
Tony Lindgren3179a012005-11-10 14:26:48 +0000704{
Tony Lindgren3179a012005-11-10 14:26:48 +0000705 __u32 regval32;
706
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300707 /* Clocks in the DSP domain need api_ck. Just assume bootloader
708 * has not enabled any DSP clocks */
Russell King397fcaf2008-09-05 15:46:19 +0100709 if (clk->enable_reg == DSP_IDLECT2) {
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300710 printk(KERN_INFO "Skipping reset check for DSP domain "
711 "clock \"%s\"\n", clk->name);
712 return;
Tony Lindgren3179a012005-11-10 14:26:48 +0000713 }
714
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300715 /* Is the clock already disabled? */
Tony Lindgrenfed415e2009-01-28 12:18:48 -0700716 if (clk->flags & ENABLE_REG_32BIT)
717 regval32 = __raw_readl(clk->enable_reg);
718 else
719 regval32 = __raw_readw(clk->enable_reg);
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300720
721 if ((regval32 & (1 << clk->enable_bit)) == 0)
722 return;
723
724 /* FIXME: This clock seems to be necessary but no-one
725 * has asked for its activation. */
David Cohen6e2d4102007-12-13 22:27:15 -0400726 if (clk == &tc2_ck /* FIX: pm.c (SRAM), CCP, Camera */
727 || clk == &ck_dpll1out.clk /* FIX: SoSSI, SSR */
728 || clk == &arm_gpio_ck /* FIX: GPIO code for 1510 */
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300729 ) {
730 printk(KERN_INFO "FIXME: Clock \"%s\" seems unused\n",
731 clk->name);
732 return;
733 }
734
735 printk(KERN_INFO "Disabling unused clock \"%s\"... ", clk->name);
Russell King548d8492008-11-04 14:02:46 +0000736 clk->ops->disable(clk);
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300737 printk(" done\n");
Tony Lindgren3179a012005-11-10 14:26:48 +0000738}
Tony Lindgren3179a012005-11-10 14:26:48 +0000739
740#else
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300741#define omap1_clk_disable_unused NULL
Tony Lindgren3179a012005-11-10 14:26:48 +0000742#endif
743
744static struct clk_functions omap1_clk_functions = {
Tony Lindgren10b55792006-01-17 15:30:42 -0800745 .clk_enable = omap1_clk_enable,
746 .clk_disable = omap1_clk_disable,
Tony Lindgren3179a012005-11-10 14:26:48 +0000747 .clk_round_rate = omap1_clk_round_rate,
748 .clk_set_rate = omap1_clk_set_rate,
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300749 .clk_disable_unused = omap1_clk_disable_unused,
Tony Lindgren3179a012005-11-10 14:26:48 +0000750};
751
752int __init omap1_clk_init(void)
753{
Russell Kingd7e8f1f2009-01-18 23:03:15 +0000754 struct omap_clk *c;
Tony Lindgren3179a012005-11-10 14:26:48 +0000755 const struct omap_clock_config *info;
756 int crystal_type = 0; /* Default 12 MHz */
Russell Kingd7e8f1f2009-01-18 23:03:15 +0000757 u32 reg, cpu_mask;
Tony Lindgren3179a012005-11-10 14:26:48 +0000758
Dirk Behmeef772f22006-12-06 17:14:02 -0800759#ifdef CONFIG_DEBUG_LL
760 /* Resets some clocks that may be left on from bootloader,
761 * but leaves serial clocks on.
762 */
763 omap_writel(0x3 << 29, MOD_CONF_CTRL_0);
764#endif
765
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300766 /* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */
767 reg = omap_readw(SOFT_REQ_REG) & (1 << 4);
768 omap_writew(reg, SOFT_REQ_REG);
Andrzej Zaborowskief557d72006-12-06 17:13:48 -0800769 if (!cpu_is_omap15xx())
770 omap_writew(0, SOFT_REQ_REG2);
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300771
Tony Lindgren3179a012005-11-10 14:26:48 +0000772 clk_init(&omap1_clk_functions);
773
774 /* By default all idlect1 clocks are allowed to idle */
775 arm_idlect1_mask = ~0;
776
Russell King3f0a8202009-01-31 10:05:51 +0000777 for (c = omap_clks; c < omap_clks + ARRAY_SIZE(omap_clks); c++)
778 clk_init_one(c->lk.clk);
779
Russell Kingd7e8f1f2009-01-18 23:03:15 +0000780 cpu_mask = 0;
781 if (cpu_is_omap16xx())
782 cpu_mask |= CK_16XX;
783 if (cpu_is_omap1510())
784 cpu_mask |= CK_1510;
785 if (cpu_is_omap730())
786 cpu_mask |= CK_730;
787 if (cpu_is_omap310())
788 cpu_mask |= CK_310;
Tony Lindgren3179a012005-11-10 14:26:48 +0000789
Russell Kingd7e8f1f2009-01-18 23:03:15 +0000790 for (c = omap_clks; c < omap_clks + ARRAY_SIZE(omap_clks); c++)
791 if (c->cpu & cpu_mask) {
792 clkdev_add(&c->lk);
793 clk_register(c->lk.clk);
Tony Lindgren3179a012005-11-10 14:26:48 +0000794 }
795
Tony Lindgren3179a012005-11-10 14:26:48 +0000796 info = omap_get_config(OMAP_TAG_CLOCK, struct omap_clock_config);
797 if (info != NULL) {
Vladimir Ananiev99c658a2006-12-11 13:30:21 -0800798 if (!cpu_is_omap15xx())
Tony Lindgren3179a012005-11-10 14:26:48 +0000799 crystal_type = info->system_clock_type;
800 }
801
802#if defined(CONFIG_ARCH_OMAP730)
803 ck_ref.rate = 13000000;
804#elif defined(CONFIG_ARCH_OMAP16XX)
805 if (crystal_type == 2)
806 ck_ref.rate = 19200000;
807#endif
808
809 printk("Clocks: ARM_SYSST: 0x%04x DPLL_CTL: 0x%04x ARM_CKCTL: 0x%04x\n",
810 omap_readw(ARM_SYSST), omap_readw(DPLL_CTL),
811 omap_readw(ARM_CKCTL));
812
813 /* We want to be in syncronous scalable mode */
814 omap_writew(0x1000, ARM_SYSST);
815
816#ifdef CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER
817 /* Use values set by bootloader. Determine PLL rate and recalculate
818 * dependent clocks as if kernel had changed PLL or divisors.
819 */
820 {
821 unsigned pll_ctl_val = omap_readw(DPLL_CTL);
822
823 ck_dpll1.rate = ck_ref.rate; /* Base xtal rate */
824 if (pll_ctl_val & 0x10) {
825 /* PLL enabled, apply multiplier and divisor */
826 if (pll_ctl_val & 0xf80)
827 ck_dpll1.rate *= (pll_ctl_val & 0xf80) >> 7;
828 ck_dpll1.rate /= ((pll_ctl_val & 0x60) >> 5) + 1;
829 } else {
830 /* PLL disabled, apply bypass divisor */
831 switch (pll_ctl_val & 0xc) {
832 case 0:
833 break;
834 case 0x4:
835 ck_dpll1.rate /= 2;
836 break;
837 default:
838 ck_dpll1.rate /= 4;
839 break;
840 }
841 }
842 }
Tony Lindgren3179a012005-11-10 14:26:48 +0000843#else
844 /* Find the highest supported frequency and enable it */
845 if (omap1_select_table_rate(&virtual_ck_mpu, ~0)) {
846 printk(KERN_ERR "System frequencies not set. Check your config.\n");
847 /* Guess sane values (60MHz) */
848 omap_writew(0x2290, DPLL_CTL);
Brian Swetland495f71d2006-06-26 16:16:03 -0700849 omap_writew(cpu_is_omap730() ? 0x3005 : 0x1005, ARM_CKCTL);
Tony Lindgren3179a012005-11-10 14:26:48 +0000850 ck_dpll1.rate = 60000000;
Tony Lindgren3179a012005-11-10 14:26:48 +0000851 }
852#endif
Russell Kinga9e88202008-11-13 13:07:00 +0000853 propagate_rate(&ck_dpll1);
Tony Lindgren3179a012005-11-10 14:26:48 +0000854 /* Cache rates for clocks connected to ck_ref (not dpll1) */
855 propagate_rate(&ck_ref);
856 printk(KERN_INFO "Clocking rate (xtal/DPLL1/MPU): "
857 "%ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n",
858 ck_ref.rate / 1000000, (ck_ref.rate / 100000) % 10,
859 ck_dpll1.rate / 1000000, (ck_dpll1.rate / 100000) % 10,
860 arm_ck.rate / 1000000, (arm_ck.rate / 100000) % 10);
861
Brian Swetland495f71d2006-06-26 16:16:03 -0700862#if defined(CONFIG_MACH_OMAP_PERSEUS2) || defined(CONFIG_MACH_OMAP_FSAMPLE)
Tony Lindgren3179a012005-11-10 14:26:48 +0000863 /* Select slicer output as OMAP input clock */
864 omap_writew(omap_readw(OMAP730_PCC_UPLD_CTRL) & ~0x1, OMAP730_PCC_UPLD_CTRL);
865#endif
866
Tony Lindgren90afd5c2006-09-25 13:27:20 +0300867 /* Amstrad Delta wants BCLK high when inactive */
868 if (machine_is_ams_delta())
869 omap_writel(omap_readl(ULPD_CLOCK_CTRL) |
870 (1 << SDW_MCLK_INV_BIT),
871 ULPD_CLOCK_CTRL);
872
Tony Lindgren3179a012005-11-10 14:26:48 +0000873 /* Turn off DSP and ARM_TIMXO. Make sure ARM_INTHCK is not divided */
Brian Swetland495f71d2006-06-26 16:16:03 -0700874 /* (on 730, bit 13 must not be cleared) */
875 if (cpu_is_omap730())
876 omap_writew(omap_readw(ARM_CKCTL) & 0x2fff, ARM_CKCTL);
877 else
878 omap_writew(omap_readw(ARM_CKCTL) & 0x0fff, ARM_CKCTL);
Tony Lindgren3179a012005-11-10 14:26:48 +0000879
880 /* Put DSP/MPUI into reset until needed */
881 omap_writew(0, ARM_RSTCT1);
882 omap_writew(1, ARM_RSTCT2);
883 omap_writew(0x400, ARM_IDLECT1);
884
885 /*
886 * According to OMAP5910 Erratum SYS_DMA_1, bit DMACK_REQ (bit 8)
887 * of the ARM_IDLECT2 register must be set to zero. The power-on
888 * default value of this bit is one.
889 */
890 omap_writew(0x0000, ARM_IDLECT2); /* Turn LCD clock off also */
891
892 /*
893 * Only enable those clocks we will need, let the drivers
894 * enable other clocks as necessary
895 */
Tony Lindgren10b55792006-01-17 15:30:42 -0800896 clk_enable(&armper_ck.clk);
897 clk_enable(&armxor_ck.clk);
898 clk_enable(&armtim_ck.clk); /* This should be done by timer code */
Tony Lindgren3179a012005-11-10 14:26:48 +0000899
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100900 if (cpu_is_omap15xx())
Tony Lindgren3179a012005-11-10 14:26:48 +0000901 clk_enable(&arm_gpio_ck);
902
903 return 0;
904}