Kconfig 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. #
  2. # CPU Frequency scaling
  3. #
  4. menu "CPU Frequency scaling"
  5. source "drivers/cpufreq/Kconfig"
  6. if CPU_FREQ
  7. comment "CPUFreq processor drivers"
  8. config X86_ACPI_CPUFREQ
  9. tristate "ACPI Processor P-States driver"
  10. select CPU_FREQ_TABLE
  11. depends on ACPI_PROCESSOR
  12. help
  13. This driver adds a CPUFreq driver which utilizes the ACPI
  14. Processor Performance States.
  15. This driver also supports Intel Enhanced Speedstep.
  16. For details, take a look at <file:Documentation/cpu-freq/>.
  17. If in doubt, say N.
  18. config ELAN_CPUFREQ
  19. tristate "AMD Elan SC400 and SC410"
  20. select CPU_FREQ_TABLE
  21. depends on X86_ELAN
  22. ---help---
  23. This adds the CPUFreq driver for AMD Elan SC400 and SC410
  24. processors.
  25. You need to specify the processor maximum speed as boot
  26. parameter: elanfreq=maxspeed (in kHz) or as module
  27. parameter "max_freq".
  28. For details, take a look at <file:Documentation/cpu-freq/>.
  29. If in doubt, say N.
  30. config SC520_CPUFREQ
  31. tristate "AMD Elan SC520"
  32. select CPU_FREQ_TABLE
  33. depends on X86_ELAN
  34. ---help---
  35. This adds the CPUFreq driver for AMD Elan SC520 processor.
  36. For details, take a look at <file:Documentation/cpu-freq/>.
  37. If in doubt, say N.
  38. config X86_POWERNOW_K6
  39. tristate "AMD Mobile K6-2/K6-3 PowerNow!"
  40. select CPU_FREQ_TABLE
  41. help
  42. This adds the CPUFreq driver for mobile AMD K6-2+ and mobile
  43. AMD K6-3+ processors.
  44. For details, take a look at <file:Documentation/cpu-freq/>.
  45. If in doubt, say N.
  46. config X86_POWERNOW_K7
  47. tristate "AMD Mobile Athlon/Duron PowerNow!"
  48. select CPU_FREQ_TABLE
  49. help
  50. This adds the CPUFreq driver for mobile AMD K7 mobile processors.
  51. For details, take a look at <file:Documentation/cpu-freq/>.
  52. If in doubt, say N.
  53. config X86_POWERNOW_K7_ACPI
  54. bool
  55. depends on X86_POWERNOW_K7 && ACPI_PROCESSOR
  56. depends on !(X86_POWERNOW_K7 = y && ACPI_PROCESSOR = m)
  57. default y
  58. config X86_POWERNOW_K8
  59. tristate "AMD Opteron/Athlon64 PowerNow!"
  60. select CPU_FREQ_TABLE
  61. depends on EXPERIMENTAL
  62. help
  63. This adds the CPUFreq driver for mobile AMD Opteron/Athlon64 processors.
  64. For details, take a look at <file:Documentation/cpu-freq/>.
  65. If in doubt, say N.
  66. config X86_POWERNOW_K8_ACPI
  67. bool "ACPI Support"
  68. select ACPI_PROCESSOR
  69. depends on X86_POWERNOW_K8
  70. default y
  71. help
  72. This provides access to the K8s Processor Performance States via ACPI.
  73. This driver is probably required for CPUFreq to work with multi-socket and
  74. SMP systems. It is not required on at least some single-socket yet
  75. multi-core systems, even if SMP is enabled.
  76. It is safe to say Y here.
  77. config X86_GX_SUSPMOD
  78. tristate "Cyrix MediaGX/NatSemi Geode Suspend Modulation"
  79. depends on PCI
  80. help
  81. This add the CPUFreq driver for NatSemi Geode processors which
  82. support suspend modulation.
  83. For details, take a look at <file:Documentation/cpu-freq/>.
  84. If in doubt, say N.
  85. config X86_SPEEDSTEP_CENTRINO
  86. tristate "Intel Enhanced SpeedStep"
  87. select CPU_FREQ_TABLE
  88. select X86_SPEEDSTEP_CENTRINO_TABLE
  89. help
  90. This adds the CPUFreq driver for Enhanced SpeedStep enabled
  91. mobile CPUs. This means Intel Pentium M (Centrino) CPUs. However,
  92. you also need to say Y to "Use ACPI tables to decode..." below
  93. [which might imply enabling ACPI] if you want to use this driver
  94. on non-Banias CPUs.
  95. For details, take a look at <file:Documentation/cpu-freq/>.
  96. If in doubt, say N.
  97. config X86_SPEEDSTEP_CENTRINO_TABLE
  98. bool "Built-in tables for Banias CPUs"
  99. depends on X86_SPEEDSTEP_CENTRINO
  100. default y
  101. help
  102. Use built-in tables for Banias CPUs if ACPI encoding
  103. is not available.
  104. If in doubt, say N.
  105. config X86_SPEEDSTEP_ICH
  106. tristate "Intel Speedstep on ICH-M chipsets (ioport interface)"
  107. select CPU_FREQ_TABLE
  108. help
  109. This adds the CPUFreq driver for certain mobile Intel Pentium III
  110. (Coppermine), all mobile Intel Pentium III-M (Tualatin) and all
  111. mobile Intel Pentium 4 P4-M on systems which have an Intel ICH2,
  112. ICH3 or ICH4 southbridge.
  113. For details, take a look at <file:Documentation/cpu-freq/>.
  114. If in doubt, say N.
  115. config X86_SPEEDSTEP_SMI
  116. tristate "Intel SpeedStep on 440BX/ZX/MX chipsets (SMI interface)"
  117. select CPU_FREQ_TABLE
  118. depends on EXPERIMENTAL
  119. help
  120. This adds the CPUFreq driver for certain mobile Intel Pentium III
  121. (Coppermine), all mobile Intel Pentium III-M (Tualatin)
  122. on systems which have an Intel 440BX/ZX/MX southbridge.
  123. For details, take a look at <file:Documentation/cpu-freq/>.
  124. If in doubt, say N.
  125. config X86_P4_CLOCKMOD
  126. tristate "Intel Pentium 4 clock modulation"
  127. select CPU_FREQ_TABLE
  128. help
  129. This adds the CPUFreq driver for Intel Pentium 4 / XEON
  130. processors.
  131. For details, take a look at <file:Documentation/cpu-freq/>.
  132. If in doubt, say N.
  133. config X86_CPUFREQ_NFORCE2
  134. tristate "nVidia nForce2 FSB changing"
  135. depends on EXPERIMENTAL
  136. help
  137. This adds the CPUFreq driver for FSB changing on nVidia nForce2
  138. platforms.
  139. For details, take a look at <file:Documentation/cpu-freq/>.
  140. If in doubt, say N.
  141. config X86_LONGRUN
  142. tristate "Transmeta LongRun"
  143. help
  144. This adds the CPUFreq driver for Transmeta Crusoe and Efficeon processors
  145. which support LongRun.
  146. For details, take a look at <file:Documentation/cpu-freq/>.
  147. If in doubt, say N.
  148. config X86_LONGHAUL
  149. tristate "VIA Cyrix III Longhaul"
  150. select CPU_FREQ_TABLE
  151. depends on ACPI_PROCESSOR
  152. help
  153. This adds the CPUFreq driver for VIA Samuel/CyrixIII,
  154. VIA Cyrix Samuel/C3, VIA Cyrix Ezra and VIA Cyrix Ezra-T
  155. processors.
  156. For details, take a look at <file:Documentation/cpu-freq/>.
  157. If in doubt, say N.
  158. config X86_E_POWERSAVER
  159. tristate "VIA C7 Enhanced PowerSaver (EXPERIMENTAL)"
  160. select CPU_FREQ_TABLE
  161. depends on EXPERIMENTAL
  162. help
  163. This adds the CPUFreq driver for VIA C7 processors.
  164. If in doubt, say N.
  165. comment "shared options"
  166. config X86_ACPI_CPUFREQ_PROC_INTF
  167. bool "/proc/acpi/processor/../performance interface (deprecated)"
  168. depends on PROC_FS
  169. depends on X86_ACPI_CPUFREQ || X86_POWERNOW_K7_ACPI || X86_POWERNOW_K8_ACPI
  170. help
  171. This enables the deprecated /proc/acpi/processor/../performance
  172. interface. While it is helpful for debugging, the generic,
  173. cross-architecture cpufreq interfaces should be used.
  174. If in doubt, say N.
  175. config X86_SPEEDSTEP_LIB
  176. tristate
  177. default X86_SPEEDSTEP_ICH || X86_SPEEDSTEP_SMI || X86_P4_CLOCKMOD
  178. config X86_SPEEDSTEP_RELAXED_CAP_CHECK
  179. bool "Relaxed speedstep capability checks"
  180. depends on (X86_SPEEDSTEP_SMI || X86_SPEEDSTEP_ICH)
  181. help
  182. Don't perform all checks for a speedstep capable system which would
  183. normally be done. Some ancient or strange systems, though speedstep
  184. capable, don't always indicate that they are speedstep capable. This
  185. option lets the probing code bypass some of those checks if the
  186. parameter "relaxed_check=1" is passed to the module.
  187. endif # CPU_FREQ
  188. endmenu