clock2420_data.c 56.3 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
	.flags		= RATE_FIXED,
59
	.clkdm_name	= "wkup_clkdm",
60
};
61

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

70 71 72
/* 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",
73
	.ops		= &clkops_oscck,
74
	.clkdm_name	= "wkup_clkdm",
75
	.recalc		= &omap2_osc_clk_recalc,
76 77
};

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

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

95 96 97 98 99
/*
 * Analog domain root source clocks
 */

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

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

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

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

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

/*
 * PRCM digital base sources
 */
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175

/* 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 },
};

176 177
static struct clk func_54m_ck = {
	.name		= "func_54m_ck",
178
	.ops		= &clkops_null,
179
	.parent		= &apll54_ck,	/* can also be alt_clk */
180
	.clkdm_name	= "wkup_clkdm",
181 182 183 184 185
	.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,
186
};
187

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

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

/* 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 }
220 221 222 223
};

static struct clk func_48m_ck = {
	.name		= "func_48m_ck",
224
	.ops		= &clkops_null,
225
	.parent		= &apll96_ck,	 /* 96M or Alt */
226
	.clkdm_name	= "wkup_clkdm",
227 228 229 230 231 232 233
	.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
234 235 236 237
};

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

/* Secure timer, only available in secure mode */
static struct clk wdt1_osc_ck = {
	.name		= "ck_wdt1_osc",
248
	.ops		= &clkops_null, /* RMK: missing? */
249
	.parent		= &osc_ck,
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 288 289 290
	.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",
291
	.ops		= &clkops_omap2_dflt,
292
	.parent		= &func_54m_ck,
293
	.clkdm_name	= "wkup_clkdm",
294
	.enable_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
295 296
	.enable_bit	= OMAP24XX_CLKOUT_EN_SHIFT,
	.init		= &omap2_init_clksel_parent,
297
	.clksel_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
	.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 }
317 318 319 320
};

static struct clk sys_clkout = {
	.name		= "sys_clkout",
321
	.ops		= &clkops_null,
322
	.parent		= &sys_clkout_src,
323
	.clkdm_name	= "wkup_clkdm",
324
	.clksel_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
325 326 327 328 329 330 331 332 333 334
	.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",
335
	.ops		= &clkops_omap2_dflt,
336
	.parent		= &func_54m_ck,
337
	.clkdm_name	= "wkup_clkdm",
338
	.enable_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
339 340
	.enable_bit	= OMAP2420_CLKOUT2_EN_SHIFT,
	.init		= &omap2_init_clksel_parent,
341
	.clksel_reg	= OMAP2420_PRCM_CLKOUT_CTRL,
342 343
	.clksel_mask	= OMAP2420_CLKOUT2_SOURCE_MASK,
	.clksel		= common_clkout_src_clksel,
344
	.recalc		= &omap2_clksel_recalc,
345 346 347 348 349 350 351
	.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 }
352 353 354 355 356
};

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

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

};
378

379 380 381 382 383 384 385 386 387 388
/*
 * 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
 *
 */
389 390 391 392 393 394 395 396 397 398 399 400 401 402
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 }
};

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

415
/*
416
 * DSP (2420-UMA+IVA1) clock domain
417 418
 * Clocks:
 *	2420: UMA_FCLK, UMA_ICLK, IVA_MPU, IVA_COP
419 420 421 422 423
 *
 * 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.
424
 */
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
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",
443
	.ops		= &clkops_omap2_dflt_wait,
444
	.parent		= &core_ck,
445
	.clkdm_name	= "dsp_clkdm",
446 447 448 449 450
	.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,
451 452 453
	.recalc		= &omap2_clksel_recalc,
};

454 455 456 457 458 459 460 461 462 463
/* 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 }
464 465
};

466
/* This clock does not exist as such in the TRM. */
467 468
static struct clk dsp_irate_ick = {
	.name		= "dsp_irate_ick",
469
	.ops		= &clkops_null,
470 471 472 473
	.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,
474 475 476
	.recalc		= &omap2_clksel_recalc,
};

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

486 487 488 489 490
/*
 * 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.
 */
491 492
static struct clk iva1_ifck = {
	.name		= "iva1_ifck",
493
	.ops		= &clkops_omap2_dflt_wait,
494
	.parent		= &core_ck,
495
	.clkdm_name	= "iva1_clkdm",
496 497 498 499 500
	.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,
501 502 503 504 505 506
	.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",
507
	.ops		= &clkops_omap2_dflt_wait,
508
	.parent		= &iva1_ifck,
509
	.clkdm_name	= "iva1_clkdm",
510 511 512
	.enable_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP2420_EN_IVA_MPU_SHIFT,
	.fixed_div	= 2,
513
	.recalc		= &omap_fixed_divisor_recalc,
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
};

/*
 * 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.
 */
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
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 }
};

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

/* 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 },
573 574
};

575
/* It is unclear from TRM whether usb_l4_ick is really in L3 or L4 clkdm */
576 577
static struct clk usb_l4_ick = {	/* FS-USB interface clock */
	.name		= "usb_l4_ick",
578
	.ops		= &clkops_omap2_dflt_wait,
579
	.parent		= &core_l3_ck,
580
	.clkdm_name	= "core_l4_clkdm",
581 582 583 584 585
	.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,
586 587 588
	.recalc		= &omap2_clksel_recalc,
};

589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
/*
 * 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",
609
	.ops		= &clkops_null,
610 611 612 613 614 615 616 617
	.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,
};

618 619 620 621
/*
 * 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.
622
 * SSI_SSR_FCLK, SSI_SST_FCLK, SSI_L4_ICLK
623 624 625
 *
 * ssr = core/1/2/3/4/5, sst = 1/2 ssr.
 */
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
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 }
};

641 642
static struct clk ssi_ssr_sst_fck = {
	.name		= "ssi_fck",
643
	.ops		= &clkops_omap2_dflt_wait,
644
	.parent		= &core_ck,
645
	.clkdm_name	= "core_l3_clkdm",
646 647 648 649 650
	.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,
651 652 653
	.recalc		= &omap2_clksel_recalc,
};

654 655 656 657 658 659 660 661 662 663 664 665 666 667
/*
 * 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,
};

668

669 670 671 672 673 674 675 676 677 678 679
/*
 * 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.
 *
 */
680 681 682 683 684 685 686

/* 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 },
};

687 688
static struct clk gfx_3d_fck = {
	.name		= "gfx_3d_fck",
689
	.ops		= &clkops_omap2_dflt_wait,
690
	.parent		= &core_l3_ck,
691
	.clkdm_name	= "gfx_clkdm",
692 693 694 695 696
	.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,
697
	.recalc		= &omap2_clksel_recalc,
698 699
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
700 701 702 703
};

static struct clk gfx_2d_fck = {
	.name		= "gfx_2d_fck",
704
	.ops		= &clkops_omap2_dflt_wait,
705
	.parent		= &core_l3_ck,
706
	.clkdm_name	= "gfx_clkdm",
707 708 709 710 711
	.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,
712 713 714 715 716
	.recalc		= &omap2_clksel_recalc,
};

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

/*
 * DSS clock domain
 * CLOCKs:
 * DSS_L4_ICLK, DSS_L3_ICLK,
 * DSS_CLK1, DSS_CLK2, DSS_54MHz_CLK
 *
 * DSS is both initiator and target.
 */
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
/* 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 },
};

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

static struct clk dss1_fck = {
	.name		= "dss1_fck",
772
	.ops		= &clkops_omap2_dflt,
773
	.parent		= &core_ck,		/* Core or sys */
774
	.clkdm_name	= "dss_clkdm",
775 776 777 778 779 780
	.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,
781
	.recalc		= &omap2_clksel_recalc,
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
};

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 }
798 799 800 801
};

static struct clk dss2_fck = {		/* Alt clk used in power management */
	.name		= "dss2_fck",
802
	.ops		= &clkops_omap2_dflt,
803
	.parent		= &sys_ck,		/* fixed at sys_ck or 48MHz */
804
	.clkdm_name	= "dss_clkdm",
805 806 807 808 809 810 811
	.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,
812 813 814 815
};

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

/*
 * 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.
 */
830 831 832 833 834 835 836 837 838 839 840 841
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 },
};

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

static struct clk gpt1_fck = {
	.name		= "gpt1_fck",
854
	.ops		= &clkops_omap2_dflt_wait,
855
	.parent		= &func_32k_ck,
856
	.clkdm_name	= "core_l4_clkdm",
857 858 859 860 861 862 863 864 865
	.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
866 867 868 869
};

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

static struct clk gpt2_fck = {
	.name		= "gpt2_fck",
880
	.ops		= &clkops_omap2_dflt_wait,
881
	.parent		= &func_32k_ck,
882
	.clkdm_name	= "core_l4_clkdm",
883 884 885 886 887 888 889
	.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,
890 891 892 893
};

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

static struct clk gpt3_fck = {
	.name		= "gpt3_fck",
904
	.ops		= &clkops_omap2_dflt_wait,
905
	.parent		= &func_32k_ck,
906
	.clkdm_name	= "core_l4_clkdm",
907 908 909 910 911 912 913
	.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,
914 915 916 917
};

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

static struct clk gpt4_fck = {
	.name		= "gpt4_fck",
928
	.ops		= &clkops_omap2_dflt_wait,
929
	.parent		= &func_32k_ck,
930
	.clkdm_name	= "core_l4_clkdm",
931 932 933 934 935 936 937
	.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,
938 939 940 941
};

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

static struct clk gpt5_fck = {
	.name		= "gpt5_fck",
952
	.ops		= &clkops_omap2_dflt_wait,
953
	.parent		= &func_32k_ck,
954
	.clkdm_name	= "core_l4_clkdm",
955 956 957 958 959 960 961
	.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,
962 963 964 965
};

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

static struct clk gpt6_fck = {
	.name		= "gpt6_fck",
976
	.ops		= &clkops_omap2_dflt_wait,
977
	.parent		= &func_32k_ck,
978
	.clkdm_name	= "core_l4_clkdm",
979 980 981 982 983 984 985
	.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,
986 987 988 989
};

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

static struct clk gpt7_fck = {
	.name		= "gpt7_fck",
999
	.ops		= &clkops_omap2_dflt_wait,
1000
	.parent		= &func_32k_ck,
1001
	.clkdm_name	= "core_l4_clkdm",
1002 1003 1004 1005 1006 1007 1008
	.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,
1009 1010 1011 1012
};

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

static struct clk gpt8_fck = {
	.name		= "gpt8_fck",
1023
	.ops		= &clkops_omap2_dflt_wait,
1024
	.parent		= &func_32k_ck,
1025
	.clkdm_name	= "core_l4_clkdm",
1026 1027 1028 1029 1030 1031 1032
	.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,
1033 1034 1035 1036
};

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

static struct clk gpt9_fck = {
	.name		= "gpt9_fck",
1047
	.ops		= &clkops_omap2_dflt_wait,
1048
	.parent		= &func_32k_ck,
1049
	.clkdm_name	= "core_l4_clkdm",
1050 1051 1052 1053 1054 1055 1056
	.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,
1057 1058 1059 1060
};

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

static struct clk gpt10_fck = {
	.name		= "gpt10_fck",
1071
	.ops		= &clkops_omap2_dflt_wait,
1072
	.parent		= &func_32k_ck,
1073
	.clkdm_name	= "core_l4_clkdm",
1074 1075 1076 1077 1078 1079 1080
	.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,
1081 1082 1083 1084
};

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

static struct clk gpt11_fck = {
	.name		= "gpt11_fck",
1095
	.ops		= &clkops_omap2_dflt_wait,
1096
	.parent		= &func_32k_ck,
1097
	.clkdm_name	= "core_l4_clkdm",
1098 1099 1100 1101 1102 1103 1104
	.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,
1105 1106 1107 1108
};

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

static struct clk gpt12_fck = {
	.name		= "gpt12_fck",
1119
	.ops		= &clkops_omap2_dflt_wait,
1120
	.parent		= &secure_32k_ck,
1121
	.clkdm_name	= "core_l4_clkdm",
1122 1123 1124 1125 1126 1127 1128
	.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,
1129 1130 1131
};

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

1353 1354 1355 1356 1357
/*
 * 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.
 */
1358 1359
static struct clk cam_fck = {
	.name		= "cam_fck",
1360
	.ops		= &clkops_omap2_dflt,
1361
	.parent		= &func_96m_ck,
1362
	.clkdm_name	= "core_l3_clkdm",
1363 1364 1365
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_CAM_SHIFT,
	.recalc		= &followparent_recalc,
1366 1367 1368 1369
};

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

static struct clk vlynq_ick = {
	.name		= "vlynq_ick",
1585
	.ops		= &clkops_omap2_dflt_wait,
1586
	.parent		= &core_l3_ck,
1587
	.clkdm_name	= "core_l3_clkdm",
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 1613 1614 1615
	.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 }
1616 1617 1618 1619
};

static struct clk vlynq_fck = {
	.name		= "vlynq_fck",
1620
	.ops		= &clkops_omap2_dflt_wait,
1621
	.parent		= &func_96m_ck,
1622
	.clkdm_name	= "core_l3_clkdm",
1623 1624 1625 1626 1627 1628 1629
	.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,
1630 1631 1632 1633
};

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

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

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

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

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

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

/*
 * 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",
1708
	.ops		= &clkops_null,
1709
	.parent		= &mpu_ck,	/* Indexed by mpu speed, no parent */
1710
	.recalc		= &omap2_table_mpu_recalc,	/* sets are keyed on mpu rate */
1711 1712 1713
	.set_rate	= &omap2_select_table_rate,
	.round_rate	= &omap2_round_to_table_rate,
};
1714

1715 1716 1717 1718 1719

/*
 * clkdev integration
 */

1720
static struct omap_clk omap2420_clks[] = {
1721
	/* external root sources */
1722 1723 1724 1725 1726
	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),
1727
	/* internal analog sources */
1728 1729 1730
	CLK(NULL,	"dpll_ck",	&dpll_ck,	CK_242X),
	CLK(NULL,	"apll96_ck",	&apll96_ck,	CK_242X),
	CLK(NULL,	"apll54_ck",	&apll54_ck,	CK_242X),
1731
	/* internal prcm root sources */
1732 1733 1734 1735 1736 1737 1738 1739
	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),
1740 1741 1742 1743
	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 */
1744
	CLK(NULL,	"mpu_ck",	&mpu_ck,	CK_242X),
1745
	/* dsp domain clocks */
1746 1747
	CLK(NULL,	"dsp_fck",	&dsp_fck,	CK_242X),
	CLK(NULL,	"dsp_irate_ick", &dsp_irate_ick, CK_242X),
1748 1749 1750 1751
	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 */
1752 1753 1754
	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),
1755
	/* DSS domain clocks */
1756 1757 1758 1759
	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),
1760
	/* L3 domain clocks */
1761 1762 1763
	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),
1764
	/* L4 domain clocks */
1765 1766
	CLK(NULL,	"l4_ck",	&l4_ck,		CK_242X),
	CLK(NULL,	"ssi_l4_ick",	&ssi_l4_ick,	CK_242X),
1767
	/* virtual meta-group clock */
1768
	CLK(NULL,	"virt_prcm_set", &virt_prcm_set, CK_242X),
1769
	/* general l4 interface ck, multi-parent functional clk */
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 1817 1818 1819
	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),
1820 1821
	CLK(NULL,	"wdt3_ick",	&wdt3_ick,	CK_242X),
	CLK(NULL,	"wdt3_fck",	&wdt3_fck,	CK_242X),
1822 1823
	CLK(NULL,	"mspro_ick",	&mspro_ick,	CK_242X),
	CLK(NULL,	"mspro_fck",	&mspro_fck,	CK_242X),
1824 1825
	CLK("mmci-omap.0", "ick",	&mmc_ick,	CK_242X),
	CLK("mmci-omap.0", "fck",	&mmc_fck,	CK_242X),
1826 1827
	CLK(NULL,	"fac_ick",	&fac_ick,	CK_242X),
	CLK(NULL,	"fac_fck",	&fac_fck,	CK_242X),
1828 1829
	CLK(NULL,	"eac_ick",	&eac_ick,	CK_242X),
	CLK(NULL,	"eac_fck",	&eac_fck,	CK_242X),
1830 1831 1832
	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),
1833
	CLK("i2c_omap.1", "fck",	&i2c1_fck,	CK_242X),
1834
	CLK("i2c_omap.2", "ick",	&i2c2_ick,	CK_242X),
1835
	CLK("i2c_omap.2", "fck",	&i2c2_fck,	CK_242X),
1836 1837 1838
	CLK(NULL,	"gpmc_fck",	&gpmc_fck,	CK_242X),
	CLK(NULL,	"sdma_fck",	&sdma_fck,	CK_242X),
	CLK(NULL,	"sdma_ick",	&sdma_ick,	CK_242X),
1839 1840
	CLK(NULL,	"vlynq_ick",	&vlynq_ick,	CK_242X),
	CLK(NULL,	"vlynq_fck",	&vlynq_fck,	CK_242X),
1841 1842 1843 1844 1845 1846
	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),
1847 1848 1849 1850 1851 1852
};

/*
 * init code
 */

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

	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;
1863 1864 1865

	clk_init(&omap2_clk_functions);

1866 1867
	for (c = omap2420_clks; c < omap2420_clks + ARRAY_SIZE(omap2420_clks);
	     c++)
1868 1869 1870 1871
		clk_preinit(c->lk.clk);

	osc_ck.rate = omap2_osc_clk_recalc(&osc_ck);
	propagate_rate(&osc_ck);
1872
	sys_ck.rate = omap2xxx_sys_clk_recalc(&sys_ck);
1873 1874
	propagate_rate(&sys_ck);

1875 1876 1877 1878 1879 1880
	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);
	}
1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895

	/* 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();

1896 1897 1898
	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)) ;
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912

	/*
	 * 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;
}
1913