i.MX35: remove get_3_3_div helper function
[deliverable/linux.git] / arch / arm / mach-mx3 / clock-imx35.c
1 /*
2 * Copyright (C) 2009 by Sascha Hauer, Pengutronix
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
16 * MA 02110-1301, USA.
17 */
18
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/list.h>
22 #include <linux/clk.h>
23 #include <linux/io.h>
24
25 #include <asm/clkdev.h>
26
27 #include <mach/clock.h>
28 #include <mach/hardware.h>
29 #include <mach/common.h>
30
31 #define CCM_BASE MX35_IO_ADDRESS(MX35_CCM_BASE_ADDR)
32
33 #define CCM_CCMR 0x00
34 #define CCM_PDR0 0x04
35 #define CCM_PDR1 0x08
36 #define CCM_PDR2 0x0C
37 #define CCM_PDR3 0x10
38 #define CCM_PDR4 0x14
39 #define CCM_RCSR 0x18
40 #define CCM_MPCTL 0x1C
41 #define CCM_PPCTL 0x20
42 #define CCM_ACMR 0x24
43 #define CCM_COSR 0x28
44 #define CCM_CGR0 0x2C
45 #define CCM_CGR1 0x30
46 #define CCM_CGR2 0x34
47 #define CCM_CGR3 0x38
48
49 #ifdef HAVE_SET_RATE_SUPPORT
50 static void calc_dividers(u32 div, u32 *pre, u32 *post, u32 maxpost)
51 {
52 u32 min_pre, temp_pre, old_err, err;
53
54 min_pre = (div - 1) / maxpost + 1;
55 old_err = 8;
56
57 for (temp_pre = 8; temp_pre >= min_pre; temp_pre--) {
58 if (div > (temp_pre * maxpost))
59 break;
60
61 if (div < (temp_pre * temp_pre))
62 continue;
63
64 err = div % temp_pre;
65
66 if (err == 0) {
67 *pre = temp_pre;
68 break;
69 }
70
71 err = temp_pre - err;
72
73 if (err < old_err) {
74 old_err = err;
75 *pre = temp_pre;
76 }
77 }
78
79 *post = (div + *pre - 1) / *pre;
80 }
81
82 /* get the best values for a 3-bit divider combined with a 6-bit divider */
83 static void calc_dividers_3_6(u32 div, u32 *pre, u32 *post)
84 {
85 if (div >= 512) {
86 *pre = 8;
87 *post = 64;
88 } else if (div >= 64) {
89 calc_dividers(div, pre, post, 64);
90 } else if (div <= 8) {
91 *pre = div;
92 *post = 1;
93 } else {
94 *pre = 1;
95 *post = div;
96 }
97 }
98
99 /* get the best values for two cascaded 3-bit dividers */
100 static void calc_dividers_3_3(u32 div, u32 *pre, u32 *post)
101 {
102 if (div >= 64) {
103 *pre = *post = 8;
104 } else if (div > 8) {
105 calc_dividers(div, pre, post, 8);
106 } else {
107 *pre = 1;
108 *post = div;
109 }
110 }
111 #endif
112
113 static unsigned long get_rate_mpll(void)
114 {
115 ulong mpctl = __raw_readl(CCM_BASE + CCM_MPCTL);
116
117 return mxc_decode_pll(mpctl, 24000000);
118 }
119
120 static unsigned long get_rate_ppll(void)
121 {
122 ulong ppctl = __raw_readl(CCM_BASE + CCM_PPCTL);
123
124 return mxc_decode_pll(ppctl, 24000000);
125 }
126
127 struct arm_ahb_div {
128 unsigned char arm, ahb, sel;
129 };
130
131 static struct arm_ahb_div clk_consumer[] = {
132 { .arm = 1, .ahb = 4, .sel = 0},
133 { .arm = 1, .ahb = 3, .sel = 1},
134 { .arm = 2, .ahb = 2, .sel = 0},
135 { .arm = 0, .ahb = 0, .sel = 0},
136 { .arm = 0, .ahb = 0, .sel = 0},
137 { .arm = 0, .ahb = 0, .sel = 0},
138 { .arm = 4, .ahb = 1, .sel = 0},
139 { .arm = 1, .ahb = 5, .sel = 0},
140 { .arm = 1, .ahb = 8, .sel = 0},
141 { .arm = 1, .ahb = 6, .sel = 1},
142 { .arm = 2, .ahb = 4, .sel = 0},
143 { .arm = 0, .ahb = 0, .sel = 0},
144 { .arm = 0, .ahb = 0, .sel = 0},
145 { .arm = 0, .ahb = 0, .sel = 0},
146 { .arm = 4, .ahb = 2, .sel = 0},
147 { .arm = 0, .ahb = 0, .sel = 0},
148 };
149
150 static unsigned long get_rate_arm(void)
151 {
152 unsigned long pdr0 = __raw_readl(CCM_BASE + CCM_PDR0);
153 struct arm_ahb_div *aad;
154 unsigned long fref = get_rate_mpll();
155
156 aad = &clk_consumer[(pdr0 >> 16) & 0xf];
157 if (aad->sel)
158 fref = fref * 2 / 3;
159
160 return fref / aad->arm;
161 }
162
163 static unsigned long get_rate_ahb(struct clk *clk)
164 {
165 unsigned long pdr0 = __raw_readl(CCM_BASE + CCM_PDR0);
166 struct arm_ahb_div *aad;
167 unsigned long fref = get_rate_mpll();
168
169 aad = &clk_consumer[(pdr0 >> 16) & 0xf];
170
171 return fref / aad->ahb;
172 }
173
174 static unsigned long get_rate_ipg(struct clk *clk)
175 {
176 return get_rate_ahb(NULL) >> 1;
177 }
178
179 static unsigned long get_rate_uart(struct clk *clk)
180 {
181 unsigned long pdr3 = __raw_readl(CCM_BASE + CCM_PDR3);
182 unsigned long pdr4 = __raw_readl(CCM_BASE + CCM_PDR4);
183 unsigned long div = ((pdr4 >> 10) & 0x3f) + 1;
184
185 if (pdr3 & (1 << 14))
186 return get_rate_arm() / div;
187 else
188 return get_rate_ppll() / div;
189 }
190
191 static unsigned long get_rate_sdhc(struct clk *clk)
192 {
193 unsigned long pdr3 = __raw_readl(CCM_BASE + CCM_PDR3);
194 unsigned long div, rate;
195
196 if (pdr3 & (1 << 6))
197 rate = get_rate_arm();
198 else
199 rate = get_rate_ppll();
200
201 switch (clk->id) {
202 default:
203 case 0:
204 div = pdr3 & 0x3f;
205 break;
206 case 1:
207 div = (pdr3 >> 8) & 0x3f;
208 break;
209 case 2:
210 div = (pdr3 >> 16) & 0x3f;
211 break;
212 }
213
214 return rate / (div + 1);
215 }
216
217 static unsigned long get_rate_mshc(struct clk *clk)
218 {
219 unsigned long pdr1 = __raw_readl(CCM_BASE + CCM_PDR1);
220 unsigned long div1, div2, rate;
221
222 if (pdr1 & (1 << 7))
223 rate = get_rate_arm();
224 else
225 rate = get_rate_ppll();
226
227 div1 = (pdr1 >> 29) & 0x7;
228 div2 = (pdr1 >> 22) & 0x3f;
229
230 return rate / ((div1 + 1) * (div2 + 1));
231 }
232
233 static unsigned long get_rate_ssi(struct clk *clk)
234 {
235 unsigned long pdr2 = __raw_readl(CCM_BASE + CCM_PDR2);
236 unsigned long div1, div2, rate;
237
238 if (pdr2 & (1 << 6))
239 rate = get_rate_arm();
240 else
241 rate = get_rate_ppll();
242
243 switch (clk->id) {
244 default:
245 case 0:
246 div1 = pdr2 & 0x3f;
247 div2 = (pdr2 >> 24) & 0x7;
248 break;
249 case 1:
250 div1 = (pdr2 >> 8) & 0x3f;
251 div2 = (pdr2 >> 27) & 0x7;
252 break;
253 }
254
255 return rate / ((div1 + 1) * (div2 + 1));
256 }
257
258 static unsigned long get_rate_csi(struct clk *clk)
259 {
260 unsigned long pdr2 = __raw_readl(CCM_BASE + CCM_PDR2);
261 unsigned long rate;
262
263 if (pdr2 & (1 << 7))
264 rate = get_rate_arm();
265 else
266 rate = get_rate_ppll();
267
268 return rate / (((pdr2 >> 16) & 0x3f) + 1);
269 }
270
271 static unsigned long get_rate_otg(struct clk *clk)
272 {
273 unsigned long pdr4 = __raw_readl(CCM_BASE + CCM_PDR4);
274 unsigned long rate;
275
276 if (pdr4 & (1 << 9))
277 rate = get_rate_arm();
278 else
279 rate = get_rate_ppll();
280
281 return rate / (((pdr4 >> 22) & 0x3f) + 1);
282 }
283
284 static unsigned long get_rate_ipg_per(struct clk *clk)
285 {
286 unsigned long pdr0 = __raw_readl(CCM_BASE + CCM_PDR0);
287 unsigned long pdr4 = __raw_readl(CCM_BASE + CCM_PDR4);
288 unsigned long div;
289
290 if (pdr0 & (1 << 26)) {
291 div = (pdr4 >> 16) & 0x3f;
292 return get_rate_arm() / (div + 1);
293 } else {
294 div = (pdr0 >> 12) & 0x7;
295 return get_rate_ahb(NULL) / div;
296 }
297 }
298
299 static int clk_cgr_enable(struct clk *clk)
300 {
301 u32 reg;
302
303 reg = __raw_readl(clk->enable_reg);
304 reg |= 3 << clk->enable_shift;
305 __raw_writel(reg, clk->enable_reg);
306
307 return 0;
308 }
309
310 static void clk_cgr_disable(struct clk *clk)
311 {
312 u32 reg;
313
314 reg = __raw_readl(clk->enable_reg);
315 reg &= ~(3 << clk->enable_shift);
316 __raw_writel(reg, clk->enable_reg);
317 }
318
319 #define DEFINE_CLOCK(name, i, er, es, gr, sr) \
320 static struct clk name = { \
321 .id = i, \
322 .enable_reg = CCM_BASE + er, \
323 .enable_shift = es, \
324 .get_rate = gr, \
325 .set_rate = sr, \
326 .enable = clk_cgr_enable, \
327 .disable = clk_cgr_disable, \
328 }
329
330 DEFINE_CLOCK(asrc_clk, 0, CCM_CGR0, 0, NULL, NULL);
331 DEFINE_CLOCK(ata_clk, 0, CCM_CGR0, 2, get_rate_ipg, NULL);
332 /* DEFINE_CLOCK(audmux_clk, 0, CCM_CGR0, 4, NULL, NULL); */
333 DEFINE_CLOCK(can1_clk, 0, CCM_CGR0, 6, get_rate_ipg, NULL);
334 DEFINE_CLOCK(can2_clk, 1, CCM_CGR0, 8, get_rate_ipg, NULL);
335 DEFINE_CLOCK(cspi1_clk, 0, CCM_CGR0, 10, get_rate_ipg, NULL);
336 DEFINE_CLOCK(cspi2_clk, 1, CCM_CGR0, 12, get_rate_ipg, NULL);
337 DEFINE_CLOCK(ect_clk, 0, CCM_CGR0, 14, get_rate_ipg, NULL);
338 DEFINE_CLOCK(edio_clk, 0, CCM_CGR0, 16, NULL, NULL);
339 DEFINE_CLOCK(emi_clk, 0, CCM_CGR0, 18, get_rate_ipg, NULL);
340 DEFINE_CLOCK(epit1_clk, 0, CCM_CGR0, 20, get_rate_ipg_per, NULL);
341 DEFINE_CLOCK(epit2_clk, 1, CCM_CGR0, 22, get_rate_ipg_per, NULL);
342 DEFINE_CLOCK(esai_clk, 0, CCM_CGR0, 24, NULL, NULL);
343 DEFINE_CLOCK(esdhc1_clk, 0, CCM_CGR0, 26, get_rate_sdhc, NULL);
344 DEFINE_CLOCK(esdhc2_clk, 1, CCM_CGR0, 28, get_rate_sdhc, NULL);
345 DEFINE_CLOCK(esdhc3_clk, 2, CCM_CGR0, 30, get_rate_sdhc, NULL);
346
347 DEFINE_CLOCK(fec_clk, 0, CCM_CGR1, 0, get_rate_ipg, NULL);
348 DEFINE_CLOCK(gpio1_clk, 0, CCM_CGR1, 2, NULL, NULL);
349 DEFINE_CLOCK(gpio2_clk, 1, CCM_CGR1, 4, NULL, NULL);
350 DEFINE_CLOCK(gpio3_clk, 2, CCM_CGR1, 6, NULL, NULL);
351 DEFINE_CLOCK(gpt_clk, 0, CCM_CGR1, 8, get_rate_ipg, NULL);
352 DEFINE_CLOCK(i2c1_clk, 0, CCM_CGR1, 10, get_rate_ipg_per, NULL);
353 DEFINE_CLOCK(i2c2_clk, 1, CCM_CGR1, 12, get_rate_ipg_per, NULL);
354 DEFINE_CLOCK(i2c3_clk, 2, CCM_CGR1, 14, get_rate_ipg_per, NULL);
355 DEFINE_CLOCK(iomuxc_clk, 0, CCM_CGR1, 16, NULL, NULL);
356 DEFINE_CLOCK(ipu_clk, 0, CCM_CGR1, 18, get_rate_ahb, NULL);
357 DEFINE_CLOCK(kpp_clk, 0, CCM_CGR1, 20, get_rate_ipg, NULL);
358 DEFINE_CLOCK(mlb_clk, 0, CCM_CGR1, 22, get_rate_ahb, NULL);
359 DEFINE_CLOCK(mshc_clk, 0, CCM_CGR1, 24, get_rate_mshc, NULL);
360 DEFINE_CLOCK(owire_clk, 0, CCM_CGR1, 26, get_rate_ipg_per, NULL);
361 DEFINE_CLOCK(pwm_clk, 0, CCM_CGR1, 28, get_rate_ipg_per, NULL);
362 DEFINE_CLOCK(rngc_clk, 0, CCM_CGR1, 30, get_rate_ipg, NULL);
363
364 DEFINE_CLOCK(rtc_clk, 0, CCM_CGR2, 0, get_rate_ipg, NULL);
365 DEFINE_CLOCK(rtic_clk, 0, CCM_CGR2, 2, get_rate_ahb, NULL);
366 DEFINE_CLOCK(scc_clk, 0, CCM_CGR2, 4, get_rate_ipg, NULL);
367 DEFINE_CLOCK(sdma_clk, 0, CCM_CGR2, 6, NULL, NULL);
368 DEFINE_CLOCK(spba_clk, 0, CCM_CGR2, 8, get_rate_ipg, NULL);
369 DEFINE_CLOCK(spdif_clk, 0, CCM_CGR2, 10, NULL, NULL);
370 DEFINE_CLOCK(ssi1_clk, 0, CCM_CGR2, 12, get_rate_ssi, NULL);
371 DEFINE_CLOCK(ssi2_clk, 1, CCM_CGR2, 14, get_rate_ssi, NULL);
372 DEFINE_CLOCK(uart1_clk, 0, CCM_CGR2, 16, get_rate_uart, NULL);
373 DEFINE_CLOCK(uart2_clk, 1, CCM_CGR2, 18, get_rate_uart, NULL);
374 DEFINE_CLOCK(uart3_clk, 2, CCM_CGR2, 20, get_rate_uart, NULL);
375 DEFINE_CLOCK(usbotg_clk, 0, CCM_CGR2, 22, get_rate_otg, NULL);
376 DEFINE_CLOCK(wdog_clk, 0, CCM_CGR2, 24, NULL, NULL);
377 DEFINE_CLOCK(max_clk, 0, CCM_CGR2, 26, NULL, NULL);
378 DEFINE_CLOCK(audmux_clk, 0, CCM_CGR2, 30, NULL, NULL);
379
380 DEFINE_CLOCK(csi_clk, 0, CCM_CGR3, 0, get_rate_csi, NULL);
381 DEFINE_CLOCK(iim_clk, 0, CCM_CGR3, 2, NULL, NULL);
382 DEFINE_CLOCK(gpu2d_clk, 0, CCM_CGR3, 4, NULL, NULL);
383
384 DEFINE_CLOCK(usbahb_clk, 0, 0, 0, get_rate_ahb, NULL);
385
386 static int clk_dummy_enable(struct clk *clk)
387 {
388 return 0;
389 }
390
391 static void clk_dummy_disable(struct clk *clk)
392 {
393 }
394
395 static unsigned long get_rate_nfc(struct clk *clk)
396 {
397 unsigned long div1;
398
399 div1 = (__raw_readl(CCM_BASE + CCM_PDR4) >> 28) + 1;
400
401 return get_rate_ahb(NULL) / div1;
402 }
403
404 /* NAND Controller: It seems it can't be disabled */
405 static struct clk nfc_clk = {
406 .id = 0,
407 .enable_reg = 0,
408 .enable_shift = 0,
409 .get_rate = get_rate_nfc,
410 .set_rate = NULL, /* set_rate_nfc, */
411 .enable = clk_dummy_enable,
412 .disable = clk_dummy_disable
413 };
414
415 #define _REGISTER_CLOCK(d, n, c) \
416 { \
417 .dev_id = d, \
418 .con_id = n, \
419 .clk = &c, \
420 },
421
422 static struct clk_lookup lookups[] = {
423 _REGISTER_CLOCK(NULL, "asrc", asrc_clk)
424 _REGISTER_CLOCK(NULL, "ata", ata_clk)
425 _REGISTER_CLOCK("flexcan.0", NULL, can1_clk)
426 _REGISTER_CLOCK("flexcan.1", NULL, can2_clk)
427 _REGISTER_CLOCK("spi_imx.0", NULL, cspi1_clk)
428 _REGISTER_CLOCK("spi_imx.1", NULL, cspi2_clk)
429 _REGISTER_CLOCK(NULL, "ect", ect_clk)
430 _REGISTER_CLOCK(NULL, "edio", edio_clk)
431 _REGISTER_CLOCK(NULL, "emi", emi_clk)
432 _REGISTER_CLOCK(NULL, "epit", epit1_clk)
433 _REGISTER_CLOCK(NULL, "epit", epit2_clk)
434 _REGISTER_CLOCK(NULL, "esai", esai_clk)
435 _REGISTER_CLOCK(NULL, "sdhc", esdhc1_clk)
436 _REGISTER_CLOCK(NULL, "sdhc", esdhc2_clk)
437 _REGISTER_CLOCK(NULL, "sdhc", esdhc3_clk)
438 _REGISTER_CLOCK("fec.0", NULL, fec_clk)
439 _REGISTER_CLOCK(NULL, "gpio", gpio1_clk)
440 _REGISTER_CLOCK(NULL, "gpio", gpio2_clk)
441 _REGISTER_CLOCK(NULL, "gpio", gpio3_clk)
442 _REGISTER_CLOCK("gpt.0", NULL, gpt_clk)
443 _REGISTER_CLOCK("imx-i2c.0", NULL, i2c1_clk)
444 _REGISTER_CLOCK("imx-i2c.1", NULL, i2c2_clk)
445 _REGISTER_CLOCK("imx-i2c.2", NULL, i2c3_clk)
446 _REGISTER_CLOCK(NULL, "iomuxc", iomuxc_clk)
447 _REGISTER_CLOCK("ipu-core", NULL, ipu_clk)
448 _REGISTER_CLOCK("mx3_sdc_fb", NULL, ipu_clk)
449 _REGISTER_CLOCK(NULL, "kpp", kpp_clk)
450 _REGISTER_CLOCK(NULL, "mlb", mlb_clk)
451 _REGISTER_CLOCK(NULL, "mshc", mshc_clk)
452 _REGISTER_CLOCK("mxc_w1", NULL, owire_clk)
453 _REGISTER_CLOCK(NULL, "pwm", pwm_clk)
454 _REGISTER_CLOCK(NULL, "rngc", rngc_clk)
455 _REGISTER_CLOCK(NULL, "rtc", rtc_clk)
456 _REGISTER_CLOCK(NULL, "rtic", rtic_clk)
457 _REGISTER_CLOCK(NULL, "scc", scc_clk)
458 _REGISTER_CLOCK(NULL, "sdma", sdma_clk)
459 _REGISTER_CLOCK(NULL, "spba", spba_clk)
460 _REGISTER_CLOCK(NULL, "spdif", spdif_clk)
461 _REGISTER_CLOCK("imx-ssi.0", NULL, ssi1_clk)
462 _REGISTER_CLOCK("imx-ssi.1", NULL, ssi2_clk)
463 _REGISTER_CLOCK("imx-uart.0", NULL, uart1_clk)
464 _REGISTER_CLOCK("imx-uart.1", NULL, uart2_clk)
465 _REGISTER_CLOCK("imx-uart.2", NULL, uart3_clk)
466 _REGISTER_CLOCK("mxc-ehci.0", "usb", usbotg_clk)
467 _REGISTER_CLOCK("mxc-ehci.1", "usb", usbotg_clk)
468 _REGISTER_CLOCK("mxc-ehci.2", "usb", usbotg_clk)
469 _REGISTER_CLOCK("fsl-usb2-udc", "usb", usbotg_clk)
470 _REGISTER_CLOCK("fsl-usb2-udc", "usb_ahb", usbahb_clk)
471 _REGISTER_CLOCK("imx-wdt.0", NULL, wdog_clk)
472 _REGISTER_CLOCK(NULL, "max", max_clk)
473 _REGISTER_CLOCK(NULL, "audmux", audmux_clk)
474 _REGISTER_CLOCK(NULL, "csi", csi_clk)
475 _REGISTER_CLOCK(NULL, "iim", iim_clk)
476 _REGISTER_CLOCK(NULL, "gpu2d", gpu2d_clk)
477 _REGISTER_CLOCK("mxc_nand.0", NULL, nfc_clk)
478 };
479
480 int __init mx35_clocks_init()
481 {
482 unsigned int cgr2 = 3 << 26, cgr3 = 0;
483
484 #if defined(CONFIG_DEBUG_LL) && !defined(CONFIG_DEBUG_ICEDCC)
485 cgr2 |= 3 << 16;
486 #endif
487
488 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
489
490 /* Turn off all clocks except the ones we need to survive, namely:
491 * EMI, GPIO1/2/3, GPT, IOMUX, MAX and eventually uart
492 */
493 __raw_writel((3 << 18), CCM_BASE + CCM_CGR0);
494 __raw_writel((3 << 2) | (3 << 4) | (3 << 6) | (3 << 8) | (3 << 16),
495 CCM_BASE + CCM_CGR1);
496
497 /*
498 * Check if we came up in internal boot mode. If yes, we need some
499 * extra clocks turned on, otherwise the MX35 boot ROM code will
500 * hang after a watchdog reset.
501 */
502 if (!(__raw_readl(CCM_BASE + CCM_RCSR) & (3 << 10))) {
503 /* Additionally turn on UART1, SCC, and IIM clocks */
504 cgr2 |= 3 << 16 | 3 << 4;
505 cgr3 |= 3 << 2;
506 }
507
508 __raw_writel(cgr2, CCM_BASE + CCM_CGR2);
509 __raw_writel(cgr3, CCM_BASE + CCM_CGR3);
510
511 mxc_timer_init(&gpt_clk,
512 MX35_IO_ADDRESS(MX35_GPT1_BASE_ADDR), MX35_INT_GPT);
513
514 return 0;
515 }
516
This page took 0.043566 seconds and 5 git commands to generate.