Kconfig 6.6 KB

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