Kconfig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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"
  22. select CPU_FREQ_TABLE
  23. depends on ACPI_PROCESSOR
  24. help
  25. This adds the CPUFreq driver for Enhanced SpeedStep enabled
  26. mobile CPUs. This means Intel Pentium M (Centrino) CPUs
  27. or 64bit enabled Intel Xeons.
  28. For details, take a look at <file:Documentation/cpu-freq/>.
  29. If in doubt, say N.
  30. config X86_SPEEDSTEP_CENTRINO_ACPI
  31. bool
  32. depends on X86_SPEEDSTEP_CENTRINO
  33. default y
  34. config X86_ACPI_CPUFREQ
  35. tristate "ACPI Processor P-States driver"
  36. depends on ACPI_PROCESSOR
  37. help
  38. This driver adds a CPUFreq driver which utilizes the ACPI
  39. Processor Performance States.
  40. For details, take a look at <file:Documentation/cpu-freq/>.
  41. If in doubt, say N.
  42. comment "shared options"
  43. config X86_ACPI_CPUFREQ_PROC_INTF
  44. bool "/proc/acpi/processor/../performance interface (deprecated)"
  45. depends on PROC_FS
  46. depends on X86_ACPI_CPUFREQ || X86_SPEEDSTEP_CENTRINO_ACPI || X86_POWERNOW_K8_ACPI
  47. help
  48. This enables the deprecated /proc/acpi/processor/../performance
  49. interface. While it is helpful for debugging, the generic,
  50. cross-architecture cpufreq interfaces should be used.
  51. If in doubt, say N.
  52. config X86_P4_CLOCKMOD
  53. tristate "Intel Pentium 4 clock modulation"
  54. depends on EMBEDDED
  55. help
  56. This adds the clock modulation driver for Intel Pentium 4 / XEON
  57. processors. When enabled it will lower CPU temperature by skipping
  58. clocks.
  59. This driver should be only used in exceptional
  60. circumstances when very low power is needed because it causes severe
  61. slowdowns and noticeable latencies. Normally Speedstep should be used
  62. instead.
  63. For details, take a look at <file:Documentation/cpu-freq/>.
  64. Unless you are absolutely sure say N.
  65. config X86_SPEEDSTEP_LIB
  66. tristate
  67. default X86_P4_CLOCKMOD
  68. endif
  69. endmenu