blob: 06a981c722463b73b421fec30c139066b93b4617 [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#include <linux/kernel.h>
Enric Balletbo i Serrab5add972018-07-04 10:45:50 +020014#include <linux/kmod.h>
MyungJoo Hama3c98b82011-10-02 00:19:15 +020015#include <linux/sched.h>
16#include <linux/errno.h>
17#include <linux/err.h>
18#include <linux/init.h>
Paul Gortmaker417dc4b2016-06-26 03:43:47 +090019#include <linux/export.h>
MyungJoo Hama3c98b82011-10-02 00:19:15 +020020#include <linux/slab.h>
MyungJoo Ham952f6d12011-11-10 10:16:23 +010021#include <linux/stat.h>
Nishanth Menone4db1c72013-09-19 16:03:52 -050022#include <linux/pm_opp.h>
MyungJoo Hama3c98b82011-10-02 00:19:15 +020023#include <linux/devfreq.h>
24#include <linux/workqueue.h>
25#include <linux/platform_device.h>
26#include <linux/list.h>
27#include <linux/printk.h>
28#include <linux/hrtimer.h>
Chanwoo Choi8f510ae2015-11-10 20:31:07 +090029#include <linux/of.h>
MyungJoo Hama3c98b82011-10-02 00:19:15 +020030#include "governor.h"
31
Chanwoo Choif1d981e2017-10-23 10:32:08 +090032#define MAX(a,b) ((a > b) ? a : b)
33#define MIN(a,b) ((a < b) ? a : b)
34
Nishanth Menon1a1357e2012-10-26 01:50:53 +020035static struct class *devfreq_class;
MyungJoo Hama3c98b82011-10-02 00:19:15 +020036
37/*
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +020038 * devfreq core provides delayed work based load monitoring helper
39 * functions. Governors can use these or can implement their own
40 * monitoring mechanism.
MyungJoo Hama3c98b82011-10-02 00:19:15 +020041 */
MyungJoo Hama3c98b82011-10-02 00:19:15 +020042static struct workqueue_struct *devfreq_wq;
MyungJoo Hama3c98b82011-10-02 00:19:15 +020043
Nishanth Menon3aa173b2012-10-29 15:01:43 -050044/* The list of all device-devfreq governors */
45static LIST_HEAD(devfreq_governor_list);
MyungJoo Hama3c98b82011-10-02 00:19:15 +020046/* The list of all device-devfreq */
47static LIST_HEAD(devfreq_list);
48static DEFINE_MUTEX(devfreq_list_lock);
49
50/**
51 * find_device_devfreq() - find devfreq struct using device pointer
52 * @dev: device pointer used to lookup device devfreq.
53 *
54 * Search the list of device devfreqs and return the matched device's
55 * devfreq info. devfreq_list_lock should be held by the caller.
56 */
57static struct devfreq *find_device_devfreq(struct device *dev)
58{
59 struct devfreq *tmp_devfreq;
60
Viresh Kumar9348da22015-08-10 11:42:25 +053061 if (IS_ERR_OR_NULL(dev)) {
MyungJoo Hama3c98b82011-10-02 00:19:15 +020062 pr_err("DEVFREQ: %s: Invalid parameters\n", __func__);
63 return ERR_PTR(-EINVAL);
64 }
65 WARN(!mutex_is_locked(&devfreq_list_lock),
66 "devfreq_list_lock must be locked.");
67
68 list_for_each_entry(tmp_devfreq, &devfreq_list, node) {
69 if (tmp_devfreq->dev.parent == dev)
70 return tmp_devfreq;
71 }
72
73 return ERR_PTR(-ENODEV);
74}
75
Chanwoo Choiab8f58a2017-10-23 10:32:06 +090076static unsigned long find_available_min_freq(struct devfreq *devfreq)
77{
78 struct dev_pm_opp *opp;
79 unsigned long min_freq = 0;
80
81 opp = dev_pm_opp_find_freq_ceil(devfreq->dev.parent, &min_freq);
82 if (IS_ERR(opp))
83 min_freq = 0;
84 else
85 dev_pm_opp_put(opp);
86
87 return min_freq;
88}
89
90static unsigned long find_available_max_freq(struct devfreq *devfreq)
91{
92 struct dev_pm_opp *opp;
93 unsigned long max_freq = ULONG_MAX;
94
95 opp = dev_pm_opp_find_freq_floor(devfreq->dev.parent, &max_freq);
96 if (IS_ERR(opp))
97 max_freq = 0;
98 else
99 dev_pm_opp_put(opp);
100
101 return max_freq;
102}
103
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200104/**
Jonghwa Leee552bba2012-08-23 20:00:46 +0900105 * devfreq_get_freq_level() - Lookup freq_table for the frequency
106 * @devfreq: the devfreq instance
107 * @freq: the target frequency
108 */
109static int devfreq_get_freq_level(struct devfreq *devfreq, unsigned long freq)
110{
111 int lev;
112
113 for (lev = 0; lev < devfreq->profile->max_state; lev++)
114 if (freq == devfreq->profile->freq_table[lev])
115 return lev;
116
117 return -EINVAL;
118}
119
Chanwoo Choiea572f82017-10-23 10:32:09 +0900120static int set_freq_table(struct devfreq *devfreq)
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900121{
122 struct devfreq_dev_profile *profile = devfreq->profile;
123 struct dev_pm_opp *opp;
124 unsigned long freq;
125 int i, count;
126
127 /* Initialize the freq_table from OPP table */
128 count = dev_pm_opp_get_opp_count(devfreq->dev.parent);
129 if (count <= 0)
Chanwoo Choiea572f82017-10-23 10:32:09 +0900130 return -EINVAL;
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900131
132 profile->max_state = count;
133 profile->freq_table = devm_kcalloc(devfreq->dev.parent,
134 profile->max_state,
135 sizeof(*profile->freq_table),
136 GFP_KERNEL);
137 if (!profile->freq_table) {
138 profile->max_state = 0;
Chanwoo Choiea572f82017-10-23 10:32:09 +0900139 return -ENOMEM;
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900140 }
141
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900142 for (i = 0, freq = 0; i < profile->max_state; i++, freq++) {
143 opp = dev_pm_opp_find_freq_ceil(devfreq->dev.parent, &freq);
144 if (IS_ERR(opp)) {
145 devm_kfree(devfreq->dev.parent, profile->freq_table);
146 profile->max_state = 0;
Chanwoo Choiea572f82017-10-23 10:32:09 +0900147 return PTR_ERR(opp);
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900148 }
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530149 dev_pm_opp_put(opp);
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900150 profile->freq_table[i] = freq;
151 }
Chanwoo Choiea572f82017-10-23 10:32:09 +0900152
153 return 0;
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900154}
155
156/**
Jonghwa Leee552bba2012-08-23 20:00:46 +0900157 * devfreq_update_status() - Update statistics of devfreq behavior
158 * @devfreq: the devfreq instance
159 * @freq: the update target frequency
160 */
Chanwoo Choi30582c22017-01-31 15:38:17 +0900161int devfreq_update_status(struct devfreq *devfreq, unsigned long freq)
Jonghwa Leee552bba2012-08-23 20:00:46 +0900162{
Saravana Kannane35d35a2014-02-27 19:38:57 -0800163 int lev, prev_lev, ret = 0;
Jonghwa Leee552bba2012-08-23 20:00:46 +0900164 unsigned long cur_time;
165
Leonard Crestezb1d06da2019-09-24 10:52:23 +0300166 lockdep_assert_held(&devfreq->lock);
Jonghwa Leee552bba2012-08-23 20:00:46 +0900167 cur_time = jiffies;
Saravana Kannane35d35a2014-02-27 19:38:57 -0800168
Tobias Jakobid0563a02016-09-29 14:36:36 +0200169 /* Immediately exit if previous_freq is not initialized yet. */
170 if (!devfreq->previous_freq)
171 goto out;
172
Saravana Kannane35d35a2014-02-27 19:38:57 -0800173 prev_lev = devfreq_get_freq_level(devfreq, devfreq->previous_freq);
174 if (prev_lev < 0) {
175 ret = prev_lev;
176 goto out;
177 }
178
179 devfreq->time_in_state[prev_lev] +=
Jonghwa Leee552bba2012-08-23 20:00:46 +0900180 cur_time - devfreq->last_stat_updated;
Saravana Kannane35d35a2014-02-27 19:38:57 -0800181
182 lev = devfreq_get_freq_level(devfreq, freq);
183 if (lev < 0) {
184 ret = lev;
185 goto out;
186 }
187
188 if (lev != prev_lev) {
Jonghwa Leee552bba2012-08-23 20:00:46 +0900189 devfreq->trans_table[(prev_lev *
190 devfreq->profile->max_state) + lev]++;
191 devfreq->total_trans++;
192 }
Jonghwa Leee552bba2012-08-23 20:00:46 +0900193
Saravana Kannane35d35a2014-02-27 19:38:57 -0800194out:
195 devfreq->last_stat_updated = cur_time;
196 return ret;
Jonghwa Leee552bba2012-08-23 20:00:46 +0900197}
Chanwoo Choi30582c22017-01-31 15:38:17 +0900198EXPORT_SYMBOL(devfreq_update_status);
Jonghwa Leee552bba2012-08-23 20:00:46 +0900199
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500200/**
201 * find_devfreq_governor() - find devfreq governor from name
202 * @name: name of the governor
203 *
204 * Search the list of devfreq governors and return the matched
205 * governor's pointer. devfreq_list_lock should be held by the caller.
206 */
207static struct devfreq_governor *find_devfreq_governor(const char *name)
208{
209 struct devfreq_governor *tmp_governor;
210
Viresh Kumar9348da22015-08-10 11:42:25 +0530211 if (IS_ERR_OR_NULL(name)) {
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500212 pr_err("DEVFREQ: %s: Invalid parameters\n", __func__);
213 return ERR_PTR(-EINVAL);
214 }
215 WARN(!mutex_is_locked(&devfreq_list_lock),
216 "devfreq_list_lock must be locked.");
217
218 list_for_each_entry(tmp_governor, &devfreq_governor_list, node) {
219 if (!strncmp(tmp_governor->name, name, DEVFREQ_NAME_LEN))
220 return tmp_governor;
221 }
222
223 return ERR_PTR(-ENODEV);
224}
225
Enric Balletbo i Serrab5add972018-07-04 10:45:50 +0200226/**
227 * try_then_request_governor() - Try to find the governor and request the
228 * module if is not found.
229 * @name: name of the governor
230 *
231 * Search the list of devfreq governors and request the module and try again
232 * if is not found. This can happen when both drivers (the governor driver
233 * and the driver that call devfreq_add_device) are built as modules.
234 * devfreq_list_lock should be held by the caller. Returns the matched
Enric Balletbo i Serra4039b5d2019-03-13 13:22:53 +0100235 * governor's pointer or an error pointer.
Enric Balletbo i Serrab5add972018-07-04 10:45:50 +0200236 */
237static struct devfreq_governor *try_then_request_governor(const char *name)
238{
239 struct devfreq_governor *governor;
240 int err = 0;
241
242 if (IS_ERR_OR_NULL(name)) {
243 pr_err("DEVFREQ: %s: Invalid parameters\n", __func__);
244 return ERR_PTR(-EINVAL);
245 }
246 WARN(!mutex_is_locked(&devfreq_list_lock),
247 "devfreq_list_lock must be locked.");
248
249 governor = find_devfreq_governor(name);
250 if (IS_ERR(governor)) {
251 mutex_unlock(&devfreq_list_lock);
252
253 if (!strncmp(name, DEVFREQ_GOV_SIMPLE_ONDEMAND,
254 DEVFREQ_NAME_LEN))
255 err = request_module("governor_%s", "simpleondemand");
256 else
257 err = request_module("governor_%s", name);
258 /* Restore previous state before return */
259 mutex_lock(&devfreq_list_lock);
260 if (err)
Ezequiel Garcia6938a9d2019-06-21 18:39:49 -0300261 return (err < 0) ? ERR_PTR(err) : ERR_PTR(-EINVAL);
Enric Balletbo i Serrab5add972018-07-04 10:45:50 +0200262
263 governor = find_devfreq_governor(name);
264 }
265
266 return governor;
267}
268
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900269static int devfreq_notify_transition(struct devfreq *devfreq,
270 struct devfreq_freqs *freqs, unsigned int state)
271{
272 if (!devfreq)
273 return -EINVAL;
274
275 switch (state) {
276 case DEVFREQ_PRECHANGE:
277 srcu_notifier_call_chain(&devfreq->transition_notifier_list,
278 DEVFREQ_PRECHANGE, freqs);
279 break;
280
281 case DEVFREQ_POSTCHANGE:
282 srcu_notifier_call_chain(&devfreq->transition_notifier_list,
283 DEVFREQ_POSTCHANGE, freqs);
284 break;
285 default:
286 return -EINVAL;
287 }
288
289 return 0;
290}
291
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200292/* Load monitoring helper functions for governors use */
293
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200294/**
295 * update_devfreq() - Reevaluate the device and configure frequency.
296 * @devfreq: the devfreq instance.
297 *
298 * Note: Lock devfreq->lock before calling update_devfreq
299 * This function is exported for governors.
300 */
301int update_devfreq(struct devfreq *devfreq)
302{
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900303 struct devfreq_freqs freqs;
Chanwoo Choif1d981e2017-10-23 10:32:08 +0900304 unsigned long freq, cur_freq, min_freq, max_freq;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200305 int err = 0;
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100306 u32 flags = 0;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200307
308 if (!mutex_is_locked(&devfreq->lock)) {
309 WARN(true, "devfreq->lock must be locked by the caller.\n");
310 return -EINVAL;
311 }
312
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500313 if (!devfreq->governor)
314 return -EINVAL;
315
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200316 /* Reevaluate the proper frequency */
317 err = devfreq->governor->get_target_freq(devfreq, &freq);
318 if (err)
319 return err;
320
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100321 /*
Chanwoo Choif1d981e2017-10-23 10:32:08 +0900322 * Adjust the frequency with user freq, QoS and available freq.
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100323 *
Javi Merinod3b7e172015-08-14 18:57:00 +0100324 * List from the highest priority
325 * max_freq
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100326 * min_freq
327 */
Chanwoo Choif1d981e2017-10-23 10:32:08 +0900328 max_freq = MIN(devfreq->scaling_max_freq, devfreq->max_freq);
329 min_freq = MAX(devfreq->scaling_min_freq, devfreq->min_freq);
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100330
Matthias Kaehlckefc491a12018-08-03 13:05:09 -0700331 if (freq < min_freq) {
Chanwoo Choif1d981e2017-10-23 10:32:08 +0900332 freq = min_freq;
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100333 flags &= ~DEVFREQ_FLAG_LEAST_UPPER_BOUND; /* Use GLB */
334 }
Matthias Kaehlckefc491a12018-08-03 13:05:09 -0700335 if (freq > max_freq) {
Chanwoo Choif1d981e2017-10-23 10:32:08 +0900336 freq = max_freq;
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100337 flags |= DEVFREQ_FLAG_LEAST_UPPER_BOUND; /* Use LUB */
338 }
339
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900340 if (devfreq->profile->get_cur_freq)
341 devfreq->profile->get_cur_freq(devfreq->dev.parent, &cur_freq);
342 else
343 cur_freq = devfreq->previous_freq;
344
345 freqs.old = cur_freq;
346 freqs.new = freq;
347 devfreq_notify_transition(devfreq, &freqs, DEVFREQ_PRECHANGE);
348
MyungJoo Hamab5f2992012-03-16 21:54:53 +0100349 err = devfreq->profile->target(devfreq->dev.parent, &freq, flags);
Chanwoo Choi0d371892016-06-23 11:18:43 +0900350 if (err) {
351 freqs.new = cur_freq;
352 devfreq_notify_transition(devfreq, &freqs, DEVFREQ_POSTCHANGE);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200353 return err;
Chanwoo Choi0d371892016-06-23 11:18:43 +0900354 }
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200355
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900356 freqs.new = freq;
357 devfreq_notify_transition(devfreq, &freqs, DEVFREQ_POSTCHANGE);
358
Chanwoo Choiccc4c3b2017-10-23 10:32:11 +0900359 if (devfreq_update_status(devfreq, freq))
360 dev_err(&devfreq->dev,
361 "Couldn't update frequency transition information.\n");
Jonghwa Leee552bba2012-08-23 20:00:46 +0900362
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200363 devfreq->previous_freq = freq;
364 return err;
365}
Nishanth Menon2df50212012-10-29 15:01:42 -0500366EXPORT_SYMBOL(update_devfreq);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200367
368/**
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200369 * devfreq_monitor() - Periodically poll devfreq objects.
370 * @work: the work struct used to run devfreq_monitor periodically.
371 *
372 */
373static void devfreq_monitor(struct work_struct *work)
374{
375 int err;
376 struct devfreq *devfreq = container_of(work,
377 struct devfreq, work.work);
378
379 mutex_lock(&devfreq->lock);
380 err = update_devfreq(devfreq);
381 if (err)
382 dev_err(&devfreq->dev, "dvfs failed with (%d) error\n", err);
383
384 queue_delayed_work(devfreq_wq, &devfreq->work,
385 msecs_to_jiffies(devfreq->profile->polling_ms));
386 mutex_unlock(&devfreq->lock);
387}
388
389/**
390 * devfreq_monitor_start() - Start load monitoring of devfreq instance
391 * @devfreq: the devfreq instance.
392 *
393 * Helper function for starting devfreq device load monitoing. By
394 * default delayed work based monitoring is supported. Function
395 * to be called from governor in response to DEVFREQ_GOV_START
396 * event when device is added to devfreq framework.
397 */
398void devfreq_monitor_start(struct devfreq *devfreq)
399{
400 INIT_DEFERRABLE_WORK(&devfreq->work, devfreq_monitor);
401 if (devfreq->profile->polling_ms)
402 queue_delayed_work(devfreq_wq, &devfreq->work,
403 msecs_to_jiffies(devfreq->profile->polling_ms));
404}
MyungJoo Ham6dcdd8e2012-11-28 20:29:17 +0100405EXPORT_SYMBOL(devfreq_monitor_start);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200406
407/**
408 * devfreq_monitor_stop() - Stop load monitoring of a devfreq instance
409 * @devfreq: the devfreq instance.
410 *
411 * Helper function to stop devfreq device load monitoing. Function
412 * to be called from governor in response to DEVFREQ_GOV_STOP
413 * event when device is removed from devfreq framework.
414 */
415void devfreq_monitor_stop(struct devfreq *devfreq)
416{
417 cancel_delayed_work_sync(&devfreq->work);
418}
MyungJoo Ham6dcdd8e2012-11-28 20:29:17 +0100419EXPORT_SYMBOL(devfreq_monitor_stop);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200420
421/**
422 * devfreq_monitor_suspend() - Suspend load monitoring of a devfreq instance
423 * @devfreq: the devfreq instance.
424 *
425 * Helper function to suspend devfreq device load monitoing. Function
426 * to be called from governor in response to DEVFREQ_GOV_SUSPEND
427 * event or when polling interval is set to zero.
428 *
429 * Note: Though this function is same as devfreq_monitor_stop(),
430 * intentionally kept separate to provide hooks for collecting
431 * transition statistics.
432 */
433void devfreq_monitor_suspend(struct devfreq *devfreq)
434{
435 mutex_lock(&devfreq->lock);
436 if (devfreq->stop_polling) {
437 mutex_unlock(&devfreq->lock);
438 return;
439 }
440
Rajagopal Venkat39688ce2013-01-08 11:20:39 +0530441 devfreq_update_status(devfreq, devfreq->previous_freq);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200442 devfreq->stop_polling = true;
443 mutex_unlock(&devfreq->lock);
444 cancel_delayed_work_sync(&devfreq->work);
445}
MyungJoo Ham6dcdd8e2012-11-28 20:29:17 +0100446EXPORT_SYMBOL(devfreq_monitor_suspend);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200447
448/**
449 * devfreq_monitor_resume() - Resume load monitoring of a devfreq instance
450 * @devfreq: the devfreq instance.
451 *
452 * Helper function to resume devfreq device load monitoing. Function
453 * to be called from governor in response to DEVFREQ_GOV_RESUME
454 * event or when polling interval is set to non-zero.
455 */
456void devfreq_monitor_resume(struct devfreq *devfreq)
457{
Rajagopal Venkat39688ce2013-01-08 11:20:39 +0530458 unsigned long freq;
459
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200460 mutex_lock(&devfreq->lock);
461 if (!devfreq->stop_polling)
462 goto out;
463
464 if (!delayed_work_pending(&devfreq->work) &&
465 devfreq->profile->polling_ms)
466 queue_delayed_work(devfreq_wq, &devfreq->work,
467 msecs_to_jiffies(devfreq->profile->polling_ms));
Rajagopal Venkat39688ce2013-01-08 11:20:39 +0530468
469 devfreq->last_stat_updated = jiffies;
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200470 devfreq->stop_polling = false;
471
Rajagopal Venkat39688ce2013-01-08 11:20:39 +0530472 if (devfreq->profile->get_cur_freq &&
473 !devfreq->profile->get_cur_freq(devfreq->dev.parent, &freq))
474 devfreq->previous_freq = freq;
475
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200476out:
477 mutex_unlock(&devfreq->lock);
478}
MyungJoo Ham6dcdd8e2012-11-28 20:29:17 +0100479EXPORT_SYMBOL(devfreq_monitor_resume);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200480
481/**
482 * devfreq_interval_update() - Update device devfreq monitoring interval
483 * @devfreq: the devfreq instance.
484 * @delay: new polling interval to be set.
485 *
486 * Helper function to set new load monitoring polling interval. Function
487 * to be called from governor in response to DEVFREQ_GOV_INTERVAL event.
488 */
489void devfreq_interval_update(struct devfreq *devfreq, unsigned int *delay)
490{
491 unsigned int cur_delay = devfreq->profile->polling_ms;
492 unsigned int new_delay = *delay;
493
494 mutex_lock(&devfreq->lock);
495 devfreq->profile->polling_ms = new_delay;
496
497 if (devfreq->stop_polling)
498 goto out;
499
500 /* if new delay is zero, stop polling */
501 if (!new_delay) {
502 mutex_unlock(&devfreq->lock);
503 cancel_delayed_work_sync(&devfreq->work);
504 return;
505 }
506
507 /* if current delay is zero, start polling with new delay */
508 if (!cur_delay) {
509 queue_delayed_work(devfreq_wq, &devfreq->work,
510 msecs_to_jiffies(devfreq->profile->polling_ms));
511 goto out;
512 }
513
514 /* if current delay is greater than new delay, restart polling */
515 if (cur_delay > new_delay) {
516 mutex_unlock(&devfreq->lock);
517 cancel_delayed_work_sync(&devfreq->work);
518 mutex_lock(&devfreq->lock);
519 if (!devfreq->stop_polling)
520 queue_delayed_work(devfreq_wq, &devfreq->work,
521 msecs_to_jiffies(devfreq->profile->polling_ms));
522 }
523out:
524 mutex_unlock(&devfreq->lock);
525}
MyungJoo Ham6dcdd8e2012-11-28 20:29:17 +0100526EXPORT_SYMBOL(devfreq_interval_update);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200527
528/**
529 * devfreq_notifier_call() - Notify that the device frequency requirements
530 * has been changed out of devfreq framework.
Nishanth Menonc5b4a1c12012-10-26 01:50:35 +0200531 * @nb: the notifier_block (supposed to be devfreq->nb)
532 * @type: not used
533 * @devp: not used
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200534 *
535 * Called by a notifier that uses devfreq->nb.
536 */
537static int devfreq_notifier_call(struct notifier_block *nb, unsigned long type,
538 void *devp)
539{
540 struct devfreq *devfreq = container_of(nb, struct devfreq, nb);
Leonard Crestez6b2c3bb2019-10-31 23:34:18 +0200541 int err = -EINVAL;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200542
543 mutex_lock(&devfreq->lock);
Chanwoo Choif1d981e2017-10-23 10:32:08 +0900544
545 devfreq->scaling_min_freq = find_available_min_freq(devfreq);
Leonard Crestez6b2c3bb2019-10-31 23:34:18 +0200546 if (!devfreq->scaling_min_freq)
547 goto out;
Chanwoo Choif1d981e2017-10-23 10:32:08 +0900548
549 devfreq->scaling_max_freq = find_available_max_freq(devfreq);
Leonard Crestez56f1c512019-10-31 23:34:19 +0200550 if (!devfreq->scaling_max_freq) {
551 devfreq->scaling_max_freq = ULONG_MAX;
Leonard Crestez6b2c3bb2019-10-31 23:34:18 +0200552 goto out;
Leonard Crestez56f1c512019-10-31 23:34:19 +0200553 }
Chanwoo Choif1d981e2017-10-23 10:32:08 +0900554
Leonard Crestez6b2c3bb2019-10-31 23:34:18 +0200555 err = update_devfreq(devfreq);
556
557out:
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200558 mutex_unlock(&devfreq->lock);
Leonard Crestez6b2c3bb2019-10-31 23:34:18 +0200559 if (err)
560 dev_err(devfreq->dev.parent,
561 "failed to update frequency from OPP notifier (%d)\n",
562 err);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200563
Leonard Crestez6b2c3bb2019-10-31 23:34:18 +0200564 return NOTIFY_OK;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200565}
566
567/**
Chanwoo Choi29b69682017-01-31 15:38:18 +0900568 * devfreq_dev_release() - Callback for struct device to release the device.
569 * @dev: the devfreq device
570 *
571 * Remove devfreq from the list and release its resources.
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200572 */
Chanwoo Choi29b69682017-01-31 15:38:18 +0900573static void devfreq_dev_release(struct device *dev)
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200574{
Chanwoo Choi29b69682017-01-31 15:38:18 +0900575 struct devfreq *devfreq = to_devfreq(dev);
576
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200577 mutex_lock(&devfreq_list_lock);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200578 list_del(&devfreq->node);
579 mutex_unlock(&devfreq_list_lock);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200580
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200581 if (devfreq->profile->exit)
582 devfreq->profile->exit(devfreq->dev.parent);
583
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200584 mutex_destroy(&devfreq->lock);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200585 kfree(devfreq);
586}
587
588/**
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200589 * devfreq_add_device() - Add devfreq feature to the device
590 * @dev: the device to add devfreq feature.
591 * @profile: device-specific profile to run devfreq.
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500592 * @governor_name: name of the policy to choose frequency.
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200593 * @data: private data for the governor. The devfreq framework does not
594 * touch this value.
595 */
596struct devfreq *devfreq_add_device(struct device *dev,
597 struct devfreq_dev_profile *profile,
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500598 const char *governor_name,
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200599 void *data)
600{
601 struct devfreq *devfreq;
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500602 struct devfreq_governor *governor;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200603 int err = 0;
604
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500605 if (!dev || !profile || !governor_name) {
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200606 dev_err(dev, "%s: Invalid parameters.\n", __func__);
607 return ERR_PTR(-EINVAL);
608 }
609
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200610 mutex_lock(&devfreq_list_lock);
611 devfreq = find_device_devfreq(dev);
612 mutex_unlock(&devfreq_list_lock);
613 if (!IS_ERR(devfreq)) {
Chanwoo Choi9d0109b2016-11-19 22:47:36 +0900614 dev_err(dev, "%s: Unable to create devfreq for the device.\n",
615 __func__);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200616 err = -EINVAL;
617 goto err_out;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200618 }
619
620 devfreq = kzalloc(sizeof(struct devfreq), GFP_KERNEL);
621 if (!devfreq) {
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200622 err = -ENOMEM;
Axel Lin3f19f082011-11-15 21:59:09 +0100623 goto err_out;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200624 }
625
626 mutex_init(&devfreq->lock);
627 mutex_lock(&devfreq->lock);
628 devfreq->dev.parent = dev;
629 devfreq->dev.class = devfreq_class;
630 devfreq->dev.release = devfreq_dev_release;
Leonard Crestez6c3986b2019-11-14 01:21:31 +0200631 INIT_LIST_HEAD(&devfreq->node);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200632 devfreq->profile = profile;
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500633 strncpy(devfreq->governor_name, governor_name, DEVFREQ_NAME_LEN);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200634 devfreq->previous_freq = profile->initial_freq;
Lukasz Luba8d39fc02016-05-31 11:25:09 +0100635 devfreq->last_status.current_frequency = profile->initial_freq;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200636 devfreq->data = data;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200637 devfreq->nb.notifier_call = devfreq_notifier_call;
638
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900639 if (!devfreq->profile->max_state && !devfreq->profile->freq_table) {
640 mutex_unlock(&devfreq->lock);
Chanwoo Choiea572f82017-10-23 10:32:09 +0900641 err = set_freq_table(devfreq);
642 if (err < 0)
643 goto err_out;
Chanwoo Choi0ec09ac2015-11-18 14:49:02 +0900644 mutex_lock(&devfreq->lock);
645 }
646
Matthias Kaehlcke2c2cb1e62018-05-25 13:30:33 -0700647 devfreq->scaling_min_freq = find_available_min_freq(devfreq);
648 if (!devfreq->scaling_min_freq) {
Chanwoo Choiab8f58a2017-10-23 10:32:06 +0900649 mutex_unlock(&devfreq->lock);
650 err = -EINVAL;
651 goto err_dev;
652 }
Matthias Kaehlcke2c2cb1e62018-05-25 13:30:33 -0700653 devfreq->min_freq = devfreq->scaling_min_freq;
Chanwoo Choiab8f58a2017-10-23 10:32:06 +0900654
Matthias Kaehlcke2c2cb1e62018-05-25 13:30:33 -0700655 devfreq->scaling_max_freq = find_available_max_freq(devfreq);
656 if (!devfreq->scaling_max_freq) {
Chanwoo Choiab8f58a2017-10-23 10:32:06 +0900657 mutex_unlock(&devfreq->lock);
658 err = -EINVAL;
659 goto err_dev;
660 }
Matthias Kaehlcke2c2cb1e62018-05-25 13:30:33 -0700661 devfreq->max_freq = devfreq->scaling_max_freq;
Chanwoo Choiab8f58a2017-10-23 10:32:06 +0900662
Orson Zhaia8b1fa62020-02-21 01:37:04 +0800663 dev_set_name(&devfreq->dev, "%s", dev_name(dev));
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200664 err = device_register(&devfreq->dev);
665 if (err) {
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200666 mutex_unlock(&devfreq->lock);
Arvind Yadav2d803dc2018-03-30 17:14:03 +0530667 put_device(&devfreq->dev);
668 goto err_out;
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200669 }
670
Kees Cooka86854d2018-06-12 14:07:58 -0700671 devfreq->trans_table =
672 devm_kzalloc(&devfreq->dev,
673 array3_size(sizeof(unsigned int),
674 devfreq->profile->max_state,
675 devfreq->profile->max_state),
676 GFP_KERNEL);
677 devfreq->time_in_state = devm_kcalloc(&devfreq->dev,
MyungJoo Ham3e1d7fb2015-10-02 12:39:23 +0900678 devfreq->profile->max_state,
Kees Cooka86854d2018-06-12 14:07:58 -0700679 sizeof(unsigned long),
MyungJoo Ham3e1d7fb2015-10-02 12:39:23 +0900680 GFP_KERNEL);
681 devfreq->last_stat_updated = jiffies;
682
Chanwoo Choi0fe3a662016-01-26 13:21:26 +0900683 srcu_init_notifier_head(&devfreq->transition_notifier_list);
684
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200685 mutex_unlock(&devfreq->lock);
686
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200687 mutex_lock(&devfreq_list_lock);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200688
Enric Balletbo i Serrab5add972018-07-04 10:45:50 +0200689 governor = try_then_request_governor(devfreq->governor_name);
Chanwoo Choi73613b12016-12-28 20:52:35 +0900690 if (IS_ERR(governor)) {
691 dev_err(dev, "%s: Unable to find governor for the device\n",
692 __func__);
693 err = PTR_ERR(governor);
694 goto err_init;
695 }
696
697 devfreq->governor = governor;
698 err = devfreq->governor->event_handler(devfreq, DEVFREQ_GOV_START,
699 NULL);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200700 if (err) {
701 dev_err(dev, "%s: Unable to start governor for the device\n",
702 __func__);
703 goto err_init;
704 }
Enric Balletbo i Serrab5add972018-07-04 10:45:50 +0200705
706 list_add(&devfreq->node, &devfreq_list);
707
Axel Lin0f376c92016-09-29 10:13:28 +0800708 mutex_unlock(&devfreq_list_lock);
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200709
Axel Lin3f19f082011-11-15 21:59:09 +0100710 return devfreq;
711
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200712err_init:
Axel Lin0f376c92016-09-29 10:13:28 +0800713 mutex_unlock(&devfreq_list_lock);
714
Vincent Donnefortf6ec4fc2018-09-03 09:02:07 +0900715 devfreq_remove_device(devfreq);
Arvind Yadav2d803dc2018-03-30 17:14:03 +0530716 devfreq = NULL;
Chanwoo Choi9e14de12017-08-24 10:42:48 +0900717err_dev:
718 if (devfreq)
719 kfree(devfreq);
Axel Lin3f19f082011-11-15 21:59:09 +0100720err_out:
721 return ERR_PTR(err);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200722}
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200723EXPORT_SYMBOL(devfreq_add_device);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200724
725/**
726 * devfreq_remove_device() - Remove devfreq feature from a device.
Nishanth Menonc5b4a1c12012-10-26 01:50:35 +0200727 * @devfreq: the devfreq instance to be removed
MyungJoo Hamde9c7392013-02-05 18:40:17 +0900728 *
729 * The opposite of devfreq_add_device().
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200730 */
731int devfreq_remove_device(struct devfreq *devfreq)
732{
733 if (!devfreq)
734 return -EINVAL;
735
Vincent Donnefortf6ec4fc2018-09-03 09:02:07 +0900736 if (devfreq->governor)
737 devfreq->governor->event_handler(devfreq,
738 DEVFREQ_GOV_STOP, NULL);
Chanwoo Choi585fc832014-05-09 16:43:07 +0900739 device_unregister(&devfreq->dev);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200740
741 return 0;
742}
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +0200743EXPORT_SYMBOL(devfreq_remove_device);
MyungJoo Hama3c98b82011-10-02 00:19:15 +0200744
Chanwoo Choi8cd84092014-05-09 16:43:08 +0900745static int devm_devfreq_dev_match(struct device *dev, void *res, void *data)
746{
747 struct devfreq **r = res;
748
749 if (WARN_ON(!r || !*r))
750 return 0;
751
752 return *r == data;
753}
754
755static void devm_devfreq_dev_release(struct device *dev, void *res)
756{
757 devfreq_remove_device(*(struct devfreq **)res);
758}
759
760/**
761 * devm_devfreq_add_device() - Resource-managed devfreq_add_device()
762 * @dev: the device to add devfreq feature.
763 * @profile: device-specific profile to run devfreq.
764 * @governor_name: name of the policy to choose frequency.
765 * @data: private data for the governor. The devfreq framework does not
766 * touch this value.
767 *
768 * This function manages automatically the memory of devfreq device using device
769 * resource management and simplify the free operation for memory of devfreq
770 * device.
771 */
772struct devfreq *devm_devfreq_add_device(struct device *dev,
773 struct devfreq_dev_profile *profile,
774 const char *governor_name,
775 void *data)
776{
777 struct devfreq **ptr, *devfreq;
778
779 ptr = devres_alloc(devm_devfreq_dev_release, sizeof(*ptr), GFP_KERNEL);
780 if (!ptr)
781 return ERR_PTR(-ENOMEM);
782
783 devfreq = devfreq_add_device(dev, profile, governor_name, data);
784 if (IS_ERR(devfreq)) {
785 devres_free(ptr);
Bjorn Anderssond1bf2d302017-11-05 21:27:41 -0800786 return devfreq;
Chanwoo Choi8cd84092014-05-09 16:43:08 +0900787 }
788
789 *ptr = devfreq;
790 devres_add(dev, ptr);
791
792 return devfreq;
793}
794EXPORT_SYMBOL(devm_devfreq_add_device);
795
Chanwoo Choi8f510ae2015-11-10 20:31:07 +0900796#ifdef CONFIG_OF
797/*
798 * devfreq_get_devfreq_by_phandle - Get the devfreq device from devicetree
799 * @dev - instance to the given device
800 * @index - index into list of devfreq
801 *
802 * return the instance of devfreq device
803 */
804struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev, int index)
805{
806 struct device_node *node;
807 struct devfreq *devfreq;
808
809 if (!dev)
810 return ERR_PTR(-EINVAL);
811
812 if (!dev->of_node)
813 return ERR_PTR(-EINVAL);
814
815 node = of_parse_phandle(dev->of_node, "devfreq", index);
816 if (!node)
817 return ERR_PTR(-ENODEV);
818
819 mutex_lock(&devfreq_list_lock);
820 list_for_each_entry(devfreq, &devfreq_list, node) {
821 if (devfreq->dev.parent
822 && devfreq->dev.parent->of_node == node) {
823 mutex_unlock(&devfreq_list_lock);
Peter Chen3427c6f2016-07-01 17:42:00 +0800824 of_node_put(node);
Chanwoo Choi8f510ae2015-11-10 20:31:07 +0900825 return devfreq;
826 }
827 }
828 mutex_unlock(&devfreq_list_lock);
Peter Chen3427c6f2016-07-01 17:42:00 +0800829 of_node_put(node);
Chanwoo Choi8f510ae2015-11-10 20:31:07 +0900830
831 return ERR_PTR(-EPROBE_DEFER);
832}
833#else
834struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev, int index)
835{
836 return ERR_PTR(-ENODEV);
837}
838#endif /* CONFIG_OF */
839EXPORT_SYMBOL_GPL(devfreq_get_devfreq_by_phandle);
840
Chanwoo Choi8cd84092014-05-09 16:43:08 +0900841/**
842 * devm_devfreq_remove_device() - Resource-managed devfreq_remove_device()
843 * @dev: the device to add devfreq feature.
844 * @devfreq: the devfreq instance to be removed
845 */
846void devm_devfreq_remove_device(struct device *dev, struct devfreq *devfreq)
847{
848 WARN_ON(devres_release(dev, devm_devfreq_dev_release,
849 devm_devfreq_dev_match, devfreq));
850}
851EXPORT_SYMBOL(devm_devfreq_remove_device);
852
Rajagopal Venkat206c30c2012-10-26 01:50:18 +0200853/**
854 * devfreq_suspend_device() - Suspend devfreq of a device.
855 * @devfreq: the devfreq instance to be suspended
MyungJoo Hamde9c7392013-02-05 18:40:17 +0900856 *
857 * This function is intended to be called by the pm callbacks
858 * (e.g., runtime_suspend, suspend) of the device driver that
859 * holds the devfreq.
Rajagopal Venkat206c30c2012-10-26 01:50:18 +0200860 */
861int devfreq_suspend_device(struct devfreq *devfreq)
862{
863 if (!devfreq)
864 return -EINVAL;
865
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500866 if (!devfreq->governor)
867 return 0;
868
Rajagopal Venkat206c30c2012-10-26 01:50:18 +0200869 return devfreq->governor->event_handler(devfreq,
870 DEVFREQ_GOV_SUSPEND, NULL);
871}
872EXPORT_SYMBOL(devfreq_suspend_device);
873
874/**
875 * devfreq_resume_device() - Resume devfreq of a device.
876 * @devfreq: the devfreq instance to be resumed
MyungJoo Hamde9c7392013-02-05 18:40:17 +0900877 *
878 * This function is intended to be called by the pm callbacks
879 * (e.g., runtime_resume, resume) of the device driver that
880 * holds the devfreq.
Rajagopal Venkat206c30c2012-10-26 01:50:18 +0200881 */
882int devfreq_resume_device(struct devfreq *devfreq)
883{
884 if (!devfreq)
885 return -EINVAL;
886
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500887 if (!devfreq->governor)
888 return 0;
889
Rajagopal Venkat206c30c2012-10-26 01:50:18 +0200890 return devfreq->governor->event_handler(devfreq,
891 DEVFREQ_GOV_RESUME, NULL);
892}
893EXPORT_SYMBOL(devfreq_resume_device);
894
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500895/**
896 * devfreq_add_governor() - Add devfreq governor
897 * @governor: the devfreq governor to be added
898 */
899int devfreq_add_governor(struct devfreq_governor *governor)
900{
901 struct devfreq_governor *g;
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500902 struct devfreq *devfreq;
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500903 int err = 0;
904
905 if (!governor) {
906 pr_err("%s: Invalid parameters.\n", __func__);
907 return -EINVAL;
908 }
909
910 mutex_lock(&devfreq_list_lock);
911 g = find_devfreq_governor(governor->name);
912 if (!IS_ERR(g)) {
913 pr_err("%s: governor %s already registered\n", __func__,
914 g->name);
915 err = -EINVAL;
916 goto err_out;
917 }
918
919 list_add(&governor->node, &devfreq_governor_list);
920
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500921 list_for_each_entry(devfreq, &devfreq_list, node) {
922 int ret = 0;
923 struct device *dev = devfreq->dev.parent;
924
925 if (!strncmp(devfreq->governor_name, governor->name,
926 DEVFREQ_NAME_LEN)) {
927 /* The following should never occur */
928 if (devfreq->governor) {
929 dev_warn(dev,
930 "%s: Governor %s already present\n",
931 __func__, devfreq->governor->name);
932 ret = devfreq->governor->event_handler(devfreq,
933 DEVFREQ_GOV_STOP, NULL);
934 if (ret) {
935 dev_warn(dev,
936 "%s: Governor %s stop = %d\n",
937 __func__,
938 devfreq->governor->name, ret);
939 }
940 /* Fall through */
941 }
942 devfreq->governor = governor;
943 ret = devfreq->governor->event_handler(devfreq,
944 DEVFREQ_GOV_START, NULL);
945 if (ret) {
946 dev_warn(dev, "%s: Governor %s start=%d\n",
947 __func__, devfreq->governor->name,
948 ret);
949 }
950 }
951 }
952
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500953err_out:
954 mutex_unlock(&devfreq_list_lock);
955
956 return err;
957}
958EXPORT_SYMBOL(devfreq_add_governor);
959
960/**
MyungJoo Hambafeb422016-11-09 10:29:14 +0900961 * devfreq_remove_governor() - Remove devfreq feature from a device.
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500962 * @governor: the devfreq governor to be removed
963 */
964int devfreq_remove_governor(struct devfreq_governor *governor)
965{
966 struct devfreq_governor *g;
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500967 struct devfreq *devfreq;
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500968 int err = 0;
969
970 if (!governor) {
971 pr_err("%s: Invalid parameters.\n", __func__);
972 return -EINVAL;
973 }
974
975 mutex_lock(&devfreq_list_lock);
976 g = find_devfreq_governor(governor->name);
977 if (IS_ERR(g)) {
978 pr_err("%s: governor %s not registered\n", __func__,
Sachin Kamatb9e1c8e2012-11-21 10:36:13 +0530979 governor->name);
Sachin Kamatf9c08e22012-11-21 10:36:14 +0530980 err = PTR_ERR(g);
Nishanth Menon3aa173b2012-10-29 15:01:43 -0500981 goto err_out;
982 }
Nishanth Menon1b5c1be2012-10-29 15:01:45 -0500983 list_for_each_entry(devfreq, &devfreq_list, node) {
984 int ret;
985 struct device *dev = devfreq->dev.parent;
986
987 if (!strncmp(devfreq->governor_name, governor->name,
988 DEVFREQ_NAME_LEN)) {
989 /* we should have a devfreq governor! */
990 if (!devfreq->governor) {
991 dev_warn(dev, "%s: Governor %s NOT present\n",
992 __func__, governor->name);
993 continue;
994 /* Fall through */
995 }
996 ret = devfreq->governor->event_handler(devfreq,
997 DEVFREQ_GOV_STOP, NULL);
998 if (ret) {
999 dev_warn(dev, "%s: Governor %s stop=%d\n",
1000 __func__, devfreq->governor->name,
1001 ret);
1002 }
1003 devfreq->governor = NULL;
1004 }
1005 }
Nishanth Menon3aa173b2012-10-29 15:01:43 -05001006
1007 list_del(&governor->node);
1008err_out:
1009 mutex_unlock(&devfreq_list_lock);
1010
1011 return err;
1012}
1013EXPORT_SYMBOL(devfreq_remove_governor);
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001014
Chanwoo Choi1635d4f2019-11-05 18:18:03 +09001015static ssize_t name_show(struct device *dev,
1016 struct device_attribute *attr, char *buf)
1017{
1018 struct devfreq *devfreq = to_devfreq(dev);
1019 return sprintf(buf, "%s\n", dev_name(devfreq->dev.parent));
1020}
1021static DEVICE_ATTR_RO(name);
1022
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001023static ssize_t governor_show(struct device *dev,
MyungJoo Ham9005b652011-10-02 00:19:28 +02001024 struct device_attribute *attr, char *buf)
1025{
Nishanth Menon1b5c1be2012-10-29 15:01:45 -05001026 if (!to_devfreq(dev)->governor)
1027 return -EINVAL;
1028
MyungJoo Ham9005b652011-10-02 00:19:28 +02001029 return sprintf(buf, "%s\n", to_devfreq(dev)->governor->name);
1030}
1031
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001032static ssize_t governor_store(struct device *dev, struct device_attribute *attr,
Nishanth Menon0359d1a2012-10-29 15:01:47 -05001033 const char *buf, size_t count)
1034{
1035 struct devfreq *df = to_devfreq(dev);
1036 int ret;
1037 char str_governor[DEVFREQ_NAME_LEN + 1];
1038 struct devfreq_governor *governor;
1039
1040 ret = sscanf(buf, "%" __stringify(DEVFREQ_NAME_LEN) "s", str_governor);
1041 if (ret != 1)
1042 return -EINVAL;
1043
1044 mutex_lock(&devfreq_list_lock);
Enric Balletbo i Serrab5add972018-07-04 10:45:50 +02001045 governor = try_then_request_governor(str_governor);
Nishanth Menon0359d1a2012-10-29 15:01:47 -05001046 if (IS_ERR(governor)) {
1047 ret = PTR_ERR(governor);
1048 goto out;
1049 }
Tobias Jakobi14a21e72015-09-21 20:23:52 +02001050 if (df->governor == governor) {
1051 ret = 0;
Nishanth Menon0359d1a2012-10-29 15:01:47 -05001052 goto out;
Gustavo A. R. Silva63f1e052017-12-06 14:20:15 -06001053 } else if ((df->governor && df->governor->immutable) ||
1054 governor->immutable) {
Chanwoo Choibcf23c72017-01-31 15:38:16 +09001055 ret = -EINVAL;
1056 goto out;
Tobias Jakobi14a21e72015-09-21 20:23:52 +02001057 }
Nishanth Menon0359d1a2012-10-29 15:01:47 -05001058
1059 if (df->governor) {
1060 ret = df->governor->event_handler(df, DEVFREQ_GOV_STOP, NULL);
1061 if (ret) {
1062 dev_warn(dev, "%s: Governor %s not stopped(%d)\n",
1063 __func__, df->governor->name, ret);
1064 goto out;
1065 }
1066 }
1067 df->governor = governor;
1068 strncpy(df->governor_name, governor->name, DEVFREQ_NAME_LEN);
1069 ret = df->governor->event_handler(df, DEVFREQ_GOV_START, NULL);
1070 if (ret)
1071 dev_warn(dev, "%s: Governor %s not started(%d)\n",
1072 __func__, df->governor->name, ret);
1073out:
1074 mutex_unlock(&devfreq_list_lock);
1075
1076 if (!ret)
1077 ret = count;
1078 return ret;
1079}
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001080static DEVICE_ATTR_RW(governor);
1081
1082static ssize_t available_governors_show(struct device *d,
1083 struct device_attribute *attr,
1084 char *buf)
Nishanth Menon50a5b332012-10-29 15:01:48 -05001085{
Chanwoo Choibcf23c72017-01-31 15:38:16 +09001086 struct devfreq *df = to_devfreq(d);
Nishanth Menon50a5b332012-10-29 15:01:48 -05001087 ssize_t count = 0;
1088
1089 mutex_lock(&devfreq_list_lock);
Chanwoo Choibcf23c72017-01-31 15:38:16 +09001090
1091 /*
1092 * The devfreq with immutable governor (e.g., passive) shows
1093 * only own governor.
1094 */
Leonard Crestezac57e162019-09-24 10:26:53 +03001095 if (df->governor && df->governor->immutable) {
Chanwoo Choibcf23c72017-01-31 15:38:16 +09001096 count = scnprintf(&buf[count], DEVFREQ_NAME_LEN,
1097 "%s ", df->governor_name);
1098 /*
1099 * The devfreq device shows the registered governor except for
1100 * immutable governors such as passive governor .
1101 */
1102 } else {
1103 struct devfreq_governor *governor;
1104
1105 list_for_each_entry(governor, &devfreq_governor_list, node) {
1106 if (governor->immutable)
1107 continue;
1108 count += scnprintf(&buf[count], (PAGE_SIZE - count - 2),
1109 "%s ", governor->name);
1110 }
1111 }
1112
Nishanth Menon50a5b332012-10-29 15:01:48 -05001113 mutex_unlock(&devfreq_list_lock);
1114
1115 /* Truncate the trailing space */
1116 if (count)
1117 count--;
1118
1119 count += sprintf(&buf[count], "\n");
1120
1121 return count;
1122}
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001123static DEVICE_ATTR_RO(available_governors);
Nishanth Menon0359d1a2012-10-29 15:01:47 -05001124
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001125static ssize_t cur_freq_show(struct device *dev, struct device_attribute *attr,
1126 char *buf)
MyungJoo Ham9005b652011-10-02 00:19:28 +02001127{
Rajagopal Venkat7f98a902012-10-26 01:50:26 +02001128 unsigned long freq;
1129 struct devfreq *devfreq = to_devfreq(dev);
1130
1131 if (devfreq->profile->get_cur_freq &&
1132 !devfreq->profile->get_cur_freq(devfreq->dev.parent, &freq))
Chanwoo Choi9d0109b2016-11-19 22:47:36 +09001133 return sprintf(buf, "%lu\n", freq);
Rajagopal Venkat7f98a902012-10-26 01:50:26 +02001134
1135 return sprintf(buf, "%lu\n", devfreq->previous_freq);
1136}
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001137static DEVICE_ATTR_RO(cur_freq);
Rajagopal Venkat7f98a902012-10-26 01:50:26 +02001138
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001139static ssize_t target_freq_show(struct device *dev,
1140 struct device_attribute *attr, char *buf)
Rajagopal Venkat7f98a902012-10-26 01:50:26 +02001141{
MyungJoo Ham9005b652011-10-02 00:19:28 +02001142 return sprintf(buf, "%lu\n", to_devfreq(dev)->previous_freq);
1143}
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001144static DEVICE_ATTR_RO(target_freq);
MyungJoo Ham9005b652011-10-02 00:19:28 +02001145
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001146static ssize_t polling_interval_show(struct device *dev,
MyungJoo Ham9005b652011-10-02 00:19:28 +02001147 struct device_attribute *attr, char *buf)
1148{
1149 return sprintf(buf, "%d\n", to_devfreq(dev)->profile->polling_ms);
1150}
1151
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001152static ssize_t polling_interval_store(struct device *dev,
MyungJoo Ham9005b652011-10-02 00:19:28 +02001153 struct device_attribute *attr,
1154 const char *buf, size_t count)
1155{
1156 struct devfreq *df = to_devfreq(dev);
1157 unsigned int value;
1158 int ret;
1159
Nishanth Menon1b5c1be2012-10-29 15:01:45 -05001160 if (!df->governor)
1161 return -EINVAL;
1162
MyungJoo Ham9005b652011-10-02 00:19:28 +02001163 ret = sscanf(buf, "%u", &value);
1164 if (ret != 1)
Nishanth Menon12e26262012-10-26 01:50:43 +02001165 return -EINVAL;
MyungJoo Ham9005b652011-10-02 00:19:28 +02001166
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +02001167 df->governor->event_handler(df, DEVFREQ_GOV_INTERVAL, &value);
MyungJoo Ham9005b652011-10-02 00:19:28 +02001168 ret = count;
1169
MyungJoo Ham9005b652011-10-02 00:19:28 +02001170 return ret;
1171}
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001172static DEVICE_ATTR_RW(polling_interval);
MyungJoo Ham9005b652011-10-02 00:19:28 +02001173
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001174static ssize_t min_freq_store(struct device *dev, struct device_attribute *attr,
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001175 const char *buf, size_t count)
1176{
1177 struct devfreq *df = to_devfreq(dev);
1178 unsigned long value;
1179 int ret;
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001180
1181 ret = sscanf(buf, "%lu", &value);
1182 if (ret != 1)
Nishanth Menon12e26262012-10-26 01:50:43 +02001183 return -EINVAL;
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001184
1185 mutex_lock(&df->lock);
Matthias Kaehlckefc491a12018-08-03 13:05:09 -07001186
1187 if (value) {
1188 if (value > df->max_freq) {
1189 ret = -EINVAL;
1190 goto unlock;
1191 }
1192 } else {
1193 unsigned long *freq_table = df->profile->freq_table;
1194
1195 /* Get minimum frequency according to sorting order */
1196 if (freq_table[0] < freq_table[df->profile->max_state - 1])
1197 value = freq_table[0];
1198 else
1199 value = freq_table[df->profile->max_state - 1];
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001200 }
1201
1202 df->min_freq = value;
1203 update_devfreq(df);
1204 ret = count;
1205unlock:
1206 mutex_unlock(&df->lock);
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001207 return ret;
1208}
1209
Chanwoo Choi1051e2c2017-10-23 10:32:07 +09001210static ssize_t min_freq_show(struct device *dev, struct device_attribute *attr,
1211 char *buf)
1212{
Chanwoo Choif1d981e2017-10-23 10:32:08 +09001213 struct devfreq *df = to_devfreq(dev);
1214
1215 return sprintf(buf, "%lu\n", MAX(df->scaling_min_freq, df->min_freq));
Chanwoo Choi1051e2c2017-10-23 10:32:07 +09001216}
1217
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001218static ssize_t max_freq_store(struct device *dev, struct device_attribute *attr,
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001219 const char *buf, size_t count)
1220{
1221 struct devfreq *df = to_devfreq(dev);
1222 unsigned long value;
1223 int ret;
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001224
1225 ret = sscanf(buf, "%lu", &value);
1226 if (ret != 1)
Nishanth Menon12e26262012-10-26 01:50:43 +02001227 return -EINVAL;
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001228
1229 mutex_lock(&df->lock);
Matthias Kaehlckefc491a12018-08-03 13:05:09 -07001230
1231 if (value) {
1232 if (value < df->min_freq) {
1233 ret = -EINVAL;
1234 goto unlock;
1235 }
1236 } else {
1237 unsigned long *freq_table = df->profile->freq_table;
1238
1239 /* Get maximum frequency according to sorting order */
1240 if (freq_table[0] < freq_table[df->profile->max_state - 1])
1241 value = freq_table[df->profile->max_state - 1];
1242 else
1243 value = freq_table[0];
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001244 }
1245
1246 df->max_freq = value;
1247 update_devfreq(df);
1248 ret = count;
1249unlock:
1250 mutex_unlock(&df->lock);
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001251 return ret;
1252}
Chanwoo Choi3104fa32015-11-13 19:25:28 +09001253static DEVICE_ATTR_RW(min_freq);
Chanwoo Choi1051e2c2017-10-23 10:32:07 +09001254
1255static ssize_t max_freq_show(struct device *dev, struct device_attribute *attr,
1256 char *buf)
1257{
Chanwoo Choif1d981e2017-10-23 10:32:08 +09001258 struct devfreq *df = to_devfreq(dev);
1259
1260 return sprintf(buf, "%lu\n", MIN(df->scaling_max_freq, df->max_freq));
Chanwoo Choi1051e2c2017-10-23 10:32:07 +09001261}
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001262static DEVICE_ATTR_RW(max_freq);
MyungJoo Ham6530b9de2011-12-09 16:42:19 +09001263
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001264static ssize_t available_frequencies_show(struct device *d,
1265 struct device_attribute *attr,
1266 char *buf)
Nishanth Menond287de82012-10-25 19:48:59 -05001267{
1268 struct devfreq *df = to_devfreq(d);
Nishanth Menond287de82012-10-25 19:48:59 -05001269 ssize_t count = 0;
Chanwoo Choi416b46a2017-10-23 10:32:10 +09001270 int i;
Nishanth Menond287de82012-10-25 19:48:59 -05001271
Chanwoo Choi416b46a2017-10-23 10:32:10 +09001272 mutex_lock(&df->lock);
Nishanth Menond287de82012-10-25 19:48:59 -05001273
Chanwoo Choi416b46a2017-10-23 10:32:10 +09001274 for (i = 0; i < df->profile->max_state; i++)
Nishanth Menond287de82012-10-25 19:48:59 -05001275 count += scnprintf(&buf[count], (PAGE_SIZE - count - 2),
Chanwoo Choi416b46a2017-10-23 10:32:10 +09001276 "%lu ", df->profile->freq_table[i]);
Nishanth Menond287de82012-10-25 19:48:59 -05001277
Chanwoo Choi416b46a2017-10-23 10:32:10 +09001278 mutex_unlock(&df->lock);
Nishanth Menond287de82012-10-25 19:48:59 -05001279 /* Truncate the trailing space */
1280 if (count)
1281 count--;
1282
1283 count += sprintf(&buf[count], "\n");
1284
1285 return count;
1286}
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001287static DEVICE_ATTR_RO(available_frequencies);
Nishanth Menond287de82012-10-25 19:48:59 -05001288
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001289static ssize_t trans_stat_show(struct device *dev,
1290 struct device_attribute *attr, char *buf)
Jonghwa Leee552bba2012-08-23 20:00:46 +09001291{
1292 struct devfreq *devfreq = to_devfreq(dev);
1293 ssize_t len;
Rajagopal Venkat39688ce2013-01-08 11:20:39 +05301294 int i, j;
Jonghwa Leee552bba2012-08-23 20:00:46 +09001295 unsigned int max_state = devfreq->profile->max_state;
1296
MyungJoo Ham34bd3222015-11-23 15:45:36 +09001297 if (max_state == 0)
1298 return sprintf(buf, "Not Supported.\n");
Jonghwa Leee552bba2012-08-23 20:00:46 +09001299
Leonard Crestezb1d06da2019-09-24 10:52:23 +03001300 mutex_lock(&devfreq->lock);
1301 if (!devfreq->stop_polling &&
1302 devfreq_update_status(devfreq, devfreq->previous_freq)) {
1303 mutex_unlock(&devfreq->lock);
1304 return 0;
1305 }
1306 mutex_unlock(&devfreq->lock);
1307
Chanwoo Choid7df1e42015-11-19 16:28:46 +09001308 len = sprintf(buf, " From : To\n");
1309 len += sprintf(buf + len, " :");
Jonghwa Leee552bba2012-08-23 20:00:46 +09001310 for (i = 0; i < max_state; i++)
Chanwoo Choid7df1e42015-11-19 16:28:46 +09001311 len += sprintf(buf + len, "%10lu",
Jonghwa Leee552bba2012-08-23 20:00:46 +09001312 devfreq->profile->freq_table[i]);
1313
1314 len += sprintf(buf + len, " time(ms)\n");
1315
1316 for (i = 0; i < max_state; i++) {
1317 if (devfreq->profile->freq_table[i]
1318 == devfreq->previous_freq) {
1319 len += sprintf(buf + len, "*");
1320 } else {
1321 len += sprintf(buf + len, " ");
1322 }
Chanwoo Choid7df1e42015-11-19 16:28:46 +09001323 len += sprintf(buf + len, "%10lu:",
Jonghwa Leee552bba2012-08-23 20:00:46 +09001324 devfreq->profile->freq_table[i]);
1325 for (j = 0; j < max_state; j++)
Chanwoo Choid7df1e42015-11-19 16:28:46 +09001326 len += sprintf(buf + len, "%10u",
Jonghwa Leee552bba2012-08-23 20:00:46 +09001327 devfreq->trans_table[(i * max_state) + j]);
1328 len += sprintf(buf + len, "%10u\n",
1329 jiffies_to_msecs(devfreq->time_in_state[i]));
1330 }
1331
1332 len += sprintf(buf + len, "Total transition : %u\n",
1333 devfreq->total_trans);
1334 return len;
1335}
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001336static DEVICE_ATTR_RO(trans_stat);
Jonghwa Leee552bba2012-08-23 20:00:46 +09001337
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001338static struct attribute *devfreq_attrs[] = {
Chanwoo Choi1635d4f2019-11-05 18:18:03 +09001339 &dev_attr_name.attr,
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001340 &dev_attr_governor.attr,
1341 &dev_attr_available_governors.attr,
1342 &dev_attr_cur_freq.attr,
1343 &dev_attr_available_frequencies.attr,
1344 &dev_attr_target_freq.attr,
1345 &dev_attr_polling_interval.attr,
1346 &dev_attr_min_freq.attr,
1347 &dev_attr_max_freq.attr,
1348 &dev_attr_trans_stat.attr,
1349 NULL,
MyungJoo Ham9005b652011-10-02 00:19:28 +02001350};
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001351ATTRIBUTE_GROUPS(devfreq);
MyungJoo Ham9005b652011-10-02 00:19:28 +02001352
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001353static int __init devfreq_init(void)
1354{
1355 devfreq_class = class_create(THIS_MODULE, "devfreq");
1356 if (IS_ERR(devfreq_class)) {
1357 pr_err("%s: couldn't create class\n", __FILE__);
1358 return PTR_ERR(devfreq_class);
1359 }
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +02001360
1361 devfreq_wq = create_freezable_workqueue("devfreq_wq");
Dan Carpenterea7f4542013-08-15 10:55:10 +03001362 if (!devfreq_wq) {
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +02001363 class_destroy(devfreq_class);
1364 pr_err("%s: couldn't create workqueue\n", __FILE__);
Dan Carpenterea7f4542013-08-15 10:55:10 +03001365 return -ENOMEM;
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +02001366 }
Greg Kroah-Hartmana93d6b02013-07-24 15:05:09 -07001367 devfreq_class->dev_groups = devfreq_groups;
Rajagopal Venkat7e6fdd42012-10-26 01:50:09 +02001368
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001369 return 0;
1370}
1371subsys_initcall(devfreq_init);
1372
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001373/*
Masahiro Yamada4091fb92017-02-27 14:29:56 -08001374 * The following are helper functions for devfreq user device drivers with
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001375 * OPP framework.
1376 */
1377
1378/**
1379 * devfreq_recommended_opp() - Helper function to get proper OPP for the
1380 * freq value given to target callback.
Nishanth Menonc5b4a1c12012-10-26 01:50:35 +02001381 * @dev: The devfreq user device. (parent of devfreq)
1382 * @freq: The frequency given to target function
1383 * @flags: Flags handed from devfreq framework.
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001384 *
Viresh Kumar8a31d9d92017-01-23 10:11:47 +05301385 * The callers are required to call dev_pm_opp_put() for the returned OPP after
1386 * use.
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001387 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -05001388struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
1389 unsigned long *freq,
1390 u32 flags)
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001391{
Nishanth Menon47d43ba2013-09-19 16:03:51 -05001392 struct dev_pm_opp *opp;
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001393
MyungJoo Hamab5f2992012-03-16 21:54:53 +01001394 if (flags & DEVFREQ_FLAG_LEAST_UPPER_BOUND) {
1395 /* The freq is an upper bound. opp should be lower */
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001396 opp = dev_pm_opp_find_freq_floor(dev, freq);
MyungJoo Hamab5f2992012-03-16 21:54:53 +01001397
1398 /* If not available, use the closest opp */
Nishanth Menon07797262012-10-24 22:00:12 +02001399 if (opp == ERR_PTR(-ERANGE))
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001400 opp = dev_pm_opp_find_freq_ceil(dev, freq);
MyungJoo Hamab5f2992012-03-16 21:54:53 +01001401 } else {
1402 /* The freq is an lower bound. opp should be higher */
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001403 opp = dev_pm_opp_find_freq_ceil(dev, freq);
MyungJoo Hamab5f2992012-03-16 21:54:53 +01001404
1405 /* If not available, use the closest opp */
Nishanth Menon07797262012-10-24 22:00:12 +02001406 if (opp == ERR_PTR(-ERANGE))
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001407 opp = dev_pm_opp_find_freq_floor(dev, freq);
MyungJoo Hamab5f2992012-03-16 21:54:53 +01001408 }
1409
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001410 return opp;
1411}
Ãrjan Eidebd7e9272014-07-18 15:09:53 +01001412EXPORT_SYMBOL(devfreq_recommended_opp);
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001413
1414/**
1415 * devfreq_register_opp_notifier() - Helper function to get devfreq notified
1416 * for any changes in the OPP availability
1417 * changes
Nishanth Menonc5b4a1c12012-10-26 01:50:35 +02001418 * @dev: The devfreq user device. (parent of devfreq)
1419 * @devfreq: The devfreq object.
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001420 */
1421int devfreq_register_opp_notifier(struct device *dev, struct devfreq *devfreq)
1422{
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301423 return dev_pm_opp_register_notifier(dev, &devfreq->nb);
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001424}
Ãrjan Eidebd7e9272014-07-18 15:09:53 +01001425EXPORT_SYMBOL(devfreq_register_opp_notifier);
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001426
1427/**
1428 * devfreq_unregister_opp_notifier() - Helper function to stop getting devfreq
1429 * notified for any changes in the OPP
1430 * availability changes anymore.
Nishanth Menonc5b4a1c12012-10-26 01:50:35 +02001431 * @dev: The devfreq user device. (parent of devfreq)
1432 * @devfreq: The devfreq object.
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001433 *
1434 * At exit() callback of devfreq_dev_profile, this must be included if
1435 * devfreq_recommended_opp is used.
1436 */
1437int devfreq_unregister_opp_notifier(struct device *dev, struct devfreq *devfreq)
1438{
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301439 return dev_pm_opp_unregister_notifier(dev, &devfreq->nb);
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001440}
Ãrjan Eidebd7e9272014-07-18 15:09:53 +01001441EXPORT_SYMBOL(devfreq_unregister_opp_notifier);
MyungJoo Hama3c98b82011-10-02 00:19:15 +02001442
Chanwoo Choid5b040d2014-05-09 16:43:09 +09001443static void devm_devfreq_opp_release(struct device *dev, void *res)
1444{
1445 devfreq_unregister_opp_notifier(dev, *(struct devfreq **)res);
1446}
1447
1448/**
1449 * devm_ devfreq_register_opp_notifier()
1450 * - Resource-managed devfreq_register_opp_notifier()
1451 * @dev: The devfreq user device. (parent of devfreq)
1452 * @devfreq: The devfreq object.
1453 */
1454int devm_devfreq_register_opp_notifier(struct device *dev,
1455 struct devfreq *devfreq)
1456{
1457 struct devfreq **ptr;
1458 int ret;
1459
1460 ptr = devres_alloc(devm_devfreq_opp_release, sizeof(*ptr), GFP_KERNEL);
1461 if (!ptr)
1462 return -ENOMEM;
1463
1464 ret = devfreq_register_opp_notifier(dev, devfreq);
1465 if (ret) {
1466 devres_free(ptr);
1467 return ret;
1468 }
1469
1470 *ptr = devfreq;
1471 devres_add(dev, ptr);
1472
1473 return 0;
1474}
1475EXPORT_SYMBOL(devm_devfreq_register_opp_notifier);
1476
1477/**
1478 * devm_devfreq_unregister_opp_notifier()
1479 * - Resource-managed devfreq_unregister_opp_notifier()
1480 * @dev: The devfreq user device. (parent of devfreq)
1481 * @devfreq: The devfreq object.
1482 */
1483void devm_devfreq_unregister_opp_notifier(struct device *dev,
1484 struct devfreq *devfreq)
1485{
1486 WARN_ON(devres_release(dev, devm_devfreq_opp_release,
1487 devm_devfreq_dev_match, devfreq));
1488}
1489EXPORT_SYMBOL(devm_devfreq_unregister_opp_notifier);
1490
Chanwoo Choi0fe3a662016-01-26 13:21:26 +09001491/**
1492 * devfreq_register_notifier() - Register a driver with devfreq
1493 * @devfreq: The devfreq object.
1494 * @nb: The notifier block to register.
1495 * @list: DEVFREQ_TRANSITION_NOTIFIER.
1496 */
1497int devfreq_register_notifier(struct devfreq *devfreq,
1498 struct notifier_block *nb,
1499 unsigned int list)
1500{
1501 int ret = 0;
1502
1503 if (!devfreq)
1504 return -EINVAL;
1505
1506 switch (list) {
1507 case DEVFREQ_TRANSITION_NOTIFIER:
1508 ret = srcu_notifier_chain_register(
1509 &devfreq->transition_notifier_list, nb);
1510 break;
1511 default:
1512 ret = -EINVAL;
1513 }
1514
1515 return ret;
1516}
1517EXPORT_SYMBOL(devfreq_register_notifier);
1518
1519/*
1520 * devfreq_unregister_notifier() - Unregister a driver with devfreq
1521 * @devfreq: The devfreq object.
1522 * @nb: The notifier block to be unregistered.
1523 * @list: DEVFREQ_TRANSITION_NOTIFIER.
1524 */
1525int devfreq_unregister_notifier(struct devfreq *devfreq,
1526 struct notifier_block *nb,
1527 unsigned int list)
1528{
1529 int ret = 0;
1530
1531 if (!devfreq)
1532 return -EINVAL;
1533
1534 switch (list) {
1535 case DEVFREQ_TRANSITION_NOTIFIER:
1536 ret = srcu_notifier_chain_unregister(
1537 &devfreq->transition_notifier_list, nb);
1538 break;
1539 default:
1540 ret = -EINVAL;
1541 }
1542
1543 return ret;
1544}
1545EXPORT_SYMBOL(devfreq_unregister_notifier);
1546
1547struct devfreq_notifier_devres {
1548 struct devfreq *devfreq;
1549 struct notifier_block *nb;
1550 unsigned int list;
1551};
1552
1553static void devm_devfreq_notifier_release(struct device *dev, void *res)
1554{
1555 struct devfreq_notifier_devres *this = res;
1556
1557 devfreq_unregister_notifier(this->devfreq, this->nb, this->list);
1558}
1559
1560/**
1561 * devm_devfreq_register_notifier()
1562 - Resource-managed devfreq_register_notifier()
1563 * @dev: The devfreq user device. (parent of devfreq)
1564 * @devfreq: The devfreq object.
1565 * @nb: The notifier block to be unregistered.
1566 * @list: DEVFREQ_TRANSITION_NOTIFIER.
1567 */
1568int devm_devfreq_register_notifier(struct device *dev,
1569 struct devfreq *devfreq,
1570 struct notifier_block *nb,
1571 unsigned int list)
1572{
1573 struct devfreq_notifier_devres *ptr;
1574 int ret;
1575
1576 ptr = devres_alloc(devm_devfreq_notifier_release, sizeof(*ptr),
1577 GFP_KERNEL);
1578 if (!ptr)
1579 return -ENOMEM;
1580
1581 ret = devfreq_register_notifier(devfreq, nb, list);
1582 if (ret) {
1583 devres_free(ptr);
1584 return ret;
1585 }
1586
1587 ptr->devfreq = devfreq;
1588 ptr->nb = nb;
1589 ptr->list = list;
1590 devres_add(dev, ptr);
1591
1592 return 0;
1593}
1594EXPORT_SYMBOL(devm_devfreq_register_notifier);
1595
1596/**
1597 * devm_devfreq_unregister_notifier()
1598 - Resource-managed devfreq_unregister_notifier()
1599 * @dev: The devfreq user device. (parent of devfreq)
1600 * @devfreq: The devfreq object.
1601 * @nb: The notifier block to be unregistered.
1602 * @list: DEVFREQ_TRANSITION_NOTIFIER.
1603 */
1604void devm_devfreq_unregister_notifier(struct device *dev,
1605 struct devfreq *devfreq,
1606 struct notifier_block *nb,
1607 unsigned int list)
1608{
1609 WARN_ON(devres_release(dev, devm_devfreq_notifier_release,
1610 devm_devfreq_dev_match, devfreq));
1611}
1612EXPORT_SYMBOL(devm_devfreq_unregister_notifier);