loongson2_cpufreq.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /*
  2. * Cpufreq driver for the loongson-2 processors
  3. *
  4. * The 2E revision of loongson processor not support this feature.
  5. *
  6. * Copyright (C) 2006 - 2008 Lemote Inc. & Insititute of Computing Technology
  7. * Author: Yanhua, yanh@lemote.com
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file "COPYING" in the main directory of this archive
  11. * for more details.
  12. */
  13. #include <linux/cpufreq.h>
  14. #include <linux/module.h>
  15. #include <linux/err.h>
  16. #include <linux/sched.h> /* set_cpus_allowed() */
  17. #include <linux/delay.h>
  18. #include <linux/platform_device.h>
  19. #include <asm/clock.h>
  20. #include <loongson.h>
  21. static uint nowait;
  22. static struct clk *cpuclk;
  23. static void (*saved_cpu_wait) (void);
  24. static int loongson2_cpu_freq_notifier(struct notifier_block *nb,
  25. unsigned long val, void *data);
  26. static struct notifier_block loongson2_cpufreq_notifier_block = {
  27. .notifier_call = loongson2_cpu_freq_notifier
  28. };
  29. static int loongson2_cpu_freq_notifier(struct notifier_block *nb,
  30. unsigned long val, void *data)
  31. {
  32. if (val == CPUFREQ_POSTCHANGE)
  33. current_cpu_data.udelay_val = loops_per_jiffy;
  34. return 0;
  35. }
  36. static unsigned int loongson2_cpufreq_get(unsigned int cpu)
  37. {
  38. return clk_get_rate(cpuclk);
  39. }
  40. /*
  41. * Here we notify other drivers of the proposed change and the final change.
  42. */
  43. static int loongson2_cpufreq_target(struct cpufreq_policy *policy,
  44. unsigned int target_freq,
  45. unsigned int relation)
  46. {
  47. unsigned int cpu = policy->cpu;
  48. unsigned int newstate = 0;
  49. cpumask_t cpus_allowed;
  50. struct cpufreq_freqs freqs;
  51. unsigned int freq;
  52. if (!cpu_online(cpu))
  53. return -ENODEV;
  54. cpus_allowed = current->cpus_allowed;
  55. set_cpus_allowed_ptr(current, cpumask_of(cpu));
  56. if (cpufreq_frequency_table_target
  57. (policy, &loongson2_clockmod_table[0], target_freq, relation,
  58. &newstate))
  59. return -EINVAL;
  60. freq =
  61. ((cpu_clock_freq / 1000) *
  62. loongson2_clockmod_table[newstate].index) / 8;
  63. if (freq < policy->min || freq > policy->max)
  64. return -EINVAL;
  65. pr_debug("cpufreq: requested frequency %u Hz\n", target_freq * 1000);
  66. freqs.cpu = cpu;
  67. freqs.old = loongson2_cpufreq_get(cpu);
  68. freqs.new = freq;
  69. freqs.flags = 0;
  70. if (freqs.new == freqs.old)
  71. return 0;
  72. /* notifiers */
  73. cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
  74. set_cpus_allowed_ptr(current, &cpus_allowed);
  75. /* setting the cpu frequency */
  76. clk_set_rate(cpuclk, freq);
  77. /* notifiers */
  78. cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
  79. pr_debug("cpufreq: set frequency %u kHz\n", freq);
  80. return 0;
  81. }
  82. static int loongson2_cpufreq_cpu_init(struct cpufreq_policy *policy)
  83. {
  84. int i;
  85. if (!cpu_online(policy->cpu))
  86. return -ENODEV;
  87. cpuclk = clk_get(NULL, "cpu_clk");
  88. if (IS_ERR(cpuclk)) {
  89. printk(KERN_ERR "cpufreq: couldn't get CPU clk\n");
  90. return PTR_ERR(cpuclk);
  91. }
  92. cpuclk->rate = cpu_clock_freq / 1000;
  93. if (!cpuclk->rate)
  94. return -EINVAL;
  95. /* clock table init */
  96. for (i = 2;
  97. (loongson2_clockmod_table[i].frequency != CPUFREQ_TABLE_END);
  98. i++)
  99. loongson2_clockmod_table[i].frequency = (cpuclk->rate * i) / 8;
  100. policy->cur = loongson2_cpufreq_get(policy->cpu);
  101. cpufreq_frequency_table_get_attr(&loongson2_clockmod_table[0],
  102. policy->cpu);
  103. return cpufreq_frequency_table_cpuinfo(policy,
  104. &loongson2_clockmod_table[0]);
  105. }
  106. static int loongson2_cpufreq_verify(struct cpufreq_policy *policy)
  107. {
  108. return cpufreq_frequency_table_verify(policy,
  109. &loongson2_clockmod_table[0]);
  110. }
  111. static int loongson2_cpufreq_exit(struct cpufreq_policy *policy)
  112. {
  113. clk_put(cpuclk);
  114. return 0;
  115. }
  116. static struct freq_attr *loongson2_table_attr[] = {
  117. &cpufreq_freq_attr_scaling_available_freqs,
  118. NULL,
  119. };
  120. static struct cpufreq_driver loongson2_cpufreq_driver = {
  121. .owner = THIS_MODULE,
  122. .name = "loongson2",
  123. .init = loongson2_cpufreq_cpu_init,
  124. .verify = loongson2_cpufreq_verify,
  125. .target = loongson2_cpufreq_target,
  126. .get = loongson2_cpufreq_get,
  127. .exit = loongson2_cpufreq_exit,
  128. .attr = loongson2_table_attr,
  129. };
  130. static struct platform_device_id platform_device_ids[] = {
  131. {
  132. .name = "loongson2_cpufreq",
  133. },
  134. {}
  135. };
  136. MODULE_DEVICE_TABLE(platform, platform_device_ids);
  137. static struct platform_driver platform_driver = {
  138. .driver = {
  139. .name = "loongson2_cpufreq",
  140. .owner = THIS_MODULE,
  141. },
  142. .id_table = platform_device_ids,
  143. };
  144. static int __init cpufreq_init(void)
  145. {
  146. int ret;
  147. /* Register platform stuff */
  148. ret = platform_driver_register(&platform_driver);
  149. if (ret)
  150. return ret;
  151. pr_info("cpufreq: Loongson-2F CPU frequency driver.\n");
  152. cpufreq_register_notifier(&loongson2_cpufreq_notifier_block,
  153. CPUFREQ_TRANSITION_NOTIFIER);
  154. ret = cpufreq_register_driver(&loongson2_cpufreq_driver);
  155. if (!ret && !nowait) {
  156. saved_cpu_wait = cpu_wait;
  157. cpu_wait = loongson2_cpu_wait;
  158. }
  159. return ret;
  160. }
  161. static void __exit cpufreq_exit(void)
  162. {
  163. if (!nowait && saved_cpu_wait)
  164. cpu_wait = saved_cpu_wait;
  165. cpufreq_unregister_driver(&loongson2_cpufreq_driver);
  166. cpufreq_unregister_notifier(&loongson2_cpufreq_notifier_block,
  167. CPUFREQ_TRANSITION_NOTIFIER);
  168. platform_driver_unregister(&platform_driver);
  169. }
  170. module_init(cpufreq_init);
  171. module_exit(cpufreq_exit);
  172. module_param(nowait, uint, 0644);
  173. MODULE_PARM_DESC(nowait, "Disable Loongson-2F specific wait");
  174. MODULE_AUTHOR("Yanhua <yanh@lemote.com>");
  175. MODULE_DESCRIPTION("cpufreq driver for Loongson2F");
  176. MODULE_LICENSE("GPL");