MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 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> |
| 18 | #include <linux/opp.h> |
| 19 | |
| 20 | #define DEVFREQ_NAME_LEN 16 |
| 21 | |
| 22 | struct devfreq; |
| 23 | |
| 24 | /** |
| 25 | * struct devfreq_dev_status - Data given from devfreq user device to |
| 26 | * governors. Represents the performance |
| 27 | * statistics. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 28 | * @total_time: The total time represented by this instance of |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 29 | * devfreq_dev_status |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 30 | * @busy_time: The time that the device was working among the |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 31 | * total_time. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 32 | * @current_frequency: The operating frequency. |
| 33 | * @private_data: An entry not specified by the devfreq framework. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 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 | */ |
| 39 | struct 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 Corbet | 1a51cfd | 2011-11-07 23:54:53 +0100 | [diff] [blame] | 44 | void *private_data; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 45 | }; |
| 46 | |
MyungJoo Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 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 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 55 | /** |
Jeremy Gebben | d24922d | 2013-03-14 11:30:39 -0600 | [diff] [blame] | 56 | * 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 | */ |
| 64 | struct devfreq_governor_data { |
| 65 | const char *name; |
| 66 | void *data; |
| 67 | }; |
| 68 | |
| 69 | /** |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 70 | * struct devfreq_dev_profile - Devfreq's user device profile |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 71 | * @initial_freq: The operating frequency when devfreq_add_device() is |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 72 | * called. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 73 | * @polling_ms: The polling interval in ms. 0 disables polling. |
| 74 | * @target: The device should set its operating frequency at |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 75 | * 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 Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 79 | * The "flags" parameter's possible values are |
| 80 | * explained above with "DEVFREQ_FLAG_*" macros. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 81 | * @get_dev_status: The device should provide the current performance |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 82 | * status to devfreq, which is used by governors. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 83 | * @get_cur_freq: The device should provide the current frequency |
Rajagopal Venkat | 3792674 | 2012-10-26 01:50:26 +0200 | [diff] [blame] | 84 | * at which it is operating. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 85 | * @exit: An optional callback that is called when devfreq |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 86 | * 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 Lee | 2468b28 | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 90 | * @freq_table: Optional list of frequencies to support statistics. |
| 91 | * @max_state: The size of freq_table. |
Jeremy Gebben | d24922d | 2013-03-14 11:30:39 -0600 | [diff] [blame] | 92 | * @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 Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 97 | */ |
| 98 | struct devfreq_dev_profile { |
| 99 | unsigned long initial_freq; |
| 100 | unsigned int polling_ms; |
| 101 | |
MyungJoo Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 102 | int (*target)(struct device *dev, unsigned long *freq, u32 flags); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 103 | int (*get_dev_status)(struct device *dev, |
| 104 | struct devfreq_dev_status *stat); |
Rajagopal Venkat | 3792674 | 2012-10-26 01:50:26 +0200 | [diff] [blame] | 105 | int (*get_cur_freq)(struct device *dev, unsigned long *freq); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 106 | void (*exit)(struct device *dev); |
Jonghwa Lee | 2468b28 | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 107 | |
| 108 | unsigned int *freq_table; |
| 109 | unsigned int max_state; |
Jeremy Gebben | d24922d | 2013-03-14 11:30:39 -0600 | [diff] [blame] | 110 | const struct devfreq_governor_data *governor_data; |
| 111 | unsigned int num_governor_data; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | /** |
| 115 | * struct devfreq_governor - Devfreq policy governor |
Nishanth Menon | 7150200 | 2012-10-29 15:01:43 -0500 | [diff] [blame] | 116 | * @node: list node - contains registered devfreq governors |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 117 | * @name: Governor's name |
| 118 | * @get_target_freq: Returns desired operating frequency for the device. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 119 | * 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 Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 124 | * @event_handler: Callback for devfreq core framework to notify events |
Rajagopal Venkat | 97ad73e | 2012-10-26 01:50:09 +0200 | [diff] [blame] | 125 | * 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 Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 128 | * |
| 129 | * Note that the callbacks are called with devfreq->lock locked by devfreq. |
| 130 | */ |
| 131 | struct devfreq_governor { |
Nishanth Menon | 7150200 | 2012-10-29 15:01:43 -0500 | [diff] [blame] | 132 | struct list_head node; |
| 133 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 134 | const char name[DEVFREQ_NAME_LEN]; |
| 135 | int (*get_target_freq)(struct devfreq *this, unsigned long *freq); |
Rajagopal Venkat | 97ad73e | 2012-10-26 01:50:09 +0200 | [diff] [blame] | 136 | int (*event_handler)(struct devfreq *devfreq, |
| 137 | unsigned int event, void *data); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 138 | }; |
| 139 | |
| 140 | /** |
| 141 | * struct devfreq - Device devfreq structure |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 142 | * @node: list node - contains the devices with devfreq that have been |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 143 | * registered. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 144 | * @lock: a mutex to protect accessing devfreq. |
| 145 | * @dev: device registered by devfreq class. dev.parent is the device |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 146 | * using devfreq. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 147 | * @profile: device-specific devfreq profile |
| 148 | * @governor: method how to choose frequency based on the usage. |
Nishanth Menon | a6134a4 | 2012-10-29 15:01:45 -0500 | [diff] [blame] | 149 | * @governor_name: devfreq governor name for use with this devfreq |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 150 | * @nb: notifier block used to notify devfreq object that it should |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 151 | * reevaluate operable frequencies. Devfreq users may use |
| 152 | * devfreq.nb to the corresponding register notifier call chain. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 153 | * @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 Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 156 | * touch this. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 157 | * @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 Lee | 2468b28 | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 160 | * @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 Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 164 | * |
| 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 | */ |
| 173 | struct 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 Menon | a6134a4 | 2012-10-29 15:01:45 -0500 | [diff] [blame] | 180 | char governor_name[DEVFREQ_NAME_LEN]; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 181 | struct notifier_block nb; |
Rajagopal Venkat | 97ad73e | 2012-10-26 01:50:09 +0200 | [diff] [blame] | 182 | struct delayed_work work; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 183 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 184 | unsigned long previous_freq; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 185 | |
| 186 | void *data; /* private data for governors */ |
| 187 | |
MyungJoo Ham | 6530b9d | 2011-12-09 16:42:19 +0900 | [diff] [blame] | 188 | unsigned long min_freq; |
| 189 | unsigned long max_freq; |
Rajagopal Venkat | 97ad73e | 2012-10-26 01:50:09 +0200 | [diff] [blame] | 190 | bool stop_polling; |
Jonghwa Lee | 2468b28 | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 191 | |
| 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 Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 197 | }; |
| 198 | |
| 199 | #if defined(CONFIG_PM_DEVFREQ) |
| 200 | extern struct devfreq *devfreq_add_device(struct device *dev, |
| 201 | struct devfreq_dev_profile *profile, |
Nishanth Menon | a6134a4 | 2012-10-29 15:01:45 -0500 | [diff] [blame] | 202 | const char *governor_name, |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 203 | void *data); |
| 204 | extern int devfreq_remove_device(struct devfreq *devfreq); |
Rajagopal Venkat | 6efab21 | 2012-10-26 01:50:18 +0200 | [diff] [blame] | 205 | extern int devfreq_suspend_device(struct devfreq *devfreq); |
| 206 | extern int devfreq_resume_device(struct devfreq *devfreq); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 207 | |
| 208 | /* Helper functions for devfreq user device driver with OPP. */ |
| 209 | extern struct opp *devfreq_recommended_opp(struct device *dev, |
MyungJoo Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 210 | unsigned long *freq, u32 flags); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 211 | extern int devfreq_register_opp_notifier(struct device *dev, |
| 212 | struct devfreq *devfreq); |
| 213 | extern int devfreq_unregister_opp_notifier(struct device *dev, |
| 214 | struct devfreq *devfreq); |
| 215 | |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 216 | #ifdef CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 217 | /** |
| 218 | * struct devfreq_simple_ondemand_data - void *data fed to struct devfreq |
| 219 | * and devfreq_add_device |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 220 | * @upthreshold: If the load is over this value, the frequency jumps. |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 221 | * Specify 0 to use the default. Valid value = 0 to 100. |
Nishanth Menon | d6abbcf | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 222 | * @downdifferential: If the load is under upthreshold - downdifferential, |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 223 | * 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 | */ |
| 230 | struct devfreq_simple_ondemand_data { |
| 231 | unsigned int upthreshold; |
| 232 | unsigned int downdifferential; |
| 233 | }; |
| 234 | #endif |
| 235 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 236 | #else /* !CONFIG_PM_DEVFREQ */ |
| 237 | static struct devfreq *devfreq_add_device(struct device *dev, |
| 238 | struct devfreq_dev_profile *profile, |
Nishanth Menon | a6134a4 | 2012-10-29 15:01:45 -0500 | [diff] [blame] | 239 | const char *governor_name, |
MyungJoo Ham | a95e1f5 | 2012-01-11 17:44:28 +0900 | [diff] [blame] | 240 | void *data) |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 241 | { |
| 242 | return NULL; |
| 243 | } |
| 244 | |
MyungJoo Ham | a95e1f5 | 2012-01-11 17:44:28 +0900 | [diff] [blame] | 245 | static int devfreq_remove_device(struct devfreq *devfreq) |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 246 | { |
| 247 | return 0; |
| 248 | } |
| 249 | |
Rajagopal Venkat | 6efab21 | 2012-10-26 01:50:18 +0200 | [diff] [blame] | 250 | static int devfreq_suspend_device(struct devfreq *devfreq) |
| 251 | { |
| 252 | return 0; |
| 253 | } |
| 254 | |
| 255 | static int devfreq_resume_device(struct devfreq *devfreq) |
| 256 | { |
| 257 | return 0; |
| 258 | } |
| 259 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 260 | static struct opp *devfreq_recommended_opp(struct device *dev, |
MyungJoo Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 261 | unsigned long *freq, u32 flags) |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 262 | { |
| 263 | return -EINVAL; |
| 264 | } |
| 265 | |
| 266 | static int devfreq_register_opp_notifier(struct device *dev, |
| 267 | struct devfreq *devfreq) |
| 268 | { |
| 269 | return -EINVAL; |
| 270 | } |
| 271 | |
| 272 | static int devfreq_unregister_opp_notifier(struct device *dev, |
| 273 | struct devfreq *devfreq) |
| 274 | { |
| 275 | return -EINVAL; |
| 276 | } |
| 277 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 278 | #endif /* CONFIG_PM_DEVFREQ */ |
| 279 | |
| 280 | #endif /* __LINUX_DEVFREQ_H__ */ |