Dave Jones | bb0a56e | 2011-05-19 18:51:07 -0400 | [diff] [blame] | 1 | menu "CPU Frequency scaling" |
| 2 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | config CPU_FREQ |
| 4 | bool "CPU Frequency scaling" |
Pranith Kumar | 83fe27e | 2014-12-05 11:24:45 -0500 | [diff] [blame] | 5 | select SRCU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Rafael J. Wysocki | 2d0c58a | 2016-03-22 02:49:15 +0100 | [diff] [blame] | 21 | config CPU_FREQ_GOV_ATTR_SET |
| 22 | bool |
| 23 | |
Larry Finger | 1e15f29 | 2012-12-29 01:55:20 +0000 | [diff] [blame] | 24 | config CPU_FREQ_GOV_COMMON |
Rafael J. Wysocki | 2d0c58a | 2016-03-22 02:49:15 +0100 | [diff] [blame] | 25 | select CPU_FREQ_GOV_ATTR_SET |
Rafael J. Wysocki | e6f0365 | 2016-02-28 02:33:29 +0100 | [diff] [blame] | 26 | select IRQ_WORK |
Larry Finger | 1e15f29 | 2012-12-29 01:55:20 +0000 | [diff] [blame] | 27 | bool |
| 28 | |
Lukasz Majewski | 2fb4719 | 2013-12-20 15:24:51 +0100 | [diff] [blame] | 29 | config CPU_FREQ_BOOST_SW |
| 30 | bool |
| 31 | depends on THERMAL |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | config CPU_FREQ_STAT |
Rafael J. Wysocki | 1aefc75 | 2016-05-31 22:14:44 +0200 | [diff] [blame] | 34 | bool "CPU frequency transition statistics" |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 35 | help |
Rafael J. Wysocki | 1aefc75 | 2016-05-31 22:14:44 +0200 | [diff] [blame] | 36 | Export CPU frequency statistics information through sysfs. |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 37 | |
| 38 | If in doubt, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | config CPU_FREQ_STAT_DETAILS |
Rafael J. Wysocki | 1aefc75 | 2016-05-31 22:14:44 +0200 | [diff] [blame] | 41 | bool "CPU frequency transition statistics details" |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 42 | depends on CPU_FREQ_STAT |
| 43 | help |
Rafael J. Wysocki | 1aefc75 | 2016-05-31 22:14:44 +0200 | [diff] [blame] | 44 | Show detailed CPU frequency transition table in sysfs. |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 45 | |
| 46 | If in doubt, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | choice |
| 49 | prompt "Default CPUFreq governor" |
Alexander Shiyan | 559f56c | 2013-05-05 12:18:08 +0000 | [diff] [blame] | 50 | default CPU_FREQ_DEFAULT_GOV_USERSPACE if ARM_SA1100_CPUFREQ || ARM_SA1110_CPUFREQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | default CPU_FREQ_DEFAULT_GOV_PERFORMANCE |
| 52 | help |
| 53 | This option sets which CPUFreq governor shall be loaded at |
| 54 | startup. If in doubt, select 'performance'. |
| 55 | |
| 56 | config CPU_FREQ_DEFAULT_GOV_PERFORMANCE |
| 57 | bool "performance" |
| 58 | select CPU_FREQ_GOV_PERFORMANCE |
| 59 | help |
| 60 | Use the CPUFreq governor 'performance' as default. This sets |
| 61 | the frequency statically to the highest frequency supported by |
| 62 | the CPU. |
| 63 | |
Alessandro Guido | 30d221d | 2008-04-18 13:31:13 -0700 | [diff] [blame] | 64 | config CPU_FREQ_DEFAULT_GOV_POWERSAVE |
| 65 | bool "powersave" |
Alessandro Guido | 30d221d | 2008-04-18 13:31:13 -0700 | [diff] [blame] | 66 | select CPU_FREQ_GOV_POWERSAVE |
| 67 | help |
| 68 | Use the CPUFreq governor 'powersave' as default. This sets |
| 69 | the frequency statically to the lowest frequency supported by |
| 70 | the CPU. |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | config CPU_FREQ_DEFAULT_GOV_USERSPACE |
| 73 | bool "userspace" |
| 74 | select CPU_FREQ_GOV_USERSPACE |
| 75 | help |
| 76 | Use the CPUFreq governor 'userspace' as default. This allows |
Frederik Schwarzer | 0211a9c | 2008-12-29 22:14:56 +0100 | [diff] [blame] | 77 | you to set the CPU frequency manually or when a userspace |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | program shall be able to set the CPU dynamically without having |
| 79 | to enable the userspace governor manually. |
| 80 | |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 81 | config CPU_FREQ_DEFAULT_GOV_ONDEMAND |
| 82 | bool "ondemand" |
| 83 | select CPU_FREQ_GOV_ONDEMAND |
| 84 | select CPU_FREQ_GOV_PERFORMANCE |
| 85 | help |
| 86 | Use the CPUFreq governor 'ondemand' as default. This allows |
| 87 | you to get a full dynamic frequency capable system by simply |
| 88 | loading your cpufreq low-level hardware driver. |
| 89 | Be aware that not all cpufreq drivers support the ondemand |
| 90 | governor. If unsure have a look at the help section of the |
| 91 | driver. Fallback governor will be the performance governor. |
| 92 | |
| 93 | config CPU_FREQ_DEFAULT_GOV_CONSERVATIVE |
| 94 | bool "conservative" |
| 95 | select CPU_FREQ_GOV_CONSERVATIVE |
| 96 | select CPU_FREQ_GOV_PERFORMANCE |
| 97 | help |
| 98 | Use the CPUFreq governor 'conservative' as default. This allows |
| 99 | you to get a full dynamic frequency capable system by simply |
| 100 | loading your cpufreq low-level hardware driver. |
| 101 | Be aware that not all cpufreq drivers support the conservative |
| 102 | governor. If unsure have a look at the help section of the |
| 103 | driver. Fallback governor will be the performance governor. |
Rafael J. Wysocki | 9bdcb44 | 2016-04-02 01:09:12 +0200 | [diff] [blame] | 104 | |
| 105 | config CPU_FREQ_DEFAULT_GOV_SCHEDUTIL |
| 106 | bool "schedutil" |
Arnd Bergmann | cfe9492 | 2016-05-11 14:52:01 +0200 | [diff] [blame] | 107 | depends on SMP |
Rafael J. Wysocki | 9bdcb44 | 2016-04-02 01:09:12 +0200 | [diff] [blame] | 108 | select CPU_FREQ_GOV_SCHEDUTIL |
| 109 | select CPU_FREQ_GOV_PERFORMANCE |
| 110 | help |
| 111 | Use the 'schedutil' CPUFreq governor by default. If unsure, |
| 112 | have a look at the help section of that governor. The fallback |
| 113 | governor will be 'performance'. |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | endchoice |
| 116 | |
| 117 | config CPU_FREQ_GOV_PERFORMANCE |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 118 | tristate "'performance' governor" |
| 119 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | This cpufreq governor sets the frequency statically to the |
| 121 | highest available CPU frequency. |
| 122 | |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 123 | To compile this driver as a module, choose M here: the |
| 124 | module will be called cpufreq_performance. |
| 125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | If in doubt, say Y. |
| 127 | |
| 128 | config CPU_FREQ_GOV_POWERSAVE |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 129 | tristate "'powersave' governor" |
| 130 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | This cpufreq governor sets the frequency statically to the |
| 132 | lowest available CPU frequency. |
| 133 | |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 134 | To compile this driver as a module, choose M here: the |
| 135 | module will be called cpufreq_powersave. |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | If in doubt, say Y. |
| 138 | |
| 139 | config CPU_FREQ_GOV_USERSPACE |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 140 | tristate "'userspace' governor for userspace frequency scaling" |
| 141 | help |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | Enable this cpufreq governor when you either want to set the |
Frederik Schwarzer | 0211a9c | 2008-12-29 22:14:56 +0100 | [diff] [blame] | 143 | CPU frequency manually or when a userspace program shall |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | be able to set the CPU dynamically, like on LART |
Erik Mouw | 4c41251 | 2006-04-03 14:21:00 +0200 | [diff] [blame] | 145 | <http://www.lartmaker.nl/>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 147 | To compile this driver as a module, choose M here: the |
| 148 | module will be called cpufreq_userspace. |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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" |
Larry Finger | 1e15f29 | 2012-12-29 01:55:20 +0000 | [diff] [blame] | 156 | select CPU_FREQ_GOV_COMMON |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 165 | To compile this driver as a module, choose M here: the |
| 166 | module will be called cpufreq_ondemand. |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | For details, take a look at linux/Documentation/cpu-freq. |
| 169 | |
| 170 | If in doubt, say N. |
| 171 | |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 172 | config CPU_FREQ_GOV_CONSERVATIVE |
| 173 | tristate "'conservative' cpufreq governor" |
| 174 | depends on CPU_FREQ |
Larry Finger | 1e15f29 | 2012-12-29 01:55:20 +0000 | [diff] [blame] | 175 | select CPU_FREQ_GOV_COMMON |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 176 | help |
| 177 | 'conservative' - this driver is rather similar to the 'ondemand' |
| 178 | governor both in its source code and its purpose, the difference is |
| 179 | its optimisation for better suitability in a battery powered |
| 180 | environment. The frequency is gracefully increased and decreased |
| 181 | rather than jumping to 100% when speed is required. |
| 182 | |
| 183 | If you have a desktop machine then you should really be considering |
| 184 | the 'ondemand' governor instead, however if you are using a laptop, |
| 185 | PDA or even an AMD64 based computer (due to the unacceptable |
| 186 | step-by-step latency issues between the minimum and maximum frequency |
| 187 | transitions in the CPU) you will probably want to use this governor. |
| 188 | |
Mike Frysinger | 9101be5 | 2007-04-18 16:18:13 -0400 | [diff] [blame] | 189 | To compile this driver as a module, choose M here: the |
| 190 | module will be called cpufreq_conservative. |
| 191 | |
Dave Jones | b917083 | 2005-05-31 19:03:47 -0700 | [diff] [blame] | 192 | For details, take a look at linux/Documentation/cpu-freq. |
| 193 | |
| 194 | If in doubt, say N. |
| 195 | |
Rafael J. Wysocki | 9bdcb44 | 2016-04-02 01:09:12 +0200 | [diff] [blame] | 196 | config CPU_FREQ_GOV_SCHEDUTIL |
Rafael J. Wysocki | 58919e8 | 2016-08-16 22:14:55 +0200 | [diff] [blame] | 197 | bool "'schedutil' cpufreq policy governor" |
Rafael J. Wysocki | bf7cdff | 2016-05-06 15:00:38 +0200 | [diff] [blame] | 198 | depends on CPU_FREQ && SMP |
Rafael J. Wysocki | 9bdcb44 | 2016-04-02 01:09:12 +0200 | [diff] [blame] | 199 | select CPU_FREQ_GOV_ATTR_SET |
| 200 | select IRQ_WORK |
| 201 | help |
| 202 | This governor makes decisions based on the utilization data provided |
| 203 | by the scheduler. It sets the CPU frequency to be proportional to |
| 204 | the utilization/capacity ratio coming from the scheduler. If the |
| 205 | utilization is frequency-invariant, the new frequency is also |
| 206 | proportional to the maximum available frequency. If that is not the |
| 207 | case, it is proportional to the current frequency of the CPU. The |
| 208 | frequency tipping point is at utilization/capacity equal to 80% in |
| 209 | both cases. |
| 210 | |
Rafael J. Wysocki | 9bdcb44 | 2016-04-02 01:09:12 +0200 | [diff] [blame] | 211 | If in doubt, say N. |
| 212 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 213 | comment "CPU frequency scaling drivers" |
| 214 | |
Viresh Kumar | bbcf071 | 2014-09-09 19:58:03 +0530 | [diff] [blame] | 215 | config CPUFREQ_DT |
| 216 | tristate "Generic DT based cpufreq driver" |
Viresh Kumar | 5fbfbcd | 2014-06-10 10:39:46 +0530 | [diff] [blame] | 217 | depends on HAVE_CLK && OF |
Viresh Kumar | bbcf071 | 2014-09-09 19:58:03 +0530 | [diff] [blame] | 218 | # if CPU_THERMAL is on and THERMAL=m, CPUFREQ_DT cannot be =y: |
Arnd Bergmann | 217886d | 2014-06-13 10:40:32 +0200 | [diff] [blame] | 219 | depends on !CPU_THERMAL || THERMAL |
Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 220 | select CPUFREQ_DT_PLATDEV |
Mark Brown | 109df08 | 2013-12-11 22:12:27 +0000 | [diff] [blame] | 221 | select PM_OPP |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 222 | help |
Viresh Kumar | bbcf071 | 2014-09-09 19:58:03 +0530 | [diff] [blame] | 223 | This adds a generic DT based cpufreq driver for frequency management. |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 224 | It supports both uniprocessor (UP) and symmetric multiprocessor (SMP) |
Viresh Kumar | 33cc4fc | 2016-09-09 16:48:07 +0530 | [diff] [blame] | 225 | systems. |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 226 | |
| 227 | If in doubt, say N. |
| 228 | |
Viresh Kumar | f56aad1 | 2016-03-30 13:45:26 +0530 | [diff] [blame] | 229 | config CPUFREQ_DT_PLATDEV |
| 230 | bool |
| 231 | help |
| 232 | This adds a generic DT based cpufreq platdev driver for frequency |
| 233 | management. This creates a 'cpufreq-dt' platform device, on the |
| 234 | supported platforms. |
| 235 | |
| 236 | If in doubt, say N. |
| 237 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 238 | if X86 |
Dave Jones | bb0a56e | 2011-05-19 18:51:07 -0400 | [diff] [blame] | 239 | source "drivers/cpufreq/Kconfig.x86" |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 240 | endif |
Dave Jones | bb0a56e | 2011-05-19 18:51:07 -0400 | [diff] [blame] | 241 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 242 | if ARM || ARM64 |
Kukjin Kim | f7d7707 | 2011-06-01 14:18:22 -0700 | [diff] [blame] | 243 | source "drivers/cpufreq/Kconfig.arm" |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 244 | endif |
Kukjin Kim | f7d7707 | 2011-06-01 14:18:22 -0700 | [diff] [blame] | 245 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 246 | if PPC32 || PPC64 |
| 247 | source "drivers/cpufreq/Kconfig.powerpc" |
| 248 | endif |
Viresh Kumar | 81c720c | 2013-04-04 12:54:17 +0000 | [diff] [blame] | 249 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 250 | if AVR32 |
Viresh Kumar | 81c720c | 2013-04-04 12:54:17 +0000 | [diff] [blame] | 251 | config AVR32_AT32AP_CPUFREQ |
| 252 | bool "CPU frequency driver for AT32AP" |
| 253 | depends on PLATFORM_AT32AP |
| 254 | default n |
| 255 | help |
| 256 | This enables the CPU frequency driver for AT32AP processors. |
| 257 | If in doubt, say N. |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 258 | endif |
Viresh Kumar | 81c720c | 2013-04-04 12:54:17 +0000 | [diff] [blame] | 259 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 260 | if IA64 |
Viresh Kumar | ab423e4 | 2013-04-04 12:54:20 +0000 | [diff] [blame] | 261 | config IA64_ACPI_CPUFREQ |
| 262 | tristate "ACPI Processor P-States driver" |
Viresh Kumar | ab423e4 | 2013-04-04 12:54:20 +0000 | [diff] [blame] | 263 | depends on ACPI_PROCESSOR |
| 264 | help |
| 265 | This driver adds a CPUFreq driver which utilizes the ACPI |
| 266 | Processor Performance States. |
| 267 | |
| 268 | For details, take a look at <file:Documentation/cpu-freq/>. |
| 269 | |
| 270 | If in doubt, say N. |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 271 | endif |
Viresh Kumar | ab423e4 | 2013-04-04 12:54:20 +0000 | [diff] [blame] | 272 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 273 | if MIPS |
Viresh Kumar | 7a99893 | 2013-04-04 12:54:21 +0000 | [diff] [blame] | 274 | config LOONGSON2_CPUFREQ |
| 275 | tristate "Loongson2 CPUFreq Driver" |
Viresh Kumar | 7a99893 | 2013-04-04 12:54:21 +0000 | [diff] [blame] | 276 | help |
| 277 | This option adds a CPUFreq driver for loongson processors which |
| 278 | support software configurable cpu frequency. |
| 279 | |
| 280 | Loongson2F and it's successors support this feature. |
| 281 | |
| 282 | For details, take a look at <file:Documentation/cpu-freq/>. |
| 283 | |
| 284 | If in doubt, say N. |
| 285 | |
Kelvin Cheung | a0a22cf | 2014-10-17 18:23:31 +0800 | [diff] [blame] | 286 | config LOONGSON1_CPUFREQ |
| 287 | tristate "Loongson1 CPUFreq Driver" |
| 288 | help |
| 289 | This option adds a CPUFreq driver for loongson1 processors which |
| 290 | support software configurable cpu frequency. |
| 291 | |
| 292 | For details, take a look at <file:Documentation/cpu-freq/>. |
| 293 | |
| 294 | If in doubt, say N. |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 295 | endif |
Kelvin Cheung | a0a22cf | 2014-10-17 18:23:31 +0800 | [diff] [blame] | 296 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 297 | if SPARC64 |
Viresh Kumar | 764295a | 2013-04-04 12:54:24 +0000 | [diff] [blame] | 298 | config SPARC_US3_CPUFREQ |
| 299 | tristate "UltraSPARC-III CPU Frequency driver" |
Viresh Kumar | 764295a | 2013-04-04 12:54:24 +0000 | [diff] [blame] | 300 | help |
| 301 | This adds the CPUFreq driver for UltraSPARC-III processors. |
| 302 | |
| 303 | For details, take a look at <file:Documentation/cpu-freq>. |
| 304 | |
| 305 | If in doubt, say N. |
| 306 | |
| 307 | config SPARC_US2E_CPUFREQ |
| 308 | tristate "UltraSPARC-IIe CPU Frequency driver" |
Viresh Kumar | 764295a | 2013-04-04 12:54:24 +0000 | [diff] [blame] | 309 | help |
| 310 | This adds the CPUFreq driver for UltraSPARC-IIe processors. |
| 311 | |
| 312 | For details, take a look at <file:Documentation/cpu-freq>. |
| 313 | |
| 314 | If in doubt, say N. |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 315 | endif |
Viresh Kumar | 764295a | 2013-04-04 12:54:24 +0000 | [diff] [blame] | 316 | |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 317 | if SUPERH |
Viresh Kumar | 7258267 | 2013-04-04 12:54:22 +0000 | [diff] [blame] | 318 | config SH_CPU_FREQ |
| 319 | tristate "SuperH CPU Frequency driver" |
Viresh Kumar | 7258267 | 2013-04-04 12:54:22 +0000 | [diff] [blame] | 320 | help |
| 321 | This adds the cpufreq driver for SuperH. Any CPU that supports |
| 322 | clock rate rounding through the clock framework can use this |
| 323 | driver. While it will make the kernel slightly larger, this is |
| 324 | harmless for CPUs that don't support rate rounding. The driver |
| 325 | will also generate a notice in the boot log before disabling |
| 326 | itself if the CPU in question is not capable of rate rounding. |
| 327 | |
| 328 | For details, take a look at <file:Documentation/cpu-freq>. |
| 329 | |
| 330 | If unsure, say N. |
Viresh Kumar | f41f481 | 2014-11-15 08:50:44 +0530 | [diff] [blame] | 331 | endif |
Viresh Kumar | 7258267 | 2013-04-04 12:54:22 +0000 | [diff] [blame] | 332 | |
Tang Yuantian | 2f24935 | 2015-03-13 12:39:02 +0800 | [diff] [blame] | 333 | config QORIQ_CPUFREQ |
| 334 | tristate "CPU frequency scaling driver for Freescale QorIQ SoCs" |
| 335 | depends on OF && COMMON_CLK && (PPC_E500MC || ARM) |
Arnd Bergmann | ddd30ef | 2016-02-29 17:04:20 +0100 | [diff] [blame] | 336 | depends on !CPU_THERMAL || THERMAL |
Tang Yuantian | 2f24935 | 2015-03-13 12:39:02 +0800 | [diff] [blame] | 337 | select CLK_QORIQ |
| 338 | help |
| 339 | This adds the CPUFreq driver support for Freescale QorIQ SoCs |
| 340 | which are capable of changing the CPU's frequency dynamically. |
| 341 | |
Dave Jones | bb0a56e | 2011-05-19 18:51:07 -0400 | [diff] [blame] | 342 | endif |
| 343 | endmenu |