s5pc100-clock.c 20.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/* linux/arch/arm/plat-s5pc1xx/s5pc100-clock.c
 *
 * Copyright 2009 Samsung Electronics, Co.
 *	Byungho Min <bhmin@samsung.com>
 *
 * S5PC100 based common clock support
 *
 * Based on plat-s3c64xx/s3c6400-clock.c
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
*/

#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/errno.h>
#include <linux/err.h>
#include <linux/clk.h>
#include <linux/sysdev.h>
#include <linux/io.h>

#include <mach/hardware.h>
#include <mach/map.h>

#include <plat/cpu-freq.h>

#include <plat/regs-clock.h>
#include <plat/clock.h>
32
#include <plat/clock-clksrc.h>
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#include <plat/cpu.h>
#include <plat/pll.h>
#include <plat/devs.h>
#include <plat/s5pc100.h>

/* fin_apll, fin_mpll and fin_epll are all the same clock, which we call
 * ext_xtal_mux for want of an actual name from the manual.
*/

static struct clk clk_ext_xtal_mux = {
	.name		= "ext_xtal",
	.id		= -1,
};

#define clk_fin_apll clk_ext_xtal_mux
#define clk_fin_mpll clk_ext_xtal_mux
#define clk_fin_epll clk_ext_xtal_mux
#define clk_fin_hpll clk_ext_xtal_mux

#define clk_fout_mpll	clk_mpll
53
#define clk_vclk_54m	clk_54m
54

55 56 57
/* APLL */
static struct clk clk_fout_apll = {
	.name		= "fout_apll",
58 59 60 61
	.id		= -1,
	.rate		= 27000000,
};

62 63 64 65
static struct clk *clk_src_apll_list[] = {
	[0] = &clk_fin_apll,
	[1] = &clk_fout_apll,
};
66

67
static struct clksrc_sources clk_src_apll = {
68 69 70
	.sources	= clk_src_apll_list,
	.nr_sources	= ARRAY_SIZE(clk_src_apll_list),
};
71

72 73 74 75 76 77
static struct clksrc_clk clk_mout_apll = {
	.clk	= {
		.name		= "mout_apll",
		.id		= -1,
	},
	.sources	= &clk_src_apll,
78
	.reg_src = { .reg = S5PC100_CLKSRC0, .shift = 0, .size = 1, },
79
};
80

81 82 83 84
static unsigned long s5pc100_clk_dout_apll_get_rate(struct clk *clk)
{
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;
85

86 87
	ratio = __raw_readl(S5PC100_CLKDIV0) & S5PC100_CLKDIV0_APLL_MASK;
	ratio >>= S5PC100_CLKDIV0_APLL_SHIFT;
88

89 90
	return rate / (ratio + 1);
}
91

92 93
static struct clk clk_dout_apll = {
	.name		= "dout_apll",
94
	.id		= -1,
95
	.parent		= &clk_mout_apll.clk,
96 97 98
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_apll_get_rate,
	},
99 100
};

101 102 103 104
static unsigned long s5pc100_clk_arm_get_rate(struct clk *clk)
{
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;
105

106 107
	ratio = __raw_readl(S5PC100_CLKDIV0) & S5PC100_CLKDIV0_ARM_MASK;
	ratio >>= S5PC100_CLKDIV0_ARM_SHIFT;
108

109 110
	return rate / (ratio + 1);
}
111

112 113
static unsigned long s5pc100_clk_arm_round_rate(struct clk *clk,
						unsigned long rate)
114
{
115 116
	unsigned long parent = clk_get_rate(clk->parent);
	u32 div;
117

118 119
	if (parent < rate)
		return rate;
120

121 122 123
	div = (parent / rate) - 1;
	if (div > S5PC100_CLKDIV0_ARM_MASK)
		div = S5PC100_CLKDIV0_ARM_MASK;
124

125
	return parent / (div + 1);
126 127
}

128
static int s5pc100_clk_arm_set_rate(struct clk *clk, unsigned long rate)
129
{
130 131 132
	unsigned long parent = clk_get_rate(clk->parent);
	u32 div;
	u32 val;
133

134 135
	if (rate < parent / (S5PC100_CLKDIV0_ARM_MASK + 1))
		return -EINVAL;
136

137 138
	rate = clk_round_rate(clk, rate);
	div = clk_get_rate(clk->parent) / rate;
139

140 141 142 143
	val = __raw_readl(S5PC100_CLKDIV0);
	val &= S5PC100_CLKDIV0_ARM_MASK;
	val |= (div - 1);
	__raw_writel(val, S5PC100_CLKDIV0);
144

145
	return 0;
146 147
}

148 149 150 151
static struct clk clk_arm = {
	.name		= "armclk",
	.id		= -1,
	.parent		= &clk_dout_apll,
152 153 154 155 156
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_arm_get_rate,
		.set_rate	= s5pc100_clk_arm_set_rate,
		.round_rate	= s5pc100_clk_arm_round_rate,
	},
157
};
158

159
static unsigned long s5pc100_clk_dout_d0_bus_get_rate(struct clk *clk)
160
{
161 162
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;
163

164 165
	ratio = __raw_readl(S5PC100_CLKDIV0) & S5PC100_CLKDIV0_D0_MASK;
	ratio >>= S5PC100_CLKDIV0_D0_SHIFT;
166

167
	return rate / (ratio + 1);
168 169
}

170 171 172 173
static struct clk clk_dout_d0_bus = {
	.name		= "dout_d0_bus",
	.id		= -1,
	.parent		= &clk_arm,
174 175 176
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_d0_bus_get_rate,
	},
177
};
178

179
static unsigned long s5pc100_clk_dout_pclkd0_get_rate(struct clk *clk)
180
{
181 182 183 184 185 186 187
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;

	ratio = __raw_readl(S5PC100_CLKDIV0) & S5PC100_CLKDIV0_PCLKD0_MASK;
	ratio >>= S5PC100_CLKDIV0_PCLKD0_SHIFT;

	return rate / (ratio + 1);
188 189
}

190 191 192 193
static struct clk clk_dout_pclkd0 = {
	.name		= "dout_pclkd0",
	.id		= -1,
	.parent		= &clk_dout_d0_bus,
194 195 196
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_pclkd0_get_rate,
	},
197 198 199
};

static unsigned long s5pc100_clk_dout_apll2_get_rate(struct clk *clk)
200
{
201 202 203 204 205 206 207
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;

	ratio = __raw_readl(S5PC100_CLKDIV1) & S5PC100_CLKDIV1_APLL2_MASK;
	ratio >>= S5PC100_CLKDIV1_APLL2_SHIFT;

	return rate / (ratio + 1);
208 209
}

210 211 212 213
static struct clk clk_dout_apll2 = {
	.name		= "dout_apll2",
	.id		= -1,
	.parent		= &clk_mout_apll.clk,
214 215 216
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_apll2_get_rate,
	},
217 218
};

219 220 221 222 223
/* MPLL */
static struct clk *clk_src_mpll_list[] = {
	[0] = &clk_fin_mpll,
	[1] = &clk_fout_mpll,
};
224

225
static struct clksrc_sources clk_src_mpll = {
226 227 228
	.sources	= clk_src_mpll_list,
	.nr_sources	= ARRAY_SIZE(clk_src_mpll_list),
};
229

230 231 232
static struct clksrc_clk clk_mout_mpll = {
	.clk = {
		.name		= "mout_mpll",
233 234
		.id		= -1,
	},
235
	.sources	= &clk_src_mpll,
236
	.reg_src = { .reg = S5PC100_CLKSRC0, .shift = 4, .size = 1, },
237
};
238

239 240 241 242
static struct clk *clkset_am_list[] = {
	[0] = &clk_mout_mpll.clk,
	[1] = &clk_dout_apll2,
};
243

244
static struct clksrc_sources clk_src_am = {
245 246 247
	.sources	= clkset_am_list,
	.nr_sources	= ARRAY_SIZE(clkset_am_list),
};
248

249 250 251
static struct clksrc_clk clk_mout_am = {
	.clk = {
		.name		= "mout_am",
252 253
		.id		= -1,
	},
254
	.sources	= &clk_src_am,
255
	.reg_src = { .reg = S5PC100_CLKSRC0, .shift = 16, .size = 1, },
256
};
257

258 259 260 261
static unsigned long s5pc100_clk_dout_d1_bus_get_rate(struct clk *clk)
{
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;
262

263
	printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate);
264

265 266
	ratio = __raw_readl(S5PC100_CLKDIV1) & S5PC100_CLKDIV1_D1_MASK;
	ratio >>= S5PC100_CLKDIV1_D1_SHIFT;
267

268 269
	return rate / (ratio + 1);
}
270

271 272 273 274
static struct clk clk_dout_d1_bus = {
	.name		= "dout_d1_bus",
	.id		= -1,
	.parent		= &clk_mout_am.clk,
275 276 277
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_d1_bus_get_rate,
	},
278
};
279

280 281 282 283 284
static struct clk *clkset_onenand_list[] = {
	[0] = &clk_dout_d0_bus,
	[1] = &clk_dout_d1_bus,
};

285
static struct clksrc_sources clk_src_onenand = {
286 287 288 289 290 291 292
	.sources	= clkset_onenand_list,
	.nr_sources	= ARRAY_SIZE(clkset_onenand_list),
};

static struct clksrc_clk clk_mout_onenand = {
	.clk = {
		.name		= "mout_onenand",
293 294
		.id		= -1,
	},
295
	.sources	= &clk_src_onenand,
296
	.reg_src = { .reg = S5PC100_CLKSRC0, .shift = 24, .size = 1, },
297 298
};

299
static unsigned long s5pc100_clk_dout_pclkd1_get_rate(struct clk *clk)
300
{
301 302
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;
303

304
	printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate);
305

306 307
	ratio = __raw_readl(S5PC100_CLKDIV1) & S5PC100_CLKDIV1_PCLKD1_MASK;
	ratio >>= S5PC100_CLKDIV1_PCLKD1_SHIFT;
308

309 310
	return rate / (ratio + 1);
}
311

312 313 314 315
static struct clk clk_dout_pclkd1 = {
	.name		= "dout_pclkd1",
	.id		= -1,
	.parent		= &clk_dout_d1_bus,
316 317 318
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_pclkd1_get_rate,
	},
319
};
320

321 322 323 324 325 326 327 328 329 330 331
static unsigned long s5pc100_clk_dout_mpll2_get_rate(struct clk *clk)
{
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;

	printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate);

	ratio = __raw_readl(S5PC100_CLKDIV1) & S5PC100_CLKDIV1_MPLL2_MASK;
	ratio >>= S5PC100_CLKDIV1_MPLL2_SHIFT;

	return rate / (ratio + 1);
332
}
333 334 335

static struct clk clk_dout_mpll2 = {
	.name		= "dout_mpll2",
336
	.id		= -1,
337
	.parent		= &clk_mout_am.clk,
338 339 340
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_mpll2_get_rate,
	},
341 342
};

343 344 345 346
static unsigned long s5pc100_clk_dout_cam_get_rate(struct clk *clk)
{
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;
347

348 349 350 351 352 353 354 355 356 357 358 359
	printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate);

	ratio = __raw_readl(S5PC100_CLKDIV1) & S5PC100_CLKDIV1_CAM_MASK;
	ratio >>= S5PC100_CLKDIV1_CAM_SHIFT;

	return rate / (ratio + 1);
}

static struct clk clk_dout_cam = {
	.name		= "dout_cam",
	.id		= -1,
	.parent		= &clk_dout_mpll2,
360 361 362
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_cam_get_rate,
	},
363 364
};

365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
static unsigned long s5pc100_clk_dout_mpll_get_rate(struct clk *clk)
{
	unsigned long rate = clk_get_rate(clk->parent);
	unsigned int ratio;

	printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate);

	ratio = __raw_readl(S5PC100_CLKDIV1) & S5PC100_CLKDIV1_MPLL_MASK;
	ratio >>= S5PC100_CLKDIV1_MPLL_SHIFT;

	return rate / (ratio + 1);
}

static struct clk clk_dout_mpll = {
	.name		= "dout_mpll",
	.id		= -1,
	.parent		= &clk_mout_am.clk,
382 383 384
	.ops		= &(struct clk_ops) {
		.get_rate	= s5pc100_clk_dout_mpll_get_rate,
	},
385 386
};

387
/* EPLL */
388 389 390 391 392 393 394 395 396 397
static struct clk clk_fout_epll = {
	.name		= "fout_epll",
	.id		= -1,
};

static struct clk *clk_src_epll_list[] = {
	[0] = &clk_fin_epll,
	[1] = &clk_fout_epll,
};

398
static struct clksrc_sources clk_src_epll = {
399 400 401 402 403 404 405 406 407
	.sources	= clk_src_epll_list,
	.nr_sources	= ARRAY_SIZE(clk_src_epll_list),
};

static struct clksrc_clk clk_mout_epll = {
	.clk	= {
		.name		= "mout_epll",
		.id		= -1,
	},
408 409
	.sources = &clk_src_epll,
	.reg_src = { .reg = S5PC100_CLKSRC0, .shift = 8, .size = 1, },
410 411
};

412 413 414 415
/* HPLL */
static struct clk clk_fout_hpll = {
	.name		= "fout_hpll",
	.id		= -1,
416 417
};

418 419 420
static struct clk *clk_src_hpll_list[] = {
	[0] = &clk_27m,
	[1] = &clk_fout_hpll,
421 422
};

423
static struct clksrc_sources clk_src_hpll = {
424 425 426 427 428 429 430
	.sources	= clk_src_hpll_list,
	.nr_sources	= ARRAY_SIZE(clk_src_hpll_list),
};

static struct clksrc_clk clk_mout_hpll = {
	.clk	= {
		.name		= "mout_hpll",
431 432
		.id		= -1,
	},
433 434
	.sources = &clk_src_hpll,
	.reg_src = { .reg = S5PC100_CLKSRC0, .shift = 12, .size = 1, },
435 436
};

437 438 439 440 441 442 443 444 445 446 447
/* Peripherals */
/*
 * The peripheral clocks are all controlled via clocksource followed
 * by an optional divider and gate stage. We currently roll this into
 * one clock which hides the intermediate clock from the mux.
 *
 * Note, the JPEG clock can only be an even divider...
 *
 * The scaler and LCD clocks depend on the S5PC100 version, and also
 * have a common parent divisor so are not included here.
 */
448

449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
static struct clk clk_iis_cd0 = {
	.name		= "iis_cdclk0",
	.id		= -1,
};

static struct clk clk_iis_cd1 = {
	.name		= "iis_cdclk1",
	.id		= -1,
};

static struct clk clk_iis_cd2 = {
	.name		= "iis_cdclk2",
	.id		= -1,
};

static struct clk clk_pcm_cd0 = {
	.name		= "pcm_cdclk0",
	.id		= -1,
};

static struct clk clk_pcm_cd1 = {
	.name		= "pcm_cdclk1",
	.id		= -1,
};

static struct clk *clkset_audio0_list[] = {
	&clk_mout_epll.clk,
	&clk_dout_mpll,
	&clk_fin_epll,
	&clk_iis_cd0,
	&clk_pcm_cd0,
	&clk_mout_hpll.clk,
};

static struct clksrc_sources clkset_audio0 = {
	.sources	= clkset_audio0_list,
	.nr_sources	= ARRAY_SIZE(clkset_audio0_list),
};

488 489 490 491 492 493 494
static struct clk *clkset_spi_list[] = {
	&clk_mout_epll.clk,
	&clk_dout_mpll2,
	&clk_fin_epll,
	&clk_mout_hpll.clk,
};

495
static struct clksrc_sources clkset_spi = {
496 497 498 499
	.sources	= clkset_spi_list,
	.nr_sources	= ARRAY_SIZE(clkset_spi_list),
};

500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
static struct clk *clkset_uart_list[] = {
	&clk_mout_epll.clk,
	&clk_dout_mpll,
};

static struct clksrc_sources clkset_uart = {
	.sources	= clkset_uart_list,
	.nr_sources	= ARRAY_SIZE(clkset_uart_list),
};

static struct clk *clkset_audio1_list[] = {
	&clk_mout_epll.clk,
	&clk_dout_mpll,
	&clk_fin_epll,
	&clk_iis_cd1,
	&clk_pcm_cd1,
	&clk_mout_hpll.clk,
};

static struct clksrc_sources clkset_audio1 = {
	.sources	= clkset_audio1_list,
	.nr_sources	= ARRAY_SIZE(clkset_audio1_list),
};

static struct clk *clkset_audio2_list[] = {
	&clk_mout_epll.clk,
	&clk_dout_mpll,
	&clk_fin_epll,
	&clk_iis_cd2,
	&clk_mout_hpll.clk,
};

static struct clksrc_sources clkset_audio2 = {
	.sources	= clkset_audio2_list,
	.nr_sources	= ARRAY_SIZE(clkset_audio2_list),
};

537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
static struct clksrc_clk clksrc_audio[] = {
	{
		.clk	= {
			.name		= "audio-bus",
			.id		= 0,
			.ctrlbit	= S5PC100_CLKGATE_SCLK1_AUDIO0,
			.enable		= s5pc100_sclk1_ctrl,
		},
		.sources = &clkset_audio0,
		.reg_div = { .reg = S5PC100_CLKDIV4, .shift = 12, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC3, .shift = 12, .size = 3, },
	}, {
		.clk	= {
			.name		= "audio-bus",
			.id		= 1,
			.ctrlbit	= S5PC100_CLKGATE_SCLK1_AUDIO1,
			.enable		= s5pc100_sclk1_ctrl,
		},
		.sources = &clkset_audio1,
		.reg_div = { .reg = S5PC100_CLKDIV4, .shift = 16, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC3, .shift = 16, .size = 3, },
	}, {
		.clk	= {
			.name		= "audio-bus",
			.id		= 2,
			.ctrlbit	= S5PC100_CLKGATE_SCLK1_AUDIO2,
			.enable		= s5pc100_sclk1_ctrl,
		},
		.sources = &clkset_audio2,
		.reg_div = { .reg = S5PC100_CLKDIV4, .shift = 20, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC3, .shift = 20, .size = 3, },
	},
};
570 571

static struct clk *clkset_spdif_list[] = {
572 573 574
	&clksrc_audio[0].clk,
	&clksrc_audio[1].clk,
	&clksrc_audio[2].clk,
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
};

static struct clksrc_sources clkset_spdif = {
	.sources	= clkset_spdif_list,
	.nr_sources	= ARRAY_SIZE(clkset_spdif_list),
};

static struct clk *clkset_lcd_fimc_list[] = {
	&clk_mout_epll.clk,
	&clk_dout_mpll,
	&clk_mout_hpll.clk,
	&clk_vclk_54m,
};

static struct clksrc_sources clkset_lcd_fimc = {
	.sources	= clkset_lcd_fimc_list,
	.nr_sources	= ARRAY_SIZE(clkset_lcd_fimc_list),
};

static struct clk *clkset_mmc_list[] = {
	&clk_mout_epll.clk,
	&clk_dout_mpll,
	&clk_fin_epll,
	&clk_mout_hpll.clk ,
};

static struct clksrc_sources clkset_mmc = {
	.sources	= clkset_mmc_list,
	.nr_sources	= ARRAY_SIZE(clkset_mmc_list),
};

static struct clk *clkset_usbhost_list[] = {
	&clk_mout_epll.clk,
	&clk_dout_mpll,
	&clk_mout_hpll.clk,
	&clk_48m,
};

static struct clksrc_sources clkset_usbhost = {
	.sources	= clkset_usbhost_list,
	.nr_sources	= ARRAY_SIZE(clkset_usbhost_list),
};

618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
static struct clksrc_clk clksrc_clks[] = {
	{
		.clk	= {
			.name		= "spi_bus",
			.id		= 0,
			.ctrlbit	= S5PC100_CLKGATE_SCLK0_SPI0,
			.enable		= s5pc100_sclk0_ctrl,

		},
		.sources = &clkset_spi,
		.reg_div = { .reg = S5PC100_CLKDIV2, .shift = 4, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC1, .shift = 4, .size = 2, },
	}, {
		.clk	= {
			.name		= "spi_bus",
			.id		= 1,
			.ctrlbit	= S5PC100_CLKGATE_SCLK0_SPI1,
			.enable		= s5pc100_sclk0_ctrl,
		},
		.sources = &clkset_spi,
		.reg_div = { .reg = S5PC100_CLKDIV2, .shift = 8, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC1, .shift = 8, .size = 2, },
	}, {
		.clk	= {
			.name		= "spi_bus",
			.id		= 2,
			.ctrlbit	= S5PC100_CLKGATE_SCLK0_SPI2,
			.enable		= s5pc100_sclk0_ctrl,
		},
		.sources = &clkset_spi,
		.reg_div = { .reg = S5PC100_CLKDIV2, .shift = 12, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC1, .shift = 12, .size = 2, },
	}, {
		.clk	= {
			.name		= "uclk1",
			.id		= -1,
			.ctrlbit        = S5PC100_CLKGATE_SCLK0_UART,
			.enable		= s5pc100_sclk0_ctrl,
		},
		.sources = &clkset_uart,
		.reg_div = { .reg = S5PC100_CLKDIV2, .shift = 0, .size = 3, },
		.reg_src = { .reg = S5PC100_CLKSRC1, .shift = 0, .size = 1, },
	}, {
		.clk	= {
			.name		= "spdif",
			.id		= -1,
		},
		.sources	= &clkset_spdif,
		.reg_src = { .reg = S5PC100_CLKSRC3, .shift = 24, .size = 2, },
	}, {
		.clk	= {
			.name		= "lcd",
			.id		= -1,
			.ctrlbit	= S5PC100_CLKGATE_SCLK1_LCD,
			.enable		= s5pc100_sclk1_ctrl,
		},
		.sources = &clkset_lcd_fimc,
		.reg_div = { .reg = S5PC100_CLKDIV3, .shift = 12, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC2, .shift = 12, .size = 2, },
	}, {
		.clk	= {
			.name		= "fimc",
			.id		= 0,
			.ctrlbit	= S5PC100_CLKGATE_SCLK1_FIMC0,
			.enable		= s5pc100_sclk1_ctrl,
		},
		.sources = &clkset_lcd_fimc,
		.reg_div = { .reg = S5PC100_CLKDIV3, .shift = 16, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC2, .shift = 16, .size = 2, },
	}, {
		.clk	= {
			.name		= "fimc",
			.id		= 1,
			.ctrlbit	= S5PC100_CLKGATE_SCLK1_FIMC1,
			.enable		= s5pc100_sclk1_ctrl,
		},
		.sources	= &clkset_lcd_fimc,
		.reg_div = { .reg = S5PC100_CLKDIV3, .shift = 20, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC2, .shift = 20, .size = 2, },
	}, {
		.clk	= {
			.name		= "fimc",
			.id		= 2,
			.ctrlbit	= S5PC100_CLKGATE_SCLK1_FIMC2,
			.enable		= s5pc100_sclk1_ctrl,
		},
		.sources = &clkset_lcd_fimc,
		.reg_div = { .reg = S5PC100_CLKDIV3, .shift = 24, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC2, .shift = 24, .size = 2, },
	}, {
		.clk	= {
			.name		= "mmc_bus",
			.id		= 0,
			.ctrlbit	= S5PC100_CLKGATE_SCLK0_MMC0,
			.enable		= s5pc100_sclk0_ctrl,
		},
		.sources = &clkset_mmc,
		.reg_div = { .reg = S5PC100_CLKDIV3, .shift = 0, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC2, .shift = 0, .size = 2, },
	}, {
		.clk	= {
			.name		= "mmc_bus",
			.id		= 1,
			.ctrlbit	= S5PC100_CLKGATE_SCLK0_MMC1,
			.enable		= s5pc100_sclk0_ctrl,
		},
		.sources = &clkset_mmc,
		.reg_div = { .reg = S5PC100_CLKDIV3, .shift = 4, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC2, .shift = 4, .size = 2, },
	}, {
		.clk	= {
			.name		= "mmc_bus",
			.id		= 2,
			.ctrlbit	= S5PC100_CLKGATE_SCLK0_MMC2,
			.enable		= s5pc100_sclk0_ctrl,
		},
		.sources	= &clkset_mmc,
		.reg_div = { .reg = S5PC100_CLKDIV3, .shift = 8, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC2, .shift = 8, .size = 2, },
	}, {
		.clk	= {
			.name		= "usbhost",
			.id		= -1,
			.ctrlbit        = S5PC100_CLKGATE_SCLK0_USBHOST,
			.enable		= s5pc100_sclk0_ctrl,
		},
		.sources = &clkset_usbhost,
		.reg_div = { .reg = S5PC100_CLKDIV2, .shift = 20, .size = 4, },
		.reg_src = { .reg = S5PC100_CLKSRC1, .shift = 20, .size = 2, },
	}
748 749
};

750 751 752 753 754
/* Clock initialisation code */

static struct clksrc_clk *init_parents[] = {
	&clk_mout_apll,
	&clk_mout_mpll,
755 756 757 758
	&clk_mout_am,
	&clk_mout_onenand,
	&clk_mout_epll,
	&clk_mout_hpll,
759 760 761 762 763 764 765 766 767 768 769 770 771
};

#define GET_DIV(clk, field) ((((clk) & field##_MASK) >> field##_SHIFT) + 1)

void __init_or_cpufreq s5pc100_setup_clocks(void)
{
	struct clk *xtal_clk;
	unsigned long xtal;
	unsigned long armclk;
	unsigned long hclkd0;
	unsigned long hclk;
	unsigned long pclkd0;
	unsigned long pclk;
772
	unsigned long apll, mpll, epll, hpll;
773 774 775 776 777
	unsigned int ptr;
	u32 clkdiv0, clkdiv1;

	printk(KERN_DEBUG "%s: registering clocks\n", __func__);

778 779
	clkdiv0 = __raw_readl(S5PC100_CLKDIV0);
	clkdiv1 = __raw_readl(S5PC100_CLKDIV1);
780

781
	printk(KERN_DEBUG "%s: clkdiv0 = %08x, clkdiv1 = %08x\n", __func__, clkdiv0, clkdiv1);
782 783 784 785 786 787 788 789 790

	xtal_clk = clk_get(NULL, "xtal");
	BUG_ON(IS_ERR(xtal_clk));

	xtal = clk_get_rate(xtal_clk);
	clk_put(xtal_clk);

	printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal);

791 792 793
	apll = s5pc1xx_get_pll(xtal, __raw_readl(S5PC100_APLL_CON));
	mpll = s5pc1xx_get_pll(xtal, __raw_readl(S5PC100_MPLL_CON));
	epll = s5pc1xx_get_pll(xtal, __raw_readl(S5PC100_EPLL_CON));
794 795
	hpll = s5pc1xx_get_pll(xtal, __raw_readl(S5PC100_HPLL_CON));

796 797 798 799
	printk(KERN_INFO "S5PC100: Apll=%ld.%03ld Mhz, Mpll=%ld.%03ld Mhz"
		", Epll=%ld.%03ld Mhz, Hpll=%ld.%03ld Mhz\n",
		print_mhz(apll), print_mhz(mpll),
		print_mhz(epll), print_mhz(hpll));
800

801
	armclk = apll / GET_DIV(clkdiv0, S5PC100_CLKDIV0_APLL);
802 803 804 805 806 807
	armclk = armclk / GET_DIV(clkdiv0, S5PC100_CLKDIV0_ARM);
	hclkd0 = armclk / GET_DIV(clkdiv0, S5PC100_CLKDIV0_D0);
	pclkd0 = hclkd0 / GET_DIV(clkdiv0, S5PC100_CLKDIV0_PCLKD0);
	hclk = mpll / GET_DIV(clkdiv1, S5PC100_CLKDIV1_D1);
	pclk = hclk / GET_DIV(clkdiv1, S5PC100_CLKDIV1_PCLKD1);

808 809 810 811 812
	printk(KERN_INFO "S5PC100: ARMCLK=%ld.%03ld MHz, HCLKD0=%ld.%03ld MHz,"
		" PCLKD0=%ld.%03ld MHz\n, HCLK=%ld.%03ld MHz,"
		" PCLK=%ld.%03ld MHz\n",
		print_mhz(armclk), print_mhz(hclkd0),
		print_mhz(pclkd0), print_mhz(hclk), print_mhz(pclk));
813 814 815 816

	clk_fout_apll.rate = apll;
	clk_fout_mpll.rate = mpll;
	clk_fout_epll.rate = epll;
817
	clk_fout_hpll.rate = hpll;
818 819 820

	clk_h.rate = hclk;
	clk_p.rate = pclk;
821
	clk_f.rate = armclk;
822 823

	for (ptr = 0; ptr < ARRAY_SIZE(init_parents); ptr++)
824
		s3c_set_clksrc(init_parents[ptr], true);
825 826 827 828 829 830

	for (ptr = 0; ptr < ARRAY_SIZE(clksrc_audio); ptr++)
		s3c_set_clksrc(clksrc_audio + ptr, true);

	for (ptr = 0; ptr < ARRAY_SIZE(clksrc_clks); ptr++)
		s3c_set_clksrc(clksrc_clks + ptr, true);
831 832 833 834
}

static struct clk *clks[] __initdata = {
	&clk_ext_xtal_mux,
835 836 837 838
	&clk_dout_apll,
	&clk_dout_d0_bus,
	&clk_dout_pclkd0,
	&clk_dout_apll2,
839 840 841 842
	&clk_mout_apll.clk,
	&clk_mout_mpll.clk,
	&clk_mout_epll.clk,
	&clk_mout_hpll.clk,
843 844
	&clk_mout_am.clk,
	&clk_dout_d1_bus,
845
	&clk_mout_onenand.clk,
846 847 848
	&clk_dout_pclkd1,
	&clk_dout_mpll2,
	&clk_dout_cam,
849
	&clk_dout_mpll,
850 851 852 853 854 855 856
	&clk_fout_epll,
	&clk_iis_cd0,
	&clk_iis_cd1,
	&clk_iis_cd2,
	&clk_pcm_cd0,
	&clk_pcm_cd1,
	&clk_arm,
857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872
};

void __init s5pc100_register_clocks(void)
{
	struct clk *clkp;
	int ret;
	int ptr;

	for (ptr = 0; ptr < ARRAY_SIZE(clks); ptr++) {
		clkp = clks[ptr];
		ret = s3c24xx_register_clock(clkp);
		if (ret < 0) {
			printk(KERN_ERR "Failed to register clock %s (%d)\n",
			       clkp->name, ret);
		}
	}
873

874 875
	s3c_register_clksrc(clksrc_audio, ARRAY_SIZE(clksrc_audio));
	s3c_register_clksrc(clksrc_clks, ARRAY_SIZE(clksrc_clks));
876
}