2 * linux/arch/arm/mach-pxa/clock-pxa3xx.c
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/module.h>
10 #include <linux/kernel.h>
11 #include <linux/init.h>
14 #include <mach/smemc.h>
15 #include <mach/pxa3xx-regs.h>
19 /* Crystal clock: 13MHz */
20 #define BASE_CLK 13000000
22 /* Ring Oscillator Clock: 60MHz */
23 #define RO_CLK 60000000
25 #define ACCR_D0CS (1 << 26)
26 #define ACCR_PCCE (1 << 11)
28 /* crystal frequency to HSIO bus frequency multiplier (HSS) */
29 static unsigned char hss_mult
[4] = { 8, 12, 16, 24 };
32 * Get the clock frequency as reflected by CCSR and the turbo flag.
33 * We assume these values have been applied via a fcs.
34 * If info is not 0 we also display the current settings.
36 unsigned int pxa3xx_get_clk_frequency_khz(int info
)
38 unsigned long acsr
, xclkcfg
;
39 unsigned int t
, xl
, xn
, hss
, ro
, XL
, XN
, CLK
, HSS
;
41 /* Read XCLKCFG register turbo bit */
42 __asm__
__volatile__("mrc\tp14, 0, %0, c6, c0, 0" : "=r"(xclkcfg
));
48 xn
= (acsr
>> 8) & 0x7;
49 hss
= (acsr
>> 14) & 0x3;
54 ro
= acsr
& ACCR_D0CS
;
56 CLK
= (ro
) ? RO_CLK
: ((t
) ? XN
: XL
);
57 HSS
= (ro
) ? RO_CLK
: hss_mult
[hss
] * BASE_CLK
;
60 pr_info("RO Mode clock: %d.%02dMHz (%sactive)\n",
61 RO_CLK
/ 1000000, (RO_CLK
% 1000000) / 10000,
63 pr_info("Run Mode clock: %d.%02dMHz (*%d)\n",
64 XL
/ 1000000, (XL
% 1000000) / 10000, xl
);
65 pr_info("Turbo Mode clock: %d.%02dMHz (*%d, %sactive)\n",
66 XN
/ 1000000, (XN
% 1000000) / 10000, xn
,
68 pr_info("HSIO bus clock: %d.%02dMHz\n",
69 HSS
/ 1000000, (HSS
% 1000000) / 10000);
76 * Return the current AC97 clock frequency.
78 static unsigned long clk_pxa3xx_ac97_getrate(struct clk
*clk
)
80 unsigned long rate
= 312000000;
81 unsigned long ac97_div
;
85 /* This may loose precision for some rates but won't for the
88 rate
/= (ac97_div
>> 12) & 0x7fff;
89 rate
*= (ac97_div
& 0xfff);
95 * Return the current HSIO bus clock frequency
97 static unsigned long clk_pxa3xx_hsio_getrate(struct clk
*clk
)
100 unsigned int hss
, hsio_clk
;
104 hss
= (acsr
>> 14) & 0x3;
105 hsio_clk
= (acsr
& ACCR_D0CS
) ? RO_CLK
: hss_mult
[hss
] * BASE_CLK
;
110 /* crystal frequency to static memory controller multiplier (SMCFS) */
111 static unsigned int smcfs_mult
[8] = { 6, 0, 8, 0, 0, 16, };
112 static unsigned int df_clkdiv
[4] = { 1, 2, 4, 1 };
114 static unsigned long clk_pxa3xx_smemc_getrate(struct clk
*clk
)
116 unsigned long acsr
= ACSR
;
117 unsigned long memclkcfg
= __raw_readl(MEMCLKCFG
);
119 return BASE_CLK
* smcfs_mult
[(acsr
>> 23) & 0x7] /
120 df_clkdiv
[(memclkcfg
>> 16) & 0x3];
123 void clk_pxa3xx_cken_enable(struct clk
*clk
)
125 unsigned long mask
= 1ul << (clk
->cken
& 0x1f);
133 void clk_pxa3xx_cken_disable(struct clk
*clk
)
135 unsigned long mask
= 1ul << (clk
->cken
& 0x1f);
143 const struct clkops clk_pxa3xx_cken_ops
= {
144 .enable
= clk_pxa3xx_cken_enable
,
145 .disable
= clk_pxa3xx_cken_disable
,
148 const struct clkops clk_pxa3xx_hsio_ops
= {
149 .enable
= clk_pxa3xx_cken_enable
,
150 .disable
= clk_pxa3xx_cken_disable
,
151 .getrate
= clk_pxa3xx_hsio_getrate
,
154 const struct clkops clk_pxa3xx_ac97_ops
= {
155 .enable
= clk_pxa3xx_cken_enable
,
156 .disable
= clk_pxa3xx_cken_disable
,
157 .getrate
= clk_pxa3xx_ac97_getrate
,
160 const struct clkops clk_pxa3xx_smemc_ops
= {
161 .enable
= clk_pxa3xx_cken_enable
,
162 .disable
= clk_pxa3xx_cken_disable
,
163 .getrate
= clk_pxa3xx_smemc_getrate
,
166 static void clk_pout_enable(struct clk
*clk
)
171 static void clk_pout_disable(struct clk
*clk
)
176 const struct clkops clk_pxa3xx_pout_ops
= {
177 .enable
= clk_pout_enable
,
178 .disable
= clk_pout_disable
,
182 static uint32_t cken
[2];
183 static uint32_t accr
;
185 static int pxa3xx_clock_suspend(struct sys_device
*d
, pm_message_t state
)
193 static int pxa3xx_clock_resume(struct sys_device
*d
)
201 #define pxa3xx_clock_suspend NULL
202 #define pxa3xx_clock_resume NULL
205 struct sysdev_class pxa3xx_clock_sysclass
= {
206 .name
= "pxa3xx-clock",
207 .suspend
= pxa3xx_clock_suspend
,
208 .resume
= pxa3xx_clock_resume
,
211 static int __init
pxa3xx_clock_init(void)
213 if (cpu_is_pxa3xx() || cpu_is_pxa95x())
214 return sysdev_class_register(&pxa3xx_clock_sysclass
);
217 postcore_initcall(pxa3xx_clock_init
);