rk3188: new cpufreq driver

This commit is contained in:
黄涛
2013-01-30 18:10:47 +08:00
parent 4d883d946d
commit 97faa43b5e
2 changed files with 541 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ obj-y += rk_timer.o
obj-$(CONFIG_SMP) += ../mach-rk30/platsmp.o ../mach-rk30/headsmp.o
obj-$(CONFIG_HOTPLUG_CPU) += ../mach-rk30/hotplug.o
obj-$(CONFIG_CPU_IDLE) += ../mach-rk30/cpuidle.o
obj-$(CONFIG_CPU_FREQ) += ../mach-rk30/cpufreq.o
obj-$(CONFIG_CPU_FREQ) += cpufreq.o
obj-$(CONFIG_DVFS) += dvfs.o
obj-$(CONFIG_MACH_RK3188_FPGA) += board-rk3188-fpga.o

View File

@@ -0,0 +1,540 @@
/*
* Copyright (C) 2013 ROCKCHIP, Inc.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
//#define DEBUG 1
#define pr_fmt(fmt) "cpufreq: " fmt
#include <linux/clk.h>
#include <linux/cpu.h>
#include <linux/cpufreq.h>
#include <linux/err.h>
#include <linux/kernel_stat.h>
#include <linux/init.h>
#include <linux/reboot.h>
#include <linux/suspend.h>
#include <linux/tick.h>
#include <linux/workqueue.h>
#include <linux/delay.h>
#include <linux/regulator/consumer.h>
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/earlysuspend.h>
#include <asm/smp_plat.h>
#include <asm/cpu.h>
#include <asm/unistd.h>
#include <asm/uaccess.h>
#include <mach/cpu.h>
#include <mach/ddr.h>
#include <mach/dvfs.h>
#define VERSION "1.0"
#ifdef DEBUG
#define FREQ_DBG(fmt, args...) pr_debug(fmt, ## args)
#define FREQ_LOG(fmt, args...) pr_debug(fmt, ## args)
#else
#define FREQ_DBG(fmt, args...) do {} while(0)
#define FREQ_LOG(fmt, args...) do {} while(0)
#endif
#define FREQ_ERR(fmt, args...) pr_err(fmt, ## args)
/* Frequency table index must be sequential starting at 0 */
static struct cpufreq_frequency_table default_freq_table[] = {
{.frequency = 816 * 1000, .index = 1000 * 1000},
{.frequency = CPUFREQ_TABLE_END},
};
static struct cpufreq_frequency_table *freq_table = default_freq_table;
/*********************************************************/
/* additional symantics for "relation" in cpufreq with pm */
#define DISABLE_FURTHER_CPUFREQ 0x10
#define ENABLE_FURTHER_CPUFREQ 0x20
#define MASK_FURTHER_CPUFREQ 0x30
/* With 0x00(NOCHANGE), it depends on the previous "further" status */
#define CPUFREQ_PRIVATE 0x100
static int no_cpufreq_access;
static unsigned int suspend_freq = 816 * 1000;
static struct workqueue_struct *freq_wq;
static struct clk *cpu_clk;
static DEFINE_MUTEX(cpufreq_mutex);
static struct clk *gpu_clk;
static struct clk *ddr_clk;
#define GPU_MAX_RATE 350*1000*1000
static int cpufreq_scale_rate_for_dvfs(struct clk *clk, unsigned long rate, dvfs_set_rate_callback set_rate);
/*******************************************************/
static unsigned int rk3188_cpufreq_get(unsigned int cpu)
{
unsigned long freq;
if (cpu >= NR_CPUS)
return 0;
freq = clk_get_rate(cpu_clk) / 1000;
return freq;
}
static bool cpufreq_is_ondemand(struct cpufreq_policy *policy)
{
char c = 0;
if (policy && policy->governor)
c = policy->governor->name[0];
return (c == 'o' || c == 'i' || c == 'c' || c == 'h');
}
/**********************thermal limit**************************/
#define CONFIG_RK30_CPU_FREQ_LIMIT_BY_TEMP
#ifdef CONFIG_RK30_CPU_FREQ_LIMIT_BY_TEMP
static unsigned int temp_limt_freq = -1;
module_param(temp_limt_freq, uint, 0444);
static const struct cpufreq_frequency_table temp_limits[] = {
{.frequency = 1608 * 1000, .index = 50},
{.frequency = 1416 * 1000, .index = 55},
{.frequency = 1200 * 1000, .index = 60},
{.frequency = 1008 * 1000, .index = 75},
};
static const struct cpufreq_frequency_table temp_limits_high[] = {
{.frequency = 1008 * 1000, .index = 100},
};
static const struct cpufreq_frequency_table temp_limits_high2[] = {
{.frequency = 1008 * 1000, .index = 0},
};
static int rk3188_get_temp(void)
{
msleep(20);
return 60;
}
static void rk3188_cpufreq_temp_limit_work_func(struct work_struct *work)
{
struct cpufreq_policy *policy;
int temp, i;
unsigned int new = -1;
unsigned long delay = HZ;
const struct cpufreq_frequency_table *limits_table = temp_limits;
size_t limits_size = ARRAY_SIZE(temp_limits);
unsigned int gpu_irqs[2];
gpu_irqs[0] = kstat_irqs(IRQ_GPU_GP);
temp = rk3188_get_temp();
gpu_irqs[1] = kstat_irqs(IRQ_GPU_GP);
if (clk_get_rate(gpu_clk) > GPU_MAX_RATE) {
delay = HZ / 20;
if ((gpu_irqs[1] - gpu_irqs[0]) < 3) {
limits_table = temp_limits_high;
limits_size = ARRAY_SIZE(temp_limits_high);
} else {
limits_table = temp_limits_high2;
limits_size = ARRAY_SIZE(temp_limits_high2);
}
}
for (i = 0; i < limits_size; i++) {
if (temp >= limits_table[i].index) {
new = limits_table[i].frequency;
}
}
if (temp_limt_freq != new) {
temp_limt_freq = new;
FREQ_DBG("temp_limit set rate %d kHz\n", temp_limt_freq);
policy = cpufreq_cpu_get(0);
cpufreq_driver_target(policy, policy->cur, CPUFREQ_RELATION_L | CPUFREQ_PRIVATE);
cpufreq_cpu_put(policy);
}
queue_delayed_work_on(0, freq_wq, to_delayed_work(work), delay);
}
static DECLARE_DELAYED_WORK(rk3188_cpufreq_temp_limit_work, rk3188_cpufreq_temp_limit_work_func);
static int rk3188_cpufreq_notifier_policy(struct notifier_block *nb, unsigned long val, void *data)
{
struct cpufreq_policy *policy = data;
if (val != CPUFREQ_NOTIFY)
return 0;
if (cpufreq_is_ondemand(policy)) {
FREQ_DBG("queue work\n");
queue_delayed_work_on(0, freq_wq, &rk3188_cpufreq_temp_limit_work, 0);
} else {
FREQ_DBG("cancel work\n");
cancel_delayed_work_sync(&rk3188_cpufreq_temp_limit_work);
}
return 0;
}
static struct notifier_block notifier_policy_block = {
.notifier_call = rk3188_cpufreq_notifier_policy
};
#endif
/************************************dvfs tst************************************/
//#define CPU_FREQ_DVFS_TST
#ifdef CPU_FREQ_DVFS_TST
static unsigned int freq_dvfs_tst_rate;
static int test_count;
#define TEST_FRE_NUM 11
static int test_tlb_rate[TEST_FRE_NUM] = { 504, 1008, 504, 1200, 252, 816, 1416, 252, 1512, 252, 816 };
//static int test_tlb_rate[TEST_FRE_NUM]={504,1008,504,1200,252,816,1416,126,1512,126,816};
#define TEST_GPU_NUM 3
static int test_tlb_gpu[TEST_GPU_NUM] = { 360, 400, 180 };
static int test_tlb_ddr[TEST_GPU_NUM] = { 401, 200, 500 };
static int gpu_ddr = 0;
static void rk3188_cpufreq_dvsf_tst_work_func(struct work_struct *work)
{
struct cpufreq_policy *policy = cpufreq_cpu_get(0);
gpu_ddr++;
#if 0
FREQ_LOG("cpufreq_dvsf_tst,ddr%u,gpu%u\n",
test_tlb_ddr[gpu_ddr % TEST_GPU_NUM],
test_tlb_gpu[gpu_ddr % TEST_GPU_NUM]);
clk_set_rate(ddr_clk, test_tlb_ddr[gpu_ddr % TEST_GPU_NUM] * 1000 * 1000);
clk_set_rate(gpu_clk, test_tlb_gpu[gpu_ddr % TEST_GPU_NUM] * 1000 * 1000);
#endif
test_count++;
freq_dvfs_tst_rate = test_tlb_rate[test_count % TEST_FRE_NUM] * 1000;
FREQ_LOG("cpufreq_dvsf_tst,cpu set rate %d\n", freq_dvfs_tst_rate);
cpufreq_driver_target(policy, policy->cur, CPUFREQ_RELATION_L);
cpufreq_cpu_put(policy);
queue_delayed_work_on(0, freq_wq, to_delayed_work(work), msecs_to_jiffies(1000));
}
static DECLARE_DELAYED_WORK(rk3188_cpufreq_dvsf_tst_work, rk3188_cpufreq_dvsf_tst_work_func);
#endif /* CPU_FREQ_DVFS_TST */
/***********************************************************************/
static int rk3188_cpufreq_verify(struct cpufreq_policy *policy)
{
if (!freq_table)
return -EINVAL;
return cpufreq_frequency_table_verify(policy, freq_table);
}
static int rk3188_cpufreq_init_cpu0(struct cpufreq_policy *policy)
{
gpu_clk = clk_get(NULL, "gpu");
if (!IS_ERR(gpu_clk)) {
clk_enable_dvfs(gpu_clk);
if (cpu_is_rk3188())
dvfs_clk_enable_limit(gpu_clk, 133000000, 600000000);
}
ddr_clk = clk_get(NULL, "ddr");
if (!IS_ERR(ddr_clk))
clk_enable_dvfs(ddr_clk);
cpu_clk = clk_get(NULL, "cpu");
if (IS_ERR(cpu_clk))
return PTR_ERR(cpu_clk);
dvfs_clk_register_set_rate_callback(cpu_clk, cpufreq_scale_rate_for_dvfs);
freq_table = dvfs_get_freq_volt_table(cpu_clk);
if (freq_table == NULL) {
freq_table = default_freq_table;
} else {
int v = INT_MAX, i;
for (i = 0; freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
if (freq_table[i].index >= 1000000 && v > freq_table[i].index) {
suspend_freq = freq_table[i].frequency;
v = freq_table[i].index;
}
}
}
clk_enable_dvfs(cpu_clk);
freq_wq = alloc_workqueue("rk3188_cpufreqd", WQ_NON_REENTRANT | WQ_MEM_RECLAIM | WQ_HIGHPRI | WQ_FREEZABLE, 1);
#ifdef CONFIG_RK30_CPU_FREQ_LIMIT_BY_TEMP
if (cpufreq_is_ondemand(policy)) {
queue_delayed_work_on(0, freq_wq, &rk3188_cpufreq_temp_limit_work, 0*HZ);
}
cpufreq_register_notifier(&notifier_policy_block, CPUFREQ_POLICY_NOTIFIER);
#endif
#ifdef CPU_FREQ_DVFS_TST
queue_delayed_work(freq_wq, &rk3188_cpufreq_dvsf_tst_work, msecs_to_jiffies(20 * 1000));
#endif
printk("rk3188 cpufreq version " VERSION ", suspend freq %d MHz\n", suspend_freq / 1000);
return 0;
}
static int rk3188_cpufreq_init(struct cpufreq_policy *policy)
{
if (policy->cpu == 0) {
int err = rk3188_cpufreq_init_cpu0(policy);
if (err)
return err;
}
//set freq min max
cpufreq_frequency_table_cpuinfo(policy, freq_table);
//sys nod
cpufreq_frequency_table_get_attr(freq_table, policy->cpu);
policy->cur = rk3188_cpufreq_get(0);
policy->cpuinfo.transition_latency = 40 * NSEC_PER_USEC; // make ondemand default sampling_rate to 40000
/*
* On SMP configuartion, both processors share the voltage
* and clock. So both CPUs needs to be scaled together and hence
* needs software co-ordination. Use cpufreq affected_cpus
* interface to handle this scenario. Additional is_smp() check
* is to keep SMP_ON_UP build working.
*/
if (is_smp())
cpumask_setall(policy->cpus);
return 0;
}
static int rk3188_cpufreq_exit(struct cpufreq_policy *policy)
{
if (policy->cpu != 0)
return 0;
cpufreq_frequency_table_cpuinfo(policy, freq_table);
clk_put(cpu_clk);
#ifdef CONFIG_RK30_CPU_FREQ_LIMIT_BY_TEMP
cpufreq_unregister_notifier(&notifier_policy_block, CPUFREQ_POLICY_NOTIFIER);
if (freq_wq)
cancel_delayed_work(&rk3188_cpufreq_temp_limit_work);
#endif
if (freq_wq) {
flush_workqueue(freq_wq);
destroy_workqueue(freq_wq);
freq_wq = NULL;
}
return 0;
}
static struct freq_attr *rk3188_cpufreq_attr[] = {
&cpufreq_freq_attr_scaling_available_freqs,
NULL,
};
static unsigned int cpufreq_scale_limt(unsigned int target_freq, struct cpufreq_policy *policy, bool is_private)
{
bool is_ondemand = cpufreq_is_ondemand(policy);
#ifdef CPU_FREQ_DVFS_TST
if (freq_dvfs_tst_rate) {
target_freq = freq_dvfs_tst_rate;
freq_dvfs_tst_rate = 0;
return target_freq;
}
#endif
if (!is_ondemand)
return target_freq;
#ifdef CONFIG_RK30_CPU_FREQ_LIMIT_BY_TEMP
{
static unsigned int ondemand_target = 816 * 1000;
if (is_private)
target_freq = ondemand_target;
else
ondemand_target = target_freq;
}
/*
* If the new frequency is more than the thermal max allowed
* frequency, go ahead and scale the mpu device to proper frequency.
*/
target_freq = min(target_freq, temp_limt_freq);
#endif
return target_freq;
}
static int cpufreq_scale_rate_for_dvfs(struct clk *clk, unsigned long rate, dvfs_set_rate_callback set_rate)
{
unsigned int i;
int ret;
struct cpufreq_freqs freqs;
freqs.new = rate / 1000;
freqs.old = clk_get_rate(clk) / 1000;
for_each_online_cpu(freqs.cpu) {
cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
}
FREQ_DBG("cpufreq_scale_rate_for_dvfs(%lu)\n", rate);
ret = set_rate(clk, rate);
#ifdef CONFIG_SMP
/*
* Note that loops_per_jiffy is not updated on SMP systems in
* cpufreq driver. So, update the per-CPU loops_per_jiffy value
* on frequency transition. We need to update all dependent CPUs.
*/
for_each_possible_cpu(i) {
per_cpu(cpu_data, i).loops_per_jiffy = loops_per_jiffy;
}
#endif
freqs.new = clk_get_rate(clk) / 1000;
/* notifiers */
for_each_online_cpu(freqs.cpu) {
cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
}
return ret;
}
static int rk3188_cpufreq_target(struct cpufreq_policy *policy, unsigned int target_freq, unsigned int relation)
{
unsigned int i, new_freq, new_rate, cur_rate;
int ret = 0;
bool is_private;
if (!freq_table) {
FREQ_ERR("no freq table!\n");
return -EINVAL;
}
mutex_lock(&cpufreq_mutex);
is_private = relation & CPUFREQ_PRIVATE;
relation &= ~CPUFREQ_PRIVATE;
if (relation & ENABLE_FURTHER_CPUFREQ)
no_cpufreq_access--;
if (no_cpufreq_access) {
FREQ_LOG("denied access to %s as it is disabled temporarily\n", __func__);
ret = -EINVAL;
goto out;
}
if (relation & DISABLE_FURTHER_CPUFREQ)
no_cpufreq_access++;
relation &= ~MASK_FURTHER_CPUFREQ;
ret = cpufreq_frequency_table_target(policy, freq_table, target_freq, relation, &i);
if (ret) {
FREQ_ERR("no freq match for %d(ret=%d)\n", target_freq, ret);
goto out;
}
new_freq = freq_table[i].frequency;
if (!no_cpufreq_access)
new_freq = cpufreq_scale_limt(new_freq, policy, is_private);
new_rate = new_freq * 1000;
cur_rate = clk_get_rate(cpu_clk);
FREQ_LOG("req = %u new = %u (was = %u)\n", target_freq, new_freq, cur_rate / 1000);
if (new_rate == cur_rate)
goto out;
ret = clk_set_rate(cpu_clk, new_rate);
out:
FREQ_DBG("set freq (%u) end\n", new_freq);
mutex_unlock(&cpufreq_mutex);
return ret;
}
static int rk3188_cpufreq_pm_notifier_event(struct notifier_block *this, unsigned long event, void *ptr)
{
int ret = NOTIFY_DONE;
struct cpufreq_policy *policy = cpufreq_cpu_get(0);
if (!policy)
return ret;
if (!cpufreq_is_ondemand(policy))
goto out;
switch (event) {
case PM_SUSPEND_PREPARE:
ret = cpufreq_driver_target(policy, suspend_freq, DISABLE_FURTHER_CPUFREQ | CPUFREQ_RELATION_H);
if (ret < 0) {
ret = NOTIFY_BAD;
goto out;
}
ret = NOTIFY_OK;
break;
case PM_POST_RESTORE:
case PM_POST_SUSPEND:
cpufreq_driver_target(policy, suspend_freq, ENABLE_FURTHER_CPUFREQ | CPUFREQ_RELATION_H);
ret = NOTIFY_OK;
break;
}
out:
cpufreq_cpu_put(policy);
return ret;
}
static struct notifier_block rk3188_cpufreq_pm_notifier = {
.notifier_call = rk3188_cpufreq_pm_notifier_event,
};
static int rk3188_cpufreq_reboot_notifier_event(struct notifier_block *this, unsigned long event, void *ptr)
{
struct cpufreq_policy *policy = cpufreq_cpu_get(0);
if (policy) {
cpufreq_driver_target(policy, suspend_freq, DISABLE_FURTHER_CPUFREQ | CPUFREQ_RELATION_H);
cpufreq_cpu_put(policy);
}
return NOTIFY_OK;
}
static struct notifier_block rk3188_cpufreq_reboot_notifier = {
.notifier_call = rk3188_cpufreq_reboot_notifier_event,
};
static struct cpufreq_driver rk3188_cpufreq_driver = {
.flags = CPUFREQ_CONST_LOOPS,
.verify = rk3188_cpufreq_verify,
.target = rk3188_cpufreq_target,
.get = rk3188_cpufreq_get,
.init = rk3188_cpufreq_init,
.exit = rk3188_cpufreq_exit,
.name = "rk3188",
.attr = rk3188_cpufreq_attr,
};
static int __init rk3188_cpufreq_driver_init(void)
{
register_pm_notifier(&rk3188_cpufreq_pm_notifier);
register_reboot_notifier(&rk3188_cpufreq_reboot_notifier);
return cpufreq_register_driver(&rk3188_cpufreq_driver);
}
static void __exit rk3188_cpufreq_driver_exit(void)
{
cpufreq_unregister_driver(&rk3188_cpufreq_driver);
}
device_initcall(rk3188_cpufreq_driver_init);
module_exit(rk3188_cpufreq_driver_exit);