blob: c822d72629d5ca09820eb8b86a183a26fe27f7e8 [file] [log] [blame]
Dave Jonesbb0a56e2011-05-19 18:51:07 -04001menu "CPU Frequency scaling"
2
Linus Torvalds1da177e2005-04-16 15:20:36 -07003config CPU_FREQ
4 bool "CPU Frequency scaling"
Pranith Kumar83fe27e2014-12-05 11:24:45 -05005 select SRCU
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 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
19if CPU_FREQ
20
Rafael J. Wysocki2d0c58a2016-03-22 02:49:15 +010021config CPU_FREQ_GOV_ATTR_SET
22 bool
23
Larry Finger1e15f292012-12-29 01:55:20 +000024config CPU_FREQ_GOV_COMMON
Rafael J. Wysocki2d0c58a2016-03-22 02:49:15 +010025 select CPU_FREQ_GOV_ATTR_SET
Rafael J. Wysockie6f03652016-02-28 02:33:29 +010026 select IRQ_WORK
Larry Finger1e15f292012-12-29 01:55:20 +000027 bool
28
Lukasz Majewski2fb47192013-12-20 15:24:51 +010029config CPU_FREQ_BOOST_SW
30 bool
31 depends on THERMAL
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033config CPU_FREQ_STAT
Rafael J. Wysocki1aefc752016-05-31 22:14:44 +020034 bool "CPU frequency transition statistics"
Mike Frysinger9101be52007-04-18 16:18:13 -040035 default y
36 help
Rafael J. Wysocki1aefc752016-05-31 22:14:44 +020037 Export CPU frequency statistics information through sysfs.
Mike Frysinger9101be52007-04-18 16:18:13 -040038
39 If in doubt, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41config CPU_FREQ_STAT_DETAILS
Rafael J. Wysocki1aefc752016-05-31 22:14:44 +020042 bool "CPU frequency transition statistics details"
Mike Frysinger9101be52007-04-18 16:18:13 -040043 depends on CPU_FREQ_STAT
44 help
Rafael J. Wysocki1aefc752016-05-31 22:14:44 +020045 Show detailed CPU frequency transition table in sysfs.
Mike Frysinger9101be52007-04-18 16:18:13 -040046
47 If in doubt, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049choice
50 prompt "Default CPUFreq governor"
Alexander Shiyan559f56c2013-05-05 12:18:08 +000051 default CPU_FREQ_DEFAULT_GOV_USERSPACE if ARM_SA1100_CPUFREQ || ARM_SA1110_CPUFREQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 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
57config 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
Alessandro Guido30d221d2008-04-18 13:31:13 -070065config CPU_FREQ_DEFAULT_GOV_POWERSAVE
66 bool "powersave"
Alessandro Guido30d221d2008-04-18 13:31:13 -070067 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070073config 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
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +010078 you to set the CPU frequency manually or when a userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 program shall be able to set the CPU dynamically without having
80 to enable the userspace governor manually.
81
Thomas Renninger1c256242007-10-02 13:28:12 -070082config 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
94config 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.
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200105
106config CPU_FREQ_DEFAULT_GOV_SCHEDUTIL
107 bool "schedutil"
Arnd Bergmanncfe94922016-05-11 14:52:01 +0200108 depends on SMP
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200109 select CPU_FREQ_GOV_SCHEDUTIL
110 select CPU_FREQ_GOV_PERFORMANCE
111 help
112 Use the 'schedutil' CPUFreq governor by default. If unsure,
113 have a look at the help section of that governor. The fallback
114 governor will be 'performance'.
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116endchoice
117
118config CPU_FREQ_GOV_PERFORMANCE
Mike Frysinger9101be52007-04-18 16:18:13 -0400119 tristate "'performance' governor"
120 help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 This cpufreq governor sets the frequency statically to the
122 highest available CPU frequency.
123
Mike Frysinger9101be52007-04-18 16:18:13 -0400124 To compile this driver as a module, choose M here: the
125 module will be called cpufreq_performance.
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 If in doubt, say Y.
128
129config CPU_FREQ_GOV_POWERSAVE
Mike Frysinger9101be52007-04-18 16:18:13 -0400130 tristate "'powersave' governor"
131 help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 This cpufreq governor sets the frequency statically to the
133 lowest available CPU frequency.
134
Mike Frysinger9101be52007-04-18 16:18:13 -0400135 To compile this driver as a module, choose M here: the
136 module will be called cpufreq_powersave.
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 If in doubt, say Y.
139
140config CPU_FREQ_GOV_USERSPACE
Mike Frysinger9101be52007-04-18 16:18:13 -0400141 tristate "'userspace' governor for userspace frequency scaling"
142 help
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 Enable this cpufreq governor when you either want to set the
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +0100144 CPU frequency manually or when a userspace program shall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 be able to set the CPU dynamically, like on LART
Erik Mouw4c412512006-04-03 14:21:00 +0200146 <http://www.lartmaker.nl/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Mike Frysinger9101be52007-04-18 16:18:13 -0400148 To compile this driver as a module, choose M here: the
149 module will be called cpufreq_userspace.
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 For details, take a look at <file:Documentation/cpu-freq/>.
152
153 If in doubt, say Y.
154
155config CPU_FREQ_GOV_ONDEMAND
156 tristate "'ondemand' cpufreq policy governor"
Larry Finger1e15f292012-12-29 01:55:20 +0000157 select CPU_FREQ_GOV_COMMON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 help
159 'ondemand' - This driver adds a dynamic cpufreq policy governor.
160 The governor does a periodic polling and
161 changes frequency based on the CPU utilization.
162 The support for this governor depends on CPU capability to
163 do fast frequency switching (i.e, very low latency frequency
164 transitions).
165
Mike Frysinger9101be52007-04-18 16:18:13 -0400166 To compile this driver as a module, choose M here: the
167 module will be called cpufreq_ondemand.
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 For details, take a look at linux/Documentation/cpu-freq.
170
171 If in doubt, say N.
172
Dave Jonesb9170832005-05-31 19:03:47 -0700173config CPU_FREQ_GOV_CONSERVATIVE
174 tristate "'conservative' cpufreq governor"
175 depends on CPU_FREQ
Larry Finger1e15f292012-12-29 01:55:20 +0000176 select CPU_FREQ_GOV_COMMON
Dave Jonesb9170832005-05-31 19:03:47 -0700177 help
178 'conservative' - this driver is rather similar to the 'ondemand'
179 governor both in its source code and its purpose, the difference is
180 its optimisation for better suitability in a battery powered
181 environment. The frequency is gracefully increased and decreased
182 rather than jumping to 100% when speed is required.
183
184 If you have a desktop machine then you should really be considering
185 the 'ondemand' governor instead, however if you are using a laptop,
186 PDA or even an AMD64 based computer (due to the unacceptable
187 step-by-step latency issues between the minimum and maximum frequency
188 transitions in the CPU) you will probably want to use this governor.
189
Mike Frysinger9101be52007-04-18 16:18:13 -0400190 To compile this driver as a module, choose M here: the
191 module will be called cpufreq_conservative.
192
Dave Jonesb9170832005-05-31 19:03:47 -0700193 For details, take a look at linux/Documentation/cpu-freq.
194
195 If in doubt, say N.
196
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200197config CPU_FREQ_GOV_SCHEDUTIL
198 tristate "'schedutil' cpufreq policy governor"
Rafael J. Wysockibf7cdff2016-05-06 15:00:38 +0200199 depends on CPU_FREQ && SMP
Rafael J. Wysocki9bdcb442016-04-02 01:09:12 +0200200 select CPU_FREQ_GOV_ATTR_SET
201 select IRQ_WORK
202 help
203 This governor makes decisions based on the utilization data provided
204 by the scheduler. It sets the CPU frequency to be proportional to
205 the utilization/capacity ratio coming from the scheduler. If the
206 utilization is frequency-invariant, the new frequency is also
207 proportional to the maximum available frequency. If that is not the
208 case, it is proportional to the current frequency of the CPU. The
209 frequency tipping point is at utilization/capacity equal to 80% in
210 both cases.
211
212 To compile this driver as a module, choose M here: the module will
213 be called cpufreq_schedutil.
214
215 If in doubt, say N.
216
Viresh Kumarf41f4812014-11-15 08:50:44 +0530217comment "CPU frequency scaling drivers"
218
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530219config CPUFREQ_DT
220 tristate "Generic DT based cpufreq driver"
Viresh Kumar5fbfbcd2014-06-10 10:39:46 +0530221 depends on HAVE_CLK && OF
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530222 # if CPU_THERMAL is on and THERMAL=m, CPUFREQ_DT cannot be =y:
Arnd Bergmann217886d2014-06-13 10:40:32 +0200223 depends on !CPU_THERMAL || THERMAL
Viresh Kumarf56aad12016-03-30 13:45:26 +0530224 select CPUFREQ_DT_PLATDEV
Mark Brown109df082013-12-11 22:12:27 +0000225 select PM_OPP
Shawn Guo95ceafd2012-09-06 07:09:11 +0000226 help
Viresh Kumarbbcf0712014-09-09 19:58:03 +0530227 This adds a generic DT based cpufreq driver for frequency management.
Shawn Guo95ceafd2012-09-06 07:09:11 +0000228 It supports both uniprocessor (UP) and symmetric multiprocessor (SMP)
229 systems which share clock and voltage across all CPUs.
230
231 If in doubt, say N.
232
Viresh Kumarf56aad12016-03-30 13:45:26 +0530233config CPUFREQ_DT_PLATDEV
234 bool
235 help
236 This adds a generic DT based cpufreq platdev driver for frequency
237 management. This creates a 'cpufreq-dt' platform device, on the
238 supported platforms.
239
240 If in doubt, say N.
241
Viresh Kumarf41f4812014-11-15 08:50:44 +0530242if X86
Dave Jonesbb0a56e2011-05-19 18:51:07 -0400243source "drivers/cpufreq/Kconfig.x86"
Viresh Kumarf41f4812014-11-15 08:50:44 +0530244endif
Dave Jonesbb0a56e2011-05-19 18:51:07 -0400245
Viresh Kumarf41f4812014-11-15 08:50:44 +0530246if ARM || ARM64
Kukjin Kimf7d77072011-06-01 14:18:22 -0700247source "drivers/cpufreq/Kconfig.arm"
Viresh Kumarf41f4812014-11-15 08:50:44 +0530248endif
Kukjin Kimf7d77072011-06-01 14:18:22 -0700249
Viresh Kumarf41f4812014-11-15 08:50:44 +0530250if PPC32 || PPC64
251source "drivers/cpufreq/Kconfig.powerpc"
252endif
Viresh Kumar81c720c2013-04-04 12:54:17 +0000253
Viresh Kumarf41f4812014-11-15 08:50:44 +0530254if AVR32
Viresh Kumar81c720c2013-04-04 12:54:17 +0000255config AVR32_AT32AP_CPUFREQ
256 bool "CPU frequency driver for AT32AP"
257 depends on PLATFORM_AT32AP
258 default n
259 help
260 This enables the CPU frequency driver for AT32AP processors.
261 If in doubt, say N.
Viresh Kumarf41f4812014-11-15 08:50:44 +0530262endif
Viresh Kumar81c720c2013-04-04 12:54:17 +0000263
Viresh Kumarf41f4812014-11-15 08:50:44 +0530264if IA64
Viresh Kumarab423e42013-04-04 12:54:20 +0000265config IA64_ACPI_CPUFREQ
266 tristate "ACPI Processor P-States driver"
Viresh Kumarab423e42013-04-04 12:54:20 +0000267 depends on ACPI_PROCESSOR
268 help
269 This driver adds a CPUFreq driver which utilizes the ACPI
270 Processor Performance States.
271
272 For details, take a look at <file:Documentation/cpu-freq/>.
273
274 If in doubt, say N.
Viresh Kumarf41f4812014-11-15 08:50:44 +0530275endif
Viresh Kumarab423e42013-04-04 12:54:20 +0000276
Viresh Kumarf41f4812014-11-15 08:50:44 +0530277if MIPS
Viresh Kumar7a998932013-04-04 12:54:21 +0000278config LOONGSON2_CPUFREQ
279 tristate "Loongson2 CPUFreq Driver"
Viresh Kumar7a998932013-04-04 12:54:21 +0000280 help
281 This option adds a CPUFreq driver for loongson processors which
282 support software configurable cpu frequency.
283
284 Loongson2F and it's successors support this feature.
285
286 For details, take a look at <file:Documentation/cpu-freq/>.
287
288 If in doubt, say N.
289
Kelvin Cheunga0a22cf2014-10-17 18:23:31 +0800290config LOONGSON1_CPUFREQ
291 tristate "Loongson1 CPUFreq Driver"
292 help
293 This option adds a CPUFreq driver for loongson1 processors which
294 support software configurable cpu frequency.
295
296 For details, take a look at <file:Documentation/cpu-freq/>.
297
298 If in doubt, say N.
Viresh Kumarf41f4812014-11-15 08:50:44 +0530299endif
Kelvin Cheunga0a22cf2014-10-17 18:23:31 +0800300
Viresh Kumarf41f4812014-11-15 08:50:44 +0530301if SPARC64
Viresh Kumar764295a2013-04-04 12:54:24 +0000302config SPARC_US3_CPUFREQ
303 tristate "UltraSPARC-III CPU Frequency driver"
Viresh Kumar764295a2013-04-04 12:54:24 +0000304 help
305 This adds the CPUFreq driver for UltraSPARC-III processors.
306
307 For details, take a look at <file:Documentation/cpu-freq>.
308
309 If in doubt, say N.
310
311config SPARC_US2E_CPUFREQ
312 tristate "UltraSPARC-IIe CPU Frequency driver"
Viresh Kumar764295a2013-04-04 12:54:24 +0000313 help
314 This adds the CPUFreq driver for UltraSPARC-IIe processors.
315
316 For details, take a look at <file:Documentation/cpu-freq>.
317
318 If in doubt, say N.
Viresh Kumarf41f4812014-11-15 08:50:44 +0530319endif
Viresh Kumar764295a2013-04-04 12:54:24 +0000320
Viresh Kumarf41f4812014-11-15 08:50:44 +0530321if SUPERH
Viresh Kumar72582672013-04-04 12:54:22 +0000322config SH_CPU_FREQ
323 tristate "SuperH CPU Frequency driver"
Viresh Kumar72582672013-04-04 12:54:22 +0000324 help
325 This adds the cpufreq driver for SuperH. Any CPU that supports
326 clock rate rounding through the clock framework can use this
327 driver. While it will make the kernel slightly larger, this is
328 harmless for CPUs that don't support rate rounding. The driver
329 will also generate a notice in the boot log before disabling
330 itself if the CPU in question is not capable of rate rounding.
331
332 For details, take a look at <file:Documentation/cpu-freq>.
333
334 If unsure, say N.
Viresh Kumarf41f4812014-11-15 08:50:44 +0530335endif
Viresh Kumar72582672013-04-04 12:54:22 +0000336
Tang Yuantian2f249352015-03-13 12:39:02 +0800337config QORIQ_CPUFREQ
338 tristate "CPU frequency scaling driver for Freescale QorIQ SoCs"
339 depends on OF && COMMON_CLK && (PPC_E500MC || ARM)
Arnd Bergmannddd30ef2016-02-29 17:04:20 +0100340 depends on !CPU_THERMAL || THERMAL
Tang Yuantian2f249352015-03-13 12:39:02 +0800341 select CLK_QORIQ
342 help
343 This adds the CPUFreq driver support for Freescale QorIQ SoCs
344 which are capable of changing the CPU's frequency dynamically.
345
Dave Jonesbb0a56e2011-05-19 18:51:07 -0400346endif
347endmenu