PM / devfreq: Add devfreq_get_devfreq_by_phandle()
[deliverable/linux.git] / include / linux / devfreq.h
CommitLineData
a3c98b8b
MH
1/*
2 * devfreq: Generic Dynamic Voltage and Frequency Scaling (DVFS) Framework
3 * for Non-CPU Devices.
4 *
5 * Copyright (C) 2011 Samsung Electronics
6 * MyungJoo Ham <myungjoo.ham@samsung.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef __LINUX_DEVFREQ_H__
14#define __LINUX_DEVFREQ_H__
15
16#include <linux/device.h>
17#include <linux/notifier.h>
e4db1c74 18#include <linux/pm_opp.h>
a3c98b8b
MH
19
20#define DEVFREQ_NAME_LEN 16
21
22struct devfreq;
23
24/**
25 * struct devfreq_dev_status - Data given from devfreq user device to
26 * governors. Represents the performance
27 * statistics.
e09651fc 28 * @total_time: The total time represented by this instance of
a3c98b8b 29 * devfreq_dev_status
e09651fc 30 * @busy_time: The time that the device was working among the
a3c98b8b 31 * total_time.
e09651fc
NM
32 * @current_frequency: The operating frequency.
33 * @private_data: An entry not specified by the devfreq framework.
a3c98b8b
MH
34 * A device and a specific governor may have their
35 * own protocol with private_data. However, because
36 * this is governor-specific, a governor using this
37 * will be only compatible with devices aware of it.
38 */
39struct devfreq_dev_status {
40 /* both since the last measure */
41 unsigned long total_time;
42 unsigned long busy_time;
43 unsigned long current_frequency;
1a51cfdc 44 void *private_data;
a3c98b8b
MH
45};
46
ab5f299f
MH
47/*
48 * The resulting frequency should be at most this. (this bound is the
49 * least upper bound; thus, the resulting freq should be lower or same)
50 * If the flag is not set, the resulting frequency should be at most the
51 * bound (greatest lower bound)
52 */
53#define DEVFREQ_FLAG_LEAST_UPPER_BOUND 0x1
54
a3c98b8b
MH
55/**
56 * struct devfreq_dev_profile - Devfreq's user device profile
e09651fc 57 * @initial_freq: The operating frequency when devfreq_add_device() is
a3c98b8b 58 * called.
e09651fc
NM
59 * @polling_ms: The polling interval in ms. 0 disables polling.
60 * @target: The device should set its operating frequency at
a3c98b8b
MH
61 * freq or lowest-upper-than-freq value. If freq is
62 * higher than any operable frequency, set maximum.
63 * Before returning, target function should set
64 * freq at the current frequency.
ab5f299f
MH
65 * The "flags" parameter's possible values are
66 * explained above with "DEVFREQ_FLAG_*" macros.
e09651fc 67 * @get_dev_status: The device should provide the current performance
d54cdf3f
MH
68 * status to devfreq. Governors are recommended not to
69 * use this directly. Instead, governors are recommended
70 * to use devfreq_update_stats() along with
71 * devfreq.last_status.
e09651fc 72 * @get_cur_freq: The device should provide the current frequency
7f98a905 73 * at which it is operating.
e09651fc 74 * @exit: An optional callback that is called when devfreq
a3c98b8b
MH
75 * is removing the devfreq object due to error or
76 * from devfreq_remove_device() call. If the user
77 * has registered devfreq->nb at a notifier-head,
78 * this is the time to unregister it.
e552bbaf
JL
79 * @freq_table: Optional list of frequencies to support statistics.
80 * @max_state: The size of freq_table.
a3c98b8b
MH
81 */
82struct devfreq_dev_profile {
83 unsigned long initial_freq;
84 unsigned int polling_ms;
85
ab5f299f 86 int (*target)(struct device *dev, unsigned long *freq, u32 flags);
a3c98b8b
MH
87 int (*get_dev_status)(struct device *dev,
88 struct devfreq_dev_status *stat);
7f98a905 89 int (*get_cur_freq)(struct device *dev, unsigned long *freq);
a3c98b8b 90 void (*exit)(struct device *dev);
e552bbaf 91
0ec09ac2 92 unsigned long *freq_table;
e552bbaf 93 unsigned int max_state;
a3c98b8b
MH
94};
95
96/**
97 * struct devfreq_governor - Devfreq policy governor
3aa173b8 98 * @node: list node - contains registered devfreq governors
e09651fc
NM
99 * @name: Governor's name
100 * @get_target_freq: Returns desired operating frequency for the device.
a3c98b8b
MH
101 * Basically, get_target_freq will run
102 * devfreq_dev_profile.get_dev_status() to get the
103 * status of the device (load = busy_time / total_time).
104 * If no_central_polling is set, this callback is called
105 * only with update_devfreq() notified by OPP.
e09651fc 106 * @event_handler: Callback for devfreq core framework to notify events
7e6fdd4b
RV
107 * to governors. Events include per device governor
108 * init and exit, opp changes out of devfreq, suspend
109 * and resume of per device devfreq during device idle.
a3c98b8b
MH
110 *
111 * Note that the callbacks are called with devfreq->lock locked by devfreq.
112 */
113struct devfreq_governor {
3aa173b8
NM
114 struct list_head node;
115
a3c98b8b
MH
116 const char name[DEVFREQ_NAME_LEN];
117 int (*get_target_freq)(struct devfreq *this, unsigned long *freq);
7e6fdd4b
RV
118 int (*event_handler)(struct devfreq *devfreq,
119 unsigned int event, void *data);
a3c98b8b
MH
120};
121
122/**
123 * struct devfreq - Device devfreq structure
e09651fc 124 * @node: list node - contains the devices with devfreq that have been
a3c98b8b 125 * registered.
e09651fc
NM
126 * @lock: a mutex to protect accessing devfreq.
127 * @dev: device registered by devfreq class. dev.parent is the device
a3c98b8b 128 * using devfreq.
e09651fc
NM
129 * @profile: device-specific devfreq profile
130 * @governor: method how to choose frequency based on the usage.
1b5c1be2 131 * @governor_name: devfreq governor name for use with this devfreq
e09651fc 132 * @nb: notifier block used to notify devfreq object that it should
a3c98b8b
MH
133 * reevaluate operable frequencies. Devfreq users may use
134 * devfreq.nb to the corresponding register notifier call chain.
e09651fc
NM
135 * @work: delayed work for load monitoring.
136 * @previous_freq: previously configured frequency value.
137 * @data: Private data of the governor. The devfreq framework does not
a3c98b8b 138 * touch this.
e09651fc
NM
139 * @min_freq: Limit minimum frequency requested by user (0: none)
140 * @max_freq: Limit maximum frequency requested by user (0: none)
141 * @stop_polling: devfreq polling status of a device.
e552bbaf
JL
142 * @total_trans: Number of devfreq transitions
143 * @trans_table: Statistics of devfreq transitions
144 * @time_in_state: Statistics of devfreq states
145 * @last_stat_updated: The last time stat updated
a3c98b8b
MH
146 *
147 * This structure stores the devfreq information for a give device.
148 *
149 * Note that when a governor accesses entries in struct devfreq in its
150 * functions except for the context of callbacks defined in struct
151 * devfreq_governor, the governor should protect its access with the
152 * struct mutex lock in struct devfreq. A governor may use this mutex
153 * to protect its own private data in void *data as well.
154 */
155struct devfreq {
156 struct list_head node;
157
158 struct mutex lock;
159 struct device dev;
160 struct devfreq_dev_profile *profile;
161 const struct devfreq_governor *governor;
1b5c1be2 162 char governor_name[DEVFREQ_NAME_LEN];
a3c98b8b 163 struct notifier_block nb;
7e6fdd4b 164 struct delayed_work work;
a3c98b8b 165
a3c98b8b 166 unsigned long previous_freq;
08e75e75 167 struct devfreq_dev_status last_status;
a3c98b8b
MH
168
169 void *data; /* private data for governors */
170
6530b9de
MH
171 unsigned long min_freq;
172 unsigned long max_freq;
7e6fdd4b 173 bool stop_polling;
e552bbaf 174
0585123e 175 /* information for device frequency transition */
e552bbaf
JL
176 unsigned int total_trans;
177 unsigned int *trans_table;
178 unsigned long *time_in_state;
179 unsigned long last_stat_updated;
a3c98b8b
MH
180};
181
182#if defined(CONFIG_PM_DEVFREQ)
183extern struct devfreq *devfreq_add_device(struct device *dev,
184 struct devfreq_dev_profile *profile,
1b5c1be2 185 const char *governor_name,
a3c98b8b
MH
186 void *data);
187extern int devfreq_remove_device(struct devfreq *devfreq);
8cd84092
CC
188extern struct devfreq *devm_devfreq_add_device(struct device *dev,
189 struct devfreq_dev_profile *profile,
190 const char *governor_name,
191 void *data);
192extern void devm_devfreq_remove_device(struct device *dev,
193 struct devfreq *devfreq);
de9c7394 194
464ed18e 195/* Supposed to be called by PM callbacks */
206c30cf
RV
196extern int devfreq_suspend_device(struct devfreq *devfreq);
197extern int devfreq_resume_device(struct devfreq *devfreq);
a3c98b8b
MH
198
199/* Helper functions for devfreq user device driver with OPP. */
47d43ba7 200extern struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
ab5f299f 201 unsigned long *freq, u32 flags);
a3c98b8b
MH
202extern int devfreq_register_opp_notifier(struct device *dev,
203 struct devfreq *devfreq);
204extern int devfreq_unregister_opp_notifier(struct device *dev,
205 struct devfreq *devfreq);
d5b040d0
CC
206extern int devm_devfreq_register_opp_notifier(struct device *dev,
207 struct devfreq *devfreq);
208extern void devm_devfreq_unregister_opp_notifier(struct device *dev,
209 struct devfreq *devfreq);
a3c98b8b 210
8f510aeb
CC
211extern struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev,
212 int index);
213
08e75e75
JM
214/**
215 * devfreq_update_stats() - update the last_status pointer in struct devfreq
216 * @df: the devfreq instance whose status needs updating
d54cdf3f
MH
217 *
218 * Governors are recommended to use this function along with last_status,
219 * which allows other entities to reuse the last_status without affecting
220 * the values fetched later by governors.
08e75e75
JM
221 */
222static inline int devfreq_update_stats(struct devfreq *df)
223{
224 return df->profile->get_dev_status(df->dev.parent, &df->last_status);
225}
226
883d588e 227#if IS_ENABLED(CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND)
ce26c5bb
MH
228/**
229 * struct devfreq_simple_ondemand_data - void *data fed to struct devfreq
230 * and devfreq_add_device
e09651fc 231 * @upthreshold: If the load is over this value, the frequency jumps.
ce26c5bb 232 * Specify 0 to use the default. Valid value = 0 to 100.
e09651fc 233 * @downdifferential: If the load is under upthreshold - downdifferential,
ce26c5bb
MH
234 * the governor may consider slowing the frequency down.
235 * Specify 0 to use the default. Valid value = 0 to 100.
236 * downdifferential < upthreshold must hold.
237 *
238 * If the fed devfreq_simple_ondemand_data pointer is NULL to the governor,
239 * the governor uses the default values.
240 */
241struct devfreq_simple_ondemand_data {
242 unsigned int upthreshold;
243 unsigned int downdifferential;
244};
245#endif
246
a3c98b8b 247#else /* !CONFIG_PM_DEVFREQ */
5faaa035 248static inline struct devfreq *devfreq_add_device(struct device *dev,
a3c98b8b 249 struct devfreq_dev_profile *profile,
1b5c1be2 250 const char *governor_name,
a95e1f5d 251 void *data)
a3c98b8b 252{
8cd84092 253 return ERR_PTR(-ENOSYS);
a3c98b8b
MH
254}
255
5faaa035 256static inline int devfreq_remove_device(struct devfreq *devfreq)
a3c98b8b
MH
257{
258 return 0;
259}
260
8cd84092
CC
261static inline struct devfreq *devm_devfreq_add_device(struct device *dev,
262 struct devfreq_dev_profile *profile,
263 const char *governor_name,
264 void *data)
265{
266 return ERR_PTR(-ENOSYS);
267}
268
269static inline void devm_devfreq_remove_device(struct device *dev,
270 struct devfreq *devfreq)
271{
272}
273
5faaa035 274static inline int devfreq_suspend_device(struct devfreq *devfreq)
206c30cf
RV
275{
276 return 0;
277}
278
5faaa035 279static inline int devfreq_resume_device(struct devfreq *devfreq)
206c30cf
RV
280{
281 return 0;
282}
283
47d43ba7 284static inline struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
ab5f299f 285 unsigned long *freq, u32 flags)
a3c98b8b 286{
5faaa035 287 return ERR_PTR(-EINVAL);
a3c98b8b
MH
288}
289
5faaa035 290static inline int devfreq_register_opp_notifier(struct device *dev,
a3c98b8b
MH
291 struct devfreq *devfreq)
292{
293 return -EINVAL;
294}
295
5faaa035 296static inline int devfreq_unregister_opp_notifier(struct device *dev,
a3c98b8b
MH
297 struct devfreq *devfreq)
298{
299 return -EINVAL;
300}
301
d5b040d0
CC
302static inline int devm_devfreq_register_opp_notifier(struct device *dev,
303 struct devfreq *devfreq)
304{
305 return -EINVAL;
306}
307
308static inline void devm_devfreq_unregister_opp_notifier(struct device *dev,
309 struct devfreq *devfreq)
310{
311}
08e75e75 312
8f510aeb
CC
313static inline struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev,
314 int index)
315{
316 return ERR_PTR(-ENODEV);
317}
318
08e75e75
JM
319static inline int devfreq_update_stats(struct devfreq *df)
320{
321 return -EINVAL;
322}
a3c98b8b
MH
323#endif /* CONFIG_PM_DEVFREQ */
324
325#endif /* __LINUX_DEVFREQ_H__ */
This page took 0.470112 seconds and 5 git commands to generate.