diff options
author | Peng Fan <peng.fan@nxp.com> | 2020-02-19 10:59:53 +0300 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2020-03-12 13:13:52 +0300 |
commit | 0c868627e617e43a295d8e7d542ec40387853694 (patch) | |
tree | bc98c35b18a0c7d36b0c7971de99c37145525aef /drivers/cpufreq/cpufreq-dt.h | |
parent | c98330446c32da8898a7dacd81b8d09dc0b34b60 (diff) | |
download | linux-0c868627e617e43a295d8e7d542ec40387853694.tar.xz |
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.h | 4 |
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); }; |