blob: eb84ce6b9a48081032aa7f4b488ba065d06df07a [file] [log] [blame]
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001/*
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>
Nishanth Menone4db1c72013-09-19 16:03:52 -050018#include <linux/pm_opp.h>
MyungJoo Hama3c98b82011-10-02 00:19:15 +020019
20#define DEVFREQ_NAME_LEN 16
21
Chanwoo Choi0fe3a662016-01-26 13:21:26 +090022/* DEVFREQ notifier interface */
23#define DEVFREQ_TRANSITION_NOTIFIER (0)
24
25/* Transition notifiers of DEVFREQ_TRANSITION_NOTIFIER */
26#define DEVFREQ_PRECHANGE (0)
27#define DEVFREQ_POSTCHANGE (1)
28
MyungJoo Hama3c98b82011-10-02 00:19:15 +020029struct devfreq;
30
31/**
32 * struct devfreq_dev_status - Data given from devfreq user device to
33 * governors. Represents the performance
34 * statistics.
Nishanth Menone09651f2012-10-29 08:02:23 -050035 * @total_time: The total time represented by this instance of
MyungJoo Hama3c98b82011-10-02 00:19:15 +020036 * devfreq_dev_status
Nishanth Menone09651f2012-10-29 08:02:23 -050037 * @busy_time: The time that the device was working among the
MyungJoo Hama3c98b82011-10-02 00:19:15 +020038 * total_time.
Nishanth Menone09651f2012-10-29 08:02:23 -050039 * @current_frequency: The operating frequency.
40 * @private_data: An entry not specified by the devfreq framework.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020041 * A device and a specific governor may have their
42 * own protocol with private_data. However, because
43 * this is governor-specific, a governor using this
44 * will be only compatible with devices aware of it.
45 */
46struct devfreq_dev_status {
47 /* both since the last measure */
48 unsigned long total_time;
49 unsigned long busy_time;
50 unsigned long current_frequency;
Jonathan Corbet1a51cfd2011-11-07 23:54:53 +010051 void *private_data;
MyungJoo Hama3c98b82011-10-02 00:19:15 +020052};
53
MyungJoo Hamab5f2992012-03-16 21:54:53 +010054/*
55 * The resulting frequency should be at most this. (this bound is the
56 * least upper bound; thus, the resulting freq should be lower or same)
57 * If the flag is not set, the resulting frequency should be at most the
58 * bound (greatest lower bound)
59 */
60#define DEVFREQ_FLAG_LEAST_UPPER_BOUND 0x1
61
MyungJoo Hama3c98b82011-10-02 00:19:15 +020062/**
63 * struct devfreq_dev_profile - Devfreq's user device profile
Nishanth Menone09651f2012-10-29 08:02:23 -050064 * @initial_freq: The operating frequency when devfreq_add_device() is
MyungJoo Hama3c98b82011-10-02 00:19:15 +020065 * called.
Nishanth Menone09651f2012-10-29 08:02:23 -050066 * @polling_ms: The polling interval in ms. 0 disables polling.
67 * @target: The device should set its operating frequency at
MyungJoo Hama3c98b82011-10-02 00:19:15 +020068 * freq or lowest-upper-than-freq value. If freq is
69 * higher than any operable frequency, set maximum.
70 * Before returning, target function should set
71 * freq at the current frequency.
MyungJoo Hamab5f2992012-03-16 21:54:53 +010072 * The "flags" parameter's possible values are
73 * explained above with "DEVFREQ_FLAG_*" macros.
Nishanth Menone09651f2012-10-29 08:02:23 -050074 * @get_dev_status: The device should provide the current performance
MyungJoo Hamd54cdf32015-08-18 13:45:49 +090075 * status to devfreq. Governors are recommended not to
76 * use this directly. Instead, governors are recommended
77 * to use devfreq_update_stats() along with
78 * devfreq.last_status.
Nishanth Menone09651f2012-10-29 08:02:23 -050079 * @get_cur_freq: The device should provide the current frequency
Rajagopal Venkat7f98a902012-10-26 01:50:26 +020080 * at which it is operating.
Nishanth Menone09651f2012-10-29 08:02:23 -050081 * @exit: An optional callback that is called when devfreq
MyungJoo Hama3c98b82011-10-02 00:19:15 +020082 * is removing the devfreq object due to error or
83 * from devfreq_remove_device() call. If the user
84 * has registered devfreq->nb at a notifier-head,
85 * this is the time to unregister it.
Jonghwa Leee552bba2012-08-23 20:00:46 +090086 * @freq_table: Optional list of frequencies to support statistics.
87 * @max_state: The size of freq_table.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020088 */
89struct devfreq_dev_profile {
90 unsigned long initial_freq;
91 unsigned int polling_ms;
92
MyungJoo Hamab5f2992012-03-16 21:54:53 +010093 int (*target)(struct device *dev, unsigned long *freq, u32 flags);
MyungJoo Hama3c98b82011-10-02 00:19:15 +020094 int (*get_dev_status)(struct device *dev,
95 struct devfreq_dev_status *stat);
Rajagopal Venkat7f98a902012-10-26 01:50:26 +020096 int (*get_cur_freq)(struct device *dev, unsigned long *freq);
MyungJoo Hama3c98b82011-10-02 00:19:15 +020097 void (*exit)(struct device *dev);
Jonghwa Leee552bba2012-08-23 20:00:46 +090098
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +090099 unsigned long *freq_table;
Jonghwa Leee552bba2012-08-23 20:00:46 +0900100 unsigned int max_state;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200101};
102
103/**
104 * struct devfreq_governor - Devfreq policy governor
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500105 * @node: list node - contains registered devfreq governors
Nishanth Menone09651f2012-10-29 08:02:23 -0500106 * @name: Governor's name
Chanwoo Choi2294b772017-01-31 15:38:16 +0900107 * @immutable: Immutable flag for governor. If the value is 1,
108 * this govenror is never changeable to other governor.
Nishanth Menone09651f2012-10-29 08:02:23 -0500109 * @get_target_freq: Returns desired operating frequency for the device.
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200110 * Basically, get_target_freq will run
111 * devfreq_dev_profile.get_dev_status() to get the
112 * status of the device (load = busy_time / total_time).
113 * If no_central_polling is set, this callback is called
114 * only with update_devfreq() notified by OPP.
Nishanth Menone09651f2012-10-29 08:02:23 -0500115 * @event_handler: Callback for devfreq core framework to notify events
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200116 * to governors. Events include per device governor
117 * init and exit, opp changes out of devfreq, suspend
118 * and resume of per device devfreq during device idle.
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200119 *
120 * Note that the callbacks are called with devfreq->lock locked by devfreq.
121 */
122struct devfreq_governor {
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500123 struct list_head node;
124
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200125 const char name[DEVFREQ_NAME_LEN];
Chanwoo Choi2294b772017-01-31 15:38:16 +0900126 const unsigned int immutable;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200127 int (*get_target_freq)(struct devfreq *this, unsigned long *freq);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200128 int (*event_handler)(struct devfreq *devfreq,
129 unsigned int event, void *data);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200130};
131
132/**
133 * struct devfreq - Device devfreq structure
Nishanth Menone09651f2012-10-29 08:02:23 -0500134 * @node: list node - contains the devices with devfreq that have been
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200135 * registered.
Nishanth Menone09651f2012-10-29 08:02:23 -0500136 * @lock: a mutex to protect accessing devfreq.
137 * @dev: device registered by devfreq class. dev.parent is the device
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200138 * using devfreq.
Nishanth Menone09651f2012-10-29 08:02:23 -0500139 * @profile: device-specific devfreq profile
140 * @governor: method how to choose frequency based on the usage.
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500141 * @governor_name: devfreq governor name for use with this devfreq
Nishanth Menone09651f2012-10-29 08:02:23 -0500142 * @nb: notifier block used to notify devfreq object that it should
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200143 * reevaluate operable frequencies. Devfreq users may use
144 * devfreq.nb to the corresponding register notifier call chain.
Nishanth Menone09651f2012-10-29 08:02:23 -0500145 * @work: delayed work for load monitoring.
146 * @previous_freq: previously configured frequency value.
147 * @data: Private data of the governor. The devfreq framework does not
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200148 * touch this.
Nishanth Menone09651f2012-10-29 08:02:23 -0500149 * @min_freq: Limit minimum frequency requested by user (0: none)
150 * @max_freq: Limit maximum frequency requested by user (0: none)
151 * @stop_polling: devfreq polling status of a device.
Jonghwa Leee552bba2012-08-23 20:00:46 +0900152 * @total_trans: Number of devfreq transitions
153 * @trans_table: Statistics of devfreq transitions
154 * @time_in_state: Statistics of devfreq states
155 * @last_stat_updated: The last time stat updated
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900156 * @transition_notifier_list: list head of DEVFREQ_TRANSITION_NOTIFIER notifier
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200157 *
158 * This structure stores the devfreq information for a give device.
159 *
160 * Note that when a governor accesses entries in struct devfreq in its
161 * functions except for the context of callbacks defined in struct
162 * devfreq_governor, the governor should protect its access with the
163 * struct mutex lock in struct devfreq. A governor may use this mutex
164 * to protect its own private data in void *data as well.
165 */
166struct devfreq {
167 struct list_head node;
168
169 struct mutex lock;
Jonathan Avila5a2f4ce2017-12-01 16:45:18 -0800170 struct mutex sysfs_lock;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200171 struct device dev;
172 struct devfreq_dev_profile *profile;
173 const struct devfreq_governor *governor;
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500174 char governor_name[DEVFREQ_NAME_LEN];
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200175 struct notifier_block nb;
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200176 struct delayed_work work;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200177
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200178 unsigned long previous_freq;
Javi Merino08e75e72015-08-14 18:56:56 +0100179 struct devfreq_dev_status last_status;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200180
181 void *data; /* private data for governors */
182
MyungJoo Ham6530b9de2011-12-09 16:42:19 +0900183 unsigned long min_freq;
184 unsigned long max_freq;
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200185 bool stop_polling;
Jonghwa Leee552bba2012-08-23 20:00:46 +0900186
LABBE Corentin05851232013-09-26 16:50:21 +0200187 /* information for device frequency transition */
Jonghwa Leee552bba2012-08-23 20:00:46 +0900188 unsigned int total_trans;
189 unsigned int *trans_table;
190 unsigned long *time_in_state;
191 unsigned long last_stat_updated;
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900192
193 struct srcu_notifier_head transition_notifier_list;
194};
195
196struct devfreq_freqs {
197 unsigned long old;
198 unsigned long new;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200199};
200
201#if defined(CONFIG_PM_DEVFREQ)
202extern struct devfreq *devfreq_add_device(struct device *dev,
203 struct devfreq_dev_profile *profile,
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500204 const char *governor_name,
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200205 void *data);
206extern int devfreq_remove_device(struct devfreq *devfreq);
Chanwoo Choi8cd84092014-05-09 16:43:08 +0900207extern struct devfreq *devm_devfreq_add_device(struct device *dev,
208 struct devfreq_dev_profile *profile,
209 const char *governor_name,
210 void *data);
211extern void devm_devfreq_remove_device(struct device *dev,
212 struct devfreq *devfreq);
MyungJoo Hamde9c7392013-02-05 18:40:17 +0900213
Rafael J. Wysocki464ed182014-12-19 15:37:54 +0100214/* Supposed to be called by PM callbacks */
Rajagopal Venkat206c30c2012-10-26 01:50:18 +0200215extern int devfreq_suspend_device(struct devfreq *devfreq);
216extern int devfreq_resume_device(struct devfreq *devfreq);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200217
218/* Helper functions for devfreq user device driver with OPP. */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500219extern struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100220 unsigned long *freq, u32 flags);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200221extern int devfreq_register_opp_notifier(struct device *dev,
222 struct devfreq *devfreq);
223extern int devfreq_unregister_opp_notifier(struct device *dev,
224 struct devfreq *devfreq);
Chanwoo Choid5b040d2014-05-09 16:43:09 +0900225extern int devm_devfreq_register_opp_notifier(struct device *dev,
226 struct devfreq *devfreq);
227extern void devm_devfreq_unregister_opp_notifier(struct device *dev,
228 struct devfreq *devfreq);
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900229extern int devfreq_register_notifier(struct devfreq *devfreq,
230 struct notifier_block *nb,
231 unsigned int list);
232extern int devfreq_unregister_notifier(struct devfreq *devfreq,
233 struct notifier_block *nb,
234 unsigned int list);
235extern int devm_devfreq_register_notifier(struct device *dev,
236 struct devfreq *devfreq,
237 struct notifier_block *nb,
238 unsigned int list);
239extern void devm_devfreq_unregister_notifier(struct device *dev,
240 struct devfreq *devfreq,
241 struct notifier_block *nb,
242 unsigned int list);
Chanwoo Choi8f510ae2015-11-10 20:31:07 +0900243extern struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev,
244 int index);
245
Javi Merino08e75e72015-08-14 18:56:56 +0100246/**
247 * devfreq_update_stats() - update the last_status pointer in struct devfreq
248 * @df: the devfreq instance whose status needs updating
MyungJoo Hamd54cdf32015-08-18 13:45:49 +0900249 *
250 * Governors are recommended to use this function along with last_status,
251 * which allows other entities to reuse the last_status without affecting
252 * the values fetched later by governors.
Javi Merino08e75e72015-08-14 18:56:56 +0100253 */
254static inline int devfreq_update_stats(struct devfreq *df)
255{
256 return df->profile->get_dev_status(df->dev.parent, &df->last_status);
257}
258
MyungJoo Ham883d5882012-11-21 17:17:11 +0900259#if IS_ENABLED(CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND)
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200260/**
261 * struct devfreq_simple_ondemand_data - void *data fed to struct devfreq
262 * and devfreq_add_device
Nishanth Menone09651f2012-10-29 08:02:23 -0500263 * @upthreshold: If the load is over this value, the frequency jumps.
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200264 * Specify 0 to use the default. Valid value = 0 to 100.
Nishanth Menone09651f2012-10-29 08:02:23 -0500265 * @downdifferential: If the load is under upthreshold - downdifferential,
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200266 * the governor may consider slowing the frequency down.
267 * Specify 0 to use the default. Valid value = 0 to 100.
268 * downdifferential < upthreshold must hold.
Sahitya Tummala4b185482013-10-21 11:27:13 +0530269 * @simple_scaling: Setting this flag will scale the clocks up only if the
270 * load is above @upthreshold and will scale the clocks
271 * down only if the load is below @downdifferential.
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200272 *
273 * If the fed devfreq_simple_ondemand_data pointer is NULL to the governor,
274 * the governor uses the default values.
275 */
276struct devfreq_simple_ondemand_data {
277 unsigned int upthreshold;
278 unsigned int downdifferential;
Sahitya Tummala4b185482013-10-21 11:27:13 +0530279 unsigned int simple_scaling;
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200280};
281#endif
282
Chanwoo Choi99613312016-03-22 13:44:03 +0900283#if IS_ENABLED(CONFIG_DEVFREQ_GOV_PASSIVE)
284/**
285 * struct devfreq_passive_data - void *data fed to struct devfreq
286 * and devfreq_add_device
287 * @parent: the devfreq instance of parent device.
288 * @get_target_freq: Optional callback, Returns desired operating frequency
289 * for the device using passive governor. That is called
290 * when passive governor should decide the next frequency
291 * by using the new frequency of parent devfreq device
292 * using governors except for passive governor.
293 * If the devfreq device has the specific method to decide
294 * the next frequency, should use this callback.
295 * @this: the devfreq instance of own device.
296 * @nb: the notifier block for DEVFREQ_TRANSITION_NOTIFIER list
297 *
298 * The devfreq_passive_data have to set the devfreq instance of parent
299 * device with governors except for the passive governor. But, don't need to
300 * initialize the 'this' and 'nb' field because the devfreq core will handle
301 * them.
302 */
303struct devfreq_passive_data {
304 /* Should set the devfreq instance of parent device */
305 struct devfreq *parent;
306
307 /* Optional callback to decide the next frequency of passvice device */
308 int (*get_target_freq)(struct devfreq *this, unsigned long *freq);
309
310 /* For passive governor's internal use. Don't need to set them */
311 struct devfreq *this;
312 struct notifier_block nb;
313};
314#endif
315
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200316#else /* !CONFIG_PM_DEVFREQ */
Rajagopal Venkat5faaa032013-03-21 13:28:25 +0000317static inline struct devfreq *devfreq_add_device(struct device *dev,
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200318 struct devfreq_dev_profile *profile,
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500319 const char *governor_name,
MyungJoo Hama95e1f52012-01-11 17:44:28 +0900320 void *data)
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200321{
Chanwoo Choi8cd84092014-05-09 16:43:08 +0900322 return ERR_PTR(-ENOSYS);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200323}
324
Rajagopal Venkat5faaa032013-03-21 13:28:25 +0000325static inline int devfreq_remove_device(struct devfreq *devfreq)
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200326{
327 return 0;
328}
329
Chanwoo Choi8cd84092014-05-09 16:43:08 +0900330static inline struct devfreq *devm_devfreq_add_device(struct device *dev,
331 struct devfreq_dev_profile *profile,
332 const char *governor_name,
333 void *data)
334{
335 return ERR_PTR(-ENOSYS);
336}
337
338static inline void devm_devfreq_remove_device(struct device *dev,
339 struct devfreq *devfreq)
340{
341}
342
Rajagopal Venkat5faaa032013-03-21 13:28:25 +0000343static inline int devfreq_suspend_device(struct devfreq *devfreq)
Rajagopal Venkat206c30c2012-10-26 01:50:18 +0200344{
345 return 0;
346}
347
Rajagopal Venkat5faaa032013-03-21 13:28:25 +0000348static inline int devfreq_resume_device(struct devfreq *devfreq)
Rajagopal Venkat206c30c2012-10-26 01:50:18 +0200349{
350 return 0;
351}
352
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500353static inline struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100354 unsigned long *freq, u32 flags)
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200355{
Rajagopal Venkat5faaa032013-03-21 13:28:25 +0000356 return ERR_PTR(-EINVAL);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200357}
358
Rajagopal Venkat5faaa032013-03-21 13:28:25 +0000359static inline int devfreq_register_opp_notifier(struct device *dev,
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200360 struct devfreq *devfreq)
361{
362 return -EINVAL;
363}
364
Rajagopal Venkat5faaa032013-03-21 13:28:25 +0000365static inline int devfreq_unregister_opp_notifier(struct device *dev,
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200366 struct devfreq *devfreq)
367{
368 return -EINVAL;
369}
370
Chanwoo Choid5b040d2014-05-09 16:43:09 +0900371static inline int devm_devfreq_register_opp_notifier(struct device *dev,
372 struct devfreq *devfreq)
373{
374 return -EINVAL;
375}
376
377static inline void devm_devfreq_unregister_opp_notifier(struct device *dev,
378 struct devfreq *devfreq)
379{
380}
Javi Merino08e75e72015-08-14 18:56:56 +0100381
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900382static inline int devfreq_register_notifier(struct devfreq *devfreq,
383 struct notifier_block *nb,
384 unsigned int list)
385{
386 return 0;
387}
388
389static inline int devfreq_unregister_notifier(struct devfreq *devfreq,
390 struct notifier_block *nb,
391 unsigned int list)
392{
393 return 0;
394}
395
396static inline int devm_devfreq_register_notifier(struct device *dev,
397 struct devfreq *devfreq,
398 struct notifier_block *nb,
399 unsigned int list)
400{
401 return 0;
402}
403
404static inline void devm_devfreq_unregister_notifier(struct device *dev,
405 struct devfreq *devfreq,
406 struct notifier_block *nb,
407 unsigned int list)
408{
409}
410
Chanwoo Choi8f510ae2015-11-10 20:31:07 +0900411static inline struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev,
412 int index)
413{
414 return ERR_PTR(-ENODEV);
415}
416
Javi Merino08e75e72015-08-14 18:56:56 +0100417static inline int devfreq_update_stats(struct devfreq *df)
418{
419 return -EINVAL;
420}
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200421#endif /* CONFIG_PM_DEVFREQ */
422
423#endif /* __LINUX_DEVFREQ_H__ */