2019-06-04 11:11:33 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2016-09-09 14:18:08 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Linaro
|
|
|
|
* Viresh Kumar <viresh.kumar@linaro.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CPUFREQ_DT_H__
|
|
|
|
#define __CPUFREQ_DT_H__
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2018-04-24 12:39:45 +03:00
|
|
|
struct cpufreq_policy;
|
|
|
|
|
2016-09-09 14:18:08 +03:00
|
|
|
struct cpufreq_dt_platform_data {
|
|
|
|
bool have_governor_per_policy;
|
2018-04-24 12:39:45 +03:00
|
|
|
|
2020-02-19 10:59:53 +03:00
|
|
|
unsigned int (*get_intermediate)(struct cpufreq_policy *policy,
|
|
|
|
unsigned int index);
|
|
|
|
int (*target_intermediate)(struct cpufreq_policy *policy,
|
|
|
|
unsigned int index);
|
2018-04-24 12:39:45 +03:00
|
|
|
int (*suspend)(struct cpufreq_policy *policy);
|
|
|
|
int (*resume)(struct cpufreq_policy *policy);
|
2016-09-09 14:18:08 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __CPUFREQ_DT_H__ */
|