sfi-cpufreq.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * SFI Performance States Driver
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * Author: Vishwesh M Rudramuni <vishwesh.m.rudramuni@intel.com>
  14. * Author: Srinidhi Kasagar <srinidhi.kasagar@intel.com>
  15. */
  16. #include <linux/cpufreq.h>
  17. #include <linux/init.h>
  18. #include <linux/kernel.h>
  19. #include <linux/module.h>
  20. #include <linux/sfi.h>
  21. #include <linux/slab.h>
  22. #include <linux/smp.h>
  23. #include <asm/msr.h>
  24. struct cpufreq_frequency_table *freq_table;
  25. static struct sfi_freq_table_entry *sfi_cpufreq_array;
  26. static int num_freq_table_entries;
  27. static int sfi_parse_freq(struct sfi_table_header *table)
  28. {
  29. struct sfi_table_simple *sb;
  30. struct sfi_freq_table_entry *pentry;
  31. int totallen;
  32. sb = (struct sfi_table_simple *)table;
  33. num_freq_table_entries = SFI_GET_NUM_ENTRIES(sb,
  34. struct sfi_freq_table_entry);
  35. if (num_freq_table_entries <= 1) {
  36. pr_err("No p-states discovered\n");
  37. return -ENODEV;
  38. }
  39. pentry = (struct sfi_freq_table_entry *)sb->pentry;
  40. totallen = num_freq_table_entries * sizeof(*pentry);
  41. sfi_cpufreq_array = kmemdup(pentry, totallen, GFP_KERNEL);
  42. if (!sfi_cpufreq_array)
  43. return -ENOMEM;
  44. return 0;
  45. }
  46. static int sfi_cpufreq_target(struct cpufreq_policy *policy, unsigned int index)
  47. {
  48. unsigned int next_perf_state = 0; /* Index into perf table */
  49. u32 lo, hi;
  50. next_perf_state = policy->freq_table[index].driver_data;
  51. rdmsr_on_cpu(policy->cpu, MSR_IA32_PERF_CTL, &lo, &hi);
  52. lo = (lo & ~INTEL_PERF_CTL_MASK) |
  53. ((u32) sfi_cpufreq_array[next_perf_state].ctrl_val &
  54. INTEL_PERF_CTL_MASK);
  55. wrmsr_on_cpu(policy->cpu, MSR_IA32_PERF_CTL, lo, hi);
  56. return 0;
  57. }
  58. static int sfi_cpufreq_cpu_init(struct cpufreq_policy *policy)
  59. {
  60. policy->shared_type = CPUFREQ_SHARED_TYPE_HW;
  61. policy->cpuinfo.transition_latency = 100000; /* 100us */
  62. return cpufreq_table_validate_and_show(policy, freq_table);
  63. }
  64. static struct cpufreq_driver sfi_cpufreq_driver = {
  65. .flags = CPUFREQ_CONST_LOOPS,
  66. .verify = cpufreq_generic_frequency_table_verify,
  67. .target_index = sfi_cpufreq_target,
  68. .init = sfi_cpufreq_cpu_init,
  69. .name = "sfi-cpufreq",
  70. .attr = cpufreq_generic_attr,
  71. };
  72. static int __init sfi_cpufreq_init(void)
  73. {
  74. int ret, i;
  75. /* parse the freq table from SFI */
  76. ret = sfi_table_parse(SFI_SIG_FREQ, NULL, NULL, sfi_parse_freq);
  77. if (ret)
  78. return ret;
  79. freq_table = kzalloc(sizeof(*freq_table) *
  80. (num_freq_table_entries + 1), GFP_KERNEL);
  81. if (!freq_table) {
  82. ret = -ENOMEM;
  83. goto err_free_array;
  84. }
  85. for (i = 0; i < num_freq_table_entries; i++) {
  86. freq_table[i].driver_data = i;
  87. freq_table[i].frequency = sfi_cpufreq_array[i].freq_mhz * 1000;
  88. }
  89. freq_table[i].frequency = CPUFREQ_TABLE_END;
  90. ret = cpufreq_register_driver(&sfi_cpufreq_driver);
  91. if (ret)
  92. goto err_free_tbl;
  93. return ret;
  94. err_free_tbl:
  95. kfree(freq_table);
  96. err_free_array:
  97. kfree(sfi_cpufreq_array);
  98. return ret;
  99. }
  100. late_initcall(sfi_cpufreq_init);
  101. static void __exit sfi_cpufreq_exit(void)
  102. {
  103. cpufreq_unregister_driver(&sfi_cpufreq_driver);
  104. kfree(freq_table);
  105. kfree(sfi_cpufreq_array);
  106. }
  107. module_exit(sfi_cpufreq_exit);
  108. MODULE_AUTHOR("Vishwesh M Rudramuni <vishwesh.m.rudramuni@intel.com>");
  109. MODULE_DESCRIPTION("SFI Performance-States Driver");
  110. MODULE_LICENSE("GPL");