lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 28 Mar 2013 13:11:25 +0530
From:	Viresh Kumar <viresh.kumar@...aro.org>
To:	Jacob Shin <jacob.shin@....com>
Cc:	"Rafael J. Wysocki" <rjw@...k.pl>, cpufreq@...r.kernel.org,
	linux-pm@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/2] cpufreq: AMD "frequency sensitivity feedback"
 powersave bias for ondemand governor

On 28 March 2013 04:16, Jacob Shin <jacob.shin@....com> wrote:
> diff --git a/drivers/cpufreq/amd_freq_sensitivity.c b/drivers/cpufreq/amd_freq_sensitivity.c
> +#include <linux/module.h>
> +
> +#include "cpufreq_governor.h"

These two are enough for you?

> +#define PROC_FEEDBACK_INTERFACE_SHIFT          11
> +#define CLASS_CODE_SHIFT                       56
> +#define CLASS_CODE_MASK                                0xff
> +#define CLASS_CODE_CORE_FREQUENCY_SENSITIVITY  0x01
> +
> +static u32 msr_addr;
> +
> +struct cpu_data_t {
> +       u64 actual;
> +       u64 reference;

types.h

> +       unsigned int freq_prev;
> +};
> +
> +static DEFINE_PER_CPU(struct cpu_data_t, cpu_data);

include/linux/percpu.h

> +static unsigned int amd_powersave_bias_target(struct cpufreq_policy *policy,
> +               unsigned int freq_next, unsigned int relation)
> +{
> +       int sensitivity;
> +       long d_actual, d_reference;
> +       struct msr actual, reference;
> +       struct cpu_data_t *data = &per_cpu(cpu_data, policy->cpu);
> +       struct dbs_data *od_data = policy->governor_data;
> +       struct od_dbs_tuners *od_tuners = od_data->tuners;
> +       struct od_cpu_dbs_info_s *od_info =
> +               od_data->cdata->get_cpu_dbs_info_s(policy->cpu);
> +
> +       rdmsr_on_cpu(policy->cpu, msr_addr, &actual.l, &actual.h);
> +       rdmsr_on_cpu(policy->cpu, msr_addr + 1, &reference.l, &reference.h);
> +       actual.h &= 0x00ffffff;
> +       reference.h &= 0x00ffffff;
> +
> +       if (!od_info->freq_table)
> +               goto out;
> +
> +       /* counter wrapped around, so push until next check */
> +       if (actual.q < data->actual || reference.q < data->reference) {
> +               freq_next = policy->cur;
> +               goto out;
> +       }
> +
> +       d_actual = actual.q - data->actual;
> +       d_reference = reference.q - data->reference;
> +
> +       /* divide by 0, so push as well */
> +       if (d_reference == 0) {
> +               freq_next = policy->cur;
> +               goto out;
> +       }
> +
> +       sensitivity = 1000 - (1000 * (d_reference - d_actual) / d_reference);
> +
> +       if (sensitivity > 1000)
> +               sensitivity = 1000;
> +       else if (sensitivity < 0)
> +               sensitivity = 0;
> +
> +       /* this workload is not CPU bound, so choose a lower freq */
> +       if (sensitivity < od_tuners->powersave_bias) {
> +               if (data->freq_prev == policy->cur)
> +                       freq_next = policy->cur;
> +
> +               if (freq_next > policy->cur)
> +                       freq_next = policy->cur;
> +               else if (freq_next < policy->cur)
> +                       freq_next = policy->min;
> +               else {
> +                       unsigned int index = 0;
> +
> +                       cpufreq_frequency_table_target(policy,
> +                               od_info->freq_table, policy->cur - 1,
> +                               CPUFREQ_RELATION_H, &index);
> +                       freq_next = od_info->freq_table[index].frequency;
> +               }
> +
> +               data->freq_prev = freq_next;
> +       } else
> +               data->freq_prev = 0;
> +
> +out:
> +       data->actual = actual.q;
> +       data->reference = reference.q;
> +       return freq_next;
> +}
> +
> +static struct od_ops od_ops = {
> +       .powersave_bias_target = amd_powersave_bias_target,
> +};
> +
> +static int __init amd_freq_sensitivity_init(void)

include/linux/init.h

> +{
> +       int i;
> +       u32 eax, edx, dummy;
> +
> +       if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
> +               return -ENODEV;
> +
> +       cpuid(0x80000007, &eax, &dummy, &dummy, &edx);
> +
> +       if (!(edx & (1 << PROC_FEEDBACK_INTERFACE_SHIFT)))
> +               return -ENODEV;
> +
> +       for (i = 0; i < (eax & 0xf); i++) {
> +               u64 val;
> +               u32 addr = MSR_AMD64_FREQ_SENSITIVITY + (i * 2);
> +
> +               rdmsrl(addr, val);
> +
> +               if (((val >> CLASS_CODE_SHIFT) & CLASS_CODE_MASK)
> +                       == CLASS_CODE_CORE_FREQUENCY_SENSITIVITY) {
> +                       msr_addr = addr;
> +                       break;
> +               }
> +       }
> +
> +       if (!msr_addr)
> +               return -ENODEV;
> +
> +       od_register_ops(&od_ops);
> +       return 0;
> +}
> +
> +static void __exit amd_freq_sensitivity_exit(void)
> +{
> +       od_unregister_ops(&od_ops);
> +}
> +
> +MODULE_AUTHOR("Jacob Shin <jacob.shin@....com>");
> +MODULE_DESCRIPTION("AMD 'frequency sensitivity feedback' powersave bias for "
> +               "the ondemand governor.");
> +MODULE_LICENSE("GPL");
> +
> +module_init(amd_freq_sensitivity_init);
> +module_exit(amd_freq_sensitivity_exit);

Add them directly below their respective routines without a blank line
inbetween.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ