2 * cpu.c: clock scaling for the iMX
4 * Copyright (C) 2000 2001, The Delft University of Technology
5 * Copyright (c) 2004 Sascha Hauer <sascha@saschahauer.de>
6 * Copyright (C) 2006 Inky Lung <ilung@cwlinux.com>
7 * Copyright (C) 2006 Pavel Pisa, PiKRON <ppisa@pikron.com>
9 * Based on SA1100 version written by:
10 * - Johan Pouwelse (J.A.Pouwelse@its.tudelft.nl): initial version
11 * - Erik Mouw (J.A.K.Mouw@its.tudelft.nl):
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <linux/kernel.h>
32 #include <linux/types.h>
33 #include <linux/init.h>
34 #include <linux/cpufreq.h>
35 #include <asm/system.h>
37 #include <asm/hardware.h>
42 #define __val2mfld(mask,val) (((mask)&~((mask)<<1))*(val)&(mask))
45 #define __mfld2val(mask,val) (((val)&(mask))/((mask)&~((mask)<<1)))
48 #define CR_920T_CLOCK_MODE 0xC0000000
49 #define CR_920T_FASTBUS_MODE 0x00000000
50 #define CR_920T_ASYNC_MODE 0xC0000000
52 static u32 mpctl0_at_boot
;
53 static u32 bclk_div_at_boot
;
55 static void imx_set_async_mode(void)
57 adjust_cr(CR_920T_CLOCK_MODE
, CR_920T_ASYNC_MODE
);
60 static void imx_set_fastbus_mode(void)
62 adjust_cr(CR_920T_CLOCK_MODE
, CR_920T_FASTBUS_MODE
);
65 static void imx_set_mpctl0(u32 mpctl0
)
70 local_irq_save(flags
);
72 local_irq_restore(flags
);
76 local_irq_save(flags
);
79 local_irq_restore(flags
);
83 * imx_compute_mpctl - compute new PLL parameters
84 * @new_mpctl: pointer to location assigned by new PLL control register value
85 * @cur_mpctl: current PLL control register parameters
86 * @f_ref: reference source frequency Hz
87 * @freq: required frequency in Hz
88 * @relation: is one of %CPUFREQ_RELATION_L (supremum)
89 * and %CPUFREQ_RELATION_H (infimum)
91 long imx_compute_mpctl(u32
*new_mpctl
, u32 cur_mpctl
, u32 f_ref
, unsigned long freq
, int relation
)
97 unsigned long long ll
;
101 /* Fdppl=2*Fref*(MFI+MFN/(MFD+1))/(PD+1) */
102 /* PD=<0,15>, MFD=<1,1023>, MFI=<5,15> MFN=<0,1022> */
105 mfd
= ((cur_mpctl
>> 16) & 0x3ff) + 1;
106 pd
= ((cur_mpctl
>> 26) & 0xf) + 1;
111 /* pd=2; mfd=313; mfi=8; mfn=183; */
112 /* (MFI+MFN/(MFD)) = Fdppl / (2*Fref) * (PD); */
114 quot
= (f_ref
+ (1 << 9)) >> 10;
115 l
= (freq
* pd
+ quot
) / (2 * quot
);
117 mfn
= ((l
& ((1 << 10) - 1)) * mfd
+ (1 << 9)) >> 10;
122 *new_mpctl
= ((mfi
& 0xf) << 10) | (mfn
& 0x3ff) | ((mfd
& 0x3ff) << 16)
123 | ((pd
& 0xf) << 26);
125 ll
= 2 * (unsigned long long)f_ref
* ( (mfi
<<16) + (mfn
<<16) / (mfd
+1) );
126 quot
= (pd
+1) * (1<<16);
131 pr_debug(KERN_DEBUG
"imx: new PLL parameters pd=%d mfd=%d mfi=%d mfn=%d, freq=%ld\n",
132 pd
, mfd
, mfi
, mfn
, freq
);
138 static int imx_verify_speed(struct cpufreq_policy
*policy
)
140 if (policy
->cpu
!= 0)
143 cpufreq_verify_within_limits(policy
, policy
->cpuinfo
.min_freq
, policy
->cpuinfo
.max_freq
);
148 static unsigned int imx_get_speed(unsigned int cpu
)
153 unsigned int bclk_div
;
159 bclk_div
= __mfld2val(CSCR_BCLK_DIV
, cscr
) + 1;
162 if((cr
& CR_920T_CLOCK_MODE
) == CR_920T_FASTBUS_MODE
) {
163 freq
= imx_get_system_clk();
164 freq
= (freq
+ bclk_div
/2) / bclk_div
;
166 freq
= imx_get_mcu_clk();
167 if (cscr
& CSCR_MPU_PRESC
)
171 freq
= (freq
+ 500) / 1000;
176 static int imx_set_target(struct cpufreq_policy
*policy
,
177 unsigned int target_freq
,
178 unsigned int relation
)
180 struct cpufreq_freqs freqs
;
186 unsigned int bclk_div
= bclk_div_at_boot
;
189 * Some governors do not respects CPU and policy lower limits
190 * which leads to bad things (division by zero etc), ensure
191 * that such things do not happen.
193 if(target_freq
< policy
->cpuinfo
.min_freq
)
194 target_freq
= policy
->cpuinfo
.min_freq
;
196 if(target_freq
< policy
->min
)
197 target_freq
= policy
->min
;
199 freq
= target_freq
* 1000;
201 pr_debug(KERN_DEBUG
"imx: requested frequency %ld Hz, mpctl0 at boot 0x%08x\n",
202 freq
, mpctl0_at_boot
);
204 sysclk
= imx_get_system_clk();
206 if (freq
> sysclk
/ bclk_div_at_boot
+ 1000000) {
207 freq
= imx_compute_mpctl(&mpctl0
, mpctl0_at_boot
, CLK32
* 512, freq
, relation
);
209 printk(KERN_WARNING
"imx: target frequency %ld Hz cannot be set\n", freq
);
213 if(freq
+ 1000 < sysclk
) {
214 if (relation
== CPUFREQ_RELATION_L
)
215 bclk_div
= (sysclk
- 1000) / freq
;
217 bclk_div
= (sysclk
+ freq
+ 1000) / freq
;
221 if(bclk_div
< bclk_div_at_boot
)
222 bclk_div
= bclk_div_at_boot
;
224 freq
= (sysclk
+ bclk_div
/ 2) / bclk_div
;
227 freqs
.old
= imx_get_speed(0);
228 freqs
.new = (freq
+ 500) / 1000;
232 cpufreq_notify_transition(&freqs
, CPUFREQ_PRECHANGE
);
234 local_irq_save(flags
);
236 imx_set_fastbus_mode();
238 imx_set_mpctl0(mpctl0
);
241 cscr
&= ~CSCR_BCLK_DIV
;
242 cscr
|= __val2mfld(CSCR_BCLK_DIV
, bclk_div
- 1);
246 CSCR
|= CSCR_MPLL_RESTART
;
248 /* Wait until MPLL is stabilized */
249 while( CSCR
& CSCR_MPLL_RESTART
);
251 imx_set_async_mode();
254 local_irq_restore(flags
);
256 cpufreq_notify_transition(&freqs
, CPUFREQ_POSTCHANGE
);
258 pr_debug(KERN_INFO
"imx: set frequency %ld Hz, running from %s\n",
259 freq
, mpctl0
? "MPLL": "SPLL");
264 static int __init
imx_cpufreq_driver_init(struct cpufreq_policy
*policy
)
266 printk(KERN_INFO
"i.MX cpu freq change driver v1.0\n");
268 if (policy
->cpu
!= 0)
271 policy
->cur
= policy
->min
= policy
->max
= imx_get_speed(0);
272 policy
->cpuinfo
.min_freq
= 8000;
273 policy
->cpuinfo
.max_freq
= 200000;
274 /* Manual states, that PLL stabilizes in two CLK32 periods */
275 policy
->cpuinfo
.transition_latency
= 4 * 1000000000LL / CLK32
;
279 static struct cpufreq_driver imx_driver
= {
280 .flags
= CPUFREQ_STICKY
,
281 .verify
= imx_verify_speed
,
282 .target
= imx_set_target
,
283 .get
= imx_get_speed
,
284 .init
= imx_cpufreq_driver_init
,
288 static int __init
imx_cpufreq_init(void)
290 bclk_div_at_boot
= __mfld2val(CSCR_BCLK_DIV
, CSCR
) + 1;
293 if((CSCR
& CSCR_MPEN
) &&
294 ((get_cr() & CR_920T_CLOCK_MODE
) != CR_920T_FASTBUS_MODE
))
295 mpctl0_at_boot
= MPCTL0
;
297 return cpufreq_register_driver(&imx_driver
);
300 arch_initcall(imx_cpufreq_init
);