clock.h 19.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *  linux/arch/arm/mach-omap1/clock.h
 *
 *  Copyright (C) 2004 - 2005 Nokia corporation
 *  Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
 *  Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc
 *
 * 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.
 */

#ifndef __ARCH_ARM_MACH_OMAP1_CLOCK_H
#define __ARCH_ARM_MACH_OMAP1_CLOCK_H

16 17
static unsigned long omap1_ckctl_recalc(struct clk *clk);
static unsigned long omap1_watchdog_recalc(struct clk *clk);
I
Imre Deak 已提交
18
static int omap1_set_sossi_rate(struct clk *clk, unsigned long rate);
19 20
static unsigned long omap1_sossi_recalc(struct clk *clk);
static unsigned long omap1_ckctl_recalc_dsp_domain(struct clk *clk);
21 22
static int omap1_clk_set_rate_dsp_domain(struct clk * clk, unsigned long rate);
static int omap1_set_uart_rate(struct clk * clk, unsigned long rate);
23
static unsigned long omap1_uart_recalc(struct clk *clk);
24 25 26 27 28 29
static int omap1_set_ext_clk_rate(struct clk * clk, unsigned long rate);
static long omap1_round_ext_clk_rate(struct clk * clk, unsigned long rate);
static void omap1_init_ext_clk(struct clk * clk);
static int omap1_select_table_rate(struct clk * clk, unsigned long rate);
static long omap1_round_to_table_rate(struct clk * clk, unsigned long rate);

30 31 32
static int omap1_clk_set_rate_ckctl_arm(struct clk *clk, unsigned long rate);
static long omap1_clk_round_rate_ckctl_arm(struct clk *clk, unsigned long rate);

33 34 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
struct mpu_rate {
	unsigned long		rate;
	unsigned long		xtal;
	unsigned long		pll_rate;
	__u16			ckctl_val;
	__u16			dpllctl_val;
};

struct uart_clk {
	struct clk	clk;
	unsigned long	sysc_addr;
};

/* Provide a method for preventing idling some ARM IDLECT clocks */
struct arm_idlect1_clk {
	struct clk	clk;
	unsigned long	no_idle_count;
	__u8		idlect_shift;
};

/* ARM_CKCTL bit shifts */
#define CKCTL_PERDIV_OFFSET	0
#define CKCTL_LCDDIV_OFFSET	2
#define CKCTL_ARMDIV_OFFSET	4
#define CKCTL_DSPDIV_OFFSET	6
#define CKCTL_TCDIV_OFFSET	8
#define CKCTL_DSPMMUDIV_OFFSET	10
/*#define ARM_TIMXO		12*/
#define EN_DSPCK		13
/*#define ARM_INTHCK_SEL	14*/ /* Divide-by-2 for mpu inth_ck */
/* DSP_CKCTL bit shifts */
#define CKCTL_DSPPERDIV_OFFSET	0

/* ARM_IDLECT2 bit shifts */
#define EN_WDTCK	0
#define EN_XORPCK	1
#define EN_PERCK	2
#define EN_LCDCK	3
#define EN_LBCK		4 /* Not on 1610/1710 */
/*#define EN_HSABCK	5*/
#define EN_APICK	6
#define EN_TIMCK	7
#define DMACK_REQ	8
#define EN_GPIOCK	9 /* Not on 1610/1710 */
/*#define EN_LBFREECK	10*/
#define EN_CKOUT_ARM	11

/* ARM_IDLECT3 bit shifts */
#define EN_OCPI_CK	0
#define EN_TC1_CK	2
#define EN_TC2_CK	4

/* DSP_IDLECT2 bit shifts (0,1,2 are same as for ARM_IDLECT2) */
#define EN_DSPTIMCK	5

/* Various register defines for clock controls scattered around OMAP chip */
89
#define SDW_MCLK_INV_BIT	2	/* In ULPD_CLKC_CTRL */
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
#define USB_MCLK_EN_BIT		4	/* In ULPD_CLKC_CTRL */
#define USB_HOST_HHC_UHOST_EN	9	/* In MOD_CONF_CTRL_0 */
#define SWD_ULPD_PLL_CLK_REQ	1	/* In SWD_CLK_DIV_CTRL_SEL */
#define COM_ULPD_PLL_CLK_REQ	1	/* In COM_CLK_DIV_CTRL_SEL */
#define SWD_CLK_DIV_CTRL_SEL	0xfffe0874
#define COM_CLK_DIV_CTRL_SEL	0xfffe0878
#define SOFT_REQ_REG		0xfffe0834
#define SOFT_REQ_REG2		0xfffe0880

/*-------------------------------------------------------------------------
 * Omap1 MPU rate table
 *-------------------------------------------------------------------------*/
static struct mpu_rate rate_table[] = {
	/* MPU MHz, xtal MHz, dpll1 MHz, CKCTL, DPLL_CTL
	 * NOTE: Comment order here is different from bits in CKCTL value:
	 * armdiv, dspdiv, dspmmu, tcdiv, perdiv, lcddiv
	 */
#if defined(CONFIG_OMAP_ARM_216MHZ)
	{ 216000000, 12000000, 216000000, 0x050d, 0x2910 }, /* 1/1/2/2/2/8 */
#endif
#if defined(CONFIG_OMAP_ARM_195MHZ)
	{ 195000000, 13000000, 195000000, 0x050e, 0x2790 }, /* 1/1/2/2/4/8 */
#endif
#if defined(CONFIG_OMAP_ARM_192MHZ)
	{ 192000000, 19200000, 192000000, 0x050f, 0x2510 }, /* 1/1/2/2/8/8 */
	{ 192000000, 12000000, 192000000, 0x050f, 0x2810 }, /* 1/1/2/2/8/8 */
	{  96000000, 12000000, 192000000, 0x055f, 0x2810 }, /* 2/2/2/2/8/8 */
	{  48000000, 12000000, 192000000, 0x0baf, 0x2810 }, /* 4/4/4/8/8/8 */
	{  24000000, 12000000, 192000000, 0x0fff, 0x2810 }, /* 8/8/8/8/8/8 */
#endif
#if defined(CONFIG_OMAP_ARM_182MHZ)
	{ 182000000, 13000000, 182000000, 0x050e, 0x2710 }, /* 1/1/2/2/4/8 */
#endif
#if defined(CONFIG_OMAP_ARM_168MHZ)
	{ 168000000, 12000000, 168000000, 0x010f, 0x2710 }, /* 1/1/1/2/8/8 */
#endif
#if defined(CONFIG_OMAP_ARM_150MHZ)
	{ 150000000, 12000000, 150000000, 0x010a, 0x2cb0 }, /* 1/1/1/2/4/4 */
#endif
#if defined(CONFIG_OMAP_ARM_120MHZ)
	{ 120000000, 12000000, 120000000, 0x010a, 0x2510 }, /* 1/1/1/2/4/4 */
#endif
#if defined(CONFIG_OMAP_ARM_96MHZ)
	{  96000000, 12000000,  96000000, 0x0005, 0x2410 }, /* 1/1/1/1/2/2 */
#endif
#if defined(CONFIG_OMAP_ARM_60MHZ)
	{  60000000, 12000000,  60000000, 0x0005, 0x2290 }, /* 1/1/1/1/2/2 */
#endif
#if defined(CONFIG_OMAP_ARM_30MHZ)
	{  30000000, 12000000,  60000000, 0x0555, 0x2290 }, /* 2/2/2/2/2/2 */
#endif
	{ 0, 0, 0, 0, 0 },
};

/*-------------------------------------------------------------------------
 * Omap1 clocks
 *-------------------------------------------------------------------------*/

static struct clk ck_ref = {
	.name		= "ck_ref",
150
	.ops		= &clkops_null,
151 152 153 154 155
	.rate		= 12000000,
};

static struct clk ck_dpll1 = {
	.name		= "ck_dpll1",
156
	.ops		= &clkops_null,
157 158 159
	.parent		= &ck_ref,
};

160 161 162 163
/*
 * FIXME: This clock seems to be necessary but no-one has asked for its
 * activation.  [ FIX: SoSSI, SSR ]
 */
164 165
static struct arm_idlect1_clk ck_dpll1out = {
	.clk = {
I
Imre Deak 已提交
166
		.name		= "ck_dpll1out",
167
		.ops		= &clkops_generic,
168
		.parent		= &ck_dpll1,
169 170
		.flags		= CLOCK_IDLE_CONTROL | ENABLE_REG_32BIT |
				  ENABLE_ON_INIT,
171
		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
172 173 174 175 176 177
		.enable_bit	= EN_CKOUT_ARM,
		.recalc		= &followparent_recalc,
	},
	.idlect_shift	= 12,
};

I
Imre Deak 已提交
178 179
static struct clk sossi_ck = {
	.name		= "ck_sossi",
180
	.ops		= &clkops_generic,
I
Imre Deak 已提交
181
	.parent		= &ck_dpll1out.clk,
182
	.flags		= CLOCK_NO_IDLE_PARENT | ENABLE_REG_32BIT,
183
	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_1),
I
Imre Deak 已提交
184 185 186 187 188
	.enable_bit	= 16,
	.recalc		= &omap1_sossi_recalc,
	.set_rate	= &omap1_set_sossi_rate,
};

189 190
static struct clk arm_ck = {
	.name		= "arm_ck",
191
	.ops		= &clkops_null,
192 193 194
	.parent		= &ck_dpll1,
	.rate_offset	= CKCTL_ARMDIV_OFFSET,
	.recalc		= &omap1_ckctl_recalc,
195 196
	.round_rate	= omap1_clk_round_rate_ckctl_arm,
	.set_rate	= omap1_clk_set_rate_ckctl_arm,
197 198 199 200 201
};

static struct arm_idlect1_clk armper_ck = {
	.clk = {
		.name		= "armper_ck",
202
		.ops		= &clkops_generic,
203
		.parent		= &ck_dpll1,
204
		.flags		= CLOCK_IDLE_CONTROL,
205
		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
206 207 208
		.enable_bit	= EN_PERCK,
		.rate_offset	= CKCTL_PERDIV_OFFSET,
		.recalc		= &omap1_ckctl_recalc,
209 210
		.round_rate	= omap1_clk_round_rate_ckctl_arm,
		.set_rate	= omap1_clk_set_rate_ckctl_arm,
211 212 213 214
	},
	.idlect_shift	= 2,
};

215 216 217 218
/*
 * FIXME: This clock seems to be necessary but no-one has asked for its
 * activation.  [ GPIO code for 1510 ]
 */
219 220
static struct clk arm_gpio_ck = {
	.name		= "arm_gpio_ck",
221
	.ops		= &clkops_generic,
222
	.parent		= &ck_dpll1,
223
	.flags		= ENABLE_ON_INIT,
224
	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
225 226 227 228 229 230 231
	.enable_bit	= EN_GPIOCK,
	.recalc		= &followparent_recalc,
};

static struct arm_idlect1_clk armxor_ck = {
	.clk = {
		.name		= "armxor_ck",
232
		.ops		= &clkops_generic,
233
		.parent		= &ck_ref,
234
		.flags		= CLOCK_IDLE_CONTROL,
235
		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
236 237 238 239 240 241 242 243 244
		.enable_bit	= EN_XORPCK,
		.recalc		= &followparent_recalc,
	},
	.idlect_shift	= 1,
};

static struct arm_idlect1_clk armtim_ck = {
	.clk = {
		.name		= "armtim_ck",
245
		.ops		= &clkops_generic,
246
		.parent		= &ck_ref,
247
		.flags		= CLOCK_IDLE_CONTROL,
248
		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
249 250 251 252 253 254 255 256 257
		.enable_bit	= EN_TIMCK,
		.recalc		= &followparent_recalc,
	},
	.idlect_shift	= 9,
};

static struct arm_idlect1_clk armwdt_ck = {
	.clk = {
		.name		= "armwdt_ck",
258
		.ops		= &clkops_generic,
259
		.parent		= &ck_ref,
260
		.flags		= CLOCK_IDLE_CONTROL,
261
		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
262 263 264 265 266 267 268 269
		.enable_bit	= EN_WDTCK,
		.recalc		= &omap1_watchdog_recalc,
	},
	.idlect_shift	= 0,
};

static struct clk arminth_ck16xx = {
	.name		= "arminth_ck",
270
	.ops		= &clkops_null,
271 272 273 274 275 276 277 278 279 280 281
	.parent		= &arm_ck,
	.recalc		= &followparent_recalc,
	/* Note: On 16xx the frequency can be divided by 2 by programming
	 * ARM_CKCTL:ARM_INTHCK_SEL(14) to 1
	 *
	 * 1510 version is in TC clocks.
	 */
};

static struct clk dsp_ck = {
	.name		= "dsp_ck",
282
	.ops		= &clkops_generic,
283
	.parent		= &ck_dpll1,
284
	.enable_reg	= OMAP1_IO_ADDRESS(ARM_CKCTL),
285 286 287
	.enable_bit	= EN_DSPCK,
	.rate_offset	= CKCTL_DSPDIV_OFFSET,
	.recalc		= &omap1_ckctl_recalc,
288 289
	.round_rate	= omap1_clk_round_rate_ckctl_arm,
	.set_rate	= omap1_clk_set_rate_ckctl_arm,
290 291 292 293
};

static struct clk dspmmu_ck = {
	.name		= "dspmmu_ck",
294
	.ops		= &clkops_null,
295 296 297
	.parent		= &ck_dpll1,
	.rate_offset	= CKCTL_DSPMMUDIV_OFFSET,
	.recalc		= &omap1_ckctl_recalc,
298 299
	.round_rate	= omap1_clk_round_rate_ckctl_arm,
	.set_rate	= omap1_clk_set_rate_ckctl_arm,
300 301 302 303
};

static struct clk dspper_ck = {
	.name		= "dspper_ck",
304
	.ops		= &clkops_dspck,
305
	.parent		= &ck_dpll1,
306
	.enable_reg	= DSP_IDLECT2,
307 308 309
	.enable_bit	= EN_PERCK,
	.rate_offset	= CKCTL_PERDIV_OFFSET,
	.recalc		= &omap1_ckctl_recalc_dsp_domain,
310
	.round_rate	= omap1_clk_round_rate_ckctl_arm,
311 312 313 314 315
	.set_rate	= &omap1_clk_set_rate_dsp_domain,
};

static struct clk dspxor_ck = {
	.name		= "dspxor_ck",
316
	.ops		= &clkops_dspck,
317
	.parent		= &ck_ref,
318
	.enable_reg	= DSP_IDLECT2,
319 320 321 322 323 324
	.enable_bit	= EN_XORPCK,
	.recalc		= &followparent_recalc,
};

static struct clk dsptim_ck = {
	.name		= "dsptim_ck",
325
	.ops		= &clkops_dspck,
326
	.parent		= &ck_ref,
327
	.enable_reg	= DSP_IDLECT2,
328 329 330 331 332 333 334 335
	.enable_bit	= EN_DSPTIMCK,
	.recalc		= &followparent_recalc,
};

/* Tie ARM_IDLECT1:IDLIF_ARM to this logical clock structure */
static struct arm_idlect1_clk tc_ck = {
	.clk = {
		.name		= "tc_ck",
336
		.ops		= &clkops_null,
337
		.parent		= &ck_dpll1,
338
		.flags		= CLOCK_IDLE_CONTROL,
339 340
		.rate_offset	= CKCTL_TCDIV_OFFSET,
		.recalc		= &omap1_ckctl_recalc,
341 342
		.round_rate	= omap1_clk_round_rate_ckctl_arm,
		.set_rate	= omap1_clk_set_rate_ckctl_arm,
343 344 345 346 347 348
	},
	.idlect_shift	= 6,
};

static struct clk arminth_ck1510 = {
	.name		= "arminth_ck",
349
	.ops		= &clkops_null,
350 351 352 353 354 355 356 357 358 359
	.parent		= &tc_ck.clk,
	.recalc		= &followparent_recalc,
	/* Note: On 1510 the frequency follows TC_CK
	 *
	 * 16xx version is in MPU clocks.
	 */
};

static struct clk tipb_ck = {
	/* No-idle controlled by "tc_ck" */
360
	.name		= "tipb_ck",
361
	.ops		= &clkops_null,
362 363 364 365 366 367 368
	.parent		= &tc_ck.clk,
	.recalc		= &followparent_recalc,
};

static struct clk l3_ocpi_ck = {
	/* No-idle controlled by "tc_ck" */
	.name		= "l3_ocpi_ck",
369
	.ops		= &clkops_generic,
370
	.parent		= &tc_ck.clk,
371
	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
372 373 374 375 376 377
	.enable_bit	= EN_OCPI_CK,
	.recalc		= &followparent_recalc,
};

static struct clk tc1_ck = {
	.name		= "tc1_ck",
378
	.ops		= &clkops_generic,
379
	.parent		= &tc_ck.clk,
380
	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
381 382 383 384
	.enable_bit	= EN_TC1_CK,
	.recalc		= &followparent_recalc,
};

385 386 387 388
/*
 * FIXME: This clock seems to be necessary but no-one has asked for its
 * activation.  [ pm.c (SRAM), CCP, Camera ]
 */
389 390
static struct clk tc2_ck = {
	.name		= "tc2_ck",
391
	.ops		= &clkops_generic,
392
	.parent		= &tc_ck.clk,
393
	.flags		= ENABLE_ON_INIT,
394
	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT3),
395 396 397 398 399 400 401
	.enable_bit	= EN_TC2_CK,
	.recalc		= &followparent_recalc,
};

static struct clk dma_ck = {
	/* No-idle controlled by "tc_ck" */
	.name		= "dma_ck",
402
	.ops		= &clkops_null,
403 404 405 406 407 408
	.parent		= &tc_ck.clk,
	.recalc		= &followparent_recalc,
};

static struct clk dma_lcdfree_ck = {
	.name		= "dma_lcdfree_ck",
409
	.ops		= &clkops_null,
410 411 412 413 414 415 416
	.parent		= &tc_ck.clk,
	.recalc		= &followparent_recalc,
};

static struct arm_idlect1_clk api_ck = {
	.clk = {
		.name		= "api_ck",
417
		.ops		= &clkops_generic,
418
		.parent		= &tc_ck.clk,
419
		.flags		= CLOCK_IDLE_CONTROL,
420
		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
421 422 423 424 425 426 427 428 429
		.enable_bit	= EN_APICK,
		.recalc		= &followparent_recalc,
	},
	.idlect_shift	= 8,
};

static struct arm_idlect1_clk lb_ck = {
	.clk = {
		.name		= "lb_ck",
430
		.ops		= &clkops_generic,
431
		.parent		= &tc_ck.clk,
432
		.flags		= CLOCK_IDLE_CONTROL,
433
		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
434 435 436 437 438 439 440 441
		.enable_bit	= EN_LBCK,
		.recalc		= &followparent_recalc,
	},
	.idlect_shift	= 4,
};

static struct clk rhea1_ck = {
	.name		= "rhea1_ck",
442
	.ops		= &clkops_null,
443 444 445 446 447 448
	.parent		= &tc_ck.clk,
	.recalc		= &followparent_recalc,
};

static struct clk rhea2_ck = {
	.name		= "rhea2_ck",
449
	.ops		= &clkops_null,
450 451 452 453 454 455
	.parent		= &tc_ck.clk,
	.recalc		= &followparent_recalc,
};

static struct clk lcd_ck_16xx = {
	.name		= "lcd_ck",
456
	.ops		= &clkops_generic,
457
	.parent		= &ck_dpll1,
458
	.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
459 460 461
	.enable_bit	= EN_LCDCK,
	.rate_offset	= CKCTL_LCDDIV_OFFSET,
	.recalc		= &omap1_ckctl_recalc,
462 463
	.round_rate	= omap1_clk_round_rate_ckctl_arm,
	.set_rate	= omap1_clk_set_rate_ckctl_arm,
464 465 466 467 468
};

static struct arm_idlect1_clk lcd_ck_1510 = {
	.clk = {
		.name		= "lcd_ck",
469
		.ops		= &clkops_generic,
470
		.parent		= &ck_dpll1,
471
		.flags		= CLOCK_IDLE_CONTROL,
472
		.enable_reg	= OMAP1_IO_ADDRESS(ARM_IDLECT2),
473 474 475
		.enable_bit	= EN_LCDCK,
		.rate_offset	= CKCTL_LCDDIV_OFFSET,
		.recalc		= &omap1_ckctl_recalc,
476 477
		.round_rate	= omap1_clk_round_rate_ckctl_arm,
		.set_rate	= omap1_clk_set_rate_ckctl_arm,
478 479 480 481 482 483
	},
	.idlect_shift	= 3,
};

static struct clk uart1_1510 = {
	.name		= "uart1_ck",
484
	.ops		= &clkops_null,
485 486 487
	/* Direct from ULPD, no real parent */
	.parent		= &armper_ck.clk,
	.rate		= 12000000,
488
	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
489
	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
490 491 492 493 494 495 496 497
	.enable_bit	= 29,	/* Chooses between 12MHz and 48MHz */
	.set_rate	= &omap1_set_uart_rate,
	.recalc		= &omap1_uart_recalc,
};

static struct uart_clk uart1_16xx = {
	.clk	= {
		.name		= "uart1_ck",
498
		.ops		= &clkops_uart,
499 500 501
		/* Direct from ULPD, no real parent */
		.parent		= &armper_ck.clk,
		.rate		= 48000000,
502 503
		.flags		= RATE_FIXED | ENABLE_REG_32BIT |
				  CLOCK_NO_IDLE_PARENT,
504
		.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
505 506 507 508 509 510 511
		.enable_bit	= 29,
	},
	.sysc_addr	= 0xfffb0054,
};

static struct clk uart2_ck = {
	.name		= "uart2_ck",
512
	.ops		= &clkops_null,
513 514 515
	/* Direct from ULPD, no real parent */
	.parent		= &armper_ck.clk,
	.rate		= 12000000,
516
	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
517
	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
518 519 520 521 522 523 524
	.enable_bit	= 30,	/* Chooses between 12MHz and 48MHz */
	.set_rate	= &omap1_set_uart_rate,
	.recalc		= &omap1_uart_recalc,
};

static struct clk uart3_1510 = {
	.name		= "uart3_ck",
525
	.ops		= &clkops_null,
526 527 528
	/* Direct from ULPD, no real parent */
	.parent		= &armper_ck.clk,
	.rate		= 12000000,
529
	.flags		= ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
530
	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
531 532 533 534 535 536 537 538
	.enable_bit	= 31,	/* Chooses between 12MHz and 48MHz */
	.set_rate	= &omap1_set_uart_rate,
	.recalc		= &omap1_uart_recalc,
};

static struct uart_clk uart3_16xx = {
	.clk	= {
		.name		= "uart3_ck",
539
		.ops		= &clkops_uart,
540 541 542
		/* Direct from ULPD, no real parent */
		.parent		= &armper_ck.clk,
		.rate		= 48000000,
543 544
		.flags		= RATE_FIXED | ENABLE_REG_32BIT |
				  CLOCK_NO_IDLE_PARENT,
545
		.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
546 547 548 549 550 551 552
		.enable_bit	= 31,
	},
	.sysc_addr	= 0xfffb9854,
};

static struct clk usb_clko = {	/* 6 MHz output on W4_USB_CLKO */
	.name		= "usb_clko",
553
	.ops		= &clkops_generic,
554 555
	/* Direct from ULPD, no parent */
	.rate		= 6000000,
556
	.flags		= RATE_FIXED | ENABLE_REG_32BIT,
557
	.enable_reg	= OMAP1_IO_ADDRESS(ULPD_CLOCK_CTRL),
558 559 560 561 562
	.enable_bit	= USB_MCLK_EN_BIT,
};

static struct clk usb_hhc_ck1510 = {
	.name		= "usb_hhc_ck",
563
	.ops		= &clkops_generic,
564 565
	/* Direct from ULPD, no parent */
	.rate		= 48000000, /* Actually 2 clocks, 12MHz and 48MHz */
566
	.flags		= RATE_FIXED | ENABLE_REG_32BIT,
567
	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
568 569 570 571 572
	.enable_bit	= USB_HOST_HHC_UHOST_EN,
};

static struct clk usb_hhc_ck16xx = {
	.name		= "usb_hhc_ck",
573
	.ops		= &clkops_generic,
574 575 576
	/* Direct from ULPD, no parent */
	.rate		= 48000000,
	/* OTG_SYSCON_2.OTG_PADEN == 0 (not 1510-compatible) */
577
	.flags		= RATE_FIXED | ENABLE_REG_32BIT,
578
	.enable_reg	= OMAP1_IO_ADDRESS(OTG_BASE + 0x08), /* OTG_SYSCON_2 */
579 580 581 582 583
	.enable_bit	= 8 /* UHOST_EN */,
};

static struct clk usb_dc_ck = {
	.name		= "usb_dc_ck",
584
	.ops		= &clkops_generic,
585 586
	/* Direct from ULPD, no parent */
	.rate		= 48000000,
587
	.flags		= RATE_FIXED,
588
	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
589 590 591
	.enable_bit	= 4,
};

592 593 594 595 596 597 598 599 600 601
static struct clk usb_dc_ck7xx = {
	.name		= "usb_dc_ck",
	.ops		= &clkops_generic,
	/* Direct from ULPD, no parent */
	.rate		= 48000000,
	.flags		= RATE_FIXED,
	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
	.enable_bit	= 8,
};

602 603
static struct clk mclk_1510 = {
	.name		= "mclk",
604
	.ops		= &clkops_generic,
605 606
	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
	.rate		= 12000000,
607
	.flags		= RATE_FIXED,
608 609
	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
	.enable_bit	= 6,
610 611 612 613
};

static struct clk mclk_16xx = {
	.name		= "mclk",
614
	.ops		= &clkops_generic,
615
	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
616
	.enable_reg	= OMAP1_IO_ADDRESS(COM_CLK_DIV_CTRL_SEL),
617 618 619 620 621 622 623 624
	.enable_bit	= COM_ULPD_PLL_CLK_REQ,
	.set_rate	= &omap1_set_ext_clk_rate,
	.round_rate	= &omap1_round_ext_clk_rate,
	.init		= &omap1_init_ext_clk,
};

static struct clk bclk_1510 = {
	.name		= "bclk",
625
	.ops		= &clkops_generic,
626 627
	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
	.rate		= 12000000,
628
	.flags		= RATE_FIXED,
629 630 631 632
};

static struct clk bclk_16xx = {
	.name		= "bclk",
633
	.ops		= &clkops_generic,
634
	/* Direct from ULPD, no parent. May be enabled by ext hardware. */
635
	.enable_reg	= OMAP1_IO_ADDRESS(SWD_CLK_DIV_CTRL_SEL),
636 637 638 639 640 641 642
	.enable_bit	= SWD_ULPD_PLL_CLK_REQ,
	.set_rate	= &omap1_set_ext_clk_rate,
	.round_rate	= &omap1_round_ext_clk_rate,
	.init		= &omap1_init_ext_clk,
};

static struct clk mmc1_ck = {
643
	.name		= "mmc_ck",
644
	.ops		= &clkops_generic,
645 646 647
	/* Functional clock is direct from ULPD, interface clock is ARMPER */
	.parent		= &armper_ck.clk,
	.rate		= 48000000,
648
	.flags		= RATE_FIXED | ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
649
	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
650 651 652 653
	.enable_bit	= 23,
};

static struct clk mmc2_ck = {
654
	.name		= "mmc_ck",
655
	.id		= 1,
656
	.ops		= &clkops_generic,
657 658 659
	/* Functional clock is direct from ULPD, interface clock is ARMPER */
	.parent		= &armper_ck.clk,
	.rate		= 48000000,
660
	.flags		= RATE_FIXED | ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
661
	.enable_reg	= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0),
662 663 664
	.enable_bit	= 20,
};

665 666 667 668 669 670 671 672 673 674 675 676
static struct clk mmc3_ck = {
	.name		= "mmc_ck",
	.id		= 2,
	.ops		= &clkops_generic,
	/* Functional clock is direct from ULPD, interface clock is ARMPER */
	.parent		= &armper_ck.clk,
	.rate		= 48000000,
	.flags		= RATE_FIXED | ENABLE_REG_32BIT | CLOCK_NO_IDLE_PARENT,
	.enable_reg	= OMAP1_IO_ADDRESS(SOFT_REQ_REG),
	.enable_bit	= 12,
};

677 678
static struct clk virtual_ck_mpu = {
	.name		= "mpu",
679
	.ops		= &clkops_null,
680 681 682 683 684 685
	.parent		= &arm_ck, /* Is smarter alias for */
	.recalc		= &followparent_recalc,
	.set_rate	= &omap1_select_table_rate,
	.round_rate	= &omap1_round_to_table_rate,
};

686 687 688 689 690
/* virtual functional clock domain for I2C. Just for making sure that ARMXOR_CK
remains active during MPU idle whenever this is enabled */
static struct clk i2c_fck = {
	.name		= "i2c_fck",
	.id		= 1,
691
	.ops		= &clkops_null,
692
	.flags		= CLOCK_NO_IDLE_PARENT,
693 694 695 696
	.parent		= &armxor_ck.clk,
	.recalc		= &followparent_recalc,
};

697 698 699
static struct clk i2c_ick = {
	.name		= "i2c_ick",
	.id		= 1,
700
	.ops		= &clkops_null,
701
	.flags		= CLOCK_NO_IDLE_PARENT,
702 703 704 705
	.parent		= &armper_ck.clk,
	.recalc		= &followparent_recalc,
};

706
#endif