743 lines
19 KiB
C
743 lines
19 KiB
C
/* drivers/cpufreq/qcom-cpufreq.c
|
|
*
|
|
* MSM architecture cpufreq driver
|
|
*
|
|
* Copyright (C) 2007 Google, Inc.
|
|
* Copyright (c) 2007-2015, The Linux Foundation. All rights reserved.
|
|
* Author: Mike A. Chan <mikechan@google.com>
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/cpufreq.h>
|
|
#include <linux/cpu.h>
|
|
#include <linux/cpumask.h>
|
|
#include <linux/suspend.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/err.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/of.h>
|
|
#include <trace/events/power.h>
|
|
|
|
static DEFINE_MUTEX(l2bw_lock);
|
|
|
|
static struct clk *cpu_clk[NR_CPUS];
|
|
static struct clk *l2_clk;
|
|
static DEFINE_PER_CPU(struct cpufreq_frequency_table *, freq_table);
|
|
static bool hotplug_ready;
|
|
|
|
struct cpufreq_suspend_t {
|
|
struct mutex suspend_mutex;
|
|
int device_suspended;
|
|
};
|
|
|
|
static DEFINE_PER_CPU(struct cpufreq_suspend_t, suspend_data);
|
|
|
|
static int set_cpu_freq(struct cpufreq_policy *policy, unsigned int new_freq,
|
|
unsigned int index)
|
|
{
|
|
int ret = 0;
|
|
struct cpufreq_freqs freqs;
|
|
unsigned long rate;
|
|
|
|
freqs.old = policy->cur;
|
|
freqs.new = new_freq;
|
|
freqs.cpu = policy->cpu;
|
|
|
|
trace_cpu_frequency_switch_start(freqs.old, freqs.new, policy->cpu);
|
|
cpufreq_freq_transition_begin(policy, &freqs);
|
|
|
|
rate = new_freq * 1000;
|
|
rate = clk_round_rate(cpu_clk[policy->cpu], rate);
|
|
ret = clk_set_rate(cpu_clk[policy->cpu], rate);
|
|
cpufreq_freq_transition_end(policy, &freqs, ret);
|
|
if (!ret)
|
|
trace_cpu_frequency_switch_end(policy->cpu);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int msm_cpufreq_target(struct cpufreq_policy *policy,
|
|
unsigned int target_freq,
|
|
unsigned int relation)
|
|
{
|
|
int ret = 0;
|
|
int index;
|
|
struct cpufreq_frequency_table *table;
|
|
|
|
mutex_lock(&per_cpu(suspend_data, policy->cpu).suspend_mutex);
|
|
|
|
if (target_freq == policy->cur)
|
|
goto done;
|
|
|
|
if (per_cpu(suspend_data, policy->cpu).device_suspended) {
|
|
pr_debug("cpufreq: cpu%d scheduling frequency change "
|
|
"in suspend.\n", policy->cpu);
|
|
ret = -EFAULT;
|
|
goto done;
|
|
}
|
|
|
|
table = cpufreq_frequency_get_table(policy->cpu);
|
|
if (!table) {
|
|
pr_err("cpufreq: Failed to get frequency table for CPU%u\n",
|
|
policy->cpu);
|
|
ret = -ENODEV;
|
|
goto done;
|
|
}
|
|
if (cpufreq_frequency_table_target(policy, table, target_freq, relation,
|
|
&index)) {
|
|
pr_err("cpufreq: invalid target_freq: %d\n", target_freq);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
pr_debug("CPU[%d] target %d relation %d (%d-%d) selected %d\n",
|
|
policy->cpu, target_freq, relation,
|
|
policy->min, policy->max, table[index].frequency);
|
|
|
|
ret = set_cpu_freq(policy, table[index].frequency,
|
|
table[index].driver_data);
|
|
done:
|
|
mutex_unlock(&per_cpu(suspend_data, policy->cpu).suspend_mutex);
|
|
return ret;
|
|
}
|
|
|
|
#ifdef CONFIG_SEC_BSP
|
|
cpufreq_boot_limit_t cpufreq_boot_limit = {.cur_period = -1,};
|
|
|
|
static void cpufreq_verify_within_boot_limits(struct cpufreq_policy *policy)
|
|
{
|
|
u32 silver_max;
|
|
u32 gold_max;
|
|
int cur_period;
|
|
|
|
if (unlikely(cpufreq_boot_limit.on)) {
|
|
cur_period = cpufreq_boot_limit.cur_period;
|
|
silver_max = cpufreq_boot_limit.freq[cur_period][0];
|
|
gold_max = cpufreq_boot_limit.freq[cur_period][1];
|
|
if (policy->cpu < 2) {
|
|
if (silver_max < policy->max) {
|
|
pr_debug("cpufreq : changing max freq (cpu%d: %u -> %u)\n",
|
|
policy->cpu, policy->max, silver_max);
|
|
cpufreq_boot_limit.stored_freq[0] = policy->max;
|
|
policy->max = silver_max;
|
|
}
|
|
} else {
|
|
if (gold_max < policy->max) {
|
|
pr_debug("cpufreq : changing max freq (cpu%d: %u -> %u)\n",
|
|
policy->cpu, policy->max, gold_max);
|
|
cpufreq_boot_limit.stored_freq[1] = policy->max;
|
|
policy->max = gold_max;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static int cpufreq_verify_within_freqtable(struct cpufreq_policy *policy)
|
|
{
|
|
unsigned int min_idx = 0, max_idx = 0, min_bak, max_bak;
|
|
int ret_min, ret_max;
|
|
struct cpufreq_frequency_table *table =
|
|
cpufreq_frequency_get_table(policy->cpu);
|
|
if (!table)
|
|
return -ENODEV;
|
|
|
|
/***********************************************/
|
|
/* caution : this policy should be new_policy. */
|
|
min_bak = policy->min;
|
|
policy->min = policy->cpuinfo.min_freq;
|
|
max_bak = policy->max;
|
|
policy->max = policy->cpuinfo.max_freq;
|
|
/***********************************************/
|
|
|
|
ret_min = cpufreq_frequency_table_target(policy, table,
|
|
min_bak,
|
|
CPUFREQ_RELATION_L,
|
|
&min_idx);
|
|
|
|
ret_max = cpufreq_frequency_table_target(policy, table,
|
|
max_bak,
|
|
CPUFREQ_RELATION_H,
|
|
&max_idx);
|
|
|
|
if (unlikely(ret_min)) {
|
|
pr_err("%s: Unable to find matching min freq(cpu%u: %u)\n",
|
|
__func__, policy->cpu, policy->min);
|
|
} else if (min_bak != table[min_idx].frequency) {
|
|
policy->min = table[min_idx].frequency;
|
|
ret_min = 1;
|
|
} else
|
|
policy->min = min_bak;
|
|
|
|
if (unlikely(ret_max)) {
|
|
pr_err("%s: Unable to find matching max freq(cpu%u: %u)\n",
|
|
__func__, policy->cpu, policy->max);
|
|
} else if (max_bak != table[max_idx].frequency) {
|
|
policy->max = table[max_idx].frequency;
|
|
ret_max = 1;
|
|
} else
|
|
policy->max = max_bak;
|
|
|
|
if (policy->min > policy->max) {
|
|
policy->min = policy->max;
|
|
ret_min |= 2;
|
|
}
|
|
|
|
if (ret_min > 0)
|
|
pr_debug("%s: wrong freq. adjust(cpu%d min: %u -> %u)\n",
|
|
__func__, policy->cpu, min_bak, policy->min);
|
|
|
|
if (ret_max > 0)
|
|
pr_debug("%s: wrong freq. adjust(cpu%d max: %u -> %u)\n",
|
|
__func__, policy->cpu, max_bak, policy->max);
|
|
|
|
return ((ret_max << 16) | (ret_min));
|
|
}
|
|
#endif // CONFIG_SEC_BSP
|
|
|
|
static int msm_cpufreq_verify(struct cpufreq_policy *policy)
|
|
{
|
|
#ifdef CONFIG_SEC_BSP
|
|
/* caution : this policy should be new_policy. */
|
|
cpufreq_verify_within_boot_limits(policy);
|
|
#endif
|
|
cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq,
|
|
policy->cpuinfo.max_freq);
|
|
#ifdef CONFIG_SEC_BSP
|
|
/* caution : this policy should be new_policy. */
|
|
cpufreq_verify_within_freqtable(policy);
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
static unsigned int msm_cpufreq_get_freq(unsigned int cpu)
|
|
{
|
|
return clk_get_rate(cpu_clk[cpu]) / 1000;
|
|
}
|
|
|
|
static int msm_cpufreq_init(struct cpufreq_policy *policy)
|
|
{
|
|
int cur_freq;
|
|
int index;
|
|
int ret = 0;
|
|
struct cpufreq_frequency_table *table =
|
|
per_cpu(freq_table, policy->cpu);
|
|
int cpu;
|
|
|
|
/*
|
|
* In some SoC, some cores are clocked by same source, and their
|
|
* frequencies can not be changed independently. Find all other
|
|
* CPUs that share same clock, and mark them as controlled by
|
|
* same policy.
|
|
*/
|
|
for_each_possible_cpu(cpu)
|
|
if (cpu_clk[cpu] == cpu_clk[policy->cpu])
|
|
cpumask_set_cpu(cpu, policy->cpus);
|
|
|
|
if (cpufreq_frequency_table_cpuinfo(policy, table))
|
|
pr_err("cpufreq: failed to get policy min/max\n");
|
|
|
|
cur_freq = clk_get_rate(cpu_clk[policy->cpu])/1000;
|
|
|
|
if (cpufreq_frequency_table_target(policy, table, cur_freq,
|
|
CPUFREQ_RELATION_H, &index) &&
|
|
cpufreq_frequency_table_target(policy, table, cur_freq,
|
|
CPUFREQ_RELATION_L, &index)) {
|
|
pr_info("cpufreq: cpu%d at invalid freq: %d\n",
|
|
policy->cpu, cur_freq);
|
|
return -EINVAL;
|
|
}
|
|
/*
|
|
* Call set_cpu_freq unconditionally so that when cpu is set to
|
|
* online, frequency limit will always be updated.
|
|
*/
|
|
ret = set_cpu_freq(policy, table[index].frequency,
|
|
table[index].driver_data);
|
|
if (ret)
|
|
return ret;
|
|
pr_debug("cpufreq: cpu%d init at %d switching to %d\n",
|
|
policy->cpu, cur_freq, table[index].frequency);
|
|
policy->cur = table[index].frequency;
|
|
policy->freq_table = table;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int msm_cpufreq_cpu_callback(struct notifier_block *nfb,
|
|
unsigned long action, void *hcpu)
|
|
{
|
|
unsigned int cpu = (unsigned long)hcpu;
|
|
int rc;
|
|
|
|
/* Fail hotplug until this driver can get CPU clocks */
|
|
if (!hotplug_ready)
|
|
return NOTIFY_BAD;
|
|
|
|
switch (action & ~CPU_TASKS_FROZEN) {
|
|
|
|
case CPU_DYING:
|
|
clk_disable(cpu_clk[cpu]);
|
|
clk_disable(l2_clk);
|
|
break;
|
|
/*
|
|
* Scale down clock/power of CPU that is dead and scale it back up
|
|
* before the CPU is brought up.
|
|
*/
|
|
case CPU_DEAD:
|
|
clk_unprepare(cpu_clk[cpu]);
|
|
clk_unprepare(l2_clk);
|
|
break;
|
|
case CPU_UP_CANCELED:
|
|
clk_unprepare(cpu_clk[cpu]);
|
|
clk_unprepare(l2_clk);
|
|
break;
|
|
case CPU_UP_PREPARE:
|
|
rc = clk_prepare(l2_clk);
|
|
if (rc < 0)
|
|
return NOTIFY_BAD;
|
|
rc = clk_prepare(cpu_clk[cpu]);
|
|
if (rc < 0) {
|
|
clk_unprepare(l2_clk);
|
|
return NOTIFY_BAD;
|
|
}
|
|
break;
|
|
|
|
case CPU_STARTING:
|
|
rc = clk_enable(l2_clk);
|
|
if (rc < 0)
|
|
return NOTIFY_BAD;
|
|
rc = clk_enable(cpu_clk[cpu]);
|
|
if (rc) {
|
|
clk_disable(l2_clk);
|
|
return NOTIFY_BAD;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return NOTIFY_OK;
|
|
}
|
|
|
|
static struct notifier_block __refdata msm_cpufreq_cpu_notifier = {
|
|
.notifier_call = msm_cpufreq_cpu_callback,
|
|
};
|
|
|
|
static int msm_cpufreq_suspend(void)
|
|
{
|
|
int cpu;
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
mutex_lock(&per_cpu(suspend_data, cpu).suspend_mutex);
|
|
per_cpu(suspend_data, cpu).device_suspended = 1;
|
|
mutex_unlock(&per_cpu(suspend_data, cpu).suspend_mutex);
|
|
}
|
|
|
|
return NOTIFY_DONE;
|
|
}
|
|
|
|
static int msm_cpufreq_resume(void)
|
|
{
|
|
int cpu, ret;
|
|
struct cpufreq_policy policy;
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
per_cpu(suspend_data, cpu).device_suspended = 0;
|
|
}
|
|
|
|
/*
|
|
* Freq request might be rejected during suspend, resulting
|
|
* in policy->cur violating min/max constraint.
|
|
* Correct the frequency as soon as possible.
|
|
*/
|
|
get_online_cpus();
|
|
for_each_online_cpu(cpu) {
|
|
ret = cpufreq_get_policy(&policy, cpu);
|
|
if (ret)
|
|
continue;
|
|
if (policy.cur <= policy.max && policy.cur >= policy.min)
|
|
continue;
|
|
ret = cpufreq_update_policy(cpu);
|
|
if (ret)
|
|
pr_info("cpufreq: Current frequency violates policy min/max for CPU%d\n",
|
|
cpu);
|
|
else
|
|
pr_info("cpufreq: Frequency violation fixed for CPU%d\n",
|
|
cpu);
|
|
}
|
|
put_online_cpus();
|
|
|
|
return NOTIFY_DONE;
|
|
}
|
|
|
|
static int msm_cpufreq_pm_event(struct notifier_block *this,
|
|
unsigned long event, void *ptr)
|
|
{
|
|
switch (event) {
|
|
case PM_POST_HIBERNATION:
|
|
case PM_POST_SUSPEND:
|
|
return msm_cpufreq_resume();
|
|
case PM_HIBERNATION_PREPARE:
|
|
case PM_SUSPEND_PREPARE:
|
|
return msm_cpufreq_suspend();
|
|
default:
|
|
return NOTIFY_DONE;
|
|
}
|
|
}
|
|
|
|
static struct notifier_block msm_cpufreq_pm_notifier = {
|
|
.notifier_call = msm_cpufreq_pm_event,
|
|
};
|
|
|
|
static struct freq_attr *msm_freq_attr[] = {
|
|
&cpufreq_freq_attr_scaling_available_freqs,
|
|
NULL,
|
|
};
|
|
|
|
static struct cpufreq_driver msm_cpufreq_driver = {
|
|
/* lps calculations are handled here. */
|
|
.flags = CPUFREQ_STICKY | CPUFREQ_CONST_LOOPS,
|
|
.init = msm_cpufreq_init,
|
|
.verify = msm_cpufreq_verify,
|
|
.target = msm_cpufreq_target,
|
|
.get = msm_cpufreq_get_freq,
|
|
.name = "msm",
|
|
.attr = msm_freq_attr,
|
|
};
|
|
|
|
static struct cpufreq_frequency_table *cpufreq_parse_dt(struct device *dev,
|
|
char *tbl_name, int cpu)
|
|
{
|
|
int ret, nf, i;
|
|
u32 *data;
|
|
struct cpufreq_frequency_table *ftbl;
|
|
|
|
/* Parse list of usable CPU frequencies. */
|
|
if (!of_find_property(dev->of_node, tbl_name, &nf))
|
|
return ERR_PTR(-EINVAL);
|
|
nf /= sizeof(*data);
|
|
|
|
if (nf == 0)
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
data = devm_kzalloc(dev, nf * sizeof(*data), GFP_KERNEL);
|
|
if (!data)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
ret = of_property_read_u32_array(dev->of_node, tbl_name, data, nf);
|
|
if (ret)
|
|
return ERR_PTR(ret);
|
|
|
|
ftbl = devm_kzalloc(dev, (nf + 1) * sizeof(*ftbl), GFP_KERNEL);
|
|
if (!ftbl)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
for (i = 0; i < nf; i++) {
|
|
unsigned long f;
|
|
|
|
f = clk_round_rate(cpu_clk[cpu], data[i] * 1000);
|
|
if (IS_ERR_VALUE(f))
|
|
break;
|
|
f /= 1000;
|
|
|
|
/*
|
|
* Check if this is the last feasible frequency in the table.
|
|
*
|
|
* The table listing frequencies higher than what the HW can
|
|
* support is not an error since the table might be shared
|
|
* across CPUs in different speed bins. It's also not
|
|
* sufficient to check if the rounded rate is lower than the
|
|
* requested rate as it doesn't cover the following example:
|
|
*
|
|
* Table lists: 2.2 GHz and 2.5 GHz.
|
|
* Rounded rate returns: 2.2 GHz and 2.3 GHz.
|
|
*
|
|
* In this case, we can CPUfreq to use 2.2 GHz and 2.3 GHz
|
|
* instead of rejecting the 2.5 GHz table entry.
|
|
*/
|
|
if (i > 0 && f <= ftbl[i-1].frequency)
|
|
break;
|
|
|
|
ftbl[i].driver_data = i;
|
|
ftbl[i].frequency = f;
|
|
}
|
|
|
|
ftbl[i].driver_data = i;
|
|
ftbl[i].frequency = CPUFREQ_TABLE_END;
|
|
|
|
devm_kfree(dev, data);
|
|
|
|
return ftbl;
|
|
}
|
|
|
|
#ifdef CONFIG_SEC_BSP
|
|
static void cpufreq_boot_limit_expired_work(struct work_struct *work);
|
|
static void cpufreq_boot_limit_expired(unsigned long data);
|
|
static void cpufreq_boot_limit_start(int period);
|
|
extern void cpufreq_boot_limit_update(int period);
|
|
|
|
static void cpufreq_boot_limit_start(int period)
|
|
{
|
|
if (period >= cpufreq_boot_limit.num_period)
|
|
goto limit_end;
|
|
if (period != (cpufreq_boot_limit.cur_period + 1))
|
|
goto period_err;
|
|
|
|
cpufreq_boot_limit.cur_period = period;
|
|
|
|
if (period == 0) {
|
|
INIT_WORK(&cpufreq_boot_limit.time_out_work, cpufreq_boot_limit_expired_work);
|
|
init_timer(&cpufreq_boot_limit.timer);
|
|
cpufreq_boot_limit.timer.function = cpufreq_boot_limit_expired;
|
|
cpufreq_boot_limit.timer.expires = jiffies + cpufreq_boot_limit.timeout[period] * HZ;
|
|
add_timer(&cpufreq_boot_limit.timer);
|
|
cpufreq_boot_limit.on = 1;
|
|
} else {
|
|
mod_timer(&cpufreq_boot_limit.timer, jiffies + cpufreq_boot_limit.timeout[period] * HZ);
|
|
}
|
|
|
|
pr_info("%s(%d) : %d period started (%d, %d) for %d sec!!\n",
|
|
__func__, __LINE__, cpufreq_boot_limit.cur_period,
|
|
cpufreq_boot_limit.freq[period][0], cpufreq_boot_limit.freq[period][1],
|
|
cpufreq_boot_limit.timeout[period]);
|
|
limit_end:
|
|
cpufreq_boot_limit_update(period);
|
|
|
|
return;
|
|
|
|
period_err:
|
|
pr_err("%s(%d) : input is not valid(%d, %d/%d)!!\n",
|
|
__func__, __LINE__, period,
|
|
cpufreq_boot_limit.cur_period, cpufreq_boot_limit.num_period);
|
|
}
|
|
|
|
static void cpufreq_boot_limit_expired_work(struct work_struct *work)
|
|
{
|
|
cpufreq_boot_limit_t *limit = container_of(work,
|
|
cpufreq_boot_limit_t, time_out_work);
|
|
|
|
cpufreq_boot_limit_start(limit->cur_period + 1);
|
|
}
|
|
|
|
static void cpufreq_boot_limit_expired(unsigned long data)
|
|
{
|
|
schedule_work(&cpufreq_boot_limit.time_out_work);
|
|
}
|
|
|
|
static ssize_t store_cpufreq_boot_limit_period(struct kobject *kobj,
|
|
struct kobj_attribute *attr,
|
|
const char *buf, size_t count)
|
|
{
|
|
int period;
|
|
if (kstrtoint(buf, 0, &period))
|
|
return -EINVAL;
|
|
|
|
cpufreq_boot_limit_start(period);
|
|
|
|
return count;
|
|
}
|
|
|
|
static struct kobj_attribute attr_cpufreq_boot_limit_period = __ATTR(cpufreq_boot_limit_period,
|
|
0644, NULL, store_cpufreq_boot_limit_period);
|
|
#endif
|
|
|
|
static int __init msm_cpufreq_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
char clk_name[] = "cpu??_clk";
|
|
char tbl_name[] = "qcom,cpufreq-table-??";
|
|
struct clk *c;
|
|
int cpu;
|
|
struct cpufreq_frequency_table *ftbl;
|
|
#ifdef CONFIG_SEC_BSP
|
|
int ret, len, i, index;
|
|
struct device_node *cpufreq_limit_node;
|
|
const char *status;
|
|
const u32 *vec_arr = NULL;
|
|
u32 num_period;
|
|
#endif
|
|
|
|
l2_clk = devm_clk_get(dev, "l2_clk");
|
|
if (IS_ERR(l2_clk))
|
|
l2_clk = NULL;
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
snprintf(clk_name, sizeof(clk_name), "cpu%d_clk", cpu);
|
|
c = devm_clk_get(dev, clk_name);
|
|
if (IS_ERR(c))
|
|
return PTR_ERR(c);
|
|
cpu_clk[cpu] = c;
|
|
}
|
|
hotplug_ready = true;
|
|
|
|
/* Use per-policy governor tunable for some targets */
|
|
if (of_property_read_bool(dev->of_node, "qcom,governor-per-policy"))
|
|
msm_cpufreq_driver.flags |= CPUFREQ_HAVE_GOVERNOR_PER_POLICY;
|
|
|
|
/* Parse commong cpufreq table for all CPUs */
|
|
ftbl = cpufreq_parse_dt(dev, "qcom,cpufreq-table", 0);
|
|
if (!IS_ERR(ftbl)) {
|
|
for_each_possible_cpu(cpu)
|
|
per_cpu(freq_table, cpu) = ftbl;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* No common table. Parse individual tables for each unique
|
|
* CPU clock.
|
|
*/
|
|
for_each_possible_cpu(cpu) {
|
|
snprintf(tbl_name, sizeof(tbl_name),
|
|
"qcom,cpufreq-table-%d", cpu);
|
|
ftbl = cpufreq_parse_dt(dev, tbl_name, cpu);
|
|
|
|
/* CPU0 must contain freq table */
|
|
if (cpu == 0 && IS_ERR(ftbl)) {
|
|
dev_err(dev, "Failed to parse CPU0's freq table\n");
|
|
return PTR_ERR(ftbl);
|
|
}
|
|
if (cpu == 0) {
|
|
per_cpu(freq_table, cpu) = ftbl;
|
|
continue;
|
|
}
|
|
|
|
if (cpu_clk[cpu] != cpu_clk[cpu - 1] && IS_ERR(ftbl)) {
|
|
dev_err(dev, "Failed to parse CPU%d's freq table\n",
|
|
cpu);
|
|
return PTR_ERR(ftbl);
|
|
}
|
|
|
|
/* Use previous CPU's table if it shares same clock */
|
|
if (cpu_clk[cpu] == cpu_clk[cpu - 1]) {
|
|
if (!IS_ERR(ftbl)) {
|
|
dev_warn(dev, "Conflicting tables for CPU%d\n",
|
|
cpu);
|
|
devm_kfree(dev, ftbl);
|
|
}
|
|
ftbl = per_cpu(freq_table, cpu - 1);
|
|
}
|
|
per_cpu(freq_table, cpu) = ftbl;
|
|
}
|
|
|
|
#ifdef CONFIG_SEC_BSP
|
|
cpufreq_limit_node = of_find_node_by_name(dev->of_node, "qcom,cpufreq-boot-limit");
|
|
if (!cpufreq_limit_node) {
|
|
dev_err(dev, "Fail to get cpufreq-boot-limit node\n");
|
|
goto skip_cpufreq_limit;
|
|
}
|
|
|
|
status = of_get_property(cpufreq_limit_node, "status", NULL);
|
|
if (status && (strcmp(status, "enabled") && strncmp(status, "ok", 2))) {
|
|
dev_err(dev, "cpufreq-boot-limit is not enabled.\n");
|
|
goto skip_cpufreq_limit;
|
|
}
|
|
dev_info(dev, "cpufreq-boot-limit is set.\n");
|
|
|
|
ret = cpufreq_get_global_kobject();
|
|
if (!ret) {
|
|
if (sysfs_create_file(cpufreq_global_kobject,
|
|
&attr_cpufreq_boot_limit_period.attr)) {
|
|
dev_err(dev, "Fail to make file(cpufreq_boot_limit_period)\n");
|
|
}
|
|
} else {
|
|
dev_err(dev, "Fail to get cpufreq_global_kobject\n");
|
|
}
|
|
|
|
ret = of_property_read_u32(cpufreq_limit_node,"qcom,cpufreq-boot-limit,num-period",
|
|
&num_period);
|
|
if (ret) {
|
|
dev_err(dev, "Fail to get num-period info\n");
|
|
goto skip_cpufreq_limit;
|
|
}
|
|
|
|
if (MAX_NUM_PERIOD < num_period) {
|
|
dev_err(dev, "num-period exceeded MAX_NUM_PERIOD\n");
|
|
goto skip_cpufreq_limit;
|
|
}
|
|
|
|
vec_arr = of_get_property(cpufreq_limit_node, "qcom,cpufreq-boot-limit,table", &len);
|
|
if (vec_arr == NULL) {
|
|
dev_err(dev, "Fail to get limit freq table\n");
|
|
goto skip_cpufreq_limit;
|
|
}
|
|
|
|
if (len != num_period * sizeof(u32) * 3) {
|
|
dev_err(dev, "length error - limit freq table\n");
|
|
goto skip_cpufreq_limit;
|
|
}
|
|
|
|
cpufreq_boot_limit.num_period = num_period;
|
|
|
|
for (i = 0; i < num_period; i++) {
|
|
index = i * 3;
|
|
cpufreq_boot_limit.freq[i][0] = be32_to_cpu(vec_arr[index]);
|
|
cpufreq_boot_limit.freq[i][1] = be32_to_cpu(vec_arr[index + 1]);
|
|
cpufreq_boot_limit.timeout[i] = be32_to_cpu(vec_arr[index + 2]);
|
|
pr_info("%s(%d): period(%d) - %d %d %d\n", __func__, __LINE__, i,
|
|
cpufreq_boot_limit.freq[i][0],cpufreq_boot_limit.freq[i][1],
|
|
cpufreq_boot_limit.timeout[i]);
|
|
}
|
|
|
|
cpufreq_boot_limit_start(0);
|
|
|
|
skip_cpufreq_limit:
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct of_device_id match_table[] = {
|
|
{ .compatible = "qcom,msm-cpufreq" },
|
|
{}
|
|
};
|
|
|
|
static struct platform_driver msm_cpufreq_plat_driver = {
|
|
.driver = {
|
|
.name = "msm-cpufreq",
|
|
.of_match_table = match_table,
|
|
.owner = THIS_MODULE,
|
|
},
|
|
};
|
|
|
|
static int __init msm_cpufreq_register(void)
|
|
{
|
|
int cpu, rc;
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
mutex_init(&(per_cpu(suspend_data, cpu).suspend_mutex));
|
|
per_cpu(suspend_data, cpu).device_suspended = 0;
|
|
}
|
|
|
|
rc = platform_driver_probe(&msm_cpufreq_plat_driver,
|
|
msm_cpufreq_probe);
|
|
if (rc < 0) {
|
|
/* Unblock hotplug if msm-cpufreq probe fails */
|
|
unregister_hotcpu_notifier(&msm_cpufreq_cpu_notifier);
|
|
for_each_possible_cpu(cpu)
|
|
mutex_destroy(&(per_cpu(suspend_data, cpu).
|
|
suspend_mutex));
|
|
return rc;
|
|
}
|
|
|
|
register_pm_notifier(&msm_cpufreq_pm_notifier);
|
|
return cpufreq_register_driver(&msm_cpufreq_driver);
|
|
}
|
|
|
|
subsys_initcall(msm_cpufreq_register);
|
|
|
|
static int __init msm_cpufreq_early_register(void)
|
|
{
|
|
return register_hotcpu_notifier(&msm_cpufreq_cpu_notifier);
|
|
}
|
|
core_initcall(msm_cpufreq_early_register);
|