]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - Documentation/cpu-freq/cpu-drivers.txt
powerpc/numa: document topology_updates_enabled, disable by default
[mirror_ubuntu-bionic-kernel.git] / Documentation / cpu-freq / cpu-drivers.txt
CommitLineData
1da177e4
LT
1 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>
7de962c0
VK
12 Rafael J. Wysocki <rafael.j.wysocki@intel.com>
13 Viresh Kumar <viresh.kumar@linaro.org>
1da177e4
LT
14
15
16
17 Clock scaling allows you to change the clock speed of the CPUs on the
18 fly. This is a nice method to save battery power, because the lower
19 the clock speed, the less power the CPU consumes.
20
21
22Contents:
23---------
241. What To Do?
251.1 Initialization
261.2 Per-CPU Initialization
271.3 verify
9c0ebcf7
VK
281.4 target/target_index or setpolicy?
291.5 target/target_index
1da177e4 301.6 setpolicy
1c03a2d0 311.7 get_intermediate and target_intermediate
1da177e4
LT
322. Frequency Table Helpers
33
34
35
361. What To Do?
37==============
38
39So, you just got a brand-new CPU / chipset with datasheets and want to
40add cpufreq support for this CPU / chipset? Great. Here are some hints
41on what is necessary:
42
43
441.1 Initialization
45------------------
46
47First of all, in an __initcall level 7 (module_init()) or later
48function check whether this kernel runs on the right CPU and the right
49chipset. If so, register a struct cpufreq_driver with the CPUfreq core
50using cpufreq_register_driver()
51
52What shall this struct cpufreq_driver contain?
53
7de962c0 54 .name - The name of this driver.
1da177e4 55
7de962c0 56 .init - A pointer to the per-policy initialization function.
1da177e4 57
7de962c0 58 .verify - A pointer to a "verification" function.
1da177e4 59
7de962c0
VK
60 .setpolicy _or_ .fast_switch _or_ .target _or_ .target_index - See
61 below on the differences.
1da177e4
LT
62
63And optionally
64
7de962c0 65 .flags - Hints for the cpufreq core.
367dc4aa 66
7de962c0 67 .driver_data - cpufreq driver specific data.
1da177e4 68
7de962c0
VK
69 .resolve_freq - Returns the most appropriate frequency for a target
70 frequency. Doesn't change the frequency though.
1da177e4 71
7de962c0
VK
72 .get_intermediate and target_intermediate - Used to switch to stable
73 frequency while changing CPU frequency.
1da177e4 74
7de962c0
VK
75 .get - Returns current frequency of the CPU.
76
77 .bios_limit - Returns HW/BIOS max frequency limitations for the CPU.
78
79 .exit - A pointer to a per-policy cleanup function called during
80 CPU_POST_DEAD phase of cpu hotplug process.
81
82 .stop_cpu - A pointer to a per-policy stop function called during
83 CPU_DOWN_PREPARE phase of cpu hotplug process.
84
85 .suspend - A pointer to a per-policy suspend function which is called
86 with interrupts disabled and _after_ the governor is stopped for the
87 policy.
88
89 .resume - A pointer to a per-policy resume function which is called
90 with interrupts disabled and _before_ the governor is started again.
91
92 .ready - A pointer to a per-policy ready function which is called after
93 the policy is fully initialized.
94
95 .attr - A pointer to a NULL-terminated list of "struct freq_attr" which
96 allow to export values to sysfs.
97
98 .boost_enabled - If set, boost frequencies are enabled.
99
100 .set_boost - A pointer to a per-policy function to enable/disable boost
101 frequencies.
1c03a2d0 102
1da177e4
LT
103
1041.2 Per-CPU Initialization
105--------------------------
106
107Whenever a new CPU is registered with the device model, or after the
7de962c0
VK
108cpufreq driver registers itself, the per-policy initialization function
109cpufreq_driver.init is called if no cpufreq policy existed for the CPU.
110Note that the .init() and .exit() routines are called only once for the
111policy and not for each CPU managed by the policy. It takes a struct
112cpufreq_policy *policy as argument. What to do now?
1da177e4
LT
113
114If necessary, activate the CPUfreq support on your CPU.
115
116Then, the driver must fill in the following values:
117
118policy->cpuinfo.min_freq _and_
119policy->cpuinfo.max_freq - the minimum and maximum frequency
120 (in kHz) which is supported by
121 this CPU
122policy->cpuinfo.transition_latency the time it takes on this CPU to
bbe237aa
MB
123 switch between two frequencies in
124 nanoseconds (if appropriate, else
125 specify CPUFREQ_ETERNAL)
1da177e4
LT
126
127policy->cur The current operating frequency of
128 this CPU (if appropriate)
129policy->min,
130policy->max,
131policy->policy and, if necessary,
132policy->governor must contain the "default policy" for
133 this CPU. A few moments later,
134 cpufreq_driver.verify and either
135 cpufreq_driver.setpolicy or
9c0ebcf7
VK
136 cpufreq_driver.target/target_index is called
137 with these values.
7de962c0
VK
138policy->cpus Update this with the masks of the
139 (online + offline) CPUs that do DVFS
140 along with this CPU (i.e. that share
141 clock/voltage rails with it).
1da177e4 142
eb2f50ff
VK
143For setting some of these values (cpuinfo.min[max]_freq, policy->min[max]), the
144frequency table helpers might be helpful. See the section 2 for more information
145on them.
1da177e4
LT
146
147
1481.3 verify
7de962c0 149----------
1da177e4
LT
150
151When the user decides a new policy (consisting of
152"policy,governor,min,max") shall be set, this policy must be validated
153so that incompatible values can be corrected. For verifying these
7de962c0
VK
154values cpufreq_verify_within_limits(struct cpufreq_policy *policy,
155unsigned int min_freq, unsigned int max_freq) function might be helpful.
156See section 2 for details on frequency table helpers.
1da177e4
LT
157
158You need to make sure that at least one valid frequency (or operating
159range) is within policy->min and policy->max. If necessary, increase
160policy->max first, and only if this is no solution, decrease policy->min.
161
162
7de962c0
VK
1631.4 target or target_index or setpolicy or fast_switch?
164-------------------------------------------------------
1da177e4
LT
165
166Most cpufreq drivers or even most cpu frequency scaling algorithms
7de962c0
VK
167only allow the CPU frequency to be set to predefined fixed values. For
168these, you use the ->target(), ->target_index() or ->fast_switch()
169callbacks.
1da177e4 170
7de962c0
VK
171Some cpufreq capable processors switch the frequency between certain
172limits on their own. These shall use the ->setpolicy() callback.
1da177e4
LT
173
174
1c03a2d0 1751.5. target/target_index
7de962c0 176------------------------
1da177e4 177
9c0ebcf7
VK
178The target_index call has two arguments: struct cpufreq_policy *policy,
179and unsigned int index (into the exposed frequency table).
180
181The CPUfreq driver must set the new frequency when called here. The
182actual frequency must be determined by freq_table[index].frequency.
183
1c03a2d0
VK
184It should always restore to earlier frequency (i.e. policy->restore_freq) in
185case of errors, even if we switched to intermediate frequency earlier.
186
9c0ebcf7
VK
187Deprecated:
188----------
1da177e4
LT
189The target call has three arguments: struct cpufreq_policy *policy,
190unsigned int target_frequency, unsigned int relation.
191
192The CPUfreq driver must set the new frequency when called here. The
193actual frequency must be determined using the following rules:
194
195- keep close to "target_freq"
196- policy->min <= new_freq <= policy->max (THIS MUST BE VALID!!!)
197- if relation==CPUFREQ_REL_L, try to select a new_freq higher than or equal
198 target_freq. ("L for lowest, but no lower than")
199- if relation==CPUFREQ_REL_H, try to select a new_freq lower than or equal
200 target_freq. ("H for highest, but no higher than")
201
51555c0e 202Here again the frequency table helper might assist you - see section 2
1da177e4
LT
203for details.
204
7de962c0
VK
2051.6. fast_switch
206----------------
1da177e4 207
7de962c0
VK
208This function is used for frequency switching from scheduler's context.
209Not all drivers are expected to implement it, as sleeping from within
210this callback isn't allowed. This callback must be highly optimized to
211do switching as fast as possible.
212
213This function has two arguments: struct cpufreq_policy *policy and
214unsigned int target_frequency.
215
216
2171.7 setpolicy
218-------------
1da177e4
LT
219
220The setpolicy call only takes a struct cpufreq_policy *policy as
221argument. You need to set the lower limit of the in-processor or
222in-chipset dynamic frequency switching to policy->min, the upper limit
223to policy->max, and -if supported- select a performance-oriented
224setting when policy->policy is CPUFREQ_POLICY_PERFORMANCE, and a
225powersaving-oriented setting when CPUFREQ_POLICY_POWERSAVE. Also check
25eb650a 226the reference implementation in drivers/cpufreq/longrun.c
1da177e4 227
7de962c0 2281.8 get_intermediate and target_intermediate
1c03a2d0
VK
229--------------------------------------------
230
231Only for drivers with target_index() and CPUFREQ_ASYNC_NOTIFICATION unset.
232
233get_intermediate should return a stable intermediate frequency platform wants to
54f5d13b 234switch to, and target_intermediate() should set CPU to that frequency, before
1c03a2d0
VK
235jumping to the frequency corresponding to 'index'. Core will take care of
236sending notifications and driver doesn't have to handle them in
237target_intermediate() or target_index().
238
239Drivers can return '0' from get_intermediate() in case they don't wish to switch
240to intermediate frequency for some target frequency. In that case core will
241directly call ->target_index().
242
243NOTE: ->target_index() should restore to policy->restore_freq in case of
244failures as core would send notifications for that.
1da177e4
LT
245
246
2472. Frequency Table Helpers
248==========================
249
250As most cpufreq processors only allow for being set to a few specific
251frequencies, a "frequency table" with some functions might assist in
7de962c0
VK
252some work of the processor driver. Such a "frequency table" consists of
253an array of struct cpufreq_frequency_table entries, with driver specific
254values in "driver_data", the corresponding frequency in "frequency" and
255flags set. At the end of the table, you need to add a
256cpufreq_frequency_table entry with frequency set to CPUFREQ_TABLE_END.
257And if you want to skip one entry in the table, set the frequency to
258CPUFREQ_ENTRY_INVALID. The entries don't need to be in sorted in any
259particular order, but if they are cpufreq core will do DVFS a bit
260quickly for them as search for best match is faster.
261
262By calling cpufreq_table_validate_and_show(), the cpuinfo.min_freq and
263cpuinfo.max_freq values are detected, and policy->min and policy->max
264are set to the same values. This is helpful for the per-CPU
265initialization stage.
266
267cpufreq_frequency_table_verify() assures that at least one valid
268frequency is within policy->min and policy->max, and all other criteria
269are met. This is helpful for the ->verify call.
270
271cpufreq_frequency_table_target() is the corresponding frequency table
272helper for the ->target stage. Just pass the values to this function,
273and this function returns the of the frequency table entry which
274contains the frequency the CPU shall be set to.
27e289dc
SK
275
276The following macros can be used as iterators over cpufreq_frequency_table:
277
278cpufreq_for_each_entry(pos, table) - iterates over all entries of frequency
279table.
280
7de962c0 281cpufreq_for_each_valid_entry(pos, table) - iterates over all entries,
27e289dc
SK
282excluding CPUFREQ_ENTRY_INVALID frequencies.
283Use arguments "pos" - a cpufreq_frequency_table * as a loop cursor and
284"table" - the cpufreq_frequency_table * you want to iterate over.
285
286For example:
287
288 struct cpufreq_frequency_table *pos, *driver_freq_table;
289
290 cpufreq_for_each_entry(pos, driver_freq_table) {
291 /* Do something with pos */
292 pos->frequency = ...
293 }