[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [RFC PATCH 04/13] cpufreq: use turbo settings only for x86 architecture
This settings is x86-specific and should not be used for other architectures. Signed-off-by: Oleksandr Dmytryshyn <oleksandr.dmytryshyn@xxxxxxxxxxxxxxx> --- xen/drivers/cpufreq/utility.c | 11 ++++++++++- xen/drivers/pm/pmstat.c | 6 ++++++ xen/include/cpufreq/cpufreq.h | 6 ++++++ 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/xen/drivers/cpufreq/utility.c b/xen/drivers/cpufreq/utility.c index c9150a1..d01c768 100644 --- a/xen/drivers/cpufreq/utility.c +++ b/xen/drivers/cpufreq/utility.c @@ -209,7 +209,9 @@ int cpufreq_frequency_table_cpuinfo(struct cpufreq_policy *policy, { unsigned int min_freq = ~0; unsigned int max_freq = 0; +#ifdef CONFIG_X86 unsigned int second_max_freq = 0; +#endif unsigned int i; for (i=0; (table[i].frequency != CPUFREQ_TABLE_END); i++) { @@ -221,6 +223,7 @@ int cpufreq_frequency_table_cpuinfo(struct cpufreq_policy *policy, if (freq > max_freq) max_freq = freq; } +#ifdef CONFIG_X86 for (i=0; (table[i].frequency != CPUFREQ_TABLE_END); i++) { unsigned int freq = table[i].frequency; if (freq == CPUFREQ_ENTRY_INVALID || freq == max_freq) @@ -234,9 +237,13 @@ int cpufreq_frequency_table_cpuinfo(struct cpufreq_policy *policy, printk("max_freq: %u second_max_freq: %u\n", max_freq, second_max_freq); + policy->cpuinfo.second_max_freq = second_max_freq; +#else + if (cpufreq_verbose) + printk("max_freq: %u\n", max_freq); +#endif policy->min = policy->cpuinfo.min_freq = min_freq; policy->max = policy->cpuinfo.max_freq = max_freq; - policy->cpuinfo.second_max_freq = second_max_freq; if (policy->min == ~0) return -EINVAL; @@ -390,6 +397,7 @@ int cpufreq_driver_getavg(unsigned int cpu, unsigned int flag) return policy->cur; } +#ifdef CONFIG_X86 int cpufreq_update_turbo(int cpuid, int new_state) { struct cpufreq_policy *policy; @@ -430,6 +438,7 @@ int cpufreq_get_turbo_status(int cpuid) policy = per_cpu(cpufreq_cpu_policy, cpuid); return policy && policy->turbo == CPUFREQ_TURBO_ENABLED; } +#endif /* CONFIG_X86 */ /********************************************************************* * POLICY * diff --git a/xen/drivers/pm/pmstat.c b/xen/drivers/pm/pmstat.c index bd6ca43..fff3609 100644 --- a/xen/drivers/pm/pmstat.c +++ b/xen/drivers/pm/pmstat.c @@ -292,7 +292,11 @@ static int get_cpufreq_para(struct xen_sysctl_pm_op *op) &op->u.get_para.u.ondemand.sampling_rate, &op->u.get_para.u.ondemand.up_threshold); } +#ifdef CONFIG_X86 op->u.get_para.turbo_enabled = cpufreq_get_turbo_status(op->cpuid); +#else + op->u.get_para.turbo_enabled = 0; +#endif return ret; } @@ -475,6 +479,7 @@ int do_pm_op(struct xen_sysctl_pm_op *op) break; } +#ifdef CONFIG_X86 case XEN_SYSCTL_pm_op_enable_turbo: { ret = cpufreq_update_turbo(op->cpuid, CPUFREQ_TURBO_ENABLED); @@ -486,6 +491,7 @@ int do_pm_op(struct xen_sysctl_pm_op *op) ret = cpufreq_update_turbo(op->cpuid, CPUFREQ_TURBO_DISABLED); break; } +#endif /* CONFIG_X86 */ default: printk("not defined sub-hypercall @ do_pm_op\n"); diff --git a/xen/include/cpufreq/cpufreq.h b/xen/include/cpufreq/cpufreq.h index dde7259..88ada16 100644 --- a/xen/include/cpufreq/cpufreq.h +++ b/xen/include/cpufreq/cpufreq.h @@ -39,7 +39,9 @@ extern struct acpi_cpufreq_data *cpufreq_drv_data[NR_CPUS]; struct cpufreq_cpuinfo { unsigned int max_freq; +#ifdef CONFIG_X86 unsigned int second_max_freq; /* P1 if Turbo Mode is on */ +#endif unsigned int min_freq; unsigned int transition_latency; /* in 10^(-9) s = nanoseconds */ }; @@ -59,10 +61,12 @@ struct cpufreq_policy { bool_t resume; /* flag for cpufreq 1st run * S3 wakeup, hotplug cpu, etc */ +#ifdef CONFIG_X86 s8 turbo; /* tristate flag: 0 for unsupported * -1 for disable, 1 for enabled * See CPUFREQ_TURBO_* below for defines */ bool_t aperf_mperf; /* CPU has APERF/MPERF MSRs */ +#endif }; DECLARE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_policy); @@ -127,8 +131,10 @@ extern int cpufreq_driver_getavg(unsigned int cpu, unsigned int flag); #define CPUFREQ_TURBO_UNSUPPORTED 0 #define CPUFREQ_TURBO_ENABLED 1 +#ifdef CONFIG_X86 extern int cpufreq_update_turbo(int cpuid, int new_state); extern int cpufreq_get_turbo_status(int cpuid); +#endif static __inline__ int __cpufreq_governor(struct cpufreq_policy *policy, unsigned int event) -- 1.9.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |