clock2420_data.c 56.2 KB
Newer Older
1
/*
2
 *  linux/arch/arm/mach-omap2/clock2420_data.c
3
 *
4
 *  Copyright (C) 2005-2009 Texas Instruments, Inc.
5
 *  Copyright (C) 2004-2010 Nokia Corporation
6
 *
7 8 9
 *  Contacts:
 *  Richard Woodruff <r-woodruff2@ti.com>
 *  Paul Walmsley
10 11 12 13 14 15
 *
 * 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.
 */

16 17
#include <linux/kernel.h>
#include <linux/clk.h>
18
#include <linux/list.h>
19

20
#include <plat/clkdev_omap.h>
21

22 23 24
#include "clock.h"
#include "clock2xxx.h"
#include "opp2xxx.h"
25 26 27 28 29 30
#include "prm.h"
#include "cm.h"
#include "prm-regbits-24xx.h"
#include "cm-regbits-24xx.h"
#include "sdrc.h"

31 32 33 34
#define OMAP_CM_REGADDR                 OMAP2420_CM_REGADDR

/*
 * 2420 clock tree.
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
 *
 * NOTE:In many cases here we are assigning a 'default' parent.	In many
 *	cases the parent is selectable.	The get/set parent calls will also
 *	switch sources.
 *
 *	Many some clocks say always_enabled, but they can be auto idled for
 *	power savings. They will always be available upon clock request.
 *
 *	Several sources are given initial rates which may be wrong, this will
 *	be fixed up in the init func.
 *
 *	Things are broadly separated below by clock domains. It is
 *	noteworthy that most periferals have dependencies on multiple clock
 *	domains. Many get their interface clocks from the L4 domain, but get
 *	functional clocks from fixed sources or other core domain derived
 *	clocks.
51
 */
52 53 54 55

/* Base external input clocks */
static struct clk func_32k_ck = {
	.name		= "func_32k_ck",
56
	.ops		= &clkops_null,
57
	.rate		= 32000,
58
	.clkdm_name	= "wkup_clkdm",
59
};
60

61 62 63 64 65 66 67
static struct clk secure_32k_ck = {
	.name		= "secure_32k_ck",
	.ops		= &clkops_null,
	.rate		= 32768,
	.clkdm_name	= "wkup_clkdm",
};

68 69 70
/* Typical 12/13MHz in standalone mode, will be 26Mhz in chassis mode */
static struct clk osc_ck = {		/* (*12, *13, 19.2, *26, 38.4)MHz */
	.name		= "osc_ck",
71
	.ops		= &clkops_oscck,
72
	.clkdm_name	= "wkup_clkdm",
73
	.recalc		= &omap2_osc_clk_recalc,
74 75
};

76
/* Without modem likely 12MHz, with modem likely 13MHz */
77 78
static struct clk sys_ck = {		/* (*12, *13, 19.2, 26, 38.4)MHz */
	.name		= "sys_ck",		/* ~ ref_clk also */
79
	.ops		= &clkops_null,
80
	.parent		= &osc_ck,
81
	.clkdm_name	= "wkup_clkdm",
82
	.recalc		= &omap2xxx_sys_clk_recalc,
83
};
84

85 86
static struct clk alt_ck = {		/* Typical 54M or 48M, may not exist */
	.name		= "alt_ck",
87
	.ops		= &clkops_null,
88
	.rate		= 54000000,
89
	.clkdm_name	= "wkup_clkdm",
90
};
91

92 93 94 95 96
/*
 * Analog domain root source clocks
 */

/* dpll_ck, is broken out in to special cases through clksel */
97 98 99 100
/* REVISIT: Rate changes on dpll_ck trigger a full set change.	...
 * deal with this
 */

101
static struct dpll_data dpll_dd = {
102 103 104
	.mult_div1_reg		= OMAP_CM_REGADDR(PLL_MOD, CM_CLKSEL1),
	.mult_mask		= OMAP24XX_DPLL_MULT_MASK,
	.div1_mask		= OMAP24XX_DPLL_DIV_MASK,
105 106 107 108
	.clk_bypass		= &sys_ck,
	.clk_ref		= &sys_ck,
	.control_reg		= OMAP_CM_REGADDR(PLL_MOD, CM_CLKEN),
	.enable_mask		= OMAP24XX_EN_DPLL_MASK,
109
	.max_multiplier		= 1023,
110
	.min_divider		= 1,
111 112
	.max_divider		= 16,
	.rate_tolerance		= DEFAULT_DPLL_RATE_TOLERANCE
113 114
};

115 116 117 118
/*
 * XXX Cannot add round_rate here yet, as this is still a composite clock,
 * not just a DPLL
 */
119 120
static struct clk dpll_ck = {
	.name		= "dpll_ck",
121
	.ops		= &clkops_null,
122
	.parent		= &sys_ck,		/* Can be func_32k also */
123
	.dpll_data	= &dpll_dd,
124
	.clkdm_name	= "wkup_clkdm",
125 126
	.recalc		= &omap2_dpllcore_recalc,
	.set_rate	= &omap2_reprogram_dpllcore,
127 128 129 130
};

static struct clk apll96_ck = {
	.name		= "apll96_ck",
131
	.ops		= &clkops_apll96,
132 133
	.parent		= &sys_ck,
	.rate		= 96000000,
134
	.flags		= ENABLE_ON_INIT,
135
	.clkdm_name	= "wkup_clkdm",
136 137
	.enable_reg	= OMAP_CM_REGADDR(PLL_MOD, CM_CLKEN),
	.enable_bit	= OMAP24XX_EN_96M_PLL_SHIFT,
138 139 140 141
};

static struct clk apll54_ck = {
	.name		= "apll54_ck",
142
	.ops		= &clkops_apll54,
143 144
	.parent		= &sys_ck,
	.rate		= 54000000,
145
	.flags		= ENABLE_ON_INIT,
146
	.clkdm_name	= "wkup_clkdm",
147 148
	.enable_reg	= OMAP_CM_REGADDR(PLL_MOD, CM_CLKEN),
	.enable_bit	= OMAP24XX_EN_54M_PLL_SHIFT,
149 150 151 152 153
};

/*
 * PRCM digital base sources
 */
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172

/* func_54m_ck */

static const struct clksel_rate func_54m_apll54_rates[] = {
	{ .div = 1, .val = 0, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 },
};

static const struct clksel_rate func_54m_alt_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 },
};

static const struct clksel func_54m_clksel[] = {
	{ .parent = &apll54_ck, .rates = func_54m_apll54_rates, },
	{ .parent = &alt_ck,	.rates = func_54m_alt_rates, },
	{ .parent = NULL },
};

173 174
static struct clk func_54m_ck = {
	.name		= "func_54m_ck",
175
	.ops		= &clkops_null,
176
	.parent		= &apll54_ck,	/* can also be alt_clk */
177
	.clkdm_name	= "wkup_clkdm",
178 179 180 181 182
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(PLL_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_54M_SOURCE,
	.clksel		= func_54m_clksel,
	.recalc		= &omap2_clksel_recalc,
183
};
184

185 186
static struct clk core_ck = {
	.name		= "core_ck",
187
	.ops		= &clkops_null,
188
	.parent		= &dpll_ck,		/* can also be 32k */
189
	.clkdm_name	= "wkup_clkdm",
190
	.recalc		= &followparent_recalc,
191
};
192

193 194
static struct clk func_96m_ck = {
	.name		= "func_96m_ck",
195
	.ops		= &clkops_null,
196
	.parent		= &apll96_ck,
197
	.clkdm_name	= "wkup_clkdm",
198
	.recalc		= &followparent_recalc,
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
};

/* func_48m_ck */

static const struct clksel_rate func_48m_apll96_rates[] = {
	{ .div = 2, .val = 0, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 },
};

static const struct clksel_rate func_48m_alt_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 },
};

static const struct clksel func_48m_clksel[] = {
	{ .parent = &apll96_ck,	.rates = func_48m_apll96_rates },
	{ .parent = &alt_ck, .rates = func_48m_alt_rates },
	{ .parent = NULL }
217 218 219 220
};

static struct clk func_48m_ck = {
	.name		= "func_48m_ck",
221
	.ops		= &clkops_null,
222
	.parent		= &apll96_ck,	 /* 96M or Alt */
223
	.clkdm_name	= "wkup_clkdm",
224 225 226 227 228 229 230
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(PLL_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_48M_SOURCE,
	.clksel		= func_48m_clksel,
	.recalc		= &omap2_clksel_recalc,
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
231 232 233 234
};

static struct clk func_12m_ck = {
	.name		= "func_12m_ck",
235
	.ops		= &clkops_null,
236
	.parent		= &func_48m_ck,
237
	.fixed_div	= 4,
238
	.clkdm_name	= "wkup_clkdm",
239
	.recalc		= &omap_fixed_divisor_recalc,
240 241 242 243 244
};

/* Secure timer, only available in secure mode */
static struct clk wdt1_osc_ck = {
	.name		= "ck_wdt1_osc",
245
	.ops		= &clkops_null, /* RMK: missing? */
246
	.parent		= &osc_ck,
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
	.recalc		= &followparent_recalc,
};

/*
 * The common_clkout* clksel_rate structs are common to
 * sys_clkout, sys_clkout_src, sys_clkout2, and sys_clkout2_src.
 * sys_clkout2_* are 2420-only, so the
 * clksel_rate flags fields are inaccurate for those clocks. This is
 * harmless since access to those clocks are gated by the struct clk
 * flags fields, which mark them as 2420-only.
 */
static const struct clksel_rate common_clkout_src_core_rates[] = {
	{ .div = 1, .val = 0, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel_rate common_clkout_src_sys_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel_rate common_clkout_src_96m_rates[] = {
	{ .div = 1, .val = 2, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel_rate common_clkout_src_54m_rates[] = {
	{ .div = 1, .val = 3, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel common_clkout_src_clksel[] = {
	{ .parent = &core_ck,	  .rates = common_clkout_src_core_rates },
	{ .parent = &sys_ck,	  .rates = common_clkout_src_sys_rates },
	{ .parent = &func_96m_ck, .rates = common_clkout_src_96m_rates },
	{ .parent = &func_54m_ck, .rates = common_clkout_src_54m_rates },
	{ .parent = NULL }
};

static struct clk sys_clkout_src = {
	.name		= "sys_clkout_src",
288
	.ops		= &clkops_omap2_dflt,
289
	.parent		= &func_54m_ck,
290
	.clkdm_name	= "wkup_clkdm",
291
	.enable_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
292 293
	.enable_bit	= OMAP24XX_CLKOUT_EN_SHIFT,
	.init		= &omap2_init_clksel_parent,
294
	.clksel_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
	.clksel_mask	= OMAP24XX_CLKOUT_SOURCE_MASK,
	.clksel		= common_clkout_src_clksel,
	.recalc		= &omap2_clksel_recalc,
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
};

static const struct clksel_rate common_clkout_rates[] = {
	{ .div = 1, .val = 0, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 2, .val = 1, .flags = RATE_IN_24XX },
	{ .div = 4, .val = 2, .flags = RATE_IN_24XX },
	{ .div = 8, .val = 3, .flags = RATE_IN_24XX },
	{ .div = 16, .val = 4, .flags = RATE_IN_24XX },
	{ .div = 0 },
};

static const struct clksel sys_clkout_clksel[] = {
	{ .parent = &sys_clkout_src, .rates = common_clkout_rates },
	{ .parent = NULL }
314 315 316 317
};

static struct clk sys_clkout = {
	.name		= "sys_clkout",
318
	.ops		= &clkops_null,
319
	.parent		= &sys_clkout_src,
320
	.clkdm_name	= "wkup_clkdm",
321
	.clksel_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
322 323 324 325 326 327 328 329 330 331
	.clksel_mask	= OMAP24XX_CLKOUT_DIV_MASK,
	.clksel		= sys_clkout_clksel,
	.recalc		= &omap2_clksel_recalc,
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
};

/* In 2430, new in 2420 ES2 */
static struct clk sys_clkout2_src = {
	.name		= "sys_clkout2_src",
332
	.ops		= &clkops_omap2_dflt,
333
	.parent		= &func_54m_ck,
334
	.clkdm_name	= "wkup_clkdm",
335
	.enable_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
336 337
	.enable_bit	= OMAP2420_CLKOUT2_EN_SHIFT,
	.init		= &omap2_init_clksel_parent,
338
	.clksel_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
339 340
	.clksel_mask	= OMAP2420_CLKOUT2_SOURCE_MASK,
	.clksel		= common_clkout_src_clksel,
341
	.recalc		= &omap2_clksel_recalc,
342 343 344 345 346 347 348
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
};

static const struct clksel sys_clkout2_clksel[] = {
	{ .parent = &sys_clkout2_src, .rates = common_clkout_rates },
	{ .parent = NULL }
349 350 351 352 353
};

/* In 2430, new in 2420 ES2 */
static struct clk sys_clkout2 = {
	.name		= "sys_clkout2",
354
	.ops		= &clkops_null,
355
	.parent		= &sys_clkout2_src,
356
	.clkdm_name	= "wkup_clkdm",
357
	.clksel_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
358 359
	.clksel_mask	= OMAP2420_CLKOUT2_DIV_MASK,
	.clksel		= sys_clkout2_clksel,
360
	.recalc		= &omap2_clksel_recalc,
361 362
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
363 364
};

365 366
static struct clk emul_ck = {
	.name		= "emul_ck",
367
	.ops		= &clkops_omap2_dflt,
368
	.parent		= &func_54m_ck,
369
	.clkdm_name	= "wkup_clkdm",
370
	.enable_reg	= OMAP2420_PRCM_CLKEMUL_CTRL,
371 372
	.enable_bit	= OMAP24XX_EMULATION_EN_SHIFT,
	.recalc		= &followparent_recalc,
373 374

};
375

376 377 378 379 380 381 382 383 384 385
/*
 * MPU clock domain
 *	Clocks:
 *		MPU_FCLK, MPU_ICLK
 *		INT_M_FCLK, INT_M_I_CLK
 *
 * - Individual clocks are hardware managed.
 * - Base divider comes from: CM_CLKSEL_MPU
 *
 */
386 387 388 389 390 391 392 393 394 395 396 397 398 399
static const struct clksel_rate mpu_core_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 2, .val = 2, .flags = RATE_IN_24XX },
	{ .div = 4, .val = 4, .flags = RATE_IN_242X },
	{ .div = 6, .val = 6, .flags = RATE_IN_242X },
	{ .div = 8, .val = 8, .flags = RATE_IN_242X },
	{ .div = 0 },
};

static const struct clksel mpu_clksel[] = {
	{ .parent = &core_ck, .rates = mpu_core_rates },
	{ .parent = NULL }
};

400 401
static struct clk mpu_ck = {	/* Control cpu */
	.name		= "mpu_ck",
402
	.ops		= &clkops_null,
403
	.parent		= &core_ck,
404
	.clkdm_name	= "mpu_clkdm",
405 406 407
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(MPU_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP24XX_CLKSEL_MPU_MASK,
408
	.clksel		= mpu_clksel,
409 410
	.recalc		= &omap2_clksel_recalc,
};
411

412
/*
413
 * DSP (2420-UMA+IVA1) clock domain
414 415
 * Clocks:
 *	2420: UMA_FCLK, UMA_ICLK, IVA_MPU, IVA_COP
416 417 418 419 420
 *
 * Won't be too specific here. The core clock comes into this block
 * it is divided then tee'ed. One branch goes directly to xyz enable
 * controls. The other branch gets further divided by 2 then possibly
 * routed into a synchronizer and out of clocks abc.
421
 */
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
static const struct clksel_rate dsp_fck_core_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 2, .val = 2, .flags = RATE_IN_24XX },
	{ .div = 3, .val = 3, .flags = RATE_IN_24XX },
	{ .div = 4, .val = 4, .flags = RATE_IN_24XX },
	{ .div = 6, .val = 6, .flags = RATE_IN_242X },
	{ .div = 8, .val = 8, .flags = RATE_IN_242X },
	{ .div = 12, .val = 12, .flags = RATE_IN_242X },
	{ .div = 0 },
};

static const struct clksel dsp_fck_clksel[] = {
	{ .parent = &core_ck, .rates = dsp_fck_core_rates },
	{ .parent = NULL }
};

static struct clk dsp_fck = {
	.name		= "dsp_fck",
440
	.ops		= &clkops_omap2_dflt_wait,
441
	.parent		= &core_ck,
442
	.clkdm_name	= "dsp_clkdm",
443 444 445 446 447
	.enable_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_CM_FCLKEN_DSP_EN_DSP_SHIFT,
	.clksel_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP24XX_CLKSEL_DSP_MASK,
	.clksel		= dsp_fck_clksel,
448 449 450
	.recalc		= &omap2_clksel_recalc,
};

451 452 453 454 455 456 457 458 459 460
/* DSP interface clock */
static const struct clksel_rate dsp_irate_ick_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 2, .val = 2, .flags = RATE_IN_24XX },
	{ .div = 0 },
};

static const struct clksel dsp_irate_ick_clksel[] = {
	{ .parent = &dsp_fck, .rates = dsp_irate_ick_rates },
	{ .parent = NULL }
461 462
};

463
/* This clock does not exist as such in the TRM. */
464 465
static struct clk dsp_irate_ick = {
	.name		= "dsp_irate_ick",
466
	.ops		= &clkops_null,
467 468 469 470
	.parent		= &dsp_fck,
	.clksel_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP24XX_CLKSEL_DSP_IF_MASK,
	.clksel		= dsp_irate_ick_clksel,
471 472 473
	.recalc		= &omap2_clksel_recalc,
};

474
/* 2420 only */
475 476
static struct clk dsp_ick = {
	.name		= "dsp_ick",	 /* apparently ipi and isp */
477
	.ops		= &clkops_omap2_dflt_wait,
478 479 480 481 482
	.parent		= &dsp_irate_ick,
	.enable_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP2420_EN_DSP_IPI_SHIFT,	      /* for ipi */
};

483 484 485 486 487
/*
 * The IVA1 is an ARM7 core on the 2420 that has nothing to do with
 * the C54x, but which is contained in the DSP powerdomain.  Does not
 * exist on later OMAPs.
 */
488 489
static struct clk iva1_ifck = {
	.name		= "iva1_ifck",
490
	.ops		= &clkops_omap2_dflt_wait,
491
	.parent		= &core_ck,
492
	.clkdm_name	= "iva1_clkdm",
493 494 495 496 497
	.enable_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP2420_EN_IVA_COP_SHIFT,
	.clksel_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP2420_CLKSEL_IVA_MASK,
	.clksel		= dsp_fck_clksel,
498 499 500 501 502 503
	.recalc		= &omap2_clksel_recalc,
};

/* IVA1 mpu/int/i/f clocks are /2 of parent */
static struct clk iva1_mpu_int_ifck = {
	.name		= "iva1_mpu_int_ifck",
504
	.ops		= &clkops_omap2_dflt_wait,
505
	.parent		= &iva1_ifck,
506
	.clkdm_name	= "iva1_clkdm",
507 508 509
	.enable_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP2420_EN_IVA_MPU_SHIFT,
	.fixed_div	= 2,
510
	.recalc		= &omap_fixed_divisor_recalc,
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
};

/*
 * L3 clock domain
 * L3 clocks are used for both interface and functional clocks to
 * multiple entities. Some of these clocks are completely managed
 * by hardware, and some others allow software control. Hardware
 * managed ones general are based on directly CLK_REQ signals and
 * various auto idle settings. The functional spec sets many of these
 * as 'tie-high' for their enables.
 *
 * I-CLOCKS:
 *	L3-Interconnect, SMS, GPMC, SDRC, OCM_RAM, OCM_ROM, SDMA
 *	CAM, HS-USB.
 * F-CLOCK
 *	SSI.
 *
 * GPMC memories and SDRC have timing and clock sensitive registers which
 * may very well need notification when the clock changes. Currently for low
 * operating points, these are taken care of in sleep.S.
 */
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
static const struct clksel_rate core_l3_core_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX },
	{ .div = 2, .val = 2, .flags = RATE_IN_242X },
	{ .div = 4, .val = 4, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 6, .val = 6, .flags = RATE_IN_24XX },
	{ .div = 8, .val = 8, .flags = RATE_IN_242X },
	{ .div = 12, .val = 12, .flags = RATE_IN_242X },
	{ .div = 16, .val = 16, .flags = RATE_IN_242X },
	{ .div = 0 }
};

static const struct clksel core_l3_clksel[] = {
	{ .parent = &core_ck, .rates = core_l3_core_rates },
	{ .parent = NULL }
};

548 549
static struct clk core_l3_ck = {	/* Used for ick and fck, interconnect */
	.name		= "core_l3_ck",
550
	.ops		= &clkops_null,
551
	.parent		= &core_ck,
552
	.clkdm_name	= "core_l3_clkdm",
553 554 555
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_CLKSEL_L3_MASK,
	.clksel		= core_l3_clksel,
556
	.recalc		= &omap2_clksel_recalc,
557 558 559 560 561 562 563 564 565 566 567 568 569
};

/* usb_l4_ick */
static const struct clksel_rate usb_l4_ick_core_l3_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX },
	{ .div = 2, .val = 2, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 4, .val = 4, .flags = RATE_IN_24XX },
	{ .div = 0 }
};

static const struct clksel usb_l4_ick_clksel[] = {
	{ .parent = &core_l3_ck, .rates = usb_l4_ick_core_l3_rates },
	{ .parent = NULL },
570 571
};

572
/* It is unclear from TRM whether usb_l4_ick is really in L3 or L4 clkdm */
573 574
static struct clk usb_l4_ick = {	/* FS-USB interface clock */
	.name		= "usb_l4_ick",
575
	.ops		= &clkops_omap2_dflt_wait,
576
	.parent		= &core_l3_ck,
577
	.clkdm_name	= "core_l4_clkdm",
578 579 580 581 582
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP24XX_EN_USB_SHIFT,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_CLKSEL_USB_MASK,
	.clksel		= usb_l4_ick_clksel,
583 584 585
	.recalc		= &omap2_clksel_recalc,
};

586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
/*
 * L4 clock management domain
 *
 * This domain contains lots of interface clocks from the L4 interface, some
 * functional clocks.	Fixed APLL functional source clocks are managed in
 * this domain.
 */
static const struct clksel_rate l4_core_l3_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 2, .val = 2, .flags = RATE_IN_24XX },
	{ .div = 0 }
};

static const struct clksel l4_clksel[] = {
	{ .parent = &core_l3_ck, .rates = l4_core_l3_rates },
	{ .parent = NULL }
};

static struct clk l4_ck = {		/* used both as an ick and fck */
	.name		= "l4_ck",
606
	.ops		= &clkops_null,
607 608 609 610 611 612 613 614
	.parent		= &core_l3_ck,
	.clkdm_name	= "core_l4_clkdm",
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_CLKSEL_L4_MASK,
	.clksel		= l4_clksel,
	.recalc		= &omap2_clksel_recalc,
};

615 616 617 618
/*
 * SSI is in L3 management domain, its direct parent is core not l3,
 * many core power domain entities are grouped into the L3 clock
 * domain.
619
 * SSI_SSR_FCLK, SSI_SST_FCLK, SSI_L4_ICLK
620 621 622
 *
 * ssr = core/1/2/3/4/5, sst = 1/2 ssr.
 */
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
static const struct clksel_rate ssi_ssr_sst_fck_core_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX },
	{ .div = 2, .val = 2, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 3, .val = 3, .flags = RATE_IN_24XX },
	{ .div = 4, .val = 4, .flags = RATE_IN_24XX },
	{ .div = 6, .val = 6, .flags = RATE_IN_242X },
	{ .div = 8, .val = 8, .flags = RATE_IN_242X },
	{ .div = 0 }
};

static const struct clksel ssi_ssr_sst_fck_clksel[] = {
	{ .parent = &core_ck, .rates = ssi_ssr_sst_fck_core_rates },
	{ .parent = NULL }
};

638 639
static struct clk ssi_ssr_sst_fck = {
	.name		= "ssi_fck",
640
	.ops		= &clkops_omap2_dflt_wait,
641
	.parent		= &core_ck,
642
	.clkdm_name	= "core_l3_clkdm",
643 644 645 646 647
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP24XX_EN_SSI_SHIFT,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_CLKSEL_SSI_MASK,
	.clksel		= ssi_ssr_sst_fck_clksel,
648 649 650
	.recalc		= &omap2_clksel_recalc,
};

651 652 653 654 655 656 657 658 659 660 661 662 663 664
/*
 * Presumably this is the same as SSI_ICLK.
 * TRM contradicts itself on what clockdomain SSI_ICLK is in
 */
static struct clk ssi_l4_ick = {
	.name		= "ssi_l4_ick",
	.ops		= &clkops_omap2_dflt_wait,
	.parent		= &l4_ck,
	.clkdm_name	= "core_l4_clkdm",
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP24XX_EN_SSI_SHIFT,
	.recalc		= &followparent_recalc,
};

665

666 667 668 669 670 671 672 673 674 675 676
/*
 * GFX clock domain
 *	Clocks:
 * GFX_FCLK, GFX_ICLK
 * GFX_CG1(2d), GFX_CG2(3d)
 *
 * GFX_FCLK runs from L3, and is divided by (1,2,3,4)
 * The 2d and 3d clocks run at a hardware determined
 * divided value of fclk.
 *
 */
677 678 679 680 681 682 683

/* This clksel struct is shared between gfx_3d_fck and gfx_2d_fck */
static const struct clksel gfx_fck_clksel[] = {
	{ .parent = &core_l3_ck, .rates = gfx_l3_rates },
	{ .parent = NULL },
};

684 685
static struct clk gfx_3d_fck = {
	.name		= "gfx_3d_fck",
686
	.ops		= &clkops_omap2_dflt_wait,
687
	.parent		= &core_l3_ck,
688
	.clkdm_name	= "gfx_clkdm",
689 690 691 692 693
	.enable_reg	= OMAP_CM_REGADDR(GFX_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_EN_3D_SHIFT,
	.clksel_reg	= OMAP_CM_REGADDR(GFX_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP_CLKSEL_GFX_MASK,
	.clksel		= gfx_fck_clksel,
694
	.recalc		= &omap2_clksel_recalc,
695 696
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
697 698 699 700
};

static struct clk gfx_2d_fck = {
	.name		= "gfx_2d_fck",
701
	.ops		= &clkops_omap2_dflt_wait,
702
	.parent		= &core_l3_ck,
703
	.clkdm_name	= "gfx_clkdm",
704 705 706 707 708
	.enable_reg	= OMAP_CM_REGADDR(GFX_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_EN_2D_SHIFT,
	.clksel_reg	= OMAP_CM_REGADDR(GFX_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP_CLKSEL_GFX_MASK,
	.clksel		= gfx_fck_clksel,
709 710 711 712 713
	.recalc		= &omap2_clksel_recalc,
};

static struct clk gfx_ick = {
	.name		= "gfx_ick",		/* From l3 */
714
	.ops		= &clkops_omap2_dflt_wait,
715
	.parent		= &core_l3_ck,
716
	.clkdm_name	= "gfx_clkdm",
717 718 719
	.enable_reg	= OMAP_CM_REGADDR(GFX_MOD, CM_ICLKEN),
	.enable_bit	= OMAP_EN_GFX_SHIFT,
	.recalc		= &followparent_recalc,
720 721 722 723 724 725 726 727 728 729
};

/*
 * DSS clock domain
 * CLOCKs:
 * DSS_L4_ICLK, DSS_L3_ICLK,
 * DSS_CLK1, DSS_CLK2, DSS_54MHz_CLK
 *
 * DSS is both initiator and target.
 */
730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
/* XXX Add RATE_NOT_VALIDATED */

static const struct clksel_rate dss1_fck_sys_rates[] = {
	{ .div = 1, .val = 0, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel_rate dss1_fck_core_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX },
	{ .div = 2, .val = 2, .flags = RATE_IN_24XX },
	{ .div = 3, .val = 3, .flags = RATE_IN_24XX },
	{ .div = 4, .val = 4, .flags = RATE_IN_24XX },
	{ .div = 5, .val = 5, .flags = RATE_IN_24XX },
	{ .div = 6, .val = 6, .flags = RATE_IN_24XX },
	{ .div = 8, .val = 8, .flags = RATE_IN_24XX },
	{ .div = 9, .val = 9, .flags = RATE_IN_24XX },
	{ .div = 12, .val = 12, .flags = RATE_IN_24XX },
	{ .div = 16, .val = 16, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel dss1_fck_clksel[] = {
	{ .parent = &sys_ck,  .rates = dss1_fck_sys_rates },
	{ .parent = &core_ck, .rates = dss1_fck_core_rates },
	{ .parent = NULL },
};

757 758
static struct clk dss_ick = {		/* Enables both L3,L4 ICLK's */
	.name		= "dss_ick",
759
	.ops		= &clkops_omap2_dflt,
760
	.parent		= &l4_ck,	/* really both l3 and l4 */
761
	.clkdm_name	= "dss_clkdm",
762 763 764
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_DSS1_SHIFT,
	.recalc		= &followparent_recalc,
765 766 767 768
};

static struct clk dss1_fck = {
	.name		= "dss1_fck",
769
	.ops		= &clkops_omap2_dflt,
770
	.parent		= &core_ck,		/* Core or sys */
771
	.clkdm_name	= "dss_clkdm",
772 773 774 775 776 777
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_DSS1_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_CLKSEL_DSS1_MASK,
	.clksel		= dss1_fck_clksel,
778
	.recalc		= &omap2_clksel_recalc,
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
};

static const struct clksel_rate dss2_fck_sys_rates[] = {
	{ .div = 1, .val = 0, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel_rate dss2_fck_48m_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel dss2_fck_clksel[] = {
	{ .parent = &sys_ck,	  .rates = dss2_fck_sys_rates },
	{ .parent = &func_48m_ck, .rates = dss2_fck_48m_rates },
	{ .parent = NULL }
795 796 797 798
};

static struct clk dss2_fck = {		/* Alt clk used in power management */
	.name		= "dss2_fck",
799
	.ops		= &clkops_omap2_dflt,
800
	.parent		= &sys_ck,		/* fixed at sys_ck or 48MHz */
801
	.clkdm_name	= "dss_clkdm",
802 803 804 805 806 807 808
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_DSS2_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_CLKSEL_DSS2_MASK,
	.clksel		= dss2_fck_clksel,
	.recalc		= &followparent_recalc,
809 810 811 812
};

static struct clk dss_54m_fck = {	/* Alt clk used in power management */
	.name		= "dss_54m_fck",	/* 54m tv clk */
813
	.ops		= &clkops_omap2_dflt_wait,
814
	.parent		= &func_54m_ck,
815
	.clkdm_name	= "dss_clkdm",
816 817 818
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_TV_SHIFT,
	.recalc		= &followparent_recalc,
819 820 821 822 823 824 825 826
};

/*
 * CORE power domain ICLK & FCLK defines.
 * Many of the these can have more than one possible parent. Entries
 * here will likely have an L4 interface parent, and may have multiple
 * functional clock parents.
 */
827 828 829 830 831 832 833 834 835 836 837 838
static const struct clksel_rate gpt_alt_rates[] = {
	{ .div = 1, .val = 2, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel omap24xx_gpt_clksel[] = {
	{ .parent = &func_32k_ck, .rates = gpt_32k_rates },
	{ .parent = &sys_ck,	  .rates = gpt_sys_rates },
	{ .parent = &alt_ck,	  .rates = gpt_alt_rates },
	{ .parent = NULL },
};

839 840
static struct clk gpt1_ick = {
	.name		= "gpt1_ick",
841
	.ops		= &clkops_omap2_dflt_wait,
842
	.parent		= &l4_ck,
843
	.clkdm_name	= "core_l4_clkdm",
844 845 846
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_GPT1_SHIFT,
	.recalc		= &followparent_recalc,
847 848 849 850
};

static struct clk gpt1_fck = {
	.name		= "gpt1_fck",
851
	.ops		= &clkops_omap2_dflt_wait,
852
	.parent		= &func_32k_ck,
853
	.clkdm_name	= "core_l4_clkdm",
854 855 856 857 858 859 860 861 862
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_EN_GPT1_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT1_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
863 864 865 866
};

static struct clk gpt2_ick = {
	.name		= "gpt2_ick",
867
	.ops		= &clkops_omap2_dflt_wait,
868
	.parent		= &l4_ck,
869
	.clkdm_name	= "core_l4_clkdm",
870 871 872
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT2_SHIFT,
	.recalc		= &followparent_recalc,
873 874 875 876
};

static struct clk gpt2_fck = {
	.name		= "gpt2_fck",
877
	.ops		= &clkops_omap2_dflt_wait,
878
	.parent		= &func_32k_ck,
879
	.clkdm_name	= "core_l4_clkdm",
880 881 882 883 884 885 886
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT2_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT2_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
887 888 889 890
};

static struct clk gpt3_ick = {
	.name		= "gpt3_ick",
891
	.ops		= &clkops_omap2_dflt_wait,
892
	.parent		= &l4_ck,
893
	.clkdm_name	= "core_l4_clkdm",
894 895 896
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT3_SHIFT,
	.recalc		= &followparent_recalc,
897 898 899 900
};

static struct clk gpt3_fck = {
	.name		= "gpt3_fck",
901
	.ops		= &clkops_omap2_dflt_wait,
902
	.parent		= &func_32k_ck,
903
	.clkdm_name	= "core_l4_clkdm",
904 905 906 907 908 909 910
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT3_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT3_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
911 912 913 914
};

static struct clk gpt4_ick = {
	.name		= "gpt4_ick",
915
	.ops		= &clkops_omap2_dflt_wait,
916
	.parent		= &l4_ck,
917
	.clkdm_name	= "core_l4_clkdm",
918 919 920
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT4_SHIFT,
	.recalc		= &followparent_recalc,
921 922 923 924
};

static struct clk gpt4_fck = {
	.name		= "gpt4_fck",
925
	.ops		= &clkops_omap2_dflt_wait,
926
	.parent		= &func_32k_ck,
927
	.clkdm_name	= "core_l4_clkdm",
928 929 930 931 932 933 934
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT4_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT4_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
935 936 937 938
};

static struct clk gpt5_ick = {
	.name		= "gpt5_ick",
939
	.ops		= &clkops_omap2_dflt_wait,
940
	.parent		= &l4_ck,
941
	.clkdm_name	= "core_l4_clkdm",
942 943 944
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT5_SHIFT,
	.recalc		= &followparent_recalc,
945 946 947 948
};

static struct clk gpt5_fck = {
	.name		= "gpt5_fck",
949
	.ops		= &clkops_omap2_dflt_wait,
950
	.parent		= &func_32k_ck,
951
	.clkdm_name	= "core_l4_clkdm",
952 953 954 955 956 957 958
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT5_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT5_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
959 960 961 962
};

static struct clk gpt6_ick = {
	.name		= "gpt6_ick",
963
	.ops		= &clkops_omap2_dflt_wait,
964
	.parent		= &l4_ck,
965
	.clkdm_name	= "core_l4_clkdm",
966 967 968
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT6_SHIFT,
	.recalc		= &followparent_recalc,
969 970 971 972
};

static struct clk gpt6_fck = {
	.name		= "gpt6_fck",
973
	.ops		= &clkops_omap2_dflt_wait,
974
	.parent		= &func_32k_ck,
975
	.clkdm_name	= "core_l4_clkdm",
976 977 978 979 980 981 982
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT6_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT6_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
983 984 985 986
};

static struct clk gpt7_ick = {
	.name		= "gpt7_ick",
987
	.ops		= &clkops_omap2_dflt_wait,
988
	.parent		= &l4_ck,
989 990 991
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT7_SHIFT,
	.recalc		= &followparent_recalc,
992 993 994 995
};

static struct clk gpt7_fck = {
	.name		= "gpt7_fck",
996
	.ops		= &clkops_omap2_dflt_wait,
997
	.parent		= &func_32k_ck,
998
	.clkdm_name	= "core_l4_clkdm",
999 1000 1001 1002 1003 1004 1005
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT7_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT7_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
1006 1007 1008 1009
};

static struct clk gpt8_ick = {
	.name		= "gpt8_ick",
1010
	.ops		= &clkops_omap2_dflt_wait,
1011
	.parent		= &l4_ck,
1012
	.clkdm_name	= "core_l4_clkdm",
1013 1014 1015
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT8_SHIFT,
	.recalc		= &followparent_recalc,
1016 1017 1018 1019
};

static struct clk gpt8_fck = {
	.name		= "gpt8_fck",
1020
	.ops		= &clkops_omap2_dflt_wait,
1021
	.parent		= &func_32k_ck,
1022
	.clkdm_name	= "core_l4_clkdm",
1023 1024 1025 1026 1027 1028 1029
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT8_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT8_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
1030 1031 1032 1033
};

static struct clk gpt9_ick = {
	.name		= "gpt9_ick",
1034
	.ops		= &clkops_omap2_dflt_wait,
1035
	.parent		= &l4_ck,
1036
	.clkdm_name	= "core_l4_clkdm",
1037 1038 1039
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT9_SHIFT,
	.recalc		= &followparent_recalc,
1040 1041 1042 1043
};

static struct clk gpt9_fck = {
	.name		= "gpt9_fck",
1044
	.ops		= &clkops_omap2_dflt_wait,
1045
	.parent		= &func_32k_ck,
1046
	.clkdm_name	= "core_l4_clkdm",
1047 1048 1049 1050 1051 1052 1053
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT9_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT9_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
1054 1055 1056 1057
};

static struct clk gpt10_ick = {
	.name		= "gpt10_ick",
1058
	.ops		= &clkops_omap2_dflt_wait,
1059
	.parent		= &l4_ck,
1060
	.clkdm_name	= "core_l4_clkdm",
1061 1062 1063
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT10_SHIFT,
	.recalc		= &followparent_recalc,
1064 1065 1066 1067
};

static struct clk gpt10_fck = {
	.name		= "gpt10_fck",
1068
	.ops		= &clkops_omap2_dflt_wait,
1069
	.parent		= &func_32k_ck,
1070
	.clkdm_name	= "core_l4_clkdm",
1071 1072 1073 1074 1075 1076 1077
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT10_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT10_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
1078 1079 1080 1081
};

static struct clk gpt11_ick = {
	.name		= "gpt11_ick",
1082
	.ops		= &clkops_omap2_dflt_wait,
1083
	.parent		= &l4_ck,
1084
	.clkdm_name	= "core_l4_clkdm",
1085 1086 1087
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT11_SHIFT,
	.recalc		= &followparent_recalc,
1088 1089 1090 1091
};

static struct clk gpt11_fck = {
	.name		= "gpt11_fck",
1092
	.ops		= &clkops_omap2_dflt_wait,
1093
	.parent		= &func_32k_ck,
1094
	.clkdm_name	= "core_l4_clkdm",
1095 1096 1097 1098 1099 1100 1101
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT11_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT11_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
1102 1103 1104 1105
};

static struct clk gpt12_ick = {
	.name		= "gpt12_ick",
1106
	.ops		= &clkops_omap2_dflt_wait,
1107
	.parent		= &l4_ck,
1108
	.clkdm_name	= "core_l4_clkdm",
1109 1110 1111
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT12_SHIFT,
	.recalc		= &followparent_recalc,
1112 1113 1114 1115
};

static struct clk gpt12_fck = {
	.name		= "gpt12_fck",
1116
	.ops		= &clkops_omap2_dflt_wait,
1117
	.parent		= &secure_32k_ck,
1118
	.clkdm_name	= "core_l4_clkdm",
1119 1120 1121 1122 1123 1124 1125
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT12_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL2),
	.clksel_mask	= OMAP24XX_CLKSEL_GPT12_MASK,
	.clksel		= omap24xx_gpt_clksel,
	.recalc		= &omap2_clksel_recalc,
1126 1127 1128
};

static struct clk mcbsp1_ick = {
1129
	.name		= "mcbsp1_ick",
1130
	.ops		= &clkops_omap2_dflt_wait,
1131
	.parent		= &l4_ck,
1132
	.clkdm_name	= "core_l4_clkdm",
1133 1134 1135
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MCBSP1_SHIFT,
	.recalc		= &followparent_recalc,
1136 1137 1138
};

static struct clk mcbsp1_fck = {
1139
	.name		= "mcbsp1_fck",
1140
	.ops		= &clkops_omap2_dflt_wait,
1141
	.parent		= &func_96m_ck,
1142
	.clkdm_name	= "core_l4_clkdm",
1143 1144 1145
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MCBSP1_SHIFT,
	.recalc		= &followparent_recalc,
1146 1147 1148
};

static struct clk mcbsp2_ick = {
1149
	.name		= "mcbsp2_ick",
1150
	.ops		= &clkops_omap2_dflt_wait,
1151
	.parent		= &l4_ck,
1152
	.clkdm_name	= "core_l4_clkdm",
1153 1154 1155
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MCBSP2_SHIFT,
	.recalc		= &followparent_recalc,
1156 1157 1158
};

static struct clk mcbsp2_fck = {
1159
	.name		= "mcbsp2_fck",
1160
	.ops		= &clkops_omap2_dflt_wait,
1161
	.parent		= &func_96m_ck,
1162
	.clkdm_name	= "core_l4_clkdm",
1163 1164 1165
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MCBSP2_SHIFT,
	.recalc		= &followparent_recalc,
1166 1167 1168
};

static struct clk mcspi1_ick = {
1169
	.name		= "mcspi1_ick",
1170
	.ops		= &clkops_omap2_dflt_wait,
1171
	.parent		= &l4_ck,
1172
	.clkdm_name	= "core_l4_clkdm",
1173 1174 1175
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MCSPI1_SHIFT,
	.recalc		= &followparent_recalc,
1176 1177 1178
};

static struct clk mcspi1_fck = {
1179
	.name		= "mcspi1_fck",
1180
	.ops		= &clkops_omap2_dflt_wait,
1181
	.parent		= &func_48m_ck,
1182
	.clkdm_name	= "core_l4_clkdm",
1183 1184 1185
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MCSPI1_SHIFT,
	.recalc		= &followparent_recalc,
1186 1187 1188
};

static struct clk mcspi2_ick = {
1189
	.name		= "mcspi2_ick",
1190
	.ops		= &clkops_omap2_dflt_wait,
1191
	.parent		= &l4_ck,
1192
	.clkdm_name	= "core_l4_clkdm",
1193 1194 1195
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MCSPI2_SHIFT,
	.recalc		= &followparent_recalc,
1196 1197 1198
};

static struct clk mcspi2_fck = {
1199
	.name		= "mcspi2_fck",
1200
	.ops		= &clkops_omap2_dflt_wait,
1201
	.parent		= &func_48m_ck,
1202
	.clkdm_name	= "core_l4_clkdm",
1203 1204 1205
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MCSPI2_SHIFT,
	.recalc		= &followparent_recalc,
1206 1207 1208 1209
};

static struct clk uart1_ick = {
	.name		= "uart1_ick",
1210
	.ops		= &clkops_omap2_dflt_wait,
1211
	.parent		= &l4_ck,
1212
	.clkdm_name	= "core_l4_clkdm",
1213 1214 1215
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_UART1_SHIFT,
	.recalc		= &followparent_recalc,
1216 1217 1218 1219
};

static struct clk uart1_fck = {
	.name		= "uart1_fck",
1220
	.ops		= &clkops_omap2_dflt_wait,
1221
	.parent		= &func_48m_ck,
1222
	.clkdm_name	= "core_l4_clkdm",
1223 1224 1225
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_UART1_SHIFT,
	.recalc		= &followparent_recalc,
1226 1227 1228 1229
};

static struct clk uart2_ick = {
	.name		= "uart2_ick",
1230
	.ops		= &clkops_omap2_dflt_wait,
1231
	.parent		= &l4_ck,
1232
	.clkdm_name	= "core_l4_clkdm",
1233 1234 1235
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_UART2_SHIFT,
	.recalc		= &followparent_recalc,
1236 1237 1238 1239
};

static struct clk uart2_fck = {
	.name		= "uart2_fck",
1240
	.ops		= &clkops_omap2_dflt_wait,
1241
	.parent		= &func_48m_ck,
1242
	.clkdm_name	= "core_l4_clkdm",
1243 1244 1245
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_UART2_SHIFT,
	.recalc		= &followparent_recalc,
1246 1247 1248 1249
};

static struct clk uart3_ick = {
	.name		= "uart3_ick",
1250
	.ops		= &clkops_omap2_dflt_wait,
1251
	.parent		= &l4_ck,
1252
	.clkdm_name	= "core_l4_clkdm",
1253 1254 1255
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP24XX_EN_UART3_SHIFT,
	.recalc		= &followparent_recalc,
1256 1257 1258 1259
};

static struct clk uart3_fck = {
	.name		= "uart3_fck",
1260
	.ops		= &clkops_omap2_dflt_wait,
1261
	.parent		= &func_48m_ck,
1262
	.clkdm_name	= "core_l4_clkdm",
1263 1264 1265
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP24XX_EN_UART3_SHIFT,
	.recalc		= &followparent_recalc,
1266 1267 1268 1269
};

static struct clk gpios_ick = {
	.name		= "gpios_ick",
1270
	.ops		= &clkops_omap2_dflt_wait,
1271
	.parent		= &l4_ck,
1272
	.clkdm_name	= "core_l4_clkdm",
1273 1274 1275
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_GPIOS_SHIFT,
	.recalc		= &followparent_recalc,
1276 1277 1278 1279
};

static struct clk gpios_fck = {
	.name		= "gpios_fck",
1280
	.ops		= &clkops_omap2_dflt_wait,
1281
	.parent		= &func_32k_ck,
1282
	.clkdm_name	= "wkup_clkdm",
1283 1284 1285
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_EN_GPIOS_SHIFT,
	.recalc		= &followparent_recalc,
1286 1287 1288 1289
};

static struct clk mpu_wdt_ick = {
	.name		= "mpu_wdt_ick",
1290
	.ops		= &clkops_omap2_dflt_wait,
1291
	.parent		= &l4_ck,
1292
	.clkdm_name	= "core_l4_clkdm",
1293 1294 1295
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_MPU_WDT_SHIFT,
	.recalc		= &followparent_recalc,
1296 1297 1298 1299
};

static struct clk mpu_wdt_fck = {
	.name		= "mpu_wdt_fck",
1300
	.ops		= &clkops_omap2_dflt_wait,
1301
	.parent		= &func_32k_ck,
1302
	.clkdm_name	= "wkup_clkdm",
1303 1304 1305
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_EN_MPU_WDT_SHIFT,
	.recalc		= &followparent_recalc,
1306 1307 1308 1309
};

static struct clk sync_32k_ick = {
	.name		= "sync_32k_ick",
1310
	.ops		= &clkops_omap2_dflt_wait,
1311
	.parent		= &l4_ck,
1312
	.flags		= ENABLE_ON_INIT,
1313
	.clkdm_name	= "core_l4_clkdm",
1314 1315 1316
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_32KSYNC_SHIFT,
	.recalc		= &followparent_recalc,
1317
};
1318

1319 1320
static struct clk wdt1_ick = {
	.name		= "wdt1_ick",
1321
	.ops		= &clkops_omap2_dflt_wait,
1322
	.parent		= &l4_ck,
1323
	.clkdm_name	= "core_l4_clkdm",
1324 1325 1326
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_WDT1_SHIFT,
	.recalc		= &followparent_recalc,
1327
};
1328

1329 1330
static struct clk omapctrl_ick = {
	.name		= "omapctrl_ick",
1331
	.ops		= &clkops_omap2_dflt_wait,
1332
	.parent		= &l4_ck,
1333
	.flags		= ENABLE_ON_INIT,
1334
	.clkdm_name	= "core_l4_clkdm",
1335 1336 1337
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_OMAPCTRL_SHIFT,
	.recalc		= &followparent_recalc,
1338
};
1339

1340 1341
static struct clk cam_ick = {
	.name		= "cam_ick",
1342
	.ops		= &clkops_omap2_dflt,
1343
	.parent		= &l4_ck,
1344
	.clkdm_name	= "core_l4_clkdm",
1345 1346 1347
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_CAM_SHIFT,
	.recalc		= &followparent_recalc,
1348 1349
};

1350 1351 1352 1353 1354
/*
 * cam_fck controls both CAM_MCLK and CAM_FCLK.  It should probably be
 * split into two separate clocks, since the parent clocks are different
 * and the clockdomains are also different.
 */
1355 1356
static struct clk cam_fck = {
	.name		= "cam_fck",
1357
	.ops		= &clkops_omap2_dflt,
1358
	.parent		= &func_96m_ck,
1359
	.clkdm_name	= "core_l3_clkdm",
1360 1361 1362
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_CAM_SHIFT,
	.recalc		= &followparent_recalc,
1363 1364 1365 1366
};

static struct clk mailboxes_ick = {
	.name		= "mailboxes_ick",
1367
	.ops		= &clkops_omap2_dflt_wait,
1368
	.parent		= &l4_ck,
1369
	.clkdm_name	= "core_l4_clkdm",
1370 1371 1372
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MAILBOXES_SHIFT,
	.recalc		= &followparent_recalc,
1373 1374 1375 1376
};

static struct clk wdt4_ick = {
	.name		= "wdt4_ick",
1377
	.ops		= &clkops_omap2_dflt_wait,
1378
	.parent		= &l4_ck,
1379
	.clkdm_name	= "core_l4_clkdm",
1380 1381 1382
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_WDT4_SHIFT,
	.recalc		= &followparent_recalc,
1383 1384 1385 1386
};

static struct clk wdt4_fck = {
	.name		= "wdt4_fck",
1387
	.ops		= &clkops_omap2_dflt_wait,
1388
	.parent		= &func_32k_ck,
1389
	.clkdm_name	= "core_l4_clkdm",
1390 1391 1392
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_WDT4_SHIFT,
	.recalc		= &followparent_recalc,
1393 1394 1395 1396
};

static struct clk wdt3_ick = {
	.name		= "wdt3_ick",
1397
	.ops		= &clkops_omap2_dflt_wait,
1398
	.parent		= &l4_ck,
1399
	.clkdm_name	= "core_l4_clkdm",
1400 1401 1402
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_WDT3_SHIFT,
	.recalc		= &followparent_recalc,
1403 1404 1405 1406
};

static struct clk wdt3_fck = {
	.name		= "wdt3_fck",
1407
	.ops		= &clkops_omap2_dflt_wait,
1408
	.parent		= &func_32k_ck,
1409
	.clkdm_name	= "core_l4_clkdm",
1410 1411 1412
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_WDT3_SHIFT,
	.recalc		= &followparent_recalc,
1413 1414 1415 1416
};

static struct clk mspro_ick = {
	.name		= "mspro_ick",
1417
	.ops		= &clkops_omap2_dflt_wait,
1418
	.parent		= &l4_ck,
1419
	.clkdm_name	= "core_l4_clkdm",
1420 1421 1422
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MSPRO_SHIFT,
	.recalc		= &followparent_recalc,
1423 1424 1425 1426
};

static struct clk mspro_fck = {
	.name		= "mspro_fck",
1427
	.ops		= &clkops_omap2_dflt_wait,
1428
	.parent		= &func_96m_ck,
1429
	.clkdm_name	= "core_l4_clkdm",
1430 1431 1432
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MSPRO_SHIFT,
	.recalc		= &followparent_recalc,
1433 1434 1435 1436
};

static struct clk mmc_ick = {
	.name		= "mmc_ick",
1437
	.ops		= &clkops_omap2_dflt_wait,
1438
	.parent		= &l4_ck,
1439
	.clkdm_name	= "core_l4_clkdm",
1440 1441 1442
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_MMC_SHIFT,
	.recalc		= &followparent_recalc,
1443 1444 1445 1446
};

static struct clk mmc_fck = {
	.name		= "mmc_fck",
1447
	.ops		= &clkops_omap2_dflt_wait,
1448
	.parent		= &func_96m_ck,
1449
	.clkdm_name	= "core_l4_clkdm",
1450 1451 1452
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_MMC_SHIFT,
	.recalc		= &followparent_recalc,
1453 1454 1455 1456
};

static struct clk fac_ick = {
	.name		= "fac_ick",
1457
	.ops		= &clkops_omap2_dflt_wait,
1458
	.parent		= &l4_ck,
1459
	.clkdm_name	= "core_l4_clkdm",
1460 1461 1462
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_FAC_SHIFT,
	.recalc		= &followparent_recalc,
1463 1464 1465 1466
};

static struct clk fac_fck = {
	.name		= "fac_fck",
1467
	.ops		= &clkops_omap2_dflt_wait,
1468
	.parent		= &func_12m_ck,
1469
	.clkdm_name	= "core_l4_clkdm",
1470 1471 1472
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_FAC_SHIFT,
	.recalc		= &followparent_recalc,
1473 1474 1475 1476
};

static struct clk eac_ick = {
	.name		= "eac_ick",
1477
	.ops		= &clkops_omap2_dflt_wait,
1478
	.parent		= &l4_ck,
1479
	.clkdm_name	= "core_l4_clkdm",
1480 1481 1482
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_EAC_SHIFT,
	.recalc		= &followparent_recalc,
1483 1484 1485 1486
};

static struct clk eac_fck = {
	.name		= "eac_fck",
1487
	.ops		= &clkops_omap2_dflt_wait,
1488
	.parent		= &func_96m_ck,
1489
	.clkdm_name	= "core_l4_clkdm",
1490 1491 1492
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_EAC_SHIFT,
	.recalc		= &followparent_recalc,
1493 1494 1495 1496
};

static struct clk hdq_ick = {
	.name		= "hdq_ick",
1497
	.ops		= &clkops_omap2_dflt_wait,
1498
	.parent		= &l4_ck,
1499
	.clkdm_name	= "core_l4_clkdm",
1500 1501 1502
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_HDQ_SHIFT,
	.recalc		= &followparent_recalc,
1503 1504 1505 1506
};

static struct clk hdq_fck = {
	.name		= "hdq_fck",
1507
	.ops		= &clkops_omap2_dflt_wait,
1508
	.parent		= &func_12m_ck,
1509
	.clkdm_name	= "core_l4_clkdm",
1510 1511 1512
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_HDQ_SHIFT,
	.recalc		= &followparent_recalc,
1513 1514 1515
};

static struct clk i2c2_ick = {
1516
	.name		= "i2c2_ick",
1517
	.ops		= &clkops_omap2_dflt_wait,
1518
	.parent		= &l4_ck,
1519
	.clkdm_name	= "core_l4_clkdm",
1520 1521 1522
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_I2C2_SHIFT,
	.recalc		= &followparent_recalc,
1523 1524 1525
};

static struct clk i2c2_fck = {
1526
	.name		= "i2c2_fck",
1527
	.ops		= &clkops_omap2_dflt_wait,
1528
	.parent		= &func_12m_ck,
1529
	.clkdm_name	= "core_l4_clkdm",
1530 1531 1532
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_I2C2_SHIFT,
	.recalc		= &followparent_recalc,
1533 1534 1535
};

static struct clk i2c1_ick = {
1536
	.name		= "i2c1_ick",
1537
	.ops		= &clkops_omap2_dflt_wait,
1538
	.parent		= &l4_ck,
1539
	.clkdm_name	= "core_l4_clkdm",
1540 1541 1542
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_I2C1_SHIFT,
	.recalc		= &followparent_recalc,
1543 1544 1545
};

static struct clk i2c1_fck = {
1546
	.name		= "i2c1_fck",
1547
	.ops		= &clkops_omap2_dflt_wait,
1548
	.parent		= &func_12m_ck,
1549
	.clkdm_name	= "core_l4_clkdm",
1550 1551 1552
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_I2C1_SHIFT,
	.recalc		= &followparent_recalc,
1553 1554
};

1555 1556
static struct clk gpmc_fck = {
	.name		= "gpmc_fck",
1557
	.ops		= &clkops_null, /* RMK: missing? */
1558
	.parent		= &core_l3_ck,
1559
	.flags		= ENABLE_ON_INIT,
1560
	.clkdm_name	= "core_l3_clkdm",
1561 1562 1563 1564 1565
	.recalc		= &followparent_recalc,
};

static struct clk sdma_fck = {
	.name		= "sdma_fck",
1566
	.ops		= &clkops_null, /* RMK: missing? */
1567
	.parent		= &core_l3_ck,
1568
	.clkdm_name	= "core_l3_clkdm",
1569 1570 1571 1572 1573
	.recalc		= &followparent_recalc,
};

static struct clk sdma_ick = {
	.name		= "sdma_ick",
1574
	.ops		= &clkops_null, /* RMK: missing? */
1575
	.parent		= &l4_ck,
1576
	.clkdm_name	= "core_l3_clkdm",
1577
	.recalc		= &followparent_recalc,
1578 1579 1580 1581
};

static struct clk vlynq_ick = {
	.name		= "vlynq_ick",
1582
	.ops		= &clkops_omap2_dflt_wait,
1583
	.parent		= &core_l3_ck,
1584
	.clkdm_name	= "core_l3_clkdm",
1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_VLYNQ_SHIFT,
	.recalc		= &followparent_recalc,
};

static const struct clksel_rate vlynq_fck_96m_rates[] = {
	{ .div = 1, .val = 0, .flags = RATE_IN_242X | DEFAULT_RATE },
	{ .div = 0 }
};

static const struct clksel_rate vlynq_fck_core_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_242X },
	{ .div = 2, .val = 2, .flags = RATE_IN_242X },
	{ .div = 3, .val = 3, .flags = RATE_IN_242X },
	{ .div = 4, .val = 4, .flags = RATE_IN_242X },
	{ .div = 6, .val = 6, .flags = RATE_IN_242X },
	{ .div = 8, .val = 8, .flags = RATE_IN_242X },
	{ .div = 9, .val = 9, .flags = RATE_IN_242X },
	{ .div = 12, .val = 12, .flags = RATE_IN_242X },
	{ .div = 16, .val = 16, .flags = RATE_IN_242X | DEFAULT_RATE },
	{ .div = 18, .val = 18, .flags = RATE_IN_242X },
	{ .div = 0 }
};

static const struct clksel vlynq_fck_clksel[] = {
	{ .parent = &func_96m_ck, .rates = vlynq_fck_96m_rates },
	{ .parent = &core_ck,	  .rates = vlynq_fck_core_rates },
	{ .parent = NULL }
1613 1614 1615 1616
};

static struct clk vlynq_fck = {
	.name		= "vlynq_fck",
1617
	.ops		= &clkops_omap2_dflt_wait,
1618
	.parent		= &func_96m_ck,
1619
	.clkdm_name	= "core_l3_clkdm",
1620 1621 1622 1623 1624 1625 1626
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_VLYNQ_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP2420_CLKSEL_VLYNQ_MASK,
	.clksel		= vlynq_fck_clksel,
	.recalc		= &omap2_clksel_recalc,
1627 1628 1629 1630
};

static struct clk des_ick = {
	.name		= "des_ick",
1631
	.ops		= &clkops_omap2_dflt_wait,
1632
	.parent		= &l4_ck,
1633
	.clkdm_name	= "core_l4_clkdm",
1634 1635 1636
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_DES_SHIFT,
	.recalc		= &followparent_recalc,
1637 1638 1639 1640
};

static struct clk sha_ick = {
	.name		= "sha_ick",
1641
	.ops		= &clkops_omap2_dflt_wait,
1642
	.parent		= &l4_ck,
1643
	.clkdm_name	= "core_l4_clkdm",
1644 1645 1646
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_SHA_SHIFT,
	.recalc		= &followparent_recalc,
1647 1648 1649 1650
};

static struct clk rng_ick = {
	.name		= "rng_ick",
1651
	.ops		= &clkops_omap2_dflt_wait,
1652
	.parent		= &l4_ck,
1653
	.clkdm_name	= "core_l4_clkdm",
1654 1655 1656
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_RNG_SHIFT,
	.recalc		= &followparent_recalc,
1657 1658 1659 1660
};

static struct clk aes_ick = {
	.name		= "aes_ick",
1661
	.ops		= &clkops_omap2_dflt_wait,
1662
	.parent		= &l4_ck,
1663
	.clkdm_name	= "core_l4_clkdm",
1664 1665 1666
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_AES_SHIFT,
	.recalc		= &followparent_recalc,
1667 1668 1669 1670
};

static struct clk pka_ick = {
	.name		= "pka_ick",
1671
	.ops		= &clkops_omap2_dflt_wait,
1672
	.parent		= &l4_ck,
1673
	.clkdm_name	= "core_l4_clkdm",
1674 1675 1676
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_PKA_SHIFT,
	.recalc		= &followparent_recalc,
1677 1678 1679 1680
};

static struct clk usb_fck = {
	.name		= "usb_fck",
1681
	.ops		= &clkops_omap2_dflt_wait,
1682
	.parent		= &func_48m_ck,
1683
	.clkdm_name	= "core_l3_clkdm",
1684 1685 1686
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP24XX_EN_USB_SHIFT,
	.recalc		= &followparent_recalc,
1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
};

/*
 * This clock is a composite clock which does entire set changes then
 * forces a rebalance. It keys on the MPU speed, but it really could
 * be any key speed part of a set in the rate table.
 *
 * to really change a set, you need memory table sets which get changed
 * in sram, pre-notifiers & post notifiers, changing the top set, without
 * having low level display recalc's won't work... this is why dpm notifiers
 * work, isr's off, walk a list of clocks already _off_ and not messing with
 * the bus.
 *
 * This clock should have no parent. It embodies the entire upper level
 * active set. A parent will mess up some of the init also.
 */
static struct clk virt_prcm_set = {
	.name		= "virt_prcm_set",
1705
	.ops		= &clkops_null,
1706
	.parent		= &mpu_ck,	/* Indexed by mpu speed, no parent */
1707
	.recalc		= &omap2_table_mpu_recalc,	/* sets are keyed on mpu rate */
1708 1709 1710
	.set_rate	= &omap2_select_table_rate,
	.round_rate	= &omap2_round_to_table_rate,
};
1711

1712 1713 1714 1715 1716

/*
 * clkdev integration
 */

1717
static struct omap_clk omap2420_clks[] = {
1718
	/* external root sources */
1719 1720 1721 1722 1723
	CLK(NULL,	"func_32k_ck",	&func_32k_ck,	CK_242X),
	CLK(NULL,	"secure_32k_ck", &secure_32k_ck, CK_242X),
	CLK(NULL,	"osc_ck",	&osc_ck,	CK_242X),
	CLK(NULL,	"sys_ck",	&sys_ck,	CK_242X),
	CLK(NULL,	"alt_ck",	&alt_ck,	CK_242X),
1724
	/* internal analog sources */
1725 1726 1727
	CLK(NULL,	"dpll_ck",	&dpll_ck,	CK_242X),
	CLK(NULL,	"apll96_ck",	&apll96_ck,	CK_242X),
	CLK(NULL,	"apll54_ck",	&apll54_ck,	CK_242X),
1728
	/* internal prcm root sources */
1729 1730 1731 1732 1733 1734 1735 1736
	CLK(NULL,	"func_54m_ck",	&func_54m_ck,	CK_242X),
	CLK(NULL,	"core_ck",	&core_ck,	CK_242X),
	CLK(NULL,	"func_96m_ck",	&func_96m_ck,	CK_242X),
	CLK(NULL,	"func_48m_ck",	&func_48m_ck,	CK_242X),
	CLK(NULL,	"func_12m_ck",	&func_12m_ck,	CK_242X),
	CLK(NULL,	"ck_wdt1_osc",	&wdt1_osc_ck,	CK_242X),
	CLK(NULL,	"sys_clkout_src", &sys_clkout_src, CK_242X),
	CLK(NULL,	"sys_clkout",	&sys_clkout,	CK_242X),
1737 1738 1739 1740
	CLK(NULL,	"sys_clkout2_src", &sys_clkout2_src, CK_242X),
	CLK(NULL,	"sys_clkout2",	&sys_clkout2,	CK_242X),
	CLK(NULL,	"emul_ck",	&emul_ck,	CK_242X),
	/* mpu domain clocks */
1741
	CLK(NULL,	"mpu_ck",	&mpu_ck,	CK_242X),
1742
	/* dsp domain clocks */
1743 1744
	CLK(NULL,	"dsp_fck",	&dsp_fck,	CK_242X),
	CLK(NULL,	"dsp_irate_ick", &dsp_irate_ick, CK_242X),
1745 1746 1747 1748
	CLK(NULL,	"dsp_ick",	&dsp_ick,	CK_242X),
	CLK(NULL,	"iva1_ifck",	&iva1_ifck,	CK_242X),
	CLK(NULL,	"iva1_mpu_int_ifck", &iva1_mpu_int_ifck, CK_242X),
	/* GFX domain clocks */
1749 1750 1751
	CLK(NULL,	"gfx_3d_fck",	&gfx_3d_fck,	CK_242X),
	CLK(NULL,	"gfx_2d_fck",	&gfx_2d_fck,	CK_242X),
	CLK(NULL,	"gfx_ick",	&gfx_ick,	CK_242X),
1752
	/* DSS domain clocks */
1753 1754 1755 1756
	CLK("omapdss",	"ick",		&dss_ick,	CK_242X),
	CLK("omapdss",	"dss1_fck",	&dss1_fck,	CK_242X),
	CLK("omapdss",	"dss2_fck",	&dss2_fck,	CK_242X),
	CLK("omapdss",	"tv_fck",	&dss_54m_fck,	CK_242X),
1757
	/* L3 domain clocks */
1758 1759 1760
	CLK(NULL,	"core_l3_ck",	&core_l3_ck,	CK_242X),
	CLK(NULL,	"ssi_fck",	&ssi_ssr_sst_fck, CK_242X),
	CLK(NULL,	"usb_l4_ick",	&usb_l4_ick,	CK_242X),
1761
	/* L4 domain clocks */
1762 1763
	CLK(NULL,	"l4_ck",	&l4_ck,		CK_242X),
	CLK(NULL,	"ssi_l4_ick",	&ssi_l4_ick,	CK_242X),
1764
	/* virtual meta-group clock */
1765
	CLK(NULL,	"virt_prcm_set", &virt_prcm_set, CK_242X),
1766
	/* general l4 interface ck, multi-parent functional clk */
1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
	CLK(NULL,	"gpt1_ick",	&gpt1_ick,	CK_242X),
	CLK(NULL,	"gpt1_fck",	&gpt1_fck,	CK_242X),
	CLK(NULL,	"gpt2_ick",	&gpt2_ick,	CK_242X),
	CLK(NULL,	"gpt2_fck",	&gpt2_fck,	CK_242X),
	CLK(NULL,	"gpt3_ick",	&gpt3_ick,	CK_242X),
	CLK(NULL,	"gpt3_fck",	&gpt3_fck,	CK_242X),
	CLK(NULL,	"gpt4_ick",	&gpt4_ick,	CK_242X),
	CLK(NULL,	"gpt4_fck",	&gpt4_fck,	CK_242X),
	CLK(NULL,	"gpt5_ick",	&gpt5_ick,	CK_242X),
	CLK(NULL,	"gpt5_fck",	&gpt5_fck,	CK_242X),
	CLK(NULL,	"gpt6_ick",	&gpt6_ick,	CK_242X),
	CLK(NULL,	"gpt6_fck",	&gpt6_fck,	CK_242X),
	CLK(NULL,	"gpt7_ick",	&gpt7_ick,	CK_242X),
	CLK(NULL,	"gpt7_fck",	&gpt7_fck,	CK_242X),
	CLK(NULL,	"gpt8_ick",	&gpt8_ick,	CK_242X),
	CLK(NULL,	"gpt8_fck",	&gpt8_fck,	CK_242X),
	CLK(NULL,	"gpt9_ick",	&gpt9_ick,	CK_242X),
	CLK(NULL,	"gpt9_fck",	&gpt9_fck,	CK_242X),
	CLK(NULL,	"gpt10_ick",	&gpt10_ick,	CK_242X),
	CLK(NULL,	"gpt10_fck",	&gpt10_fck,	CK_242X),
	CLK(NULL,	"gpt11_ick",	&gpt11_ick,	CK_242X),
	CLK(NULL,	"gpt11_fck",	&gpt11_fck,	CK_242X),
	CLK(NULL,	"gpt12_ick",	&gpt12_ick,	CK_242X),
	CLK(NULL,	"gpt12_fck",	&gpt12_fck,	CK_242X),
	CLK("omap-mcbsp.1", "ick",	&mcbsp1_ick,	CK_242X),
	CLK("omap-mcbsp.1", "fck",	&mcbsp1_fck,	CK_242X),
	CLK("omap-mcbsp.2", "ick",	&mcbsp2_ick,	CK_242X),
	CLK("omap-mcbsp.2", "fck",	&mcbsp2_fck,	CK_242X),
	CLK("omap2_mcspi.1", "ick",	&mcspi1_ick,	CK_242X),
	CLK("omap2_mcspi.1", "fck",	&mcspi1_fck,	CK_242X),
	CLK("omap2_mcspi.2", "ick",	&mcspi2_ick,	CK_242X),
	CLK("omap2_mcspi.2", "fck",	&mcspi2_fck,	CK_242X),
	CLK(NULL,	"uart1_ick",	&uart1_ick,	CK_242X),
	CLK(NULL,	"uart1_fck",	&uart1_fck,	CK_242X),
	CLK(NULL,	"uart2_ick",	&uart2_ick,	CK_242X),
	CLK(NULL,	"uart2_fck",	&uart2_fck,	CK_242X),
	CLK(NULL,	"uart3_ick",	&uart3_ick,	CK_242X),
	CLK(NULL,	"uart3_fck",	&uart3_fck,	CK_242X),
	CLK(NULL,	"gpios_ick",	&gpios_ick,	CK_242X),
	CLK(NULL,	"gpios_fck",	&gpios_fck,	CK_242X),
	CLK("omap_wdt",	"ick",		&mpu_wdt_ick,	CK_242X),
	CLK("omap_wdt",	"fck",		&mpu_wdt_fck,	CK_242X),
	CLK(NULL,	"sync_32k_ick",	&sync_32k_ick,	CK_242X),
	CLK(NULL,	"wdt1_ick",	&wdt1_ick,	CK_242X),
	CLK(NULL,	"omapctrl_ick",	&omapctrl_ick,	CK_242X),
	CLK("omap24xxcam", "fck",	&cam_fck,	CK_242X),
	CLK("omap24xxcam", "ick",	&cam_ick,	CK_242X),
	CLK(NULL,	"mailboxes_ick", &mailboxes_ick,	CK_242X),
	CLK(NULL,	"wdt4_ick",	&wdt4_ick,	CK_242X),
	CLK(NULL,	"wdt4_fck",	&wdt4_fck,	CK_242X),
1817 1818
	CLK(NULL,	"wdt3_ick",	&wdt3_ick,	CK_242X),
	CLK(NULL,	"wdt3_fck",	&wdt3_fck,	CK_242X),
1819 1820
	CLK(NULL,	"mspro_ick",	&mspro_ick,	CK_242X),
	CLK(NULL,	"mspro_fck",	&mspro_fck,	CK_242X),
1821 1822
	CLK("mmci-omap.0", "ick",	&mmc_ick,	CK_242X),
	CLK("mmci-omap.0", "fck",	&mmc_fck,	CK_242X),
1823 1824
	CLK(NULL,	"fac_ick",	&fac_ick,	CK_242X),
	CLK(NULL,	"fac_fck",	&fac_fck,	CK_242X),
1825 1826
	CLK(NULL,	"eac_ick",	&eac_ick,	CK_242X),
	CLK(NULL,	"eac_fck",	&eac_fck,	CK_242X),
1827 1828 1829
	CLK("omap_hdq.0", "ick",	&hdq_ick,	CK_242X),
	CLK("omap_hdq.1", "fck",	&hdq_fck,	CK_242X),
	CLK("i2c_omap.1", "ick",	&i2c1_ick,	CK_242X),
1830
	CLK("i2c_omap.1", "fck",	&i2c1_fck,	CK_242X),
1831
	CLK("i2c_omap.2", "ick",	&i2c2_ick,	CK_242X),
1832
	CLK("i2c_omap.2", "fck",	&i2c2_fck,	CK_242X),
1833 1834 1835
	CLK(NULL,	"gpmc_fck",	&gpmc_fck,	CK_242X),
	CLK(NULL,	"sdma_fck",	&sdma_fck,	CK_242X),
	CLK(NULL,	"sdma_ick",	&sdma_ick,	CK_242X),
1836 1837
	CLK(NULL,	"vlynq_ick",	&vlynq_ick,	CK_242X),
	CLK(NULL,	"vlynq_fck",	&vlynq_fck,	CK_242X),
1838 1839 1840 1841 1842 1843
	CLK(NULL,	"des_ick",	&des_ick,	CK_242X),
	CLK(NULL,	"sha_ick",	&sha_ick,	CK_242X),
	CLK("omap_rng",	"ick",		&rng_ick,	CK_242X),
	CLK(NULL,	"aes_ick",	&aes_ick,	CK_242X),
	CLK(NULL,	"pka_ick",	&pka_ick,	CK_242X),
	CLK(NULL,	"usb_fck",	&usb_fck,	CK_242X),
1844 1845 1846 1847 1848 1849
};

/*
 * init code
 */

1850
int __init omap2420_clk_init(void)
1851 1852 1853 1854
{
	const struct prcm_config *prcm;
	struct omap_clk *c;
	u32 clkrate;
1855 1856 1857 1858 1859

	prcm_clksrc_ctrl = OMAP2420_PRCM_CLKSRC_CTRL;
	cm_idlest_pll = OMAP_CM_REGADDR(PLL_MOD, CM_IDLEST);
	cpu_mask = RATE_IN_242X;
	rate_table = omap2420_rate_table;
1860 1861 1862

	clk_init(&omap2_clk_functions);

1863 1864
	for (c = omap2420_clks; c < omap2420_clks + ARRAY_SIZE(omap2420_clks);
	     c++)
1865 1866 1867 1868
		clk_preinit(c->lk.clk);

	osc_ck.rate = omap2_osc_clk_recalc(&osc_ck);
	propagate_rate(&osc_ck);
1869
	sys_ck.rate = omap2xxx_sys_clk_recalc(&sys_ck);
1870 1871
	propagate_rate(&sys_ck);

1872 1873 1874 1875 1876 1877
	for (c = omap2420_clks; c < omap2420_clks + ARRAY_SIZE(omap2420_clks);
	     c++) {
		clkdev_add(&c->lk);
		clk_register(c->lk.clk);
		omap2_init_clk_clkdm(c->lk.clk);
	}
1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892

	/* Check the MPU rate set by bootloader */
	clkrate = omap2xxx_clk_get_core_rate(&dpll_ck);
	for (prcm = rate_table; prcm->mpu_speed; prcm++) {
		if (!(prcm->flags & cpu_mask))
			continue;
		if (prcm->xtal_speed != sys_ck.rate)
			continue;
		if (prcm->dpll_speed <= clkrate)
			break;
	}
	curr_prcm_set = prcm;

	recalculate_root_clocks();

1893 1894 1895
	pr_info("Clocking rate (Crystal/DPLL/MPU): %ld.%01ld/%ld/%ld MHz\n",
		(sys_ck.rate / 1000000), (sys_ck.rate / 100000) % 10,
		(dpll_ck.rate / 1000000), (mpu_ck.rate / 1000000)) ;
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909

	/*
	 * Only enable those clocks we will need, let the drivers
	 * enable other clocks as necessary
	 */
	clk_enable_init_clocks();

	/* Avoid sleeping sleeping during omap2_clk_prepare_for_reboot() */
	vclk = clk_get(NULL, "virt_prcm_set");
	sclk = clk_get(NULL, "sys_ck");
	dclk = clk_get(NULL, "dpll_ck");

	return 0;
}
1910