Linux-2.6.12-rc2
[safe/jmp/linux-2.6] / arch / x86_64 / kernel / cpufreq / Kconfig
1 #
2 # CPU Frequency scaling
3 #
4
5 menu "CPU Frequency scaling"
6
7 source "drivers/cpufreq/Kconfig"
8
9 if CPU_FREQ
10
11 comment "CPUFreq processor drivers"
12
13 config X86_POWERNOW_K8
14         tristate "AMD Opteron/Athlon64 PowerNow!"
15         select CPU_FREQ_TABLE
16         help
17           This adds the CPUFreq driver for mobile AMD Opteron/Athlon64 processors.
18
19           For details, take a look at <file:Documentation/cpu-freq/>. 
20
21           If in doubt, say N.
22
23 config X86_POWERNOW_K8_ACPI
24         bool
25         depends on X86_POWERNOW_K8 && ACPI_PROCESSOR
26         depends on !(X86_POWERNOW_K8 = y && ACPI_PROCESSOR = m)
27         default y
28
29 config X86_SPEEDSTEP_CENTRINO
30         tristate "Intel Enhanced SpeedStep"
31         select CPU_FREQ_TABLE
32         depends on ACPI_PROCESSOR
33         help
34           This adds the CPUFreq driver for Enhanced SpeedStep enabled
35           mobile CPUs.  This means Intel Pentium M (Centrino) CPUs
36           or 64bit enabled Intel Xeons.
37
38           For details, take a look at <file:Documentation/cpu-freq/>.
39
40           If in doubt, say N.
41
42 config X86_SPEEDSTEP_CENTRINO_ACPI
43         bool
44         depends on X86_SPEEDSTEP_CENTRINO
45         default y
46
47 config X86_ACPI_CPUFREQ
48         tristate "ACPI Processor P-States driver"
49         depends on ACPI_PROCESSOR
50         help
51           This driver adds a CPUFreq driver which utilizes the ACPI
52           Processor Performance States.
53
54           For details, take a look at <file:Documentation/cpu-freq/>.
55
56           If in doubt, say N.
57
58 comment "shared options"
59
60 config X86_ACPI_CPUFREQ_PROC_INTF
61         bool "/proc/acpi/processor/../performance interface (deprecated)"
62         depends on PROC_FS
63         depends on X86_ACPI_CPUFREQ || X86_SPEEDSTEP_CENTRINO_ACPI || X86_POWERNOW_K8_ACPI
64         help
65           This enables the deprecated /proc/acpi/processor/../performance
66           interface. While it is helpful for debugging, the generic,
67           cross-architecture cpufreq interfaces should be used.
68
69           If in doubt, say N.
70
71 config X86_P4_CLOCKMOD
72         tristate "Intel Pentium 4 clock modulation"
73         depends on EMBEDDED
74         help
75           This adds the clock modulation driver for Intel Pentium 4 / XEON
76           processors.  When enabled it will lower CPU temperature by skipping
77           clocks.
78
79           This driver should be only used in exceptional
80           circumstances when very low power is needed because it causes severe
81           slowdowns and noticeable latencies.  Normally Speedstep should be used
82           instead.
83
84           For details, take a look at <file:Documentation/cpu-freq/>.
85
86           Unless you are absolutely sure say N.
87
88
89 config X86_SPEEDSTEP_LIB
90         tristate
91         default X86_P4_CLOCKMOD
92
93 endif
94
95 endmenu
96