diff options
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 22 | ||||
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/Kconfig | 6 | ||||
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/Makefile | 2 | ||||
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c | 3 | ||||
-rw-r--r-- | arch/x86_64/kernel/cpufreq/Kconfig | 6 | ||||
-rw-r--r-- | arch/x86_64/kernel/cpufreq/Makefile | 2 |
6 files changed, 37 insertions, 4 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 24f3c63b3017..7ebca0775ec1 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -280,3 +280,25 @@ Why: Orphaned for ages. SMP bugs long unfixed. Few users left | |||
280 | Who: Jeff Garzik <jeff@garzik.org> | 280 | Who: Jeff Garzik <jeff@garzik.org> |
281 | 281 | ||
282 | --------------------------- | 282 | --------------------------- |
283 | |||
284 | What: ACPI hooks (X86_SPEEDSTEP_CENTRINO_ACPI) in speedstep-centrino driver | ||
285 | When: December 2006 | ||
286 | Why: Speedstep-centrino driver with ACPI hooks and acpi-cpufreq driver are | ||
287 | functionally very much similar. They talk to ACPI in same way. Only | ||
288 | difference between them is the way they do frequency transitions. | ||
289 | One uses MSRs and the other one uses IO ports. Functionaliy of | ||
290 | speedstep_centrino with ACPI hooks is now merged into acpi-cpufreq. | ||
291 | That means one common driver will support all Intel Enhanced Speedstep | ||
292 | capable CPUs. That means less confusion over name of | ||
293 | speedstep-centrino driver (with that driver supposed to be used on | ||
294 | non-centrino platforms). That means less duplication of code and | ||
295 | less maintenance effort and no possibility of these two drivers | ||
296 | going out of sync. | ||
297 | Current users of speedstep_centrino with ACPI hooks are requested to | ||
298 | switch over to acpi-cpufreq driver. speedstep-centrino will continue | ||
299 | to work using older non-ACPI static table based scheme even after this | ||
300 | date. | ||
301 | |||
302 | Who: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> | ||
303 | |||
304 | --------------------------- | ||
diff --git a/arch/i386/kernel/cpu/cpufreq/Kconfig b/arch/i386/kernel/cpu/cpufreq/Kconfig index ccc1edff5c97..5299c5bf4454 100644 --- a/arch/i386/kernel/cpu/cpufreq/Kconfig +++ b/arch/i386/kernel/cpu/cpufreq/Kconfig | |||
@@ -17,6 +17,7 @@ config X86_ACPI_CPUFREQ | |||
17 | help | 17 | help |
18 | This driver adds a CPUFreq driver which utilizes the ACPI | 18 | This driver adds a CPUFreq driver which utilizes the ACPI |
19 | Processor Performance States. | 19 | Processor Performance States. |
20 | This driver also supports Intel Enhanced Speedstep. | ||
20 | 21 | ||
21 | For details, take a look at <file:Documentation/cpu-freq/>. | 22 | For details, take a look at <file:Documentation/cpu-freq/>. |
22 | 23 | ||
@@ -121,11 +122,14 @@ config X86_SPEEDSTEP_CENTRINO | |||
121 | If in doubt, say N. | 122 | If in doubt, say N. |
122 | 123 | ||
123 | config X86_SPEEDSTEP_CENTRINO_ACPI | 124 | config X86_SPEEDSTEP_CENTRINO_ACPI |
124 | bool "Use ACPI tables to decode valid frequency/voltage pairs" | 125 | bool "Use ACPI tables to decode valid frequency/voltage (deprecated)" |
125 | depends on X86_SPEEDSTEP_CENTRINO && ACPI_PROCESSOR | 126 | depends on X86_SPEEDSTEP_CENTRINO && ACPI_PROCESSOR |
126 | depends on !(X86_SPEEDSTEP_CENTRINO = y && ACPI_PROCESSOR = m) | 127 | depends on !(X86_SPEEDSTEP_CENTRINO = y && ACPI_PROCESSOR = m) |
127 | default y | 128 | default y |
128 | help | 129 | help |
130 | This is deprecated and this functionality is now merged into | ||
131 | acpi_cpufreq (X86_ACPI_CPUFREQ). Use that driver instead of | ||
132 | speedstep_centrino. | ||
129 | Use primarily the information provided in the BIOS ACPI tables | 133 | Use primarily the information provided in the BIOS ACPI tables |
130 | to determine valid CPU frequency and voltage pairings. It is | 134 | to determine valid CPU frequency and voltage pairings. It is |
131 | required for the driver to work on non-Banias CPUs. | 135 | required for the driver to work on non-Banias CPUs. |
diff --git a/arch/i386/kernel/cpu/cpufreq/Makefile b/arch/i386/kernel/cpu/cpufreq/Makefile index 2e894f1c8910..8de3abe322a9 100644 --- a/arch/i386/kernel/cpu/cpufreq/Makefile +++ b/arch/i386/kernel/cpu/cpufreq/Makefile | |||
@@ -7,9 +7,9 @@ obj-$(CONFIG_SC520_CPUFREQ) += sc520_freq.o | |||
7 | obj-$(CONFIG_X86_LONGRUN) += longrun.o | 7 | obj-$(CONFIG_X86_LONGRUN) += longrun.o |
8 | obj-$(CONFIG_X86_GX_SUSPMOD) += gx-suspmod.o | 8 | obj-$(CONFIG_X86_GX_SUSPMOD) += gx-suspmod.o |
9 | obj-$(CONFIG_X86_SPEEDSTEP_ICH) += speedstep-ich.o | 9 | obj-$(CONFIG_X86_SPEEDSTEP_ICH) += speedstep-ich.o |
10 | obj-$(CONFIG_X86_SPEEDSTEP_CENTRINO) += speedstep-centrino.o | ||
11 | obj-$(CONFIG_X86_SPEEDSTEP_LIB) += speedstep-lib.o | 10 | obj-$(CONFIG_X86_SPEEDSTEP_LIB) += speedstep-lib.o |
12 | obj-$(CONFIG_X86_SPEEDSTEP_SMI) += speedstep-smi.o | 11 | obj-$(CONFIG_X86_SPEEDSTEP_SMI) += speedstep-smi.o |
13 | obj-$(CONFIG_X86_ACPI_CPUFREQ) += acpi-cpufreq.o | 12 | obj-$(CONFIG_X86_ACPI_CPUFREQ) += acpi-cpufreq.o |
13 | obj-$(CONFIG_X86_SPEEDSTEP_CENTRINO) += speedstep-centrino.o | ||
14 | obj-$(CONFIG_X86_P4_CLOCKMOD) += p4-clockmod.o | 14 | obj-$(CONFIG_X86_P4_CLOCKMOD) += p4-clockmod.o |
15 | obj-$(CONFIG_X86_CPUFREQ_NFORCE2) += cpufreq-nforce2.o | 15 | obj-$(CONFIG_X86_CPUFREQ_NFORCE2) += cpufreq-nforce2.o |
diff --git a/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c b/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c index e8993baf3d14..70178bf8002d 100644 --- a/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c +++ b/arch/i386/kernel/cpu/cpufreq/speedstep-centrino.c | |||
@@ -531,6 +531,9 @@ static int centrino_cpu_init_acpi(struct cpufreq_policy *policy) | |||
531 | 531 | ||
532 | /* notify BIOS that we exist */ | 532 | /* notify BIOS that we exist */ |
533 | acpi_processor_notify_smm(THIS_MODULE); | 533 | acpi_processor_notify_smm(THIS_MODULE); |
534 | printk("speedstep-centrino with X86_SPEEDSTEP_CENTRINO_ACPI" | ||
535 | "config is deprecated.\n " | ||
536 | "Use X86_ACPI_CPUFREQ (acpi-cpufreq instead.\n" ); | ||
534 | 537 | ||
535 | return 0; | 538 | return 0; |
536 | 539 | ||
diff --git a/arch/x86_64/kernel/cpufreq/Kconfig b/arch/x86_64/kernel/cpufreq/Kconfig index 81f1562e5393..3abcfa3e1ed7 100644 --- a/arch/x86_64/kernel/cpufreq/Kconfig +++ b/arch/x86_64/kernel/cpufreq/Kconfig | |||
@@ -27,10 +27,13 @@ config X86_POWERNOW_K8_ACPI | |||
27 | default y | 27 | default y |
28 | 28 | ||
29 | config X86_SPEEDSTEP_CENTRINO | 29 | config X86_SPEEDSTEP_CENTRINO |
30 | tristate "Intel Enhanced SpeedStep" | 30 | tristate "Intel Enhanced SpeedStep (deprecated)" |
31 | select CPU_FREQ_TABLE | 31 | select CPU_FREQ_TABLE |
32 | depends on ACPI_PROCESSOR | 32 | depends on ACPI_PROCESSOR |
33 | help | 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. | ||
34 | This adds the CPUFreq driver for Enhanced SpeedStep enabled | 37 | This adds the CPUFreq driver for Enhanced SpeedStep enabled |
35 | mobile CPUs. This means Intel Pentium M (Centrino) CPUs | 38 | mobile CPUs. This means Intel Pentium M (Centrino) CPUs |
36 | or 64bit enabled Intel Xeons. | 39 | or 64bit enabled Intel Xeons. |
@@ -50,6 +53,7 @@ config X86_ACPI_CPUFREQ | |||
50 | help | 53 | help |
51 | This driver adds a CPUFreq driver which utilizes the ACPI | 54 | This driver adds a CPUFreq driver which utilizes the ACPI |
52 | Processor Performance States. | 55 | Processor Performance States. |
56 | This driver also supports Intel Enhanced Speedstep. | ||
53 | 57 | ||
54 | For details, take a look at <file:Documentation/cpu-freq/>. | 58 | For details, take a look at <file:Documentation/cpu-freq/>. |
55 | 59 | ||
diff --git a/arch/x86_64/kernel/cpufreq/Makefile b/arch/x86_64/kernel/cpufreq/Makefile index d8b593879224..753ce1dd418e 100644 --- a/arch/x86_64/kernel/cpufreq/Makefile +++ b/arch/x86_64/kernel/cpufreq/Makefile | |||
@@ -5,8 +5,8 @@ | |||
5 | SRCDIR := ../../../i386/kernel/cpu/cpufreq | 5 | SRCDIR := ../../../i386/kernel/cpu/cpufreq |
6 | 6 | ||
7 | obj-$(CONFIG_X86_POWERNOW_K8) += powernow-k8.o | 7 | obj-$(CONFIG_X86_POWERNOW_K8) += powernow-k8.o |
8 | obj-$(CONFIG_X86_SPEEDSTEP_CENTRINO) += speedstep-centrino.o | ||
9 | obj-$(CONFIG_X86_ACPI_CPUFREQ) += acpi-cpufreq.o | 8 | obj-$(CONFIG_X86_ACPI_CPUFREQ) += acpi-cpufreq.o |
9 | obj-$(CONFIG_X86_SPEEDSTEP_CENTRINO) += speedstep-centrino.o | ||
10 | obj-$(CONFIG_X86_P4_CLOCKMOD) += p4-clockmod.o | 10 | obj-$(CONFIG_X86_P4_CLOCKMOD) += p4-clockmod.o |
11 | obj-$(CONFIG_X86_SPEEDSTEP_LIB) += speedstep-lib.o | 11 | obj-$(CONFIG_X86_SPEEDSTEP_LIB) += speedstep-lib.o |
12 | 12 | ||