• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-mx3/
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
50static 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 */
83static 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 */
100static 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
113static 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
120static 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
127struct arm_ahb_div {
128	unsigned char arm, ahb, sel;
129};
130
131static 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
150static 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 * 3 / 4;
159
160	return fref / aad->arm;
161}
162
163static 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_arm();
168
169	aad = &clk_consumer[(pdr0 >> 16) & 0xf];
170
171	return fref / aad->ahb;
172}
173
174static unsigned long get_rate_ipg(struct clk *clk)
175{
176	return get_rate_ahb(NULL) >> 1;
177}
178
179static 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
191static 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
217static 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
233static 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
258static 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
271static 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
284static 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 + 1);
296	}
297}
298
299static unsigned long get_rate_hsp(struct clk *clk)
300{
301	unsigned long hsp_podf = (__raw_readl(CCM_BASE + CCM_PDR0) >> 20) & 0x03;
302	unsigned long fref = get_rate_mpll();
303
304	if (fref > 400 * 1000 * 1000) {
305		switch (hsp_podf) {
306		case 0:
307			return fref >> 2;
308		case 1:
309			return fref >> 3;
310		case 2:
311			return fref / 3;
312		}
313	} else {
314		switch (hsp_podf) {
315		case 0:
316		case 2:
317			return fref / 3;
318		case 1:
319			return fref / 6;
320		}
321	}
322
323	return 0;
324}
325
326static int clk_cgr_enable(struct clk *clk)
327{
328	u32 reg;
329
330	reg = __raw_readl(clk->enable_reg);
331	reg |= 3 << clk->enable_shift;
332	__raw_writel(reg, clk->enable_reg);
333
334	return 0;
335}
336
337static void clk_cgr_disable(struct clk *clk)
338{
339	u32 reg;
340
341	reg = __raw_readl(clk->enable_reg);
342	reg &= ~(3 << clk->enable_shift);
343	__raw_writel(reg, clk->enable_reg);
344}
345
346#define DEFINE_CLOCK(name, i, er, es, gr, sr)		\
347	static struct clk name = {			\
348		.id		= i,			\
349		.enable_reg	= CCM_BASE + er,	\
350		.enable_shift	= es,			\
351		.get_rate	= gr,			\
352		.set_rate	= sr,			\
353		.enable		= clk_cgr_enable,	\
354		.disable	= clk_cgr_disable,	\
355	}
356
357DEFINE_CLOCK(asrc_clk,   0, CCM_CGR0,  0, NULL, NULL);
358DEFINE_CLOCK(ata_clk,    0, CCM_CGR0,  2, get_rate_ipg, NULL);
359/* DEFINE_CLOCK(audmux_clk, 0, CCM_CGR0,  4, NULL, NULL); */
360DEFINE_CLOCK(can1_clk,   0, CCM_CGR0,  6, get_rate_ipg, NULL);
361DEFINE_CLOCK(can2_clk,   1, CCM_CGR0,  8, get_rate_ipg, NULL);
362DEFINE_CLOCK(cspi1_clk,  0, CCM_CGR0, 10, get_rate_ipg, NULL);
363DEFINE_CLOCK(cspi2_clk,  1, CCM_CGR0, 12, get_rate_ipg, NULL);
364DEFINE_CLOCK(ect_clk,    0, CCM_CGR0, 14, get_rate_ipg, NULL);
365DEFINE_CLOCK(edio_clk,   0, CCM_CGR0, 16, NULL, NULL);
366DEFINE_CLOCK(emi_clk,    0, CCM_CGR0, 18, get_rate_ipg, NULL);
367DEFINE_CLOCK(epit1_clk,  0, CCM_CGR0, 20, get_rate_ipg_per, NULL);
368DEFINE_CLOCK(epit2_clk,  1, CCM_CGR0, 22, get_rate_ipg_per, NULL);
369DEFINE_CLOCK(esai_clk,   0, CCM_CGR0, 24, NULL, NULL);
370DEFINE_CLOCK(esdhc1_clk, 0, CCM_CGR0, 26, get_rate_sdhc, NULL);
371DEFINE_CLOCK(esdhc2_clk, 1, CCM_CGR0, 28, get_rate_sdhc, NULL);
372DEFINE_CLOCK(esdhc3_clk, 2, CCM_CGR0, 30, get_rate_sdhc, NULL);
373
374DEFINE_CLOCK(fec_clk,    0, CCM_CGR1,  0, get_rate_ipg, NULL);
375DEFINE_CLOCK(gpio1_clk,  0, CCM_CGR1,  2, NULL, NULL);
376DEFINE_CLOCK(gpio2_clk,  1, CCM_CGR1,  4, NULL, NULL);
377DEFINE_CLOCK(gpio3_clk,  2, CCM_CGR1,  6, NULL, NULL);
378DEFINE_CLOCK(gpt_clk,    0, CCM_CGR1,  8, get_rate_ipg, NULL);
379DEFINE_CLOCK(i2c1_clk,   0, CCM_CGR1, 10, get_rate_ipg_per, NULL);
380DEFINE_CLOCK(i2c2_clk,   1, CCM_CGR1, 12, get_rate_ipg_per, NULL);
381DEFINE_CLOCK(i2c3_clk,   2, CCM_CGR1, 14, get_rate_ipg_per, NULL);
382DEFINE_CLOCK(iomuxc_clk, 0, CCM_CGR1, 16, NULL, NULL);
383DEFINE_CLOCK(ipu_clk,    0, CCM_CGR1, 18, get_rate_hsp, NULL);
384DEFINE_CLOCK(kpp_clk,    0, CCM_CGR1, 20, get_rate_ipg, NULL);
385DEFINE_CLOCK(mlb_clk,    0, CCM_CGR1, 22, get_rate_ahb, NULL);
386DEFINE_CLOCK(mshc_clk,   0, CCM_CGR1, 24, get_rate_mshc, NULL);
387DEFINE_CLOCK(owire_clk,  0, CCM_CGR1, 26, get_rate_ipg_per, NULL);
388DEFINE_CLOCK(pwm_clk,    0, CCM_CGR1, 28, get_rate_ipg_per, NULL);
389DEFINE_CLOCK(rngc_clk,   0, CCM_CGR1, 30, get_rate_ipg, NULL);
390
391DEFINE_CLOCK(rtc_clk,    0, CCM_CGR2,  0, get_rate_ipg, NULL);
392DEFINE_CLOCK(rtic_clk,   0, CCM_CGR2,  2, get_rate_ahb, NULL);
393DEFINE_CLOCK(scc_clk,    0, CCM_CGR2,  4, get_rate_ipg, NULL);
394DEFINE_CLOCK(sdma_clk,   0, CCM_CGR2,  6, NULL, NULL);
395DEFINE_CLOCK(spba_clk,   0, CCM_CGR2,  8, get_rate_ipg, NULL);
396DEFINE_CLOCK(spdif_clk,  0, CCM_CGR2, 10, NULL, NULL);
397DEFINE_CLOCK(ssi1_clk,   0, CCM_CGR2, 12, get_rate_ssi, NULL);
398DEFINE_CLOCK(ssi2_clk,   1, CCM_CGR2, 14, get_rate_ssi, NULL);
399DEFINE_CLOCK(uart1_clk,  0, CCM_CGR2, 16, get_rate_uart, NULL);
400DEFINE_CLOCK(uart2_clk,  1, CCM_CGR2, 18, get_rate_uart, NULL);
401DEFINE_CLOCK(uart3_clk,  2, CCM_CGR2, 20, get_rate_uart, NULL);
402DEFINE_CLOCK(usbotg_clk, 0, CCM_CGR2, 22, get_rate_otg, NULL);
403DEFINE_CLOCK(wdog_clk,   0, CCM_CGR2, 24, NULL, NULL);
404DEFINE_CLOCK(max_clk,    0, CCM_CGR2, 26, NULL, NULL);
405DEFINE_CLOCK(audmux_clk, 0, CCM_CGR2, 30, NULL, NULL);
406
407DEFINE_CLOCK(csi_clk,    0, CCM_CGR3,  0, get_rate_csi, NULL);
408DEFINE_CLOCK(iim_clk,    0, CCM_CGR3,  2, NULL, NULL);
409DEFINE_CLOCK(gpu2d_clk,  0, CCM_CGR3,  4, NULL, NULL);
410
411DEFINE_CLOCK(usbahb_clk, 0, 0,         0, get_rate_ahb, NULL);
412
413static int clk_dummy_enable(struct clk *clk)
414{
415	return 0;
416}
417
418static void clk_dummy_disable(struct clk *clk)
419{
420}
421
422static unsigned long get_rate_nfc(struct clk *clk)
423{
424	unsigned long div1;
425
426	div1 = (__raw_readl(CCM_BASE + CCM_PDR4) >> 28) + 1;
427
428	return get_rate_ahb(NULL) / div1;
429}
430
431/* NAND Controller: It seems it can't be disabled */
432static struct clk nfc_clk = {
433	.id		= 0,
434	.enable_reg	= 0,
435	.enable_shift	= 0,
436	.get_rate	= get_rate_nfc,
437	.set_rate	= NULL, /* set_rate_nfc, */
438	.enable		= clk_dummy_enable,
439	.disable	= clk_dummy_disable
440};
441
442#define _REGISTER_CLOCK(d, n, c)	\
443	{				\
444		.dev_id = d,		\
445		.con_id = n,		\
446		.clk = &c,		\
447	},
448
449static struct clk_lookup lookups[] = {
450	_REGISTER_CLOCK(NULL, "asrc", asrc_clk)
451	_REGISTER_CLOCK(NULL, "ata", ata_clk)
452	_REGISTER_CLOCK("flexcan.0", NULL, can1_clk)
453	_REGISTER_CLOCK("flexcan.1", NULL, can2_clk)
454	_REGISTER_CLOCK("spi_imx.0", NULL, cspi1_clk)
455	_REGISTER_CLOCK("spi_imx.1", NULL, cspi2_clk)
456	_REGISTER_CLOCK(NULL, "ect", ect_clk)
457	_REGISTER_CLOCK(NULL, "edio", edio_clk)
458	_REGISTER_CLOCK(NULL, "emi", emi_clk)
459	_REGISTER_CLOCK(NULL, "epit", epit1_clk)
460	_REGISTER_CLOCK(NULL, "epit", epit2_clk)
461	_REGISTER_CLOCK(NULL, "esai", esai_clk)
462	_REGISTER_CLOCK(NULL, "sdhc", esdhc1_clk)
463	_REGISTER_CLOCK(NULL, "sdhc", esdhc2_clk)
464	_REGISTER_CLOCK(NULL, "sdhc", esdhc3_clk)
465	_REGISTER_CLOCK("fec.0", NULL, fec_clk)
466	_REGISTER_CLOCK(NULL, "gpio", gpio1_clk)
467	_REGISTER_CLOCK(NULL, "gpio", gpio2_clk)
468	_REGISTER_CLOCK(NULL, "gpio", gpio3_clk)
469	_REGISTER_CLOCK("gpt.0", NULL, gpt_clk)
470	_REGISTER_CLOCK("imx-i2c.0", NULL, i2c1_clk)
471	_REGISTER_CLOCK("imx-i2c.1", NULL, i2c2_clk)
472	_REGISTER_CLOCK("imx-i2c.2", NULL, i2c3_clk)
473	_REGISTER_CLOCK(NULL, "iomuxc", iomuxc_clk)
474	_REGISTER_CLOCK("ipu-core", NULL, ipu_clk)
475	_REGISTER_CLOCK("mx3_sdc_fb", NULL, ipu_clk)
476	_REGISTER_CLOCK(NULL, "kpp", kpp_clk)
477	_REGISTER_CLOCK(NULL, "mlb", mlb_clk)
478	_REGISTER_CLOCK(NULL, "mshc", mshc_clk)
479	_REGISTER_CLOCK("mxc_w1", NULL, owire_clk)
480	_REGISTER_CLOCK(NULL, "pwm", pwm_clk)
481	_REGISTER_CLOCK(NULL, "rngc", rngc_clk)
482	_REGISTER_CLOCK(NULL, "rtc", rtc_clk)
483	_REGISTER_CLOCK(NULL, "rtic", rtic_clk)
484	_REGISTER_CLOCK(NULL, "scc", scc_clk)
485	_REGISTER_CLOCK(NULL, "sdma", sdma_clk)
486	_REGISTER_CLOCK(NULL, "spba", spba_clk)
487	_REGISTER_CLOCK(NULL, "spdif", spdif_clk)
488	_REGISTER_CLOCK("imx-ssi.0", NULL, ssi1_clk)
489	_REGISTER_CLOCK("imx-ssi.1", NULL, ssi2_clk)
490	_REGISTER_CLOCK("imx-uart.0", NULL, uart1_clk)
491	_REGISTER_CLOCK("imx-uart.1", NULL, uart2_clk)
492	_REGISTER_CLOCK("imx-uart.2", NULL, uart3_clk)
493	_REGISTER_CLOCK("mxc-ehci.0", "usb", usbotg_clk)
494	_REGISTER_CLOCK("mxc-ehci.1", "usb", usbotg_clk)
495	_REGISTER_CLOCK("mxc-ehci.2", "usb", usbotg_clk)
496	_REGISTER_CLOCK("fsl-usb2-udc", "usb", usbotg_clk)
497	_REGISTER_CLOCK("fsl-usb2-udc", "usb_ahb", usbahb_clk)
498	_REGISTER_CLOCK("imx-wdt.0", NULL, wdog_clk)
499	_REGISTER_CLOCK(NULL, "max", max_clk)
500	_REGISTER_CLOCK(NULL, "audmux", audmux_clk)
501	_REGISTER_CLOCK(NULL, "csi", csi_clk)
502	_REGISTER_CLOCK(NULL, "iim", iim_clk)
503	_REGISTER_CLOCK(NULL, "gpu2d", gpu2d_clk)
504	_REGISTER_CLOCK("mxc_nand.0", NULL, nfc_clk)
505};
506
507int __init mx35_clocks_init()
508{
509	unsigned int cgr2 = 3 << 26, cgr3 = 0;
510
511#if defined(CONFIG_DEBUG_LL) && !defined(CONFIG_DEBUG_ICEDCC)
512	cgr2 |= 3 << 16;
513#endif
514
515	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
516
517	/* Turn off all clocks except the ones we need to survive, namely:
518	 * EMI, GPIO1/2/3, GPT, IOMUX, MAX and eventually uart
519	 */
520	__raw_writel((3 << 18), CCM_BASE + CCM_CGR0);
521	__raw_writel((3 << 2) | (3 << 4) | (3 << 6) | (3 << 8) | (3 << 16),
522			CCM_BASE + CCM_CGR1);
523
524	/*
525	 * Check if we came up in internal boot mode. If yes, we need some
526	 * extra clocks turned on, otherwise the MX35 boot ROM code will
527	 * hang after a watchdog reset.
528	 */
529	if (!(__raw_readl(CCM_BASE + CCM_RCSR) & (3 << 10))) {
530		/* Additionally turn on UART1, SCC, and IIM clocks */
531		cgr2 |= 3 << 16 | 3 << 4;
532		cgr3 |= 3 << 2;
533	}
534
535	__raw_writel(cgr2, CCM_BASE + CCM_CGR2);
536	__raw_writel(cgr3, CCM_BASE + CCM_CGR3);
537
538	mxc_timer_init(&gpt_clk,
539			MX35_IO_ADDRESS(MX35_GPT1_BASE_ADDR), MX35_INT_GPT);
540
541	return 0;
542}
543