mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
cpufreq: exynos: Show list of available frequencies
Add freq_attr attribute to show list of available frequencies. Signed-off-by: Donggeun Kim <dg77.kim@samsung.com> Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com> Signed-off-by: KyungMin Park <kyungmin.park@samsung.com> Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org> Reviewed-by: Amit Daniel Kachhap<amit.daniel@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
94aa44090e
commit
1298271b03
1 changed files with 13 additions and 0 deletions
|
@ -268,13 +268,26 @@ static int exynos_cpufreq_cpu_init(struct cpufreq_policy *policy)
|
||||||
return cpufreq_frequency_table_cpuinfo(policy, exynos_info->freq_table);
|
return cpufreq_frequency_table_cpuinfo(policy, exynos_info->freq_table);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int exynos_cpufreq_cpu_exit(struct cpufreq_policy *policy)
|
||||||
|
{
|
||||||
|
cpufreq_frequency_table_put_attr(policy->cpu);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct freq_attr *exynos_cpufreq_attr[] = {
|
||||||
|
&cpufreq_freq_attr_scaling_available_freqs,
|
||||||
|
NULL,
|
||||||
|
};
|
||||||
|
|
||||||
static struct cpufreq_driver exynos_driver = {
|
static struct cpufreq_driver exynos_driver = {
|
||||||
.flags = CPUFREQ_STICKY,
|
.flags = CPUFREQ_STICKY,
|
||||||
.verify = exynos_verify_speed,
|
.verify = exynos_verify_speed,
|
||||||
.target = exynos_target,
|
.target = exynos_target,
|
||||||
.get = exynos_getspeed,
|
.get = exynos_getspeed,
|
||||||
.init = exynos_cpufreq_cpu_init,
|
.init = exynos_cpufreq_cpu_init,
|
||||||
|
.exit = exynos_cpufreq_cpu_exit,
|
||||||
.name = "exynos_cpufreq",
|
.name = "exynos_cpufreq",
|
||||||
|
.attr = exynos_cpufreq_attr,
|
||||||
#ifdef CONFIG_PM
|
#ifdef CONFIG_PM
|
||||||
.suspend = exynos_cpufreq_suspend,
|
.suspend = exynos_cpufreq_suspend,
|
||||||
.resume = exynos_cpufreq_resume,
|
.resume = exynos_cpufreq_resume,
|
||||||
|
|
Loading…
Add table
Reference in a new issue