clock.c 11.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * arch/arm/mach-ep93xx/clock.c
 * Clock control for Cirrus EP93xx chips.
 *
 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/clk.h>
#include <linux/err.h>
16
#include <linux/module.h>
17
#include <linux/string.h>
18
#include <linux/io.h>
19 20 21
#include <linux/spinlock.h>

#include <mach/hardware.h>
22 23

#include <asm/clkdev.h>
24 25
#include <asm/div64.h>

26

27
struct clk {
28
	struct clk	*parent;
29 30
	unsigned long	rate;
	int		users;
31
	int		sw_locked;
32
	void __iomem	*enable_reg;
33
	u32		enable_mask;
34 35

	unsigned long	(*get_rate)(struct clk *clk);
36
	int		(*set_rate)(struct clk *clk, unsigned long rate);
37 38
};

39 40 41

static unsigned long get_uart_rate(struct clk *clk);

42
static int set_keytchclk_rate(struct clk *clk, unsigned long rate);
43
static int set_div_rate(struct clk *clk, unsigned long rate);
44

45 46 47 48

static struct clk clk_xtali = {
	.rate		= EP93XX_EXT_CLK_RATE,
};
49
static struct clk clk_uart1 = {
50
	.parent		= &clk_xtali,
51
	.sw_locked	= 1,
52 53
	.enable_reg	= EP93XX_SYSCON_DEVCFG,
	.enable_mask	= EP93XX_SYSCON_DEVCFG_U1EN,
54 55 56
	.get_rate	= get_uart_rate,
};
static struct clk clk_uart2 = {
57
	.parent		= &clk_xtali,
58
	.sw_locked	= 1,
59 60
	.enable_reg	= EP93XX_SYSCON_DEVCFG,
	.enable_mask	= EP93XX_SYSCON_DEVCFG_U2EN,
61 62 63
	.get_rate	= get_uart_rate,
};
static struct clk clk_uart3 = {
64
	.parent		= &clk_xtali,
65
	.sw_locked	= 1,
66 67
	.enable_reg	= EP93XX_SYSCON_DEVCFG,
	.enable_mask	= EP93XX_SYSCON_DEVCFG_U3EN,
68
	.get_rate	= get_uart_rate,
69
};
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
static struct clk clk_pll1 = {
	.parent		= &clk_xtali,
};
static struct clk clk_f = {
	.parent		= &clk_pll1,
};
static struct clk clk_h = {
	.parent		= &clk_pll1,
};
static struct clk clk_p = {
	.parent		= &clk_pll1,
};
static struct clk clk_pll2 = {
	.parent		= &clk_xtali,
};
85
static struct clk clk_usb_host = {
86
	.parent		= &clk_pll2,
87 88
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_USH_EN,
89
};
90
static struct clk clk_keypad = {
91
	.parent		= &clk_xtali,
92 93 94 95 96
	.sw_locked	= 1,
	.enable_reg	= EP93XX_SYSCON_KEYTCHCLKDIV,
	.enable_mask	= EP93XX_SYSCON_KEYTCHCLKDIV_KEN,
	.set_rate	= set_keytchclk_rate,
};
97
static struct clk clk_pwm = {
98
	.parent		= &clk_xtali,
99 100
	.rate		= EP93XX_EXT_CLK_RATE,
};
101

102 103 104 105 106 107 108
static struct clk clk_video = {
	.sw_locked	= 1,
	.enable_reg     = EP93XX_SYSCON_VIDCLKDIV,
	.enable_mask    = EP93XX_SYSCON_CLKDIV_ENABLE,
	.set_rate	= set_div_rate,
};

109 110
/* DMA Clocks */
static struct clk clk_m2p0 = {
111
	.parent		= &clk_h,
112 113
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P0,
114 115
};
static struct clk clk_m2p1 = {
116
	.parent		= &clk_h,
117 118
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P1,
119 120
};
static struct clk clk_m2p2 = {
121
	.parent		= &clk_h,
122 123
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P2,
124 125
};
static struct clk clk_m2p3 = {
126
	.parent		= &clk_h,
127 128
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P3,
129 130
};
static struct clk clk_m2p4 = {
131
	.parent		= &clk_h,
132 133
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P4,
134 135
};
static struct clk clk_m2p5 = {
136
	.parent		= &clk_h,
137 138
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P5,
139 140
};
static struct clk clk_m2p6 = {
141
	.parent		= &clk_h,
142 143
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P6,
144 145
};
static struct clk clk_m2p7 = {
146
	.parent		= &clk_h,
147 148
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P7,
149 150
};
static struct clk clk_m2p8 = {
151
	.parent		= &clk_h,
152 153
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P8,
154 155
};
static struct clk clk_m2p9 = {
156
	.parent		= &clk_h,
157 158
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2P9,
159 160
};
static struct clk clk_m2m0 = {
161
	.parent		= &clk_h,
162 163
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2M0,
164 165
};
static struct clk clk_m2m1 = {
166
	.parent		= &clk_h,
167 168
	.enable_reg	= EP93XX_SYSCON_PWRCNT,
	.enable_mask	= EP93XX_SYSCON_PWRCNT_DMA_M2M1,
169 170
};

171 172 173 174
#define INIT_CK(dev,con,ck)					\
	{ .dev_id = dev, .con_id = con, .clk = ck }

static struct clk_lookup clocks[] = {
175
	INIT_CK(NULL,			"xtali",	&clk_xtali),
176 177 178 179 180 181 182 183 184 185
	INIT_CK("apb:uart1",		NULL,		&clk_uart1),
	INIT_CK("apb:uart2",		NULL,		&clk_uart2),
	INIT_CK("apb:uart3",		NULL,		&clk_uart3),
	INIT_CK(NULL,			"pll1",		&clk_pll1),
	INIT_CK(NULL,			"fclk",		&clk_f),
	INIT_CK(NULL,			"hclk",		&clk_h),
	INIT_CK(NULL,			"pclk",		&clk_p),
	INIT_CK(NULL,			"pll2",		&clk_pll2),
	INIT_CK("ep93xx-ohci",		NULL,		&clk_usb_host),
	INIT_CK("ep93xx-keypad",	NULL,		&clk_keypad),
186
	INIT_CK("ep93xx-fb",		NULL,		&clk_video),
187
	INIT_CK(NULL,			"pwm_clk",	&clk_pwm),
188 189 190 191 192 193 194 195 196 197 198 199
	INIT_CK(NULL,			"m2p0",		&clk_m2p0),
	INIT_CK(NULL,			"m2p1",		&clk_m2p1),
	INIT_CK(NULL,			"m2p2",		&clk_m2p2),
	INIT_CK(NULL,			"m2p3",		&clk_m2p3),
	INIT_CK(NULL,			"m2p4",		&clk_m2p4),
	INIT_CK(NULL,			"m2p5",		&clk_m2p5),
	INIT_CK(NULL,			"m2p6",		&clk_m2p6),
	INIT_CK(NULL,			"m2p7",		&clk_m2p7),
	INIT_CK(NULL,			"m2p8",		&clk_m2p8),
	INIT_CK(NULL,			"m2p9",		&clk_m2p9),
	INIT_CK(NULL,			"m2m0",		&clk_m2m0),
	INIT_CK(NULL,			"m2m1",		&clk_m2m1),
200 201
};

202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
static DEFINE_SPINLOCK(clk_lock);

static void __clk_enable(struct clk *clk)
{
	if (!clk->users++) {
		if (clk->parent)
			__clk_enable(clk->parent);

		if (clk->enable_reg) {
			u32 v;

			v = __raw_readl(clk->enable_reg);
			v |= clk->enable_mask;
			if (clk->sw_locked)
				ep93xx_syscon_swlocked_write(v, clk->enable_reg);
			else
				__raw_writel(v, clk->enable_reg);
		}
	}
}
222 223 224

int clk_enable(struct clk *clk)
{
225
	unsigned long flags;
226

227 228 229 230 231 232
	if (!clk)
		return -EINVAL;

	spin_lock_irqsave(&clk_lock, flags);
	__clk_enable(clk);
	spin_unlock_irqrestore(&clk_lock, flags);
233 234 235

	return 0;
}
236
EXPORT_SYMBOL(clk_enable);
237

238
static void __clk_disable(struct clk *clk)
239
{
240 241 242 243 244 245 246 247 248 249 250
	if (!--clk->users) {
		if (clk->enable_reg) {
			u32 v;

			v = __raw_readl(clk->enable_reg);
			v &= ~clk->enable_mask;
			if (clk->sw_locked)
				ep93xx_syscon_swlocked_write(v, clk->enable_reg);
			else
				__raw_writel(v, clk->enable_reg);
		}
251

252 253
		if (clk->parent)
			__clk_disable(clk->parent);
254 255
	}
}
256 257 258 259 260 261 262 263 264 265 266 267

void clk_disable(struct clk *clk)
{
	unsigned long flags;

	if (!clk)
		return;

	spin_lock_irqsave(&clk_lock, flags);
	__clk_disable(clk);
	spin_unlock_irqrestore(&clk_lock, flags);
}
268
EXPORT_SYMBOL(clk_disable);
269

270 271
static unsigned long get_uart_rate(struct clk *clk)
{
272
	unsigned long rate = clk_get_rate(clk->parent);
273 274
	u32 value;

275 276
	value = __raw_readl(EP93XX_SYSCON_PWRCNT);
	if (value & EP93XX_SYSCON_PWRCNT_UARTBAUD)
277
		return rate;
278
	else
279
		return rate / 2;
280 281
}

282 283
unsigned long clk_get_rate(struct clk *clk)
{
284 285 286
	if (clk->get_rate)
		return clk->get_rate(clk);

287 288
	return clk->rate;
}
289
EXPORT_SYMBOL(clk_get_rate);
290

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
static int set_keytchclk_rate(struct clk *clk, unsigned long rate)
{
	u32 val;
	u32 div_bit;

	val = __raw_readl(clk->enable_reg);

	/*
	 * The Key Matrix and ADC clocks are configured using the same
	 * System Controller register.  The clock used will be either
	 * 1/4 or 1/16 the external clock rate depending on the
	 * EP93XX_SYSCON_KEYTCHCLKDIV_KDIV/EP93XX_SYSCON_KEYTCHCLKDIV_ADIV
	 * bit being set or cleared.
	 */
	div_bit = clk->enable_mask >> 15;

	if (rate == EP93XX_KEYTCHCLK_DIV4)
		val |= div_bit;
	else if (rate == EP93XX_KEYTCHCLK_DIV16)
		val &= ~div_bit;
	else
		return -EINVAL;

	ep93xx_syscon_swlocked_write(val, clk->enable_reg);
	clk->rate = rate;
	return 0;
}

319 320
static int calc_clk_div(struct clk *clk, unsigned long rate,
			int *psel, int *esel, int *pdiv, int *div)
321
{
322 323
	struct clk *mclk;
	unsigned long max_rate, actual_rate, mclk_rate, rate_err = -1;
324 325 326 327
	int i, found = 0, __div = 0, __pdiv = 0;

	/* Don't exceed the maximum rate */
	max_rate = max(max(clk_pll1.rate / 4, clk_pll2.rate / 4),
328
		       clk_xtali.rate / 4);
329 330 331 332 333 334 335 336 337 338 339 340 341
	rate = min(rate, max_rate);

	/*
	 * Try the two pll's and the external clock
	 * Because the valid predividers are 2, 2.5 and 3, we multiply
	 * all the clocks by 2 to avoid floating point math.
	 *
	 * This is based on the algorithm in the ep93xx raster guide:
	 * http://be-a-maverick.com/en/pubs/appNote/AN269REV1.pdf
	 *
	 */
	for (i = 0; i < 3; i++) {
		if (i == 0)
342
			mclk = &clk_xtali;
343
		else if (i == 1)
344 345 346 347
			mclk = &clk_pll1;
		else
			mclk = &clk_pll2;
		mclk_rate = mclk->rate * 2;
348 349 350 351 352 353 354 355 356 357 358 359 360 361

		/* Try each predivider value */
		for (__pdiv = 4; __pdiv <= 6; __pdiv++) {
			__div = mclk_rate / (rate * __pdiv);
			if (__div < 2 || __div > 127)
				continue;

			actual_rate = mclk_rate / (__pdiv * __div);

			if (!found || abs(actual_rate - rate) < rate_err) {
				*pdiv = __pdiv - 3;
				*div = __div;
				*psel = (i == 2);
				*esel = (i != 0);
362 363
				clk->parent = mclk;
				clk->rate = actual_rate;
364 365 366 367 368 369 370
				rate_err = abs(actual_rate - rate);
				found = 1;
			}
		}
	}

	if (!found)
371
		return -EINVAL;
372

373
	return 0;
374 375 376 377
}

static int set_div_rate(struct clk *clk, unsigned long rate)
{
378
	int err, psel = 0, esel = 0, pdiv = 0, div = 0;
379 380
	u32 val;

381 382 383
	err = calc_clk_div(clk, rate, &psel, &esel, &pdiv, &div);
	if (err)
		return err;
384 385 386 387 388 389 390 391 392 393 394 395 396

	/* Clear the esel, psel, pdiv and div bits */
	val = __raw_readl(clk->enable_reg);
	val &= ~0x7fff;

	/* Set the new esel, psel, pdiv and div bits for the new clock rate */
	val |= (esel ? EP93XX_SYSCON_CLKDIV_ESEL : 0) |
		(psel ? EP93XX_SYSCON_CLKDIV_PSEL : 0) |
		(pdiv << EP93XX_SYSCON_CLKDIV_PDIV_SHIFT) | div;
	ep93xx_syscon_swlocked_write(val, clk->enable_reg);
	return 0;
}

397 398 399 400 401 402 403 404 405
int clk_set_rate(struct clk *clk, unsigned long rate)
{
	if (clk->set_rate)
		return clk->set_rate(clk, rate);

	return -EINVAL;
}
EXPORT_SYMBOL(clk_set_rate);

406 407 408 409 410 411 412 413 414 415 416 417 418

static char fclk_divisors[] = { 1, 2, 4, 8, 16, 1, 1, 1 };
static char hclk_divisors[] = { 1, 2, 4, 5, 6, 8, 16, 32 };
static char pclk_divisors[] = { 1, 2, 4, 8 };

/*
 * PLL rate = 14.7456 MHz * (X1FBD + 1) * (X2FBD + 1) / (X2IPD + 1) / 2^PS
 */
static unsigned long calc_pll_rate(u32 config_word)
{
	unsigned long long rate;
	int i;

419
	rate = clk_xtali.rate;
420 421 422 423 424 425 426 427 428
	rate *= ((config_word >> 11) & 0x1f) + 1;		/* X1FBD */
	rate *= ((config_word >> 5) & 0x3f) + 1;		/* X2FBD */
	do_div(rate, (config_word & 0x1f) + 1);			/* X2IPD */
	for (i = 0; i < ((config_word >> 16) & 3); i++)		/* PS */
		rate >>= 1;

	return (unsigned long)rate;
}

429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
static void __init ep93xx_dma_clock_init(void)
{
	clk_m2p0.rate = clk_h.rate;
	clk_m2p1.rate = clk_h.rate;
	clk_m2p2.rate = clk_h.rate;
	clk_m2p3.rate = clk_h.rate;
	clk_m2p4.rate = clk_h.rate;
	clk_m2p5.rate = clk_h.rate;
	clk_m2p6.rate = clk_h.rate;
	clk_m2p7.rate = clk_h.rate;
	clk_m2p8.rate = clk_h.rate;
	clk_m2p9.rate = clk_h.rate;
	clk_m2m0.rate = clk_h.rate;
	clk_m2m1.rate = clk_h.rate;
}

445
static int __init ep93xx_clock_init(void)
446 447
{
	u32 value;
448
	int i;
449 450 451

	value = __raw_readl(EP93XX_SYSCON_CLOCK_SET1);
	if (!(value & 0x00800000)) {			/* PLL1 bypassed?  */
452
		clk_pll1.rate = clk_xtali.rate;
453 454 455 456 457 458
	} else {
		clk_pll1.rate = calc_pll_rate(value);
	}
	clk_f.rate = clk_pll1.rate / fclk_divisors[(value >> 25) & 0x7];
	clk_h.rate = clk_pll1.rate / hclk_divisors[(value >> 20) & 0x7];
	clk_p.rate = clk_h.rate / pclk_divisors[(value >> 18) & 0x3];
459
	ep93xx_dma_clock_init();
460 461 462

	value = __raw_readl(EP93XX_SYSCON_CLOCK_SET2);
	if (!(value & 0x00080000)) {			/* PLL2 bypassed?  */
463
		clk_pll2.rate = clk_xtali.rate;
464 465 466 467 468 469 470 471 472 473 474 475
	} else if (value & 0x00040000) {		/* PLL2 enabled?  */
		clk_pll2.rate = calc_pll_rate(value);
	} else {
		clk_pll2.rate = 0;
	}
	clk_usb_host.rate = clk_pll2.rate / (((value >> 28) & 0xf) + 1);

	printk(KERN_INFO "ep93xx: PLL1 running at %ld MHz, PLL2 at %ld MHz\n",
		clk_pll1.rate / 1000000, clk_pll2.rate / 1000000);
	printk(KERN_INFO "ep93xx: FCLK %ld MHz, HCLK %ld MHz, PCLK %ld MHz\n",
		clk_f.rate / 1000000, clk_h.rate / 1000000,
		clk_p.rate / 1000000);
476

477 478
	for (i = 0; i < ARRAY_SIZE(clocks); i++)
		clkdev_add(&clocks[i]);
479
	return 0;
480
}
481
arch_initcall(ep93xx_clock_init);