1 /* linux/arch/arm/mach-s3c2412/cpu-freq.c
3 * Copyright 2008 Simtec Electronics
4 * http://armlinux.simtec.co.uk/
5 * Ben Dooks <ben@simtec.co.uk>
7 * S3C2412 CPU Frequency scalling
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/ioport.h>
18 #include <linux/cpufreq.h>
19 #include <linux/sysdev.h>
20 #include <linux/delay.h>
21 #include <linux/clk.h>
22 #include <linux/err.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach/map.h>
28 #include <mach/regs-clock.h>
29 #include <mach/regs-s3c2412-mem.h>
32 #include <plat/clock.h>
33 #include <plat/cpu-freq-core.h>
35 /* our clock resources. */
36 static struct clk
*xtal
;
37 static struct clk
*fclk
;
38 static struct clk
*hclk
;
39 static struct clk
*armclk
;
41 /* HDIV: 1, 2, 3, 4, 6, 8 */
43 static int s3c2412_cpufreq_calcdivs(struct s3c_cpufreq_config
*cfg
)
45 unsigned int hdiv
, pdiv
, armdiv
, dvs
;
46 unsigned long hclk
, fclk
, armclk
, armdiv_clk
;
47 unsigned long hclk_max
;
49 fclk
= cfg
->freq
.fclk
;
50 armclk
= cfg
->freq
.armclk
;
51 hclk_max
= cfg
->max
.hclk
;
53 /* We can't run hclk above armclk as at the best we have to
54 * have armclk and hclk in dvs mode. */
56 if (hclk_max
> armclk
)
59 s3c_freq_dbg("%s: fclk=%lu, armclk=%lu, hclk_max=%lu\n",
60 __func__
, fclk
, armclk
, hclk_max
);
61 s3c_freq_dbg("%s: want f=%lu, arm=%lu, h=%lu, p=%lu\n",
62 __func__
, cfg
->freq
.fclk
, cfg
->freq
.armclk
,
63 cfg
->freq
.hclk
, cfg
->freq
.pclk
);
65 armdiv
= fclk
/ armclk
;
72 cfg
->divs
.arm_divisor
= armdiv
;
73 armdiv_clk
= fclk
/ armdiv
;
75 hdiv
= armdiv_clk
/ hclk_max
;
79 cfg
->freq
.hclk
= hclk
= armdiv_clk
/ hdiv
;
81 /* set dvs depending on whether we reached armclk or not. */
82 cfg
->divs
.dvs
= dvs
= armclk
< armdiv_clk
;
84 /* update the actual armclk we achieved. */
85 cfg
->freq
.armclk
= dvs
? hclk
: armdiv_clk
;
87 s3c_freq_dbg("%s: armclk %lu, hclk %lu, armdiv %d, hdiv %d, dvs %d\n",
88 __func__
, armclk
, hclk
, armdiv
, hdiv
, cfg
->divs
.dvs
);
93 pdiv
= (hclk
> cfg
->max
.pclk
) ? 2 : 1;
95 if ((hclk
/ pdiv
) > cfg
->max
.pclk
)
98 cfg
->freq
.pclk
= hclk
/ pdiv
;
100 s3c_freq_dbg("%s: pdiv %d\n", __func__
, pdiv
);
107 /* store the result, and then return */
109 cfg
->divs
.h_divisor
= hdiv
* armdiv
;
110 cfg
->divs
.p_divisor
= pdiv
* armdiv
;
118 static void s3c2412_cpufreq_setdivs(struct s3c_cpufreq_config
*cfg
)
120 unsigned long clkdiv
;
121 unsigned long olddiv
;
123 olddiv
= clkdiv
= __raw_readl(S3C2410_CLKDIVN
);
125 /* clear off current clock info */
127 clkdiv
&= ~S3C2412_CLKDIVN_ARMDIVN
;
128 clkdiv
&= ~S3C2412_CLKDIVN_HDIVN_MASK
;
129 clkdiv
&= ~S3C2412_CLKDIVN_PDIVN
;
131 if (cfg
->divs
.arm_divisor
== 2)
132 clkdiv
|= S3C2412_CLKDIVN_ARMDIVN
;
134 clkdiv
|= ((cfg
->divs
.h_divisor
/ cfg
->divs
.arm_divisor
) - 1);
136 if (cfg
->divs
.p_divisor
!= cfg
->divs
.h_divisor
)
137 clkdiv
|= S3C2412_CLKDIVN_PDIVN
;
139 s3c_freq_dbg("%s: div %08lx => %08lx\n", __func__
, olddiv
, clkdiv
);
140 __raw_writel(clkdiv
, S3C2410_CLKDIVN
);
142 clk_set_parent(armclk
, cfg
->divs
.dvs
? hclk
: fclk
);
145 static void s3c2412_cpufreq_setrefresh(struct s3c_cpufreq_config
*cfg
)
147 struct s3c_cpufreq_board
*board
= cfg
->board
;
148 unsigned long refresh
;
150 s3c_freq_dbg("%s: refresh %u ns, hclk %lu\n", __func__
,
151 board
->refresh
, cfg
->freq
.hclk
);
153 /* Reduce both the refresh time (in ns) and the frequency (in MHz)
154 * by 10 each to ensure that we do not overflow 32 bit numbers. This
155 * should work for HCLK up to 133MHz and refresh period up to 30usec.
158 refresh
= (board
->refresh
/ 10);
159 refresh
*= (cfg
->freq
.hclk
/ 100);
160 refresh
/= (1 * 1000 * 1000); /* 10^6 */
162 s3c_freq_dbg("%s: setting refresh 0x%08lx\n", __func__
, refresh
);
163 __raw_writel(refresh
, S3C2412_REFRESH
);
166 /* set the default cpu frequency information, based on an 200MHz part
167 * as we have no other way of detecting the speed rating in software.
170 static struct s3c_cpufreq_info s3c2412_cpufreq_info
= {
177 .latency
= 5000000, /* 5ms */
184 .set_refresh
= s3c2412_cpufreq_setrefresh
,
185 .set_divs
= s3c2412_cpufreq_setdivs
,
186 .calc_divs
= s3c2412_cpufreq_calcdivs
,
188 .calc_iotiming
= s3c2412_iotiming_calc
,
189 .set_iotiming
= s3c2412_iotiming_set
,
190 .get_iotiming
= s3c2412_iotiming_get
,
192 .resume_clocks
= s3c2412_setup_clocks
,
194 .debug_io_show
= s3c_cpufreq_debugfs_call(s3c2412_iotiming_debugfs
),
197 static int s3c2412_cpufreq_add(struct sys_device
*sysdev
)
199 unsigned long fclk_rate
;
201 hclk
= clk_get(NULL
, "hclk");
203 printk(KERN_ERR
"%s: cannot find hclk clock\n", __func__
);
207 fclk
= clk_get(NULL
, "fclk");
209 printk(KERN_ERR
"%s: cannot find fclk clock\n", __func__
);
213 fclk_rate
= clk_get_rate(fclk
);
214 if (fclk_rate
> 200000000) {
216 "%s: fclk %ld MHz, assuming 266MHz capable part\n",
217 __func__
, fclk_rate
/ 1000000);
218 s3c2412_cpufreq_info
.max
.fclk
= 266000000;
219 s3c2412_cpufreq_info
.max
.hclk
= 133000000;
220 s3c2412_cpufreq_info
.max
.pclk
= 66000000;
223 armclk
= clk_get(NULL
, "armclk");
224 if (IS_ERR(armclk
)) {
225 printk(KERN_ERR
"%s: cannot find arm clock\n", __func__
);
229 xtal
= clk_get(NULL
, "xtal");
231 printk(KERN_ERR
"%s: cannot find xtal clock\n", __func__
);
235 return s3c_cpufreq_register(&s3c2412_cpufreq_info
);
247 static struct sysdev_driver s3c2412_cpufreq_driver
= {
248 .add
= s3c2412_cpufreq_add
,
251 static int s3c2412_cpufreq_init(void)
253 return sysdev_driver_register(&s3c2412_sysclass
,
254 &s3c2412_cpufreq_driver
);
257 arch_initcall(s3c2412_cpufreq_init
);