2 * devfreq: Generic Dynamic Voltage and Frequency Scaling (DVFS) Framework
5 * Copyright (C) 2011 Samsung Electronics
6 * MyungJoo Ham <myungjoo.ham@samsung.com>
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.
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/errno.h>
16 #include <linux/err.h>
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/stat.h>
21 #include <linux/opp.h>
22 #include <linux/devfreq.h>
23 #include <linux/workqueue.h>
24 #include <linux/platform_device.h>
25 #include <linux/list.h>
26 #include <linux/printk.h>
27 #include <linux/hrtimer.h>
30 static struct class *devfreq_class;
33 * devfreq core provides delayed work based load monitoring helper
34 * functions. Governors can use these or can implement their own
35 * monitoring mechanism.
37 static struct workqueue_struct *devfreq_wq;
39 /* The list of all device-devfreq governors */
40 static LIST_HEAD(devfreq_governor_list);
41 /* The list of all device-devfreq */
42 static LIST_HEAD(devfreq_list);
43 static DEFINE_MUTEX(devfreq_list_lock);
46 * find_device_devfreq() - find devfreq struct using device pointer
47 * @dev: device pointer used to lookup device devfreq.
49 * Search the list of device devfreqs and return the matched device's
50 * devfreq info. devfreq_list_lock should be held by the caller.
52 static struct devfreq *find_device_devfreq(struct device *dev)
54 struct devfreq *tmp_devfreq;
56 if (unlikely(IS_ERR_OR_NULL(dev))) {
57 pr_err("DEVFREQ: %s: Invalid parameters\n", __func__);
58 return ERR_PTR(-EINVAL);
60 WARN(!mutex_is_locked(&devfreq_list_lock),
61 "devfreq_list_lock must be locked.");
63 list_for_each_entry(tmp_devfreq, &devfreq_list, node) {
64 if (tmp_devfreq->dev.parent == dev)
68 return ERR_PTR(-ENODEV);
72 * devfreq_get_freq_level() - Lookup freq_table for the frequency
73 * @devfreq: the devfreq instance
74 * @freq: the target frequency
76 static int devfreq_get_freq_level(struct devfreq *devfreq, unsigned long freq)
80 for (lev = 0; lev < devfreq->profile->max_state; lev++)
81 if (freq == devfreq->profile->freq_table[lev])
88 * devfreq_update_status() - Update statistics of devfreq behavior
89 * @devfreq: the devfreq instance
90 * @freq: the update target frequency
92 static int devfreq_update_status(struct devfreq *devfreq, unsigned long freq)
95 unsigned long cur_time;
97 lev = devfreq_get_freq_level(devfreq, freq);
102 devfreq->time_in_state[lev] +=
103 cur_time - devfreq->last_stat_updated;
104 if (freq != devfreq->previous_freq) {
105 prev_lev = devfreq_get_freq_level(devfreq,
106 devfreq->previous_freq);
107 devfreq->trans_table[(prev_lev *
108 devfreq->profile->max_state) + lev]++;
109 devfreq->total_trans++;
111 devfreq->last_stat_updated = cur_time;
117 * find_devfreq_governor() - find devfreq governor from name
118 * @name: name of the governor
120 * Search the list of devfreq governors and return the matched
121 * governor's pointer. devfreq_list_lock should be held by the caller.
123 static struct devfreq_governor *find_devfreq_governor(const char *name)
125 struct devfreq_governor *tmp_governor;
127 if (unlikely(IS_ERR_OR_NULL(name))) {
128 pr_err("DEVFREQ: %s: Invalid parameters\n", __func__);
129 return ERR_PTR(-EINVAL);
131 WARN(!mutex_is_locked(&devfreq_list_lock),
132 "devfreq_list_lock must be locked.");
134 list_for_each_entry(tmp_governor, &devfreq_governor_list, node) {
135 if (!strncmp(tmp_governor->name, name, DEVFREQ_NAME_LEN))
139 return ERR_PTR(-ENODEV);
142 /* Load monitoring helper functions for governors use */
145 * update_devfreq() - Reevaluate the device and configure frequency.
146 * @devfreq: the devfreq instance.
148 * Note: Lock devfreq->lock before calling update_devfreq
149 * This function is exported for governors.
151 int update_devfreq(struct devfreq *devfreq)
157 if (!mutex_is_locked(&devfreq->lock)) {
158 WARN(true, "devfreq->lock must be locked by the caller.\n");
162 if (!devfreq->governor)
165 /* Reevaluate the proper frequency */
166 err = devfreq->governor->get_target_freq(devfreq, &freq);
171 * Adjust the freuqency with user freq and QoS.
173 * List from the highest proiority
174 * max_freq (probably called by thermal when it's too hot)
178 if (devfreq->min_freq && freq < devfreq->min_freq) {
179 freq = devfreq->min_freq;
180 flags &= ~DEVFREQ_FLAG_LEAST_UPPER_BOUND; /* Use GLB */
182 if (devfreq->max_freq && freq > devfreq->max_freq) {
183 freq = devfreq->max_freq;
184 flags |= DEVFREQ_FLAG_LEAST_UPPER_BOUND; /* Use LUB */
187 err = devfreq->profile->target(devfreq->dev.parent, &freq, flags);
191 if (devfreq->profile->freq_table)
192 if (devfreq_update_status(devfreq, freq))
193 dev_err(&devfreq->dev,
194 "Couldn't update frequency transition information.\n");
196 devfreq->previous_freq = freq;
199 EXPORT_SYMBOL(update_devfreq);
202 * devfreq_monitor() - Periodically poll devfreq objects.
203 * @work: the work struct used to run devfreq_monitor periodically.
206 static void devfreq_monitor(struct work_struct *work)
209 struct devfreq *devfreq = container_of(work,
210 struct devfreq, work.work);
212 mutex_lock(&devfreq->lock);
213 err = update_devfreq(devfreq);
215 dev_err(&devfreq->dev, "dvfs failed with (%d) error\n", err);
217 queue_delayed_work(devfreq_wq, &devfreq->work,
218 msecs_to_jiffies(devfreq->profile->polling_ms));
219 mutex_unlock(&devfreq->lock);
223 * devfreq_monitor_start() - Start load monitoring of devfreq instance
224 * @devfreq: the devfreq instance.
226 * Helper function for starting devfreq device load monitoing. By
227 * default delayed work based monitoring is supported. Function
228 * to be called from governor in response to DEVFREQ_GOV_START
229 * event when device is added to devfreq framework.
231 void devfreq_monitor_start(struct devfreq *devfreq)
233 INIT_DEFERRABLE_WORK(&devfreq->work, devfreq_monitor);
234 if (devfreq->profile->polling_ms)
235 queue_delayed_work(devfreq_wq, &devfreq->work,
236 msecs_to_jiffies(devfreq->profile->polling_ms));
238 EXPORT_SYMBOL(devfreq_monitor_start);
241 * devfreq_monitor_stop() - Stop load monitoring of a devfreq instance
242 * @devfreq: the devfreq instance.
244 * Helper function to stop devfreq device load monitoing. Function
245 * to be called from governor in response to DEVFREQ_GOV_STOP
246 * event when device is removed from devfreq framework.
248 void devfreq_monitor_stop(struct devfreq *devfreq)
250 cancel_delayed_work_sync(&devfreq->work);
252 EXPORT_SYMBOL(devfreq_monitor_stop);
255 * devfreq_monitor_suspend() - Suspend load monitoring of a devfreq instance
256 * @devfreq: the devfreq instance.
258 * Helper function to suspend devfreq device load monitoing. Function
259 * to be called from governor in response to DEVFREQ_GOV_SUSPEND
260 * event or when polling interval is set to zero.
262 * Note: Though this function is same as devfreq_monitor_stop(),
263 * intentionally kept separate to provide hooks for collecting
264 * transition statistics.
266 void devfreq_monitor_suspend(struct devfreq *devfreq)
268 mutex_lock(&devfreq->lock);
269 if (devfreq->stop_polling) {
270 mutex_unlock(&devfreq->lock);
274 devfreq->stop_polling = true;
275 mutex_unlock(&devfreq->lock);
276 cancel_delayed_work_sync(&devfreq->work);
278 EXPORT_SYMBOL(devfreq_monitor_suspend);
281 * devfreq_monitor_resume() - Resume load monitoring of a devfreq instance
282 * @devfreq: the devfreq instance.
284 * Helper function to resume devfreq device load monitoing. Function
285 * to be called from governor in response to DEVFREQ_GOV_RESUME
286 * event or when polling interval is set to non-zero.
288 void devfreq_monitor_resume(struct devfreq *devfreq)
290 mutex_lock(&devfreq->lock);
291 if (!devfreq->stop_polling)
294 if (!delayed_work_pending(&devfreq->work) &&
295 devfreq->profile->polling_ms)
296 queue_delayed_work(devfreq_wq, &devfreq->work,
297 msecs_to_jiffies(devfreq->profile->polling_ms));
298 devfreq->stop_polling = false;
301 mutex_unlock(&devfreq->lock);
303 EXPORT_SYMBOL(devfreq_monitor_resume);
306 * devfreq_interval_update() - Update device devfreq monitoring interval
307 * @devfreq: the devfreq instance.
308 * @delay: new polling interval to be set.
310 * Helper function to set new load monitoring polling interval. Function
311 * to be called from governor in response to DEVFREQ_GOV_INTERVAL event.
313 void devfreq_interval_update(struct devfreq *devfreq, unsigned int *delay)
315 unsigned int cur_delay = devfreq->profile->polling_ms;
316 unsigned int new_delay = *delay;
318 mutex_lock(&devfreq->lock);
319 devfreq->profile->polling_ms = new_delay;
321 if (devfreq->stop_polling)
324 /* if new delay is zero, stop polling */
326 mutex_unlock(&devfreq->lock);
327 cancel_delayed_work_sync(&devfreq->work);
331 /* if current delay is zero, start polling with new delay */
333 queue_delayed_work(devfreq_wq, &devfreq->work,
334 msecs_to_jiffies(devfreq->profile->polling_ms));
338 /* if current delay is greater than new delay, restart polling */
339 if (cur_delay > new_delay) {
340 mutex_unlock(&devfreq->lock);
341 cancel_delayed_work_sync(&devfreq->work);
342 mutex_lock(&devfreq->lock);
343 if (!devfreq->stop_polling)
344 queue_delayed_work(devfreq_wq, &devfreq->work,
345 msecs_to_jiffies(devfreq->profile->polling_ms));
348 mutex_unlock(&devfreq->lock);
350 EXPORT_SYMBOL(devfreq_interval_update);
353 * devfreq_notifier_call() - Notify that the device frequency requirements
354 * has been changed out of devfreq framework.
355 * @nb: the notifier_block (supposed to be devfreq->nb)
359 * Called by a notifier that uses devfreq->nb.
361 static int devfreq_notifier_call(struct notifier_block *nb, unsigned long type,
364 struct devfreq *devfreq = container_of(nb, struct devfreq, nb);
367 mutex_lock(&devfreq->lock);
368 ret = update_devfreq(devfreq);
369 mutex_unlock(&devfreq->lock);
375 * _remove_devfreq() - Remove devfreq from the list and release its resources.
376 * @devfreq: the devfreq struct
377 * @skip: skip calling device_unregister().
379 static void _remove_devfreq(struct devfreq *devfreq, bool skip)
381 mutex_lock(&devfreq_list_lock);
382 if (IS_ERR(find_device_devfreq(devfreq->dev.parent))) {
383 mutex_unlock(&devfreq_list_lock);
384 dev_warn(&devfreq->dev, "releasing devfreq which doesn't exist\n");
387 list_del(&devfreq->node);
388 mutex_unlock(&devfreq_list_lock);
390 if (devfreq->governor)
391 devfreq->governor->event_handler(devfreq,
392 DEVFREQ_GOV_STOP, NULL);
394 if (devfreq->profile->exit)
395 devfreq->profile->exit(devfreq->dev.parent);
397 if (!skip && get_device(&devfreq->dev)) {
398 device_unregister(&devfreq->dev);
399 put_device(&devfreq->dev);
402 mutex_destroy(&devfreq->lock);
407 * devfreq_dev_release() - Callback for struct device to release the device.
408 * @dev: the devfreq device
410 * This calls _remove_devfreq() if _remove_devfreq() is not called.
411 * Note that devfreq_dev_release() could be called by _remove_devfreq() as
412 * well as by others unregistering the device.
414 static void devfreq_dev_release(struct device *dev)
416 struct devfreq *devfreq = to_devfreq(dev);
418 _remove_devfreq(devfreq, true);
422 * devfreq_add_device() - Add devfreq feature to the device
423 * @dev: the device to add devfreq feature.
424 * @profile: device-specific profile to run devfreq.
425 * @governor_name: name of the policy to choose frequency.
426 * @data: private data for the governor. The devfreq framework does not
429 struct devfreq *devfreq_add_device(struct device *dev,
430 struct devfreq_dev_profile *profile,
431 const char *governor_name,
434 struct devfreq *devfreq;
435 struct devfreq_governor *governor;
438 if (!dev || !profile || !governor_name) {
439 dev_err(dev, "%s: Invalid parameters.\n", __func__);
440 return ERR_PTR(-EINVAL);
443 mutex_lock(&devfreq_list_lock);
444 devfreq = find_device_devfreq(dev);
445 mutex_unlock(&devfreq_list_lock);
446 if (!IS_ERR(devfreq)) {
447 dev_err(dev, "%s: Unable to create devfreq for the device. It already has one.\n", __func__);
452 devfreq = kzalloc(sizeof(struct devfreq), GFP_KERNEL);
454 dev_err(dev, "%s: Unable to create devfreq for the device\n",
460 mutex_init(&devfreq->lock);
461 mutex_lock(&devfreq->lock);
462 devfreq->dev.parent = dev;
463 devfreq->dev.class = devfreq_class;
464 devfreq->dev.release = devfreq_dev_release;
465 devfreq->profile = profile;
466 strncpy(devfreq->governor_name, governor_name, DEVFREQ_NAME_LEN);
467 devfreq->previous_freq = profile->initial_freq;
468 devfreq->data = data;
469 devfreq->nb.notifier_call = devfreq_notifier_call;
471 devfreq->trans_table = devm_kzalloc(dev, sizeof(unsigned int) *
472 devfreq->profile->max_state *
473 devfreq->profile->max_state,
475 devfreq->time_in_state = devm_kzalloc(dev, sizeof(unsigned int) *
476 devfreq->profile->max_state,
478 devfreq->last_stat_updated = jiffies;
480 dev_set_name(&devfreq->dev, dev_name(dev));
481 err = device_register(&devfreq->dev);
483 put_device(&devfreq->dev);
484 mutex_unlock(&devfreq->lock);
488 mutex_unlock(&devfreq->lock);
490 mutex_lock(&devfreq_list_lock);
491 list_add(&devfreq->node, &devfreq_list);
493 governor = find_devfreq_governor(devfreq->governor_name);
494 if (!IS_ERR(governor))
495 devfreq->governor = governor;
496 if (devfreq->governor)
497 err = devfreq->governor->event_handler(devfreq,
498 DEVFREQ_GOV_START, NULL);
499 mutex_unlock(&devfreq_list_lock);
501 dev_err(dev, "%s: Unable to start governor for the device\n",
509 list_del(&devfreq->node);
510 device_unregister(&devfreq->dev);
516 EXPORT_SYMBOL(devfreq_add_device);
519 * devfreq_remove_device() - Remove devfreq feature from a device.
520 * @devfreq: the devfreq instance to be removed
522 int devfreq_remove_device(struct devfreq *devfreq)
527 _remove_devfreq(devfreq, false);
531 EXPORT_SYMBOL(devfreq_remove_device);
534 * devfreq_suspend_device() - Suspend devfreq of a device.
535 * @devfreq: the devfreq instance to be suspended
537 int devfreq_suspend_device(struct devfreq *devfreq)
542 if (!devfreq->governor)
545 return devfreq->governor->event_handler(devfreq,
546 DEVFREQ_GOV_SUSPEND, NULL);
548 EXPORT_SYMBOL(devfreq_suspend_device);
551 * devfreq_resume_device() - Resume devfreq of a device.
552 * @devfreq: the devfreq instance to be resumed
554 int devfreq_resume_device(struct devfreq *devfreq)
559 if (!devfreq->governor)
562 return devfreq->governor->event_handler(devfreq,
563 DEVFREQ_GOV_RESUME, NULL);
565 EXPORT_SYMBOL(devfreq_resume_device);
568 * devfreq_add_governor() - Add devfreq governor
569 * @governor: the devfreq governor to be added
571 int devfreq_add_governor(struct devfreq_governor *governor)
573 struct devfreq_governor *g;
574 struct devfreq *devfreq;
578 pr_err("%s: Invalid parameters.\n", __func__);
582 mutex_lock(&devfreq_list_lock);
583 g = find_devfreq_governor(governor->name);
585 pr_err("%s: governor %s already registered\n", __func__,
591 list_add(&governor->node, &devfreq_governor_list);
593 list_for_each_entry(devfreq, &devfreq_list, node) {
595 struct device *dev = devfreq->dev.parent;
597 if (!strncmp(devfreq->governor_name, governor->name,
599 /* The following should never occur */
600 if (devfreq->governor) {
602 "%s: Governor %s already present\n",
603 __func__, devfreq->governor->name);
604 ret = devfreq->governor->event_handler(devfreq,
605 DEVFREQ_GOV_STOP, NULL);
608 "%s: Governor %s stop = %d\n",
610 devfreq->governor->name, ret);
614 devfreq->governor = governor;
615 ret = devfreq->governor->event_handler(devfreq,
616 DEVFREQ_GOV_START, NULL);
618 dev_warn(dev, "%s: Governor %s start=%d\n",
619 __func__, devfreq->governor->name,
626 mutex_unlock(&devfreq_list_lock);
630 EXPORT_SYMBOL(devfreq_add_governor);
633 * devfreq_remove_device() - Remove devfreq feature from a device.
634 * @governor: the devfreq governor to be removed
636 int devfreq_remove_governor(struct devfreq_governor *governor)
638 struct devfreq_governor *g;
639 struct devfreq *devfreq;
643 pr_err("%s: Invalid parameters.\n", __func__);
647 mutex_lock(&devfreq_list_lock);
648 g = find_devfreq_governor(governor->name);
650 pr_err("%s: governor %s not registered\n", __func__,
655 list_for_each_entry(devfreq, &devfreq_list, node) {
657 struct device *dev = devfreq->dev.parent;
659 if (!strncmp(devfreq->governor_name, governor->name,
661 /* we should have a devfreq governor! */
662 if (!devfreq->governor) {
663 dev_warn(dev, "%s: Governor %s NOT present\n",
664 __func__, governor->name);
668 ret = devfreq->governor->event_handler(devfreq,
669 DEVFREQ_GOV_STOP, NULL);
671 dev_warn(dev, "%s: Governor %s stop=%d\n",
672 __func__, devfreq->governor->name,
675 devfreq->governor = NULL;
679 list_del(&governor->node);
681 mutex_unlock(&devfreq_list_lock);
685 EXPORT_SYMBOL(devfreq_remove_governor);
687 static ssize_t show_governor(struct device *dev,
688 struct device_attribute *attr, char *buf)
690 if (!to_devfreq(dev)->governor)
693 return sprintf(buf, "%s\n", to_devfreq(dev)->governor->name);
696 static ssize_t store_governor(struct device *dev, struct device_attribute *attr,
697 const char *buf, size_t count)
699 struct devfreq *df = to_devfreq(dev);
701 char str_governor[DEVFREQ_NAME_LEN + 1];
702 struct devfreq_governor *governor;
704 ret = sscanf(buf, "%" __stringify(DEVFREQ_NAME_LEN) "s", str_governor);
708 mutex_lock(&devfreq_list_lock);
709 governor = find_devfreq_governor(str_governor);
710 if (IS_ERR(governor)) {
711 ret = PTR_ERR(governor);
714 if (df->governor == governor)
718 ret = df->governor->event_handler(df, DEVFREQ_GOV_STOP, NULL);
720 dev_warn(dev, "%s: Governor %s not stopped(%d)\n",
721 __func__, df->governor->name, ret);
725 df->governor = governor;
726 strncpy(df->governor_name, governor->name, DEVFREQ_NAME_LEN);
727 ret = df->governor->event_handler(df, DEVFREQ_GOV_START, NULL);
729 dev_warn(dev, "%s: Governor %s not started(%d)\n",
730 __func__, df->governor->name, ret);
732 mutex_unlock(&devfreq_list_lock);
738 static ssize_t show_available_governors(struct device *d,
739 struct device_attribute *attr,
742 struct devfreq_governor *tmp_governor;
745 mutex_lock(&devfreq_list_lock);
746 list_for_each_entry(tmp_governor, &devfreq_governor_list, node)
747 count += scnprintf(&buf[count], (PAGE_SIZE - count - 2),
748 "%s ", tmp_governor->name);
749 mutex_unlock(&devfreq_list_lock);
751 /* Truncate the trailing space */
755 count += sprintf(&buf[count], "\n");
760 static ssize_t show_freq(struct device *dev,
761 struct device_attribute *attr, char *buf)
764 struct devfreq *devfreq = to_devfreq(dev);
766 if (devfreq->profile->get_cur_freq &&
767 !devfreq->profile->get_cur_freq(devfreq->dev.parent, &freq))
768 return sprintf(buf, "%lu\n", freq);
770 return sprintf(buf, "%lu\n", devfreq->previous_freq);
773 static ssize_t show_target_freq(struct device *dev,
774 struct device_attribute *attr, char *buf)
776 return sprintf(buf, "%lu\n", to_devfreq(dev)->previous_freq);
779 static ssize_t show_polling_interval(struct device *dev,
780 struct device_attribute *attr, char *buf)
782 return sprintf(buf, "%d\n", to_devfreq(dev)->profile->polling_ms);
785 static ssize_t store_polling_interval(struct device *dev,
786 struct device_attribute *attr,
787 const char *buf, size_t count)
789 struct devfreq *df = to_devfreq(dev);
796 ret = sscanf(buf, "%u", &value);
800 df->governor->event_handler(df, DEVFREQ_GOV_INTERVAL, &value);
806 static ssize_t store_min_freq(struct device *dev, struct device_attribute *attr,
807 const char *buf, size_t count)
809 struct devfreq *df = to_devfreq(dev);
814 ret = sscanf(buf, "%lu", &value);
818 mutex_lock(&df->lock);
820 if (value && max && value > max) {
825 df->min_freq = value;
829 mutex_unlock(&df->lock);
833 static ssize_t show_min_freq(struct device *dev, struct device_attribute *attr,
836 return sprintf(buf, "%lu\n", to_devfreq(dev)->min_freq);
839 static ssize_t store_max_freq(struct device *dev, struct device_attribute *attr,
840 const char *buf, size_t count)
842 struct devfreq *df = to_devfreq(dev);
847 ret = sscanf(buf, "%lu", &value);
851 mutex_lock(&df->lock);
853 if (value && min && value < min) {
858 df->max_freq = value;
862 mutex_unlock(&df->lock);
866 static ssize_t show_max_freq(struct device *dev, struct device_attribute *attr,
869 return sprintf(buf, "%lu\n", to_devfreq(dev)->max_freq);
872 static ssize_t show_available_freqs(struct device *d,
873 struct device_attribute *attr,
876 struct devfreq *df = to_devfreq(d);
877 struct device *dev = df->dev.parent;
880 unsigned long freq = 0;
884 opp = opp_find_freq_ceil(dev, &freq);
888 count += scnprintf(&buf[count], (PAGE_SIZE - count - 2),
894 /* Truncate the trailing space */
898 count += sprintf(&buf[count], "\n");
903 static ssize_t show_trans_table(struct device *dev, struct device_attribute *attr,
906 struct devfreq *devfreq = to_devfreq(dev);
909 unsigned int max_state = devfreq->profile->max_state;
911 err = devfreq_update_status(devfreq, devfreq->previous_freq);
915 len = sprintf(buf, " From : To\n");
916 len += sprintf(buf + len, " :");
917 for (i = 0; i < max_state; i++)
918 len += sprintf(buf + len, "%8u",
919 devfreq->profile->freq_table[i]);
921 len += sprintf(buf + len, " time(ms)\n");
923 for (i = 0; i < max_state; i++) {
924 if (devfreq->profile->freq_table[i]
925 == devfreq->previous_freq) {
926 len += sprintf(buf + len, "*");
928 len += sprintf(buf + len, " ");
930 len += sprintf(buf + len, "%8u:",
931 devfreq->profile->freq_table[i]);
932 for (j = 0; j < max_state; j++)
933 len += sprintf(buf + len, "%8u",
934 devfreq->trans_table[(i * max_state) + j]);
935 len += sprintf(buf + len, "%10u\n",
936 jiffies_to_msecs(devfreq->time_in_state[i]));
939 len += sprintf(buf + len, "Total transition : %u\n",
940 devfreq->total_trans);
944 static struct device_attribute devfreq_attrs[] = {
945 __ATTR(governor, S_IRUGO | S_IWUSR, show_governor, store_governor),
946 __ATTR(available_governors, S_IRUGO, show_available_governors, NULL),
947 __ATTR(cur_freq, S_IRUGO, show_freq, NULL),
948 __ATTR(available_frequencies, S_IRUGO, show_available_freqs, NULL),
949 __ATTR(target_freq, S_IRUGO, show_target_freq, NULL),
950 __ATTR(polling_interval, S_IRUGO | S_IWUSR, show_polling_interval,
951 store_polling_interval),
952 __ATTR(min_freq, S_IRUGO | S_IWUSR, show_min_freq, store_min_freq),
953 __ATTR(max_freq, S_IRUGO | S_IWUSR, show_max_freq, store_max_freq),
954 __ATTR(trans_stat, S_IRUGO, show_trans_table, NULL),
958 static int __init devfreq_init(void)
960 devfreq_class = class_create(THIS_MODULE, "devfreq");
961 if (IS_ERR(devfreq_class)) {
962 pr_err("%s: couldn't create class\n", __FILE__);
963 return PTR_ERR(devfreq_class);
966 devfreq_wq = create_freezable_workqueue("devfreq_wq");
967 if (IS_ERR(devfreq_wq)) {
968 class_destroy(devfreq_class);
969 pr_err("%s: couldn't create workqueue\n", __FILE__);
970 return PTR_ERR(devfreq_wq);
972 devfreq_class->dev_attrs = devfreq_attrs;
976 subsys_initcall(devfreq_init);
978 static void __exit devfreq_exit(void)
980 class_destroy(devfreq_class);
981 destroy_workqueue(devfreq_wq);
983 module_exit(devfreq_exit);
986 * The followings are helper functions for devfreq user device drivers with
991 * devfreq_recommended_opp() - Helper function to get proper OPP for the
992 * freq value given to target callback.
993 * @dev: The devfreq user device. (parent of devfreq)
994 * @freq: The frequency given to target function
995 * @flags: Flags handed from devfreq framework.
997 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
998 * protected pointer. The reason for the same is that the opp pointer which is
999 * returned will remain valid for use with opp_get_{voltage, freq} only while
1000 * under the locked area. The pointer returned must be used prior to unlocking
1001 * with rcu_read_unlock() to maintain the integrity of the pointer.
1003 struct opp *devfreq_recommended_opp(struct device *dev, unsigned long *freq,
1008 if (flags & DEVFREQ_FLAG_LEAST_UPPER_BOUND) {
1009 /* The freq is an upper bound. opp should be lower */
1010 opp = opp_find_freq_floor(dev, freq);
1012 /* If not available, use the closest opp */
1013 if (opp == ERR_PTR(-ERANGE))
1014 opp = opp_find_freq_ceil(dev, freq);
1016 /* The freq is an lower bound. opp should be higher */
1017 opp = opp_find_freq_ceil(dev, freq);
1019 /* If not available, use the closest opp */
1020 if (opp == ERR_PTR(-ERANGE))
1021 opp = opp_find_freq_floor(dev, freq);
1028 * devfreq_register_opp_notifier() - Helper function to get devfreq notified
1029 * for any changes in the OPP availability
1031 * @dev: The devfreq user device. (parent of devfreq)
1032 * @devfreq: The devfreq object.
1034 int devfreq_register_opp_notifier(struct device *dev, struct devfreq *devfreq)
1036 struct srcu_notifier_head *nh;
1040 nh = opp_get_notifier(dev);
1045 ret = srcu_notifier_chain_register(nh, &devfreq->nb);
1051 * devfreq_unregister_opp_notifier() - Helper function to stop getting devfreq
1052 * notified for any changes in the OPP
1053 * availability changes anymore.
1054 * @dev: The devfreq user device. (parent of devfreq)
1055 * @devfreq: The devfreq object.
1057 * At exit() callback of devfreq_dev_profile, this must be included if
1058 * devfreq_recommended_opp is used.
1060 int devfreq_unregister_opp_notifier(struct device *dev, struct devfreq *devfreq)
1062 struct srcu_notifier_head *nh;
1066 nh = opp_get_notifier(dev);
1071 ret = srcu_notifier_chain_unregister(nh, &devfreq->nb);
1076 MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
1077 MODULE_DESCRIPTION("devfreq class support");
1078 MODULE_LICENSE("GPL");