1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/devfreq/governor_simpleondemand.c
5 * Copyright (C) 2011 Samsung Electronics
6 * MyungJoo Ham <myungjoo.ham@samsung.com>
9 #include <linux/errno.h>
10 #include <linux/module.h>
11 #include <linux/devfreq.h>
12 #include <linux/math64.h>
15 /* Default constants for DevFreq-Simple-Ondemand (DFSO) */
16 #define DFSO_UPTHRESHOLD (90)
17 #define DFSO_DOWNDIFFERENCTIAL (5)
18 static int devfreq_simple_ondemand_func(struct devfreq *df,
22 struct devfreq_dev_status *stat;
23 unsigned long long a, b;
24 unsigned int dfso_upthreshold = DFSO_UPTHRESHOLD;
25 unsigned int dfso_downdifferential = DFSO_DOWNDIFFERENCTIAL;
26 struct devfreq_simple_ondemand_data *data = df->data;
28 err = devfreq_update_stats(df);
32 stat = &df->last_status;
35 if (data->upthreshold)
36 dfso_upthreshold = data->upthreshold;
37 if (data->downdifferential)
38 dfso_downdifferential = data->downdifferential;
40 if (dfso_upthreshold > 100 ||
41 dfso_upthreshold < dfso_downdifferential)
44 /* Assume MAX if it is going to be divided by zero */
45 if (stat->total_time == 0) {
46 *freq = DEVFREQ_MAX_FREQ;
50 /* Prevent overflow */
51 if (stat->busy_time >= (1 << 24) || stat->total_time >= (1 << 24)) {
52 stat->busy_time >>= 7;
53 stat->total_time >>= 7;
56 /* Set MAX if it's busy enough */
57 if (stat->busy_time * 100 >
58 stat->total_time * dfso_upthreshold) {
59 *freq = DEVFREQ_MAX_FREQ;
63 /* Set MAX if we do not know the initial frequency */
64 if (stat->current_frequency == 0) {
65 *freq = DEVFREQ_MAX_FREQ;
69 /* Keep the current frequency */
70 if (stat->busy_time * 100 >
71 stat->total_time * (dfso_upthreshold - dfso_downdifferential)) {
72 *freq = stat->current_frequency;
76 /* Set the desired frequency based on the load */
78 a *= stat->current_frequency;
79 b = div_u64(a, stat->total_time);
81 b = div_u64(b, (dfso_upthreshold - dfso_downdifferential / 2));
82 *freq = (unsigned long) b;
87 static int devfreq_simple_ondemand_handler(struct devfreq *devfreq,
88 unsigned int event, void *data)
91 case DEVFREQ_GOV_START:
92 devfreq_monitor_start(devfreq);
95 case DEVFREQ_GOV_STOP:
96 devfreq_monitor_stop(devfreq);
99 case DEVFREQ_GOV_UPDATE_INTERVAL:
100 devfreq_update_interval(devfreq, (unsigned int *)data);
103 case DEVFREQ_GOV_SUSPEND:
104 devfreq_monitor_suspend(devfreq);
107 case DEVFREQ_GOV_RESUME:
108 devfreq_monitor_resume(devfreq);
118 static struct devfreq_governor devfreq_simple_ondemand = {
119 .name = DEVFREQ_GOV_SIMPLE_ONDEMAND,
120 .attrs = DEVFREQ_GOV_ATTR_POLLING_INTERVAL
121 | DEVFREQ_GOV_ATTR_TIMER,
122 .get_target_freq = devfreq_simple_ondemand_func,
123 .event_handler = devfreq_simple_ondemand_handler,
126 static int __init devfreq_simple_ondemand_init(void)
128 return devfreq_add_governor(&devfreq_simple_ondemand);
130 subsys_initcall(devfreq_simple_ondemand_init);
132 static void __exit devfreq_simple_ondemand_exit(void)
136 ret = devfreq_remove_governor(&devfreq_simple_ondemand);
138 pr_err("%s: failed remove governor %d\n", __func__, ret);
142 module_exit(devfreq_simple_ondemand_exit);
143 MODULE_LICENSE("GPL");