-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IA64] Add ACPI based P-state support
Patch to support P-state transitions on ia64. This driver is based on ACPI, and uses the ACPI processor driver interface to find out the P-state support information for the processor. This driver plugs into generic cpufreq infrastructure. Once this driver is loaded successfully, ondemand/userspace governor can be used to change the CPU frequency dynamically based on load or on request from userspace process. Refer : ACPI specification - http://www.acpi.info P-state related PAL calls - http://developer.intel.com/design/itanium/downloads/24869909.pdf Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
- Loading branch information
Venkatesh Pallipadi
authored and
Tony Luck
committed
Aug 26, 2005
1 parent
fd589e0
commit 4db8699
Showing
7 changed files
with
562 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_IA64_ACPI_CPUFREQ) += acpi-cpufreq.o |
Oops, something went wrong.