clock2420_data.c 56.9 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
	.flags		= DELAYED_APP,
408
	.clkdm_name	= "mpu_clkdm",
409 410 411
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(MPU_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP24XX_CLKSEL_MPU_MASK,
412
	.clksel		= mpu_clksel,
413 414
	.recalc		= &omap2_clksel_recalc,
};
415

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

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

468
/* This clock does not exist as such in the TRM. */
469 470
static struct clk dsp_irate_ick = {
	.name		= "dsp_irate_ick",
471
	.ops		= &clkops_null,
472
	.parent		= &dsp_fck,
473
	.flags		= DELAYED_APP,
474 475 476
	.clksel_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP24XX_CLKSEL_DSP_IF_MASK,
	.clksel		= dsp_irate_ick_clksel,
477 478 479
	.recalc		= &omap2_clksel_recalc,
};

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

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

/*
 * 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.
 */
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
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 }
};

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

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

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

595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
/*
 * 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",
615
	.ops		= &clkops_null,
616
	.parent		= &core_l3_ck,
617
	.flags		= DELAYED_APP,
618 619 620 621 622 623 624 625 626
	.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,
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
};

627 628 629 630
/*
 * 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.
631
 * SSI_SSR_FCLK, SSI_SST_FCLK, SSI_L4_ICLK
632 633 634
 *
 * ssr = core/1/2/3/4/5, sst = 1/2 ssr.
 */
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
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 }
};

650 651
static struct clk ssi_ssr_sst_fck = {
	.name		= "ssi_fck",
652
	.ops		= &clkops_omap2_dflt_wait,
653
	.parent		= &core_ck,
654
	.flags		= DELAYED_APP,
655
	.clkdm_name	= "core_l3_clkdm",
656 657 658 659 660
	.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,
661
	.recalc		= &omap2_clksel_recalc,
662 663
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
664 665
};

666 667 668 669 670 671 672 673 674 675 676 677 678 679
/*
 * 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,
};

680

681 682 683 684 685 686 687 688 689 690 691
/*
 * 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.
 *
 */
692 693 694 695 696 697 698

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

699 700
static struct clk gfx_3d_fck = {
	.name		= "gfx_3d_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_3D_SHIFT,
	.clksel_reg	= OMAP_CM_REGADDR(GFX_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP_CLKSEL_GFX_MASK,
	.clksel		= gfx_fck_clksel,
709
	.recalc		= &omap2_clksel_recalc,
710 711
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
712 713 714 715
};

static struct clk gfx_2d_fck = {
	.name		= "gfx_2d_fck",
716
	.ops		= &clkops_omap2_dflt_wait,
717
	.parent		= &core_l3_ck,
718
	.flags		= DELAYED_APP,
719
	.clkdm_name	= "gfx_clkdm",
720 721 722 723 724
	.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,
725 726 727 728 729
	.recalc		= &omap2_clksel_recalc,
};

static struct clk gfx_ick = {
	.name		= "gfx_ick",		/* From l3 */
730
	.ops		= &clkops_omap2_dflt_wait,
731
	.parent		= &core_l3_ck,
732
	.clkdm_name	= "gfx_clkdm",
733 734 735
	.enable_reg	= OMAP_CM_REGADDR(GFX_MOD, CM_ICLKEN),
	.enable_bit	= OMAP_EN_GFX_SHIFT,
	.recalc		= &followparent_recalc,
736 737 738 739 740 741 742 743 744 745
};

/*
 * DSS clock domain
 * CLOCKs:
 * DSS_L4_ICLK, DSS_L3_ICLK,
 * DSS_CLK1, DSS_CLK2, DSS_54MHz_CLK
 *
 * DSS is both initiator and target.
 */
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
/* 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 },
};

773 774
static struct clk dss_ick = {		/* Enables both L3,L4 ICLK's */
	.name		= "dss_ick",
775
	.ops		= &clkops_omap2_dflt,
776
	.parent		= &l4_ck,	/* really both l3 and l4 */
777
	.clkdm_name	= "dss_clkdm",
778 779 780
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_DSS1_SHIFT,
	.recalc		= &followparent_recalc,
781 782 783 784
};

static struct clk dss1_fck = {
	.name		= "dss1_fck",
785
	.ops		= &clkops_omap2_dflt,
786
	.parent		= &core_ck,		/* Core or sys */
787
	.flags		= DELAYED_APP,
788
	.clkdm_name	= "dss_clkdm",
789 790 791 792 793 794
	.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,
795
	.recalc		= &omap2_clksel_recalc,
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
};

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 }
814 815 816 817
};

static struct clk dss2_fck = {		/* Alt clk used in power management */
	.name		= "dss2_fck",
818
	.ops		= &clkops_omap2_dflt,
819
	.parent		= &sys_ck,		/* fixed at sys_ck or 48MHz */
820
	.flags		= DELAYED_APP,
821
	.clkdm_name	= "dss_clkdm",
822 823 824 825 826 827 828
	.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,
829 830 831 832
};

static struct clk dss_54m_fck = {	/* Alt clk used in power management */
	.name		= "dss_54m_fck",	/* 54m tv clk */
833
	.ops		= &clkops_omap2_dflt_wait,
834
	.parent		= &func_54m_ck,
835
	.clkdm_name	= "dss_clkdm",
836 837 838
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_TV_SHIFT,
	.recalc		= &followparent_recalc,
839 840 841 842 843 844 845 846
};

/*
 * 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.
 */
847 848 849 850 851 852 853 854 855 856 857 858
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 },
};

859 860
static struct clk gpt1_ick = {
	.name		= "gpt1_ick",
861
	.ops		= &clkops_omap2_dflt_wait,
862
	.parent		= &l4_ck,
863
	.clkdm_name	= "core_l4_clkdm",
864 865 866
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_GPT1_SHIFT,
	.recalc		= &followparent_recalc,
867 868 869 870
};

static struct clk gpt1_fck = {
	.name		= "gpt1_fck",
871
	.ops		= &clkops_omap2_dflt_wait,
872
	.parent		= &func_32k_ck,
873
	.clkdm_name	= "core_l4_clkdm",
874 875 876 877 878 879 880 881 882
	.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
883 884 885 886
};

static struct clk gpt2_ick = {
	.name		= "gpt2_ick",
887
	.ops		= &clkops_omap2_dflt_wait,
888
	.parent		= &l4_ck,
889
	.clkdm_name	= "core_l4_clkdm",
890 891 892
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT2_SHIFT,
	.recalc		= &followparent_recalc,
893 894 895 896
};

static struct clk gpt2_fck = {
	.name		= "gpt2_fck",
897
	.ops		= &clkops_omap2_dflt_wait,
898
	.parent		= &func_32k_ck,
899
	.clkdm_name	= "core_l4_clkdm",
900 901 902 903 904 905 906
	.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,
907 908 909 910
};

static struct clk gpt3_ick = {
	.name		= "gpt3_ick",
911
	.ops		= &clkops_omap2_dflt_wait,
912
	.parent		= &l4_ck,
913
	.clkdm_name	= "core_l4_clkdm",
914 915 916
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT3_SHIFT,
	.recalc		= &followparent_recalc,
917 918 919 920
};

static struct clk gpt3_fck = {
	.name		= "gpt3_fck",
921
	.ops		= &clkops_omap2_dflt_wait,
922
	.parent		= &func_32k_ck,
923
	.clkdm_name	= "core_l4_clkdm",
924 925 926 927 928 929 930
	.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,
931 932 933 934
};

static struct clk gpt4_ick = {
	.name		= "gpt4_ick",
935
	.ops		= &clkops_omap2_dflt_wait,
936
	.parent		= &l4_ck,
937
	.clkdm_name	= "core_l4_clkdm",
938 939 940
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT4_SHIFT,
	.recalc		= &followparent_recalc,
941 942 943 944
};

static struct clk gpt4_fck = {
	.name		= "gpt4_fck",
945
	.ops		= &clkops_omap2_dflt_wait,
946
	.parent		= &func_32k_ck,
947
	.clkdm_name	= "core_l4_clkdm",
948 949 950 951 952 953 954
	.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,
955 956 957 958
};

static struct clk gpt5_ick = {
	.name		= "gpt5_ick",
959
	.ops		= &clkops_omap2_dflt_wait,
960
	.parent		= &l4_ck,
961
	.clkdm_name	= "core_l4_clkdm",
962 963 964
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT5_SHIFT,
	.recalc		= &followparent_recalc,
965 966 967 968
};

static struct clk gpt5_fck = {
	.name		= "gpt5_fck",
969
	.ops		= &clkops_omap2_dflt_wait,
970
	.parent		= &func_32k_ck,
971
	.clkdm_name	= "core_l4_clkdm",
972 973 974 975 976 977 978
	.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,
979 980 981 982
};

static struct clk gpt6_ick = {
	.name		= "gpt6_ick",
983
	.ops		= &clkops_omap2_dflt_wait,
984
	.parent		= &l4_ck,
985
	.clkdm_name	= "core_l4_clkdm",
986 987 988
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT6_SHIFT,
	.recalc		= &followparent_recalc,
989 990 991 992
};

static struct clk gpt6_fck = {
	.name		= "gpt6_fck",
993
	.ops		= &clkops_omap2_dflt_wait,
994
	.parent		= &func_32k_ck,
995
	.clkdm_name	= "core_l4_clkdm",
996 997 998 999 1000 1001 1002
	.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,
1003 1004 1005 1006
};

static struct clk gpt7_ick = {
	.name		= "gpt7_ick",
1007
	.ops		= &clkops_omap2_dflt_wait,
1008
	.parent		= &l4_ck,
1009 1010 1011
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT7_SHIFT,
	.recalc		= &followparent_recalc,
1012 1013 1014 1015
};

static struct clk gpt7_fck = {
	.name		= "gpt7_fck",
1016
	.ops		= &clkops_omap2_dflt_wait,
1017
	.parent		= &func_32k_ck,
1018
	.clkdm_name	= "core_l4_clkdm",
1019 1020 1021 1022 1023 1024 1025
	.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,
1026 1027 1028 1029
};

static struct clk gpt8_ick = {
	.name		= "gpt8_ick",
1030
	.ops		= &clkops_omap2_dflt_wait,
1031
	.parent		= &l4_ck,
1032
	.clkdm_name	= "core_l4_clkdm",
1033 1034 1035
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT8_SHIFT,
	.recalc		= &followparent_recalc,
1036 1037 1038 1039
};

static struct clk gpt8_fck = {
	.name		= "gpt8_fck",
1040
	.ops		= &clkops_omap2_dflt_wait,
1041
	.parent		= &func_32k_ck,
1042
	.clkdm_name	= "core_l4_clkdm",
1043 1044 1045 1046 1047 1048 1049
	.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,
1050 1051 1052 1053
};

static struct clk gpt9_ick = {
	.name		= "gpt9_ick",
1054
	.ops		= &clkops_omap2_dflt_wait,
1055
	.parent		= &l4_ck,
1056
	.clkdm_name	= "core_l4_clkdm",
1057 1058 1059
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT9_SHIFT,
	.recalc		= &followparent_recalc,
1060 1061 1062 1063
};

static struct clk gpt9_fck = {
	.name		= "gpt9_fck",
1064
	.ops		= &clkops_omap2_dflt_wait,
1065
	.parent		= &func_32k_ck,
1066
	.clkdm_name	= "core_l4_clkdm",
1067 1068 1069 1070 1071 1072 1073
	.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,
1074 1075 1076 1077
};

static struct clk gpt10_ick = {
	.name		= "gpt10_ick",
1078
	.ops		= &clkops_omap2_dflt_wait,
1079
	.parent		= &l4_ck,
1080
	.clkdm_name	= "core_l4_clkdm",
1081 1082 1083
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT10_SHIFT,
	.recalc		= &followparent_recalc,
1084 1085 1086 1087
};

static struct clk gpt10_fck = {
	.name		= "gpt10_fck",
1088
	.ops		= &clkops_omap2_dflt_wait,
1089
	.parent		= &func_32k_ck,
1090
	.clkdm_name	= "core_l4_clkdm",
1091 1092 1093 1094 1095 1096 1097
	.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,
1098 1099 1100 1101
};

static struct clk gpt11_ick = {
	.name		= "gpt11_ick",
1102
	.ops		= &clkops_omap2_dflt_wait,
1103
	.parent		= &l4_ck,
1104
	.clkdm_name	= "core_l4_clkdm",
1105 1106 1107
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT11_SHIFT,
	.recalc		= &followparent_recalc,
1108 1109 1110 1111
};

static struct clk gpt11_fck = {
	.name		= "gpt11_fck",
1112
	.ops		= &clkops_omap2_dflt_wait,
1113
	.parent		= &func_32k_ck,
1114
	.clkdm_name	= "core_l4_clkdm",
1115 1116 1117 1118 1119 1120 1121
	.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,
1122 1123 1124 1125
};

static struct clk gpt12_ick = {
	.name		= "gpt12_ick",
1126
	.ops		= &clkops_omap2_dflt_wait,
1127
	.parent		= &l4_ck,
1128
	.clkdm_name	= "core_l4_clkdm",
1129 1130 1131
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT12_SHIFT,
	.recalc		= &followparent_recalc,
1132 1133 1134 1135
};

static struct clk gpt12_fck = {
	.name		= "gpt12_fck",
1136
	.ops		= &clkops_omap2_dflt_wait,
1137
	.parent		= &secure_32k_ck,
1138
	.clkdm_name	= "core_l4_clkdm",
1139 1140 1141 1142 1143 1144 1145
	.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,
1146 1147 1148
};

static struct clk mcbsp1_ick = {
1149
	.name		= "mcbsp1_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_MCBSP1_SHIFT,
	.recalc		= &followparent_recalc,
1156 1157 1158
};

static struct clk mcbsp1_fck = {
1159
	.name		= "mcbsp1_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_MCBSP1_SHIFT,
	.recalc		= &followparent_recalc,
1166 1167 1168
};

static struct clk mcbsp2_ick = {
1169
	.name		= "mcbsp2_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_MCBSP2_SHIFT,
	.recalc		= &followparent_recalc,
1176 1177 1178
};

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

static struct clk mcspi1_ick = {
1189
	.name		= "mcspi1_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_MCSPI1_SHIFT,
	.recalc		= &followparent_recalc,
1196 1197 1198
};

static struct clk mcspi1_fck = {
1199
	.name		= "mcspi1_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_MCSPI1_SHIFT,
	.recalc		= &followparent_recalc,
1206 1207 1208
};

static struct clk mcspi2_ick = {
1209
	.name		= "mcspi2_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_MCSPI2_SHIFT,
	.recalc		= &followparent_recalc,
1216 1217 1218
};

static struct clk mcspi2_fck = {
1219
	.name		= "mcspi2_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_MCSPI2_SHIFT,
	.recalc		= &followparent_recalc,
1226 1227 1228 1229
};

static struct clk uart1_ick = {
	.name		= "uart1_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_UART1_SHIFT,
	.recalc		= &followparent_recalc,
1236 1237 1238 1239
};

static struct clk uart1_fck = {
	.name		= "uart1_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_UART1_SHIFT,
	.recalc		= &followparent_recalc,
1246 1247 1248 1249
};

static struct clk uart2_ick = {
	.name		= "uart2_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_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_UART2_SHIFT,
	.recalc		= &followparent_recalc,
1256 1257 1258 1259
};

static struct clk uart2_fck = {
	.name		= "uart2_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, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_UART2_SHIFT,
	.recalc		= &followparent_recalc,
1266 1267 1268 1269
};

static struct clk uart3_ick = {
	.name		= "uart3_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(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP24XX_EN_UART3_SHIFT,
	.recalc		= &followparent_recalc,
1276 1277 1278 1279
};

static struct clk uart3_fck = {
	.name		= "uart3_fck",
1280
	.ops		= &clkops_omap2_dflt_wait,
1281
	.parent		= &func_48m_ck,
1282
	.clkdm_name	= "core_l4_clkdm",
1283 1284 1285
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP24XX_EN_UART3_SHIFT,
	.recalc		= &followparent_recalc,
1286 1287 1288 1289
};

static struct clk gpios_ick = {
	.name		= "gpios_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_GPIOS_SHIFT,
	.recalc		= &followparent_recalc,
1296 1297 1298 1299
};

static struct clk gpios_fck = {
	.name		= "gpios_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_GPIOS_SHIFT,
	.recalc		= &followparent_recalc,
1306 1307 1308 1309
};

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

static struct clk mpu_wdt_fck = {
	.name		= "mpu_wdt_fck",
1320
	.ops		= &clkops_omap2_dflt_wait,
1321
	.parent		= &func_32k_ck,
1322
	.clkdm_name	= "wkup_clkdm",
1323 1324 1325
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_EN_MPU_WDT_SHIFT,
	.recalc		= &followparent_recalc,
1326 1327 1328 1329
};

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

1339 1340
static struct clk wdt1_ick = {
	.name		= "wdt1_ick",
1341
	.ops		= &clkops_omap2_dflt_wait,
1342
	.parent		= &l4_ck,
1343
	.clkdm_name	= "core_l4_clkdm",
1344 1345 1346
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_WDT1_SHIFT,
	.recalc		= &followparent_recalc,
1347
};
1348

1349 1350
static struct clk omapctrl_ick = {
	.name		= "omapctrl_ick",
1351
	.ops		= &clkops_omap2_dflt_wait,
1352
	.parent		= &l4_ck,
1353
	.flags		= ENABLE_ON_INIT,
1354
	.clkdm_name	= "core_l4_clkdm",
1355 1356 1357
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_OMAPCTRL_SHIFT,
	.recalc		= &followparent_recalc,
1358
};
1359

1360 1361
static struct clk cam_ick = {
	.name		= "cam_ick",
1362
	.ops		= &clkops_omap2_dflt,
1363
	.parent		= &l4_ck,
1364
	.clkdm_name	= "core_l4_clkdm",
1365 1366 1367
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_CAM_SHIFT,
	.recalc		= &followparent_recalc,
1368 1369
};

1370 1371 1372 1373 1374
/*
 * 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.
 */
1375 1376
static struct clk cam_fck = {
	.name		= "cam_fck",
1377
	.ops		= &clkops_omap2_dflt,
1378
	.parent		= &func_96m_ck,
1379
	.clkdm_name	= "core_l3_clkdm",
1380 1381 1382
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_CAM_SHIFT,
	.recalc		= &followparent_recalc,
1383 1384 1385 1386
};

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

static struct clk wdt4_ick = {
	.name		= "wdt4_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	= OMAP24XX_EN_WDT4_SHIFT,
	.recalc		= &followparent_recalc,
1403 1404 1405 1406
};

static struct clk wdt4_fck = {
	.name		= "wdt4_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	= OMAP24XX_EN_WDT4_SHIFT,
	.recalc		= &followparent_recalc,
1413 1414 1415 1416
};

static struct clk wdt3_ick = {
	.name		= "wdt3_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	= OMAP2420_EN_WDT3_SHIFT,
	.recalc		= &followparent_recalc,
1423 1424 1425 1426
};

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

static struct clk mspro_ick = {
	.name		= "mspro_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	= OMAP24XX_EN_MSPRO_SHIFT,
	.recalc		= &followparent_recalc,
1443 1444 1445 1446
};

static struct clk mspro_fck = {
	.name		= "mspro_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	= OMAP24XX_EN_MSPRO_SHIFT,
	.recalc		= &followparent_recalc,
1453 1454 1455 1456
};

static struct clk mmc_ick = {
	.name		= "mmc_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	= OMAP2420_EN_MMC_SHIFT,
	.recalc		= &followparent_recalc,
1463 1464 1465 1466
};

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

static struct clk fac_ick = {
	.name		= "fac_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	= OMAP24XX_EN_FAC_SHIFT,
	.recalc		= &followparent_recalc,
1483 1484 1485 1486
};

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

static struct clk eac_ick = {
	.name		= "eac_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	= OMAP2420_EN_EAC_SHIFT,
	.recalc		= &followparent_recalc,
1503 1504 1505 1506
};

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

static struct clk hdq_ick = {
	.name		= "hdq_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	= OMAP24XX_EN_HDQ_SHIFT,
	.recalc		= &followparent_recalc,
1523 1524 1525 1526
};

static struct clk hdq_fck = {
	.name		= "hdq_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	= OMAP24XX_EN_HDQ_SHIFT,
	.recalc		= &followparent_recalc,
1533 1534 1535
};

static struct clk i2c2_ick = {
1536
	.name		= "i2c2_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_I2C2_SHIFT,
	.recalc		= &followparent_recalc,
1543 1544 1545
};

static struct clk i2c2_fck = {
1546
	.name		= "i2c2_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_I2C2_SHIFT,
	.recalc		= &followparent_recalc,
1553 1554 1555
};

static struct clk i2c1_ick = {
1556
	.name		= "i2c1_ick",
1557
	.ops		= &clkops_omap2_dflt_wait,
1558
	.parent		= &l4_ck,
1559
	.clkdm_name	= "core_l4_clkdm",
1560 1561 1562
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_I2C1_SHIFT,
	.recalc		= &followparent_recalc,
1563 1564 1565
};

static struct clk i2c1_fck = {
1566
	.name		= "i2c1_fck",
1567
	.ops		= &clkops_omap2_dflt_wait,
1568
	.parent		= &func_12m_ck,
1569
	.clkdm_name	= "core_l4_clkdm",
1570 1571 1572
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_I2C1_SHIFT,
	.recalc		= &followparent_recalc,
1573 1574
};

1575 1576
static struct clk gpmc_fck = {
	.name		= "gpmc_fck",
1577
	.ops		= &clkops_null, /* RMK: missing? */
1578
	.parent		= &core_l3_ck,
1579
	.flags		= ENABLE_ON_INIT,
1580
	.clkdm_name	= "core_l3_clkdm",
1581 1582 1583 1584 1585
	.recalc		= &followparent_recalc,
};

static struct clk sdma_fck = {
	.name		= "sdma_fck",
1586
	.ops		= &clkops_null, /* RMK: missing? */
1587
	.parent		= &core_l3_ck,
1588
	.clkdm_name	= "core_l3_clkdm",
1589 1590 1591 1592 1593
	.recalc		= &followparent_recalc,
};

static struct clk sdma_ick = {
	.name		= "sdma_ick",
1594
	.ops		= &clkops_null, /* RMK: missing? */
1595
	.parent		= &l4_ck,
1596
	.clkdm_name	= "core_l3_clkdm",
1597
	.recalc		= &followparent_recalc,
1598 1599 1600 1601
};

static struct clk vlynq_ick = {
	.name		= "vlynq_ick",
1602
	.ops		= &clkops_omap2_dflt_wait,
1603
	.parent		= &core_l3_ck,
1604
	.clkdm_name	= "core_l3_clkdm",
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
	.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 }
1633 1634 1635 1636
};

static struct clk vlynq_fck = {
	.name		= "vlynq_fck",
1637
	.ops		= &clkops_omap2_dflt_wait,
1638
	.parent		= &func_96m_ck,
1639
	.flags		= DELAYED_APP,
1640
	.clkdm_name	= "core_l3_clkdm",
1641 1642 1643 1644 1645 1646 1647 1648 1649
	.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,
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
1650 1651 1652 1653
};

static struct clk des_ick = {
	.name		= "des_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_DES_SHIFT,
	.recalc		= &followparent_recalc,
1660 1661 1662 1663
};

static struct clk sha_ick = {
	.name		= "sha_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_SHA_SHIFT,
	.recalc		= &followparent_recalc,
1670 1671 1672 1673
};

static struct clk rng_ick = {
	.name		= "rng_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_RNG_SHIFT,
	.recalc		= &followparent_recalc,
1680 1681 1682 1683
};

static struct clk aes_ick = {
	.name		= "aes_ick",
1684
	.ops		= &clkops_omap2_dflt_wait,
1685
	.parent		= &l4_ck,
1686
	.clkdm_name	= "core_l4_clkdm",
1687 1688 1689
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_AES_SHIFT,
	.recalc		= &followparent_recalc,
1690 1691 1692 1693
};

static struct clk pka_ick = {
	.name		= "pka_ick",
1694
	.ops		= &clkops_omap2_dflt_wait,
1695
	.parent		= &l4_ck,
1696
	.clkdm_name	= "core_l4_clkdm",
1697 1698 1699
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_PKA_SHIFT,
	.recalc		= &followparent_recalc,
1700 1701 1702 1703
};

static struct clk usb_fck = {
	.name		= "usb_fck",
1704
	.ops		= &clkops_omap2_dflt_wait,
1705
	.parent		= &func_48m_ck,
1706
	.clkdm_name	= "core_l3_clkdm",
1707 1708 1709
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP24XX_EN_USB_SHIFT,
	.recalc		= &followparent_recalc,
1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727
};

/*
 * 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",
1728
	.ops		= &clkops_null,
1729
	.parent		= &mpu_ck,	/* Indexed by mpu speed, no parent */
1730
	.recalc		= &omap2_table_mpu_recalc,	/* sets are keyed on mpu rate */
1731 1732 1733
	.set_rate	= &omap2_select_table_rate,
	.round_rate	= &omap2_round_to_table_rate,
};
1734

1735 1736 1737 1738 1739

/*
 * clkdev integration
 */

1740
static struct omap_clk omap2420_clks[] = {
1741
	/* external root sources */
1742 1743 1744 1745 1746
	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),
1747
	/* internal analog sources */
1748 1749 1750
	CLK(NULL,	"dpll_ck",	&dpll_ck,	CK_242X),
	CLK(NULL,	"apll96_ck",	&apll96_ck,	CK_242X),
	CLK(NULL,	"apll54_ck",	&apll54_ck,	CK_242X),
1751
	/* internal prcm root sources */
1752 1753 1754 1755 1756 1757 1758 1759
	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),
1760 1761 1762 1763
	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 */
1764
	CLK(NULL,	"mpu_ck",	&mpu_ck,	CK_242X),
1765
	/* dsp domain clocks */
1766 1767
	CLK(NULL,	"dsp_fck",	&dsp_fck,	CK_242X),
	CLK(NULL,	"dsp_irate_ick", &dsp_irate_ick, CK_242X),
1768 1769 1770 1771
	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 */
1772 1773 1774
	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),
1775
	/* DSS domain clocks */
1776 1777 1778 1779
	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),
1780
	/* L3 domain clocks */
1781 1782 1783
	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),
1784
	/* L4 domain clocks */
1785 1786
	CLK(NULL,	"l4_ck",	&l4_ck,		CK_242X),
	CLK(NULL,	"ssi_l4_ick",	&ssi_l4_ick,	CK_242X),
1787
	/* virtual meta-group clock */
1788
	CLK(NULL,	"virt_prcm_set", &virt_prcm_set, CK_242X),
1789
	/* general l4 interface ck, multi-parent functional clk */
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 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
	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),
1840 1841
	CLK(NULL,	"wdt3_ick",	&wdt3_ick,	CK_242X),
	CLK(NULL,	"wdt3_fck",	&wdt3_fck,	CK_242X),
1842 1843
	CLK(NULL,	"mspro_ick",	&mspro_ick,	CK_242X),
	CLK(NULL,	"mspro_fck",	&mspro_fck,	CK_242X),
1844 1845
	CLK("mmci-omap.0", "ick",	&mmc_ick,	CK_242X),
	CLK("mmci-omap.0", "fck",	&mmc_fck,	CK_242X),
1846 1847
	CLK(NULL,	"fac_ick",	&fac_ick,	CK_242X),
	CLK(NULL,	"fac_fck",	&fac_fck,	CK_242X),
1848 1849
	CLK(NULL,	"eac_ick",	&eac_ick,	CK_242X),
	CLK(NULL,	"eac_fck",	&eac_fck,	CK_242X),
1850 1851 1852
	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),
1853
	CLK("i2c_omap.1", "fck",	&i2c1_fck,	CK_242X),
1854
	CLK("i2c_omap.2", "ick",	&i2c2_ick,	CK_242X),
1855
	CLK("i2c_omap.2", "fck",	&i2c2_fck,	CK_242X),
1856 1857 1858
	CLK(NULL,	"gpmc_fck",	&gpmc_fck,	CK_242X),
	CLK(NULL,	"sdma_fck",	&sdma_fck,	CK_242X),
	CLK(NULL,	"sdma_ick",	&sdma_ick,	CK_242X),
1859 1860
	CLK(NULL,	"vlynq_ick",	&vlynq_ick,	CK_242X),
	CLK(NULL,	"vlynq_fck",	&vlynq_fck,	CK_242X),
1861 1862 1863 1864 1865 1866
	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),
1867 1868 1869 1870 1871 1872
};

/*
 * init code
 */

1873
int __init omap2420_clk_init(void)
1874 1875 1876 1877
{
	const struct prcm_config *prcm;
	struct omap_clk *c;
	u32 clkrate;
1878 1879 1880 1881 1882

	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;
1883 1884 1885

	clk_init(&omap2_clk_functions);

1886 1887
	for (c = omap2420_clks; c < omap2420_clks + ARRAY_SIZE(omap2420_clks);
	     c++)
1888 1889 1890 1891
		clk_preinit(c->lk.clk);

	osc_ck.rate = omap2_osc_clk_recalc(&osc_ck);
	propagate_rate(&osc_ck);
1892
	sys_ck.rate = omap2xxx_sys_clk_recalc(&sys_ck);
1893 1894
	propagate_rate(&sys_ck);

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

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

1916 1917 1918
	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)) ;
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932

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