2 * clock scaling for the UniCore-II
4 * Code specific to PKUnity SoC and UniCore ISA
6 * Maintained by GUAN Xue-tao <gxt@mprc.pku.edu.cn>
7 * Copyright (C) 2001-2010 Guan Xuetao
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/err.h>
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/init.h>
18 #include <linux/clk.h>
19 #include <linux/cpufreq.h>
21 #include <mach/hardware.h>
23 static struct cpufreq_driver ucv2_driver;
25 /* make sure that only the "userspace" governor is run
26 * -- anything else wouldn't make sense on this platform, anyway.
28 static int ucv2_verify_speed(struct cpufreq_policy *policy)
33 cpufreq_verify_within_cpu_limits(policy);
37 static int ucv2_target(struct cpufreq_policy *policy,
38 unsigned int target_freq,
39 unsigned int relation)
41 struct cpufreq_freqs freqs;
44 freqs.old = policy->cur;
45 freqs.new = target_freq;
47 cpufreq_freq_transition_begin(policy, &freqs);
48 ret = clk_set_rate(policy->clk, target_freq * 1000);
49 cpufreq_freq_transition_end(policy, &freqs, ret);
54 static int __init ucv2_cpu_init(struct cpufreq_policy *policy)
59 policy->min = policy->cpuinfo.min_freq = 250000;
60 policy->max = policy->cpuinfo.max_freq = 1000000;
61 policy->clk = clk_get(NULL, "MAIN_CLK");
62 return PTR_ERR_OR_ZERO(policy->clk);
65 static struct cpufreq_driver ucv2_driver = {
66 .flags = CPUFREQ_STICKY | CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING,
67 .verify = ucv2_verify_speed,
68 .target = ucv2_target,
69 .get = cpufreq_generic_get,
70 .init = ucv2_cpu_init,
74 static int __init ucv2_cpufreq_init(void)
76 return cpufreq_register_driver(&ucv2_driver);
79 arch_initcall(ucv2_cpufreq_init);