blob: 40282e6179135abc353bc8b04a86137820794468 [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 D r i v e r s
7
8 - information for developers -
9
10
11 Dominik Brodowski <linux@brodo.de>
12
13
14
15 Clock scaling allows you to change the clock speed of the CPUs on the
16 fly. This is a nice method to save battery power, because the lower
17 the clock speed, the less power the CPU consumes.
18
19
20Contents:
21---------
221. What To Do?
231.1 Initialization
241.2 Per-CPU Initialization
251.3 verify
261.4 target or setpolicy?
271.5 target
281.6 setpolicy
292. Frequency Table Helpers
30
31
32
331. What To Do?
34==============
35
36So, you just got a brand-new CPU / chipset with datasheets and want to
37add cpufreq support for this CPU / chipset? Great. Here are some hints
38on what is necessary:
39
40
411.1 Initialization
42------------------
43
44First of all, in an __initcall level 7 (module_init()) or later
45function check whether this kernel runs on the right CPU and the right
46chipset. If so, register a struct cpufreq_driver with the CPUfreq core
47using cpufreq_register_driver()
48
49What shall this struct cpufreq_driver contain?
50
51cpufreq_driver.name - The name of this driver.
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053cpufreq_driver.init - A pointer to the per-CPU initialization
54 function.
55
56cpufreq_driver.verify - A pointer to a "verification" function.
57
58cpufreq_driver.setpolicy _or_
59cpufreq_driver.target - See below on the differences.
60
61And optionally
62
63cpufreq_driver.exit - A pointer to a per-CPU cleanup function.
64
65cpufreq_driver.resume - A pointer to a per-CPU resume function
66 which is called with interrupts disabled
67 and _before_ the pre-suspend frequency
68 and/or policy is restored by a call to
69 ->target or ->setpolicy.
70
71cpufreq_driver.attr - A pointer to a NULL-terminated list of
72 "struct freq_attr" which allow to
73 export values to sysfs.
74
75
761.2 Per-CPU Initialization
77--------------------------
78
79Whenever a new CPU is registered with the device model, or after the
80cpufreq driver registers itself, the per-CPU initialization function
81cpufreq_driver.init is called. It takes a struct cpufreq_policy
82*policy as argument. What to do now?
83
84If necessary, activate the CPUfreq support on your CPU.
85
86Then, the driver must fill in the following values:
87
88policy->cpuinfo.min_freq _and_
89policy->cpuinfo.max_freq - the minimum and maximum frequency
90 (in kHz) which is supported by
91 this CPU
92policy->cpuinfo.transition_latency the time it takes on this CPU to
Mark Brownbbe237a2009-11-12 16:06:45 +000093 switch between two frequencies in
94 nanoseconds (if appropriate, else
95 specify CPUFREQ_ETERNAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97policy->cur The current operating frequency of
98 this CPU (if appropriate)
99policy->min,
100policy->max,
101policy->policy and, if necessary,
102policy->governor must contain the "default policy" for
103 this CPU. A few moments later,
104 cpufreq_driver.verify and either
105 cpufreq_driver.setpolicy or
106 cpufreq_driver.target is called with
107 these values.
108
Viresh Kumareb2f50f2013-04-01 12:57:48 +0000109For setting some of these values (cpuinfo.min[max]_freq, policy->min[max]), the
110frequency table helpers might be helpful. See the section 2 for more information
111on them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Viresh Kumar951fc5f2013-01-31 02:03:53 +0000113SMP systems normally have same clock source for a group of cpus. For these the
114.init() would be called only once for the first online cpu. Here the .init()
115routine must initialize policy->cpus with mask of all possible cpus (Online +
116Offline) that share the clock. Then the core would copy this mask onto
117policy->related_cpus and will reset policy->cpus to carry only online cpus.
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
1201.3 verify
121------------
122
123When the user decides a new policy (consisting of
124"policy,governor,min,max") shall be set, this policy must be validated
125so that incompatible values can be corrected. For verifying these
126values, a frequency table helper and/or the
127cpufreq_verify_within_limits(struct cpufreq_policy *policy, unsigned
128int min_freq, unsigned int max_freq) function might be helpful. See
129section 2 for details on frequency table helpers.
130
131You need to make sure that at least one valid frequency (or operating
132range) is within policy->min and policy->max. If necessary, increase
133policy->max first, and only if this is no solution, decrease policy->min.
134
135
1361.4 target or setpolicy?
137----------------------------
138
139Most cpufreq drivers or even most cpu frequency scaling algorithms
140only allow the CPU to be set to one frequency. For these, you use the
141->target call.
142
143Some cpufreq-capable processors switch the frequency between certain
144limits on their own. These shall use the ->setpolicy call
145
146
1471.4. target
148-------------
149
150The target call has three arguments: struct cpufreq_policy *policy,
151unsigned int target_frequency, unsigned int relation.
152
153The CPUfreq driver must set the new frequency when called here. The
154actual frequency must be determined using the following rules:
155
156- keep close to "target_freq"
157- policy->min <= new_freq <= policy->max (THIS MUST BE VALID!!!)
158- if relation==CPUFREQ_REL_L, try to select a new_freq higher than or equal
159 target_freq. ("L for lowest, but no lower than")
160- if relation==CPUFREQ_REL_H, try to select a new_freq lower than or equal
161 target_freq. ("H for highest, but no higher than")
162
Chumbalkar Nagananda51555c02009-05-21 23:29:48 +0000163Here again the frequency table helper might assist you - see section 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164for details.
165
166
1671.5 setpolicy
168---------------
169
170The setpolicy call only takes a struct cpufreq_policy *policy as
171argument. You need to set the lower limit of the in-processor or
172in-chipset dynamic frequency switching to policy->min, the upper limit
173to policy->max, and -if supported- select a performance-oriented
174setting when policy->policy is CPUFREQ_POLICY_PERFORMANCE, and a
175powersaving-oriented setting when CPUFREQ_POLICY_POWERSAVE. Also check
Wanlong Gao25eb6502011-06-13 17:53:53 +0800176the reference implementation in drivers/cpufreq/longrun.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178
179
1802. Frequency Table Helpers
181==========================
182
183As most cpufreq processors only allow for being set to a few specific
184frequencies, a "frequency table" with some functions might assist in
185some work of the processor driver. Such a "frequency table" consists
Viresh Kumar3a7818e2013-04-01 12:57:42 +0000186of an array of struct cpufreq_frequency_table entries, with any value in
Viresh Kumar50701582013-03-30 16:25:15 +0530187"driver_data" you want to use, and the corresponding frequency in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188"frequency". At the end of the table, you need to add a
Viresh Kumar3a7818e2013-04-01 12:57:42 +0000189cpufreq_frequency_table entry with frequency set to CPUFREQ_TABLE_END. And
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190if you want to skip one entry in the table, set the frequency to
191CPUFREQ_ENTRY_INVALID. The entries don't need to be in ascending
192order.
193
194By calling cpufreq_frequency_table_cpuinfo(struct cpufreq_policy *policy,
195 struct cpufreq_frequency_table *table);
196the cpuinfo.min_freq and cpuinfo.max_freq values are detected, and
197policy->min and policy->max are set to the same values. This is
198helpful for the per-CPU initialization stage.
199
200int cpufreq_frequency_table_verify(struct cpufreq_policy *policy,
201 struct cpufreq_frequency_table *table);
202assures that at least one valid frequency is within policy->min and
203policy->max, and all other criteria are met. This is helpful for the
204->verify call.
205
206int cpufreq_frequency_table_target(struct cpufreq_policy *policy,
207 struct cpufreq_frequency_table *table,
208 unsigned int target_freq,
209 unsigned int relation,
210 unsigned int *index);
211
212is the corresponding frequency table helper for the ->target
213stage. Just pass the values to this function, and the unsigned int
214index returns the number of the frequency table entry which contains
Viresh Kumar50701582013-03-30 16:25:15 +0530215the frequency the CPU shall be set to.