2 * File: arch/blackfin/mach-bf548/cpu.c
7 * Description: clock scaling for the bf54x
10 * Copyright 2004-2007 Analog Devices Inc.
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see the file COPYING, or write
26 * to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <linux/kernel.h>
31 #include <linux/types.h>
32 #include <linux/init.h>
33 #include <linux/cpufreq.h>
36 #include <asm/bfin-global.h>
38 /* CONFIG_CLKIN_HZ=25000000 */
39 #define VCO5 (CONFIG_CLKIN_HZ*45)
40 #define VCO4 (CONFIG_CLKIN_HZ*36)
41 #define VCO3 (CONFIG_CLKIN_HZ*27)
42 #define VCO2 (CONFIG_CLKIN_HZ*18)
43 #define VCO1 (CONFIG_CLKIN_HZ*9)
46 #define MFREQ(x) {VCO(x),VCO(x)/4},{VCO(x),VCO(x)/2},{VCO(x),VCO(x)}
48 static struct cpufreq_frequency_table bf548_freq_table[] = {
51 {VCO4, VCO4 / 2}, {VCO4, VCO4},
53 {0, CPUFREQ_TABLE_END},
58 * static int dpmc_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
60 static int bf548_getfreq(unsigned int cpu)
62 unsigned long cclk_mhz;
64 /* The driver only support single cpu */
66 dpmc_fops.ioctl(NULL, NULL, IOCTL_GET_CORECLOCK, &cclk_mhz);
73 static int bf548_target(struct cpufreq_policy *policy,
74 unsigned int target_freq, unsigned int relation)
76 unsigned long cclk_mhz;
77 unsigned long vco_mhz;
80 struct cpufreq_freqs freqs;
82 if (cpufreq_frequency_table_target(policy, bf548_freq_table, target_freq, relation, &index))
85 cclk_mhz = bf548_freq_table[index].frequency;
86 vco_mhz = bf548_freq_table[index].index;
88 dpmc_fops.ioctl(NULL, NULL, IOCTL_CHANGE_FREQUENCY, &vco_mhz);
89 freqs.old = bf548_getfreq(0);
93 pr_debug("cclk begin change to cclk %d,vco=%d,index=%d,target=%d,oldfreq=%d\n",
94 cclk_mhz, vco_mhz, index, target_freq, freqs.old);
96 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
97 local_irq_save(flags);
98 dpmc_fops.ioctl(NULL, NULL, IOCTL_SET_CCLK, &cclk_mhz);
99 local_irq_restore(flags);
100 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
103 cclk_mhz = get_cclk();
107 /* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on
108 * this platform, anyway.
110 static int bf548_verify_speed(struct cpufreq_policy *policy)
112 return cpufreq_frequency_table_verify(policy, &bf548_freq_table);
115 static int __init __bf548_cpu_init(struct cpufreq_policy *policy)
117 if (policy->cpu != 0)
120 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
122 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
123 /*Now ,only support one cpu */
124 policy->cur = bf548_getfreq(0);
125 cpufreq_frequency_table_get_attr(bf548_freq_table, policy->cpu);
126 return cpufreq_frequency_table_cpuinfo(policy, bf548_freq_table);
129 static struct freq_attr *bf548_freq_attr[] = {
130 &cpufreq_freq_attr_scaling_available_freqs,
134 static struct cpufreq_driver bf548_driver = {
135 .verify = bf548_verify_speed,
136 .target = bf548_target,
137 .get = bf548_getfreq,
138 .init = __bf548_cpu_init,
140 .owner = THIS_MODULE,
141 .attr = bf548_freq_attr,
144 static int __init bf548_cpu_init(void)
146 return cpufreq_register_driver(&bf548_driver);
149 static void __exit bf548_cpu_exit(void)
151 cpufreq_unregister_driver(&bf548_driver);
154 MODULE_AUTHOR("Mickael Kang");
155 MODULE_DESCRIPTION("cpufreq driver for BF548 CPU");
156 MODULE_LICENSE("GPL");
158 module_init(bf548_cpu_init);
159 module_exit(bf548_cpu_exit);