Kconfig.x86 7.2 KB

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