mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
45e1208626
* remove superfluous pr_debug() call from exynos_cpufreq_init() (init errors are always logged anyway) * add dummy per-SoC type init functions to exynos-cpufreq.h * make per-SoC type cpufreq config options selectable * make CONFIG_ARM_EXYNOS_CPUFREQ config option invisible to user and automatically enable it when needed This patch fixes following issues: * EXYNOS per-SoC type cpufreq support (i.e. exynos4210-cpufreq.c) being always built if given SoC support was enabled (i.e. CPU_EXYNOS4210), even if common EXYNOS cpufreq support was disabled * inability to select cpufreq for each SoC type separately (it could be only enabled/disabled for all SoCs for which support was enabled) * EXYNOS5440 cpufreq support was always enabled when EXYNOS5440 support was enabled and couldn't be disabled Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Reviewed-by: Tomasz Figa <t.figa@samsung.com> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
70 lines
1.7 KiB
C
70 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
*
|
|
* EXYNOS - CPUFreq support
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
enum cpufreq_level_index {
|
|
L0, L1, L2, L3, L4,
|
|
L5, L6, L7, L8, L9,
|
|
L10, L11, L12, L13, L14,
|
|
L15, L16, L17, L18, L19,
|
|
L20,
|
|
};
|
|
|
|
#define APLL_FREQ(f, a0, a1, a2, a3, a4, a5, a6, a7, b0, b1, b2, m, p, s) \
|
|
{ \
|
|
.freq = (f) * 1000, \
|
|
.clk_div_cpu0 = ((a0) | (a1) << 4 | (a2) << 8 | (a3) << 12 | \
|
|
(a4) << 16 | (a5) << 20 | (a6) << 24 | (a7) << 28), \
|
|
.clk_div_cpu1 = (b0 << 0 | b1 << 4 | b2 << 8), \
|
|
.mps = ((m) << 16 | (p) << 8 | (s)), \
|
|
}
|
|
|
|
struct apll_freq {
|
|
unsigned int freq;
|
|
u32 clk_div_cpu0;
|
|
u32 clk_div_cpu1;
|
|
u32 mps;
|
|
};
|
|
|
|
struct exynos_dvfs_info {
|
|
unsigned long mpll_freq_khz;
|
|
unsigned int pll_safe_idx;
|
|
struct clk *cpu_clk;
|
|
unsigned int *volt_table;
|
|
struct cpufreq_frequency_table *freq_table;
|
|
void (*set_freq)(unsigned int, unsigned int);
|
|
bool (*need_apll_change)(unsigned int, unsigned int);
|
|
};
|
|
|
|
#ifdef CONFIG_ARM_EXYNOS4210_CPUFREQ
|
|
extern int exynos4210_cpufreq_init(struct exynos_dvfs_info *);
|
|
#else
|
|
static inline int exynos4210_cpufreq_init(struct exynos_dvfs_info *info)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
#endif
|
|
#ifdef CONFIG_ARM_EXYNOS4X12_CPUFREQ
|
|
extern int exynos4x12_cpufreq_init(struct exynos_dvfs_info *);
|
|
#else
|
|
static inline int exynos4x12_cpufreq_init(struct exynos_dvfs_info *info)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
#endif
|
|
#ifdef CONFIG_ARM_EXYNOS5250_CPUFREQ
|
|
extern int exynos5250_cpufreq_init(struct exynos_dvfs_info *);
|
|
#else
|
|
static inline int exynos5250_cpufreq_init(struct exynos_dvfs_info *info)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
#endif
|