2 * devfreq: Generic Dynamic Voltage and Frequency Scaling (DVFS) Framework
5 * Copyright (C) 2011 Samsung Electronics
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/export.h>
19 #include <linux/slab.h>
20 #include <linux/stat.h>
21 #include <linux/pm_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>
31 static struct class *devfreq_class;
34 * devfreq core provides delayed work based load monitoring helper
35 * functions. Governors can use these or can implement their own
36 * monitoring mechanism.
38 static struct workqueue_struct *devfreq_wq;
40 /* The list of all device-devfreq governors */
41 static LIST_HEAD(devfreq_governor_list);
42 /* The list of all device-devfreq */
43 static LIST_HEAD(devfreq_list);
44 static DEFINE_MUTEX(devfreq_list_lock);
47 * find_device_devfreq() - find devfreq struct using device pointer
48 * @dev: device pointer used to lookup device devfreq.
50 * Search the list of device devfreqs and return the matched device's
51 * devfreq info. devfreq_list_lock should be held by the caller.
53 static struct devfreq *find_device_devfreq(struct device *dev)
55 struct devfreq *tmp_devfreq;
57 if (IS_ERR_OR_NULL(dev)) {
58 pr_err("DEVFREQ: %s: Invalid parameters\n", __func__);
59 return ERR_PTR(-EINVAL);
61 WARN(!mutex_is_locked(&devfreq_list_lock),
62 "devfreq_list_lock must be locked.");
64 list_for_each_entry(tmp_devfreq, &devfreq_list, node) {
65 if (tmp_devfreq->dev.parent == dev)
69 return ERR_PTR(-ENODEV);
73 * devfreq_get_freq_level() - Lookup freq_table for the frequency
74 * @devfreq: the devfreq instance
75 * @freq: the target frequency
77 static int devfreq_get_freq_level(struct devfreq *devfreq, unsigned long freq)
81 for (lev = 0; lev < devfreq->profile->max_state; lev++)
82 if (freq == devfreq->profile->freq_table[lev])
89 * devfreq_set_freq_table() - Initialize freq_table for the frequency
90 * @devfreq: the devfreq instance
92 static void devfreq_set_freq_table(struct devfreq *devfreq)
94 struct devfreq_dev_profile *profile = devfreq->profile;
95 struct dev_pm_opp *opp;
99 /* Initialize the freq_table from OPP table */
100 count = dev_pm_opp_get_opp_count(devfreq->dev.parent);
104 profile->max_state = count;
105 profile->freq_table = devm_kcalloc(devfreq->dev.parent,
107 sizeof(*profile->freq_table),
109 if (!profile->freq_table) {
110 profile->max_state = 0;
115 for (i = 0, freq = 0; i < profile->max_state; i++, freq++) {
116 opp = dev_pm_opp_find_freq_ceil(devfreq->dev.parent, &freq);
118 devm_kfree(devfreq->dev.parent, profile->freq_table);
119 profile->max_state = 0;
123 profile->freq_table[i] = freq;
129 * devfreq_update_status() - Update statistics of devfreq behavior
130 * @devfreq: the devfreq instance
131 * @freq: the update target frequency
133 static int devfreq_update_status(struct devfreq *devfreq, unsigned long freq)
135 int lev, prev_lev, ret = 0;
136 unsigned long cur_time;
140 prev_lev = devfreq_get_freq_level(devfreq, devfreq->previous_freq);
146 devfreq->time_in_state[prev_lev] +=
147 cur_time - devfreq->last_stat_updated;
149 lev = devfreq_get_freq_level(devfreq, freq);
155 if (lev != prev_lev) {
156 devfreq->trans_table[(prev_lev *
157 devfreq->profile->max_state) + lev]++;
158 devfreq->total_trans++;
162 devfreq->last_stat_updated = cur_time;
167 * find_devfreq_governor() - find devfreq governor from name
168 * @name: name of the governor
170 * Search the list of devfreq governors and return the matched
171 * governor's pointer. devfreq_list_lock should be held by the caller.
173 static struct devfreq_governor *find_devfreq_governor(const char *name)
175 struct devfreq_governor *tmp_governor;
177 if (IS_ERR_OR_NULL(name)) {
178 pr_err("DEVFREQ: %s: Invalid parameters\n", __func__);
179 return ERR_PTR(-EINVAL);
181 WARN(!mutex_is_locked(&devfreq_list_lock),
182 "devfreq_list_lock must be locked.");
184 list_for_each_entry(tmp_governor, &devfreq_governor_list, node) {
185 if (!strncmp(tmp_governor->name, name, DEVFREQ_NAME_LEN))
189 return ERR_PTR(-ENODEV);
192 static int devfreq_notify_transition(struct devfreq *devfreq,
193 struct devfreq_freqs *freqs, unsigned int state)
199 case DEVFREQ_PRECHANGE:
200 srcu_notifier_call_chain(&devfreq->transition_notifier_list,
201 DEVFREQ_PRECHANGE, freqs);
204 case DEVFREQ_POSTCHANGE:
205 srcu_notifier_call_chain(&devfreq->transition_notifier_list,
206 DEVFREQ_POSTCHANGE, freqs);
215 /* Load monitoring helper functions for governors use */
218 * update_devfreq() - Reevaluate the device and configure frequency.
219 * @devfreq: the devfreq instance.
221 * Note: Lock devfreq->lock before calling update_devfreq
222 * This function is exported for governors.
224 int update_devfreq(struct devfreq *devfreq)
226 struct devfreq_freqs freqs;
227 unsigned long freq, cur_freq;
231 if (!mutex_is_locked(&devfreq->lock)) {
232 WARN(true, "devfreq->lock must be locked by the caller.\n");
236 if (!devfreq->governor)
239 /* Reevaluate the proper frequency */
240 err = devfreq->governor->get_target_freq(devfreq, &freq);
245 * Adjust the frequency with user freq and QoS.
247 * List from the highest priority
252 if (devfreq->min_freq && freq < devfreq->min_freq) {
253 freq = devfreq->min_freq;
254 flags &= ~DEVFREQ_FLAG_LEAST_UPPER_BOUND; /* Use GLB */
256 if (devfreq->max_freq && freq > devfreq->max_freq) {
257 freq = devfreq->max_freq;
258 flags |= DEVFREQ_FLAG_LEAST_UPPER_BOUND; /* Use LUB */
261 if (devfreq->profile->get_cur_freq)
262 devfreq->profile->get_cur_freq(devfreq->dev.parent, &cur_freq);
264 cur_freq = devfreq->previous_freq;
266 freqs.old = cur_freq;
268 devfreq_notify_transition(devfreq, &freqs, DEVFREQ_PRECHANGE);
270 err = devfreq->profile->target(devfreq->dev.parent, &freq, flags);
272 freqs.new = cur_freq;
273 devfreq_notify_transition(devfreq, &freqs, DEVFREQ_POSTCHANGE);
278 devfreq_notify_transition(devfreq, &freqs, DEVFREQ_POSTCHANGE);
280 if (devfreq->profile->freq_table)
281 if (devfreq_update_status(devfreq, freq))
282 dev_err(&devfreq->dev,
283 "Couldn't update frequency transition information.\n");
285 devfreq->previous_freq = freq;
288 EXPORT_SYMBOL(update_devfreq);
291 * devfreq_monitor() - Periodically poll devfreq objects.
292 * @work: the work struct used to run devfreq_monitor periodically.
295 static void devfreq_monitor(struct work_struct *work)
298 struct devfreq *devfreq = container_of(work,
299 struct devfreq, work.work);
301 mutex_lock(&devfreq->lock);
302 err = update_devfreq(devfreq);
304 dev_err(&devfreq->dev, "dvfs failed with (%d) error\n", err);
306 queue_delayed_work(devfreq_wq, &devfreq->work,
307 msecs_to_jiffies(devfreq->profile->polling_ms));
308 mutex_unlock(&devfreq->lock);
312 * devfreq_monitor_start() - Start load monitoring of devfreq instance
313 * @devfreq: the devfreq instance.
315 * Helper function for starting devfreq device load monitoing. By
316 * default delayed work based monitoring is supported. Function
317 * to be called from governor in response to DEVFREQ_GOV_START
318 * event when device is added to devfreq framework.
320 void devfreq_monitor_start(struct devfreq *devfreq)
322 INIT_DEFERRABLE_WORK(&devfreq->work, devfreq_monitor);
323 if (devfreq->profile->polling_ms)
324 queue_delayed_work(devfreq_wq, &devfreq->work,
325 msecs_to_jiffies(devfreq->profile->polling_ms));
327 EXPORT_SYMBOL(devfreq_monitor_start);
330 * devfreq_monitor_stop() - Stop load monitoring of a devfreq instance
331 * @devfreq: the devfreq instance.
333 * Helper function to stop devfreq device load monitoing. Function
334 * to be called from governor in response to DEVFREQ_GOV_STOP
335 * event when device is removed from devfreq framework.
337 void devfreq_monitor_stop(struct devfreq *devfreq)
339 cancel_delayed_work_sync(&devfreq->work);
341 EXPORT_SYMBOL(devfreq_monitor_stop);
344 * devfreq_monitor_suspend() - Suspend load monitoring of a devfreq instance
345 * @devfreq: the devfreq instance.
347 * Helper function to suspend devfreq device load monitoing. Function
348 * to be called from governor in response to DEVFREQ_GOV_SUSPEND
349 * event or when polling interval is set to zero.
351 * Note: Though this function is same as devfreq_monitor_stop(),
352 * intentionally kept separate to provide hooks for collecting
353 * transition statistics.
355 void devfreq_monitor_suspend(struct devfreq *devfreq)
357 mutex_lock(&devfreq->lock);
358 if (devfreq->stop_polling) {
359 mutex_unlock(&devfreq->lock);
363 devfreq_update_status(devfreq, devfreq->previous_freq);
364 devfreq->stop_polling = true;
365 mutex_unlock(&devfreq->lock);
366 cancel_delayed_work_sync(&devfreq->work);
368 EXPORT_SYMBOL(devfreq_monitor_suspend);
371 * devfreq_monitor_resume() - Resume load monitoring of a devfreq instance
372 * @devfreq: the devfreq instance.
374 * Helper function to resume devfreq device load monitoing. Function
375 * to be called from governor in response to DEVFREQ_GOV_RESUME
376 * event or when polling interval is set to non-zero.
378 void devfreq_monitor_resume(struct devfreq *devfreq)
382 mutex_lock(&devfreq->lock);
383 if (!devfreq->stop_polling)
386 if (!delayed_work_pending(&devfreq->work) &&
387 devfreq->profile->polling_ms)
388 queue_delayed_work(devfreq_wq, &devfreq->work,
389 msecs_to_jiffies(devfreq->profile->polling_ms));
391 devfreq->last_stat_updated = jiffies;
392 devfreq->stop_polling = false;
394 if (devfreq->profile->get_cur_freq &&
395 !devfreq->profile->get_cur_freq(devfreq->dev.parent, &freq))
396 devfreq->previous_freq = freq;
399 mutex_unlock(&devfreq->lock);
401 EXPORT_SYMBOL(devfreq_monitor_resume);
404 * devfreq_interval_update() - Update device devfreq monitoring interval
405 * @devfreq: the devfreq instance.
406 * @delay: new polling interval to be set.
408 * Helper function to set new load monitoring polling interval. Function
409 * to be called from governor in response to DEVFREQ_GOV_INTERVAL event.
411 void devfreq_interval_update(struct devfreq *devfreq, unsigned int *delay)
413 unsigned int cur_delay = devfreq->profile->polling_ms;
414 unsigned int new_delay = *delay;
416 mutex_lock(&devfreq->lock);
417 devfreq->profile->polling_ms = new_delay;
419 if (devfreq->stop_polling)
422 /* if new delay is zero, stop polling */
424 mutex_unlock(&devfreq->lock);
425 cancel_delayed_work_sync(&devfreq->work);
429 /* if current delay is zero, start polling with new delay */
431 queue_delayed_work(devfreq_wq, &devfreq->work,
432 msecs_to_jiffies(devfreq->profile->polling_ms));
436 /* if current delay is greater than new delay, restart polling */
437 if (cur_delay > new_delay) {
438 mutex_unlock(&devfreq->lock);
439 cancel_delayed_work_sync(&devfreq->work);
440 mutex_lock(&devfreq->lock);
441 if (!devfreq->stop_polling)
442 queue_delayed_work(devfreq_wq, &devfreq->work,
443 msecs_to_jiffies(devfreq->profile->polling_ms));
446 mutex_unlock(&devfreq->lock);
448 EXPORT_SYMBOL(devfreq_interval_update);
451 * devfreq_notifier_call() - Notify that the device frequency requirements
452 * has been changed out of devfreq framework.
453 * @nb: the notifier_block (supposed to be devfreq->nb)
457 * Called by a notifier that uses devfreq->nb.
459 static int devfreq_notifier_call(struct notifier_block *nb, unsigned long type,
462 struct devfreq *devfreq = container_of(nb, struct devfreq, nb);
465 mutex_lock(&devfreq->lock);
466 ret = update_devfreq(devfreq);
467 mutex_unlock(&devfreq->lock);
473 * _remove_devfreq() - Remove devfreq from the list and release its resources.
474 * @devfreq: the devfreq struct
476 static void _remove_devfreq(struct devfreq *devfreq)
478 mutex_lock(&devfreq_list_lock);
479 if (IS_ERR(find_device_devfreq(devfreq->dev.parent))) {
480 mutex_unlock(&devfreq_list_lock);
481 dev_warn(&devfreq->dev, "releasing devfreq which doesn't exist\n");
484 list_del(&devfreq->node);
485 mutex_unlock(&devfreq_list_lock);
487 if (devfreq->governor)
488 devfreq->governor->event_handler(devfreq,
489 DEVFREQ_GOV_STOP, NULL);
491 if (devfreq->profile->exit)
492 devfreq->profile->exit(devfreq->dev.parent);
494 mutex_destroy(&devfreq->lock);
499 * devfreq_dev_release() - Callback for struct device to release the device.
500 * @dev: the devfreq device
502 * This calls _remove_devfreq() if _remove_devfreq() is not called.
504 static void devfreq_dev_release(struct device *dev)
506 struct devfreq *devfreq = to_devfreq(dev);
508 _remove_devfreq(devfreq);
512 * devfreq_add_device() - Add devfreq feature to the device
513 * @dev: the device to add devfreq feature.
514 * @profile: device-specific profile to run devfreq.
515 * @governor_name: name of the policy to choose frequency.
516 * @data: private data for the governor. The devfreq framework does not
519 struct devfreq *devfreq_add_device(struct device *dev,
520 struct devfreq_dev_profile *profile,
521 const char *governor_name,
524 struct devfreq *devfreq;
525 struct devfreq_governor *governor;
528 if (!dev || !profile || !governor_name) {
529 dev_err(dev, "%s: Invalid parameters.\n", __func__);
530 return ERR_PTR(-EINVAL);
533 mutex_lock(&devfreq_list_lock);
534 devfreq = find_device_devfreq(dev);
535 mutex_unlock(&devfreq_list_lock);
536 if (!IS_ERR(devfreq)) {
537 dev_err(dev, "%s: Unable to create devfreq for the device. It already has one.\n", __func__);
542 devfreq = kzalloc(sizeof(struct devfreq), GFP_KERNEL);
544 dev_err(dev, "%s: Unable to create devfreq for the device\n",
550 mutex_init(&devfreq->lock);
551 mutex_lock(&devfreq->lock);
552 devfreq->dev.parent = dev;
553 devfreq->dev.class = devfreq_class;
554 devfreq->dev.release = devfreq_dev_release;
555 devfreq->profile = profile;
556 strncpy(devfreq->governor_name, governor_name, DEVFREQ_NAME_LEN);
557 devfreq->previous_freq = profile->initial_freq;
558 devfreq->last_status.current_frequency = profile->initial_freq;
559 devfreq->data = data;
560 devfreq->nb.notifier_call = devfreq_notifier_call;
562 if (!devfreq->profile->max_state && !devfreq->profile->freq_table) {
563 mutex_unlock(&devfreq->lock);
564 devfreq_set_freq_table(devfreq);
565 mutex_lock(&devfreq->lock);
568 dev_set_name(&devfreq->dev, "%s", dev_name(dev));
569 err = device_register(&devfreq->dev);
571 mutex_unlock(&devfreq->lock);
575 devfreq->trans_table = devm_kzalloc(&devfreq->dev, sizeof(unsigned int) *
576 devfreq->profile->max_state *
577 devfreq->profile->max_state,
579 devfreq->time_in_state = devm_kzalloc(&devfreq->dev, sizeof(unsigned long) *
580 devfreq->profile->max_state,
582 devfreq->last_stat_updated = jiffies;
584 srcu_init_notifier_head(&devfreq->transition_notifier_list);
586 mutex_unlock(&devfreq->lock);
588 mutex_lock(&devfreq_list_lock);
589 list_add(&devfreq->node, &devfreq_list);
591 governor = find_devfreq_governor(devfreq->governor_name);
592 if (!IS_ERR(governor))
593 devfreq->governor = governor;
594 if (devfreq->governor)
595 err = devfreq->governor->event_handler(devfreq,
596 DEVFREQ_GOV_START, NULL);
597 mutex_unlock(&devfreq_list_lock);
599 dev_err(dev, "%s: Unable to start governor for the device\n",
607 list_del(&devfreq->node);
608 device_unregister(&devfreq->dev);
612 EXPORT_SYMBOL(devfreq_add_device);
615 * devfreq_remove_device() - Remove devfreq feature from a device.
616 * @devfreq: the devfreq instance to be removed
618 * The opposite of devfreq_add_device().
620 int devfreq_remove_device(struct devfreq *devfreq)
625 device_unregister(&devfreq->dev);
629 EXPORT_SYMBOL(devfreq_remove_device);
631 static int devm_devfreq_dev_match(struct device *dev, void *res, void *data)
633 struct devfreq **r = res;
635 if (WARN_ON(!r || !*r))
641 static void devm_devfreq_dev_release(struct device *dev, void *res)
643 devfreq_remove_device(*(struct devfreq **)res);
647 * devm_devfreq_add_device() - Resource-managed devfreq_add_device()
648 * @dev: the device to add devfreq feature.
649 * @profile: device-specific profile to run devfreq.
650 * @governor_name: name of the policy to choose frequency.
651 * @data: private data for the governor. The devfreq framework does not
654 * This function manages automatically the memory of devfreq device using device
655 * resource management and simplify the free operation for memory of devfreq
658 struct devfreq *devm_devfreq_add_device(struct device *dev,
659 struct devfreq_dev_profile *profile,
660 const char *governor_name,
663 struct devfreq **ptr, *devfreq;
665 ptr = devres_alloc(devm_devfreq_dev_release, sizeof(*ptr), GFP_KERNEL);
667 return ERR_PTR(-ENOMEM);
669 devfreq = devfreq_add_device(dev, profile, governor_name, data);
670 if (IS_ERR(devfreq)) {
672 return ERR_PTR(-ENOMEM);
676 devres_add(dev, ptr);
680 EXPORT_SYMBOL(devm_devfreq_add_device);
684 * devfreq_get_devfreq_by_phandle - Get the devfreq device from devicetree
685 * @dev - instance to the given device
686 * @index - index into list of devfreq
688 * return the instance of devfreq device
690 struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev, int index)
692 struct device_node *node;
693 struct devfreq *devfreq;
696 return ERR_PTR(-EINVAL);
699 return ERR_PTR(-EINVAL);
701 node = of_parse_phandle(dev->of_node, "devfreq", index);
703 return ERR_PTR(-ENODEV);
705 mutex_lock(&devfreq_list_lock);
706 list_for_each_entry(devfreq, &devfreq_list, node) {
707 if (devfreq->dev.parent
708 && devfreq->dev.parent->of_node == node) {
709 mutex_unlock(&devfreq_list_lock);
714 mutex_unlock(&devfreq_list_lock);
717 return ERR_PTR(-EPROBE_DEFER);
720 struct devfreq *devfreq_get_devfreq_by_phandle(struct device *dev, int index)
722 return ERR_PTR(-ENODEV);
724 #endif /* CONFIG_OF */
725 EXPORT_SYMBOL_GPL(devfreq_get_devfreq_by_phandle);
728 * devm_devfreq_remove_device() - Resource-managed devfreq_remove_device()
729 * @dev: the device to add devfreq feature.
730 * @devfreq: the devfreq instance to be removed
732 void devm_devfreq_remove_device(struct device *dev, struct devfreq *devfreq)
734 WARN_ON(devres_release(dev, devm_devfreq_dev_release,
735 devm_devfreq_dev_match, devfreq));
737 EXPORT_SYMBOL(devm_devfreq_remove_device);
740 * devfreq_suspend_device() - Suspend devfreq of a device.
741 * @devfreq: the devfreq instance to be suspended
743 * This function is intended to be called by the pm callbacks
744 * (e.g., runtime_suspend, suspend) of the device driver that
747 int devfreq_suspend_device(struct devfreq *devfreq)
752 if (!devfreq->governor)
755 return devfreq->governor->event_handler(devfreq,
756 DEVFREQ_GOV_SUSPEND, NULL);
758 EXPORT_SYMBOL(devfreq_suspend_device);
761 * devfreq_resume_device() - Resume devfreq of a device.
762 * @devfreq: the devfreq instance to be resumed
764 * This function is intended to be called by the pm callbacks
765 * (e.g., runtime_resume, resume) of the device driver that
768 int devfreq_resume_device(struct devfreq *devfreq)
773 if (!devfreq->governor)
776 return devfreq->governor->event_handler(devfreq,
777 DEVFREQ_GOV_RESUME, NULL);
779 EXPORT_SYMBOL(devfreq_resume_device);
782 * devfreq_add_governor() - Add devfreq governor
783 * @governor: the devfreq governor to be added
785 int devfreq_add_governor(struct devfreq_governor *governor)
787 struct devfreq_governor *g;
788 struct devfreq *devfreq;
792 pr_err("%s: Invalid parameters.\n", __func__);
796 mutex_lock(&devfreq_list_lock);
797 g = find_devfreq_governor(governor->name);
799 pr_err("%s: governor %s already registered\n", __func__,
805 list_add(&governor->node, &devfreq_governor_list);
807 list_for_each_entry(devfreq, &devfreq_list, node) {
809 struct device *dev = devfreq->dev.parent;
811 if (!strncmp(devfreq->governor_name, governor->name,
813 /* The following should never occur */
814 if (devfreq->governor) {
816 "%s: Governor %s already present\n",
817 __func__, devfreq->governor->name);
818 ret = devfreq->governor->event_handler(devfreq,
819 DEVFREQ_GOV_STOP, NULL);
822 "%s: Governor %s stop = %d\n",
824 devfreq->governor->name, ret);
828 devfreq->governor = governor;
829 ret = devfreq->governor->event_handler(devfreq,
830 DEVFREQ_GOV_START, NULL);
832 dev_warn(dev, "%s: Governor %s start=%d\n",
833 __func__, devfreq->governor->name,
840 mutex_unlock(&devfreq_list_lock);
844 EXPORT_SYMBOL(devfreq_add_governor);
847 * devfreq_remove_device() - Remove devfreq feature from a device.
848 * @governor: the devfreq governor to be removed
850 int devfreq_remove_governor(struct devfreq_governor *governor)
852 struct devfreq_governor *g;
853 struct devfreq *devfreq;
857 pr_err("%s: Invalid parameters.\n", __func__);
861 mutex_lock(&devfreq_list_lock);
862 g = find_devfreq_governor(governor->name);
864 pr_err("%s: governor %s not registered\n", __func__,
869 list_for_each_entry(devfreq, &devfreq_list, node) {
871 struct device *dev = devfreq->dev.parent;
873 if (!strncmp(devfreq->governor_name, governor->name,
875 /* we should have a devfreq governor! */
876 if (!devfreq->governor) {
877 dev_warn(dev, "%s: Governor %s NOT present\n",
878 __func__, governor->name);
882 ret = devfreq->governor->event_handler(devfreq,
883 DEVFREQ_GOV_STOP, NULL);
885 dev_warn(dev, "%s: Governor %s stop=%d\n",
886 __func__, devfreq->governor->name,
889 devfreq->governor = NULL;
893 list_del(&governor->node);
895 mutex_unlock(&devfreq_list_lock);
899 EXPORT_SYMBOL(devfreq_remove_governor);
901 static ssize_t governor_show(struct device *dev,
902 struct device_attribute *attr, char *buf)
904 if (!to_devfreq(dev)->governor)
907 return sprintf(buf, "%s\n", to_devfreq(dev)->governor->name);
910 static ssize_t governor_store(struct device *dev, struct device_attribute *attr,
911 const char *buf, size_t count)
913 struct devfreq *df = to_devfreq(dev);
915 char str_governor[DEVFREQ_NAME_LEN + 1];
916 struct devfreq_governor *governor;
918 ret = sscanf(buf, "%" __stringify(DEVFREQ_NAME_LEN) "s", str_governor);
922 mutex_lock(&devfreq_list_lock);
923 governor = find_devfreq_governor(str_governor);
924 if (IS_ERR(governor)) {
925 ret = PTR_ERR(governor);
928 if (df->governor == governor) {
934 ret = df->governor->event_handler(df, DEVFREQ_GOV_STOP, NULL);
936 dev_warn(dev, "%s: Governor %s not stopped(%d)\n",
937 __func__, df->governor->name, ret);
941 df->governor = governor;
942 strncpy(df->governor_name, governor->name, DEVFREQ_NAME_LEN);
943 ret = df->governor->event_handler(df, DEVFREQ_GOV_START, NULL);
945 dev_warn(dev, "%s: Governor %s not started(%d)\n",
946 __func__, df->governor->name, ret);
948 mutex_unlock(&devfreq_list_lock);
954 static DEVICE_ATTR_RW(governor);
956 static ssize_t available_governors_show(struct device *d,
957 struct device_attribute *attr,
960 struct devfreq_governor *tmp_governor;
963 mutex_lock(&devfreq_list_lock);
964 list_for_each_entry(tmp_governor, &devfreq_governor_list, node)
965 count += scnprintf(&buf[count], (PAGE_SIZE - count - 2),
966 "%s ", tmp_governor->name);
967 mutex_unlock(&devfreq_list_lock);
969 /* Truncate the trailing space */
973 count += sprintf(&buf[count], "\n");
977 static DEVICE_ATTR_RO(available_governors);
979 static ssize_t cur_freq_show(struct device *dev, struct device_attribute *attr,
983 struct devfreq *devfreq = to_devfreq(dev);
985 if (devfreq->profile->get_cur_freq &&
986 !devfreq->profile->get_cur_freq(devfreq->dev.parent, &freq))
987 return sprintf(buf, "%lu\n", freq);
989 return sprintf(buf, "%lu\n", devfreq->previous_freq);
991 static DEVICE_ATTR_RO(cur_freq);
993 static ssize_t target_freq_show(struct device *dev,
994 struct device_attribute *attr, char *buf)
996 return sprintf(buf, "%lu\n", to_devfreq(dev)->previous_freq);
998 static DEVICE_ATTR_RO(target_freq);
1000 static ssize_t polling_interval_show(struct device *dev,
1001 struct device_attribute *attr, char *buf)
1003 return sprintf(buf, "%d\n", to_devfreq(dev)->profile->polling_ms);
1006 static ssize_t polling_interval_store(struct device *dev,
1007 struct device_attribute *attr,
1008 const char *buf, size_t count)
1010 struct devfreq *df = to_devfreq(dev);
1017 ret = sscanf(buf, "%u", &value);
1021 df->governor->event_handler(df, DEVFREQ_GOV_INTERVAL, &value);
1026 static DEVICE_ATTR_RW(polling_interval);
1028 static ssize_t min_freq_store(struct device *dev, struct device_attribute *attr,
1029 const char *buf, size_t count)
1031 struct devfreq *df = to_devfreq(dev);
1032 unsigned long value;
1036 ret = sscanf(buf, "%lu", &value);
1040 mutex_lock(&df->lock);
1042 if (value && max && value > max) {
1047 df->min_freq = value;
1051 mutex_unlock(&df->lock);
1055 static ssize_t max_freq_store(struct device *dev, struct device_attribute *attr,
1056 const char *buf, size_t count)
1058 struct devfreq *df = to_devfreq(dev);
1059 unsigned long value;
1063 ret = sscanf(buf, "%lu", &value);
1067 mutex_lock(&df->lock);
1069 if (value && min && value < min) {
1074 df->max_freq = value;
1078 mutex_unlock(&df->lock);
1082 #define show_one(name) \
1083 static ssize_t name##_show \
1084 (struct device *dev, struct device_attribute *attr, char *buf) \
1086 return sprintf(buf, "%lu\n", to_devfreq(dev)->name); \
1091 static DEVICE_ATTR_RW(min_freq);
1092 static DEVICE_ATTR_RW(max_freq);
1094 static ssize_t available_frequencies_show(struct device *d,
1095 struct device_attribute *attr,
1098 struct devfreq *df = to_devfreq(d);
1099 struct device *dev = df->dev.parent;
1100 struct dev_pm_opp *opp;
1102 unsigned long freq = 0;
1106 opp = dev_pm_opp_find_freq_ceil(dev, &freq);
1110 count += scnprintf(&buf[count], (PAGE_SIZE - count - 2),
1116 /* Truncate the trailing space */
1120 count += sprintf(&buf[count], "\n");
1124 static DEVICE_ATTR_RO(available_frequencies);
1126 static ssize_t trans_stat_show(struct device *dev,
1127 struct device_attribute *attr, char *buf)
1129 struct devfreq *devfreq = to_devfreq(dev);
1132 unsigned int max_state = devfreq->profile->max_state;
1134 if (!devfreq->stop_polling &&
1135 devfreq_update_status(devfreq, devfreq->previous_freq))
1138 return sprintf(buf, "Not Supported.\n");
1140 len = sprintf(buf, " From : To\n");
1141 len += sprintf(buf + len, " :");
1142 for (i = 0; i < max_state; i++)
1143 len += sprintf(buf + len, "%10lu",
1144 devfreq->profile->freq_table[i]);
1146 len += sprintf(buf + len, " time(ms)\n");
1148 for (i = 0; i < max_state; i++) {
1149 if (devfreq->profile->freq_table[i]
1150 == devfreq->previous_freq) {
1151 len += sprintf(buf + len, "*");
1153 len += sprintf(buf + len, " ");
1155 len += sprintf(buf + len, "%10lu:",
1156 devfreq->profile->freq_table[i]);
1157 for (j = 0; j < max_state; j++)
1158 len += sprintf(buf + len, "%10u",
1159 devfreq->trans_table[(i * max_state) + j]);
1160 len += sprintf(buf + len, "%10u\n",
1161 jiffies_to_msecs(devfreq->time_in_state[i]));
1164 len += sprintf(buf + len, "Total transition : %u\n",
1165 devfreq->total_trans);
1168 static DEVICE_ATTR_RO(trans_stat);
1170 static struct attribute *devfreq_attrs[] = {
1171 &dev_attr_governor.attr,
1172 &dev_attr_available_governors.attr,
1173 &dev_attr_cur_freq.attr,
1174 &dev_attr_available_frequencies.attr,
1175 &dev_attr_target_freq.attr,
1176 &dev_attr_polling_interval.attr,
1177 &dev_attr_min_freq.attr,
1178 &dev_attr_max_freq.attr,
1179 &dev_attr_trans_stat.attr,
1182 ATTRIBUTE_GROUPS(devfreq);
1184 static int __init devfreq_init(void)
1186 devfreq_class = class_create(THIS_MODULE, "devfreq");
1187 if (IS_ERR(devfreq_class)) {
1188 pr_err("%s: couldn't create class\n", __FILE__);
1189 return PTR_ERR(devfreq_class);
1192 devfreq_wq = create_freezable_workqueue("devfreq_wq");
1194 class_destroy(devfreq_class);
1195 pr_err("%s: couldn't create workqueue\n", __FILE__);
1198 devfreq_class->dev_groups = devfreq_groups;
1202 subsys_initcall(devfreq_init);
1205 * The followings are helper functions for devfreq user device drivers with
1210 * devfreq_recommended_opp() - Helper function to get proper OPP for the
1211 * freq value given to target callback.
1212 * @dev: The devfreq user device. (parent of devfreq)
1213 * @freq: The frequency given to target function
1214 * @flags: Flags handed from devfreq framework.
1216 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
1217 * protected pointer. The reason for the same is that the opp pointer which is
1218 * returned will remain valid for use with opp_get_{voltage, freq} only while
1219 * under the locked area. The pointer returned must be used prior to unlocking
1220 * with rcu_read_unlock() to maintain the integrity of the pointer.
1222 struct dev_pm_opp *devfreq_recommended_opp(struct device *dev,
1223 unsigned long *freq,
1226 struct dev_pm_opp *opp;
1228 if (flags & DEVFREQ_FLAG_LEAST_UPPER_BOUND) {
1229 /* The freq is an upper bound. opp should be lower */
1230 opp = dev_pm_opp_find_freq_floor(dev, freq);
1232 /* If not available, use the closest opp */
1233 if (opp == ERR_PTR(-ERANGE))
1234 opp = dev_pm_opp_find_freq_ceil(dev, freq);
1236 /* The freq is an lower bound. opp should be higher */
1237 opp = dev_pm_opp_find_freq_ceil(dev, freq);
1239 /* If not available, use the closest opp */
1240 if (opp == ERR_PTR(-ERANGE))
1241 opp = dev_pm_opp_find_freq_floor(dev, freq);
1246 EXPORT_SYMBOL(devfreq_recommended_opp);
1249 * devfreq_register_opp_notifier() - Helper function to get devfreq notified
1250 * for any changes in the OPP availability
1252 * @dev: The devfreq user device. (parent of devfreq)
1253 * @devfreq: The devfreq object.
1255 int devfreq_register_opp_notifier(struct device *dev, struct devfreq *devfreq)
1257 struct srcu_notifier_head *nh;
1261 nh = dev_pm_opp_get_notifier(dev);
1266 ret = srcu_notifier_chain_register(nh, &devfreq->nb);
1270 EXPORT_SYMBOL(devfreq_register_opp_notifier);
1273 * devfreq_unregister_opp_notifier() - Helper function to stop getting devfreq
1274 * notified for any changes in the OPP
1275 * availability changes anymore.
1276 * @dev: The devfreq user device. (parent of devfreq)
1277 * @devfreq: The devfreq object.
1279 * At exit() callback of devfreq_dev_profile, this must be included if
1280 * devfreq_recommended_opp is used.
1282 int devfreq_unregister_opp_notifier(struct device *dev, struct devfreq *devfreq)
1284 struct srcu_notifier_head *nh;
1288 nh = dev_pm_opp_get_notifier(dev);
1293 ret = srcu_notifier_chain_unregister(nh, &devfreq->nb);
1297 EXPORT_SYMBOL(devfreq_unregister_opp_notifier);
1299 static void devm_devfreq_opp_release(struct device *dev, void *res)
1301 devfreq_unregister_opp_notifier(dev, *(struct devfreq **)res);
1305 * devm_ devfreq_register_opp_notifier()
1306 * - Resource-managed devfreq_register_opp_notifier()
1307 * @dev: The devfreq user device. (parent of devfreq)
1308 * @devfreq: The devfreq object.
1310 int devm_devfreq_register_opp_notifier(struct device *dev,
1311 struct devfreq *devfreq)
1313 struct devfreq **ptr;
1316 ptr = devres_alloc(devm_devfreq_opp_release, sizeof(*ptr), GFP_KERNEL);
1320 ret = devfreq_register_opp_notifier(dev, devfreq);
1327 devres_add(dev, ptr);
1331 EXPORT_SYMBOL(devm_devfreq_register_opp_notifier);
1334 * devm_devfreq_unregister_opp_notifier()
1335 * - Resource-managed devfreq_unregister_opp_notifier()
1336 * @dev: The devfreq user device. (parent of devfreq)
1337 * @devfreq: The devfreq object.
1339 void devm_devfreq_unregister_opp_notifier(struct device *dev,
1340 struct devfreq *devfreq)
1342 WARN_ON(devres_release(dev, devm_devfreq_opp_release,
1343 devm_devfreq_dev_match, devfreq));
1345 EXPORT_SYMBOL(devm_devfreq_unregister_opp_notifier);
1348 * devfreq_register_notifier() - Register a driver with devfreq
1349 * @devfreq: The devfreq object.
1350 * @nb: The notifier block to register.
1351 * @list: DEVFREQ_TRANSITION_NOTIFIER.
1353 int devfreq_register_notifier(struct devfreq *devfreq,
1354 struct notifier_block *nb,
1363 case DEVFREQ_TRANSITION_NOTIFIER:
1364 ret = srcu_notifier_chain_register(
1365 &devfreq->transition_notifier_list, nb);
1373 EXPORT_SYMBOL(devfreq_register_notifier);
1376 * devfreq_unregister_notifier() - Unregister a driver with devfreq
1377 * @devfreq: The devfreq object.
1378 * @nb: The notifier block to be unregistered.
1379 * @list: DEVFREQ_TRANSITION_NOTIFIER.
1381 int devfreq_unregister_notifier(struct devfreq *devfreq,
1382 struct notifier_block *nb,
1391 case DEVFREQ_TRANSITION_NOTIFIER:
1392 ret = srcu_notifier_chain_unregister(
1393 &devfreq->transition_notifier_list, nb);
1401 EXPORT_SYMBOL(devfreq_unregister_notifier);
1403 struct devfreq_notifier_devres {
1404 struct devfreq *devfreq;
1405 struct notifier_block *nb;
1409 static void devm_devfreq_notifier_release(struct device *dev, void *res)
1411 struct devfreq_notifier_devres *this = res;
1413 devfreq_unregister_notifier(this->devfreq, this->nb, this->list);
1417 * devm_devfreq_register_notifier()
1418 - Resource-managed devfreq_register_notifier()
1419 * @dev: The devfreq user device. (parent of devfreq)
1420 * @devfreq: The devfreq object.
1421 * @nb: The notifier block to be unregistered.
1422 * @list: DEVFREQ_TRANSITION_NOTIFIER.
1424 int devm_devfreq_register_notifier(struct device *dev,
1425 struct devfreq *devfreq,
1426 struct notifier_block *nb,
1429 struct devfreq_notifier_devres *ptr;
1432 ptr = devres_alloc(devm_devfreq_notifier_release, sizeof(*ptr),
1437 ret = devfreq_register_notifier(devfreq, nb, list);
1443 ptr->devfreq = devfreq;
1446 devres_add(dev, ptr);
1450 EXPORT_SYMBOL(devm_devfreq_register_notifier);
1453 * devm_devfreq_unregister_notifier()
1454 - Resource-managed devfreq_unregister_notifier()
1455 * @dev: The devfreq user device. (parent of devfreq)
1456 * @devfreq: The devfreq object.
1457 * @nb: The notifier block to be unregistered.
1458 * @list: DEVFREQ_TRANSITION_NOTIFIER.
1460 void devm_devfreq_unregister_notifier(struct device *dev,
1461 struct devfreq *devfreq,
1462 struct notifier_block *nb,
1465 WARN_ON(devres_release(dev, devm_devfreq_notifier_release,
1466 devm_devfreq_dev_match, devfreq));
1468 EXPORT_SYMBOL(devm_devfreq_unregister_notifier);