Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. For details, take a look at <file:Documentation/cpu-freq/>.
  14. If in doubt, say N.
  15. config X86_POWERNOW_K8_ACPI
  16. bool
  17. depends on X86_POWERNOW_K8 && ACPI_PROCESSOR
  18. depends on !(X86_POWERNOW_K8 = y && ACPI_PROCESSOR = m)
  19. default y
  20. config X86_SPEEDSTEP_CENTRINO
  21. tristate "Intel Enhanced SpeedStep (deprecated)"
  22. select CPU_FREQ_TABLE
  23. depends on ACPI_PROCESSOR
  24. help
  25. This is deprecated and this functionality is now merged into
  26. acpi_cpufreq (X86_ACPI_CPUFREQ). Use that driver instead of
  27. speedstep_centrino.
  28. This adds the CPUFreq driver for Enhanced SpeedStep enabled
  29. mobile CPUs. This means Intel Pentium M (Centrino) CPUs
  30. or 64bit enabled Intel Xeons.
  31. For details, take a look at <file:Documentation/cpu-freq/>.
  32. If in doubt, say N.
  33. config X86_SPEEDSTEP_CENTRINO_ACPI
  34. bool
  35. depends on X86_SPEEDSTEP_CENTRINO
  36. default y
  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. For details, take a look at <file:Documentation/cpu-freq/>.
  46. If in doubt, say N.
  47. comment "shared options"
  48. config X86_ACPI_CPUFREQ_PROC_INTF
  49. bool "/proc/acpi/processor/../performance interface (deprecated)"
  50. depends on PROC_FS
  51. depends on X86_ACPI_CPUFREQ || X86_SPEEDSTEP_CENTRINO_ACPI || X86_POWERNOW_K8_ACPI
  52. help
  53. This enables the deprecated /proc/acpi/processor/../performance
  54. interface. While it is helpful for debugging, the generic,
  55. cross-architecture cpufreq interfaces should be used.
  56. If in doubt, say N.
  57. config X86_P4_CLOCKMOD
  58. tristate "Intel Pentium 4 clock modulation"
  59. depends on EMBEDDED
  60. help
  61. This adds the clock modulation driver for Intel Pentium 4 / XEON
  62. processors. When enabled it will lower CPU temperature by skipping
  63. clocks.
  64. This driver should be only used in exceptional
  65. circumstances when very low power is needed because it causes severe
  66. slowdowns and noticeable latencies. Normally Speedstep should be used
  67. instead.
  68. For details, take a look at <file:Documentation/cpu-freq/>.
  69. Unless you are absolutely sure say N.
  70. config X86_SPEEDSTEP_LIB
  71. tristate
  72. default X86_P4_CLOCKMOD
  73. endif
  74. endmenu