Skip to content

Commit

Permalink
Pull acpi-p-state into release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Luck committed Aug 29, 2005
2 parents 7d2e423 + 4db8699 commit 7115c13
Show file tree
Hide file tree
Showing 7 changed files with 562 additions and 0 deletions.
6 changes: 6 additions & 0 deletions arch/ia64/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,12 @@ source "drivers/acpi/Kconfig"

endif

if PM

source "arch/ia64/kernel/cpufreq/Kconfig"

endif

endmenu

if !IA64_HP_SIM
Expand Down
1 change: 1 addition & 0 deletions arch/ia64/kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ obj-$(CONFIG_SMP) += smp.o smpboot.o domain.o
obj-$(CONFIG_NUMA) += numa.o
obj-$(CONFIG_PERFMON) += perfmon_default_smpl.o
obj-$(CONFIG_IA64_CYCLONE) += cyclone.o
obj-$(CONFIG_CPU_FREQ) += cpufreq/
obj-$(CONFIG_IA64_MCA_RECOVERY) += mca_recovery.o
obj-$(CONFIG_KPROBES) += kprobes.o jprobes.o
obj-$(CONFIG_IA64_UNCACHED_ALLOCATOR) += uncached.o
Expand Down
29 changes: 29 additions & 0 deletions arch/ia64/kernel/cpufreq/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

#
# CPU Frequency scaling
#

menu "CPU Frequency scaling"

source "drivers/cpufreq/Kconfig"

if CPU_FREQ

comment "CPUFreq processor drivers"

config IA64_ACPI_CPUFREQ
tristate "ACPI Processor P-States driver"
select CPU_FREQ_TABLE
depends on ACPI_PROCESSOR
help
This driver adds a CPUFreq driver which utilizes the ACPI
Processor Performance States.

For details, take a look at <file:Documentation/cpu-freq/>.

If in doubt, say N.

endif # CPU_FREQ

endmenu

1 change: 1 addition & 0 deletions arch/ia64/kernel/cpufreq/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_IA64_ACPI_CPUFREQ) += acpi-cpufreq.o
Loading

0 comments on commit 7115c13

Please sign in to comment.