Kconfig.x86 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. #
  2. # x86 CPU Frequency scaling drivers
  3. #
  4. config X86_INTEL_PSTATE
  5. bool "Intel P state control"
  6. depends on X86
  7. help
  8. This driver provides a P state for Intel core processors.
  9. The driver implements an internal governor and will become
  10. the scaling driver and governor for Sandy bridge processors.
  11. When this driver is enabled it will become the perferred
  12. scaling driver for Sandy bridge processors.
  13. If in doubt, say N.
  14. config X86_PCC_CPUFREQ
  15. tristate "Processor Clocking Control interface driver"
  16. depends on ACPI && ACPI_PROCESSOR
  17. help
  18. This driver adds support for the PCC interface.
  19. For details, take a look at:
  20. <file:Documentation/cpu-freq/pcc-cpufreq.txt>.
  21. To compile this driver as a module, choose M here: the
  22. module will be called pcc-cpufreq.
  23. If in doubt, say N.
  24. config X86_ACPI_CPUFREQ
  25. tristate "ACPI Processor P-States driver"
  26. select CPU_FREQ_TABLE
  27. depends on ACPI_PROCESSOR
  28. help
  29. This driver adds a CPUFreq driver which utilizes the ACPI
  30. Processor Performance States.
  31. This driver also supports Intel Enhanced Speedstep and newer
  32. AMD CPUs.
  33. To compile this driver as a module, choose M here: the
  34. module will be called acpi-cpufreq.
  35. For details, take a look at <file:Documentation/cpu-freq/>.
  36. If in doubt, say N.
  37. config X86_ACPI_CPUFREQ_CPB
  38. default y
  39. bool "Legacy cpb sysfs knob support for AMD CPUs"
  40. depends on X86_ACPI_CPUFREQ && CPU_SUP_AMD
  41. help
  42. The powernow-k8 driver used to provide a sysfs knob called "cpb"
  43. to disable the Core Performance Boosting feature of AMD CPUs. This
  44. file has now been superseeded by the more generic "boost" entry.
  45. By enabling this option the acpi_cpufreq driver provides the old
  46. entry in addition to the new boost ones, for compatibility reasons.
  47. config ELAN_CPUFREQ
  48. tristate "AMD Elan SC400 and SC410"
  49. select CPU_FREQ_TABLE
  50. depends on MELAN
  51. ---help---
  52. This adds the CPUFreq driver for AMD Elan SC400 and SC410
  53. processors.
  54. You need to specify the processor maximum speed as boot
  55. parameter: elanfreq=maxspeed (in kHz) or as module
  56. parameter "max_freq".
  57. For details, take a look at <file:Documentation/cpu-freq/>.
  58. If in doubt, say N.
  59. config SC520_CPUFREQ
  60. tristate "AMD Elan SC520"
  61. select CPU_FREQ_TABLE
  62. depends on MELAN
  63. ---help---
  64. This adds the CPUFreq driver for AMD Elan SC520 processor.
  65. For details, take a look at <file:Documentation/cpu-freq/>.
  66. If in doubt, say N.
  67. config X86_POWERNOW_K6
  68. tristate "AMD Mobile K6-2/K6-3 PowerNow!"
  69. select CPU_FREQ_TABLE
  70. depends on X86_32
  71. help
  72. This adds the CPUFreq driver for mobile AMD K6-2+ and mobile
  73. AMD K6-3+ processors.
  74. For details, take a look at <file:Documentation/cpu-freq/>.
  75. If in doubt, say N.
  76. config X86_POWERNOW_K7
  77. tristate "AMD Mobile Athlon/Duron PowerNow!"
  78. select CPU_FREQ_TABLE
  79. depends on X86_32
  80. help
  81. This adds the CPUFreq driver for mobile AMD K7 mobile processors.
  82. For details, take a look at <file:Documentation/cpu-freq/>.
  83. If in doubt, say N.
  84. config X86_POWERNOW_K7_ACPI
  85. bool
  86. depends on X86_POWERNOW_K7 && ACPI_PROCESSOR
  87. depends on !(X86_POWERNOW_K7 = y && ACPI_PROCESSOR = m)
  88. depends on X86_32
  89. default y
  90. config X86_POWERNOW_K8
  91. tristate "AMD Opteron/Athlon64 PowerNow!"
  92. select CPU_FREQ_TABLE
  93. depends on ACPI && ACPI_PROCESSOR && X86_ACPI_CPUFREQ
  94. help
  95. This adds the CPUFreq driver for K8/early Opteron/Athlon64 processors.
  96. Support for K10 and newer processors is now in acpi-cpufreq.
  97. To compile this driver as a module, choose M here: the
  98. module will be called powernow-k8.
  99. For details, take a look at <file:Documentation/cpu-freq/>.
  100. config X86_GX_SUSPMOD
  101. tristate "Cyrix MediaGX/NatSemi Geode Suspend Modulation"
  102. depends on X86_32 && PCI
  103. help
  104. This add the CPUFreq driver for NatSemi Geode processors which
  105. support suspend modulation.
  106. For details, take a look at <file:Documentation/cpu-freq/>.
  107. If in doubt, say N.
  108. config X86_SPEEDSTEP_CENTRINO
  109. tristate "Intel Enhanced SpeedStep (deprecated)"
  110. select CPU_FREQ_TABLE
  111. select X86_SPEEDSTEP_CENTRINO_TABLE if X86_32
  112. depends on X86_32 || (X86_64 && ACPI_PROCESSOR)
  113. help
  114. This is deprecated and this functionality is now merged into
  115. acpi_cpufreq (X86_ACPI_CPUFREQ). Use that driver instead of
  116. speedstep_centrino.
  117. This adds the CPUFreq driver for Enhanced SpeedStep enabled
  118. mobile CPUs. This means Intel Pentium M (Centrino) CPUs
  119. or 64bit enabled Intel Xeons.
  120. To compile this driver as a module, choose M here: the
  121. module will be called speedstep-centrino.
  122. For details, take a look at <file:Documentation/cpu-freq/>.
  123. If in doubt, say N.
  124. config X86_SPEEDSTEP_CENTRINO_TABLE
  125. bool "Built-in tables for Banias CPUs"
  126. depends on X86_32 && X86_SPEEDSTEP_CENTRINO
  127. default y
  128. help
  129. Use built-in tables for Banias CPUs if ACPI encoding
  130. is not available.
  131. If in doubt, say N.
  132. config X86_SPEEDSTEP_ICH
  133. tristate "Intel Speedstep on ICH-M chipsets (ioport interface)"
  134. select CPU_FREQ_TABLE
  135. depends on X86_32
  136. help
  137. This adds the CPUFreq driver for certain mobile Intel Pentium III
  138. (Coppermine), all mobile Intel Pentium III-M (Tualatin) and all
  139. mobile Intel Pentium 4 P4-M on systems which have an Intel ICH2,
  140. ICH3 or ICH4 southbridge.
  141. For details, take a look at <file:Documentation/cpu-freq/>.
  142. If in doubt, say N.
  143. config X86_SPEEDSTEP_SMI
  144. tristate "Intel SpeedStep on 440BX/ZX/MX chipsets (SMI interface)"
  145. select CPU_FREQ_TABLE
  146. depends on X86_32
  147. help
  148. This adds the CPUFreq driver for certain mobile Intel Pentium III
  149. (Coppermine), all mobile Intel Pentium III-M (Tualatin)
  150. on systems which have an Intel 440BX/ZX/MX southbridge.
  151. For details, take a look at <file:Documentation/cpu-freq/>.
  152. If in doubt, say N.
  153. config X86_P4_CLOCKMOD
  154. tristate "Intel Pentium 4 clock modulation"
  155. select CPU_FREQ_TABLE
  156. help
  157. This adds the CPUFreq driver for Intel Pentium 4 / XEON
  158. processors. When enabled it will lower CPU temperature by skipping
  159. clocks.
  160. This driver should be only used in exceptional
  161. circumstances when very low power is needed because it causes severe
  162. slowdowns and noticeable latencies. Normally Speedstep should be used
  163. instead.
  164. To compile this driver as a module, choose M here: the
  165. module will be called p4-clockmod.
  166. For details, take a look at <file:Documentation/cpu-freq/>.
  167. Unless you are absolutely sure say N.
  168. config X86_CPUFREQ_NFORCE2
  169. tristate "nVidia nForce2 FSB changing"
  170. depends on X86_32
  171. help
  172. This adds the CPUFreq driver for FSB changing on nVidia nForce2
  173. platforms.
  174. For details, take a look at <file:Documentation/cpu-freq/>.
  175. If in doubt, say N.
  176. config X86_LONGRUN
  177. tristate "Transmeta LongRun"
  178. depends on X86_32
  179. help
  180. This adds the CPUFreq driver for Transmeta Crusoe and Efficeon processors
  181. which support LongRun.
  182. For details, take a look at <file:Documentation/cpu-freq/>.
  183. If in doubt, say N.
  184. config X86_LONGHAUL
  185. tristate "VIA Cyrix III Longhaul"
  186. select CPU_FREQ_TABLE
  187. depends on X86_32 && ACPI_PROCESSOR
  188. help
  189. This adds the CPUFreq driver for VIA Samuel/CyrixIII,
  190. VIA Cyrix Samuel/C3, VIA Cyrix Ezra and VIA Cyrix Ezra-T
  191. processors.
  192. For details, take a look at <file:Documentation/cpu-freq/>.
  193. If in doubt, say N.
  194. config X86_E_POWERSAVER
  195. tristate "VIA C7 Enhanced PowerSaver (DANGEROUS)"
  196. select CPU_FREQ_TABLE
  197. depends on X86_32
  198. help
  199. This adds the CPUFreq driver for VIA C7 processors. However, this driver
  200. does not have any safeguards to prevent operating the CPU out of spec
  201. and is thus considered dangerous. Please use the regular ACPI cpufreq
  202. driver, enabled by CONFIG_X86_ACPI_CPUFREQ.
  203. If in doubt, say N.
  204. comment "shared options"
  205. config X86_SPEEDSTEP_LIB
  206. tristate
  207. default (X86_SPEEDSTEP_ICH || X86_SPEEDSTEP_SMI || X86_P4_CLOCKMOD)
  208. config X86_SPEEDSTEP_RELAXED_CAP_CHECK
  209. bool "Relaxed speedstep capability checks"
  210. depends on X86_32 && (X86_SPEEDSTEP_SMI || X86_SPEEDSTEP_ICH)
  211. help
  212. Don't perform all checks for a speedstep capable system which would
  213. normally be done. Some ancient or strange systems, though speedstep
  214. capable, don't always indicate that they are speedstep capable. This
  215. option lets the probing code bypass some of those checks if the
  216. parameter "relaxed_check=1" is passed to the module.