mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 20:21:57 +00:00
652ed95d5f
CPUFreq drivers that use clock frameworks interface,i.e. clk_get_rate(), to get CPUs clk rate, have similar sort of code used in most of them. This patch adds a generic ->get() which will do the same thing for them. All those drivers are required to now is to set .get to cpufreq_generic_get() and set their clk pointer in policy->clk during ->init(). Acked-by: Hans-Christian Egtvedt <egtvedt@samfundet.no> Acked-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
83 lines
1.9 KiB
C
83 lines
1.9 KiB
C
/*
|
|
* clock scaling for the UniCore-II
|
|
*
|
|
* Code specific to PKUnity SoC and UniCore ISA
|
|
*
|
|
* Maintained by GUAN Xue-tao <gxt@mprc.pku.edu.cn>
|
|
* Copyright (C) 2001-2010 Guan Xuetao
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/types.h>
|
|
#include <linux/init.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/cpufreq.h>
|
|
|
|
#include <mach/hardware.h>
|
|
|
|
static struct cpufreq_driver ucv2_driver;
|
|
|
|
/* make sure that only the "userspace" governor is run
|
|
* -- anything else wouldn't make sense on this platform, anyway.
|
|
*/
|
|
static int ucv2_verify_speed(struct cpufreq_policy *policy)
|
|
{
|
|
if (policy->cpu)
|
|
return -EINVAL;
|
|
|
|
cpufreq_verify_within_cpu_limits(policy);
|
|
return 0;
|
|
}
|
|
|
|
static int ucv2_target(struct cpufreq_policy *policy,
|
|
unsigned int target_freq,
|
|
unsigned int relation)
|
|
{
|
|
struct cpufreq_freqs freqs;
|
|
int ret;
|
|
|
|
freqs.old = policy->cur;
|
|
freqs.new = target_freq;
|
|
|
|
cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
|
|
ret = clk_set_rate(policy->mclk, target_freq * 1000);
|
|
cpufreq_notify_post_transition(policy, &freqs, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int __init ucv2_cpu_init(struct cpufreq_policy *policy)
|
|
{
|
|
if (policy->cpu != 0)
|
|
return -EINVAL;
|
|
|
|
policy->min = policy->cpuinfo.min_freq = 250000;
|
|
policy->max = policy->cpuinfo.max_freq = 1000000;
|
|
policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
|
|
policy->clk = clk_get(NULL, "MAIN_CLK");
|
|
if (IS_ERR(policy->clk))
|
|
return PTR_ERR(policy->clk);
|
|
return 0;
|
|
}
|
|
|
|
static struct cpufreq_driver ucv2_driver = {
|
|
.flags = CPUFREQ_STICKY,
|
|
.verify = ucv2_verify_speed,
|
|
.target = ucv2_target,
|
|
.get = cpufreq_generic_get,
|
|
.init = ucv2_cpu_init,
|
|
.name = "UniCore-II",
|
|
};
|
|
|
|
static int __init ucv2_cpufreq_init(void)
|
|
{
|
|
return cpufreq_register_driver(&ucv2_driver);
|
|
}
|
|
|
|
arch_initcall(ucv2_cpufreq_init);
|