2 * linux/arch/arm/mach-omap1/clock_data.c
4 * Copyright (C) 2004 - 2005, 2009-2010 Nokia Corporation
5 * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>
6 * Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 * - Clocks that are only available on some chips should be marked with the
14 * chips that they are present on.
17 #include <linux/kernel.h>
18 #include <linux/clk.h>
21 #include <asm/mach-types.h> /* for machine_is_* */
23 #include <plat/clock.h>
25 #include <plat/clkdev_omap.h>
26 #include <plat/usb.h> /* for OTG_BASE */
30 /* Some ARM_IDLECT1 bit shifts - used in struct arm_idlect1_clk */
31 #define IDL_CLKOUT_ARM_SHIFT 12
32 #define IDLTIM_ARM_SHIFT 9
33 #define IDLAPI_ARM_SHIFT 8
34 #define IDLIF_ARM_SHIFT 6
35 #define IDLLB_ARM_SHIFT 4 /* undocumented? */
36 #define OMAP1510_IDLLCD_ARM_SHIFT 3 /* undocumented? */
37 #define IDLPER_ARM_SHIFT 2
38 #define IDLXORP_ARM_SHIFT 1
39 #define IDLWDT_ARM_SHIFT 0
41 /* Some MOD_CONF_CTRL_0 bit shifts - used in struct clk.enable_bit */
42 #define CONF_MOD_UART3_CLK_MODE_R 31
43 #define CONF_MOD_UART2_CLK_MODE_R 30
44 #define CONF_MOD_UART1_CLK_MODE_R 29
45 #define CONF_MOD_MMC_SD_CLK_REQ_R 23
46 #define CONF_MOD_MCBSP3_AUXON 20
48 /* Some MOD_CONF_CTRL_1 bit shifts - used in struct clk.enable_bit */
49 #define CONF_MOD_SOSSI_CLK_EN_R 16
51 /* Some OTG_SYSCON_2-specific bit fields */
52 #define OTG_SYSCON_2_UHOST_EN_SHIFT 8
54 /* Some SOFT_REQ_REG bit fields - used in struct clk.enable_bit */
55 #define SOFT_MMC2_DPLL_REQ_SHIFT 13
56 #define SOFT_MMC_DPLL_REQ_SHIFT 12
57 #define SOFT_UART3_DPLL_REQ_SHIFT 11
58 #define SOFT_UART2_DPLL_REQ_SHIFT 10
59 #define SOFT_UART1_DPLL_REQ_SHIFT 9
60 #define SOFT_USB_OTG_DPLL_REQ_SHIFT 8
61 #define SOFT_CAM_DPLL_REQ_SHIFT 7
62 #define SOFT_COM_MCKO_REQ_SHIFT 6
63 #define SOFT_PERIPH_REQ_SHIFT 5 /* sys_ck gate for UART2 ? */
64 #define USB_REQ_EN_SHIFT 4
65 #define SOFT_USB_REQ_SHIFT 3 /* sys_ck gate for USB host? */
66 #define SOFT_SDW_REQ_SHIFT 2 /* sys_ck gate for Bluetooth? */
67 #define SOFT_COM_REQ_SHIFT 1 /* sys_ck gate for com proc? */
68 #define SOFT_DPLL_REQ_SHIFT 0
74 static struct clk ck_ref
= {
80 static struct clk ck_dpll1
= {
87 * FIXME: This clock seems to be necessary but no-one has asked for its
88 * activation. [ FIX: SoSSI, SSR ]
90 static struct arm_idlect1_clk ck_dpll1out
= {
92 .name
= "ck_dpll1out",
93 .ops
= &clkops_generic
,
95 .flags
= CLOCK_IDLE_CONTROL
| ENABLE_REG_32BIT
|
97 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
98 .enable_bit
= EN_CKOUT_ARM
,
99 .recalc
= &followparent_recalc
,
101 .idlect_shift
= IDL_CLKOUT_ARM_SHIFT
,
104 static struct clk sossi_ck
= {
106 .ops
= &clkops_generic
,
107 .parent
= &ck_dpll1out
.clk
,
108 .flags
= CLOCK_NO_IDLE_PARENT
| ENABLE_REG_32BIT
,
109 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_1
),
110 .enable_bit
= CONF_MOD_SOSSI_CLK_EN_R
,
111 .recalc
= &omap1_sossi_recalc
,
112 .set_rate
= &omap1_set_sossi_rate
,
115 static struct clk arm_ck
= {
119 .rate_offset
= CKCTL_ARMDIV_OFFSET
,
120 .recalc
= &omap1_ckctl_recalc
,
121 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
122 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
125 static struct arm_idlect1_clk armper_ck
= {
128 .ops
= &clkops_generic
,
130 .flags
= CLOCK_IDLE_CONTROL
,
131 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
132 .enable_bit
= EN_PERCK
,
133 .rate_offset
= CKCTL_PERDIV_OFFSET
,
134 .recalc
= &omap1_ckctl_recalc
,
135 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
136 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
138 .idlect_shift
= IDLPER_ARM_SHIFT
,
142 * FIXME: This clock seems to be necessary but no-one has asked for its
143 * activation. [ GPIO code for 1510 ]
145 static struct clk arm_gpio_ck
= {
146 .name
= "arm_gpio_ck",
147 .ops
= &clkops_generic
,
149 .flags
= ENABLE_ON_INIT
,
150 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
151 .enable_bit
= EN_GPIOCK
,
152 .recalc
= &followparent_recalc
,
155 static struct arm_idlect1_clk armxor_ck
= {
158 .ops
= &clkops_generic
,
160 .flags
= CLOCK_IDLE_CONTROL
,
161 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
162 .enable_bit
= EN_XORPCK
,
163 .recalc
= &followparent_recalc
,
165 .idlect_shift
= IDLXORP_ARM_SHIFT
,
168 static struct arm_idlect1_clk armtim_ck
= {
171 .ops
= &clkops_generic
,
173 .flags
= CLOCK_IDLE_CONTROL
,
174 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
175 .enable_bit
= EN_TIMCK
,
176 .recalc
= &followparent_recalc
,
178 .idlect_shift
= IDLTIM_ARM_SHIFT
,
181 static struct arm_idlect1_clk armwdt_ck
= {
184 .ops
= &clkops_generic
,
186 .flags
= CLOCK_IDLE_CONTROL
,
187 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
188 .enable_bit
= EN_WDTCK
,
190 .recalc
= &omap_fixed_divisor_recalc
,
192 .idlect_shift
= IDLWDT_ARM_SHIFT
,
195 static struct clk arminth_ck16xx
= {
196 .name
= "arminth_ck",
199 .recalc
= &followparent_recalc
,
200 /* Note: On 16xx the frequency can be divided by 2 by programming
201 * ARM_CKCTL:ARM_INTHCK_SEL(14) to 1
203 * 1510 version is in TC clocks.
207 static struct clk dsp_ck
= {
209 .ops
= &clkops_generic
,
211 .enable_reg
= OMAP1_IO_ADDRESS(ARM_CKCTL
),
212 .enable_bit
= EN_DSPCK
,
213 .rate_offset
= CKCTL_DSPDIV_OFFSET
,
214 .recalc
= &omap1_ckctl_recalc
,
215 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
216 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
219 static struct clk dspmmu_ck
= {
223 .rate_offset
= CKCTL_DSPMMUDIV_OFFSET
,
224 .recalc
= &omap1_ckctl_recalc
,
225 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
226 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
229 static struct clk dspper_ck
= {
231 .ops
= &clkops_dspck
,
233 .enable_reg
= DSP_IDLECT2
,
234 .enable_bit
= EN_PERCK
,
235 .rate_offset
= CKCTL_PERDIV_OFFSET
,
236 .recalc
= &omap1_ckctl_recalc_dsp_domain
,
237 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
238 .set_rate
= &omap1_clk_set_rate_dsp_domain
,
241 static struct clk dspxor_ck
= {
243 .ops
= &clkops_dspck
,
245 .enable_reg
= DSP_IDLECT2
,
246 .enable_bit
= EN_XORPCK
,
247 .recalc
= &followparent_recalc
,
250 static struct clk dsptim_ck
= {
252 .ops
= &clkops_dspck
,
254 .enable_reg
= DSP_IDLECT2
,
255 .enable_bit
= EN_DSPTIMCK
,
256 .recalc
= &followparent_recalc
,
259 static struct arm_idlect1_clk tc_ck
= {
264 .flags
= CLOCK_IDLE_CONTROL
,
265 .rate_offset
= CKCTL_TCDIV_OFFSET
,
266 .recalc
= &omap1_ckctl_recalc
,
267 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
268 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
270 .idlect_shift
= IDLIF_ARM_SHIFT
,
273 static struct clk arminth_ck1510
= {
274 .name
= "arminth_ck",
276 .parent
= &tc_ck
.clk
,
277 .recalc
= &followparent_recalc
,
278 /* Note: On 1510 the frequency follows TC_CK
280 * 16xx version is in MPU clocks.
284 static struct clk tipb_ck
= {
285 /* No-idle controlled by "tc_ck" */
288 .parent
= &tc_ck
.clk
,
289 .recalc
= &followparent_recalc
,
292 static struct clk l3_ocpi_ck
= {
293 /* No-idle controlled by "tc_ck" */
294 .name
= "l3_ocpi_ck",
295 .ops
= &clkops_generic
,
296 .parent
= &tc_ck
.clk
,
297 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT3
),
298 .enable_bit
= EN_OCPI_CK
,
299 .recalc
= &followparent_recalc
,
302 static struct clk tc1_ck
= {
304 .ops
= &clkops_generic
,
305 .parent
= &tc_ck
.clk
,
306 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT3
),
307 .enable_bit
= EN_TC1_CK
,
308 .recalc
= &followparent_recalc
,
312 * FIXME: This clock seems to be necessary but no-one has asked for its
313 * activation. [ pm.c (SRAM), CCP, Camera ]
315 static struct clk tc2_ck
= {
317 .ops
= &clkops_generic
,
318 .parent
= &tc_ck
.clk
,
319 .flags
= ENABLE_ON_INIT
,
320 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT3
),
321 .enable_bit
= EN_TC2_CK
,
322 .recalc
= &followparent_recalc
,
325 static struct clk dma_ck
= {
326 /* No-idle controlled by "tc_ck" */
329 .parent
= &tc_ck
.clk
,
330 .recalc
= &followparent_recalc
,
333 static struct clk dma_lcdfree_ck
= {
334 .name
= "dma_lcdfree_ck",
336 .parent
= &tc_ck
.clk
,
337 .recalc
= &followparent_recalc
,
340 static struct arm_idlect1_clk api_ck
= {
343 .ops
= &clkops_generic
,
344 .parent
= &tc_ck
.clk
,
345 .flags
= CLOCK_IDLE_CONTROL
,
346 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
347 .enable_bit
= EN_APICK
,
348 .recalc
= &followparent_recalc
,
350 .idlect_shift
= IDLAPI_ARM_SHIFT
,
353 static struct arm_idlect1_clk lb_ck
= {
356 .ops
= &clkops_generic
,
357 .parent
= &tc_ck
.clk
,
358 .flags
= CLOCK_IDLE_CONTROL
,
359 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
360 .enable_bit
= EN_LBCK
,
361 .recalc
= &followparent_recalc
,
363 .idlect_shift
= IDLLB_ARM_SHIFT
,
366 static struct clk rhea1_ck
= {
369 .parent
= &tc_ck
.clk
,
370 .recalc
= &followparent_recalc
,
373 static struct clk rhea2_ck
= {
376 .parent
= &tc_ck
.clk
,
377 .recalc
= &followparent_recalc
,
380 static struct clk lcd_ck_16xx
= {
382 .ops
= &clkops_generic
,
384 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
385 .enable_bit
= EN_LCDCK
,
386 .rate_offset
= CKCTL_LCDDIV_OFFSET
,
387 .recalc
= &omap1_ckctl_recalc
,
388 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
389 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
392 static struct arm_idlect1_clk lcd_ck_1510
= {
395 .ops
= &clkops_generic
,
397 .flags
= CLOCK_IDLE_CONTROL
,
398 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
399 .enable_bit
= EN_LCDCK
,
400 .rate_offset
= CKCTL_LCDDIV_OFFSET
,
401 .recalc
= &omap1_ckctl_recalc
,
402 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
403 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
405 .idlect_shift
= OMAP1510_IDLLCD_ARM_SHIFT
,
409 * XXX The enable_bit here is misused - it simply switches between 12MHz
410 * and 48MHz. Reimplement with clksel.
412 * XXX does this need SYSC register handling?
414 static struct clk uart1_1510
= {
417 /* Direct from ULPD, no real parent */
418 .parent
= &armper_ck
.clk
,
420 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
421 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
422 .enable_bit
= CONF_MOD_UART1_CLK_MODE_R
,
423 .set_rate
= &omap1_set_uart_rate
,
424 .recalc
= &omap1_uart_recalc
,
428 * XXX The enable_bit here is misused - it simply switches between 12MHz
429 * and 48MHz. Reimplement with clksel.
431 * XXX SYSC register handling does not belong in the clock framework
433 static struct uart_clk uart1_16xx
= {
436 .ops
= &clkops_uart_16xx
,
437 /* Direct from ULPD, no real parent */
438 .parent
= &armper_ck
.clk
,
440 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
441 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
442 .enable_bit
= CONF_MOD_UART1_CLK_MODE_R
,
444 .sysc_addr
= 0xfffb0054,
448 * XXX The enable_bit here is misused - it simply switches between 12MHz
449 * and 48MHz. Reimplement with clksel.
451 * XXX does this need SYSC register handling?
453 static struct clk uart2_ck
= {
456 /* Direct from ULPD, no real parent */
457 .parent
= &armper_ck
.clk
,
459 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
460 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
461 .enable_bit
= CONF_MOD_UART2_CLK_MODE_R
,
462 .set_rate
= &omap1_set_uart_rate
,
463 .recalc
= &omap1_uart_recalc
,
467 * XXX The enable_bit here is misused - it simply switches between 12MHz
468 * and 48MHz. Reimplement with clksel.
470 * XXX does this need SYSC register handling?
472 static struct clk uart3_1510
= {
475 /* Direct from ULPD, no real parent */
476 .parent
= &armper_ck
.clk
,
478 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
479 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
480 .enable_bit
= CONF_MOD_UART3_CLK_MODE_R
,
481 .set_rate
= &omap1_set_uart_rate
,
482 .recalc
= &omap1_uart_recalc
,
486 * XXX The enable_bit here is misused - it simply switches between 12MHz
487 * and 48MHz. Reimplement with clksel.
489 * XXX SYSC register handling does not belong in the clock framework
491 static struct uart_clk uart3_16xx
= {
494 .ops
= &clkops_uart_16xx
,
495 /* Direct from ULPD, no real parent */
496 .parent
= &armper_ck
.clk
,
498 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
499 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
500 .enable_bit
= CONF_MOD_UART3_CLK_MODE_R
,
502 .sysc_addr
= 0xfffb9854,
505 static struct clk usb_clko
= { /* 6 MHz output on W4_USB_CLKO */
507 .ops
= &clkops_generic
,
508 /* Direct from ULPD, no parent */
510 .flags
= ENABLE_REG_32BIT
,
511 .enable_reg
= OMAP1_IO_ADDRESS(ULPD_CLOCK_CTRL
),
512 .enable_bit
= USB_MCLK_EN_BIT
,
515 static struct clk usb_hhc_ck1510
= {
516 .name
= "usb_hhc_ck",
517 .ops
= &clkops_generic
,
518 /* Direct from ULPD, no parent */
519 .rate
= 48000000, /* Actually 2 clocks, 12MHz and 48MHz */
520 .flags
= ENABLE_REG_32BIT
,
521 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
522 .enable_bit
= USB_HOST_HHC_UHOST_EN
,
525 static struct clk usb_hhc_ck16xx
= {
526 .name
= "usb_hhc_ck",
527 .ops
= &clkops_generic
,
528 /* Direct from ULPD, no parent */
530 /* OTG_SYSCON_2.OTG_PADEN == 0 (not 1510-compatible) */
531 .flags
= ENABLE_REG_32BIT
,
532 .enable_reg
= OMAP1_IO_ADDRESS(OTG_BASE
+ 0x08), /* OTG_SYSCON_2 */
533 .enable_bit
= OTG_SYSCON_2_UHOST_EN_SHIFT
536 static struct clk usb_dc_ck
= {
538 .ops
= &clkops_generic
,
539 /* Direct from ULPD, no parent */
541 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
542 .enable_bit
= USB_REQ_EN_SHIFT
,
545 static struct clk usb_dc_ck7xx
= {
547 .ops
= &clkops_generic
,
548 /* Direct from ULPD, no parent */
550 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
551 .enable_bit
= SOFT_USB_OTG_DPLL_REQ_SHIFT
,
554 static struct clk uart1_7xx
= {
556 .ops
= &clkops_generic
,
557 /* Direct from ULPD, no parent */
559 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
563 static struct clk uart2_7xx
= {
565 .ops
= &clkops_generic
,
566 /* Direct from ULPD, no parent */
568 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
572 static struct clk mclk_1510
= {
574 .ops
= &clkops_generic
,
575 /* Direct from ULPD, no parent. May be enabled by ext hardware. */
577 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
578 .enable_bit
= SOFT_COM_MCKO_REQ_SHIFT
,
581 static struct clk mclk_16xx
= {
583 .ops
= &clkops_generic
,
584 /* Direct from ULPD, no parent. May be enabled by ext hardware. */
585 .enable_reg
= OMAP1_IO_ADDRESS(COM_CLK_DIV_CTRL_SEL
),
586 .enable_bit
= COM_ULPD_PLL_CLK_REQ
,
587 .set_rate
= &omap1_set_ext_clk_rate
,
588 .round_rate
= &omap1_round_ext_clk_rate
,
589 .init
= &omap1_init_ext_clk
,
592 static struct clk bclk_1510
= {
594 .ops
= &clkops_generic
,
595 /* Direct from ULPD, no parent. May be enabled by ext hardware. */
599 static struct clk bclk_16xx
= {
601 .ops
= &clkops_generic
,
602 /* Direct from ULPD, no parent. May be enabled by ext hardware. */
603 .enable_reg
= OMAP1_IO_ADDRESS(SWD_CLK_DIV_CTRL_SEL
),
604 .enable_bit
= SWD_ULPD_PLL_CLK_REQ
,
605 .set_rate
= &omap1_set_ext_clk_rate
,
606 .round_rate
= &omap1_round_ext_clk_rate
,
607 .init
= &omap1_init_ext_clk
,
610 static struct clk mmc1_ck
= {
612 .ops
= &clkops_generic
,
613 /* Functional clock is direct from ULPD, interface clock is ARMPER */
614 .parent
= &armper_ck
.clk
,
616 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
617 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
618 .enable_bit
= CONF_MOD_MMC_SD_CLK_REQ_R
,
622 * XXX MOD_CONF_CTRL_0 bit 20 is defined in the 1510 TRM as
623 * CONF_MOD_MCBSP3_AUXON ??
625 static struct clk mmc2_ck
= {
627 .ops
= &clkops_generic
,
628 /* Functional clock is direct from ULPD, interface clock is ARMPER */
629 .parent
= &armper_ck
.clk
,
631 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
632 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
636 static struct clk mmc3_ck
= {
638 .ops
= &clkops_generic
,
639 /* Functional clock is direct from ULPD, interface clock is ARMPER */
640 .parent
= &armper_ck
.clk
,
642 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
643 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
644 .enable_bit
= SOFT_MMC_DPLL_REQ_SHIFT
,
647 static struct clk virtual_ck_mpu
= {
650 .parent
= &arm_ck
, /* Is smarter alias for */
651 .recalc
= &followparent_recalc
,
652 .set_rate
= &omap1_select_table_rate
,
653 .round_rate
= &omap1_round_to_table_rate
,
656 /* virtual functional clock domain for I2C. Just for making sure that ARMXOR_CK
657 remains active during MPU idle whenever this is enabled */
658 static struct clk i2c_fck
= {
661 .flags
= CLOCK_NO_IDLE_PARENT
,
662 .parent
= &armxor_ck
.clk
,
663 .recalc
= &followparent_recalc
,
666 static struct clk i2c_ick
= {
669 .flags
= CLOCK_NO_IDLE_PARENT
,
670 .parent
= &armper_ck
.clk
,
671 .recalc
= &followparent_recalc
,
678 static struct omap_clk omap_clks
[] = {
679 /* non-ULPD clocks */
680 CLK(NULL
, "ck_ref", &ck_ref
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
681 CLK(NULL
, "ck_dpll1", &ck_dpll1
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
683 CLK(NULL
, "ck_dpll1out", &ck_dpll1out
.clk
, CK_16XX
),
684 CLK(NULL
, "ck_sossi", &sossi_ck
, CK_16XX
),
685 CLK(NULL
, "arm_ck", &arm_ck
, CK_16XX
| CK_1510
| CK_310
),
686 CLK(NULL
, "armper_ck", &armper_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
687 CLK(NULL
, "arm_gpio_ck", &arm_gpio_ck
, CK_1510
| CK_310
),
688 CLK(NULL
, "armxor_ck", &armxor_ck
.clk
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
689 CLK(NULL
, "armtim_ck", &armtim_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
690 CLK("omap_wdt", "fck", &armwdt_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
691 CLK("omap_wdt", "ick", &armper_ck
.clk
, CK_16XX
),
692 CLK("omap_wdt", "ick", &dummy_ck
, CK_1510
| CK_310
),
693 CLK(NULL
, "arminth_ck", &arminth_ck1510
, CK_1510
| CK_310
),
694 CLK(NULL
, "arminth_ck", &arminth_ck16xx
, CK_16XX
),
696 CLK(NULL
, "dsp_ck", &dsp_ck
, CK_16XX
| CK_1510
| CK_310
),
697 CLK(NULL
, "dspmmu_ck", &dspmmu_ck
, CK_16XX
| CK_1510
| CK_310
),
698 CLK(NULL
, "dspper_ck", &dspper_ck
, CK_16XX
| CK_1510
| CK_310
),
699 CLK(NULL
, "dspxor_ck", &dspxor_ck
, CK_16XX
| CK_1510
| CK_310
),
700 CLK(NULL
, "dsptim_ck", &dsptim_ck
, CK_16XX
| CK_1510
| CK_310
),
702 CLK(NULL
, "tc_ck", &tc_ck
.clk
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
703 CLK(NULL
, "tipb_ck", &tipb_ck
, CK_1510
| CK_310
),
704 CLK(NULL
, "l3_ocpi_ck", &l3_ocpi_ck
, CK_16XX
| CK_7XX
),
705 CLK(NULL
, "tc1_ck", &tc1_ck
, CK_16XX
),
706 CLK(NULL
, "tc2_ck", &tc2_ck
, CK_16XX
),
707 CLK(NULL
, "dma_ck", &dma_ck
, CK_16XX
| CK_1510
| CK_310
),
708 CLK(NULL
, "dma_lcdfree_ck", &dma_lcdfree_ck
, CK_16XX
),
709 CLK(NULL
, "api_ck", &api_ck
.clk
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
710 CLK(NULL
, "lb_ck", &lb_ck
.clk
, CK_1510
| CK_310
),
711 CLK(NULL
, "rhea1_ck", &rhea1_ck
, CK_16XX
),
712 CLK(NULL
, "rhea2_ck", &rhea2_ck
, CK_16XX
),
713 CLK(NULL
, "lcd_ck", &lcd_ck_16xx
, CK_16XX
| CK_7XX
),
714 CLK(NULL
, "lcd_ck", &lcd_ck_1510
.clk
, CK_1510
| CK_310
),
716 CLK(NULL
, "uart1_ck", &uart1_1510
, CK_1510
| CK_310
),
717 CLK(NULL
, "uart1_ck", &uart1_16xx
.clk
, CK_16XX
),
718 CLK(NULL
, "uart1_ck", &uart1_7xx
, CK_7XX
),
719 CLK(NULL
, "uart2_ck", &uart2_ck
, CK_16XX
| CK_1510
| CK_310
),
720 CLK(NULL
, "uart2_ck", &uart2_7xx
, CK_7XX
),
721 CLK(NULL
, "uart3_ck", &uart3_1510
, CK_1510
| CK_310
),
722 CLK(NULL
, "uart3_ck", &uart3_16xx
.clk
, CK_16XX
),
723 CLK(NULL
, "usb_clko", &usb_clko
, CK_16XX
| CK_1510
| CK_310
),
724 CLK(NULL
, "usb_hhc_ck", &usb_hhc_ck1510
, CK_1510
| CK_310
),
725 CLK(NULL
, "usb_hhc_ck", &usb_hhc_ck16xx
, CK_16XX
),
726 CLK(NULL
, "usb_dc_ck", &usb_dc_ck
, CK_16XX
),
727 CLK(NULL
, "usb_dc_ck", &usb_dc_ck7xx
, CK_7XX
),
728 CLK(NULL
, "mclk", &mclk_1510
, CK_1510
| CK_310
),
729 CLK(NULL
, "mclk", &mclk_16xx
, CK_16XX
),
730 CLK(NULL
, "bclk", &bclk_1510
, CK_1510
| CK_310
),
731 CLK(NULL
, "bclk", &bclk_16xx
, CK_16XX
),
732 CLK("mmci-omap.0", "fck", &mmc1_ck
, CK_16XX
| CK_1510
| CK_310
),
733 CLK("mmci-omap.0", "fck", &mmc3_ck
, CK_7XX
),
734 CLK("mmci-omap.0", "ick", &armper_ck
.clk
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
735 CLK("mmci-omap.1", "fck", &mmc2_ck
, CK_16XX
),
736 CLK("mmci-omap.1", "ick", &armper_ck
.clk
, CK_16XX
),
738 CLK(NULL
, "mpu", &virtual_ck_mpu
, CK_16XX
| CK_1510
| CK_310
),
739 CLK("i2c_omap.1", "fck", &i2c_fck
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
740 CLK("i2c_omap.1", "ick", &i2c_ick
, CK_16XX
),
741 CLK("i2c_omap.1", "ick", &dummy_ck
, CK_1510
| CK_310
| CK_7XX
),
742 CLK("omap1_spi100k.1", "fck", &dummy_ck
, CK_7XX
),
743 CLK("omap1_spi100k.1", "ick", &dummy_ck
, CK_7XX
),
744 CLK("omap1_spi100k.2", "fck", &dummy_ck
, CK_7XX
),
745 CLK("omap1_spi100k.2", "ick", &dummy_ck
, CK_7XX
),
746 CLK("omap_uwire", "fck", &armxor_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
747 CLK("omap-mcbsp.1", "ick", &dspper_ck
, CK_16XX
),
748 CLK("omap-mcbsp.1", "ick", &dummy_ck
, CK_1510
| CK_310
),
749 CLK("omap-mcbsp.2", "ick", &armper_ck
.clk
, CK_16XX
),
750 CLK("omap-mcbsp.2", "ick", &dummy_ck
, CK_1510
| CK_310
),
751 CLK("omap-mcbsp.3", "ick", &dspper_ck
, CK_16XX
),
752 CLK("omap-mcbsp.3", "ick", &dummy_ck
, CK_1510
| CK_310
),
753 CLK("omap-mcbsp.1", "fck", &dspxor_ck
, CK_16XX
| CK_1510
| CK_310
),
754 CLK("omap-mcbsp.2", "fck", &armper_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
755 CLK("omap-mcbsp.3", "fck", &dspxor_ck
, CK_16XX
| CK_1510
| CK_310
),
762 static struct clk_functions omap1_clk_functions
= {
763 .clk_enable
= omap1_clk_enable
,
764 .clk_disable
= omap1_clk_disable
,
765 .clk_round_rate
= omap1_clk_round_rate
,
766 .clk_set_rate
= omap1_clk_set_rate
,
767 .clk_disable_unused
= omap1_clk_disable_unused
,
770 int __init
omap1_clk_init(void)
773 const struct omap_clock_config
*info
;
774 int crystal_type
= 0; /* Default 12 MHz */
777 #ifdef CONFIG_DEBUG_LL
779 * Resets some clocks that may be left on from bootloader,
780 * but leaves serial clocks on.
782 omap_writel(0x3 << 29, MOD_CONF_CTRL_0
);
785 /* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */
786 reg
= omap_readw(SOFT_REQ_REG
) & (1 << 4);
787 omap_writew(reg
, SOFT_REQ_REG
);
788 if (!cpu_is_omap15xx())
789 omap_writew(0, SOFT_REQ_REG2
);
791 clk_init(&omap1_clk_functions
);
793 /* By default all idlect1 clocks are allowed to idle */
794 arm_idlect1_mask
= ~0;
796 for (c
= omap_clks
; c
< omap_clks
+ ARRAY_SIZE(omap_clks
); c
++)
797 clk_preinit(c
->lk
.clk
);
800 if (cpu_is_omap16xx())
802 if (cpu_is_omap1510())
804 if (cpu_is_omap7xx())
806 if (cpu_is_omap310())
809 for (c
= omap_clks
; c
< omap_clks
+ ARRAY_SIZE(omap_clks
); c
++)
810 if (c
->cpu
& cpu_mask
) {
812 clk_register(c
->lk
.clk
);
815 /* Pointers to these clocks are needed by code in clock.c */
816 api_ck_p
= clk_get(NULL
, "api_ck");
817 ck_dpll1_p
= clk_get(NULL
, "ck_dpll1");
818 ck_ref_p
= clk_get(NULL
, "ck_ref");
820 info
= omap_get_config(OMAP_TAG_CLOCK
, struct omap_clock_config
);
822 if (!cpu_is_omap15xx())
823 crystal_type
= info
->system_clock_type
;
826 #if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
827 ck_ref
.rate
= 13000000;
828 #elif defined(CONFIG_ARCH_OMAP16XX)
829 if (crystal_type
== 2)
830 ck_ref
.rate
= 19200000;
833 pr_info("Clocks: ARM_SYSST: 0x%04x DPLL_CTL: 0x%04x ARM_CKCTL: "
834 "0x%04x\n", omap_readw(ARM_SYSST
), omap_readw(DPLL_CTL
),
835 omap_readw(ARM_CKCTL
));
837 /* We want to be in syncronous scalable mode */
838 omap_writew(0x1000, ARM_SYSST
);
840 #ifdef CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER
841 /* Use values set by bootloader. Determine PLL rate and recalculate
842 * dependent clocks as if kernel had changed PLL or divisors.
845 unsigned pll_ctl_val
= omap_readw(DPLL_CTL
);
847 ck_dpll1
.rate
= ck_ref
.rate
; /* Base xtal rate */
848 if (pll_ctl_val
& 0x10) {
849 /* PLL enabled, apply multiplier and divisor */
850 if (pll_ctl_val
& 0xf80)
851 ck_dpll1
.rate
*= (pll_ctl_val
& 0xf80) >> 7;
852 ck_dpll1
.rate
/= ((pll_ctl_val
& 0x60) >> 5) + 1;
854 /* PLL disabled, apply bypass divisor */
855 switch (pll_ctl_val
& 0xc) {
868 /* Find the highest supported frequency and enable it */
869 if (omap1_select_table_rate(&virtual_ck_mpu
, ~0)) {
870 printk(KERN_ERR
"System frequencies not set. Check your config.\n");
871 /* Guess sane values (60MHz) */
872 omap_writew(0x2290, DPLL_CTL
);
873 omap_writew(cpu_is_omap7xx() ? 0x3005 : 0x1005, ARM_CKCTL
);
874 ck_dpll1
.rate
= 60000000;
877 propagate_rate(&ck_dpll1
);
878 /* Cache rates for clocks connected to ck_ref (not dpll1) */
879 propagate_rate(&ck_ref
);
880 printk(KERN_INFO
"Clocking rate (xtal/DPLL1/MPU): "
881 "%ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n",
882 ck_ref
.rate
/ 1000000, (ck_ref
.rate
/ 100000) % 10,
883 ck_dpll1
.rate
/ 1000000, (ck_dpll1
.rate
/ 100000) % 10,
884 arm_ck
.rate
/ 1000000, (arm_ck
.rate
/ 100000) % 10);
886 #if defined(CONFIG_MACH_OMAP_PERSEUS2) || defined(CONFIG_MACH_OMAP_FSAMPLE)
887 /* Select slicer output as OMAP input clock */
888 omap_writew(omap_readw(OMAP7XX_PCC_UPLD_CTRL
) & ~0x1, OMAP7XX_PCC_UPLD_CTRL
);
891 /* Amstrad Delta wants BCLK high when inactive */
892 if (machine_is_ams_delta())
893 omap_writel(omap_readl(ULPD_CLOCK_CTRL
) |
894 (1 << SDW_MCLK_INV_BIT
),
897 /* Turn off DSP and ARM_TIMXO. Make sure ARM_INTHCK is not divided */
898 /* (on 730, bit 13 must not be cleared) */
899 if (cpu_is_omap7xx())
900 omap_writew(omap_readw(ARM_CKCTL
) & 0x2fff, ARM_CKCTL
);
902 omap_writew(omap_readw(ARM_CKCTL
) & 0x0fff, ARM_CKCTL
);
904 /* Put DSP/MPUI into reset until needed */
905 omap_writew(0, ARM_RSTCT1
);
906 omap_writew(1, ARM_RSTCT2
);
907 omap_writew(0x400, ARM_IDLECT1
);
910 * According to OMAP5910 Erratum SYS_DMA_1, bit DMACK_REQ (bit 8)
911 * of the ARM_IDLECT2 register must be set to zero. The power-on
912 * default value of this bit is one.
914 omap_writew(0x0000, ARM_IDLECT2
); /* Turn LCD clock off also */
917 * Only enable those clocks we will need, let the drivers
918 * enable other clocks as necessary
920 clk_enable(&armper_ck
.clk
);
921 clk_enable(&armxor_ck
.clk
);
922 clk_enable(&armtim_ck
.clk
); /* This should be done by timer code */
924 if (cpu_is_omap15xx())
925 clk_enable(&arm_gpio_ck
);