clock24xx.h 80.5 KB
Newer Older
1
/*
2
 *  linux/arch/arm/mach-omap2/clock24xx.h
3
 *
4 5
 *  Copyright (C) 2005-2008 Texas Instruments, Inc.
 *  Copyright (C) 2004-2008 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
#ifndef __ARCH_ARM_MACH_OMAP2_CLOCK24XX_H
#define __ARCH_ARM_MACH_OMAP2_CLOCK24XX_H
18

19 20 21 22 23 24 25 26
#include "clock.h"

#include "prm.h"
#include "cm.h"
#include "prm-regbits-24xx.h"
#include "cm-regbits-24xx.h"
#include "sdrc.h"

27
static unsigned long omap2_table_mpu_recalc(struct clk *clk);
28 29
static int omap2_select_table_rate(struct clk *clk, unsigned long rate);
static long omap2_round_to_table_rate(struct clk *clk, unsigned long rate);
30 31 32 33
static unsigned long omap2_sys_clk_recalc(struct clk *clk);
static unsigned long omap2_osc_clk_recalc(struct clk *clk);
static unsigned long omap2_sys_clk_recalc(struct clk *clk);
static unsigned long omap2_dpllcore_recalc(struct clk *clk);
34
static int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate);
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166

/* Key dividers which make up a PRCM set. Ratio's for a PRCM are mandated.
 * xtal_speed, dpll_speed, mpu_speed, CM_CLKSEL_MPU,CM_CLKSEL_DSP
 * CM_CLKSEL_GFX, CM_CLKSEL1_CORE, CM_CLKSEL1_PLL CM_CLKSEL2_PLL, CM_CLKSEL_MDM
 */
struct prcm_config {
	unsigned long xtal_speed;	/* crystal rate */
	unsigned long dpll_speed;	/* dpll: out*xtal*M/(N-1)table_recalc */
	unsigned long mpu_speed;	/* speed of MPU */
	unsigned long cm_clksel_mpu;	/* mpu divider */
	unsigned long cm_clksel_dsp;	/* dsp+iva1 div(2420), iva2.1(2430) */
	unsigned long cm_clksel_gfx;	/* gfx dividers */
	unsigned long cm_clksel1_core;	/* major subsystem dividers */
	unsigned long cm_clksel1_pll;	/* m,n */
	unsigned long cm_clksel2_pll;	/* dpllx1 or x2 out */
	unsigned long cm_clksel_mdm;	/* modem dividers 2430 only */
	unsigned long base_sdrc_rfr;	/* base refresh timing for a set */
	unsigned char flags;
};

/*
 * The OMAP2 processor can be run at several discrete 'PRCM configurations'.
 * These configurations are characterized by voltage and speed for clocks.
 * The device is only validated for certain combinations. One way to express
 * these combinations is via the 'ratio's' which the clocks operate with
 * respect to each other. These ratio sets are for a given voltage/DPLL
 * setting. All configurations can be described by a DPLL setting and a ratio
 * There are 3 ratio sets for the 2430 and X ratio sets for 2420.
 *
 * 2430 differs from 2420 in that there are no more phase synchronizers used.
 * They both have a slightly different clock domain setup. 2420(iva1,dsp) vs
 * 2430 (iva2.1, NOdsp, mdm)
 */

/* Core fields for cm_clksel, not ratio governed */
#define RX_CLKSEL_DSS1			(0x10 << 8)
#define RX_CLKSEL_DSS2			(0x0 << 13)
#define RX_CLKSEL_SSI			(0x5 << 20)

/*-------------------------------------------------------------------------
 * Voltage/DPLL ratios
 *-------------------------------------------------------------------------*/

/* 2430 Ratio's, 2430-Ratio Config 1 */
#define R1_CLKSEL_L3			(4 << 0)
#define R1_CLKSEL_L4			(2 << 5)
#define R1_CLKSEL_USB			(4 << 25)
#define R1_CM_CLKSEL1_CORE_VAL		R1_CLKSEL_USB | RX_CLKSEL_SSI | \
					RX_CLKSEL_DSS2 | RX_CLKSEL_DSS1 | \
					R1_CLKSEL_L4 | R1_CLKSEL_L3
#define R1_CLKSEL_MPU			(2 << 0)
#define R1_CM_CLKSEL_MPU_VAL		R1_CLKSEL_MPU
#define R1_CLKSEL_DSP			(2 << 0)
#define R1_CLKSEL_DSP_IF		(2 << 5)
#define R1_CM_CLKSEL_DSP_VAL		R1_CLKSEL_DSP | R1_CLKSEL_DSP_IF
#define R1_CLKSEL_GFX			(2 << 0)
#define R1_CM_CLKSEL_GFX_VAL		R1_CLKSEL_GFX
#define R1_CLKSEL_MDM			(4 << 0)
#define R1_CM_CLKSEL_MDM_VAL		R1_CLKSEL_MDM

/* 2430-Ratio Config 2 */
#define R2_CLKSEL_L3			(6 << 0)
#define R2_CLKSEL_L4			(2 << 5)
#define R2_CLKSEL_USB			(2 << 25)
#define R2_CM_CLKSEL1_CORE_VAL		R2_CLKSEL_USB | RX_CLKSEL_SSI | \
					RX_CLKSEL_DSS2 | RX_CLKSEL_DSS1 | \
					R2_CLKSEL_L4 | R2_CLKSEL_L3
#define R2_CLKSEL_MPU			(2 << 0)
#define R2_CM_CLKSEL_MPU_VAL		R2_CLKSEL_MPU
#define R2_CLKSEL_DSP			(2 << 0)
#define R2_CLKSEL_DSP_IF		(3 << 5)
#define R2_CM_CLKSEL_DSP_VAL		R2_CLKSEL_DSP | R2_CLKSEL_DSP_IF
#define R2_CLKSEL_GFX			(2 << 0)
#define R2_CM_CLKSEL_GFX_VAL		R2_CLKSEL_GFX
#define R2_CLKSEL_MDM			(6 << 0)
#define R2_CM_CLKSEL_MDM_VAL		R2_CLKSEL_MDM

/* 2430-Ratio Bootm (BYPASS) */
#define RB_CLKSEL_L3			(1 << 0)
#define RB_CLKSEL_L4			(1 << 5)
#define RB_CLKSEL_USB			(1 << 25)
#define RB_CM_CLKSEL1_CORE_VAL		RB_CLKSEL_USB | RX_CLKSEL_SSI | \
					RX_CLKSEL_DSS2 | RX_CLKSEL_DSS1 | \
					RB_CLKSEL_L4 | RB_CLKSEL_L3
#define RB_CLKSEL_MPU			(1 << 0)
#define RB_CM_CLKSEL_MPU_VAL		RB_CLKSEL_MPU
#define RB_CLKSEL_DSP			(1 << 0)
#define RB_CLKSEL_DSP_IF		(1 << 5)
#define RB_CM_CLKSEL_DSP_VAL		RB_CLKSEL_DSP | RB_CLKSEL_DSP_IF
#define RB_CLKSEL_GFX			(1 << 0)
#define RB_CM_CLKSEL_GFX_VAL		RB_CLKSEL_GFX
#define RB_CLKSEL_MDM			(1 << 0)
#define RB_CM_CLKSEL_MDM_VAL		RB_CLKSEL_MDM

/* 2420 Ratio Equivalents */
#define RXX_CLKSEL_VLYNQ		(0x12 << 15)
#define RXX_CLKSEL_SSI			(0x8 << 20)

/* 2420-PRCM III 532MHz core */
#define RIII_CLKSEL_L3			(4 << 0)	/* 133MHz */
#define RIII_CLKSEL_L4			(2 << 5)	/* 66.5MHz */
#define RIII_CLKSEL_USB			(4 << 25)	/* 33.25MHz */
#define RIII_CM_CLKSEL1_CORE_VAL	RIII_CLKSEL_USB | RXX_CLKSEL_SSI | \
					RXX_CLKSEL_VLYNQ | RX_CLKSEL_DSS2 | \
					RX_CLKSEL_DSS1 | RIII_CLKSEL_L4 | \
					RIII_CLKSEL_L3
#define RIII_CLKSEL_MPU			(2 << 0)	/* 266MHz */
#define RIII_CM_CLKSEL_MPU_VAL		RIII_CLKSEL_MPU
#define RIII_CLKSEL_DSP			(3 << 0)	/* c5x - 177.3MHz */
#define RIII_CLKSEL_DSP_IF		(2 << 5)	/* c5x - 88.67MHz */
#define RIII_SYNC_DSP			(1 << 7)	/* Enable sync */
#define RIII_CLKSEL_IVA			(6 << 8)	/* iva1 - 88.67MHz */
#define RIII_SYNC_IVA			(1 << 13)	/* Enable sync */
#define RIII_CM_CLKSEL_DSP_VAL		RIII_SYNC_IVA | RIII_CLKSEL_IVA | \
					RIII_SYNC_DSP | RIII_CLKSEL_DSP_IF | \
					RIII_CLKSEL_DSP
#define RIII_CLKSEL_GFX			(2 << 0)	/* 66.5MHz */
#define RIII_CM_CLKSEL_GFX_VAL		RIII_CLKSEL_GFX

/* 2420-PRCM II 600MHz core */
#define RII_CLKSEL_L3			(6 << 0)	/* 100MHz */
#define RII_CLKSEL_L4			(2 << 5)	/* 50MHz */
#define RII_CLKSEL_USB			(2 << 25)	/* 50MHz */
#define RII_CM_CLKSEL1_CORE_VAL		RII_CLKSEL_USB | \
					RXX_CLKSEL_SSI | RXX_CLKSEL_VLYNQ | \
					RX_CLKSEL_DSS2 | RX_CLKSEL_DSS1 | \
					RII_CLKSEL_L4 | RII_CLKSEL_L3
#define RII_CLKSEL_MPU			(2 << 0)	/* 300MHz */
#define RII_CM_CLKSEL_MPU_VAL		RII_CLKSEL_MPU
#define RII_CLKSEL_DSP			(3 << 0)	/* c5x - 200MHz */
#define RII_CLKSEL_DSP_IF		(2 << 5)	/* c5x - 100MHz */
#define RII_SYNC_DSP			(0 << 7)	/* Bypass sync */
167
#define RII_CLKSEL_IVA			(3 << 8)	/* iva1 - 200MHz */
168 169 170 171 172 173 174
#define RII_SYNC_IVA			(0 << 13)	/* Bypass sync */
#define RII_CM_CLKSEL_DSP_VAL		RII_SYNC_IVA | RII_CLKSEL_IVA | \
					RII_SYNC_DSP | RII_CLKSEL_DSP_IF | \
					RII_CLKSEL_DSP
#define RII_CLKSEL_GFX			(2 << 0)	/* 50MHz */
#define RII_CM_CLKSEL_GFX_VAL		RII_CLKSEL_GFX

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
/* 2420-PRCM I 660MHz core */
#define RI_CLKSEL_L3			(4 << 0)	/* 165MHz */
#define RI_CLKSEL_L4			(2 << 5)	/* 82.5MHz */
#define RI_CLKSEL_USB			(4 << 25)	/* 41.25MHz */
#define RI_CM_CLKSEL1_CORE_VAL		RI_CLKSEL_USB | \
					RXX_CLKSEL_SSI | RXX_CLKSEL_VLYNQ | \
					RX_CLKSEL_DSS2 | RX_CLKSEL_DSS1 | \
					RI_CLKSEL_L4 | RI_CLKSEL_L3
#define RI_CLKSEL_MPU			(2 << 0)	/* 330MHz */
#define RI_CM_CLKSEL_MPU_VAL		RI_CLKSEL_MPU
#define RI_CLKSEL_DSP			(3 << 0)	/* c5x - 220MHz */
#define RI_CLKSEL_DSP_IF		(2 << 5)	/* c5x - 110MHz */
#define RI_SYNC_DSP			(1 << 7)	/* Activate sync */
#define RI_CLKSEL_IVA			(4 << 8)	/* iva1 - 165MHz */
#define RI_SYNC_IVA			(0 << 13)	/* Bypass sync */
#define RI_CM_CLKSEL_DSP_VAL		RI_SYNC_IVA | RI_CLKSEL_IVA | \
					RI_SYNC_DSP | RI_CLKSEL_DSP_IF | \
					RI_CLKSEL_DSP
#define RI_CLKSEL_GFX			(1 << 0)	/* 165MHz */
#define RI_CM_CLKSEL_GFX_VAL		RI_CLKSEL_GFX

196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
/* 2420-PRCM VII (boot) */
#define RVII_CLKSEL_L3			(1 << 0)
#define RVII_CLKSEL_L4			(1 << 5)
#define RVII_CLKSEL_DSS1		(1 << 8)
#define RVII_CLKSEL_DSS2		(0 << 13)
#define RVII_CLKSEL_VLYNQ		(1 << 15)
#define RVII_CLKSEL_SSI			(1 << 20)
#define RVII_CLKSEL_USB			(1 << 25)

#define RVII_CM_CLKSEL1_CORE_VAL	RVII_CLKSEL_USB | RVII_CLKSEL_SSI | \
					RVII_CLKSEL_VLYNQ | RVII_CLKSEL_DSS2 | \
					RVII_CLKSEL_DSS1 | RVII_CLKSEL_L4 | RVII_CLKSEL_L3

#define RVII_CLKSEL_MPU			(1 << 0) /* all divide by 1 */
#define RVII_CM_CLKSEL_MPU_VAL		RVII_CLKSEL_MPU

#define RVII_CLKSEL_DSP			(1 << 0)
#define RVII_CLKSEL_DSP_IF		(1 << 5)
#define RVII_SYNC_DSP			(0 << 7)
#define RVII_CLKSEL_IVA			(1 << 8)
#define RVII_SYNC_IVA			(0 << 13)
#define RVII_CM_CLKSEL_DSP_VAL		RVII_SYNC_IVA | RVII_CLKSEL_IVA | RVII_SYNC_DSP | \
					RVII_CLKSEL_DSP_IF | RVII_CLKSEL_DSP

#define RVII_CLKSEL_GFX			(1 << 0)
#define RVII_CM_CLKSEL_GFX_VAL		RVII_CLKSEL_GFX

/*-------------------------------------------------------------------------
 * 2430 Target modes: Along with each configuration the CPU has several
 * modes which goes along with them. Modes mainly are the addition of
 * describe DPLL combinations to go along with a ratio.
 *-------------------------------------------------------------------------*/

/* Hardware governed */
#define MX_48M_SRC			(0 << 3)
#define MX_54M_SRC			(0 << 5)
#define MX_APLLS_CLIKIN_12		(3 << 23)
#define MX_APLLS_CLIKIN_13		(2 << 23)
#define MX_APLLS_CLIKIN_19_2		(0 << 23)

/*
 * 2430 - standalone, 2*ref*M/(n+1), M/N is for exactness not relock speed
 * #5a	(ratio1) baseport-target, target DPLL = 266*2 = 532MHz
 */
#define M5A_DPLL_MULT_12		(133 << 12)
#define M5A_DPLL_DIV_12			(5 << 8)
#define M5A_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | \
					M5A_DPLL_DIV_12 | M5A_DPLL_MULT_12 | \
					MX_APLLS_CLIKIN_12
245 246
#define M5A_DPLL_MULT_13		(61 << 12)
#define M5A_DPLL_DIV_13			(2 << 8)
247 248 249
#define M5A_CM_CLKSEL1_PLL_13_VAL	MX_48M_SRC | MX_54M_SRC | \
					M5A_DPLL_DIV_13 | M5A_DPLL_MULT_13 | \
					MX_APLLS_CLIKIN_13
250 251
#define M5A_DPLL_MULT_19		(55 << 12)
#define M5A_DPLL_DIV_19			(3 << 8)
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
#define M5A_CM_CLKSEL1_PLL_19_VAL	MX_48M_SRC | MX_54M_SRC | \
					M5A_DPLL_DIV_19 | M5A_DPLL_MULT_19 | \
					MX_APLLS_CLIKIN_19_2
/* #5b	(ratio1) target DPLL = 200*2 = 400MHz */
#define M5B_DPLL_MULT_12		(50 << 12)
#define M5B_DPLL_DIV_12			(2 << 8)
#define M5B_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | \
					M5B_DPLL_DIV_12 | M5B_DPLL_MULT_12 | \
					MX_APLLS_CLIKIN_12
#define M5B_DPLL_MULT_13		(200 << 12)
#define M5B_DPLL_DIV_13			(12 << 8)

#define M5B_CM_CLKSEL1_PLL_13_VAL	MX_48M_SRC | MX_54M_SRC | \
					M5B_DPLL_DIV_13 | M5B_DPLL_MULT_13 | \
					MX_APLLS_CLIKIN_13
#define M5B_DPLL_MULT_19		(125 << 12)
#define M5B_DPLL_DIV_19			(31 << 8)
#define M5B_CM_CLKSEL1_PLL_19_VAL	MX_48M_SRC | MX_54M_SRC | \
					M5B_DPLL_DIV_19 | M5B_DPLL_MULT_19 | \
					MX_APLLS_CLIKIN_19_2
/*
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
 * #4	(ratio2), DPLL = 399*2 = 798MHz, L3=133MHz
 */
#define M4_DPLL_MULT_12			(133 << 12)
#define M4_DPLL_DIV_12			(3 << 8)
#define M4_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | \
					M4_DPLL_DIV_12 | M4_DPLL_MULT_12 | \
					MX_APLLS_CLIKIN_12

#define M4_DPLL_MULT_13			(399 << 12)
#define M4_DPLL_DIV_13			(12 << 8)
#define M4_CM_CLKSEL1_PLL_13_VAL	MX_48M_SRC | MX_54M_SRC | \
					M4_DPLL_DIV_13 | M4_DPLL_MULT_13 | \
					MX_APLLS_CLIKIN_13

#define M4_DPLL_MULT_19			(145 << 12)
#define M4_DPLL_DIV_19			(6 << 8)
#define M4_CM_CLKSEL1_PLL_19_VAL	MX_48M_SRC | MX_54M_SRC | \
					M4_DPLL_DIV_19 | M4_DPLL_MULT_19 | \
					MX_APLLS_CLIKIN_19_2

/*
294 295 296 297 298 299 300
 * #3	(ratio2) baseport-target, target DPLL = 330*2 = 660MHz
 */
#define M3_DPLL_MULT_12			(55 << 12)
#define M3_DPLL_DIV_12			(1 << 8)
#define M3_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | \
					M3_DPLL_DIV_12 | M3_DPLL_MULT_12 | \
					MX_APLLS_CLIKIN_12
301 302
#define M3_DPLL_MULT_13			(76 << 12)
#define M3_DPLL_DIV_13			(2 << 8)
303 304 305
#define M3_CM_CLKSEL1_PLL_13_VAL	MX_48M_SRC | MX_54M_SRC | \
					M3_DPLL_DIV_13 | M3_DPLL_MULT_13 | \
					MX_APLLS_CLIKIN_13
306 307
#define M3_DPLL_MULT_19			(17 << 12)
#define M3_DPLL_DIV_19			(0 << 8)
308 309 310
#define M3_CM_CLKSEL1_PLL_19_VAL	MX_48M_SRC | MX_54M_SRC | \
					M3_DPLL_DIV_19 | M3_DPLL_MULT_19 | \
					MX_APLLS_CLIKIN_19_2
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335

/*
 * #2   (ratio1) DPLL = 330*2 = 660MHz, L3=165MHz
 */
#define M2_DPLL_MULT_12		        (55 << 12)
#define M2_DPLL_DIV_12		        (1 << 8)
#define M2_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | \
					M2_DPLL_DIV_12 | M2_DPLL_MULT_12 | \
					MX_APLLS_CLIKIN_12

/* Speed changes - Used 658.7MHz instead of 660MHz for LP-Refresh M=76 N=2,
 * relock time issue */
/* Core frequency changed from 330/165 to 329/164 MHz*/
#define M2_DPLL_MULT_13		        (76 << 12)
#define M2_DPLL_DIV_13		        (2 << 8)
#define M2_CM_CLKSEL1_PLL_13_VAL	MX_48M_SRC | MX_54M_SRC | \
					M2_DPLL_DIV_13 | M2_DPLL_MULT_13 | \
					MX_APLLS_CLIKIN_13

#define M2_DPLL_MULT_19		        (17 << 12)
#define M2_DPLL_DIV_19		        (0 << 8)
#define M2_CM_CLKSEL1_PLL_19_VAL	MX_48M_SRC | MX_54M_SRC | \
					M2_DPLL_DIV_19 | M2_DPLL_MULT_19 | \
					MX_APLLS_CLIKIN_19_2

336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
/* boot (boot) */
#define MB_DPLL_MULT			(1 << 12)
#define MB_DPLL_DIV			(0 << 8)
#define MB_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | MB_DPLL_DIV |\
					MB_DPLL_MULT | MX_APLLS_CLIKIN_12

#define MB_CM_CLKSEL1_PLL_13_VAL	MX_48M_SRC | MX_54M_SRC | MB_DPLL_DIV |\
					MB_DPLL_MULT | MX_APLLS_CLIKIN_13

#define MB_CM_CLKSEL1_PLL_19_VAL	MX_48M_SRC | MX_54M_SRC | MB_DPLL_DIV |\
					MB_DPLL_MULT | MX_APLLS_CLIKIN_19

/*
 * 2430 - chassis (sedna)
 * 165 (ratio1) same as above #2
 * 150 (ratio1)
 * 133 (ratio2) same as above #4
 * 110 (ratio2) same as above #3
 * 104 (ratio2)
 * boot (boot)
 */

358 359 360 361 362 363 364
/* PRCM I target DPLL = 2*330MHz = 660MHz */
#define MI_DPLL_MULT_12			(55 << 12)
#define MI_DPLL_DIV_12			(1 << 8)
#define MI_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | \
					MI_DPLL_DIV_12 | MI_DPLL_MULT_12 | \
					MX_APLLS_CLIKIN_12

365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
/*
 * 2420 Equivalent - mode registers
 * PRCM II , target DPLL = 2*300MHz = 600MHz
 */
#define MII_DPLL_MULT_12		(50 << 12)
#define MII_DPLL_DIV_12			(1 << 8)
#define MII_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | \
					MII_DPLL_DIV_12 | MII_DPLL_MULT_12 | \
					MX_APLLS_CLIKIN_12
#define MII_DPLL_MULT_13		(300 << 12)
#define MII_DPLL_DIV_13			(12 << 8)
#define MII_CM_CLKSEL1_PLL_13_VAL	MX_48M_SRC | MX_54M_SRC | \
					MII_DPLL_DIV_13 | MII_DPLL_MULT_13 | \
					MX_APLLS_CLIKIN_13

/* PRCM III target DPLL = 2*266 = 532MHz*/
#define MIII_DPLL_MULT_12		(133 << 12)
#define MIII_DPLL_DIV_12		(5 << 8)
#define MIII_CM_CLKSEL1_PLL_12_VAL	MX_48M_SRC | MX_54M_SRC | \
					MIII_DPLL_DIV_12 | MIII_DPLL_MULT_12 | \
					MX_APLLS_CLIKIN_12
#define MIII_DPLL_MULT_13		(266 << 12)
#define MIII_DPLL_DIV_13		(12 << 8)
#define MIII_CM_CLKSEL1_PLL_13_VAL	MX_48M_SRC | MX_54M_SRC | \
					MIII_DPLL_DIV_13 | MIII_DPLL_MULT_13 | \
					MX_APLLS_CLIKIN_13

/* PRCM VII (boot bypass) */
#define MVII_CM_CLKSEL1_PLL_12_VAL	MB_CM_CLKSEL1_PLL_12_VAL
#define MVII_CM_CLKSEL1_PLL_13_VAL	MB_CM_CLKSEL1_PLL_13_VAL

/* High and low operation value */
#define MX_CLKSEL2_PLL_2x_VAL		(2 << 0)
#define MX_CLKSEL2_PLL_1x_VAL		(1 << 0)

/* MPU speed defines */
#define S12M	12000000
#define S13M	13000000
#define S19M	19200000
#define S26M	26000000
#define S100M	100000000
#define S133M	133000000
#define S150M	150000000
408
#define S164M	164000000
409
#define S165M	165000000
410
#define S199M	199000000
411 412 413
#define S200M	200000000
#define S266M	266000000
#define S300M	300000000
414
#define S329M	329000000
415
#define S330M	330000000
416
#define S399M	399000000
417 418 419
#define S400M	400000000
#define S532M	532000000
#define S600M	600000000
420
#define S658M	658000000
421
#define S660M	660000000
422
#define S798M	798000000
423 424 425 426 427 428 429 430 431 432

/*-------------------------------------------------------------------------
 * Key dividers which make up a PRCM set. Ratio's for a PRCM are mandated.
 * xtal_speed, dpll_speed, mpu_speed, CM_CLKSEL_MPU,
 * CM_CLKSEL_DSP, CM_CLKSEL_GFX, CM_CLKSEL1_CORE, CM_CLKSEL1_PLL,
 * CM_CLKSEL2_PLL, CM_CLKSEL_MDM
 *
 * Filling in table based on H4 boards and 2430-SDPs variants available.
 * There are quite a few more rates combinations which could be defined.
 *
S
Simon Arlott 已提交
433
 * When multiple values are defined the start up will try and choose the
434 435 436 437 438 439 440 441 442
 * fastest one. If a 'fast' value is defined, then automatically, the /2
 * one should be included as it can be used.	Generally having more that
 * one fast set does not make sense, as static timings need to be changed
 * to change the set.	 The exception is the bypass setting which is
 * availble for low power bypass.
 *
 * Note: This table needs to be sorted, fastest to slowest.
 *-------------------------------------------------------------------------*/
static struct prcm_config rate_table[] = {
443 444 445 446 447 448 449
	/* PRCM I - FAST */
	{S12M, S660M, S330M, RI_CM_CLKSEL_MPU_VAL,		/* 330MHz ARM */
		RI_CM_CLKSEL_DSP_VAL, RI_CM_CLKSEL_GFX_VAL,
		RI_CM_CLKSEL1_CORE_VAL, MI_CM_CLKSEL1_PLL_12_VAL,
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_165MHz,
		RATE_IN_242X},

450 451 452 453
	/* PRCM II - FAST */
	{S12M, S600M, S300M, RII_CM_CLKSEL_MPU_VAL,		/* 300MHz ARM */
		RII_CM_CLKSEL_DSP_VAL, RII_CM_CLKSEL_GFX_VAL,
		RII_CM_CLKSEL1_CORE_VAL, MII_CM_CLKSEL1_PLL_12_VAL,
454
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_100MHz,
455 456 457 458 459
		RATE_IN_242X},

	{S13M, S600M, S300M, RII_CM_CLKSEL_MPU_VAL,		/* 300MHz ARM */
		RII_CM_CLKSEL_DSP_VAL, RII_CM_CLKSEL_GFX_VAL,
		RII_CM_CLKSEL1_CORE_VAL, MII_CM_CLKSEL1_PLL_13_VAL,
460
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_100MHz,
461 462 463 464 465 466
		RATE_IN_242X},

	/* PRCM III - FAST */
	{S12M, S532M, S266M, RIII_CM_CLKSEL_MPU_VAL,		/* 266MHz ARM */
		RIII_CM_CLKSEL_DSP_VAL, RIII_CM_CLKSEL_GFX_VAL,
		RIII_CM_CLKSEL1_CORE_VAL, MIII_CM_CLKSEL1_PLL_12_VAL,
467
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_133MHz,
468 469 470 471 472
		RATE_IN_242X},

	{S13M, S532M, S266M, RIII_CM_CLKSEL_MPU_VAL,		/* 266MHz ARM */
		RIII_CM_CLKSEL_DSP_VAL, RIII_CM_CLKSEL_GFX_VAL,
		RIII_CM_CLKSEL1_CORE_VAL, MIII_CM_CLKSEL1_PLL_13_VAL,
473
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_133MHz,
474 475 476 477 478 479
		RATE_IN_242X},

	/* PRCM II - SLOW */
	{S12M, S300M, S150M, RII_CM_CLKSEL_MPU_VAL,		/* 150MHz ARM */
		RII_CM_CLKSEL_DSP_VAL, RII_CM_CLKSEL_GFX_VAL,
		RII_CM_CLKSEL1_CORE_VAL, MII_CM_CLKSEL1_PLL_12_VAL,
480
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_100MHz,
481 482 483 484 485
		RATE_IN_242X},

	{S13M, S300M, S150M, RII_CM_CLKSEL_MPU_VAL,		/* 150MHz ARM */
		RII_CM_CLKSEL_DSP_VAL, RII_CM_CLKSEL_GFX_VAL,
		RII_CM_CLKSEL1_CORE_VAL, MII_CM_CLKSEL1_PLL_13_VAL,
486
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_100MHz,
487 488 489 490 491 492
		RATE_IN_242X},

	/* PRCM III - SLOW */
	{S12M, S266M, S133M, RIII_CM_CLKSEL_MPU_VAL,		/* 133MHz ARM */
		RIII_CM_CLKSEL_DSP_VAL, RIII_CM_CLKSEL_GFX_VAL,
		RIII_CM_CLKSEL1_CORE_VAL, MIII_CM_CLKSEL1_PLL_12_VAL,
493
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_133MHz,
494 495 496 497 498
		RATE_IN_242X},

	{S13M, S266M, S133M, RIII_CM_CLKSEL_MPU_VAL,		/* 133MHz ARM */
		RIII_CM_CLKSEL_DSP_VAL, RIII_CM_CLKSEL_GFX_VAL,
		RIII_CM_CLKSEL1_CORE_VAL, MIII_CM_CLKSEL1_PLL_13_VAL,
499
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_133MHz,
500 501 502 503 504 505
		RATE_IN_242X},

	/* PRCM-VII (boot-bypass) */
	{S12M, S12M, S12M, RVII_CM_CLKSEL_MPU_VAL,		/* 12MHz ARM*/
		RVII_CM_CLKSEL_DSP_VAL, RVII_CM_CLKSEL_GFX_VAL,
		RVII_CM_CLKSEL1_CORE_VAL, MVII_CM_CLKSEL1_PLL_12_VAL,
506
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_BYPASS,
507 508 509 510 511 512
		RATE_IN_242X},

	/* PRCM-VII (boot-bypass) */
	{S13M, S13M, S13M, RVII_CM_CLKSEL_MPU_VAL,		/* 13MHz ARM */
		RVII_CM_CLKSEL_DSP_VAL, RVII_CM_CLKSEL_GFX_VAL,
		RVII_CM_CLKSEL1_CORE_VAL, MVII_CM_CLKSEL1_PLL_13_VAL,
513
		MX_CLKSEL2_PLL_2x_VAL, 0, SDRC_RFR_CTRL_BYPASS,
514 515
		RATE_IN_242X},

516 517
	/* PRCM #4 - ratio2 (ES2.1) - FAST */
	{S13M, S798M, S399M, R2_CM_CLKSEL_MPU_VAL,		/* 399MHz ARM */
518
		R2_CM_CLKSEL_DSP_VAL, R2_CM_CLKSEL_GFX_VAL,
519
		R2_CM_CLKSEL1_CORE_VAL, M4_CM_CLKSEL1_PLL_13_VAL,
520
		MX_CLKSEL2_PLL_2x_VAL, R2_CM_CLKSEL_MDM_VAL,
521 522 523 524 525 526 527 528 529
		SDRC_RFR_CTRL_133MHz,
		RATE_IN_243X},

	/* PRCM #2 - ratio1 (ES2) - FAST */
	{S13M, S658M, S329M, R1_CM_CLKSEL_MPU_VAL,		/* 330MHz ARM */
		R1_CM_CLKSEL_DSP_VAL, R1_CM_CLKSEL_GFX_VAL,
		R1_CM_CLKSEL1_CORE_VAL, M2_CM_CLKSEL1_PLL_13_VAL,
		MX_CLKSEL2_PLL_2x_VAL, R1_CM_CLKSEL_MDM_VAL,
		SDRC_RFR_CTRL_165MHz,
530 531 532 533 534 535 536
		RATE_IN_243X},

	/* PRCM #5a - ratio1 - FAST */
	{S13M, S532M, S266M, R1_CM_CLKSEL_MPU_VAL,		/* 266MHz ARM */
		R1_CM_CLKSEL_DSP_VAL, R1_CM_CLKSEL_GFX_VAL,
		R1_CM_CLKSEL1_CORE_VAL, M5A_CM_CLKSEL1_PLL_13_VAL,
		MX_CLKSEL2_PLL_2x_VAL, R1_CM_CLKSEL_MDM_VAL,
537
		SDRC_RFR_CTRL_133MHz,
538 539 540 541 542 543 544
		RATE_IN_243X},

	/* PRCM #5b - ratio1 - FAST */
	{S13M, S400M, S200M, R1_CM_CLKSEL_MPU_VAL,		/* 200MHz ARM */
		R1_CM_CLKSEL_DSP_VAL, R1_CM_CLKSEL_GFX_VAL,
		R1_CM_CLKSEL1_CORE_VAL, M5B_CM_CLKSEL1_PLL_13_VAL,
		MX_CLKSEL2_PLL_2x_VAL, R1_CM_CLKSEL_MDM_VAL,
545
		SDRC_RFR_CTRL_100MHz,
546 547
		RATE_IN_243X},

548 549
	/* PRCM #4 - ratio1 (ES2.1) - SLOW */
	{S13M, S399M, S199M, R2_CM_CLKSEL_MPU_VAL,		/* 200MHz ARM */
550
		R2_CM_CLKSEL_DSP_VAL, R2_CM_CLKSEL_GFX_VAL,
551
		R2_CM_CLKSEL1_CORE_VAL, M4_CM_CLKSEL1_PLL_13_VAL,
552
		MX_CLKSEL2_PLL_1x_VAL, R2_CM_CLKSEL_MDM_VAL,
553 554 555 556 557 558 559 560 561
		SDRC_RFR_CTRL_133MHz,
		RATE_IN_243X},

	/* PRCM #2 - ratio1 (ES2) - SLOW */
	{S13M, S329M, S164M, R1_CM_CLKSEL_MPU_VAL,		/* 165MHz ARM */
		R1_CM_CLKSEL_DSP_VAL, R1_CM_CLKSEL_GFX_VAL,
		R1_CM_CLKSEL1_CORE_VAL, M2_CM_CLKSEL1_PLL_13_VAL,
		MX_CLKSEL2_PLL_1x_VAL, R1_CM_CLKSEL_MDM_VAL,
		SDRC_RFR_CTRL_165MHz,
562 563 564 565 566 567 568
		RATE_IN_243X},

	/* PRCM #5a - ratio1 - SLOW */
	{S13M, S266M, S133M, R1_CM_CLKSEL_MPU_VAL,		/* 133MHz ARM */
		R1_CM_CLKSEL_DSP_VAL, R1_CM_CLKSEL_GFX_VAL,
		R1_CM_CLKSEL1_CORE_VAL, M5A_CM_CLKSEL1_PLL_13_VAL,
		MX_CLKSEL2_PLL_1x_VAL, R1_CM_CLKSEL_MDM_VAL,
569
		SDRC_RFR_CTRL_133MHz,
570 571 572 573 574 575 576
		RATE_IN_243X},

	/* PRCM #5b - ratio1 - SLOW*/
	{S13M, S200M, S100M, R1_CM_CLKSEL_MPU_VAL,		/* 100MHz ARM */
		R1_CM_CLKSEL_DSP_VAL, R1_CM_CLKSEL_GFX_VAL,
		R1_CM_CLKSEL1_CORE_VAL, M5B_CM_CLKSEL1_PLL_13_VAL,
		MX_CLKSEL2_PLL_1x_VAL, R1_CM_CLKSEL_MDM_VAL,
577
		SDRC_RFR_CTRL_100MHz,
578 579 580 581 582 583 584
		RATE_IN_243X},

	/* PRCM-boot/bypass */
	{S13M, S13M, S13M, RB_CM_CLKSEL_MPU_VAL,		/* 13Mhz */
		RB_CM_CLKSEL_DSP_VAL, RB_CM_CLKSEL_GFX_VAL,
		RB_CM_CLKSEL1_CORE_VAL, MB_CM_CLKSEL1_PLL_13_VAL,
		MX_CLKSEL2_PLL_2x_VAL, RB_CM_CLKSEL_MDM_VAL,
585
		SDRC_RFR_CTRL_BYPASS,
586 587 588 589 590 591 592
		RATE_IN_243X},

	/* PRCM-boot/bypass */
	{S12M, S12M, S12M, RB_CM_CLKSEL_MPU_VAL,		/* 12Mhz */
		RB_CM_CLKSEL_DSP_VAL, RB_CM_CLKSEL_GFX_VAL,
		RB_CM_CLKSEL1_CORE_VAL, MB_CM_CLKSEL1_PLL_12_VAL,
		MX_CLKSEL2_PLL_2x_VAL, RB_CM_CLKSEL_MDM_VAL,
593
		SDRC_RFR_CTRL_BYPASS,
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
		RATE_IN_243X},

	{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
};

/*-------------------------------------------------------------------------
 * 24xx clock tree.
 *
 * 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.
 *-------------------------------------------------------------------------*/

/* Base external input clocks */
static struct clk func_32k_ck = {
	.name		= "func_32k_ck",
622
	.ops		= &clkops_null,
623
	.rate		= 32000,
624
	.flags		= RATE_FIXED,
625
	.clkdm_name	= "wkup_clkdm",
626
};
627

628 629 630 631 632 633 634 635
static struct clk secure_32k_ck = {
	.name		= "secure_32k_ck",
	.ops		= &clkops_null,
	.rate		= 32768,
	.flags		= RATE_FIXED,
	.clkdm_name	= "wkup_clkdm",
};

636 637 638
/* 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",
639
	.ops		= &clkops_oscck,
640
	.clkdm_name	= "wkup_clkdm",
641
	.recalc		= &omap2_osc_clk_recalc,
642 643
};

644
/* Without modem likely 12MHz, with modem likely 13MHz */
645 646
static struct clk sys_ck = {		/* (*12, *13, 19.2, 26, 38.4)MHz */
	.name		= "sys_ck",		/* ~ ref_clk also */
647
	.ops		= &clkops_null,
648
	.parent		= &osc_ck,
649
	.clkdm_name	= "wkup_clkdm",
650 651
	.recalc		= &omap2_sys_clk_recalc,
};
652

653 654
static struct clk alt_ck = {		/* Typical 54M or 48M, may not exist */
	.name		= "alt_ck",
655
	.ops		= &clkops_null,
656
	.rate		= 54000000,
657
	.flags		= RATE_FIXED,
658
	.clkdm_name	= "wkup_clkdm",
659
};
660

661 662 663 664 665
/*
 * Analog domain root source clocks
 */

/* dpll_ck, is broken out in to special cases through clksel */
666 667 668 669
/* REVISIT: Rate changes on dpll_ck trigger a full set change.	...
 * deal with this
 */

670
static struct dpll_data dpll_dd = {
671 672 673
	.mult_div1_reg		= OMAP_CM_REGADDR(PLL_MOD, CM_CLKSEL1),
	.mult_mask		= OMAP24XX_DPLL_MULT_MASK,
	.div1_mask		= OMAP24XX_DPLL_DIV_MASK,
674 675 676 677
	.clk_bypass		= &sys_ck,
	.clk_ref		= &sys_ck,
	.control_reg		= OMAP_CM_REGADDR(PLL_MOD, CM_CLKEN),
	.enable_mask		= OMAP24XX_EN_DPLL_MASK,
678
	.max_multiplier		= 1024,
679
	.min_divider		= 1,
680 681
	.max_divider		= 16,
	.rate_tolerance		= DEFAULT_DPLL_RATE_TOLERANCE
682 683
};

684 685 686 687
/*
 * XXX Cannot add round_rate here yet, as this is still a composite clock,
 * not just a DPLL
 */
688 689
static struct clk dpll_ck = {
	.name		= "dpll_ck",
690
	.ops		= &clkops_null,
691
	.parent		= &sys_ck,		/* Can be func_32k also */
692
	.dpll_data	= &dpll_dd,
693
	.clkdm_name	= "wkup_clkdm",
694 695
	.recalc		= &omap2_dpllcore_recalc,
	.set_rate	= &omap2_reprogram_dpllcore,
696 697 698 699
};

static struct clk apll96_ck = {
	.name		= "apll96_ck",
700
	.ops		= &clkops_fixed,
701 702
	.parent		= &sys_ck,
	.rate		= 96000000,
703
	.flags		= RATE_FIXED | ENABLE_ON_INIT,
704
	.clkdm_name	= "wkup_clkdm",
705 706
	.enable_reg	= OMAP_CM_REGADDR(PLL_MOD, CM_CLKEN),
	.enable_bit	= OMAP24XX_EN_96M_PLL_SHIFT,
707 708 709 710
};

static struct clk apll54_ck = {
	.name		= "apll54_ck",
711
	.ops		= &clkops_fixed,
712 713
	.parent		= &sys_ck,
	.rate		= 54000000,
714
	.flags		= RATE_FIXED | ENABLE_ON_INIT,
715
	.clkdm_name	= "wkup_clkdm",
716 717
	.enable_reg	= OMAP_CM_REGADDR(PLL_MOD, CM_CLKEN),
	.enable_bit	= OMAP24XX_EN_54M_PLL_SHIFT,
718 719 720 721 722
};

/*
 * PRCM digital base sources
 */
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741

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

742 743
static struct clk func_54m_ck = {
	.name		= "func_54m_ck",
744
	.ops		= &clkops_null,
745
	.parent		= &apll54_ck,	/* can also be alt_clk */
746
	.clkdm_name	= "wkup_clkdm",
747 748 749 750 751
	.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,
752
};
753

754 755
static struct clk core_ck = {
	.name		= "core_ck",
756
	.ops		= &clkops_null,
757
	.parent		= &dpll_ck,		/* can also be 32k */
758
	.clkdm_name	= "wkup_clkdm",
759
	.recalc		= &followparent_recalc,
760
};
761 762 763 764 765

/* func_96m_ck */
static const struct clksel_rate func_96m_apll96_rates[] = {
	{ .div = 1, .val = 0, .flags = RATE_IN_24XX | DEFAULT_RATE },
	{ .div = 0 },
766 767
};

768 769 770 771 772 773 774 775 776 777 778 779
static const struct clksel_rate func_96m_alt_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_243X | DEFAULT_RATE },
	{ .div = 0 },
};

static const struct clksel func_96m_clksel[] = {
	{ .parent = &apll96_ck,	.rates = func_96m_apll96_rates },
	{ .parent = &alt_ck,	.rates = func_96m_alt_rates },
	{ .parent = NULL }
};

/* The parent of this clock is not selectable on 2420. */
780 781
static struct clk func_96m_ck = {
	.name		= "func_96m_ck",
782
	.ops		= &clkops_null,
783
	.parent		= &apll96_ck,
784
	.clkdm_name	= "wkup_clkdm",
785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(PLL_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP2430_96M_SOURCE,
	.clksel		= func_96m_clksel,
	.recalc		= &omap2_clksel_recalc,
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
};

/* 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 }
810 811 812 813
};

static struct clk func_48m_ck = {
	.name		= "func_48m_ck",
814
	.ops		= &clkops_null,
815
	.parent		= &apll96_ck,	 /* 96M or Alt */
816
	.clkdm_name	= "wkup_clkdm",
817 818 819 820 821 822 823
	.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
824 825 826 827
};

static struct clk func_12m_ck = {
	.name		= "func_12m_ck",
828
	.ops		= &clkops_null,
829
	.parent		= &func_48m_ck,
830
	.fixed_div	= 4,
831
	.clkdm_name	= "wkup_clkdm",
832
	.recalc		= &omap2_fixed_divisor_recalc,
833 834 835 836 837
};

/* Secure timer, only available in secure mode */
static struct clk wdt1_osc_ck = {
	.name		= "ck_wdt1_osc",
838
	.ops		= &clkops_null, /* RMK: missing? */
839
	.parent		= &osc_ck,
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
	.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",
881
	.ops		= &clkops_omap2_dflt,
882
	.parent		= &func_54m_ck,
883
	.clkdm_name	= "wkup_clkdm",
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
	.enable_reg	= OMAP24XX_PRCM_CLKOUT_CTRL,
	.enable_bit	= OMAP24XX_CLKOUT_EN_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP24XX_PRCM_CLKOUT_CTRL,
	.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 }
907 908 909 910
};

static struct clk sys_clkout = {
	.name		= "sys_clkout",
911
	.ops		= &clkops_null,
912
	.parent		= &sys_clkout_src,
913
	.clkdm_name	= "wkup_clkdm",
914 915 916 917 918 919 920 921 922 923 924
	.clksel_reg	= OMAP24XX_PRCM_CLKOUT_CTRL,
	.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",
925
	.ops		= &clkops_omap2_dflt,
926
	.parent		= &func_54m_ck,
927
	.clkdm_name	= "wkup_clkdm",
928 929 930 931 932 933
	.enable_reg	= OMAP24XX_PRCM_CLKOUT_CTRL,
	.enable_bit	= OMAP2420_CLKOUT2_EN_SHIFT,
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP24XX_PRCM_CLKOUT_CTRL,
	.clksel_mask	= OMAP2420_CLKOUT2_SOURCE_MASK,
	.clksel		= common_clkout_src_clksel,
934
	.recalc		= &omap2_clksel_recalc,
935 936 937 938 939 940 941
	.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 }
942 943 944 945 946
};

/* In 2430, new in 2420 ES2 */
static struct clk sys_clkout2 = {
	.name		= "sys_clkout2",
947
	.ops		= &clkops_null,
948
	.parent		= &sys_clkout2_src,
949
	.clkdm_name	= "wkup_clkdm",
950 951 952
	.clksel_reg	= OMAP24XX_PRCM_CLKOUT_CTRL,
	.clksel_mask	= OMAP2420_CLKOUT2_DIV_MASK,
	.clksel		= sys_clkout2_clksel,
953
	.recalc		= &omap2_clksel_recalc,
954 955
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
956 957
};

958 959
static struct clk emul_ck = {
	.name		= "emul_ck",
960
	.ops		= &clkops_omap2_dflt,
961
	.parent		= &func_54m_ck,
962
	.clkdm_name	= "wkup_clkdm",
963 964 965
	.enable_reg	= OMAP24XX_PRCM_CLKEMUL_CTRL,
	.enable_bit	= OMAP24XX_EMULATION_EN_SHIFT,
	.recalc		= &followparent_recalc,
966 967

};
968

969 970 971 972 973 974 975 976 977 978
/*
 * 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
 *
 */
979 980 981 982 983 984 985 986 987 988 989 990 991 992
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 }
};

993 994
static struct clk mpu_ck = {	/* Control cpu */
	.name		= "mpu_ck",
995
	.ops		= &clkops_null,
996
	.parent		= &core_ck,
997
	.flags		= DELAYED_APP | CONFIG_PARTICIPANT,
998
	.clkdm_name	= "mpu_clkdm",
999 1000 1001
	.init		= &omap2_init_clksel_parent,
	.clksel_reg	= OMAP_CM_REGADDR(MPU_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP24XX_CLKSEL_MPU_MASK,
1002
	.clksel		= mpu_clksel,
1003
	.recalc		= &omap2_clksel_recalc,
1004
	.round_rate	= &omap2_clksel_round_rate,
1005
	.set_rate	= &omap2_clksel_set_rate
1006
};
1007

1008 1009 1010
/*
 * DSP (2430-IVA2.1) (2420-UMA+IVA1) clock domain
 * Clocks:
1011
 *	2430: IVA2.1_FCLK (really just DSP_FCLK), IVA2.1_ICLK
1012
 *	2420: UMA_FCLK, UMA_ICLK, IVA_MPU, IVA_COP
1013 1014 1015 1016 1017
 *
 * 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.
1018
 */
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
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",
1037
	.ops		= &clkops_omap2_dflt_wait,
1038
	.parent		= &core_ck,
1039
	.flags		= DELAYED_APP | CONFIG_PARTICIPANT,
1040
	.clkdm_name	= "dsp_clkdm",
1041 1042 1043 1044 1045
	.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,
1046
	.recalc		= &omap2_clksel_recalc,
1047 1048
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
1049 1050
};

1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
/* 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 = 3, .val = 3, .flags = RATE_IN_243X },
	{ .div = 0 },
};

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

1064
/* This clock does not exist as such in the TRM. */
1065 1066
static struct clk dsp_irate_ick = {
	.name		= "dsp_irate_ick",
1067
	.ops		= &clkops_null,
1068
	.parent		= &dsp_fck,
1069
	.flags		= DELAYED_APP | CONFIG_PARTICIPANT,
1070 1071 1072
	.clksel_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP24XX_CLKSEL_DSP_IF_MASK,
	.clksel		= dsp_irate_ick_clksel,
1073
	.recalc		= &omap2_clksel_recalc,
1074 1075
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	      = &omap2_clksel_set_rate
1076 1077
};

1078
/* 2420 only */
1079 1080
static struct clk dsp_ick = {
	.name		= "dsp_ick",	 /* apparently ipi and isp */
1081
	.ops		= &clkops_omap2_dflt_wait,
1082
	.parent		= &dsp_irate_ick,
1083
	.flags		= DELAYED_APP | CONFIG_PARTICIPANT,
1084 1085 1086 1087 1088 1089 1090
	.enable_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP2420_EN_DSP_IPI_SHIFT,	      /* for ipi */
};

/* 2430 only - EN_DSP controls both dsp fclk and iclk on 2430 */
static struct clk iva2_1_ick = {
	.name		= "iva2_1_ick",
1091
	.ops		= &clkops_omap2_dflt_wait,
1092
	.parent		= &dsp_irate_ick,
1093
	.flags		= DELAYED_APP | CONFIG_PARTICIPANT,
1094 1095
	.enable_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_CM_FCLKEN_DSP_EN_DSP_SHIFT,
1096 1097
};

1098 1099 1100 1101 1102
/*
 * 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.
 */
1103 1104
static struct clk iva1_ifck = {
	.name		= "iva1_ifck",
1105
	.ops		= &clkops_omap2_dflt_wait,
1106
	.parent		= &core_ck,
1107
	.flags		= CONFIG_PARTICIPANT | DELAYED_APP,
1108
	.clkdm_name	= "iva1_clkdm",
1109 1110 1111 1112 1113
	.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,
1114
	.recalc		= &omap2_clksel_recalc,
1115 1116
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
1117 1118 1119 1120 1121
};

/* IVA1 mpu/int/i/f clocks are /2 of parent */
static struct clk iva1_mpu_int_ifck = {
	.name		= "iva1_mpu_int_ifck",
1122
	.ops		= &clkops_omap2_dflt_wait,
1123
	.parent		= &iva1_ifck,
1124
	.clkdm_name	= "iva1_clkdm",
1125 1126 1127 1128
	.enable_reg	= OMAP_CM_REGADDR(OMAP24XX_DSP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP2420_EN_IVA_MPU_SHIFT,
	.fixed_div	= 2,
	.recalc		= &omap2_fixed_divisor_recalc,
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
};

/*
 * 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.
 */
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
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 }
};

1166 1167
static struct clk core_l3_ck = {	/* Used for ick and fck, interconnect */
	.name		= "core_l3_ck",
1168
	.ops		= &clkops_null,
1169
	.parent		= &core_ck,
1170
	.flags		= DELAYED_APP | CONFIG_PARTICIPANT,
1171
	.clkdm_name	= "core_l3_clkdm",
1172 1173 1174
	.clksel_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_CLKSEL1),
	.clksel_mask	= OMAP24XX_CLKSEL_L3_MASK,
	.clksel		= core_l3_clksel,
1175
	.recalc		= &omap2_clksel_recalc,
1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
};

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

1193
/* It is unclear from TRM whether usb_l4_ick is really in L3 or L4 clkdm */
1194 1195
static struct clk usb_l4_ick = {	/* FS-USB interface clock */
	.name		= "usb_l4_ick",
1196
	.ops		= &clkops_omap2_dflt_wait,
1197
	.parent		= &core_l3_ck,
1198
	.flags		= DELAYED_APP | CONFIG_PARTICIPANT,
1199
	.clkdm_name	= "core_l4_clkdm",
1200 1201 1202 1203 1204
	.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,
1205
	.recalc		= &omap2_clksel_recalc,
1206 1207
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
1208 1209
};

1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
/*
 * 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",
1230
	.ops		= &clkops_null,
1231
	.parent		= &core_l3_ck,
1232
	.flags		= DELAYED_APP,
1233 1234 1235 1236 1237 1238 1239 1240 1241
	.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
};

1242 1243 1244 1245
/*
 * 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.
1246
 * SSI_SSR_FCLK, SSI_SST_FCLK, SSI_L4_ICLK
1247 1248 1249
 *
 * ssr = core/1/2/3/4/5, sst = 1/2 ssr.
 */
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
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 = 5, .val = 5, .flags = RATE_IN_243X },
	{ .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 }
};

1266 1267
static struct clk ssi_ssr_sst_fck = {
	.name		= "ssi_fck",
1268
	.ops		= &clkops_omap2_dflt_wait,
1269
	.parent		= &core_ck,
1270
	.flags		= DELAYED_APP,
1271
	.clkdm_name	= "core_l3_clkdm",
1272 1273 1274 1275 1276
	.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,
1277
	.recalc		= &omap2_clksel_recalc,
1278 1279
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
1280 1281
};

1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
/*
 * 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,
};

1296

1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
/*
 * 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.
 *
 */
1308 1309 1310 1311 1312 1313 1314 1315
/* XXX REVISIT: GFX clock is part of CONFIG_PARTICIPANT, no? doublecheck. */

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

1316 1317
static struct clk gfx_3d_fck = {
	.name		= "gfx_3d_fck",
1318
	.ops		= &clkops_omap2_dflt_wait,
1319
	.parent		= &core_l3_ck,
1320
	.clkdm_name	= "gfx_clkdm",
1321 1322 1323 1324 1325
	.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,
1326
	.recalc		= &omap2_clksel_recalc,
1327 1328
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
1329 1330 1331 1332
};

static struct clk gfx_2d_fck = {
	.name		= "gfx_2d_fck",
1333
	.ops		= &clkops_omap2_dflt_wait,
1334
	.parent		= &core_l3_ck,
1335
	.clkdm_name	= "gfx_clkdm",
1336 1337 1338 1339 1340
	.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,
1341
	.recalc		= &omap2_clksel_recalc,
1342 1343
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
1344 1345 1346 1347
};

static struct clk gfx_ick = {
	.name		= "gfx_ick",		/* From l3 */
1348
	.ops		= &clkops_omap2_dflt_wait,
1349
	.parent		= &core_l3_ck,
1350
	.clkdm_name	= "gfx_clkdm",
1351 1352 1353
	.enable_reg	= OMAP_CM_REGADDR(GFX_MOD, CM_ICLKEN),
	.enable_bit	= OMAP_EN_GFX_SHIFT,
	.recalc		= &followparent_recalc,
1354 1355 1356 1357 1358 1359 1360
};

/*
 * Modem clock domain (2430)
 *	CLOCKS:
 *		MDM_OSC_CLK
 *		MDM_ICLK
1361
 * These clocks are usable in chassis mode only.
1362
 */
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375
static const struct clksel_rate mdm_ick_core_rates[] = {
	{ .div = 1, .val = 1, .flags = RATE_IN_243X },
	{ .div = 4, .val = 4, .flags = RATE_IN_243X | DEFAULT_RATE },
	{ .div = 6, .val = 6, .flags = RATE_IN_243X },
	{ .div = 9, .val = 9, .flags = RATE_IN_243X },
	{ .div = 0 }
};

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

1376 1377
static struct clk mdm_ick = {		/* used both as a ick and fck */
	.name		= "mdm_ick",
1378
	.ops		= &clkops_omap2_dflt_wait,
1379
	.parent		= &core_ck,
1380
	.flags		= DELAYED_APP | CONFIG_PARTICIPANT,
1381
	.clkdm_name	= "mdm_clkdm",
1382 1383 1384 1385 1386
	.enable_reg	= OMAP_CM_REGADDR(OMAP2430_MDM_MOD, CM_ICLKEN),
	.enable_bit	= OMAP2430_CM_ICLKEN_MDM_EN_MDM_SHIFT,
	.clksel_reg	= OMAP_CM_REGADDR(OMAP2430_MDM_MOD, CM_CLKSEL),
	.clksel_mask	= OMAP2430_CLKSEL_MDM_MASK,
	.clksel		= mdm_ick_clksel,
1387
	.recalc		= &omap2_clksel_recalc,
1388 1389
	.round_rate	= &omap2_clksel_round_rate,
	.set_rate	= &omap2_clksel_set_rate
1390 1391 1392 1393
};

static struct clk mdm_osc_ck = {
	.name		= "mdm_osc_ck",
1394
	.ops		= &clkops_omap2_dflt_wait,
1395
	.parent		= &osc_ck,
1396
	.clkdm_name	= "mdm_clkdm",
1397 1398 1399
	.enable_reg	= OMAP_CM_REGADDR(OMAP2430_MDM_MOD, CM_FCLKEN),
	.enable_bit	= OMAP2430_EN_OSC_SHIFT,
	.recalc		= &followparent_recalc,
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
};

/*
 * DSS clock domain
 * CLOCKs:
 * DSS_L4_ICLK, DSS_L3_ICLK,
 * DSS_CLK1, DSS_CLK2, DSS_54MHz_CLK
 *
 * DSS is both initiator and target.
 */
1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
/* 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 },
};

1437 1438
static struct clk dss_ick = {		/* Enables both L3,L4 ICLK's */
	.name		= "dss_ick",
1439
	.ops		= &clkops_omap2_dflt,
1440
	.parent		= &l4_ck,	/* really both l3 and l4 */
1441
	.clkdm_name	= "dss_clkdm",
1442 1443 1444
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_DSS1_SHIFT,
	.recalc		= &followparent_recalc,
1445 1446 1447 1448
};

static struct clk dss1_fck = {
	.name		= "dss1_fck",
1449
	.ops		= &clkops_omap2_dflt,
1450
	.parent		= &core_ck,		/* Core or sys */
1451
	.flags		= DELAYED_APP,
1452
	.clkdm_name	= "dss_clkdm",
1453 1454 1455 1456 1457 1458
	.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,
1459
	.recalc		= &omap2_clksel_recalc,
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
	.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 }
1478 1479 1480 1481
};

static struct clk dss2_fck = {		/* Alt clk used in power management */
	.name		= "dss2_fck",
1482
	.ops		= &clkops_omap2_dflt,
1483
	.parent		= &sys_ck,		/* fixed at sys_ck or 48MHz */
1484
	.flags		= DELAYED_APP,
1485
	.clkdm_name	= "dss_clkdm",
1486 1487 1488 1489 1490 1491 1492
	.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,
1493 1494 1495 1496
};

static struct clk dss_54m_fck = {	/* Alt clk used in power management */
	.name		= "dss_54m_fck",	/* 54m tv clk */
1497
	.ops		= &clkops_omap2_dflt_wait,
1498
	.parent		= &func_54m_ck,
1499
	.clkdm_name	= "dss_clkdm",
1500 1501 1502
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_TV_SHIFT,
	.recalc		= &followparent_recalc,
1503 1504 1505 1506 1507 1508 1509 1510
};

/*
 * 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.
 */
1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
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 },
};

1523 1524
static struct clk gpt1_ick = {
	.name		= "gpt1_ick",
1525
	.ops		= &clkops_omap2_dflt_wait,
1526
	.parent		= &l4_ck,
1527
	.clkdm_name	= "core_l4_clkdm",
1528 1529 1530
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_GPT1_SHIFT,
	.recalc		= &followparent_recalc,
1531 1532 1533 1534
};

static struct clk gpt1_fck = {
	.name		= "gpt1_fck",
1535
	.ops		= &clkops_omap2_dflt_wait,
1536
	.parent		= &func_32k_ck,
1537
	.clkdm_name	= "core_l4_clkdm",
1538 1539 1540 1541 1542 1543 1544 1545 1546
	.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
1547 1548 1549 1550
};

static struct clk gpt2_ick = {
	.name		= "gpt2_ick",
1551
	.ops		= &clkops_omap2_dflt_wait,
1552
	.parent		= &l4_ck,
1553
	.clkdm_name	= "core_l4_clkdm",
1554 1555 1556
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT2_SHIFT,
	.recalc		= &followparent_recalc,
1557 1558 1559 1560
};

static struct clk gpt2_fck = {
	.name		= "gpt2_fck",
1561
	.ops		= &clkops_omap2_dflt_wait,
1562
	.parent		= &func_32k_ck,
1563
	.clkdm_name	= "core_l4_clkdm",
1564 1565 1566 1567 1568 1569 1570
	.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,
1571 1572 1573 1574
};

static struct clk gpt3_ick = {
	.name		= "gpt3_ick",
1575
	.ops		= &clkops_omap2_dflt_wait,
1576
	.parent		= &l4_ck,
1577
	.clkdm_name	= "core_l4_clkdm",
1578 1579 1580
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT3_SHIFT,
	.recalc		= &followparent_recalc,
1581 1582 1583 1584
};

static struct clk gpt3_fck = {
	.name		= "gpt3_fck",
1585
	.ops		= &clkops_omap2_dflt_wait,
1586
	.parent		= &func_32k_ck,
1587
	.clkdm_name	= "core_l4_clkdm",
1588 1589 1590 1591 1592 1593 1594
	.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,
1595 1596 1597 1598
};

static struct clk gpt4_ick = {
	.name		= "gpt4_ick",
1599
	.ops		= &clkops_omap2_dflt_wait,
1600
	.parent		= &l4_ck,
1601
	.clkdm_name	= "core_l4_clkdm",
1602 1603 1604
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT4_SHIFT,
	.recalc		= &followparent_recalc,
1605 1606 1607 1608
};

static struct clk gpt4_fck = {
	.name		= "gpt4_fck",
1609
	.ops		= &clkops_omap2_dflt_wait,
1610
	.parent		= &func_32k_ck,
1611
	.clkdm_name	= "core_l4_clkdm",
1612 1613 1614 1615 1616 1617 1618
	.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,
1619 1620 1621 1622
};

static struct clk gpt5_ick = {
	.name		= "gpt5_ick",
1623
	.ops		= &clkops_omap2_dflt_wait,
1624
	.parent		= &l4_ck,
1625
	.clkdm_name	= "core_l4_clkdm",
1626 1627 1628
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT5_SHIFT,
	.recalc		= &followparent_recalc,
1629 1630 1631 1632
};

static struct clk gpt5_fck = {
	.name		= "gpt5_fck",
1633
	.ops		= &clkops_omap2_dflt_wait,
1634
	.parent		= &func_32k_ck,
1635
	.clkdm_name	= "core_l4_clkdm",
1636 1637 1638 1639 1640 1641 1642
	.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,
1643 1644 1645 1646
};

static struct clk gpt6_ick = {
	.name		= "gpt6_ick",
1647
	.ops		= &clkops_omap2_dflt_wait,
1648
	.parent		= &l4_ck,
1649
	.clkdm_name	= "core_l4_clkdm",
1650 1651 1652
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT6_SHIFT,
	.recalc		= &followparent_recalc,
1653 1654 1655 1656
};

static struct clk gpt6_fck = {
	.name		= "gpt6_fck",
1657
	.ops		= &clkops_omap2_dflt_wait,
1658
	.parent		= &func_32k_ck,
1659
	.clkdm_name	= "core_l4_clkdm",
1660 1661 1662 1663 1664 1665 1666
	.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,
1667 1668 1669 1670
};

static struct clk gpt7_ick = {
	.name		= "gpt7_ick",
1671
	.ops		= &clkops_omap2_dflt_wait,
1672
	.parent		= &l4_ck,
1673 1674 1675
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT7_SHIFT,
	.recalc		= &followparent_recalc,
1676 1677 1678 1679
};

static struct clk gpt7_fck = {
	.name		= "gpt7_fck",
1680
	.ops		= &clkops_omap2_dflt_wait,
1681
	.parent		= &func_32k_ck,
1682
	.clkdm_name	= "core_l4_clkdm",
1683 1684 1685 1686 1687 1688 1689
	.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,
1690 1691 1692 1693
};

static struct clk gpt8_ick = {
	.name		= "gpt8_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, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT8_SHIFT,
	.recalc		= &followparent_recalc,
1700 1701 1702 1703
};

static struct clk gpt8_fck = {
	.name		= "gpt8_fck",
1704
	.ops		= &clkops_omap2_dflt_wait,
1705
	.parent		= &func_32k_ck,
1706
	.clkdm_name	= "core_l4_clkdm",
1707 1708 1709 1710 1711 1712 1713
	.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,
1714 1715 1716 1717
};

static struct clk gpt9_ick = {
	.name		= "gpt9_ick",
1718
	.ops		= &clkops_omap2_dflt_wait,
1719
	.parent		= &l4_ck,
1720
	.clkdm_name	= "core_l4_clkdm",
1721 1722 1723
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT9_SHIFT,
	.recalc		= &followparent_recalc,
1724 1725 1726 1727
};

static struct clk gpt9_fck = {
	.name		= "gpt9_fck",
1728
	.ops		= &clkops_omap2_dflt_wait,
1729
	.parent		= &func_32k_ck,
1730
	.clkdm_name	= "core_l4_clkdm",
1731 1732 1733 1734 1735 1736 1737
	.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,
1738 1739 1740 1741
};

static struct clk gpt10_ick = {
	.name		= "gpt10_ick",
1742
	.ops		= &clkops_omap2_dflt_wait,
1743
	.parent		= &l4_ck,
1744
	.clkdm_name	= "core_l4_clkdm",
1745 1746 1747
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT10_SHIFT,
	.recalc		= &followparent_recalc,
1748 1749 1750 1751
};

static struct clk gpt10_fck = {
	.name		= "gpt10_fck",
1752
	.ops		= &clkops_omap2_dflt_wait,
1753
	.parent		= &func_32k_ck,
1754
	.clkdm_name	= "core_l4_clkdm",
1755 1756 1757 1758 1759 1760 1761
	.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,
1762 1763 1764 1765
};

static struct clk gpt11_ick = {
	.name		= "gpt11_ick",
1766
	.ops		= &clkops_omap2_dflt_wait,
1767
	.parent		= &l4_ck,
1768
	.clkdm_name	= "core_l4_clkdm",
1769 1770 1771
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT11_SHIFT,
	.recalc		= &followparent_recalc,
1772 1773 1774 1775
};

static struct clk gpt11_fck = {
	.name		= "gpt11_fck",
1776
	.ops		= &clkops_omap2_dflt_wait,
1777
	.parent		= &func_32k_ck,
1778
	.clkdm_name	= "core_l4_clkdm",
1779 1780 1781 1782 1783 1784 1785
	.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,
1786 1787 1788 1789
};

static struct clk gpt12_ick = {
	.name		= "gpt12_ick",
1790
	.ops		= &clkops_omap2_dflt_wait,
1791
	.parent		= &l4_ck,
1792
	.clkdm_name	= "core_l4_clkdm",
1793 1794 1795
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_GPT12_SHIFT,
	.recalc		= &followparent_recalc,
1796 1797 1798 1799
};

static struct clk gpt12_fck = {
	.name		= "gpt12_fck",
1800
	.ops		= &clkops_omap2_dflt_wait,
1801
	.parent		= &secure_32k_ck,
1802
	.clkdm_name	= "core_l4_clkdm",
1803 1804 1805 1806 1807 1808 1809
	.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,
1810 1811 1812
};

static struct clk mcbsp1_ick = {
1813
	.name		= "mcbsp_ick",
1814
	.ops		= &clkops_omap2_dflt_wait,
1815
	.id		= 1,
1816
	.parent		= &l4_ck,
1817
	.clkdm_name	= "core_l4_clkdm",
1818 1819 1820
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MCBSP1_SHIFT,
	.recalc		= &followparent_recalc,
1821 1822 1823
};

static struct clk mcbsp1_fck = {
1824
	.name		= "mcbsp_fck",
1825
	.ops		= &clkops_omap2_dflt_wait,
1826
	.id		= 1,
1827
	.parent		= &func_96m_ck,
1828
	.clkdm_name	= "core_l4_clkdm",
1829 1830 1831
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MCBSP1_SHIFT,
	.recalc		= &followparent_recalc,
1832 1833 1834
};

static struct clk mcbsp2_ick = {
1835
	.name		= "mcbsp_ick",
1836
	.ops		= &clkops_omap2_dflt_wait,
1837
	.id		= 2,
1838
	.parent		= &l4_ck,
1839
	.clkdm_name	= "core_l4_clkdm",
1840 1841 1842
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MCBSP2_SHIFT,
	.recalc		= &followparent_recalc,
1843 1844 1845
};

static struct clk mcbsp2_fck = {
1846
	.name		= "mcbsp_fck",
1847
	.ops		= &clkops_omap2_dflt_wait,
1848
	.id		= 2,
1849
	.parent		= &func_96m_ck,
1850
	.clkdm_name	= "core_l4_clkdm",
1851 1852 1853
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MCBSP2_SHIFT,
	.recalc		= &followparent_recalc,
1854 1855 1856
};

static struct clk mcbsp3_ick = {
1857
	.name		= "mcbsp_ick",
1858
	.ops		= &clkops_omap2_dflt_wait,
1859
	.id		= 3,
1860
	.parent		= &l4_ck,
1861
	.clkdm_name	= "core_l4_clkdm",
1862 1863 1864
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_MCBSP3_SHIFT,
	.recalc		= &followparent_recalc,
1865 1866 1867
};

static struct clk mcbsp3_fck = {
1868
	.name		= "mcbsp_fck",
1869
	.ops		= &clkops_omap2_dflt_wait,
1870
	.id		= 3,
1871
	.parent		= &func_96m_ck,
1872
	.clkdm_name	= "core_l4_clkdm",
1873 1874 1875
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_MCBSP3_SHIFT,
	.recalc		= &followparent_recalc,
1876 1877 1878
};

static struct clk mcbsp4_ick = {
1879
	.name		= "mcbsp_ick",
1880
	.ops		= &clkops_omap2_dflt_wait,
1881
	.id		= 4,
1882
	.parent		= &l4_ck,
1883
	.clkdm_name	= "core_l4_clkdm",
1884 1885 1886
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_MCBSP4_SHIFT,
	.recalc		= &followparent_recalc,
1887 1888 1889
};

static struct clk mcbsp4_fck = {
1890
	.name		= "mcbsp_fck",
1891
	.ops		= &clkops_omap2_dflt_wait,
1892
	.id		= 4,
1893
	.parent		= &func_96m_ck,
1894
	.clkdm_name	= "core_l4_clkdm",
1895 1896 1897
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_MCBSP4_SHIFT,
	.recalc		= &followparent_recalc,
1898 1899 1900
};

static struct clk mcbsp5_ick = {
1901
	.name		= "mcbsp_ick",
1902
	.ops		= &clkops_omap2_dflt_wait,
1903
	.id		= 5,
1904
	.parent		= &l4_ck,
1905
	.clkdm_name	= "core_l4_clkdm",
1906 1907 1908
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_MCBSP5_SHIFT,
	.recalc		= &followparent_recalc,
1909 1910 1911
};

static struct clk mcbsp5_fck = {
1912
	.name		= "mcbsp_fck",
1913
	.ops		= &clkops_omap2_dflt_wait,
1914
	.id		= 5,
1915
	.parent		= &func_96m_ck,
1916
	.clkdm_name	= "core_l4_clkdm",
1917 1918 1919
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_MCBSP5_SHIFT,
	.recalc		= &followparent_recalc,
1920 1921 1922
};

static struct clk mcspi1_ick = {
1923
	.name		= "mcspi_ick",
1924
	.ops		= &clkops_omap2_dflt_wait,
1925
	.id		= 1,
1926
	.parent		= &l4_ck,
1927
	.clkdm_name	= "core_l4_clkdm",
1928 1929 1930
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MCSPI1_SHIFT,
	.recalc		= &followparent_recalc,
1931 1932 1933
};

static struct clk mcspi1_fck = {
1934
	.name		= "mcspi_fck",
1935
	.ops		= &clkops_omap2_dflt_wait,
1936
	.id		= 1,
1937
	.parent		= &func_48m_ck,
1938
	.clkdm_name	= "core_l4_clkdm",
1939 1940 1941
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MCSPI1_SHIFT,
	.recalc		= &followparent_recalc,
1942 1943 1944
};

static struct clk mcspi2_ick = {
1945
	.name		= "mcspi_ick",
1946
	.ops		= &clkops_omap2_dflt_wait,
1947
	.id		= 2,
1948
	.parent		= &l4_ck,
1949
	.clkdm_name	= "core_l4_clkdm",
1950 1951 1952
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MCSPI2_SHIFT,
	.recalc		= &followparent_recalc,
1953 1954 1955
};

static struct clk mcspi2_fck = {
1956
	.name		= "mcspi_fck",
1957
	.ops		= &clkops_omap2_dflt_wait,
1958
	.id		= 2,
1959
	.parent		= &func_48m_ck,
1960
	.clkdm_name	= "core_l4_clkdm",
1961 1962 1963
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MCSPI2_SHIFT,
	.recalc		= &followparent_recalc,
1964 1965 1966
};

static struct clk mcspi3_ick = {
1967
	.name		= "mcspi_ick",
1968
	.ops		= &clkops_omap2_dflt_wait,
1969
	.id		= 3,
1970
	.parent		= &l4_ck,
1971
	.clkdm_name	= "core_l4_clkdm",
1972 1973 1974
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_MCSPI3_SHIFT,
	.recalc		= &followparent_recalc,
1975 1976 1977
};

static struct clk mcspi3_fck = {
1978
	.name		= "mcspi_fck",
1979
	.ops		= &clkops_omap2_dflt_wait,
1980
	.id		= 3,
1981
	.parent		= &func_48m_ck,
1982
	.clkdm_name	= "core_l4_clkdm",
1983 1984 1985
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_MCSPI3_SHIFT,
	.recalc		= &followparent_recalc,
1986 1987 1988 1989
};

static struct clk uart1_ick = {
	.name		= "uart1_ick",
1990
	.ops		= &clkops_omap2_dflt_wait,
1991
	.parent		= &l4_ck,
1992
	.clkdm_name	= "core_l4_clkdm",
1993 1994 1995
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_UART1_SHIFT,
	.recalc		= &followparent_recalc,
1996 1997 1998 1999
};

static struct clk uart1_fck = {
	.name		= "uart1_fck",
2000
	.ops		= &clkops_omap2_dflt_wait,
2001
	.parent		= &func_48m_ck,
2002
	.clkdm_name	= "core_l4_clkdm",
2003 2004 2005
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_UART1_SHIFT,
	.recalc		= &followparent_recalc,
2006 2007 2008 2009
};

static struct clk uart2_ick = {
	.name		= "uart2_ick",
2010
	.ops		= &clkops_omap2_dflt_wait,
2011
	.parent		= &l4_ck,
2012
	.clkdm_name	= "core_l4_clkdm",
2013 2014 2015
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_UART2_SHIFT,
	.recalc		= &followparent_recalc,
2016 2017 2018 2019
};

static struct clk uart2_fck = {
	.name		= "uart2_fck",
2020
	.ops		= &clkops_omap2_dflt_wait,
2021
	.parent		= &func_48m_ck,
2022
	.clkdm_name	= "core_l4_clkdm",
2023 2024 2025
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_UART2_SHIFT,
	.recalc		= &followparent_recalc,
2026 2027 2028 2029
};

static struct clk uart3_ick = {
	.name		= "uart3_ick",
2030
	.ops		= &clkops_omap2_dflt_wait,
2031
	.parent		= &l4_ck,
2032
	.clkdm_name	= "core_l4_clkdm",
2033 2034 2035
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP24XX_EN_UART3_SHIFT,
	.recalc		= &followparent_recalc,
2036 2037 2038 2039
};

static struct clk uart3_fck = {
	.name		= "uart3_fck",
2040
	.ops		= &clkops_omap2_dflt_wait,
2041
	.parent		= &func_48m_ck,
2042
	.clkdm_name	= "core_l4_clkdm",
2043 2044 2045
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP24XX_EN_UART3_SHIFT,
	.recalc		= &followparent_recalc,
2046 2047 2048 2049
};

static struct clk gpios_ick = {
	.name		= "gpios_ick",
2050
	.ops		= &clkops_omap2_dflt_wait,
2051
	.parent		= &l4_ck,
2052
	.clkdm_name	= "core_l4_clkdm",
2053 2054 2055
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_GPIOS_SHIFT,
	.recalc		= &followparent_recalc,
2056 2057 2058 2059
};

static struct clk gpios_fck = {
	.name		= "gpios_fck",
2060
	.ops		= &clkops_omap2_dflt_wait,
2061
	.parent		= &func_32k_ck,
2062
	.clkdm_name	= "wkup_clkdm",
2063 2064 2065
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_EN_GPIOS_SHIFT,
	.recalc		= &followparent_recalc,
2066 2067 2068 2069
};

static struct clk mpu_wdt_ick = {
	.name		= "mpu_wdt_ick",
2070
	.ops		= &clkops_omap2_dflt_wait,
2071
	.parent		= &l4_ck,
2072
	.clkdm_name	= "core_l4_clkdm",
2073 2074 2075
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_MPU_WDT_SHIFT,
	.recalc		= &followparent_recalc,
2076 2077 2078 2079
};

static struct clk mpu_wdt_fck = {
	.name		= "mpu_wdt_fck",
2080
	.ops		= &clkops_omap2_dflt_wait,
2081
	.parent		= &func_32k_ck,
2082
	.clkdm_name	= "wkup_clkdm",
2083 2084 2085
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_FCLKEN),
	.enable_bit	= OMAP24XX_EN_MPU_WDT_SHIFT,
	.recalc		= &followparent_recalc,
2086 2087 2088 2089
};

static struct clk sync_32k_ick = {
	.name		= "sync_32k_ick",
2090
	.ops		= &clkops_omap2_dflt_wait,
2091
	.parent		= &l4_ck,
2092
	.flags		= ENABLE_ON_INIT,
2093
	.clkdm_name	= "core_l4_clkdm",
2094 2095 2096
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_32KSYNC_SHIFT,
	.recalc		= &followparent_recalc,
2097
};
2098

2099 2100
static struct clk wdt1_ick = {
	.name		= "wdt1_ick",
2101
	.ops		= &clkops_omap2_dflt_wait,
2102
	.parent		= &l4_ck,
2103
	.clkdm_name	= "core_l4_clkdm",
2104 2105 2106
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_WDT1_SHIFT,
	.recalc		= &followparent_recalc,
2107
};
2108

2109 2110
static struct clk omapctrl_ick = {
	.name		= "omapctrl_ick",
2111
	.ops		= &clkops_omap2_dflt_wait,
2112
	.parent		= &l4_ck,
2113
	.flags		= ENABLE_ON_INIT,
2114
	.clkdm_name	= "core_l4_clkdm",
2115 2116 2117
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP24XX_EN_OMAPCTRL_SHIFT,
	.recalc		= &followparent_recalc,
2118
};
2119

2120 2121
static struct clk icr_ick = {
	.name		= "icr_ick",
2122
	.ops		= &clkops_omap2_dflt_wait,
2123
	.parent		= &l4_ck,
2124
	.clkdm_name	= "core_l4_clkdm",
2125 2126 2127
	.enable_reg	= OMAP_CM_REGADDR(WKUP_MOD, CM_ICLKEN),
	.enable_bit	= OMAP2430_EN_ICR_SHIFT,
	.recalc		= &followparent_recalc,
2128 2129 2130 2131
};

static struct clk cam_ick = {
	.name		= "cam_ick",
2132
	.ops		= &clkops_omap2_dflt,
2133
	.parent		= &l4_ck,
2134
	.clkdm_name	= "core_l4_clkdm",
2135 2136 2137
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_CAM_SHIFT,
	.recalc		= &followparent_recalc,
2138 2139
};

2140 2141 2142 2143 2144
/*
 * 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.
 */
2145 2146
static struct clk cam_fck = {
	.name		= "cam_fck",
2147
	.ops		= &clkops_omap2_dflt,
2148
	.parent		= &func_96m_ck,
2149
	.clkdm_name	= "core_l3_clkdm",
2150 2151 2152
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_CAM_SHIFT,
	.recalc		= &followparent_recalc,
2153 2154 2155 2156
};

static struct clk mailboxes_ick = {
	.name		= "mailboxes_ick",
2157
	.ops		= &clkops_omap2_dflt_wait,
2158
	.parent		= &l4_ck,
2159
	.clkdm_name	= "core_l4_clkdm",
2160 2161 2162
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MAILBOXES_SHIFT,
	.recalc		= &followparent_recalc,
2163 2164 2165 2166
};

static struct clk wdt4_ick = {
	.name		= "wdt4_ick",
2167
	.ops		= &clkops_omap2_dflt_wait,
2168
	.parent		= &l4_ck,
2169
	.clkdm_name	= "core_l4_clkdm",
2170 2171 2172
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_WDT4_SHIFT,
	.recalc		= &followparent_recalc,
2173 2174 2175 2176
};

static struct clk wdt4_fck = {
	.name		= "wdt4_fck",
2177
	.ops		= &clkops_omap2_dflt_wait,
2178
	.parent		= &func_32k_ck,
2179
	.clkdm_name	= "core_l4_clkdm",
2180 2181 2182
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_WDT4_SHIFT,
	.recalc		= &followparent_recalc,
2183 2184 2185 2186
};

static struct clk wdt3_ick = {
	.name		= "wdt3_ick",
2187
	.ops		= &clkops_omap2_dflt_wait,
2188
	.parent		= &l4_ck,
2189
	.clkdm_name	= "core_l4_clkdm",
2190 2191 2192
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_WDT3_SHIFT,
	.recalc		= &followparent_recalc,
2193 2194 2195 2196
};

static struct clk wdt3_fck = {
	.name		= "wdt3_fck",
2197
	.ops		= &clkops_omap2_dflt_wait,
2198
	.parent		= &func_32k_ck,
2199
	.clkdm_name	= "core_l4_clkdm",
2200 2201 2202
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_WDT3_SHIFT,
	.recalc		= &followparent_recalc,
2203 2204 2205 2206
};

static struct clk mspro_ick = {
	.name		= "mspro_ick",
2207
	.ops		= &clkops_omap2_dflt_wait,
2208
	.parent		= &l4_ck,
2209
	.clkdm_name	= "core_l4_clkdm",
2210 2211 2212
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_MSPRO_SHIFT,
	.recalc		= &followparent_recalc,
2213 2214 2215 2216
};

static struct clk mspro_fck = {
	.name		= "mspro_fck",
2217
	.ops		= &clkops_omap2_dflt_wait,
2218
	.parent		= &func_96m_ck,
2219
	.clkdm_name	= "core_l4_clkdm",
2220 2221 2222
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_MSPRO_SHIFT,
	.recalc		= &followparent_recalc,
2223 2224 2225 2226
};

static struct clk mmc_ick = {
	.name		= "mmc_ick",
2227
	.ops		= &clkops_omap2_dflt_wait,
2228
	.parent		= &l4_ck,
2229
	.clkdm_name	= "core_l4_clkdm",
2230 2231 2232
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_MMC_SHIFT,
	.recalc		= &followparent_recalc,
2233 2234 2235 2236
};

static struct clk mmc_fck = {
	.name		= "mmc_fck",
2237
	.ops		= &clkops_omap2_dflt_wait,
2238
	.parent		= &func_96m_ck,
2239
	.clkdm_name	= "core_l4_clkdm",
2240 2241 2242
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_MMC_SHIFT,
	.recalc		= &followparent_recalc,
2243 2244 2245 2246
};

static struct clk fac_ick = {
	.name		= "fac_ick",
2247
	.ops		= &clkops_omap2_dflt_wait,
2248
	.parent		= &l4_ck,
2249
	.clkdm_name	= "core_l4_clkdm",
2250 2251 2252
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_FAC_SHIFT,
	.recalc		= &followparent_recalc,
2253 2254 2255 2256
};

static struct clk fac_fck = {
	.name		= "fac_fck",
2257
	.ops		= &clkops_omap2_dflt_wait,
2258
	.parent		= &func_12m_ck,
2259
	.clkdm_name	= "core_l4_clkdm",
2260 2261 2262
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_FAC_SHIFT,
	.recalc		= &followparent_recalc,
2263 2264 2265 2266
};

static struct clk eac_ick = {
	.name		= "eac_ick",
2267
	.ops		= &clkops_omap2_dflt_wait,
2268
	.parent		= &l4_ck,
2269
	.clkdm_name	= "core_l4_clkdm",
2270 2271 2272
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_EAC_SHIFT,
	.recalc		= &followparent_recalc,
2273 2274 2275 2276
};

static struct clk eac_fck = {
	.name		= "eac_fck",
2277
	.ops		= &clkops_omap2_dflt_wait,
2278
	.parent		= &func_96m_ck,
2279
	.clkdm_name	= "core_l4_clkdm",
2280 2281 2282
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_EAC_SHIFT,
	.recalc		= &followparent_recalc,
2283 2284 2285 2286
};

static struct clk hdq_ick = {
	.name		= "hdq_ick",
2287
	.ops		= &clkops_omap2_dflt_wait,
2288
	.parent		= &l4_ck,
2289
	.clkdm_name	= "core_l4_clkdm",
2290 2291 2292
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP24XX_EN_HDQ_SHIFT,
	.recalc		= &followparent_recalc,
2293 2294 2295 2296
};

static struct clk hdq_fck = {
	.name		= "hdq_fck",
2297
	.ops		= &clkops_omap2_dflt_wait,
2298
	.parent		= &func_12m_ck,
2299
	.clkdm_name	= "core_l4_clkdm",
2300 2301 2302
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP24XX_EN_HDQ_SHIFT,
	.recalc		= &followparent_recalc,
2303 2304 2305
};

static struct clk i2c2_ick = {
2306
	.name		= "i2c_ick",
2307
	.ops		= &clkops_omap2_dflt_wait,
2308
	.id		= 2,
2309
	.parent		= &l4_ck,
2310
	.clkdm_name	= "core_l4_clkdm",
2311 2312 2313
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_I2C2_SHIFT,
	.recalc		= &followparent_recalc,
2314 2315 2316
};

static struct clk i2c2_fck = {
2317
	.name		= "i2c_fck",
2318
	.ops		= &clkops_omap2_dflt_wait,
2319
	.id		= 2,
2320
	.parent		= &func_12m_ck,
2321
	.clkdm_name	= "core_l4_clkdm",
2322 2323 2324
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_I2C2_SHIFT,
	.recalc		= &followparent_recalc,
2325 2326 2327
};

static struct clk i2chs2_fck = {
2328
	.name		= "i2c_fck",
2329
	.ops		= &clkops_omap2_dflt_wait,
2330
	.id		= 2,
2331
	.parent		= &func_96m_ck,
2332
	.clkdm_name	= "core_l4_clkdm",
2333 2334 2335
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_I2CHS2_SHIFT,
	.recalc		= &followparent_recalc,
2336 2337 2338
};

static struct clk i2c1_ick = {
2339
	.name		= "i2c_ick",
2340
	.ops		= &clkops_omap2_dflt_wait,
2341
	.id		= 1,
2342
	.parent		= &l4_ck,
2343
	.clkdm_name	= "core_l4_clkdm",
2344 2345 2346
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN1),
	.enable_bit	= OMAP2420_EN_I2C1_SHIFT,
	.recalc		= &followparent_recalc,
2347 2348 2349
};

static struct clk i2c1_fck = {
2350
	.name		= "i2c_fck",
2351
	.ops		= &clkops_omap2_dflt_wait,
2352
	.id		= 1,
2353
	.parent		= &func_12m_ck,
2354
	.clkdm_name	= "core_l4_clkdm",
2355 2356 2357
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1),
	.enable_bit	= OMAP2420_EN_I2C1_SHIFT,
	.recalc		= &followparent_recalc,
2358 2359 2360
};

static struct clk i2chs1_fck = {
2361
	.name		= "i2c_fck",
2362
	.ops		= &clkops_omap2_dflt_wait,
2363
	.id		= 1,
2364
	.parent		= &func_96m_ck,
2365
	.clkdm_name	= "core_l4_clkdm",
2366 2367 2368 2369 2370 2371 2372
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_I2CHS1_SHIFT,
	.recalc		= &followparent_recalc,
};

static struct clk gpmc_fck = {
	.name		= "gpmc_fck",
2373
	.ops		= &clkops_null, /* RMK: missing? */
2374
	.parent		= &core_l3_ck,
2375
	.flags		= ENABLE_ON_INIT,
2376
	.clkdm_name	= "core_l3_clkdm",
2377 2378 2379 2380 2381
	.recalc		= &followparent_recalc,
};

static struct clk sdma_fck = {
	.name		= "sdma_fck",
2382
	.ops		= &clkops_null, /* RMK: missing? */
2383
	.parent		= &core_l3_ck,
2384
	.clkdm_name	= "core_l3_clkdm",
2385 2386 2387 2388 2389
	.recalc		= &followparent_recalc,
};

static struct clk sdma_ick = {
	.name		= "sdma_ick",
2390
	.ops		= &clkops_null, /* RMK: missing? */
2391
	.parent		= &l4_ck,
2392
	.clkdm_name	= "core_l3_clkdm",
2393
	.recalc		= &followparent_recalc,
2394 2395 2396 2397
};

static struct clk vlynq_ick = {
	.name		= "vlynq_ick",
2398
	.ops		= &clkops_omap2_dflt_wait,
2399
	.parent		= &core_l3_ck,
2400
	.clkdm_name	= "core_l3_clkdm",
2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428
	.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 }
2429 2430 2431 2432
};

static struct clk vlynq_fck = {
	.name		= "vlynq_fck",
2433
	.ops		= &clkops_omap2_dflt_wait,
2434
	.parent		= &func_96m_ck,
2435
	.flags		= DELAYED_APP,
2436
	.clkdm_name	= "core_l3_clkdm",
2437 2438 2439 2440 2441 2442 2443 2444 2445
	.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
2446 2447 2448 2449
};

static struct clk sdrc_ick = {
	.name		= "sdrc_ick",
2450
	.ops		= &clkops_omap2_dflt_wait,
2451
	.parent		= &l4_ck,
2452
	.flags		= ENABLE_ON_INIT,
2453
	.clkdm_name	= "core_l4_clkdm",
2454 2455 2456
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN3),
	.enable_bit	= OMAP2430_EN_SDRC_SHIFT,
	.recalc		= &followparent_recalc,
2457 2458 2459 2460
};

static struct clk des_ick = {
	.name		= "des_ick",
2461
	.ops		= &clkops_omap2_dflt_wait,
2462
	.parent		= &l4_ck,
2463
	.clkdm_name	= "core_l4_clkdm",
2464 2465 2466
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_DES_SHIFT,
	.recalc		= &followparent_recalc,
2467 2468 2469 2470
};

static struct clk sha_ick = {
	.name		= "sha_ick",
2471
	.ops		= &clkops_omap2_dflt_wait,
2472
	.parent		= &l4_ck,
2473
	.clkdm_name	= "core_l4_clkdm",
2474 2475 2476
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_SHA_SHIFT,
	.recalc		= &followparent_recalc,
2477 2478 2479 2480
};

static struct clk rng_ick = {
	.name		= "rng_ick",
2481
	.ops		= &clkops_omap2_dflt_wait,
2482
	.parent		= &l4_ck,
2483
	.clkdm_name	= "core_l4_clkdm",
2484 2485 2486
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_RNG_SHIFT,
	.recalc		= &followparent_recalc,
2487 2488 2489 2490
};

static struct clk aes_ick = {
	.name		= "aes_ick",
2491
	.ops		= &clkops_omap2_dflt_wait,
2492
	.parent		= &l4_ck,
2493
	.clkdm_name	= "core_l4_clkdm",
2494 2495 2496
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_AES_SHIFT,
	.recalc		= &followparent_recalc,
2497 2498 2499 2500
};

static struct clk pka_ick = {
	.name		= "pka_ick",
2501
	.ops		= &clkops_omap2_dflt_wait,
2502
	.parent		= &l4_ck,
2503
	.clkdm_name	= "core_l4_clkdm",
2504 2505 2506
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_ICLKEN4),
	.enable_bit	= OMAP24XX_EN_PKA_SHIFT,
	.recalc		= &followparent_recalc,
2507 2508 2509 2510
};

static struct clk usb_fck = {
	.name		= "usb_fck",
2511
	.ops		= &clkops_omap2_dflt_wait,
2512
	.parent		= &func_48m_ck,
2513
	.clkdm_name	= "core_l3_clkdm",
2514 2515 2516
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP24XX_EN_USB_SHIFT,
	.recalc		= &followparent_recalc,
2517 2518 2519 2520
};

static struct clk usbhs_ick = {
	.name		= "usbhs_ick",
2521
	.ops		= &clkops_omap2_dflt_wait,
2522
	.parent		= &core_l3_ck,
2523
	.clkdm_name	= "core_l3_clkdm",
2524 2525 2526
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_USBHS_SHIFT,
	.recalc		= &followparent_recalc,
2527 2528 2529
};

static struct clk mmchs1_ick = {
2530
	.name		= "mmchs_ick",
2531
	.ops		= &clkops_omap2_dflt_wait,
2532
	.parent		= &l4_ck,
2533
	.clkdm_name	= "core_l4_clkdm",
2534 2535 2536
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_MMCHS1_SHIFT,
	.recalc		= &followparent_recalc,
2537 2538 2539
};

static struct clk mmchs1_fck = {
2540
	.name		= "mmchs_fck",
2541
	.ops		= &clkops_omap2_dflt_wait,
2542
	.parent		= &func_96m_ck,
2543
	.clkdm_name	= "core_l3_clkdm",
2544 2545 2546
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_MMCHS1_SHIFT,
	.recalc		= &followparent_recalc,
2547 2548 2549
};

static struct clk mmchs2_ick = {
2550
	.name		= "mmchs_ick",
2551
	.ops		= &clkops_omap2_dflt_wait,
2552
	.id		= 1,
2553
	.parent		= &l4_ck,
2554
	.clkdm_name	= "core_l4_clkdm",
2555 2556 2557
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_MMCHS2_SHIFT,
	.recalc		= &followparent_recalc,
2558 2559 2560
};

static struct clk mmchs2_fck = {
2561
	.name		= "mmchs_fck",
2562
	.ops		= &clkops_omap2_dflt_wait,
2563
	.id		= 1,
2564
	.parent		= &func_96m_ck,
2565 2566 2567
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_MMCHS2_SHIFT,
	.recalc		= &followparent_recalc,
2568 2569 2570 2571
};

static struct clk gpio5_ick = {
	.name		= "gpio5_ick",
2572
	.ops		= &clkops_omap2_dflt_wait,
2573
	.parent		= &l4_ck,
2574
	.clkdm_name	= "core_l4_clkdm",
2575 2576 2577
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_GPIO5_SHIFT,
	.recalc		= &followparent_recalc,
2578 2579 2580 2581
};

static struct clk gpio5_fck = {
	.name		= "gpio5_fck",
2582
	.ops		= &clkops_omap2_dflt_wait,
2583
	.parent		= &func_32k_ck,
2584
	.clkdm_name	= "core_l4_clkdm",
2585 2586 2587
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_GPIO5_SHIFT,
	.recalc		= &followparent_recalc,
2588 2589 2590 2591
};

static struct clk mdm_intc_ick = {
	.name		= "mdm_intc_ick",
2592
	.ops		= &clkops_omap2_dflt_wait,
2593
	.parent		= &l4_ck,
2594
	.clkdm_name	= "core_l4_clkdm",
2595 2596 2597
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, CM_ICLKEN2),
	.enable_bit	= OMAP2430_EN_MDM_INTC_SHIFT,
	.recalc		= &followparent_recalc,
2598 2599 2600
};

static struct clk mmchsdb1_fck = {
2601
	.name		= "mmchsdb_fck",
2602
	.ops		= &clkops_omap2_dflt_wait,
2603
	.parent		= &func_32k_ck,
2604
	.clkdm_name	= "core_l4_clkdm",
2605 2606 2607
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_MMCHSDB1_SHIFT,
	.recalc		= &followparent_recalc,
2608 2609 2610
};

static struct clk mmchsdb2_fck = {
2611
	.name		= "mmchsdb_fck",
2612
	.ops		= &clkops_omap2_dflt_wait,
2613
	.id		= 1,
2614
	.parent		= &func_32k_ck,
2615
	.clkdm_name	= "core_l4_clkdm",
2616 2617 2618
	.enable_reg	= OMAP_CM_REGADDR(CORE_MOD, OMAP24XX_CM_FCLKEN2),
	.enable_bit	= OMAP2430_EN_MMCHSDB2_SHIFT,
	.recalc		= &followparent_recalc,
2619
};
2620

2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636
/*
 * 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",
2637
	.ops		= &clkops_null,
2638
	.flags		= DELAYED_APP,
2639
	.parent		= &mpu_ck,	/* Indexed by mpu speed, no parent */
2640
	.recalc		= &omap2_table_mpu_recalc,	/* sets are keyed on mpu rate */
2641 2642 2643
	.set_rate	= &omap2_select_table_rate,
	.round_rate	= &omap2_round_to_table_rate,
};
2644

2645
#endif
2646