loongson2_cpufreq.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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 <asm/idle.h>
  21. #include <asm/mach-loongson/loongson.h>
  22. static uint nowait;
  23. static struct clk *cpuclk;
  24. static void (*saved_cpu_wait) (void);
  25. static int loongson2_cpu_freq_notifier(struct notifier_block *nb,
  26. unsigned long val, void *data);
  27. static struct notifier_block loongson2_cpufreq_notifier_block = {
  28. .notifier_call = loongson2_cpu_freq_notifier
  29. };
  30. static int loongson2_cpu_freq_notifier(struct notifier_block *nb,
  31. unsigned long val, void *data)
  32. {
  33. if (val == CPUFREQ_POSTCHANGE)
  34. current_cpu_data.udelay_val = loops_per_jiffy;
  35. return 0;
  36. }
  37. static unsigned int loongson2_cpufreq_get(unsigned int cpu)
  38. {
  39. return clk_get_rate(cpuclk);
  40. }
  41. /*
  42. * Here we notify other drivers of the proposed change and the final change.
  43. */
  44. static int loongson2_cpufreq_target(struct cpufreq_policy *policy,
  45. unsigned int target_freq,
  46. unsigned int relation)
  47. {
  48. unsigned int cpu = policy->cpu;
  49. unsigned int newstate = 0;
  50. cpumask_t cpus_allowed;
  51. struct cpufreq_freqs freqs;
  52. unsigned int freq;
  53. cpus_allowed = current->cpus_allowed;
  54. set_cpus_allowed_ptr(current, cpumask_of(cpu));
  55. if (cpufreq_frequency_table_target
  56. (policy, &loongson2_clockmod_table[0], target_freq, relation,
  57. &newstate))
  58. return -EINVAL;
  59. freq =
  60. ((cpu_clock_freq / 1000) *
  61. loongson2_clockmod_table[newstate].driver_data) / 8;
  62. if (freq < policy->min || freq > policy->max)
  63. return -EINVAL;
  64. pr_debug("cpufreq: requested frequency %u Hz\n", target_freq * 1000);
  65. freqs.old = loongson2_cpufreq_get(cpu);
  66. freqs.new = freq;
  67. freqs.flags = 0;
  68. if (freqs.new == freqs.old)
  69. return 0;
  70. /* notifiers */
  71. cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
  72. set_cpus_allowed_ptr(current, &cpus_allowed);
  73. /* setting the cpu frequency */
  74. clk_set_rate(cpuclk, freq);
  75. /* notifiers */
  76. cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
  77. pr_debug("cpufreq: set frequency %u kHz\n", freq);
  78. return 0;
  79. }
  80. static int loongson2_cpufreq_cpu_init(struct cpufreq_policy *policy)
  81. {
  82. int i;
  83. unsigned long rate;
  84. int ret;
  85. cpuclk = clk_get(NULL, "cpu_clk");
  86. if (IS_ERR(cpuclk)) {
  87. printk(KERN_ERR "cpufreq: couldn't get CPU clk\n");
  88. return PTR_ERR(cpuclk);
  89. }
  90. rate = cpu_clock_freq / 1000;
  91. if (!rate) {
  92. clk_put(cpuclk);
  93. return -EINVAL;
  94. }
  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 = (rate * i) / 8;
  100. ret = clk_set_rate(cpuclk, rate);
  101. if (ret) {
  102. clk_put(cpuclk);
  103. return ret;
  104. }
  105. policy->cur = loongson2_cpufreq_get(policy->cpu);
  106. cpufreq_frequency_table_get_attr(&loongson2_clockmod_table[0],
  107. policy->cpu);
  108. return cpufreq_frequency_table_cpuinfo(policy,
  109. &loongson2_clockmod_table[0]);
  110. }
  111. static int loongson2_cpufreq_verify(struct cpufreq_policy *policy)
  112. {
  113. return cpufreq_frequency_table_verify(policy,
  114. &loongson2_clockmod_table[0]);
  115. }
  116. static int loongson2_cpufreq_exit(struct cpufreq_policy *policy)
  117. {
  118. clk_put(cpuclk);
  119. return 0;
  120. }
  121. static struct freq_attr *loongson2_table_attr[] = {
  122. &cpufreq_freq_attr_scaling_available_freqs,
  123. NULL,
  124. };
  125. static struct cpufreq_driver loongson2_cpufreq_driver = {
  126. .name = "loongson2",
  127. .init = loongson2_cpufreq_cpu_init,
  128. .verify = loongson2_cpufreq_verify,
  129. .target = loongson2_cpufreq_target,
  130. .get = loongson2_cpufreq_get,
  131. .exit = loongson2_cpufreq_exit,
  132. .attr = loongson2_table_attr,
  133. };
  134. static struct platform_device_id platform_device_ids[] = {
  135. {
  136. .name = "loongson2_cpufreq",
  137. },
  138. {}
  139. };
  140. MODULE_DEVICE_TABLE(platform, platform_device_ids);
  141. static struct platform_driver platform_driver = {
  142. .driver = {
  143. .name = "loongson2_cpufreq",
  144. .owner = THIS_MODULE,
  145. },
  146. .id_table = platform_device_ids,
  147. };
  148. /*
  149. * This is the simple version of Loongson-2 wait, Maybe we need do this in
  150. * interrupt disabled context.
  151. */
  152. static DEFINE_SPINLOCK(loongson2_wait_lock);
  153. static void loongson2_cpu_wait(void)
  154. {
  155. unsigned long flags;
  156. u32 cpu_freq;
  157. spin_lock_irqsave(&loongson2_wait_lock, flags);
  158. cpu_freq = LOONGSON_CHIPCFG0;
  159. LOONGSON_CHIPCFG0 &= ~0x7; /* Put CPU into wait mode */
  160. LOONGSON_CHIPCFG0 = cpu_freq; /* Restore CPU state */
  161. spin_unlock_irqrestore(&loongson2_wait_lock, flags);
  162. local_irq_enable();
  163. }
  164. static int __init cpufreq_init(void)
  165. {
  166. int ret;
  167. /* Register platform stuff */
  168. ret = platform_driver_register(&platform_driver);
  169. if (ret)
  170. return ret;
  171. pr_info("cpufreq: Loongson-2F CPU frequency driver.\n");
  172. cpufreq_register_notifier(&loongson2_cpufreq_notifier_block,
  173. CPUFREQ_TRANSITION_NOTIFIER);
  174. ret = cpufreq_register_driver(&loongson2_cpufreq_driver);
  175. if (!ret && !nowait) {
  176. saved_cpu_wait = cpu_wait;
  177. cpu_wait = loongson2_cpu_wait;
  178. }
  179. return ret;
  180. }
  181. static void __exit cpufreq_exit(void)
  182. {
  183. if (!nowait && saved_cpu_wait)
  184. cpu_wait = saved_cpu_wait;
  185. cpufreq_unregister_driver(&loongson2_cpufreq_driver);
  186. cpufreq_unregister_notifier(&loongson2_cpufreq_notifier_block,
  187. CPUFREQ_TRANSITION_NOTIFIER);
  188. platform_driver_unregister(&platform_driver);
  189. }
  190. module_init(cpufreq_init);
  191. module_exit(cpufreq_exit);
  192. module_param(nowait, uint, 0644);
  193. MODULE_PARM_DESC(nowait, "Disable Loongson-2F specific wait");
  194. MODULE_AUTHOR("Yanhua <yanh@lemote.com>");
  195. MODULE_DESCRIPTION("cpufreq driver for Loongson2F");
  196. MODULE_LICENSE("GPL");