Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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_POWERNOW_K8
  9. tristate "AMD Opteron/Athlon64 PowerNow!"
  10. select CPU_FREQ_TABLE
  11. help
  12. This adds the CPUFreq driver for mobile AMD Opteron/Athlon64 processors.
  13. To compile this driver as a module, choose M here: the
  14. module will be called powernow-k8.
  15. For details, take a look at <file:Documentation/cpu-freq/>.
  16. If in doubt, say N.
  17. config X86_POWERNOW_K8_ACPI
  18. bool
  19. depends on X86_POWERNOW_K8 && ACPI_PROCESSOR
  20. depends on !(X86_POWERNOW_K8 = y && ACPI_PROCESSOR = m)
  21. default y
  22. config X86_SPEEDSTEP_CENTRINO
  23. tristate "Intel Enhanced SpeedStep (deprecated)"
  24. select CPU_FREQ_TABLE
  25. depends on ACPI_PROCESSOR
  26. help
  27. This is deprecated and this functionality is now merged into
  28. acpi_cpufreq (X86_ACPI_CPUFREQ). Use that driver instead of
  29. speedstep_centrino.
  30. This adds the CPUFreq driver for Enhanced SpeedStep enabled
  31. mobile CPUs. This means Intel Pentium M (Centrino) CPUs
  32. or 64bit enabled Intel Xeons.
  33. To compile this driver as a module, choose M here: the
  34. module will be called speedstep-centrino.
  35. For details, take a look at <file:Documentation/cpu-freq/>.
  36. If in doubt, say N.
  37. config X86_SPEEDSTEP_CENTRINO_ACPI
  38. bool
  39. depends on X86_SPEEDSTEP_CENTRINO
  40. config X86_ACPI_CPUFREQ
  41. tristate "ACPI Processor P-States driver"
  42. select CPU_FREQ_TABLE
  43. depends on ACPI_PROCESSOR
  44. help
  45. This driver adds a CPUFreq driver which utilizes the ACPI
  46. Processor Performance States.
  47. This driver also supports Intel Enhanced Speedstep.
  48. To compile this driver as a module, choose M here: the
  49. module will be called acpi-cpufreq.
  50. For details, take a look at <file:Documentation/cpu-freq/>.
  51. If in doubt, say N.
  52. comment "shared options"
  53. config X86_ACPI_CPUFREQ_PROC_INTF
  54. bool "/proc/acpi/processor/../performance interface (deprecated)"
  55. depends on PROC_FS
  56. depends on X86_ACPI_CPUFREQ || X86_SPEEDSTEP_CENTRINO_ACPI || X86_POWERNOW_K8_ACPI
  57. help
  58. This enables the deprecated /proc/acpi/processor/../performance
  59. interface. While it is helpful for debugging, the generic,
  60. cross-architecture cpufreq interfaces should be used.
  61. If in doubt, say N.
  62. config X86_P4_CLOCKMOD
  63. tristate "Intel Pentium 4 clock modulation"
  64. depends on EMBEDDED
  65. select CPU_FREQ_TABLE
  66. help
  67. This adds the clock modulation driver for Intel Pentium 4 / XEON
  68. processors. When enabled it will lower CPU temperature by skipping
  69. clocks.
  70. This driver should be only used in exceptional
  71. circumstances when very low power is needed because it causes severe
  72. slowdowns and noticeable latencies. Normally Speedstep should be used
  73. instead.
  74. To compile this driver as a module, choose M here: the
  75. module will be called p4-clockmod.
  76. For details, take a look at <file:Documentation/cpu-freq/>.
  77. Unless you are absolutely sure say N.
  78. config X86_SPEEDSTEP_LIB
  79. tristate
  80. default X86_P4_CLOCKMOD
  81. endif
  82. endmenu