2 * linux/drivers/devfreq/governor_simpleondemand.c
4 * Copyright (C) 2011 Samsung Electronics
5 * MyungJoo Ham <myungjoo.ham@samsung.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/errno.h>
13 #include <linux/module.h>
14 #include <linux/devfreq.h>
15 #include <linux/math64.h>
18 /* Default constants for DevFreq-Simple-Ondemand (DFSO) */
19 #define DFSO_UPTHRESHOLD (90)
20 #define DFSO_DOWNDIFFERENCTIAL (5)
21 static int devfreq_simple_ondemand_func(struct devfreq
*df
,
25 struct devfreq_dev_status
*stat
;
26 unsigned long long a
, b
;
27 unsigned int dfso_upthreshold
= DFSO_UPTHRESHOLD
;
28 unsigned int dfso_downdifferential
= DFSO_DOWNDIFFERENCTIAL
;
29 struct devfreq_simple_ondemand_data
*data
= df
->data
;
31 err
= devfreq_update_stats(df
);
35 stat
= &df
->last_status
;
38 if (data
->upthreshold
)
39 dfso_upthreshold
= data
->upthreshold
;
40 if (data
->downdifferential
)
41 dfso_downdifferential
= data
->downdifferential
;
43 if (dfso_upthreshold
> 100 ||
44 dfso_upthreshold
< dfso_downdifferential
)
47 /* Assume MAX if it is going to be divided by zero */
48 if (stat
->total_time
== 0) {
49 *freq
= DEVFREQ_MAX_FREQ
;
53 /* Prevent overflow */
54 if (stat
->busy_time
>= (1 << 24) || stat
->total_time
>= (1 << 24)) {
55 stat
->busy_time
>>= 7;
56 stat
->total_time
>>= 7;
59 /* Set MAX if it's busy enough */
60 if (stat
->busy_time
* 100 >
61 stat
->total_time
* dfso_upthreshold
) {
62 *freq
= DEVFREQ_MAX_FREQ
;
66 /* Set MAX if we do not know the initial frequency */
67 if (stat
->current_frequency
== 0) {
68 *freq
= DEVFREQ_MAX_FREQ
;
72 /* Keep the current frequency */
73 if (stat
->busy_time
* 100 >
74 stat
->total_time
* (dfso_upthreshold
- dfso_downdifferential
)) {
75 *freq
= stat
->current_frequency
;
79 /* Set the desired frequency based on the load */
81 a
*= stat
->current_frequency
;
82 b
= div_u64(a
, stat
->total_time
);
84 b
= div_u64(b
, (dfso_upthreshold
- dfso_downdifferential
/ 2));
85 *freq
= (unsigned long) b
;
90 static int devfreq_simple_ondemand_handler(struct devfreq
*devfreq
,
91 unsigned int event
, void *data
)
94 case DEVFREQ_GOV_START
:
95 devfreq_monitor_start(devfreq
);
98 case DEVFREQ_GOV_STOP
:
99 devfreq_monitor_stop(devfreq
);
102 case DEVFREQ_GOV_INTERVAL
:
103 devfreq_interval_update(devfreq
, (unsigned int *)data
);
106 case DEVFREQ_GOV_SUSPEND
:
107 devfreq_monitor_suspend(devfreq
);
110 case DEVFREQ_GOV_RESUME
:
111 devfreq_monitor_resume(devfreq
);
121 static struct devfreq_governor devfreq_simple_ondemand
= {
122 .name
= DEVFREQ_GOV_SIMPLE_ONDEMAND
,
123 .get_target_freq
= devfreq_simple_ondemand_func
,
124 .event_handler
= devfreq_simple_ondemand_handler
,
127 static int __init
devfreq_simple_ondemand_init(void)
129 return devfreq_add_governor(&devfreq_simple_ondemand
);
131 subsys_initcall(devfreq_simple_ondemand_init
);
133 static void __exit
devfreq_simple_ondemand_exit(void)
137 ret
= devfreq_remove_governor(&devfreq_simple_ondemand
);
139 pr_err("%s: failed remove governor %d\n", __func__
, ret
);
143 module_exit(devfreq_simple_ondemand_exit
);
144 MODULE_LICENSE("GPL");