2 * Copyright 2008 Simtec Electronics
3 * http://armlinux.simtec.co.uk/
4 * Ben Dooks <ben@simtec.co.uk>
6 * S3C2412 CPU Frequency scalling
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 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/interrupt.h>
16 #include <linux/ioport.h>
17 #include <linux/cpufreq.h>
18 #include <linux/device.h>
19 #include <linux/delay.h>
20 #include <linux/clk.h>
21 #include <linux/err.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
27 #include <mach/regs-clock.h>
28 #include <mach/s3c2412.h>
31 #include <plat/cpu-freq-core.h>
33 /* our clock resources. */
34 static struct clk
*xtal
;
35 static struct clk
*fclk
;
36 static struct clk
*hclk
;
37 static struct clk
*armclk
;
39 /* HDIV: 1, 2, 3, 4, 6, 8 */
41 static int s3c2412_cpufreq_calcdivs(struct s3c_cpufreq_config
*cfg
)
43 unsigned int hdiv
, pdiv
, armdiv
, dvs
;
44 unsigned long hclk
, fclk
, armclk
, armdiv_clk
;
45 unsigned long hclk_max
;
47 fclk
= cfg
->freq
.fclk
;
48 armclk
= cfg
->freq
.armclk
;
49 hclk_max
= cfg
->max
.hclk
;
51 /* We can't run hclk above armclk as at the best we have to
52 * have armclk and hclk in dvs mode. */
54 if (hclk_max
> armclk
)
57 s3c_freq_dbg("%s: fclk=%lu, armclk=%lu, hclk_max=%lu\n",
58 __func__
, fclk
, armclk
, hclk_max
);
59 s3c_freq_dbg("%s: want f=%lu, arm=%lu, h=%lu, p=%lu\n",
60 __func__
, cfg
->freq
.fclk
, cfg
->freq
.armclk
,
61 cfg
->freq
.hclk
, cfg
->freq
.pclk
);
63 armdiv
= fclk
/ armclk
;
70 cfg
->divs
.arm_divisor
= armdiv
;
71 armdiv_clk
= fclk
/ armdiv
;
73 hdiv
= armdiv_clk
/ hclk_max
;
77 cfg
->freq
.hclk
= hclk
= armdiv_clk
/ hdiv
;
79 /* set dvs depending on whether we reached armclk or not. */
80 cfg
->divs
.dvs
= dvs
= armclk
< armdiv_clk
;
82 /* update the actual armclk we achieved. */
83 cfg
->freq
.armclk
= dvs
? hclk
: armdiv_clk
;
85 s3c_freq_dbg("%s: armclk %lu, hclk %lu, armdiv %d, hdiv %d, dvs %d\n",
86 __func__
, armclk
, hclk
, armdiv
, hdiv
, cfg
->divs
.dvs
);
91 pdiv
= (hclk
> cfg
->max
.pclk
) ? 2 : 1;
93 if ((hclk
/ pdiv
) > cfg
->max
.pclk
)
96 cfg
->freq
.pclk
= hclk
/ pdiv
;
98 s3c_freq_dbg("%s: pdiv %d\n", __func__
, pdiv
);
105 /* store the result, and then return */
107 cfg
->divs
.h_divisor
= hdiv
* armdiv
;
108 cfg
->divs
.p_divisor
= pdiv
* armdiv
;
116 static void s3c2412_cpufreq_setdivs(struct s3c_cpufreq_config
*cfg
)
118 unsigned long clkdiv
;
119 unsigned long olddiv
;
121 olddiv
= clkdiv
= __raw_readl(S3C2410_CLKDIVN
);
123 /* clear off current clock info */
125 clkdiv
&= ~S3C2412_CLKDIVN_ARMDIVN
;
126 clkdiv
&= ~S3C2412_CLKDIVN_HDIVN_MASK
;
127 clkdiv
&= ~S3C2412_CLKDIVN_PDIVN
;
129 if (cfg
->divs
.arm_divisor
== 2)
130 clkdiv
|= S3C2412_CLKDIVN_ARMDIVN
;
132 clkdiv
|= ((cfg
->divs
.h_divisor
/ cfg
->divs
.arm_divisor
) - 1);
134 if (cfg
->divs
.p_divisor
!= cfg
->divs
.h_divisor
)
135 clkdiv
|= S3C2412_CLKDIVN_PDIVN
;
137 s3c_freq_dbg("%s: div %08lx => %08lx\n", __func__
, olddiv
, clkdiv
);
138 __raw_writel(clkdiv
, S3C2410_CLKDIVN
);
140 clk_set_parent(armclk
, cfg
->divs
.dvs
? hclk
: fclk
);
143 static void s3c2412_cpufreq_setrefresh(struct s3c_cpufreq_config
*cfg
)
145 struct s3c_cpufreq_board
*board
= cfg
->board
;
146 unsigned long refresh
;
148 s3c_freq_dbg("%s: refresh %u ns, hclk %lu\n", __func__
,
149 board
->refresh
, cfg
->freq
.hclk
);
151 /* Reduce both the refresh time (in ns) and the frequency (in MHz)
152 * by 10 each to ensure that we do not overflow 32 bit numbers. This
153 * should work for HCLK up to 133MHz and refresh period up to 30usec.
156 refresh
= (board
->refresh
/ 10);
157 refresh
*= (cfg
->freq
.hclk
/ 100);
158 refresh
/= (1 * 1000 * 1000); /* 10^6 */
160 s3c_freq_dbg("%s: setting refresh 0x%08lx\n", __func__
, refresh
);
161 __raw_writel(refresh
, S3C2412_REFRESH
);
164 /* set the default cpu frequency information, based on an 200MHz part
165 * as we have no other way of detecting the speed rating in software.
168 static struct s3c_cpufreq_info s3c2412_cpufreq_info
= {
175 .latency
= 5000000, /* 5ms */
182 .set_refresh
= s3c2412_cpufreq_setrefresh
,
183 .set_divs
= s3c2412_cpufreq_setdivs
,
184 .calc_divs
= s3c2412_cpufreq_calcdivs
,
186 .calc_iotiming
= s3c2412_iotiming_calc
,
187 .set_iotiming
= s3c2412_iotiming_set
,
188 .get_iotiming
= s3c2412_iotiming_get
,
190 .debug_io_show
= s3c_cpufreq_debugfs_call(s3c2412_iotiming_debugfs
),
193 static int s3c2412_cpufreq_add(struct device
*dev
,
194 struct subsys_interface
*sif
)
196 unsigned long fclk_rate
;
198 hclk
= clk_get(NULL
, "hclk");
200 printk(KERN_ERR
"%s: cannot find hclk clock\n", __func__
);
204 fclk
= clk_get(NULL
, "fclk");
206 printk(KERN_ERR
"%s: cannot find fclk clock\n", __func__
);
210 fclk_rate
= clk_get_rate(fclk
);
211 if (fclk_rate
> 200000000) {
213 "%s: fclk %ld MHz, assuming 266MHz capable part\n",
214 __func__
, fclk_rate
/ 1000000);
215 s3c2412_cpufreq_info
.max
.fclk
= 266000000;
216 s3c2412_cpufreq_info
.max
.hclk
= 133000000;
217 s3c2412_cpufreq_info
.max
.pclk
= 66000000;
220 armclk
= clk_get(NULL
, "armclk");
221 if (IS_ERR(armclk
)) {
222 printk(KERN_ERR
"%s: cannot find arm clock\n", __func__
);
226 xtal
= clk_get(NULL
, "xtal");
228 printk(KERN_ERR
"%s: cannot find xtal clock\n", __func__
);
232 return s3c_cpufreq_register(&s3c2412_cpufreq_info
);
244 static struct subsys_interface s3c2412_cpufreq_interface
= {
245 .name
= "s3c2412_cpufreq",
246 .subsys
= &s3c2412_subsys
,
247 .add_dev
= s3c2412_cpufreq_add
,
250 static int s3c2412_cpufreq_init(void)
252 return subsys_interface_register(&s3c2412_cpufreq_interface
);
254 arch_initcall(s3c2412_cpufreq_init
);