Kconfig 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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_ACPI_CPUFREQ
  38. tristate "ACPI Processor P-States driver"
  39. select CPU_FREQ_TABLE
  40. depends on ACPI_PROCESSOR
  41. help
  42. This driver adds a CPUFreq driver which utilizes the ACPI
  43. Processor Performance States.
  44. This driver also supports Intel Enhanced Speedstep.
  45. To compile this driver as a module, choose M here: the
  46. module will be called acpi-cpufreq.
  47. For details, take a look at <file:Documentation/cpu-freq/>.
  48. If in doubt, say N.
  49. comment "shared options"
  50. config X86_ACPI_CPUFREQ_PROC_INTF
  51. bool "/proc/acpi/processor/../performance interface (deprecated)"
  52. depends on PROC_FS
  53. depends on X86_ACPI_CPUFREQ || X86_POWERNOW_K8_ACPI
  54. help
  55. This enables the deprecated /proc/acpi/processor/../performance
  56. interface. While it is helpful for debugging, the generic,
  57. cross-architecture cpufreq interfaces should be used.
  58. If in doubt, say N.
  59. config X86_P4_CLOCKMOD
  60. tristate "Intel Pentium 4 clock modulation"
  61. depends on EMBEDDED
  62. select CPU_FREQ_TABLE
  63. help
  64. This adds the clock modulation driver for Intel Pentium 4 / XEON
  65. processors. When enabled it will lower CPU temperature by skipping
  66. clocks.
  67. This driver should be only used in exceptional
  68. circumstances when very low power is needed because it causes severe
  69. slowdowns and noticeable latencies. Normally Speedstep should be used
  70. instead.
  71. To compile this driver as a module, choose M here: the
  72. module will be called p4-clockmod.
  73. For details, take a look at <file:Documentation/cpu-freq/>.
  74. Unless you are absolutely sure say N.
  75. config X86_SPEEDSTEP_LIB
  76. tristate
  77. default X86_P4_CLOCKMOD
  78. endif
  79. endmenu