cpufreq: interactive: Implement cluster-based min_sample_time
[firefly-linux-kernel-4.4.55.git] / drivers / cpufreq / Kconfig
1 menu "CPU Frequency scaling"
2
3 config CPU_FREQ
4         bool "CPU Frequency scaling"
5         select SRCU
6         help
7           CPU Frequency scaling allows you to change the clock speed of 
8           CPUs on the fly. This is a nice method to save power, because 
9           the lower the CPU clock speed, the less power the CPU consumes.
10
11           Note that this driver doesn't automatically change the CPU
12           clock speed, you need to either enable a dynamic cpufreq governor
13           (see below) after boot, or use a userspace tool.
14
15           For details, take a look at <file:Documentation/cpu-freq>.
16
17           If in doubt, say N.
18
19 if CPU_FREQ
20
21 config CPU_FREQ_GOV_COMMON
22         bool
23
24 config CPU_FREQ_BOOST_SW
25         bool
26         depends on THERMAL
27
28 config CPU_FREQ_STAT
29         tristate "CPU frequency translation statistics"
30         default y
31         help
32           This driver exports CPU frequency statistics information through sysfs
33           file system.
34
35           To compile this driver as a module, choose M here: the
36           module will be called cpufreq_stats.
37
38           If in doubt, say N.
39
40 config CPU_FREQ_STAT_DETAILS
41         bool "CPU frequency translation statistics details"
42         depends on CPU_FREQ_STAT
43         help
44           This will show detail CPU frequency translation table in sysfs file
45           system.
46
47           If in doubt, say N.
48
49 choice
50         prompt "Default CPUFreq governor"
51         default CPU_FREQ_DEFAULT_GOV_USERSPACE if ARM_SA1100_CPUFREQ || ARM_SA1110_CPUFREQ
52         default CPU_FREQ_DEFAULT_GOV_PERFORMANCE
53         help
54           This option sets which CPUFreq governor shall be loaded at
55           startup. If in doubt, select 'performance'.
56
57 config CPU_FREQ_DEFAULT_GOV_PERFORMANCE
58         bool "performance"
59         select CPU_FREQ_GOV_PERFORMANCE
60         help
61           Use the CPUFreq governor 'performance' as default. This sets
62           the frequency statically to the highest frequency supported by
63           the CPU.
64
65 config CPU_FREQ_DEFAULT_GOV_POWERSAVE
66         bool "powersave"
67         select CPU_FREQ_GOV_POWERSAVE
68         help
69           Use the CPUFreq governor 'powersave' as default. This sets
70           the frequency statically to the lowest frequency supported by
71           the CPU.
72
73 config CPU_FREQ_DEFAULT_GOV_USERSPACE
74         bool "userspace"
75         select CPU_FREQ_GOV_USERSPACE
76         help
77           Use the CPUFreq governor 'userspace' as default. This allows
78           you to set the CPU frequency manually or when a userspace 
79           program shall be able to set the CPU dynamically without having
80           to enable the userspace governor manually.
81
82 config CPU_FREQ_DEFAULT_GOV_ONDEMAND
83         bool "ondemand"
84         select CPU_FREQ_GOV_ONDEMAND
85         select CPU_FREQ_GOV_PERFORMANCE
86         help
87           Use the CPUFreq governor 'ondemand' as default. This allows
88           you to get a full dynamic frequency capable system by simply
89           loading your cpufreq low-level hardware driver.
90           Be aware that not all cpufreq drivers support the ondemand
91           governor. If unsure have a look at the help section of the
92           driver. Fallback governor will be the performance governor.
93
94 config CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
95         bool "conservative"
96         select CPU_FREQ_GOV_CONSERVATIVE
97         select CPU_FREQ_GOV_PERFORMANCE
98         help
99           Use the CPUFreq governor 'conservative' as default. This allows
100           you to get a full dynamic frequency capable system by simply
101           loading your cpufreq low-level hardware driver.
102           Be aware that not all cpufreq drivers support the conservative
103           governor. If unsure have a look at the help section of the
104           driver. Fallback governor will be the performance governor.
105
106 config CPU_FREQ_DEFAULT_GOV_INTERACTIVE
107         bool "interactive"
108         select CPU_FREQ_GOV_INTERACTIVE
109         help
110           Use the CPUFreq governor 'interactive' as default. This allows
111           you to get a full dynamic cpu frequency capable system by simply
112           loading your cpufreq low-level hardware driver, using the
113           'interactive' governor for latency-sensitive workloads.
114
115 endchoice
116
117 config CPU_FREQ_GOV_PERFORMANCE
118         tristate "'performance' governor"
119         help
120           This cpufreq governor sets the frequency statically to the
121           highest available CPU frequency.
122
123           To compile this driver as a module, choose M here: the
124           module will be called cpufreq_performance.
125
126           If in doubt, say Y.
127
128 config CPU_FREQ_GOV_POWERSAVE
129         tristate "'powersave' governor"
130         help
131           This cpufreq governor sets the frequency statically to the
132           lowest available CPU frequency.
133
134           To compile this driver as a module, choose M here: the
135           module will be called cpufreq_powersave.
136
137           If in doubt, say Y.
138
139 config CPU_FREQ_GOV_USERSPACE
140         tristate "'userspace' governor for userspace frequency scaling"
141         help
142           Enable this cpufreq governor when you either want to set the
143           CPU frequency manually or when a userspace program shall
144           be able to set the CPU dynamically, like on LART 
145           <http://www.lartmaker.nl/>.
146
147           To compile this driver as a module, choose M here: the
148           module will be called cpufreq_userspace.
149
150           For details, take a look at <file:Documentation/cpu-freq/>.
151
152           If in doubt, say Y.
153
154 config CPU_FREQ_GOV_ONDEMAND
155         tristate "'ondemand' cpufreq policy governor"
156         select CPU_FREQ_GOV_COMMON
157         help
158           'ondemand' - This driver adds a dynamic cpufreq policy governor.
159           The governor does a periodic polling and 
160           changes frequency based on the CPU utilization.
161           The support for this governor depends on CPU capability to
162           do fast frequency switching (i.e, very low latency frequency
163           transitions). 
164
165           To compile this driver as a module, choose M here: the
166           module will be called cpufreq_ondemand.
167
168           For details, take a look at linux/Documentation/cpu-freq.
169
170           If in doubt, say N.
171
172 config CPU_FREQ_GOV_INTERACTIVE
173         tristate "'interactive' cpufreq policy governor"
174         help
175           'interactive' - This driver adds a dynamic cpufreq policy governor
176           designed for latency-sensitive workloads.
177
178           This governor attempts to reduce the latency of clock
179           increases so that the system is more responsive to
180           interactive workloads.
181
182           To compile this driver as a module, choose M here: the
183           module will be called cpufreq_interactive.
184
185           For details, take a look at linux/Documentation/cpu-freq.
186
187           If in doubt, say N.
188
189 config CPU_FREQ_GOV_CONSERVATIVE
190         tristate "'conservative' cpufreq governor"
191         depends on CPU_FREQ
192         select CPU_FREQ_GOV_COMMON
193         help
194           'conservative' - this driver is rather similar to the 'ondemand'
195           governor both in its source code and its purpose, the difference is
196           its optimisation for better suitability in a battery powered
197           environment.  The frequency is gracefully increased and decreased
198           rather than jumping to 100% when speed is required.
199
200           If you have a desktop machine then you should really be considering
201           the 'ondemand' governor instead, however if you are using a laptop,
202           PDA or even an AMD64 based computer (due to the unacceptable
203           step-by-step latency issues between the minimum and maximum frequency
204           transitions in the CPU) you will probably want to use this governor.
205
206           To compile this driver as a module, choose M here: the
207           module will be called cpufreq_conservative.
208
209           For details, take a look at linux/Documentation/cpu-freq.
210
211           If in doubt, say N.
212
213 comment "CPU frequency scaling drivers"
214
215 config CPUFREQ_DT
216         tristate "Generic DT based cpufreq driver"
217         depends on HAVE_CLK && OF
218         # if CPU_THERMAL is on and THERMAL=m, CPUFREQ_DT cannot be =y:
219         depends on !CPU_THERMAL || THERMAL
220         select PM_OPP
221         help
222           This adds a generic DT based cpufreq driver for frequency management.
223           It supports both uniprocessor (UP) and symmetric multiprocessor (SMP)
224           systems which share clock and voltage across all CPUs.
225
226           If in doubt, say N.
227
228 if X86
229 source "drivers/cpufreq/Kconfig.x86"
230 endif
231
232 if ARM || ARM64
233 source "drivers/cpufreq/Kconfig.arm"
234 endif
235
236 if PPC32 || PPC64
237 source "drivers/cpufreq/Kconfig.powerpc"
238 endif
239
240 if AVR32
241 config AVR32_AT32AP_CPUFREQ
242         bool "CPU frequency driver for AT32AP"
243         depends on PLATFORM_AT32AP
244         default n
245         help
246           This enables the CPU frequency driver for AT32AP processors.
247           If in doubt, say N.
248 endif
249
250 if IA64
251 config IA64_ACPI_CPUFREQ
252         tristate "ACPI Processor P-States driver"
253         depends on ACPI_PROCESSOR
254         help
255         This driver adds a CPUFreq driver which utilizes the ACPI
256         Processor Performance States.
257
258         For details, take a look at <file:Documentation/cpu-freq/>.
259
260         If in doubt, say N.
261 endif
262
263 if MIPS
264 config LOONGSON2_CPUFREQ
265         tristate "Loongson2 CPUFreq Driver"
266         help
267           This option adds a CPUFreq driver for loongson processors which
268           support software configurable cpu frequency.
269
270           Loongson2F and it's successors support this feature.
271
272           For details, take a look at <file:Documentation/cpu-freq/>.
273
274           If in doubt, say N.
275
276 config LOONGSON1_CPUFREQ
277         tristate "Loongson1 CPUFreq Driver"
278         help
279           This option adds a CPUFreq driver for loongson1 processors which
280           support software configurable cpu frequency.
281
282           For details, take a look at <file:Documentation/cpu-freq/>.
283
284           If in doubt, say N.
285 endif
286
287 if SPARC64
288 config SPARC_US3_CPUFREQ
289         tristate "UltraSPARC-III CPU Frequency driver"
290         help
291           This adds the CPUFreq driver for UltraSPARC-III processors.
292
293           For details, take a look at <file:Documentation/cpu-freq>.
294
295           If in doubt, say N.
296
297 config SPARC_US2E_CPUFREQ
298         tristate "UltraSPARC-IIe CPU Frequency driver"
299         help
300           This adds the CPUFreq driver for UltraSPARC-IIe processors.
301
302           For details, take a look at <file:Documentation/cpu-freq>.
303
304           If in doubt, say N.
305 endif
306
307 if SUPERH
308 config SH_CPU_FREQ
309         tristate "SuperH CPU Frequency driver"
310         help
311           This adds the cpufreq driver for SuperH. Any CPU that supports
312           clock rate rounding through the clock framework can use this
313           driver. While it will make the kernel slightly larger, this is
314           harmless for CPUs that don't support rate rounding. The driver
315           will also generate a notice in the boot log before disabling
316           itself if the CPU in question is not capable of rate rounding.
317
318           For details, take a look at <file:Documentation/cpu-freq>.
319
320           If unsure, say N.
321 endif
322
323 config QORIQ_CPUFREQ
324         tristate "CPU frequency scaling driver for Freescale QorIQ SoCs"
325         depends on OF && COMMON_CLK && (PPC_E500MC || ARM)
326         select CLK_QORIQ
327         help
328           This adds the CPUFreq driver support for Freescale QorIQ SoCs
329           which are capable of changing the CPU's frequency dynamically.
330
331 endif
332 endmenu