Merge tag 'drm-fixes-2024-06-22' of https://gitlab.freedesktop.org/drm/kernel
[linux-2.6-block.git] / include / linux / devfreq.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
a3c98b8b
MH
2/*
3 * devfreq: Generic Dynamic Voltage and Frequency Scaling (DVFS) Framework
4 * for Non-CPU Devices.
5 *
6 * Copyright (C) 2011 Samsung Electronics
7 * MyungJoo Ham <myungjoo.ham@samsung.com>
a3c98b8b
MH
8 */
9
10#ifndef __LINUX_DEVFREQ_H__
11#define __LINUX_DEVFREQ_H__
12
13#include <linux/device.h>
14#include <linux/notifier.h>
e4db1c74 15#include <linux/pm_opp.h>
27dbc542 16#include <linux/pm_qos.h>
a3c98b8b 17
aa7c352f
CC
18/* DEVFREQ governor name */
19#define DEVFREQ_GOV_SIMPLE_ONDEMAND "simple_ondemand"
20#define DEVFREQ_GOV_PERFORMANCE "performance"
21#define DEVFREQ_GOV_POWERSAVE "powersave"
22#define DEVFREQ_GOV_USERSPACE "userspace"
23#define DEVFREQ_GOV_PASSIVE "passive"
24
0fe3a664
CC
25/* DEVFREQ notifier interface */
26#define DEVFREQ_TRANSITION_NOTIFIER (0)
27
28/* Transition notifiers of DEVFREQ_TRANSITION_NOTIFIER */
29#define DEVFREQ_PRECHANGE (0)
30#define DEVFREQ_POSTCHANGE (1)
31
4dc3bab8
CC
32/* DEVFREQ work timers */
33enum devfreq_timer {
34 DEVFREQ_TIMER_DEFERRABLE = 0,
35 DEVFREQ_TIMER_DELAYED,
36 DEVFREQ_TIMER_NUM,
37};
38
a3c98b8b 39struct devfreq;
3ea6b700 40struct devfreq_governor;
a03dacb0 41struct devfreq_cpu_data;
1224451b 42struct thermal_cooling_device;
a3c98b8b
MH
43
44/**
45 * struct devfreq_dev_status - Data given from devfreq user device to
46 * governors. Represents the performance
47 * statistics.
e09651fc 48 * @total_time: The total time represented by this instance of
a3c98b8b 49 * devfreq_dev_status
e09651fc 50 * @busy_time: The time that the device was working among the
a3c98b8b 51 * total_time.
e09651fc
NM
52 * @current_frequency: The operating frequency.
53 * @private_data: An entry not specified by the devfreq framework.
a3c98b8b
MH
54 * A device and a specific governor may have their
55 * own protocol with private_data. However, because
56 * this is governor-specific, a governor using this
57 * will be only compatible with devices aware of it.
58 */
59struct devfreq_dev_status {
60 /* both since the last measure */
61 unsigned long total_time;
62 unsigned long busy_time;
63 unsigned long current_frequency;
1a51cfdc 64 void *private_data;
a3c98b8b
MH
65};
66
ab5f299f
MH
67/*
68 * The resulting frequency should be at most this. (this bound is the
69 * least upper bound; thus, the resulting freq should be lower or same)
70 * If the flag is not set, the resulting frequency should be at most the
71 * bound (greatest lower bound)
72 */
73#define DEVFREQ_FLAG_LEAST_UPPER_BOUND 0x1
74
a3c98b8b
MH
75/**
76 * struct devfreq_dev_profile - Devfreq's user device profile
e09651fc 77 * @initial_freq: The operating frequency when devfreq_add_device() is
a3c98b8b 78 * called.
e09651fc 79 * @polling_ms: The polling interval in ms. 0 disables polling.
4dc3bab8 80 * @timer: Timer type is either deferrable or delayed timer.
e09651fc 81 * @target: The device should set its operating frequency at
a3c98b8b
MH
82 * freq or lowest-upper-than-freq value. If freq is
83 * higher than any operable frequency, set maximum.
84 * Before returning, target function should set
85 * freq at the current frequency.
ab5f299f
MH
86 * The "flags" parameter's possible values are
87 * explained above with "DEVFREQ_FLAG_*" macros.
e09651fc 88 * @get_dev_status: The device should provide the current performance
d54cdf3f
MH
89 * status to devfreq. Governors are recommended not to
90 * use this directly. Instead, governors are recommended
91 * to use devfreq_update_stats() along with
92 * devfreq.last_status.
e09651fc 93 * @get_cur_freq: The device should provide the current frequency
7f98a905 94 * at which it is operating.
e09651fc 95 * @exit: An optional callback that is called when devfreq
a3c98b8b
MH
96 * is removing the devfreq object due to error or
97 * from devfreq_remove_device() call. If the user
98 * has registered devfreq->nb at a notifier-head,
99 * this is the time to unregister it.
416b46a2
CC
100 * @freq_table: Optional list of frequencies to support statistics
101 * and freq_table must be generated in ascending order.
102 * @max_state: The size of freq_table.
1224451b
DL
103 *
104 * @is_cooling_device: A self-explanatory boolean giving the device a
105 * cooling effect property.
a3c98b8b
MH
106 */
107struct devfreq_dev_profile {
108 unsigned long initial_freq;
109 unsigned int polling_ms;
4dc3bab8 110 enum devfreq_timer timer;
a3c98b8b 111
ab5f299f 112 int (*target)(struct device *dev, unsigned long *freq, u32 flags);
a3c98b8b
MH
113 int (*get_dev_status)(struct device *dev,
114 struct devfreq_dev_status *stat);
7f98a905 115 int (*get_cur_freq)(struct device *dev, unsigned long *freq);
a3c98b8b 116 void (*exit)(struct device *dev);
e552bbaf 117
0ec09ac2 118 unsigned long *freq_table;
e552bbaf 119 unsigned int max_state;
4a3a2c32
CJ
120
121 bool is_cooling_device;
a3c98b8b
MH
122};
123
1ebd0bc0
KK
124/**
125 * struct devfreq_stats - Statistics of devfreq device behavior
126 * @total_trans: Number of devfreq transitions.
127 * @trans_table: Statistics of devfreq transitions.
128 * @time_in_state: Statistics of devfreq states.
129 * @last_update: The last time stats were updated.
130 */
131struct devfreq_stats {
132 unsigned int total_trans;
133 unsigned int *trans_table;
134 u64 *time_in_state;
135 u64 last_update;
136};
137
a3c98b8b
MH
138/**
139 * struct devfreq - Device devfreq structure
e09651fc 140 * @node: list node - contains the devices with devfreq that have been
a3c98b8b 141 * registered.
e09651fc
NM
142 * @lock: a mutex to protect accessing devfreq.
143 * @dev: device registered by devfreq class. dev.parent is the device
a3c98b8b 144 * using devfreq.
e09651fc
NM
145 * @profile: device-specific devfreq profile
146 * @governor: method how to choose frequency based on the usage.
26f9c7cc 147 * @opp_table: Reference to OPP table of dev.parent, if one exists.
e09651fc 148 * @nb: notifier block used to notify devfreq object that it should
a3c98b8b
MH
149 * reevaluate operable frequencies. Devfreq users may use
150 * devfreq.nb to the corresponding register notifier call chain.
e09651fc 151 * @work: delayed work for load monitoring.
b5d281f6
CM
152 * @freq_table: current frequency table used by the devfreq driver.
153 * @max_state: count of entry present in the frequency table.
e09651fc 154 * @previous_freq: previously configured frequency value.
54cb5740 155 * @last_status: devfreq user device info, performance statistics
5fdded84
KF
156 * @data: devfreq driver pass to governors, governor should not change it.
157 * @governor_data: private data for governors, devfreq core doesn't touch it.
27dbc542
LC
158 * @user_min_freq_req: PM QoS minimum frequency request from user (via sysfs)
159 * @user_max_freq_req: PM QoS maximum frequency request from user (via sysfs)
f1d981ea
CC
160 * @scaling_min_freq: Limit minimum frequency requested by OPP interface
161 * @scaling_max_freq: Limit maximum frequency requested by OPP interface
e09651fc 162 * @stop_polling: devfreq polling status of a device.
83f8ca45
LL
163 * @suspend_freq: frequency of a device set during suspend phase.
164 * @resume_freq: frequency of a device set in resume phase.
165 * @suspend_count: suspend requests counter for a device.
1ebd0bc0 166 * @stats: Statistics of devfreq device behavior
0fe3a664 167 * @transition_notifier_list: list head of DEVFREQ_TRANSITION_NOTIFIER notifier
1224451b 168 * @cdev: Cooling device pointer if the devfreq has cooling property
05d7ae15
LC
169 * @nb_min: Notifier block for DEV_PM_QOS_MIN_FREQUENCY
170 * @nb_max: Notifier block for DEV_PM_QOS_MAX_FREQUENCY
a3c98b8b 171 *
54cb5740 172 * This structure stores the devfreq information for a given device.
a3c98b8b
MH
173 *
174 * Note that when a governor accesses entries in struct devfreq in its
175 * functions except for the context of callbacks defined in struct
176 * devfreq_governor, the governor should protect its access with the
177 * struct mutex lock in struct devfreq. A governor may use this mutex
7a51320e 178 * to protect its own private data in ``void *data`` as well.
a3c98b8b
MH
179 */
180struct devfreq {
181 struct list_head node;
182
183 struct mutex lock;
184 struct device dev;
185 struct devfreq_dev_profile *profile;
186 const struct devfreq_governor *governor;
26f9c7cc 187 struct opp_table *opp_table;
a3c98b8b 188 struct notifier_block nb;
7e6fdd4b 189 struct delayed_work work;
a3c98b8b 190
b5d281f6
CM
191 unsigned long *freq_table;
192 unsigned int max_state;
193
a3c98b8b 194 unsigned long previous_freq;
08e75e75 195 struct devfreq_dev_status last_status;
a3c98b8b 196
5fdded84
KF
197 void *data;
198 void *governor_data;
a3c98b8b 199
27dbc542
LC
200 struct dev_pm_qos_request user_min_freq_req;
201 struct dev_pm_qos_request user_max_freq_req;
f1d981ea
CC
202 unsigned long scaling_min_freq;
203 unsigned long scaling_max_freq;
7e6fdd4b 204 bool stop_polling;
e552bbaf 205
83f8ca45
LL
206 unsigned long suspend_freq;
207 unsigned long resume_freq;
208 atomic_t suspend_count;
209
1ebd0bc0
KK
210 /* information for device frequency transitions */
211 struct devfreq_stats stats;
0fe3a664
CC
212
213 struct srcu_notifier_head transition_notifier_list;
05d7ae15 214
1224451b
DL
215 /* Pointer to the cooling device if used for thermal mitigation */
216 struct thermal_cooling_device *cdev;
217
05d7ae15
LC
218 struct notifier_block nb_min;
219 struct notifier_block nb_max;
0fe3a664
CC
220};
221
222struct devfreq_freqs {
223 unsigned long old;
224 unsigned long new;
a3c98b8b
MH
225};
226
227#if defined(CONFIG_PM_DEVFREQ)
6d743493
CC
228struct devfreq *devfreq_add_device(struct device *dev,
229 struct devfreq_dev_profile *profile,
230 const char *governor_name,
231 void *data);
232int devfreq_remove_device(struct devfreq *devfreq);
233struct devfreq *devm_devfreq_add_device(struct device *dev,
234 struct devfreq_dev_profile *profile,
235 const char *governor_name,
236 void *data);
237void devm_devfreq_remove_device(struct device *dev, struct devfreq *devfreq);
de9c7394 238
464ed18e 239/* Supposed to be called by PM callbacks */
6d743493
CC
240int devfreq_suspend_device(struct devfreq *devfreq);
241int devfreq_resume_device(struct devfreq *devfreq);
a3c98b8b 242
6d743493
CC
243void devfreq_suspend(void);
244void devfreq_resume(void);
59031956 245
3e2ac979 246/* update_devfreq() - Reevaluate the device and configure frequency */
6d743493 247int update_devfreq(struct devfreq *devfreq);
b596d895 248
a3c98b8b 249/* Helper functions for devfreq user device driver with OPP. */
6d743493
CC
250struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
251 unsigned long *freq, u32 flags);
252int devfreq_register_opp_notifier(struct device *dev,
253 struct devfreq *devfreq);
254int devfreq_unregister_opp_notifier(struct device *dev,
255 struct devfreq *devfreq);
256int devm_devfreq_register_opp_notifier(struct device *dev,
257 struct devfreq *devfreq);
258void devm_devfreq_unregister_opp_notifier(struct device *dev,
259 struct devfreq *devfreq);
260int devfreq_register_notifier(struct devfreq *devfreq,
261 struct notifier_block *nb,
262 unsigned int list);
263int devfreq_unregister_notifier(struct devfreq *devfreq,
264 struct notifier_block *nb,
265 unsigned int list);
266int devm_devfreq_register_notifier(struct device *dev,
0fe3a664
CC
267 struct devfreq *devfreq,
268 struct notifier_block *nb,
269 unsigned int list);
6d743493 270void devm_devfreq_unregister_notifier(struct device *dev,
0fe3a664
CC
271 struct devfreq *devfreq,
272 struct notifier_block *nb,
273 unsigned int list);
7b38b7b0 274struct devfreq *devfreq_get_devfreq_by_node(struct device_node *node);
86d90fd9
CC
275struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev,
276 const char *phandle_name, int index);
dbd7a2a9 277#endif /* CONFIG_PM_DEVFREQ */
8f510aeb 278
ce26c5bb 279/**
7a51320e 280 * struct devfreq_simple_ondemand_data - ``void *data`` fed to struct devfreq
ce26c5bb 281 * and devfreq_add_device
e09651fc 282 * @upthreshold: If the load is over this value, the frequency jumps.
ce26c5bb 283 * Specify 0 to use the default. Valid value = 0 to 100.
e09651fc 284 * @downdifferential: If the load is under upthreshold - downdifferential,
ce26c5bb
MH
285 * the governor may consider slowing the frequency down.
286 * Specify 0 to use the default. Valid value = 0 to 100.
287 * downdifferential < upthreshold must hold.
288 *
289 * If the fed devfreq_simple_ondemand_data pointer is NULL to the governor,
290 * the governor uses the default values.
291 */
292struct devfreq_simple_ondemand_data {
293 unsigned int upthreshold;
294 unsigned int downdifferential;
295};
ce26c5bb 296
a03dacb0
SK
297enum devfreq_parent_dev_type {
298 DEVFREQ_PARENT_DEV,
299 CPUFREQ_PARENT_DEV,
300};
301
99613311 302/**
7a51320e 303 * struct devfreq_passive_data - ``void *data`` fed to struct devfreq
99613311
CC
304 * and devfreq_add_device
305 * @parent: the devfreq instance of parent device.
306 * @get_target_freq: Optional callback, Returns desired operating frequency
307 * for the device using passive governor. That is called
308 * when passive governor should decide the next frequency
309 * by using the new frequency of parent devfreq device
310 * using governors except for passive governor.
311 * If the devfreq device has the specific method to decide
312 * the next frequency, should use this callback.
a03dacb0
SK
313 * @parent_type: the parent type of the device.
314 * @this: the devfreq instance of own device.
315 * @nb: the notifier block for DEVFREQ_TRANSITION_NOTIFIER or
316 * CPUFREQ_TRANSITION_NOTIFIER list.
26984d9d 317 * @cpu_data_list: the list of cpu frequency data for all cpufreq_policy.
99613311
CC
318 *
319 * The devfreq_passive_data have to set the devfreq instance of parent
320 * device with governors except for the passive governor. But, don't need to
321 * initialize the 'this' and 'nb' field because the devfreq core will handle
322 * them.
323 */
324struct devfreq_passive_data {
325 /* Should set the devfreq instance of parent device */
326 struct devfreq *parent;
327
328 /* Optional callback to decide the next frequency of passvice device */
329 int (*get_target_freq)(struct devfreq *this, unsigned long *freq);
330
a03dacb0
SK
331 /* Should set the type of parent device */
332 enum devfreq_parent_dev_type parent_type;
333
99613311
CC
334 /* For passive governor's internal use. Don't need to set them */
335 struct devfreq *this;
336 struct notifier_block nb;
26984d9d 337 struct list_head cpu_data_list;
99613311 338};
99613311 339
dbd7a2a9 340#if !defined(CONFIG_PM_DEVFREQ)
5faaa035 341static inline struct devfreq *devfreq_add_device(struct device *dev,
6d743493
CC
342 struct devfreq_dev_profile *profile,
343 const char *governor_name,
344 void *data)
a3c98b8b 345{
8cd84092 346 return ERR_PTR(-ENOSYS);
a3c98b8b
MH
347}
348
5faaa035 349static inline int devfreq_remove_device(struct devfreq *devfreq)
a3c98b8b
MH
350{
351 return 0;
352}
353
8cd84092
CC
354static inline struct devfreq *devm_devfreq_add_device(struct device *dev,
355 struct devfreq_dev_profile *profile,
356 const char *governor_name,
357 void *data)
358{
359 return ERR_PTR(-ENOSYS);
360}
361
362static inline void devm_devfreq_remove_device(struct device *dev,
363 struct devfreq *devfreq)
364{
365}
366
5faaa035 367static inline int devfreq_suspend_device(struct devfreq *devfreq)
206c30cf
RV
368{
369 return 0;
370}
371
5faaa035 372static inline int devfreq_resume_device(struct devfreq *devfreq)
206c30cf
RV
373{
374 return 0;
375}
376
59031956
LL
377static inline void devfreq_suspend(void) {}
378static inline void devfreq_resume(void) {}
379
47d43ba7 380static inline struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
6d743493 381 unsigned long *freq, u32 flags)
a3c98b8b 382{
5faaa035 383 return ERR_PTR(-EINVAL);
a3c98b8b
MH
384}
385
5faaa035 386static inline int devfreq_register_opp_notifier(struct device *dev,
6d743493 387 struct devfreq *devfreq)
a3c98b8b
MH
388{
389 return -EINVAL;
390}
391
5faaa035 392static inline int devfreq_unregister_opp_notifier(struct device *dev,
6d743493 393 struct devfreq *devfreq)
a3c98b8b
MH
394{
395 return -EINVAL;
396}
397
d5b040d0 398static inline int devm_devfreq_register_opp_notifier(struct device *dev,
6d743493 399 struct devfreq *devfreq)
d5b040d0
CC
400{
401 return -EINVAL;
402}
403
404static inline void devm_devfreq_unregister_opp_notifier(struct device *dev,
6d743493 405 struct devfreq *devfreq)
d5b040d0
CC
406{
407}
08e75e75 408
0fe3a664
CC
409static inline int devfreq_register_notifier(struct devfreq *devfreq,
410 struct notifier_block *nb,
411 unsigned int list)
412{
413 return 0;
414}
415
416static inline int devfreq_unregister_notifier(struct devfreq *devfreq,
417 struct notifier_block *nb,
418 unsigned int list)
419{
420 return 0;
421}
422
423static inline int devm_devfreq_register_notifier(struct device *dev,
6d743493
CC
424 struct devfreq *devfreq,
425 struct notifier_block *nb,
426 unsigned int list)
0fe3a664
CC
427{
428 return 0;
429}
430
431static inline void devm_devfreq_unregister_notifier(struct device *dev,
6d743493
CC
432 struct devfreq *devfreq,
433 struct notifier_block *nb,
434 unsigned int list)
0fe3a664
CC
435{
436}
437
7b38b7b0
LC
438static inline struct devfreq *devfreq_get_devfreq_by_node(struct device_node *node)
439{
440 return ERR_PTR(-ENODEV);
441}
442
8f510aeb 443static inline struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev,
86d90fd9 444 const char *phandle_name, int index)
8f510aeb
CC
445{
446 return ERR_PTR(-ENODEV);
447}
448
08e75e75
JM
449static inline int devfreq_update_stats(struct devfreq *df)
450{
451 return -EINVAL;
452}
a3c98b8b
MH
453#endif /* CONFIG_PM_DEVFREQ */
454
455#endif /* __LINUX_DEVFREQ_H__ */