input: touchscreen: fix kernel crash in fb_notifier_callback function
[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         bool "'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           For details, take a look at linux/Documentation/cpu-freq.
183
184           If in doubt, say N.
185
186 config CPU_FREQ_GOV_CONSERVATIVE
187         tristate "'conservative' cpufreq governor"
188         depends on CPU_FREQ
189         select CPU_FREQ_GOV_COMMON
190         help
191           'conservative' - this driver is rather similar to the 'ondemand'
192           governor both in its source code and its purpose, the difference is
193           its optimisation for better suitability in a battery powered
194           environment.  The frequency is gracefully increased and decreased
195           rather than jumping to 100% when speed is required.
196
197           If you have a desktop machine then you should really be considering
198           the 'ondemand' governor instead, however if you are using a laptop,
199           PDA or even an AMD64 based computer (due to the unacceptable
200           step-by-step latency issues between the minimum and maximum frequency
201           transitions in the CPU) you will probably want to use this governor.
202
203           To compile this driver as a module, choose M here: the
204           module will be called cpufreq_conservative.
205
206           For details, take a look at linux/Documentation/cpu-freq.
207
208           If in doubt, say N.
209
210 comment "CPU frequency scaling drivers"
211
212 config CPUFREQ_DT
213         tristate "Generic DT based cpufreq driver"
214         depends on HAVE_CLK && OF
215         # if CPU_THERMAL is on and THERMAL=m, CPUFREQ_DT cannot be =y:
216         depends on !CPU_THERMAL || THERMAL
217         select PM_OPP
218         help
219           This adds a generic DT based cpufreq driver for frequency management.
220           It supports both uniprocessor (UP) and symmetric multiprocessor (SMP)
221           systems which share clock and voltage across all CPUs.
222
223           If in doubt, say N.
224
225 if X86
226 source "drivers/cpufreq/Kconfig.x86"
227 endif
228
229 if ARM || ARM64
230 source "drivers/cpufreq/Kconfig.arm"
231 endif
232
233 if PPC32 || PPC64
234 source "drivers/cpufreq/Kconfig.powerpc"
235 endif
236
237 if AVR32
238 config AVR32_AT32AP_CPUFREQ
239         bool "CPU frequency driver for AT32AP"
240         depends on PLATFORM_AT32AP
241         default n
242         help
243           This enables the CPU frequency driver for AT32AP processors.
244           If in doubt, say N.
245 endif
246
247 if IA64
248 config IA64_ACPI_CPUFREQ
249         tristate "ACPI Processor P-States driver"
250         depends on ACPI_PROCESSOR
251         help
252         This driver adds a CPUFreq driver which utilizes the ACPI
253         Processor Performance States.
254
255         For details, take a look at <file:Documentation/cpu-freq/>.
256
257         If in doubt, say N.
258 endif
259
260 if MIPS
261 config LOONGSON2_CPUFREQ
262         tristate "Loongson2 CPUFreq Driver"
263         help
264           This option adds a CPUFreq driver for loongson processors which
265           support software configurable cpu frequency.
266
267           Loongson2F and it's successors support this feature.
268
269           For details, take a look at <file:Documentation/cpu-freq/>.
270
271           If in doubt, say N.
272
273 config LOONGSON1_CPUFREQ
274         tristate "Loongson1 CPUFreq Driver"
275         help
276           This option adds a CPUFreq driver for loongson1 processors which
277           support software configurable cpu frequency.
278
279           For details, take a look at <file:Documentation/cpu-freq/>.
280
281           If in doubt, say N.
282 endif
283
284 if SPARC64
285 config SPARC_US3_CPUFREQ
286         tristate "UltraSPARC-III CPU Frequency driver"
287         help
288           This adds the CPUFreq driver for UltraSPARC-III processors.
289
290           For details, take a look at <file:Documentation/cpu-freq>.
291
292           If in doubt, say N.
293
294 config SPARC_US2E_CPUFREQ
295         tristate "UltraSPARC-IIe CPU Frequency driver"
296         help
297           This adds the CPUFreq driver for UltraSPARC-IIe processors.
298
299           For details, take a look at <file:Documentation/cpu-freq>.
300
301           If in doubt, say N.
302 endif
303
304 if SUPERH
305 config SH_CPU_FREQ
306         tristate "SuperH CPU Frequency driver"
307         help
308           This adds the cpufreq driver for SuperH. Any CPU that supports
309           clock rate rounding through the clock framework can use this
310           driver. While it will make the kernel slightly larger, this is
311           harmless for CPUs that don't support rate rounding. The driver
312           will also generate a notice in the boot log before disabling
313           itself if the CPU in question is not capable of rate rounding.
314
315           For details, take a look at <file:Documentation/cpu-freq>.
316
317           If unsure, say N.
318 endif
319
320 config QORIQ_CPUFREQ
321         tristate "CPU frequency scaling driver for Freescale QorIQ SoCs"
322         depends on OF && COMMON_CLK && (PPC_E500MC || ARM)
323         select CLK_QORIQ
324         help
325           This adds the CPUFreq driver support for Freescale QorIQ SoCs
326           which are capable of changing the CPU's frequency dynamically.
327
328 endif
329 endmenu