aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq/cpufreq-dt.h
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2020-02-19 15:59:53 +0800
committerViresh Kumar <viresh.kumar@linaro.org>2020-03-12 15:43:52 +0530
commit0c868627e617e43a295d8e7d542ec40387853694 (patch)
treebc98c35b18a0c7d36b0c7971de99c37145525aef /drivers/cpufreq/cpufreq-dt.h
parentcpufreq: imx-cpufreq-dt: Correct i.MX8MP's market segment fuse location (diff)
downloadlinux-dev-0c868627e617e43a295d8e7d542ec40387853694.tar.xz
linux-dev-0c868627e617e43a295d8e7d542ec40387853694.zip
cpufreq: dt: Allow platform specific intermediate callbacks
Platforms may need to implement platform specific get_intermediate and target_intermediate hooks. Update cpufreq-dt driver's platform data to contain those for such platforms. Signed-off-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/cpufreq/cpufreq-dt.h')
-rw-r--r--drivers/cpufreq/cpufreq-dt.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq-dt.h b/drivers/cpufreq/cpufreq-dt.h
index a5a45b547d0b..28c8af7ec5ef 100644
--- a/drivers/cpufreq/cpufreq-dt.h
+++ b/drivers/cpufreq/cpufreq-dt.h
@@ -14,6 +14,10 @@ struct cpufreq_policy;
struct cpufreq_dt_platform_data {
bool have_governor_per_policy;
+ unsigned int (*get_intermediate)(struct cpufreq_policy *policy,
+ unsigned int index);
+ int (*target_intermediate)(struct cpufreq_policy *policy,
+ unsigned int index);
int (*suspend)(struct cpufreq_policy *policy);
int (*resume)(struct cpufreq_policy *policy);
};