clock.c 24.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * (C) Copyright 2008
 * Texas Instruments, <www.ti.com>
 *
 * Author :
 *      Manikandan Pillai <mani.pillai@ti.com>
 *
 * Derived from Beagle Board and OMAP3 SDP code by
 *      Richard Woodruff <r-woodruff2@ti.com>
 *      Syed Mohammed Khasim <khasim@ti.com>
 *
12
 * SPDX-License-Identifier:	GPL-2.0+
13 14 15 16
 */

#include <common.h>
#include <asm/io.h>
17
#include <asm/arch/clock.h>
18 19 20 21 22 23 24 25 26 27 28 29
#include <asm/arch/clocks_omap3.h>
#include <asm/arch/mem.h>
#include <asm/arch/sys_proto.h>
#include <environment.h>
#include <command.h>

/******************************************************************************
 * get_sys_clk_speed() - determine reference oscillator speed
 *                       based on known 32kHz clock and gptimer.
 *****************************************************************************/
u32 get_osc_clk_speed(void)
{
30
	u32 start, cstart, cend, cdiff, cdiv, val;
31 32 33 34
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	struct prm *prm_base = (struct prm *)PRM_BASE;
	struct gptimer *gpt1_base = (struct gptimer *)OMAP34XX_GPT1;
	struct s32ktimer *s32k_base = (struct s32ktimer *)SYNC_32KTIMER_BASE;
35 36 37

	val = readl(&prm_base->clksrc_ctrl);

38 39 40 41
	if (val & SYSCLKDIV_2)
		cdiv = 2;
	else
		cdiv = 1;
42 43 44 45 46 47 48 49 50 51

	/* enable timer2 */
	val = readl(&prcm_base->clksel_wkup) | CLKSEL_GPT1;

	/* select sys_clk for GPT1 */
	writel(val, &prcm_base->clksel_wkup);

	/* Enable I and F Clocks for GPT1 */
	val = readl(&prcm_base->iclken_wkup) | EN_GPT1 | EN_32KSYNC;
	writel(val, &prcm_base->iclken_wkup);
52

53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
	val = readl(&prcm_base->fclken_wkup) | EN_GPT1;
	writel(val, &prcm_base->fclken_wkup);

	writel(0, &gpt1_base->tldr);		/* start counting at 0 */
	writel(GPT_EN, &gpt1_base->tclr);	/* enable clock */

	/* enable 32kHz source, determine sys_clk via gauging */

	/* start time in 20 cycles */
	start = 20 + readl(&s32k_base->s32k_cr);

	/* dead loop till start time */
	while (readl(&s32k_base->s32k_cr) < start);

	/* get start sys_clk count */
	cstart = readl(&gpt1_base->tcrr);

	/* wait for 40 cycles */
	while (readl(&s32k_base->s32k_cr) < (start + 20)) ;
	cend = readl(&gpt1_base->tcrr);		/* get end sys_clk count */
	cdiff = cend - cstart;			/* get elapsed ticks */
74
	cdiff *= cdiv;
75

76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	/* based on number of ticks assign speed */
	if (cdiff > 19000)
		return S38_4M;
	else if (cdiff > 15200)
		return S26M;
	else if (cdiff > 13000)
		return S24M;
	else if (cdiff > 9000)
		return S19_2M;
	else if (cdiff > 7600)
		return S13M;
	else
		return S12M;
}

/******************************************************************************
 * get_sys_clkin_sel() - returns the sys_clkin_sel field value based on
 *                       input oscillator clock frequency.
 *****************************************************************************/
void get_sys_clkin_sel(u32 osc_clk, u32 *sys_clkin_sel)
{
	switch(osc_clk) {
	case S38_4M:
		*sys_clkin_sel = 4;
		break;
	case S26M:
		*sys_clkin_sel = 3;
		break;
	case S19_2M:
		*sys_clkin_sel = 2;
		break;
	case S13M:
		*sys_clkin_sel = 1;
		break;
	case S12M:
	default:
		*sys_clkin_sel = 0;
	}
}

116 117 118 119 120
/*
 * OMAP34XX/35XX specific functions
 */

static void dpll3_init_34xx(u32 sil_index, u32 clk_index)
121
{
122 123
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *) get_core_dpll_param();
124 125 126 127 128
	void (*f_lock_pll) (u32, u32, u32, u32);
	int xip_safe, p0, p1, p2, p3;

	xip_safe = is_running_in_sram();

129 130
	/* Moving to the right sysclk and ES rev base */
	ptr = ptr + (3 * clk_index) + sil_index;
131 132 133 134 135

	if (xip_safe) {
		/*
		 * CORE DPLL
		 */
136 137
		clrsetbits_le32(&prcm_base->clken_pll,
				0x00000007, PLL_FAST_RELOCK_BYPASS);
138 139 140 141 142 143 144 145
		wait_on_value(ST_CORE_CLK, 0, &prcm_base->idlest_ckgen,
				LDELAY);

		/*
		 * For OMAP3 ES1.0 Errata 1.50, default value directly doesn't
		 * work. write another value and then default value.
		 */

146
		/* CM_CLKSEL1_EMU[DIV_DPLL3] */
147 148 149 150
		clrsetbits_le32(&prcm_base->clksel1_emu,
				0x001F0000, (CORE_M3X2 + 1) << 16) ;
		clrsetbits_le32(&prcm_base->clksel1_emu,
				0x001F0000, CORE_M3X2 << 16);
151 152

		/* M2 (CORE_DPLL_CLKOUT_DIV): CM_CLKSEL1_PLL[27:31] */
153 154
		clrsetbits_le32(&prcm_base->clksel1_pll,
				0xF8000000, ptr->m2 << 27);
155 156

		/* M (CORE_DPLL_MULT): CM_CLKSEL1_PLL[16:26] */
157 158
		clrsetbits_le32(&prcm_base->clksel1_pll,
				0x07FF0000, ptr->m << 16);
159 160

		/* N (CORE_DPLL_DIV): CM_CLKSEL1_PLL[8:14] */
161 162
		clrsetbits_le32(&prcm_base->clksel1_pll,
				0x00007F00, ptr->n << 8);
163 164

		/* Source is the CM_96M_FCLK: CM_CLKSEL1_PLL[6] */
165
		clrbits_le32(&prcm_base->clksel1_pll, 0x00000040);
166 167

		/* SSI */
168 169
		clrsetbits_le32(&prcm_base->clksel_core,
				0x00000F00, CORE_SSI_DIV << 8);
170
		/* FSUSB */
171 172
		clrsetbits_le32(&prcm_base->clksel_core,
				0x00000030, CORE_FUSB_DIV << 4);
173
		/* L4 */
174 175
		clrsetbits_le32(&prcm_base->clksel_core,
				0x0000000C, CORE_L4_DIV << 2);
176
		/* L3 */
177 178
		clrsetbits_le32(&prcm_base->clksel_core,
				0x00000003, CORE_L3_DIV);
179
		/* GFX */
180 181
		clrsetbits_le32(&prcm_base->clksel_gfx,
				0x00000007, GFX_DIV);
182
		/* RESET MGR */
183 184
		clrsetbits_le32(&prcm_base->clksel_wkup,
				0x00000006, WKUP_RSM << 1);
185
		/* FREQSEL (CORE_DPLL_FREQSEL): CM_CLKEN_PLL[4:7] */
186 187
		clrsetbits_le32(&prcm_base->clken_pll,
				0x000000F0, ptr->fsel << 4);
188
		/* LOCK MODE */
189 190
		clrsetbits_le32(&prcm_base->clken_pll,
				0x00000007, PLL_LOCK);
191 192 193 194 195 196 197 198

		wait_on_value(ST_CORE_CLK, 1, &prcm_base->idlest_ckgen,
				LDELAY);
	} else if (is_running_in_flash()) {
		/*
		 * if running from flash, jump to small relocated code
		 * area in SRAM.
		 */
199
		f_lock_pll = (void *) (SRAM_CLK_CODE);
200

201
		p0 = readl(&prcm_base->clken_pll);
202
		clrsetbits_le32(&p0, 0x00000007, PLL_FAST_RELOCK_BYPASS);
203
		/* FREQSEL (CORE_DPLL_FREQSEL): CM_CLKEN_PLL[4:7] */
204
		clrsetbits_le32(&p0, 0x000000F0, ptr->fsel << 4);
205 206

		p1 = readl(&prcm_base->clksel1_pll);
207
		/* M2 (CORE_DPLL_CLKOUT_DIV): CM_CLKSEL1_PLL[27:31] */
208
		clrsetbits_le32(&p1, 0xF8000000, ptr->m2 << 27);
209
		/* M (CORE_DPLL_MULT): CM_CLKSEL1_PLL[16:26] */
210
		clrsetbits_le32(&p1, 0x07FF0000, ptr->m << 16);
211
		/* N (CORE_DPLL_DIV): CM_CLKSEL1_PLL[8:14] */
212
		clrsetbits_le32(&p1, 0x00007F00, ptr->n << 8);
213
		/* Source is the CM_96M_FCLK: CM_CLKSEL1_PLL[6] */
214
		clrbits_le32(&p1, 0x00000040);
215 216

		p2 = readl(&prcm_base->clksel_core);
217
		/* SSI */
218
		clrsetbits_le32(&p2, 0x00000F00, CORE_SSI_DIV << 8);
219
		/* FSUSB */
220
		clrsetbits_le32(&p2, 0x00000030, CORE_FUSB_DIV << 4);
221
		/* L4 */
222
		clrsetbits_le32(&p2, 0x0000000C, CORE_L4_DIV << 2);
223
		/* L3 */
224
		clrsetbits_le32(&p2, 0x00000003, CORE_L3_DIV);
225 226 227 228 229

		p3 = (u32)&prcm_base->idlest_ckgen;

		(*f_lock_pll) (p0, p1, p2, p3);
	}
230
}
231

232 233 234 235
static void dpll4_init_34xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *) get_per_dpll_param();
236 237

	/* Moving it to the right sysclk base */
238 239 240
	ptr = ptr + clk_index;

	/* EN_PERIPH_DPLL: CM_CLKEN_PLL[16:18] */
241
	clrsetbits_le32(&prcm_base->clken_pll, 0x00070000, PLL_STOP << 16);
242
	wait_on_value(ST_PERIPH_CLK, 0, &prcm_base->idlest_ckgen, LDELAY);
243 244 245 246 247 248

	/*
	 * Errata 1.50 Workaround for OMAP3 ES1.0 only
	 * If using default divisors, write default divisor + 1
	 * and then the actual divisor value
	 */
249
	/* M6 */
250 251 252 253
	clrsetbits_le32(&prcm_base->clksel1_emu,
			0x1F000000, (PER_M6X2 + 1) << 24);
	clrsetbits_le32(&prcm_base->clksel1_emu,
			0x1F000000, PER_M6X2 << 24);
254
	/* M5 */
255 256
	clrsetbits_le32(&prcm_base->clksel_cam, 0x0000001F, (PER_M5X2 + 1));
	clrsetbits_le32(&prcm_base->clksel_cam, 0x0000001F, PER_M5X2);
257
	/* M4 */
258 259
	clrsetbits_le32(&prcm_base->clksel_dss, 0x0000001F, (PER_M4X2 + 1));
	clrsetbits_le32(&prcm_base->clksel_dss, 0x0000001F, PER_M4X2);
260
	/* M3 */
261 262 263 264
	clrsetbits_le32(&prcm_base->clksel_dss,
			0x00001F00, (PER_M3X2 + 1) << 8);
	clrsetbits_le32(&prcm_base->clksel_dss,
			0x00001F00, PER_M3X2 << 8);
265
	/* M2 (DIV_96M): CM_CLKSEL3_PLL[0:4] */
266 267
	clrsetbits_le32(&prcm_base->clksel3_pll, 0x0000001F, (ptr->m2 + 1));
	clrsetbits_le32(&prcm_base->clksel3_pll, 0x0000001F, ptr->m2);
268 269
	/* Workaround end */

270
	/* M (PERIPH_DPLL_MULT): CM_CLKSEL2_PLL[8:18] */
271 272
	clrsetbits_le32(&prcm_base->clksel2_pll,
			0x0007FF00, ptr->m << 8);
273 274

	/* N (PERIPH_DPLL_DIV): CM_CLKSEL2_PLL[0:6] */
275
	clrsetbits_le32(&prcm_base->clksel2_pll, 0x0000007F, ptr->n);
276 277

	/* FREQSEL (PERIPH_DPLL_FREQSEL): CM_CLKEN_PLL[20:23] */
278
	clrsetbits_le32(&prcm_base->clken_pll, 0x00F00000, ptr->fsel << 20);
279 280

	/* LOCK MODE (EN_PERIPH_DPLL): CM_CLKEN_PLL[16:18] */
281
	clrsetbits_le32(&prcm_base->clken_pll, 0x00070000, PLL_LOCK << 16);
282
	wait_on_value(ST_PERIPH_CLK, 2, &prcm_base->idlest_ckgen, LDELAY);
283
}
284

285 286 287 288 289 290 291 292 293
static void dpll5_init_34xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *) get_per2_dpll_param();

	/* Moving it to the right sysclk base */
	ptr = ptr + clk_index;

	/* PER2 DPLL (DPLL5) */
294
	clrsetbits_le32(&prcm_base->clken2_pll, 0x00000007, PLL_STOP);
295
	wait_on_value(1, 0, &prcm_base->idlest2_ckgen, LDELAY);
296 297 298 299 300 301 302 303 304 305
	/* set M2 (usbtll_fck) */
	clrsetbits_le32(&prcm_base->clksel5_pll, 0x0000001F, ptr->m2);
	/* set m (11-bit multiplier) */
	clrsetbits_le32(&prcm_base->clksel4_pll, 0x0007FF00, ptr->m << 8);
	/* set n (7-bit divider)*/
	clrsetbits_le32(&prcm_base->clksel4_pll, 0x0000007F, ptr->n);
	/* FREQSEL */
	clrsetbits_le32(&prcm_base->clken_pll, 0x000000F0, ptr->fsel << 4);
	/* lock mode */
	clrsetbits_le32(&prcm_base->clken2_pll, 0x00000007, PLL_LOCK);
306 307 308
	wait_on_value(1, 1, &prcm_base->idlest2_ckgen, LDELAY);
}

309 310 311 312
static void mpu_init_34xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *) get_mpu_dpll_param();
313

314 315
	/* Moving to the right sysclk and ES rev base */
	ptr = ptr + (3 * clk_index) + sil_index;
316 317 318

	/* MPU DPLL (unlocked already) */

319
	/* M2 (MPU_DPLL_CLKOUT_DIV) : CM_CLKSEL2_PLL_MPU[0:4] */
320 321
	clrsetbits_le32(&prcm_base->clksel2_pll_mpu,
			0x0000001F, ptr->m2);
322 323

	/* M (MPU_DPLL_MULT) : CM_CLKSEL2_PLL_MPU[8:18] */
324 325
	clrsetbits_le32(&prcm_base->clksel1_pll_mpu,
			0x0007FF00, ptr->m << 8);
326 327

	/* N (MPU_DPLL_DIV) : CM_CLKSEL2_PLL_MPU[0:6] */
328 329
	clrsetbits_le32(&prcm_base->clksel1_pll_mpu,
			0x0000007F, ptr->n);
330 331

	/* FREQSEL (MPU_DPLL_FREQSEL) : CM_CLKEN_PLL_MPU[4:7] */
332 333
	clrsetbits_le32(&prcm_base->clken_pll_mpu,
			0x000000F0, ptr->fsel << 4);
334 335 336 337 338 339 340 341 342 343 344 345
}

static void iva_init_34xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *) get_iva_dpll_param();

	/* Moving to the right sysclk and ES rev base */
	ptr = ptr + (3 * clk_index) + sil_index;

	/* IVA DPLL */
	/* EN_IVA2_DPLL : CM_CLKEN_PLL_IVA2[0:2] */
346 347
	clrsetbits_le32(&prcm_base->clken_pll_iva2,
			0x00000007, PLL_STOP);
348 349 350
	wait_on_value(ST_IVA2_CLK, 0, &prcm_base->idlest_pll_iva2, LDELAY);

	/* M2 (IVA2_DPLL_CLKOUT_DIV) : CM_CLKSEL2_PLL_IVA2[0:4] */
351 352
	clrsetbits_le32(&prcm_base->clksel2_pll_iva2,
			0x0000001F, ptr->m2);
353 354

	/* M (IVA2_DPLL_MULT) : CM_CLKSEL1_PLL_IVA2[8:18] */
355 356
	clrsetbits_le32(&prcm_base->clksel1_pll_iva2,
			0x0007FF00, ptr->m << 8);
357 358

	/* N (IVA2_DPLL_DIV) : CM_CLKSEL1_PLL_IVA2[0:6] */
359 360
	clrsetbits_le32(&prcm_base->clksel1_pll_iva2,
			0x0000007F, ptr->n);
361 362

	/* FREQSEL (IVA2_DPLL_FREQSEL) : CM_CLKEN_PLL_IVA2[4:7] */
363 364
	clrsetbits_le32(&prcm_base->clken_pll_iva2,
			0x000000F0, ptr->fsel << 4);
365 366

	/* LOCK MODE (EN_IVA2_DPLL) : CM_CLKEN_PLL_IVA2[0:2] */
367 368
	clrsetbits_le32(&prcm_base->clken_pll_iva2,
			0x00000007, PLL_LOCK);
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392

	wait_on_value(ST_IVA2_CLK, 1, &prcm_base->idlest_pll_iva2, LDELAY);
}

/*
 * OMAP3630 specific functions
 */

static void dpll3_init_36xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *) get_36x_core_dpll_param();
	void (*f_lock_pll) (u32, u32, u32, u32);
	int xip_safe, p0, p1, p2, p3;

	xip_safe = is_running_in_sram();

	/* Moving it to the right sysclk base */
	ptr += clk_index;

	if (xip_safe) {
		/* CORE DPLL */

		/* Select relock bypass: CM_CLKEN_PLL[0:2] */
393 394
		clrsetbits_le32(&prcm_base->clken_pll,
				0x00000007, PLL_FAST_RELOCK_BYPASS);
395 396 397 398
		wait_on_value(ST_CORE_CLK, 0, &prcm_base->idlest_ckgen,
				LDELAY);

		/* CM_CLKSEL1_EMU[DIV_DPLL3] */
399 400
		clrsetbits_le32(&prcm_base->clksel1_emu,
				0x001F0000, CORE_M3X2 << 16);
401 402

		/* M2 (CORE_DPLL_CLKOUT_DIV): CM_CLKSEL1_PLL[27:31] */
403 404
		clrsetbits_le32(&prcm_base->clksel1_pll,
				0xF8000000, ptr->m2 << 27);
405 406

		/* M (CORE_DPLL_MULT): CM_CLKSEL1_PLL[16:26] */
407 408
		clrsetbits_le32(&prcm_base->clksel1_pll,
				0x07FF0000, ptr->m << 16);
409 410

		/* N (CORE_DPLL_DIV): CM_CLKSEL1_PLL[8:14] */
411 412
		clrsetbits_le32(&prcm_base->clksel1_pll,
				0x00007F00, ptr->n << 8);
413 414

		/* Source is the CM_96M_FCLK: CM_CLKSEL1_PLL[6] */
415
		clrbits_le32(&prcm_base->clksel1_pll, 0x00000040);
416 417

		/* SSI */
418 419
		clrsetbits_le32(&prcm_base->clksel_core,
				0x00000F00, CORE_SSI_DIV << 8);
420
		/* FSUSB */
421 422
		clrsetbits_le32(&prcm_base->clksel_core,
				0x00000030, CORE_FUSB_DIV << 4);
423
		/* L4 */
424 425
		clrsetbits_le32(&prcm_base->clksel_core,
				0x0000000C, CORE_L4_DIV << 2);
426
		/* L3 */
427 428
		clrsetbits_le32(&prcm_base->clksel_core,
				0x00000003, CORE_L3_DIV);
429
		/* GFX */
430 431
		clrsetbits_le32(&prcm_base->clksel_gfx,
				0x00000007, GFX_DIV_36X);
432
		/* RESET MGR */
433 434
		clrsetbits_le32(&prcm_base->clksel_wkup,
				0x00000006, WKUP_RSM << 1);
435
		/* FREQSEL (CORE_DPLL_FREQSEL): CM_CLKEN_PLL[4:7] */
436 437
		clrsetbits_le32(&prcm_base->clken_pll,
				0x000000F0, ptr->fsel << 4);
438
		/* LOCK MODE */
439 440
		clrsetbits_le32(&prcm_base->clken_pll,
				0x00000007, PLL_LOCK);
441 442 443 444 445 446 447 448

		wait_on_value(ST_CORE_CLK, 1, &prcm_base->idlest_ckgen,
				LDELAY);
	} else if (is_running_in_flash()) {
		/*
		 * if running from flash, jump to small relocated code
		 * area in SRAM.
		 */
449
		f_lock_pll = (void *) (SRAM_CLK_CODE);
450 451

		p0 = readl(&prcm_base->clken_pll);
452
		clrsetbits_le32(&p0, 0x00000007, PLL_FAST_RELOCK_BYPASS);
453
		/* FREQSEL (CORE_DPLL_FREQSEL): CM_CLKEN_PLL[4:7] */
454
		clrsetbits_le32(&p0, 0x000000F0, ptr->fsel << 4);
455 456 457

		p1 = readl(&prcm_base->clksel1_pll);
		/* M2 (CORE_DPLL_CLKOUT_DIV): CM_CLKSEL1_PLL[27:31] */
458
		clrsetbits_le32(&p1, 0xF8000000, ptr->m2 << 27);
459
		/* M (CORE_DPLL_MULT): CM_CLKSEL1_PLL[16:26] */
460
		clrsetbits_le32(&p1, 0x07FF0000, ptr->m << 16);
461
		/* N (CORE_DPLL_DIV): CM_CLKSEL1_PLL[8:14] */
462
		clrsetbits_le32(&p1, 0x00007F00, ptr->n << 8);
463
		/* Source is the CM_96M_FCLK: CM_CLKSEL1_PLL[6] */
464
		clrbits_le32(&p1, 0x00000040);
465 466 467

		p2 = readl(&prcm_base->clksel_core);
		/* SSI */
468
		clrsetbits_le32(&p2, 0x00000F00, CORE_SSI_DIV << 8);
469
		/* FSUSB */
470
		clrsetbits_le32(&p2, 0x00000030, CORE_FUSB_DIV << 4);
471
		/* L4 */
472
		clrsetbits_le32(&p2, 0x0000000C, CORE_L4_DIV << 2);
473
		/* L3 */
474
		clrsetbits_le32(&p2, 0x00000003, CORE_L3_DIV);
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492

		p3 = (u32)&prcm_base->idlest_ckgen;

		(*f_lock_pll) (p0, p1, p2, p3);
	}
}

static void dpll4_init_36xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	struct dpll_per_36x_param *ptr;

	ptr = (struct dpll_per_36x_param *)get_36x_per_dpll_param();

	/* Moving it to the right sysclk base */
	ptr += clk_index;

	/* EN_PERIPH_DPLL: CM_CLKEN_PLL[16:18] */
493
	clrsetbits_le32(&prcm_base->clken_pll, 0x00070000, PLL_STOP << 16);
494 495 496
	wait_on_value(ST_PERIPH_CLK, 0, &prcm_base->idlest_ckgen, LDELAY);

	/* M6 (DIV_DPLL4): CM_CLKSEL1_EMU[24:29] */
497
	clrsetbits_le32(&prcm_base->clksel1_emu, 0x3F000000, ptr->m6 << 24);
498 499

	/* M5 (CLKSEL_CAM): CM_CLKSEL1_EMU[0:5] */
500
	clrsetbits_le32(&prcm_base->clksel_cam, 0x0000003F, ptr->m5);
501 502

	/* M4 (CLKSEL_DSS1): CM_CLKSEL_DSS[0:5] */
503
	clrsetbits_le32(&prcm_base->clksel_dss, 0x0000003F, ptr->m4);
504 505

	/* M3 (CLKSEL_DSS1): CM_CLKSEL_DSS[8:13] */
506
	clrsetbits_le32(&prcm_base->clksel_dss, 0x00003F00, ptr->m3 << 8);
507 508

	/* M2 (DIV_96M): CM_CLKSEL3_PLL[0:4] */
509
	clrsetbits_le32(&prcm_base->clksel3_pll, 0x0000001F, ptr->m2);
510 511

	/* M (PERIPH_DPLL_MULT): CM_CLKSEL2_PLL[8:19] */
512
	clrsetbits_le32(&prcm_base->clksel2_pll, 0x000FFF00, ptr->m << 8);
513 514

	/* N (PERIPH_DPLL_DIV): CM_CLKSEL2_PLL[0:6] */
515
	clrsetbits_le32(&prcm_base->clksel2_pll, 0x0000007F, ptr->n);
516 517

	/* M2DIV (CLKSEL_96M): CM_CLKSEL_CORE[12:13] */
518
	clrsetbits_le32(&prcm_base->clksel_core, 0x00003000, ptr->m2div << 12);
519 520

	/* LOCK MODE (EN_PERIPH_DPLL): CM_CLKEN_PLL[16:18] */
521
	clrsetbits_le32(&prcm_base->clken_pll, 0x00070000, PLL_LOCK << 16);
522 523 524
	wait_on_value(ST_PERIPH_CLK, 2, &prcm_base->idlest_ckgen, LDELAY);
}

525 526 527 528 529 530 531 532 533
static void dpll5_init_36xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *) get_36x_per2_dpll_param();

	/* Moving it to the right sysclk base */
	ptr = ptr + clk_index;

	/* PER2 DPLL (DPLL5) */
534
	clrsetbits_le32(&prcm_base->clken2_pll, 0x00000007, PLL_STOP);
535
	wait_on_value(1, 0, &prcm_base->idlest2_ckgen, LDELAY);
536 537 538 539 540 541 542 543
	/* set M2 (usbtll_fck) */
	clrsetbits_le32(&prcm_base->clksel5_pll, 0x0000001F, ptr->m2);
	/* set m (11-bit multiplier) */
	clrsetbits_le32(&prcm_base->clksel4_pll, 0x0007FF00, ptr->m << 8);
	/* set n (7-bit divider)*/
	clrsetbits_le32(&prcm_base->clksel4_pll, 0x0000007F, ptr->n);
	/* lock mode */
	clrsetbits_le32(&prcm_base->clken2_pll, 0x00000007, PLL_LOCK);
544 545 546
	wait_on_value(1, 1, &prcm_base->idlest2_ckgen, LDELAY);
}

547 548 549 550 551 552 553 554 555 556 557
static void mpu_init_36xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *) get_36x_mpu_dpll_param();

	/* Moving to the right sysclk */
	ptr += clk_index;

	/* MPU DPLL (unlocked already */

	/* M2 (MPU_DPLL_CLKOUT_DIV) : CM_CLKSEL2_PLL_MPU[0:4] */
558
	clrsetbits_le32(&prcm_base->clksel2_pll_mpu, 0x0000001F, ptr->m2);
559 560

	/* M (MPU_DPLL_MULT) : CM_CLKSEL2_PLL_MPU[8:18] */
561
	clrsetbits_le32(&prcm_base->clksel1_pll_mpu, 0x0007FF00, ptr->m << 8);
562 563

	/* N (MPU_DPLL_DIV) : CM_CLKSEL2_PLL_MPU[0:6] */
564
	clrsetbits_le32(&prcm_base->clksel1_pll_mpu, 0x0000007F, ptr->n);
565 566 567 568 569 570 571 572 573 574 575 576
}

static void iva_init_36xx(u32 sil_index, u32 clk_index)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
	dpll_param *ptr = (dpll_param *)get_36x_iva_dpll_param();

	/* Moving to the right sysclk */
	ptr += clk_index;

	/* IVA DPLL */
	/* EN_IVA2_DPLL : CM_CLKEN_PLL_IVA2[0:2] */
577
	clrsetbits_le32(&prcm_base->clken_pll_iva2, 0x00000007, PLL_STOP);
578
	wait_on_value(ST_IVA2_CLK, 0, &prcm_base->idlest_pll_iva2, LDELAY);
579 580

	/* M2 (IVA2_DPLL_CLKOUT_DIV) : CM_CLKSEL2_PLL_IVA2[0:4] */
581
	clrsetbits_le32(&prcm_base->clksel2_pll_iva2, 0x0000001F, ptr->m2);
582 583

	/* M (IVA2_DPLL_MULT) : CM_CLKSEL1_PLL_IVA2[8:18] */
584
	clrsetbits_le32(&prcm_base->clksel1_pll_iva2, 0x0007FF00, ptr->m << 8);
585 586

	/* N (IVA2_DPLL_DIV) : CM_CLKSEL1_PLL_IVA2[0:6] */
587
	clrsetbits_le32(&prcm_base->clksel1_pll_iva2, 0x0000007F, ptr->n);
588 589

	/* LOCK (MODE (EN_IVA2_DPLL) : CM_CLKEN_PLL_IVA2[0:2] */
590
	clrsetbits_le32(&prcm_base->clken_pll_iva2, 0x00000007, PLL_LOCK);
591

592
	wait_on_value(ST_IVA2_CLK, 1, &prcm_base->idlest_pll_iva2, LDELAY);
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
}

/******************************************************************************
 * prcm_init() - inits clocks for PRCM as defined in clocks.h
 *               called from SRAM, or Flash (using temp SRAM stack).
 *****************************************************************************/
void prcm_init(void)
{
	u32 osc_clk = 0, sys_clkin_sel;
	u32 clk_index, sil_index = 0;
	struct prm *prm_base = (struct prm *)PRM_BASE;
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;

	/*
	 * Gauge the input clock speed and find out the sys_clkin_sel
	 * value corresponding to the input clock.
	 */
	osc_clk = get_osc_clk_speed();
	get_sys_clkin_sel(osc_clk, &sys_clkin_sel);

	/* set input crystal speed */
614
	clrsetbits_le32(&prm_base->clksel, 0x00000007, sys_clkin_sel);
615 616 617 618

	/* If the input clock is greater than 19.2M always divide/2 */
	if (sys_clkin_sel > 2) {
		/* input clock divider */
619
		clrsetbits_le32(&prm_base->clksrc_ctrl, 0x000000C0, 2 << 6);
620 621 622
		clk_index = sys_clkin_sel / 2;
	} else {
		/* input clock divider */
623
		clrsetbits_le32(&prm_base->clksrc_ctrl, 0x000000C0, 1 << 6);
624 625 626 627
		clk_index = sys_clkin_sel;
	}

	if (get_cpu_family() == CPU_OMAP36XX) {
628 629 630 631 632 633 634 635 636 637 638 639
		/*
		 * In warm reset conditions on OMAP36xx/AM/DM37xx
		 * the rom code incorrectly sets the DPLL4 clock
		 * input divider to /6.5. Section 3.5.3.3.3.2.1 of
		 * the AM/DM37x TRM explains that the /6.5 divider
		 * is used only when the input clock is 13MHz.
		 *
		 * If the part is in this cpu family *and* the input
		 * clock *is not* 13 MHz, then reset the DPLL4 clock
		 * input divider to /1 as it should never set to /6.5
		 * in this case.
		 */
640
		if (sys_clkin_sel != 1) {	/* 13 MHz */
641
			/* Bit 8: DPLL4_CLKINP_DIV */
642 643
			clrbits_le32(&prm_base->clksrc_ctrl, 0x00000100);
		}
644

645
		/* Unlock MPU DPLL (slows things down, and needed later) */
646 647
		clrsetbits_le32(&prcm_base->clken_pll_mpu,
				0x00000007, PLL_LOW_POWER_BYPASS);
648 649 650 651 652
		wait_on_value(ST_MPU_CLK, 0, &prcm_base->idlest_pll_mpu,
				LDELAY);

		dpll3_init_36xx(0, clk_index);
		dpll4_init_36xx(0, clk_index);
653
		dpll5_init_36xx(0, clk_index);
654 655 656 657
		iva_init_36xx(0, clk_index);
		mpu_init_36xx(0, clk_index);

		/* Lock MPU DPLL to set frequency */
658 659
		clrsetbits_le32(&prcm_base->clken_pll_mpu,
				0x00000007, PLL_LOCK);
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
		wait_on_value(ST_MPU_CLK, 1, &prcm_base->idlest_pll_mpu,
				LDELAY);
	} else {
		/*
		 * The DPLL tables are defined according to sysclk value and
		 * silicon revision. The clk_index value will be used to get
		 * the values for that input sysclk from the DPLL param table
		 * and sil_index will get the values for that SysClk for the
		 * appropriate silicon rev.
		 */
		if (((get_cpu_family() == CPU_OMAP34XX)
				&& (get_cpu_rev() >= CPU_3XX_ES20)) ||
			(get_cpu_family() == CPU_AM35XX))
			sil_index = 1;

		/* Unlock MPU DPLL (slows things down, and needed later) */
676 677
		clrsetbits_le32(&prcm_base->clken_pll_mpu,
				0x00000007, PLL_LOW_POWER_BYPASS);
678 679 680 681 682
		wait_on_value(ST_MPU_CLK, 0, &prcm_base->idlest_pll_mpu,
				LDELAY);

		dpll3_init_34xx(sil_index, clk_index);
		dpll4_init_34xx(sil_index, clk_index);
683
		dpll5_init_34xx(sil_index, clk_index);
684 685 686
		if (get_cpu_family() != CPU_AM35XX)
			iva_init_34xx(sil_index, clk_index);

687 688 689
		mpu_init_34xx(sil_index, clk_index);

		/* Lock MPU DPLL to set frequency */
690 691
		clrsetbits_le32(&prcm_base->clken_pll_mpu,
				0x00000007, PLL_LOCK);
692 693 694
		wait_on_value(ST_MPU_CLK, 1, &prcm_base->idlest_pll_mpu,
				LDELAY);
	}
695 696

	/* Set up GPTimers to sys_clk source only */
697 698
	setbits_le32(&prcm_base->clksel_per, 0x000000FF);
	setbits_le32(&prcm_base->clksel_wkup, 1);
699 700 701 702

	sdelay(5000);
}

703 704 705 706 707 708 709 710
/*
 * Enable usb ehci uhh, tll clocks
 */
void ehci_clocks_enable(void)
{
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;

	/* Enable USBHOST_L3_ICLK (USBHOST_MICLK) */
711
	setbits_le32(&prcm_base->iclken_usbhost, 1);
712 713 714 715
	/*
	 * Enable USBHOST_48M_FCLK (USBHOST_FCLK1)
	 * and USBHOST_120M_FCLK (USBHOST_FCLK2)
	 */
716
	setbits_le32(&prcm_base->fclken_usbhost, 0x00000003);
717
	/* Enable USBTTL_ICLK */
718
	setbits_le32(&prcm_base->iclken3_core, 0x00000004);
719
	/* Enable USBTTL_FCLK */
720
	setbits_le32(&prcm_base->fclken3_core, 0x00000004);
721 722
}

723 724 725 726 727
/******************************************************************************
 * peripheral_enable() - Enable the clks & power for perifs (GPT2, UART1,...)
 *****************************************************************************/
void per_clocks_enable(void)
{
728
	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
729 730

	/* Enable GP2 timer. */
731 732 733
	setbits_le32(&prcm_base->clksel_per, 0x01);	/* GPT2 = sys clk */
	setbits_le32(&prcm_base->iclken_per, 0x08);	/* ICKen GPT2 */
	setbits_le32(&prcm_base->fclken_per, 0x08);	/* FCKen GPT2 */
734

735 736 737 738 739
	/* Enable GP9 timer. */
	setbits_le32(&prcm_base->clksel_per, 0x80);	/* GPT9 = 32kHz clk */
	setbits_le32(&prcm_base->iclken_per, 0x400);	/* ICKen GPT9 */
	setbits_le32(&prcm_base->fclken_per, 0x400);	/* FCKen GPT9 */

740 741
#ifdef CONFIG_SYS_NS16550
	/* Enable UART1 clocks */
742 743
	setbits_le32(&prcm_base->fclken1_core, 0x00002000);
	setbits_le32(&prcm_base->iclken1_core, 0x00002000);
744

745 746 747 748
	/* Enable UART2 clocks */
	setbits_le32(&prcm_base->fclken1_core, 0x00004000);
	setbits_le32(&prcm_base->iclken1_core, 0x00004000);

749
	/* UART 3 Clocks */
750 751
	setbits_le32(&prcm_base->fclken_per, 0x00000800);
	setbits_le32(&prcm_base->iclken_per, 0x00000800);
752
#endif
T
Tom Rix 已提交
753 754

#ifdef CONFIG_OMAP3_GPIO_2
755 756
	setbits_le32(&prcm_base->fclken_per, 0x00002000);
	setbits_le32(&prcm_base->iclken_per, 0x00002000);
T
Tom Rix 已提交
757 758
#endif
#ifdef CONFIG_OMAP3_GPIO_3
759 760
	setbits_le32(&prcm_base->fclken_per, 0x00004000);
	setbits_le32(&prcm_base->iclken_per, 0x00004000);
T
Tom Rix 已提交
761 762
#endif
#ifdef CONFIG_OMAP3_GPIO_4
763 764
	setbits_le32(&prcm_base->fclken_per, 0x00008000);
	setbits_le32(&prcm_base->iclken_per, 0x00008000);
T
Tom Rix 已提交
765 766
#endif
#ifdef CONFIG_OMAP3_GPIO_5
767 768
	setbits_le32(&prcm_base->fclken_per, 0x00010000);
	setbits_le32(&prcm_base->iclken_per, 0x00010000);
T
Tom Rix 已提交
769 770
#endif
#ifdef CONFIG_OMAP3_GPIO_6
771 772
	setbits_le32(&prcm_base->fclken_per, 0x00020000);
	setbits_le32(&prcm_base->iclken_per, 0x00020000);
T
Tom Rix 已提交
773 774
#endif

775
#ifdef CONFIG_SYS_I2C_OMAP24XX
776
	/* Turn on all 3 I2C clocks */
777 778
	setbits_le32(&prcm_base->fclken1_core, 0x00038000);
	setbits_le32(&prcm_base->iclken1_core, 0x00038000); /* I2C1,2,3 = on */
779 780
#endif
	/* Enable the ICLK for 32K Sync Timer as its used in udelay */
781
	setbits_le32(&prcm_base->iclken_wkup, 0x00000004);
782

783
	if (get_cpu_family() != CPU_AM35XX)
784 785 786 787 788 789 790 791 792
		out_le32(&prcm_base->fclken_iva2, FCK_IVA2_ON);

	out_le32(&prcm_base->fclken1_core, FCK_CORE1_ON);
	out_le32(&prcm_base->iclken1_core, ICK_CORE1_ON);
	out_le32(&prcm_base->iclken2_core, ICK_CORE2_ON);
	out_le32(&prcm_base->fclken_wkup, FCK_WKUP_ON);
	out_le32(&prcm_base->iclken_wkup, ICK_WKUP_ON);
	out_le32(&prcm_base->fclken_dss, FCK_DSS_ON);
	out_le32(&prcm_base->iclken_dss, ICK_DSS_ON);
793
	if (get_cpu_family() != CPU_AM35XX) {
794 795
		out_le32(&prcm_base->fclken_cam, FCK_CAM_ON);
		out_le32(&prcm_base->iclken_cam, ICK_CAM_ON);
796
	}
797 798 799

	sdelay(1000);
}