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>
19 #include <linux/clk.h>
20 #include <linux/cpufreq.h>
21 #include <linux/delay.h>
23 #include <asm/mach-types.h> /* for machine_is_* */
27 #include <mach/hardware.h>
28 #include <mach/usb.h> /* for OTG_BASE */
34 /* Some ARM_IDLECT1 bit shifts - used in struct arm_idlect1_clk */
35 #define IDL_CLKOUT_ARM_SHIFT 12
36 #define IDLTIM_ARM_SHIFT 9
37 #define IDLAPI_ARM_SHIFT 8
38 #define IDLIF_ARM_SHIFT 6
39 #define IDLLB_ARM_SHIFT 4 /* undocumented? */
40 #define OMAP1510_IDLLCD_ARM_SHIFT 3 /* undocumented? */
41 #define IDLPER_ARM_SHIFT 2
42 #define IDLXORP_ARM_SHIFT 1
43 #define IDLWDT_ARM_SHIFT 0
45 /* Some MOD_CONF_CTRL_0 bit shifts - used in struct clk.enable_bit */
46 #define CONF_MOD_UART3_CLK_MODE_R 31
47 #define CONF_MOD_UART2_CLK_MODE_R 30
48 #define CONF_MOD_UART1_CLK_MODE_R 29
49 #define CONF_MOD_MMC_SD_CLK_REQ_R 23
50 #define CONF_MOD_MCBSP3_AUXON 20
52 /* Some MOD_CONF_CTRL_1 bit shifts - used in struct clk.enable_bit */
53 #define CONF_MOD_SOSSI_CLK_EN_R 16
55 /* Some OTG_SYSCON_2-specific bit fields */
56 #define OTG_SYSCON_2_UHOST_EN_SHIFT 8
58 /* Some SOFT_REQ_REG bit fields - used in struct clk.enable_bit */
59 #define SOFT_MMC2_DPLL_REQ_SHIFT 13
60 #define SOFT_MMC_DPLL_REQ_SHIFT 12
61 #define SOFT_UART3_DPLL_REQ_SHIFT 11
62 #define SOFT_UART2_DPLL_REQ_SHIFT 10
63 #define SOFT_UART1_DPLL_REQ_SHIFT 9
64 #define SOFT_USB_OTG_DPLL_REQ_SHIFT 8
65 #define SOFT_CAM_DPLL_REQ_SHIFT 7
66 #define SOFT_COM_MCKO_REQ_SHIFT 6
67 #define SOFT_PERIPH_REQ_SHIFT 5 /* sys_ck gate for UART2 ? */
68 #define USB_REQ_EN_SHIFT 4
69 #define SOFT_USB_REQ_SHIFT 3 /* sys_ck gate for USB host? */
70 #define SOFT_SDW_REQ_SHIFT 2 /* sys_ck gate for Bluetooth? */
71 #define SOFT_COM_REQ_SHIFT 1 /* sys_ck gate for com proc? */
72 #define SOFT_DPLL_REQ_SHIFT 0
78 static struct clk ck_ref
= {
84 static struct clk ck_dpll1
= {
91 * FIXME: This clock seems to be necessary but no-one has asked for its
92 * activation. [ FIX: SoSSI, SSR ]
94 static struct arm_idlect1_clk ck_dpll1out
= {
96 .name
= "ck_dpll1out",
97 .ops
= &clkops_generic
,
99 .flags
= CLOCK_IDLE_CONTROL
| ENABLE_REG_32BIT
|
101 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
102 .enable_bit
= EN_CKOUT_ARM
,
103 .recalc
= &followparent_recalc
,
105 .idlect_shift
= IDL_CLKOUT_ARM_SHIFT
,
108 static struct clk sossi_ck
= {
110 .ops
= &clkops_generic
,
111 .parent
= &ck_dpll1out
.clk
,
112 .flags
= CLOCK_NO_IDLE_PARENT
| ENABLE_REG_32BIT
,
113 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_1
),
114 .enable_bit
= CONF_MOD_SOSSI_CLK_EN_R
,
115 .recalc
= &omap1_sossi_recalc
,
116 .set_rate
= &omap1_set_sossi_rate
,
119 static struct clk arm_ck
= {
123 .rate_offset
= CKCTL_ARMDIV_OFFSET
,
124 .recalc
= &omap1_ckctl_recalc
,
125 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
126 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
129 static struct arm_idlect1_clk armper_ck
= {
132 .ops
= &clkops_generic
,
134 .flags
= CLOCK_IDLE_CONTROL
,
135 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
136 .enable_bit
= EN_PERCK
,
137 .rate_offset
= CKCTL_PERDIV_OFFSET
,
138 .recalc
= &omap1_ckctl_recalc
,
139 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
140 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
142 .idlect_shift
= IDLPER_ARM_SHIFT
,
146 * FIXME: This clock seems to be necessary but no-one has asked for its
147 * activation. [ GPIO code for 1510 ]
149 static struct clk arm_gpio_ck
= {
151 .ops
= &clkops_generic
,
153 .flags
= ENABLE_ON_INIT
,
154 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
155 .enable_bit
= EN_GPIOCK
,
156 .recalc
= &followparent_recalc
,
159 static struct arm_idlect1_clk armxor_ck
= {
162 .ops
= &clkops_generic
,
164 .flags
= CLOCK_IDLE_CONTROL
,
165 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
166 .enable_bit
= EN_XORPCK
,
167 .recalc
= &followparent_recalc
,
169 .idlect_shift
= IDLXORP_ARM_SHIFT
,
172 static struct arm_idlect1_clk armtim_ck
= {
175 .ops
= &clkops_generic
,
177 .flags
= CLOCK_IDLE_CONTROL
,
178 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
179 .enable_bit
= EN_TIMCK
,
180 .recalc
= &followparent_recalc
,
182 .idlect_shift
= IDLTIM_ARM_SHIFT
,
185 static struct arm_idlect1_clk armwdt_ck
= {
188 .ops
= &clkops_generic
,
190 .flags
= CLOCK_IDLE_CONTROL
,
191 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
192 .enable_bit
= EN_WDTCK
,
194 .recalc
= &omap_fixed_divisor_recalc
,
196 .idlect_shift
= IDLWDT_ARM_SHIFT
,
199 static struct clk arminth_ck16xx
= {
200 .name
= "arminth_ck",
203 .recalc
= &followparent_recalc
,
204 /* Note: On 16xx the frequency can be divided by 2 by programming
205 * ARM_CKCTL:ARM_INTHCK_SEL(14) to 1
207 * 1510 version is in TC clocks.
211 static struct clk dsp_ck
= {
213 .ops
= &clkops_generic
,
215 .enable_reg
= OMAP1_IO_ADDRESS(ARM_CKCTL
),
216 .enable_bit
= EN_DSPCK
,
217 .rate_offset
= CKCTL_DSPDIV_OFFSET
,
218 .recalc
= &omap1_ckctl_recalc
,
219 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
220 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
223 static struct clk dspmmu_ck
= {
227 .rate_offset
= CKCTL_DSPMMUDIV_OFFSET
,
228 .recalc
= &omap1_ckctl_recalc
,
229 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
230 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
233 static struct clk dspper_ck
= {
235 .ops
= &clkops_dspck
,
237 .enable_reg
= DSP_IDLECT2
,
238 .enable_bit
= EN_PERCK
,
239 .rate_offset
= CKCTL_PERDIV_OFFSET
,
240 .recalc
= &omap1_ckctl_recalc_dsp_domain
,
241 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
242 .set_rate
= &omap1_clk_set_rate_dsp_domain
,
245 static struct clk dspxor_ck
= {
247 .ops
= &clkops_dspck
,
249 .enable_reg
= DSP_IDLECT2
,
250 .enable_bit
= EN_XORPCK
,
251 .recalc
= &followparent_recalc
,
254 static struct clk dsptim_ck
= {
256 .ops
= &clkops_dspck
,
258 .enable_reg
= DSP_IDLECT2
,
259 .enable_bit
= EN_DSPTIMCK
,
260 .recalc
= &followparent_recalc
,
263 static struct arm_idlect1_clk tc_ck
= {
268 .flags
= CLOCK_IDLE_CONTROL
,
269 .rate_offset
= CKCTL_TCDIV_OFFSET
,
270 .recalc
= &omap1_ckctl_recalc
,
271 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
272 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
274 .idlect_shift
= IDLIF_ARM_SHIFT
,
277 static struct clk arminth_ck1510
= {
278 .name
= "arminth_ck",
280 .parent
= &tc_ck
.clk
,
281 .recalc
= &followparent_recalc
,
282 /* Note: On 1510 the frequency follows TC_CK
284 * 16xx version is in MPU clocks.
288 static struct clk tipb_ck
= {
289 /* No-idle controlled by "tc_ck" */
292 .parent
= &tc_ck
.clk
,
293 .recalc
= &followparent_recalc
,
296 static struct clk l3_ocpi_ck
= {
297 /* No-idle controlled by "tc_ck" */
298 .name
= "l3_ocpi_ck",
299 .ops
= &clkops_generic
,
300 .parent
= &tc_ck
.clk
,
301 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT3
),
302 .enable_bit
= EN_OCPI_CK
,
303 .recalc
= &followparent_recalc
,
306 static struct clk tc1_ck
= {
308 .ops
= &clkops_generic
,
309 .parent
= &tc_ck
.clk
,
310 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT3
),
311 .enable_bit
= EN_TC1_CK
,
312 .recalc
= &followparent_recalc
,
316 * FIXME: This clock seems to be necessary but no-one has asked for its
317 * activation. [ pm.c (SRAM), CCP, Camera ]
319 static struct clk tc2_ck
= {
321 .ops
= &clkops_generic
,
322 .parent
= &tc_ck
.clk
,
323 .flags
= ENABLE_ON_INIT
,
324 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT3
),
325 .enable_bit
= EN_TC2_CK
,
326 .recalc
= &followparent_recalc
,
329 static struct clk dma_ck
= {
330 /* No-idle controlled by "tc_ck" */
333 .parent
= &tc_ck
.clk
,
334 .recalc
= &followparent_recalc
,
337 static struct clk dma_lcdfree_ck
= {
338 .name
= "dma_lcdfree_ck",
340 .parent
= &tc_ck
.clk
,
341 .recalc
= &followparent_recalc
,
344 static struct arm_idlect1_clk api_ck
= {
347 .ops
= &clkops_generic
,
348 .parent
= &tc_ck
.clk
,
349 .flags
= CLOCK_IDLE_CONTROL
,
350 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
351 .enable_bit
= EN_APICK
,
352 .recalc
= &followparent_recalc
,
354 .idlect_shift
= IDLAPI_ARM_SHIFT
,
357 static struct arm_idlect1_clk lb_ck
= {
360 .ops
= &clkops_generic
,
361 .parent
= &tc_ck
.clk
,
362 .flags
= CLOCK_IDLE_CONTROL
,
363 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
364 .enable_bit
= EN_LBCK
,
365 .recalc
= &followparent_recalc
,
367 .idlect_shift
= IDLLB_ARM_SHIFT
,
370 static struct clk rhea1_ck
= {
373 .parent
= &tc_ck
.clk
,
374 .recalc
= &followparent_recalc
,
377 static struct clk rhea2_ck
= {
380 .parent
= &tc_ck
.clk
,
381 .recalc
= &followparent_recalc
,
384 static struct clk lcd_ck_16xx
= {
386 .ops
= &clkops_generic
,
388 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
389 .enable_bit
= EN_LCDCK
,
390 .rate_offset
= CKCTL_LCDDIV_OFFSET
,
391 .recalc
= &omap1_ckctl_recalc
,
392 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
393 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
396 static struct arm_idlect1_clk lcd_ck_1510
= {
399 .ops
= &clkops_generic
,
401 .flags
= CLOCK_IDLE_CONTROL
,
402 .enable_reg
= OMAP1_IO_ADDRESS(ARM_IDLECT2
),
403 .enable_bit
= EN_LCDCK
,
404 .rate_offset
= CKCTL_LCDDIV_OFFSET
,
405 .recalc
= &omap1_ckctl_recalc
,
406 .round_rate
= omap1_clk_round_rate_ckctl_arm
,
407 .set_rate
= omap1_clk_set_rate_ckctl_arm
,
409 .idlect_shift
= OMAP1510_IDLLCD_ARM_SHIFT
,
413 * XXX The enable_bit here is misused - it simply switches between 12MHz
414 * and 48MHz. Reimplement with clksel.
416 * XXX does this need SYSC register handling?
418 static struct clk uart1_1510
= {
421 /* Direct from ULPD, no real parent */
422 .parent
= &armper_ck
.clk
,
424 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
425 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
426 .enable_bit
= CONF_MOD_UART1_CLK_MODE_R
,
427 .set_rate
= &omap1_set_uart_rate
,
428 .recalc
= &omap1_uart_recalc
,
432 * XXX The enable_bit here is misused - it simply switches between 12MHz
433 * and 48MHz. Reimplement with clksel.
435 * XXX SYSC register handling does not belong in the clock framework
437 static struct uart_clk uart1_16xx
= {
440 .ops
= &clkops_uart_16xx
,
441 /* Direct from ULPD, no real parent */
442 .parent
= &armper_ck
.clk
,
444 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
445 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
446 .enable_bit
= CONF_MOD_UART1_CLK_MODE_R
,
448 .sysc_addr
= 0xfffb0054,
452 * XXX The enable_bit here is misused - it simply switches between 12MHz
453 * and 48MHz. Reimplement with clksel.
455 * XXX does this need SYSC register handling?
457 static struct clk uart2_ck
= {
460 /* Direct from ULPD, no real parent */
461 .parent
= &armper_ck
.clk
,
463 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
464 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
465 .enable_bit
= CONF_MOD_UART2_CLK_MODE_R
,
466 .set_rate
= &omap1_set_uart_rate
,
467 .recalc
= &omap1_uart_recalc
,
471 * XXX The enable_bit here is misused - it simply switches between 12MHz
472 * and 48MHz. Reimplement with clksel.
474 * XXX does this need SYSC register handling?
476 static struct clk uart3_1510
= {
479 /* Direct from ULPD, no real parent */
480 .parent
= &armper_ck
.clk
,
482 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
483 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
484 .enable_bit
= CONF_MOD_UART3_CLK_MODE_R
,
485 .set_rate
= &omap1_set_uart_rate
,
486 .recalc
= &omap1_uart_recalc
,
490 * XXX The enable_bit here is misused - it simply switches between 12MHz
491 * and 48MHz. Reimplement with clksel.
493 * XXX SYSC register handling does not belong in the clock framework
495 static struct uart_clk uart3_16xx
= {
498 .ops
= &clkops_uart_16xx
,
499 /* Direct from ULPD, no real parent */
500 .parent
= &armper_ck
.clk
,
502 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
503 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
504 .enable_bit
= CONF_MOD_UART3_CLK_MODE_R
,
506 .sysc_addr
= 0xfffb9854,
509 static struct clk usb_clko
= { /* 6 MHz output on W4_USB_CLKO */
511 .ops
= &clkops_generic
,
512 /* Direct from ULPD, no parent */
514 .flags
= ENABLE_REG_32BIT
,
515 .enable_reg
= OMAP1_IO_ADDRESS(ULPD_CLOCK_CTRL
),
516 .enable_bit
= USB_MCLK_EN_BIT
,
519 static struct clk usb_hhc_ck1510
= {
520 .name
= "usb_hhc_ck",
521 .ops
= &clkops_generic
,
522 /* Direct from ULPD, no parent */
523 .rate
= 48000000, /* Actually 2 clocks, 12MHz and 48MHz */
524 .flags
= ENABLE_REG_32BIT
,
525 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
526 .enable_bit
= USB_HOST_HHC_UHOST_EN
,
529 static struct clk usb_hhc_ck16xx
= {
530 .name
= "usb_hhc_ck",
531 .ops
= &clkops_generic
,
532 /* Direct from ULPD, no parent */
534 /* OTG_SYSCON_2.OTG_PADEN == 0 (not 1510-compatible) */
535 .flags
= ENABLE_REG_32BIT
,
536 .enable_reg
= OMAP1_IO_ADDRESS(OTG_BASE
+ 0x08), /* OTG_SYSCON_2 */
537 .enable_bit
= OTG_SYSCON_2_UHOST_EN_SHIFT
540 static struct clk usb_dc_ck
= {
542 .ops
= &clkops_generic
,
543 /* Direct from ULPD, no parent */
545 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
546 .enable_bit
= SOFT_USB_OTG_DPLL_REQ_SHIFT
,
549 static struct clk uart1_7xx
= {
551 .ops
= &clkops_generic
,
552 /* Direct from ULPD, no parent */
554 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
558 static struct clk uart2_7xx
= {
560 .ops
= &clkops_generic
,
561 /* Direct from ULPD, no parent */
563 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
567 static struct clk mclk_1510
= {
569 .ops
= &clkops_generic
,
570 /* Direct from ULPD, no parent. May be enabled by ext hardware. */
572 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
573 .enable_bit
= SOFT_COM_MCKO_REQ_SHIFT
,
576 static struct clk mclk_16xx
= {
578 .ops
= &clkops_generic
,
579 /* Direct from ULPD, no parent. May be enabled by ext hardware. */
580 .enable_reg
= OMAP1_IO_ADDRESS(COM_CLK_DIV_CTRL_SEL
),
581 .enable_bit
= COM_ULPD_PLL_CLK_REQ
,
582 .set_rate
= &omap1_set_ext_clk_rate
,
583 .round_rate
= &omap1_round_ext_clk_rate
,
584 .init
= &omap1_init_ext_clk
,
587 static struct clk bclk_1510
= {
589 .ops
= &clkops_generic
,
590 /* Direct from ULPD, no parent. May be enabled by ext hardware. */
594 static struct clk bclk_16xx
= {
596 .ops
= &clkops_generic
,
597 /* Direct from ULPD, no parent. May be enabled by ext hardware. */
598 .enable_reg
= OMAP1_IO_ADDRESS(SWD_CLK_DIV_CTRL_SEL
),
599 .enable_bit
= SWD_ULPD_PLL_CLK_REQ
,
600 .set_rate
= &omap1_set_ext_clk_rate
,
601 .round_rate
= &omap1_round_ext_clk_rate
,
602 .init
= &omap1_init_ext_clk
,
605 static struct clk mmc1_ck
= {
607 .ops
= &clkops_generic
,
608 /* Functional clock is direct from ULPD, interface clock is ARMPER */
609 .parent
= &armper_ck
.clk
,
611 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
612 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
613 .enable_bit
= CONF_MOD_MMC_SD_CLK_REQ_R
,
617 * XXX MOD_CONF_CTRL_0 bit 20 is defined in the 1510 TRM as
618 * CONF_MOD_MCBSP3_AUXON ??
620 static struct clk mmc2_ck
= {
622 .ops
= &clkops_generic
,
623 /* Functional clock is direct from ULPD, interface clock is ARMPER */
624 .parent
= &armper_ck
.clk
,
626 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
627 .enable_reg
= OMAP1_IO_ADDRESS(MOD_CONF_CTRL_0
),
631 static struct clk mmc3_ck
= {
633 .ops
= &clkops_generic
,
634 /* Functional clock is direct from ULPD, interface clock is ARMPER */
635 .parent
= &armper_ck
.clk
,
637 .flags
= ENABLE_REG_32BIT
| CLOCK_NO_IDLE_PARENT
,
638 .enable_reg
= OMAP1_IO_ADDRESS(SOFT_REQ_REG
),
639 .enable_bit
= SOFT_MMC_DPLL_REQ_SHIFT
,
642 static struct clk virtual_ck_mpu
= {
645 .parent
= &arm_ck
, /* Is smarter alias for */
646 .recalc
= &followparent_recalc
,
647 .set_rate
= &omap1_select_table_rate
,
648 .round_rate
= &omap1_round_to_table_rate
,
651 /* virtual functional clock domain for I2C. Just for making sure that ARMXOR_CK
652 remains active during MPU idle whenever this is enabled */
653 static struct clk i2c_fck
= {
656 .flags
= CLOCK_NO_IDLE_PARENT
,
657 .parent
= &armxor_ck
.clk
,
658 .recalc
= &followparent_recalc
,
661 static struct clk i2c_ick
= {
664 .flags
= CLOCK_NO_IDLE_PARENT
,
665 .parent
= &armper_ck
.clk
,
666 .recalc
= &followparent_recalc
,
673 static struct omap_clk omap_clks
[] = {
674 /* non-ULPD clocks */
675 CLK(NULL
, "ck_ref", &ck_ref
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
676 CLK(NULL
, "ck_dpll1", &ck_dpll1
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
678 CLK(NULL
, "ck_dpll1out", &ck_dpll1out
.clk
, CK_16XX
),
679 CLK(NULL
, "ck_sossi", &sossi_ck
, CK_16XX
),
680 CLK(NULL
, "arm_ck", &arm_ck
, CK_16XX
| CK_1510
| CK_310
),
681 CLK(NULL
, "armper_ck", &armper_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
682 CLK("omap_gpio.0", "ick", &arm_gpio_ck
, CK_1510
| CK_310
),
683 CLK(NULL
, "armxor_ck", &armxor_ck
.clk
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
684 CLK(NULL
, "armtim_ck", &armtim_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
685 CLK("omap_wdt", "fck", &armwdt_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
686 CLK("omap_wdt", "ick", &armper_ck
.clk
, CK_16XX
),
687 CLK("omap_wdt", "ick", &dummy_ck
, CK_1510
| CK_310
),
688 CLK(NULL
, "arminth_ck", &arminth_ck1510
, CK_1510
| CK_310
),
689 CLK(NULL
, "arminth_ck", &arminth_ck16xx
, CK_16XX
),
691 CLK(NULL
, "dsp_ck", &dsp_ck
, CK_16XX
| CK_1510
| CK_310
),
692 CLK(NULL
, "dspmmu_ck", &dspmmu_ck
, CK_16XX
| CK_1510
| CK_310
),
693 CLK(NULL
, "dspper_ck", &dspper_ck
, CK_16XX
| CK_1510
| CK_310
),
694 CLK(NULL
, "dspxor_ck", &dspxor_ck
, CK_16XX
| CK_1510
| CK_310
),
695 CLK(NULL
, "dsptim_ck", &dsptim_ck
, CK_16XX
| CK_1510
| CK_310
),
697 CLK(NULL
, "tc_ck", &tc_ck
.clk
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
698 CLK(NULL
, "tipb_ck", &tipb_ck
, CK_1510
| CK_310
),
699 CLK(NULL
, "l3_ocpi_ck", &l3_ocpi_ck
, CK_16XX
| CK_7XX
),
700 CLK(NULL
, "tc1_ck", &tc1_ck
, CK_16XX
),
701 CLK(NULL
, "tc2_ck", &tc2_ck
, CK_16XX
),
702 CLK(NULL
, "dma_ck", &dma_ck
, CK_16XX
| CK_1510
| CK_310
),
703 CLK(NULL
, "dma_lcdfree_ck", &dma_lcdfree_ck
, CK_16XX
),
704 CLK(NULL
, "api_ck", &api_ck
.clk
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
705 CLK(NULL
, "lb_ck", &lb_ck
.clk
, CK_1510
| CK_310
),
706 CLK(NULL
, "rhea1_ck", &rhea1_ck
, CK_16XX
),
707 CLK(NULL
, "rhea2_ck", &rhea2_ck
, CK_16XX
),
708 CLK(NULL
, "lcd_ck", &lcd_ck_16xx
, CK_16XX
| CK_7XX
),
709 CLK(NULL
, "lcd_ck", &lcd_ck_1510
.clk
, CK_1510
| CK_310
),
711 CLK(NULL
, "uart1_ck", &uart1_1510
, CK_1510
| CK_310
),
712 CLK(NULL
, "uart1_ck", &uart1_16xx
.clk
, CK_16XX
),
713 CLK(NULL
, "uart1_ck", &uart1_7xx
, CK_7XX
),
714 CLK(NULL
, "uart2_ck", &uart2_ck
, CK_16XX
| CK_1510
| CK_310
),
715 CLK(NULL
, "uart2_ck", &uart2_7xx
, CK_7XX
),
716 CLK(NULL
, "uart3_ck", &uart3_1510
, CK_1510
| CK_310
),
717 CLK(NULL
, "uart3_ck", &uart3_16xx
.clk
, CK_16XX
),
718 CLK(NULL
, "usb_clko", &usb_clko
, CK_16XX
| CK_1510
| CK_310
),
719 CLK(NULL
, "usb_hhc_ck", &usb_hhc_ck1510
, CK_1510
| CK_310
),
720 CLK(NULL
, "usb_hhc_ck", &usb_hhc_ck16xx
, CK_16XX
),
721 CLK(NULL
, "usb_dc_ck", &usb_dc_ck
, CK_16XX
| CK_7XX
),
722 CLK(NULL
, "mclk", &mclk_1510
, CK_1510
| CK_310
),
723 CLK(NULL
, "mclk", &mclk_16xx
, CK_16XX
),
724 CLK(NULL
, "bclk", &bclk_1510
, CK_1510
| CK_310
),
725 CLK(NULL
, "bclk", &bclk_16xx
, CK_16XX
),
726 CLK("mmci-omap.0", "fck", &mmc1_ck
, CK_16XX
| CK_1510
| CK_310
),
727 CLK("mmci-omap.0", "fck", &mmc3_ck
, CK_7XX
),
728 CLK("mmci-omap.0", "ick", &armper_ck
.clk
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
729 CLK("mmci-omap.1", "fck", &mmc2_ck
, CK_16XX
),
730 CLK("mmci-omap.1", "ick", &armper_ck
.clk
, CK_16XX
),
732 CLK(NULL
, "mpu", &virtual_ck_mpu
, CK_16XX
| CK_1510
| CK_310
),
733 CLK("omap_i2c.1", "fck", &i2c_fck
, CK_16XX
| CK_1510
| CK_310
| CK_7XX
),
734 CLK("omap_i2c.1", "ick", &i2c_ick
, CK_16XX
),
735 CLK("omap_i2c.1", "ick", &dummy_ck
, CK_1510
| CK_310
| CK_7XX
),
736 CLK("omap1_spi100k.1", "fck", &dummy_ck
, CK_7XX
),
737 CLK("omap1_spi100k.1", "ick", &dummy_ck
, CK_7XX
),
738 CLK("omap1_spi100k.2", "fck", &dummy_ck
, CK_7XX
),
739 CLK("omap1_spi100k.2", "ick", &dummy_ck
, CK_7XX
),
740 CLK("omap_uwire", "fck", &armxor_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
741 CLK("omap-mcbsp.1", "ick", &dspper_ck
, CK_16XX
),
742 CLK("omap-mcbsp.1", "ick", &dummy_ck
, CK_1510
| CK_310
),
743 CLK("omap-mcbsp.2", "ick", &armper_ck
.clk
, CK_16XX
),
744 CLK("omap-mcbsp.2", "ick", &dummy_ck
, CK_1510
| CK_310
),
745 CLK("omap-mcbsp.3", "ick", &dspper_ck
, CK_16XX
),
746 CLK("omap-mcbsp.3", "ick", &dummy_ck
, CK_1510
| CK_310
),
747 CLK("omap-mcbsp.1", "fck", &dspxor_ck
, CK_16XX
| CK_1510
| CK_310
),
748 CLK("omap-mcbsp.2", "fck", &armper_ck
.clk
, CK_16XX
| CK_1510
| CK_310
),
749 CLK("omap-mcbsp.3", "fck", &dspxor_ck
, CK_16XX
| CK_1510
| CK_310
),
756 static void __init
omap1_show_rates(void)
758 pr_notice("Clocking rate (xtal/DPLL1/MPU): %ld.%01ld/%ld.%01ld/%ld.%01ld MHz\n",
759 ck_ref
.rate
/ 1000000, (ck_ref
.rate
/ 100000) % 10,
760 ck_dpll1
.rate
/ 1000000, (ck_dpll1
.rate
/ 100000) % 10,
761 arm_ck
.rate
/ 1000000, (arm_ck
.rate
/ 100000) % 10);
766 int __init
omap1_clk_init(void)
769 int crystal_type
= 0; /* Default 12 MHz */
772 #ifdef CONFIG_DEBUG_LL
774 * Resets some clocks that may be left on from bootloader,
775 * but leaves serial clocks on.
777 omap_writel(0x3 << 29, MOD_CONF_CTRL_0
);
780 /* USB_REQ_EN will be disabled later if necessary (usb_dc_ck) */
781 reg
= omap_readw(SOFT_REQ_REG
) & (1 << 4);
782 omap_writew(reg
, SOFT_REQ_REG
);
783 if (!cpu_is_omap15xx())
784 omap_writew(0, SOFT_REQ_REG2
);
786 /* By default all idlect1 clocks are allowed to idle */
787 arm_idlect1_mask
= ~0;
789 for (c
= omap_clks
; c
< omap_clks
+ ARRAY_SIZE(omap_clks
); c
++)
790 clk_preinit(c
->lk
.clk
);
793 if (cpu_is_omap1710())
795 if (cpu_is_omap16xx())
797 if (cpu_is_omap1510())
799 if (cpu_is_omap7xx())
801 if (cpu_is_omap310())
804 for (c
= omap_clks
; c
< omap_clks
+ ARRAY_SIZE(omap_clks
); c
++)
805 if (c
->cpu
& cpu_mask
) {
807 clk_register(c
->lk
.clk
);
810 /* Pointers to these clocks are needed by code in clock.c */
811 api_ck_p
= clk_get(NULL
, "api_ck");
812 ck_dpll1_p
= clk_get(NULL
, "ck_dpll1");
813 ck_ref_p
= clk_get(NULL
, "ck_ref");
815 if (cpu_is_omap7xx())
816 ck_ref
.rate
= 13000000;
817 if (cpu_is_omap16xx() && crystal_type
== 2)
818 ck_ref
.rate
= 19200000;
820 pr_info("Clocks: ARM_SYSST: 0x%04x DPLL_CTL: 0x%04x ARM_CKCTL: 0x%04x\n",
821 omap_readw(ARM_SYSST
), omap_readw(DPLL_CTL
),
822 omap_readw(ARM_CKCTL
));
824 /* We want to be in syncronous scalable mode */
825 omap_writew(0x1000, ARM_SYSST
);
829 * Initially use the values set by bootloader. Determine PLL rate and
830 * recalculate dependent clocks as if kernel had changed PLL or
831 * divisors. See also omap1_clk_late_init() that can reprogram dpll1
832 * after the SRAM is initialized.
835 unsigned pll_ctl_val
= omap_readw(DPLL_CTL
);
837 ck_dpll1
.rate
= ck_ref
.rate
; /* Base xtal rate */
838 if (pll_ctl_val
& 0x10) {
839 /* PLL enabled, apply multiplier and divisor */
840 if (pll_ctl_val
& 0xf80)
841 ck_dpll1
.rate
*= (pll_ctl_val
& 0xf80) >> 7;
842 ck_dpll1
.rate
/= ((pll_ctl_val
& 0x60) >> 5) + 1;
844 /* PLL disabled, apply bypass divisor */
845 switch (pll_ctl_val
& 0xc) {
857 propagate_rate(&ck_dpll1
);
858 /* Cache rates for clocks connected to ck_ref (not dpll1) */
859 propagate_rate(&ck_ref
);
861 if (machine_is_omap_perseus2() || machine_is_omap_fsample()) {
862 /* Select slicer output as OMAP input clock */
863 omap_writew(omap_readw(OMAP7XX_PCC_UPLD_CTRL
) & ~0x1,
864 OMAP7XX_PCC_UPLD_CTRL
);
867 /* Amstrad Delta wants BCLK high when inactive */
868 if (machine_is_ams_delta())
869 omap_writel(omap_readl(ULPD_CLOCK_CTRL
) |
870 (1 << SDW_MCLK_INV_BIT
),
873 /* Turn off DSP and ARM_TIMXO. Make sure ARM_INTHCK is not divided */
874 /* (on 730, bit 13 must not be cleared) */
875 if (cpu_is_omap7xx())
876 omap_writew(omap_readw(ARM_CKCTL
) & 0x2fff, ARM_CKCTL
);
878 omap_writew(omap_readw(ARM_CKCTL
) & 0x0fff, ARM_CKCTL
);
880 /* Put DSP/MPUI into reset until needed */
881 omap_writew(0, ARM_RSTCT1
);
882 omap_writew(1, ARM_RSTCT2
);
883 omap_writew(0x400, ARM_IDLECT1
);
886 * According to OMAP5910 Erratum SYS_DMA_1, bit DMACK_REQ (bit 8)
887 * of the ARM_IDLECT2 register must be set to zero. The power-on
888 * default value of this bit is one.
890 omap_writew(0x0000, ARM_IDLECT2
); /* Turn LCD clock off also */
893 * Only enable those clocks we will need, let the drivers
894 * enable other clocks as necessary
896 clk_enable(&armper_ck
.clk
);
897 clk_enable(&armxor_ck
.clk
);
898 clk_enable(&armtim_ck
.clk
); /* This should be done by timer code */
900 if (cpu_is_omap15xx())
901 clk_enable(&arm_gpio_ck
);
906 #define OMAP1_DPLL1_SANE_VALUE 60000000
908 void __init
omap1_clk_late_init(void)
910 unsigned long rate
= ck_dpll1
.rate
;
912 /* Find the highest supported frequency and enable it */
913 if (omap1_select_table_rate(&virtual_ck_mpu
, ~0)) {
914 pr_err("System frequencies not set, using default. Check your config.\n");
916 * Reprogramming the DPLL is tricky, it must be done from SRAM.
918 omap_sram_reprogram_clock(0x2290, 0x0005);
919 ck_dpll1
.rate
= OMAP1_DPLL1_SANE_VALUE
;
921 propagate_rate(&ck_dpll1
);
923 loops_per_jiffy
= cpufreq_scale(loops_per_jiffy
, rate
, ck_dpll1
.rate
);