Pull asus into release branch
[pandora-kernel.git] / 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 (deprecated)"
31         select CPU_FREQ_TABLE
32         depends on ACPI_PROCESSOR
33         help
34           This is deprecated and this functionality is now merged into
35           acpi_cpufreq (X86_ACPI_CPUFREQ). Use that driver instead of
36           speedstep_centrino.
37           This adds the CPUFreq driver for Enhanced SpeedStep enabled
38           mobile CPUs.  This means Intel Pentium M (Centrino) CPUs
39           or 64bit enabled Intel Xeons.
40
41           For details, take a look at <file:Documentation/cpu-freq/>.
42
43           If in doubt, say N.
44
45 config X86_SPEEDSTEP_CENTRINO_ACPI
46         bool
47         depends on X86_SPEEDSTEP_CENTRINO
48
49 config X86_ACPI_CPUFREQ
50         tristate "ACPI Processor P-States driver"
51         select CPU_FREQ_TABLE
52         depends on ACPI_PROCESSOR
53         help
54           This driver adds a CPUFreq driver which utilizes the ACPI
55           Processor Performance States.
56           This driver also supports Intel Enhanced Speedstep.
57
58           For details, take a look at <file:Documentation/cpu-freq/>.
59
60           If in doubt, say N.
61
62 comment "shared options"
63
64 config X86_ACPI_CPUFREQ_PROC_INTF
65         bool "/proc/acpi/processor/../performance interface (deprecated)"
66         depends on PROC_FS
67         depends on X86_ACPI_CPUFREQ || X86_SPEEDSTEP_CENTRINO_ACPI || X86_POWERNOW_K8_ACPI
68         help
69           This enables the deprecated /proc/acpi/processor/../performance
70           interface. While it is helpful for debugging, the generic,
71           cross-architecture cpufreq interfaces should be used.
72
73           If in doubt, say N.
74
75 config X86_P4_CLOCKMOD
76         tristate "Intel Pentium 4 clock modulation"
77         depends on EMBEDDED
78         select CPU_FREQ_TABLE
79         help
80           This adds the clock modulation driver for Intel Pentium 4 / XEON
81           processors.  When enabled it will lower CPU temperature by skipping
82           clocks.
83
84           This driver should be only used in exceptional
85           circumstances when very low power is needed because it causes severe
86           slowdowns and noticeable latencies.  Normally Speedstep should be used
87           instead.
88
89           For details, take a look at <file:Documentation/cpu-freq/>.
90
91           Unless you are absolutely sure say N.
92
93
94 config X86_SPEEDSTEP_LIB
95         tristate
96         default X86_P4_CLOCKMOD
97
98 endif
99
100 endmenu
101