[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [linux-2.6.18-xen] ACPI: Backport to get correct throtting info after evaluating _PDC
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1235991266 0 # Node ID c86e5fde3fb1bfb984e90e15eac665e476c68b23 # Parent b02a90bf5bbc5bf62238bee7e2f440d87b7d8a17 ACPI: Backport to get correct throtting info after evaluating _PDC commit 0ac3c571315a53c14d2733564f14ebdb911fe903 Author: Zhao Yakui <yakui.zhao@xxxxxxxxx> Date: Thu Nov 15 17:05:46 2007 +0800 ACPI: Get throttling info from BIOS only after evaluating _PDC Previously _PDC was evaluated later, and thus we'd not get the chance to tell the BIOS that we can suport FixedHW registers (MSRs) and the BIOS would always ask us to use System I/O access for throttling. Signed-off-by: Zhao Yakui <yakui.zhao@xxxxxxxxx> Signed-off-by: Li Shaohua <shaohua.li@xxxxxxxxx> Signed-off-by: Len Brown <len.brown@xxxxxxxxx> Signed-off-by: Wei Gang <gang.wei@xxxxxxxxx> --- drivers/acpi/processor_core.c | 30 +++++++++++++++--------------- 1 files changed, 15 insertions(+), 15 deletions(-) diff -r b02a90bf5bbc -r c86e5fde3fb1 drivers/acpi/processor_core.c --- a/drivers/acpi/processor_core.c Mon Mar 02 10:53:59 2009 +0000 +++ b/drivers/acpi/processor_core.c Mon Mar 02 10:54:26 2009 +0000 @@ -510,21 +510,6 @@ static int acpi_processor_get_info(struc request_region(pr->throttling.address, 6, "ACPI CPU throttle"); } -#if defined(CONFIG_CPU_FREQ) || defined(CONFIG_PROCESSOR_EXTERNAL_CONTROL) - acpi_processor_ppc_has_changed(pr); -#endif - - /* - * pr->id may equal to -1 while processor_cntl_external enabled. - * throttle and thermal module don't support this case. - * Tx only works when dom0 vcpu == pcpu num by far, as we give - * control to dom0. - */ - if (pr->id != -1) { - acpi_processor_get_throttling_info(pr); - acpi_processor_get_limit_info(pr); - } - return 0; } @@ -588,6 +573,21 @@ static int acpi_processor_start(struct a arch_acpi_processor_init_pdc(pr); acpi_processor_set_pdc(pr); +#if defined(CONFIG_CPU_FREQ) || defined(CONFIG_PROCESSOR_EXTERNAL_CONTROL) + acpi_processor_ppc_has_changed(pr); +#endif + + /* + * pr->id may equal to -1 while processor_cntl_external enabled. + * throttle and thermal module don't support this case. + * Tx only works when dom0 vcpu == pcpu num by far, as we give + * control to dom0. + */ + if (pr->id != -1) { + acpi_processor_get_throttling_info(pr); + acpi_processor_get_limit_info(pr); + } + acpi_processor_power_init(pr, device); result = processor_extcntl_prepare(pr); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |