Merge branch 'drm-patches' of master.kernel.org:/pub/scm/linux/kernel/git/airlied...
[linux-drm-fsl-dcu.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           To compile this driver as a module, choose M here: the
20           module will be called powernow-k8.
21
22           For details, take a look at <file:Documentation/cpu-freq/>. 
23
24           If in doubt, say N.
25
26 config X86_POWERNOW_K8_ACPI
27         bool
28         depends on X86_POWERNOW_K8 && ACPI_PROCESSOR
29         depends on !(X86_POWERNOW_K8 = y && ACPI_PROCESSOR = m)
30         default y
31
32 config X86_SPEEDSTEP_CENTRINO
33         tristate "Intel Enhanced SpeedStep (deprecated)"
34         select CPU_FREQ_TABLE
35         depends on ACPI_PROCESSOR
36         help
37           This is deprecated and this functionality is now merged into
38           acpi_cpufreq (X86_ACPI_CPUFREQ). Use that driver instead of
39           speedstep_centrino.
40           This adds the CPUFreq driver for Enhanced SpeedStep enabled
41           mobile CPUs.  This means Intel Pentium M (Centrino) CPUs
42           or 64bit enabled Intel Xeons.
43
44           To compile this driver as a module, choose M here: the
45           module will be called speedstep-centrino.
46
47           For details, take a look at <file:Documentation/cpu-freq/>.
48
49           If in doubt, say N.
50
51 config X86_SPEEDSTEP_CENTRINO_ACPI
52         bool
53         depends on X86_SPEEDSTEP_CENTRINO
54
55 config X86_ACPI_CPUFREQ
56         tristate "ACPI Processor P-States driver"
57         select CPU_FREQ_TABLE
58         depends on ACPI_PROCESSOR
59         help
60           This driver adds a CPUFreq driver which utilizes the ACPI
61           Processor Performance States.
62           This driver also supports Intel Enhanced Speedstep.
63
64           To compile this driver as a module, choose M here: the
65           module will be called acpi-cpufreq.
66
67           For details, take a look at <file:Documentation/cpu-freq/>.
68
69           If in doubt, say N.
70
71 comment "shared options"
72
73 config X86_ACPI_CPUFREQ_PROC_INTF
74         bool "/proc/acpi/processor/../performance interface (deprecated)"
75         depends on PROC_FS
76         depends on X86_ACPI_CPUFREQ || X86_SPEEDSTEP_CENTRINO_ACPI || X86_POWERNOW_K8_ACPI
77         help
78           This enables the deprecated /proc/acpi/processor/../performance
79           interface. While it is helpful for debugging, the generic,
80           cross-architecture cpufreq interfaces should be used.
81
82           If in doubt, say N.
83
84 config X86_P4_CLOCKMOD
85         tristate "Intel Pentium 4 clock modulation"
86         depends on EMBEDDED
87         select CPU_FREQ_TABLE
88         help
89           This adds the clock modulation driver for Intel Pentium 4 / XEON
90           processors.  When enabled it will lower CPU temperature by skipping
91           clocks.
92
93           This driver should be only used in exceptional
94           circumstances when very low power is needed because it causes severe
95           slowdowns and noticeable latencies.  Normally Speedstep should be used
96           instead.
97
98           To compile this driver as a module, choose M here: the
99           module will be called p4-clockmod.
100
101           For details, take a look at <file:Documentation/cpu-freq/>.
102
103           Unless you are absolutely sure say N.
104
105
106 config X86_SPEEDSTEP_LIB
107         tristate
108         default X86_P4_CLOCKMOD
109
110 endif
111
112 endmenu