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> |
Nishanth Menon | e4db1c7 | 2013-09-19 16:03:52 -0500 | [diff] [blame] | 18 | #include <linux/pm_opp.h> |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 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 | e09651f | 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 | e09651f | 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 | e09651f | 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 | /** |
| 56 | * struct devfreq_dev_profile - Devfreq's user device profile |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 57 | * @initial_freq: The operating frequency when devfreq_add_device() is |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 58 | * called. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 59 | * @polling_ms: The polling interval in ms. 0 disables polling. |
| 60 | * @target: The device should set its operating frequency at |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 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. |
MyungJoo Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 65 | * The "flags" parameter's possible values are |
| 66 | * explained above with "DEVFREQ_FLAG_*" macros. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 67 | * @get_dev_status: The device should provide the current performance |
MyungJoo Ham | d54cdf3 | 2015-08-18 13:45:49 +0900 | [diff] [blame^] | 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. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 72 | * @get_cur_freq: The device should provide the current frequency |
Rajagopal Venkat | 7f98a90 | 2012-10-26 01:50:26 +0200 | [diff] [blame] | 73 | * at which it is operating. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 74 | * @exit: An optional callback that is called when devfreq |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 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. |
Jonghwa Lee | e552bba | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 79 | * @freq_table: Optional list of frequencies to support statistics. |
| 80 | * @max_state: The size of freq_table. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 81 | */ |
| 82 | struct devfreq_dev_profile { |
| 83 | unsigned long initial_freq; |
| 84 | unsigned int polling_ms; |
| 85 | |
MyungJoo Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 86 | int (*target)(struct device *dev, unsigned long *freq, u32 flags); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 87 | int (*get_dev_status)(struct device *dev, |
| 88 | struct devfreq_dev_status *stat); |
Rajagopal Venkat | 7f98a90 | 2012-10-26 01:50:26 +0200 | [diff] [blame] | 89 | int (*get_cur_freq)(struct device *dev, unsigned long *freq); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 90 | void (*exit)(struct device *dev); |
Jonghwa Lee | e552bba | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 91 | |
| 92 | unsigned int *freq_table; |
| 93 | unsigned int max_state; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | /** |
| 97 | * struct devfreq_governor - Devfreq policy governor |
Nishanth Menon | 3aa173b | 2012-10-29 15:01:43 -0500 | [diff] [blame] | 98 | * @node: list node - contains registered devfreq governors |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 99 | * @name: Governor's name |
| 100 | * @get_target_freq: Returns desired operating frequency for the device. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 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. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 106 | * @event_handler: Callback for devfreq core framework to notify events |
Rajagopal Venkat | 7e6fdd4 | 2012-10-26 01:50:09 +0200 | [diff] [blame] | 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. |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 110 | * |
| 111 | * Note that the callbacks are called with devfreq->lock locked by devfreq. |
| 112 | */ |
| 113 | struct devfreq_governor { |
Nishanth Menon | 3aa173b | 2012-10-29 15:01:43 -0500 | [diff] [blame] | 114 | struct list_head node; |
| 115 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 116 | const char name[DEVFREQ_NAME_LEN]; |
| 117 | int (*get_target_freq)(struct devfreq *this, unsigned long *freq); |
Rajagopal Venkat | 7e6fdd4 | 2012-10-26 01:50:09 +0200 | [diff] [blame] | 118 | int (*event_handler)(struct devfreq *devfreq, |
| 119 | unsigned int event, void *data); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | /** |
| 123 | * struct devfreq - Device devfreq structure |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 124 | * @node: list node - contains the devices with devfreq that have been |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 125 | * registered. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 126 | * @lock: a mutex to protect accessing devfreq. |
| 127 | * @dev: device registered by devfreq class. dev.parent is the device |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 128 | * using devfreq. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 129 | * @profile: device-specific devfreq profile |
| 130 | * @governor: method how to choose frequency based on the usage. |
Nishanth Menon | 1b5c1be | 2012-10-29 15:01:45 -0500 | [diff] [blame] | 131 | * @governor_name: devfreq governor name for use with this devfreq |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 132 | * @nb: notifier block used to notify devfreq object that it should |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 133 | * reevaluate operable frequencies. Devfreq users may use |
| 134 | * devfreq.nb to the corresponding register notifier call chain. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 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 |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 138 | * touch this. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 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. |
Jonghwa Lee | e552bba | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 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 |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 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 | */ |
| 155 | struct 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; |
Nishanth Menon | 1b5c1be | 2012-10-29 15:01:45 -0500 | [diff] [blame] | 162 | char governor_name[DEVFREQ_NAME_LEN]; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 163 | struct notifier_block nb; |
Rajagopal Venkat | 7e6fdd4 | 2012-10-26 01:50:09 +0200 | [diff] [blame] | 164 | struct delayed_work work; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 165 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 166 | unsigned long previous_freq; |
Javi Merino | 08e75e7 | 2015-08-14 18:56:56 +0100 | [diff] [blame] | 167 | struct devfreq_dev_status last_status; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 168 | |
| 169 | void *data; /* private data for governors */ |
| 170 | |
MyungJoo Ham | 6530b9de | 2011-12-09 16:42:19 +0900 | [diff] [blame] | 171 | unsigned long min_freq; |
| 172 | unsigned long max_freq; |
Rajagopal Venkat | 7e6fdd4 | 2012-10-26 01:50:09 +0200 | [diff] [blame] | 173 | bool stop_polling; |
Jonghwa Lee | e552bba | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 174 | |
LABBE Corentin | 0585123 | 2013-09-26 16:50:21 +0200 | [diff] [blame] | 175 | /* information for device frequency transition */ |
Jonghwa Lee | e552bba | 2012-08-23 20:00:46 +0900 | [diff] [blame] | 176 | unsigned int total_trans; |
| 177 | unsigned int *trans_table; |
| 178 | unsigned long *time_in_state; |
| 179 | unsigned long last_stat_updated; |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 180 | }; |
| 181 | |
| 182 | #if defined(CONFIG_PM_DEVFREQ) |
| 183 | extern struct devfreq *devfreq_add_device(struct device *dev, |
| 184 | struct devfreq_dev_profile *profile, |
Nishanth Menon | 1b5c1be | 2012-10-29 15:01:45 -0500 | [diff] [blame] | 185 | const char *governor_name, |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 186 | void *data); |
| 187 | extern int devfreq_remove_device(struct devfreq *devfreq); |
Chanwoo Choi | 8cd8409 | 2014-05-09 16:43:08 +0900 | [diff] [blame] | 188 | extern struct devfreq *devm_devfreq_add_device(struct device *dev, |
| 189 | struct devfreq_dev_profile *profile, |
| 190 | const char *governor_name, |
| 191 | void *data); |
| 192 | extern void devm_devfreq_remove_device(struct device *dev, |
| 193 | struct devfreq *devfreq); |
MyungJoo Ham | de9c739 | 2013-02-05 18:40:17 +0900 | [diff] [blame] | 194 | |
Rafael J. Wysocki | 464ed18 | 2014-12-19 15:37:54 +0100 | [diff] [blame] | 195 | /* Supposed to be called by PM callbacks */ |
Rajagopal Venkat | 206c30c | 2012-10-26 01:50:18 +0200 | [diff] [blame] | 196 | extern int devfreq_suspend_device(struct devfreq *devfreq); |
| 197 | extern int devfreq_resume_device(struct devfreq *devfreq); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 198 | |
| 199 | /* Helper functions for devfreq user device driver with OPP. */ |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 200 | extern struct dev_pm_opp *devfreq_recommended_opp(struct device *dev, |
MyungJoo Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 201 | unsigned long *freq, u32 flags); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 202 | extern int devfreq_register_opp_notifier(struct device *dev, |
| 203 | struct devfreq *devfreq); |
| 204 | extern int devfreq_unregister_opp_notifier(struct device *dev, |
| 205 | struct devfreq *devfreq); |
Chanwoo Choi | d5b040d | 2014-05-09 16:43:09 +0900 | [diff] [blame] | 206 | extern int devm_devfreq_register_opp_notifier(struct device *dev, |
| 207 | struct devfreq *devfreq); |
| 208 | extern void devm_devfreq_unregister_opp_notifier(struct device *dev, |
| 209 | struct devfreq *devfreq); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 210 | |
Javi Merino | 08e75e7 | 2015-08-14 18:56:56 +0100 | [diff] [blame] | 211 | /** |
| 212 | * devfreq_update_stats() - update the last_status pointer in struct devfreq |
| 213 | * @df: the devfreq instance whose status needs updating |
MyungJoo Ham | d54cdf3 | 2015-08-18 13:45:49 +0900 | [diff] [blame^] | 214 | * |
| 215 | * Governors are recommended to use this function along with last_status, |
| 216 | * which allows other entities to reuse the last_status without affecting |
| 217 | * the values fetched later by governors. |
Javi Merino | 08e75e7 | 2015-08-14 18:56:56 +0100 | [diff] [blame] | 218 | */ |
| 219 | static inline int devfreq_update_stats(struct devfreq *df) |
| 220 | { |
| 221 | return df->profile->get_dev_status(df->dev.parent, &df->last_status); |
| 222 | } |
| 223 | |
MyungJoo Ham | 883d588 | 2012-11-21 17:17:11 +0900 | [diff] [blame] | 224 | #if IS_ENABLED(CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND) |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 225 | /** |
| 226 | * struct devfreq_simple_ondemand_data - void *data fed to struct devfreq |
| 227 | * and devfreq_add_device |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 228 | * @upthreshold: If the load is over this value, the frequency jumps. |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 229 | * Specify 0 to use the default. Valid value = 0 to 100. |
Nishanth Menon | e09651f | 2012-10-29 08:02:23 -0500 | [diff] [blame] | 230 | * @downdifferential: If the load is under upthreshold - downdifferential, |
MyungJoo Ham | ce26c5b | 2011-10-02 00:19:34 +0200 | [diff] [blame] | 231 | * the governor may consider slowing the frequency down. |
| 232 | * Specify 0 to use the default. Valid value = 0 to 100. |
| 233 | * downdifferential < upthreshold must hold. |
| 234 | * |
| 235 | * If the fed devfreq_simple_ondemand_data pointer is NULL to the governor, |
| 236 | * the governor uses the default values. |
| 237 | */ |
| 238 | struct devfreq_simple_ondemand_data { |
| 239 | unsigned int upthreshold; |
| 240 | unsigned int downdifferential; |
| 241 | }; |
| 242 | #endif |
| 243 | |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 244 | #else /* !CONFIG_PM_DEVFREQ */ |
Rajagopal Venkat | 5faaa03 | 2013-03-21 13:28:25 +0000 | [diff] [blame] | 245 | static inline struct devfreq *devfreq_add_device(struct device *dev, |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 246 | struct devfreq_dev_profile *profile, |
Nishanth Menon | 1b5c1be | 2012-10-29 15:01:45 -0500 | [diff] [blame] | 247 | const char *governor_name, |
MyungJoo Ham | a95e1f5 | 2012-01-11 17:44:28 +0900 | [diff] [blame] | 248 | void *data) |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 249 | { |
Chanwoo Choi | 8cd8409 | 2014-05-09 16:43:08 +0900 | [diff] [blame] | 250 | return ERR_PTR(-ENOSYS); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 251 | } |
| 252 | |
Rajagopal Venkat | 5faaa03 | 2013-03-21 13:28:25 +0000 | [diff] [blame] | 253 | static inline int devfreq_remove_device(struct devfreq *devfreq) |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 254 | { |
| 255 | return 0; |
| 256 | } |
| 257 | |
Chanwoo Choi | 8cd8409 | 2014-05-09 16:43:08 +0900 | [diff] [blame] | 258 | static inline struct devfreq *devm_devfreq_add_device(struct device *dev, |
| 259 | struct devfreq_dev_profile *profile, |
| 260 | const char *governor_name, |
| 261 | void *data) |
| 262 | { |
| 263 | return ERR_PTR(-ENOSYS); |
| 264 | } |
| 265 | |
| 266 | static inline void devm_devfreq_remove_device(struct device *dev, |
| 267 | struct devfreq *devfreq) |
| 268 | { |
| 269 | } |
| 270 | |
Rajagopal Venkat | 5faaa03 | 2013-03-21 13:28:25 +0000 | [diff] [blame] | 271 | static inline int devfreq_suspend_device(struct devfreq *devfreq) |
Rajagopal Venkat | 206c30c | 2012-10-26 01:50:18 +0200 | [diff] [blame] | 272 | { |
| 273 | return 0; |
| 274 | } |
| 275 | |
Rajagopal Venkat | 5faaa03 | 2013-03-21 13:28:25 +0000 | [diff] [blame] | 276 | static inline int devfreq_resume_device(struct devfreq *devfreq) |
Rajagopal Venkat | 206c30c | 2012-10-26 01:50:18 +0200 | [diff] [blame] | 277 | { |
| 278 | return 0; |
| 279 | } |
| 280 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 281 | static inline struct dev_pm_opp *devfreq_recommended_opp(struct device *dev, |
MyungJoo Ham | ab5f299 | 2012-03-16 21:54:53 +0100 | [diff] [blame] | 282 | unsigned long *freq, u32 flags) |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 283 | { |
Rajagopal Venkat | 5faaa03 | 2013-03-21 13:28:25 +0000 | [diff] [blame] | 284 | return ERR_PTR(-EINVAL); |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 285 | } |
| 286 | |
Rajagopal Venkat | 5faaa03 | 2013-03-21 13:28:25 +0000 | [diff] [blame] | 287 | static inline int devfreq_register_opp_notifier(struct device *dev, |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 288 | struct devfreq *devfreq) |
| 289 | { |
| 290 | return -EINVAL; |
| 291 | } |
| 292 | |
Rajagopal Venkat | 5faaa03 | 2013-03-21 13:28:25 +0000 | [diff] [blame] | 293 | static inline int devfreq_unregister_opp_notifier(struct device *dev, |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 294 | struct devfreq *devfreq) |
| 295 | { |
| 296 | return -EINVAL; |
| 297 | } |
| 298 | |
Chanwoo Choi | d5b040d | 2014-05-09 16:43:09 +0900 | [diff] [blame] | 299 | static inline int devm_devfreq_register_opp_notifier(struct device *dev, |
| 300 | struct devfreq *devfreq) |
| 301 | { |
| 302 | return -EINVAL; |
| 303 | } |
| 304 | |
| 305 | static inline void devm_devfreq_unregister_opp_notifier(struct device *dev, |
| 306 | struct devfreq *devfreq) |
| 307 | { |
| 308 | } |
Javi Merino | 08e75e7 | 2015-08-14 18:56:56 +0100 | [diff] [blame] | 309 | |
| 310 | static inline int devfreq_update_stats(struct devfreq *df) |
| 311 | { |
| 312 | return -EINVAL; |
| 313 | } |
MyungJoo Ham | a3c98b8 | 2011-10-02 00:19:15 +0200 | [diff] [blame] | 314 | #endif /* CONFIG_PM_DEVFREQ */ |
| 315 | |
| 316 | #endif /* __LINUX_DEVFREQ_H__ */ |