blob: 9c74fbbf5e7c763c209bc7fa79807b8bf86ad0c6 [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>
18#include <linux/opp.h>
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.
Nishanth Menond6abbcf2012-10-29 08:02:23 -050028 * @total_time: The total time represented by this instance of
MyungJoo Hama3c98b82011-10-02 00:19:15 +020029 * devfreq_dev_status
Nishanth Menond6abbcf2012-10-29 08:02:23 -050030 * @busy_time: The time that the device was working among the
MyungJoo Hama3c98b82011-10-02 00:19:15 +020031 * total_time.
Nishanth Menond6abbcf2012-10-29 08:02:23 -050032 * @current_frequency: The operating frequency.
33 * @private_data: An entry not specified by the devfreq framework.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020034 * 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;
Jonathan Corbet1a51cfd2011-11-07 23:54:53 +010044 void *private_data;
MyungJoo Hama3c98b82011-10-02 00:19:15 +020045};
46
MyungJoo Hamab5f2992012-03-16 21:54:53 +010047/*
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
MyungJoo Hama3c98b82011-10-02 00:19:15 +020055/**
Jeremy Gebbend24922d2013-03-14 11:30:39 -060056 * struct devfreq_governor_data - mapping to per device governor data
57 * @name: The name of the governor.
58 * @data: Private data for the governor.
59 *
60 * Devices may pass in an array of this structure to allow governors
61 * to get the correct data pointer when they are enabled after
62 * the devfreq_add_device() call.
63 */
64struct devfreq_governor_data {
65 const char *name;
66 void *data;
67};
68
69/**
MyungJoo Hama3c98b82011-10-02 00:19:15 +020070 * struct devfreq_dev_profile - Devfreq's user device profile
Nishanth Menond6abbcf2012-10-29 08:02:23 -050071 * @initial_freq: The operating frequency when devfreq_add_device() is
MyungJoo Hama3c98b82011-10-02 00:19:15 +020072 * called.
Nishanth Menond6abbcf2012-10-29 08:02:23 -050073 * @polling_ms: The polling interval in ms. 0 disables polling.
74 * @target: The device should set its operating frequency at
MyungJoo Hama3c98b82011-10-02 00:19:15 +020075 * freq or lowest-upper-than-freq value. If freq is
76 * higher than any operable frequency, set maximum.
77 * Before returning, target function should set
78 * freq at the current frequency.
MyungJoo Hamab5f2992012-03-16 21:54:53 +010079 * The "flags" parameter's possible values are
80 * explained above with "DEVFREQ_FLAG_*" macros.
Nishanth Menond6abbcf2012-10-29 08:02:23 -050081 * @get_dev_status: The device should provide the current performance
MyungJoo Hama3c98b82011-10-02 00:19:15 +020082 * status to devfreq, which is used by governors.
Nishanth Menond6abbcf2012-10-29 08:02:23 -050083 * @get_cur_freq: The device should provide the current frequency
Rajagopal Venkat37926742012-10-26 01:50:26 +020084 * at which it is operating.
Nishanth Menond6abbcf2012-10-29 08:02:23 -050085 * @exit: An optional callback that is called when devfreq
MyungJoo Hama3c98b82011-10-02 00:19:15 +020086 * is removing the devfreq object due to error or
87 * from devfreq_remove_device() call. If the user
88 * has registered devfreq->nb at a notifier-head,
89 * this is the time to unregister it.
Jonghwa Lee2468b282012-08-23 20:00:46 +090090 * @freq_table: Optional list of frequencies to support statistics.
91 * @max_state: The size of freq_table.
Jeremy Gebbend24922d2013-03-14 11:30:39 -060092 * @governor_data: Optional array of private data for governors.
93 * This is used to set devfreq->data correctly
94 * when a governor is enabled via sysfs or other
95 * mechanisms after the devfreq_add_device() call.
96 * @num_governor_data: Number of elements in governor_data.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020097 */
98struct devfreq_dev_profile {
99 unsigned long initial_freq;
100 unsigned int polling_ms;
101
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100102 int (*target)(struct device *dev, unsigned long *freq, u32 flags);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200103 int (*get_dev_status)(struct device *dev,
104 struct devfreq_dev_status *stat);
Rajagopal Venkat37926742012-10-26 01:50:26 +0200105 int (*get_cur_freq)(struct device *dev, unsigned long *freq);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200106 void (*exit)(struct device *dev);
Jonghwa Lee2468b282012-08-23 20:00:46 +0900107
108 unsigned int *freq_table;
109 unsigned int max_state;
Jeremy Gebbend24922d2013-03-14 11:30:39 -0600110 const struct devfreq_governor_data *governor_data;
111 unsigned int num_governor_data;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200112};
113
114/**
115 * struct devfreq_governor - Devfreq policy governor
Nishanth Menon71502002012-10-29 15:01:43 -0500116 * @node: list node - contains registered devfreq governors
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500117 * @name: Governor's name
118 * @get_target_freq: Returns desired operating frequency for the device.
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200119 * Basically, get_target_freq will run
120 * devfreq_dev_profile.get_dev_status() to get the
121 * status of the device (load = busy_time / total_time).
122 * If no_central_polling is set, this callback is called
123 * only with update_devfreq() notified by OPP.
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500124 * @event_handler: Callback for devfreq core framework to notify events
Rajagopal Venkat97ad73e2012-10-26 01:50:09 +0200125 * to governors. Events include per device governor
126 * init and exit, opp changes out of devfreq, suspend
127 * and resume of per device devfreq during device idle.
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200128 *
129 * Note that the callbacks are called with devfreq->lock locked by devfreq.
130 */
131struct devfreq_governor {
Nishanth Menon71502002012-10-29 15:01:43 -0500132 struct list_head node;
133
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200134 const char name[DEVFREQ_NAME_LEN];
135 int (*get_target_freq)(struct devfreq *this, unsigned long *freq);
Rajagopal Venkat97ad73e2012-10-26 01:50:09 +0200136 int (*event_handler)(struct devfreq *devfreq,
137 unsigned int event, void *data);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200138};
139
140/**
141 * struct devfreq - Device devfreq structure
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500142 * @node: list node - contains the devices with devfreq that have been
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200143 * registered.
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500144 * @lock: a mutex to protect accessing devfreq.
145 * @dev: device registered by devfreq class. dev.parent is the device
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200146 * using devfreq.
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500147 * @profile: device-specific devfreq profile
148 * @governor: method how to choose frequency based on the usage.
Nishanth Menona6134a42012-10-29 15:01:45 -0500149 * @governor_name: devfreq governor name for use with this devfreq
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500150 * @nb: notifier block used to notify devfreq object that it should
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200151 * reevaluate operable frequencies. Devfreq users may use
152 * devfreq.nb to the corresponding register notifier call chain.
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500153 * @work: delayed work for load monitoring.
154 * @previous_freq: previously configured frequency value.
155 * @data: Private data of the governor. The devfreq framework does not
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200156 * touch this.
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500157 * @min_freq: Limit minimum frequency requested by user (0: none)
158 * @max_freq: Limit maximum frequency requested by user (0: none)
159 * @stop_polling: devfreq polling status of a device.
Jonghwa Lee2468b282012-08-23 20:00:46 +0900160 * @total_trans: Number of devfreq transitions
161 * @trans_table: Statistics of devfreq transitions
162 * @time_in_state: Statistics of devfreq states
163 * @last_stat_updated: The last time stat updated
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200164 *
165 * This structure stores the devfreq information for a give device.
166 *
167 * Note that when a governor accesses entries in struct devfreq in its
168 * functions except for the context of callbacks defined in struct
169 * devfreq_governor, the governor should protect its access with the
170 * struct mutex lock in struct devfreq. A governor may use this mutex
171 * to protect its own private data in void *data as well.
172 */
173struct devfreq {
174 struct list_head node;
175
176 struct mutex lock;
177 struct device dev;
178 struct devfreq_dev_profile *profile;
179 const struct devfreq_governor *governor;
Nishanth Menona6134a42012-10-29 15:01:45 -0500180 char governor_name[DEVFREQ_NAME_LEN];
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200181 struct notifier_block nb;
Rajagopal Venkat97ad73e2012-10-26 01:50:09 +0200182 struct delayed_work work;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200183
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200184 unsigned long previous_freq;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200185
186 void *data; /* private data for governors */
187
MyungJoo Ham6530b9d2011-12-09 16:42:19 +0900188 unsigned long min_freq;
189 unsigned long max_freq;
Rajagopal Venkat97ad73e2012-10-26 01:50:09 +0200190 bool stop_polling;
Jonghwa Lee2468b282012-08-23 20:00:46 +0900191
192 /* information for device freqeuncy transition */
193 unsigned int total_trans;
194 unsigned int *trans_table;
195 unsigned long *time_in_state;
196 unsigned long last_stat_updated;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200197};
198
199#if defined(CONFIG_PM_DEVFREQ)
200extern struct devfreq *devfreq_add_device(struct device *dev,
201 struct devfreq_dev_profile *profile,
Nishanth Menona6134a42012-10-29 15:01:45 -0500202 const char *governor_name,
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200203 void *data);
204extern int devfreq_remove_device(struct devfreq *devfreq);
Rajagopal Venkat6efab212012-10-26 01:50:18 +0200205extern int devfreq_suspend_device(struct devfreq *devfreq);
206extern int devfreq_resume_device(struct devfreq *devfreq);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200207
208/* Helper functions for devfreq user device driver with OPP. */
209extern struct opp *devfreq_recommended_opp(struct device *dev,
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100210 unsigned long *freq, u32 flags);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200211extern int devfreq_register_opp_notifier(struct device *dev,
212 struct devfreq *devfreq);
213extern int devfreq_unregister_opp_notifier(struct device *dev,
214 struct devfreq *devfreq);
215
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200216#ifdef CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200217/**
218 * struct devfreq_simple_ondemand_data - void *data fed to struct devfreq
219 * and devfreq_add_device
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500220 * @upthreshold: If the load is over this value, the frequency jumps.
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200221 * Specify 0 to use the default. Valid value = 0 to 100.
Nishanth Menond6abbcf2012-10-29 08:02:23 -0500222 * @downdifferential: If the load is under upthreshold - downdifferential,
MyungJoo Hamce26c5b2011-10-02 00:19:34 +0200223 * the governor may consider slowing the frequency down.
224 * Specify 0 to use the default. Valid value = 0 to 100.
225 * downdifferential < upthreshold must hold.
226 *
227 * If the fed devfreq_simple_ondemand_data pointer is NULL to the governor,
228 * the governor uses the default values.
229 */
230struct devfreq_simple_ondemand_data {
231 unsigned int upthreshold;
232 unsigned int downdifferential;
233};
234#endif
235
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200236#else /* !CONFIG_PM_DEVFREQ */
237static struct devfreq *devfreq_add_device(struct device *dev,
238 struct devfreq_dev_profile *profile,
Nishanth Menona6134a42012-10-29 15:01:45 -0500239 const char *governor_name,
MyungJoo Hama95e1f52012-01-11 17:44:28 +0900240 void *data)
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200241{
242 return NULL;
243}
244
MyungJoo Hama95e1f52012-01-11 17:44:28 +0900245static int devfreq_remove_device(struct devfreq *devfreq)
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200246{
247 return 0;
248}
249
Rajagopal Venkat6efab212012-10-26 01:50:18 +0200250static int devfreq_suspend_device(struct devfreq *devfreq)
251{
252 return 0;
253}
254
255static int devfreq_resume_device(struct devfreq *devfreq)
256{
257 return 0;
258}
259
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200260static struct opp *devfreq_recommended_opp(struct device *dev,
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100261 unsigned long *freq, u32 flags)
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200262{
263 return -EINVAL;
264}
265
266static int devfreq_register_opp_notifier(struct device *dev,
267 struct devfreq *devfreq)
268{
269 return -EINVAL;
270}
271
272static int devfreq_unregister_opp_notifier(struct device *dev,
273 struct devfreq *devfreq)
274{
275 return -EINVAL;
276}
277
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200278#endif /* CONFIG_PM_DEVFREQ */
279
280#endif /* __LINUX_DEVFREQ_H__ */