blob: 51b1cd360c3363e6d4f5ee077722bff49cf18ca2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001 CPU frequency and voltage scaling code in the Linux(TM) kernel
2
3
4 L i n u x C P U F r e q
5
6 C P U F r e q G o v e r n o r s
7
8 - information for users and developers -
9
10
11 Dominik Brodowski <linux@brodo.de>
Nico Golde594dd2c2005-06-25 14:58:33 -070012 some additions and corrections by Nico Golde <nico@ngolde.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14
15
16 Clock scaling allows you to change the clock speed of the CPUs on the
17 fly. This is a nice method to save battery power, because the lower
18 the clock speed, the less power the CPU consumes.
19
20
21Contents:
22---------
231. What is a CPUFreq Governor?
24
252. Governors In the Linux Kernel
262.1 Performance
272.2 Powersave
282.3 Userspace
Nico Golde594dd2c2005-06-25 14:58:33 -0700292.4 Ondemand
Alexander Clouter537208c2005-12-01 01:09:23 -0800302.5 Conservative
Mike Chan1dab2592010-06-22 11:26:45 -0700312.6 Interactive
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
333. The Governor Interface in the CPUfreq Core
34
35
36
371. What Is A CPUFreq Governor?
38==============================
39
40Most cpufreq drivers (in fact, all except one, longrun) or even most
41cpu frequency scaling algorithms only offer the CPU to be set to one
42frequency. In order to offer dynamic frequency scaling, the cpufreq
43core must be able to tell these drivers of a "target frequency". So
44these specific drivers will be transformed to offer a "->target"
45call instead of the existing "->setpolicy" call. For "longrun", all
46stays the same, though.
47
48How to decide what frequency within the CPUfreq policy should be used?
49That's done using "cpufreq governors". Two are already in this patch
50-- they're the already existing "powersave" and "performance" which
51set the frequency statically to the lowest or highest frequency,
52respectively. At least two more such governors will be ready for
53addition in the near future, but likely many more as there are various
54different theories and models about dynamic frequency scaling
55around. Using such a generic interface as cpufreq offers to scaling
56governors, these can be tested extensively, and the best one can be
57selected for each specific use.
58
59Basically, it's the following flow graph:
60
Matt LaPlante2fe0ae72006-10-03 22:50:39 +020061CPU can be set to switch independently | CPU can only be set
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 within specific "limits" | to specific frequencies
63
64 "CPUfreq policy"
65 consists of frequency limits (policy->{min,max})
66 and CPUfreq governor to be used
67 / \
68 / \
69 / the cpufreq governor decides
70 / (dynamically or statically)
71 / what target_freq to set within
72 / the limits of policy->{min,max}
73 / \
74 / \
75 Using the ->setpolicy call, Using the ->target call,
76 the limits and the the frequency closest
77 "policy" is set. to target_freq is set.
78 It is assured that it
79 is within policy->{min,max}
80
81
822. Governors In the Linux Kernel
83================================
84
852.1 Performance
86---------------
87
88The CPUfreq governor "performance" sets the CPU statically to the
89highest frequency within the borders of scaling_min_freq and
90scaling_max_freq.
91
92
Nico Golde594dd2c2005-06-25 14:58:33 -0700932.2 Powersave
Linus Torvalds1da177e2005-04-16 15:20:36 -070094-------------
95
96The CPUfreq governor "powersave" sets the CPU statically to the
97lowest frequency within the borders of scaling_min_freq and
98scaling_max_freq.
99
100
Nico Golde594dd2c2005-06-25 14:58:33 -07001012.3 Userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102-------------
103
104The CPUfreq governor "userspace" allows the user, or any userspace
105program running with UID "root", to set the CPU to a specific frequency
106by making a sysfs file "scaling_setspeed" available in the CPU-device
107directory.
108
109
Nico Golde594dd2c2005-06-25 14:58:33 -07001102.4 Ondemand
111------------
112
Matt LaPlantea2ffd272006-10-03 22:49:15 +0200113The CPUfreq governor "ondemand" sets the CPU depending on the
Nico Golde594dd2c2005-06-25 14:58:33 -0700114current usage. To do this the CPU must have the capability to
Alexander Clouter537208c2005-12-01 01:09:23 -0800115switch the frequency very quickly. There are a number of sysfs file
116accessible parameters:
117
118sampling_rate: measured in uS (10^-6 seconds), this is how often you
119want the kernel to look at the CPU usage and to make decisions on
120what to do about the frequency. Typically this is set to values of
Thomas Renninger112124a2009-02-04 11:55:12 +0100121around '10000' or more. It's default value is (cmp. with users-guide.txt):
122transition_latency * 1000
Thomas Renninger112124a2009-02-04 11:55:12 +0100123Be aware that transition latency is in ns and sampling_rate is in us, so you
124get the same sysfs value by default.
125Sampling rate should always get adjusted considering the transition latency
126To set the sampling rate 750 times as high as the transition latency
127in the bash (as said, 1000 is default), do:
128echo `$(($(cat cpuinfo_transition_latency) * 750 / 1000)) \
129 >ondemand/sampling_rate
Alexander Clouter537208c2005-12-01 01:09:23 -0800130
Thomas Renninger4f4d1ad2009-04-22 13:48:31 +0200131show_sampling_rate_min:
132The sampling rate is limited by the HW transition latency:
133transition_latency * 100
134Or by kernel restrictions:
135If CONFIG_NO_HZ is set, the limit is 10ms fixed.
136If CONFIG_NO_HZ is not set or no_hz=off boot parameter is used, the
137limits depend on the CONFIG_HZ option:
138HZ=1000: min=20000us (20ms)
139HZ=250: min=80000us (80ms)
140HZ=100: min=200000us (200ms)
141The highest value of kernel and HW latency restrictions is shown and
142used as the minimum sampling rate.
143
144show_sampling_rate_max: THIS INTERFACE IS DEPRECATED, DON'T USE IT.
Alexander Clouter537208c2005-12-01 01:09:23 -0800145
Matt LaPlanted9195882008-07-25 19:45:33 -0700146up_threshold: defines what the average CPU usage between the samplings
Alexander Clouter537208c2005-12-01 01:09:23 -0800147of 'sampling_rate' needs to be for the kernel to make a decision on
148whether it should increase the frequency. For example when it is set
Mike Frysinger292e0042009-12-09 06:56:40 -0500149to its default value of '95' it means that between the checking
150intervals the CPU needs to be on average more than 95% in use to then
Alexander Clouter537208c2005-12-01 01:09:23 -0800151decide that the CPU frequency needs to be increased.
152
Matt LaPlante992caac2006-10-03 22:52:05 +0200153ignore_nice_load: this parameter takes a value of '0' or '1'. When
154set to '0' (its default), all processes are counted towards the
155'cpu utilisation' value. When set to '1', the processes that are
Alexander Clouter537208c2005-12-01 01:09:23 -0800156run with a 'nice' value will not count (and thus be ignored) in the
Matt LaPlante992caac2006-10-03 22:52:05 +0200157overall usage calculation. This is useful if you are running a CPU
Alexander Clouter537208c2005-12-01 01:09:23 -0800158intensive calculation on your laptop that you do not care how long it
159takes to complete as you can 'nice' it and prevent it from taking part
160in the deciding process of whether to increase your CPU frequency.
Nico Golde594dd2c2005-06-25 14:58:33 -0700161
Vishwanath BS5b953642011-01-25 20:12:41 +0530162sampling_down_factor: this parameter controls the rate at which the
163kernel makes a decision on when to decrease the frequency while running
164at top speed. When set to 1 (the default) decisions to reevaluate load
165are made at the same interval regardless of current clock speed. But
166when set to greater than 1 (e.g. 100) it acts as a multiplier for the
167scheduling interval for reevaluating load when the CPU is at its top
168speed due to high load. This improves performance by reducing the overhead
169of load evaluation and helping the CPU stay at its top speed when truly
170busy, rather than shifting back and forth in speed. This tunable has no
171effect on behavior at lower speeds/lower CPU loads.
172
Nico Golde594dd2c2005-06-25 14:58:33 -0700173
Alexander Clouter537208c2005-12-01 01:09:23 -08001742.5 Conservative
175----------------
176
177The CPUfreq governor "conservative", much like the "ondemand"
178governor, sets the CPU depending on the current usage. It differs in
179behaviour in that it gracefully increases and decreases the CPU speed
180rather than jumping to max speed the moment there is any load on the
181CPU. This behaviour more suitable in a battery powered environment.
182The governor is tweaked in the same manner as the "ondemand" governor
183through sysfs with the addition of:
184
185freq_step: this describes what percentage steps the cpu freq should be
186increased and decreased smoothly by. By default the cpu frequency will
187increase in 5% chunks of your maximum cpu frequency. You can change this
188value to anywhere between 0 and 100 where '0' will effectively lock your
189CPU at a speed regardless of its load whilst '100' will, in theory, make
190it behave identically to the "ondemand" governor.
191
192down_threshold: same as the 'up_threshold' found for the "ondemand"
193governor but for the opposite direction. For example when set to its
194default value of '20' it means that if the CPU usage needs to be below
19520% between samples to have the frequency decreased.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Mike Chan1dab2592010-06-22 11:26:45 -0700197
1982.6 Interactive
199---------------
200
201The CPUfreq governor "interactive" is designed for latency-sensitive,
202interactive workloads. This governor sets the CPU speed depending on
203usage, similar to "ondemand" and "conservative" governors. However,
204the governor is more aggressive about scaling the CPU speed up in
205response to CPU-intensive activity.
206
207Sampling the CPU load every X ms can lead to under-powering the CPU
208for X ms, leading to dropped frames, stuttering UI, etc. Instead of
209sampling the cpu at a specified rate, the interactive governor will
210check whether to scale the cpu frequency up soon after coming out of
211idle. When the cpu comes out of idle, a timer is configured to fire
212within 1-2 ticks. If the cpu is very busy between exiting idle and
213when the timer fires then we assume the cpu is underpowered and ramp
214to MAX speed.
Allen Martinc263e532011-07-01 11:16:06 -0700215
Mike Chan1dab2592010-06-22 11:26:45 -0700216If the cpu was not sufficiently busy to immediately ramp to MAX speed,
217then governor evaluates the cpu load since the last speed adjustment,
Allen Martin5c0f07b2011-06-30 23:54:07 -0700218choosing the highest value between that longer-term load or the
Mike Chan1dab2592010-06-22 11:26:45 -0700219short-term load since idle exit to determine the cpu speed to ramp to.
220
Allen Martin5c0f07b2011-06-30 23:54:07 -0700221The tuneable values for this governor are:
Mike Chan1dab2592010-06-22 11:26:45 -0700222
223min_sample_time: The minimum amount of time to spend at the current
224frequency before ramping down. This is to ensure that the governor has
225seen enough historic cpu load data to determine the appropriate
226workload. Default is 80000 uS.
227
228go_maxspeed_load: The CPU load at which to ramp to max speed. Default
229is 85.
230
Allen Martin5c0f07b2011-06-30 23:54:07 -0700231timer_rate: Sample rate for reevaluating cpu load when the system is
232not idle. Default is 30000 uS.
Mike Chan1dab2592010-06-22 11:26:45 -0700233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343. The Governor Interface in the CPUfreq Core
235=============================================
236
237A new governor must register itself with the CPUfreq core using
238"cpufreq_register_governor". The struct cpufreq_governor, which has to
239be passed to that function, must contain the following values:
240
241governor->name - A unique name for this governor
242governor->governor - The governor callback function
243governor->owner - .THIS_MODULE for the governor module (if
244 appropriate)
245
246The governor->governor callback is called with the current (or to-be-set)
247cpufreq_policy struct for that CPU, and an unsigned int event. The
248following events are currently defined:
249
250CPUFREQ_GOV_START: This governor shall start its duty for the CPU
251 policy->cpu
252CPUFREQ_GOV_STOP: This governor shall end its duty for the CPU
253 policy->cpu
254CPUFREQ_GOV_LIMITS: The limits for CPU policy->cpu have changed to
255 policy->min and policy->max.
256
257If you need other "events" externally of your driver, _only_ use the
258cpufreq_governor_l(unsigned int cpu, unsigned int event) call to the
259CPUfreq core to ensure proper locking.
260
261
262The CPUfreq governor may call the CPU processor driver using one of
263these two functions:
264
265int cpufreq_driver_target(struct cpufreq_policy *policy,
266 unsigned int target_freq,
267 unsigned int relation);
268
269int __cpufreq_driver_target(struct cpufreq_policy *policy,
270 unsigned int target_freq,
271 unsigned int relation);
272
273target_freq must be within policy->min and policy->max, of course.
274What's the difference between these two functions? When your governor
275still is in a direct code path of a call to governor->governor, the
276per-CPU cpufreq lock is still held in the cpufreq core, and there's
277no need to lock it again (in fact, this would cause a deadlock). So
278use __cpufreq_driver_target only in these cases. In all other cases
279(for example, when there's a "daemonized" function that wakes up
280every second), use cpufreq_driver_target to lock the cpufreq per-CPU
281lock before the command is passed to the cpufreq processor driver.
282