loongson2_cpufreq.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. & Institute 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-loongson64/loongson.h>
  22. static uint nowait;
  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. /*
  37. * Here we notify other drivers of the proposed change and the final change.
  38. */
  39. static int loongson2_cpufreq_target(struct cpufreq_policy *policy,
  40. unsigned int index)
  41. {
  42. unsigned int cpu = policy->cpu;
  43. cpumask_t cpus_allowed;
  44. unsigned int freq;
  45. cpus_allowed = current->cpus_allowed;
  46. set_cpus_allowed_ptr(current, cpumask_of(cpu));
  47. freq =
  48. ((cpu_clock_freq / 1000) *
  49. loongson2_clockmod_table[index].driver_data) / 8;
  50. set_cpus_allowed_ptr(current, &cpus_allowed);
  51. /* setting the cpu frequency */
  52. clk_set_rate(policy->clk, freq * 1000);
  53. return 0;
  54. }
  55. static int loongson2_cpufreq_cpu_init(struct cpufreq_policy *policy)
  56. {
  57. struct clk *cpuclk;
  58. int i;
  59. unsigned long rate;
  60. int ret;
  61. cpuclk = clk_get(NULL, "cpu_clk");
  62. if (IS_ERR(cpuclk)) {
  63. printk(KERN_ERR "cpufreq: couldn't get CPU clk\n");
  64. return PTR_ERR(cpuclk);
  65. }
  66. rate = cpu_clock_freq / 1000;
  67. if (!rate) {
  68. clk_put(cpuclk);
  69. return -EINVAL;
  70. }
  71. /* clock table init */
  72. for (i = 2;
  73. (loongson2_clockmod_table[i].frequency != CPUFREQ_TABLE_END);
  74. i++)
  75. loongson2_clockmod_table[i].frequency = (rate * i) / 8;
  76. ret = clk_set_rate(cpuclk, rate * 1000);
  77. if (ret) {
  78. clk_put(cpuclk);
  79. return ret;
  80. }
  81. policy->clk = cpuclk;
  82. return cpufreq_generic_init(policy, &loongson2_clockmod_table[0], 0);
  83. }
  84. static int loongson2_cpufreq_exit(struct cpufreq_policy *policy)
  85. {
  86. clk_put(policy->clk);
  87. return 0;
  88. }
  89. static struct cpufreq_driver loongson2_cpufreq_driver = {
  90. .name = "loongson2",
  91. .init = loongson2_cpufreq_cpu_init,
  92. .verify = cpufreq_generic_frequency_table_verify,
  93. .target_index = loongson2_cpufreq_target,
  94. .get = cpufreq_generic_get,
  95. .exit = loongson2_cpufreq_exit,
  96. .attr = cpufreq_generic_attr,
  97. };
  98. static struct platform_device_id platform_device_ids[] = {
  99. {
  100. .name = "loongson2_cpufreq",
  101. },
  102. {}
  103. };
  104. MODULE_DEVICE_TABLE(platform, platform_device_ids);
  105. static struct platform_driver platform_driver = {
  106. .driver = {
  107. .name = "loongson2_cpufreq",
  108. },
  109. .id_table = platform_device_ids,
  110. };
  111. /*
  112. * This is the simple version of Loongson-2 wait, Maybe we need do this in
  113. * interrupt disabled context.
  114. */
  115. static DEFINE_SPINLOCK(loongson2_wait_lock);
  116. static void loongson2_cpu_wait(void)
  117. {
  118. unsigned long flags;
  119. u32 cpu_freq;
  120. spin_lock_irqsave(&loongson2_wait_lock, flags);
  121. cpu_freq = LOONGSON_CHIPCFG(0);
  122. LOONGSON_CHIPCFG(0) &= ~0x7; /* Put CPU into wait mode */
  123. LOONGSON_CHIPCFG(0) = cpu_freq; /* Restore CPU state */
  124. spin_unlock_irqrestore(&loongson2_wait_lock, flags);
  125. local_irq_enable();
  126. }
  127. static int __init cpufreq_init(void)
  128. {
  129. int ret;
  130. /* Register platform stuff */
  131. ret = platform_driver_register(&platform_driver);
  132. if (ret)
  133. return ret;
  134. pr_info("cpufreq: Loongson-2F CPU frequency driver.\n");
  135. cpufreq_register_notifier(&loongson2_cpufreq_notifier_block,
  136. CPUFREQ_TRANSITION_NOTIFIER);
  137. ret = cpufreq_register_driver(&loongson2_cpufreq_driver);
  138. if (!ret && !nowait) {
  139. saved_cpu_wait = cpu_wait;
  140. cpu_wait = loongson2_cpu_wait;
  141. }
  142. return ret;
  143. }
  144. static void __exit cpufreq_exit(void)
  145. {
  146. if (!nowait && saved_cpu_wait)
  147. cpu_wait = saved_cpu_wait;
  148. cpufreq_unregister_driver(&loongson2_cpufreq_driver);
  149. cpufreq_unregister_notifier(&loongson2_cpufreq_notifier_block,
  150. CPUFREQ_TRANSITION_NOTIFIER);
  151. platform_driver_unregister(&platform_driver);
  152. }
  153. module_init(cpufreq_init);
  154. module_exit(cpufreq_exit);
  155. module_param(nowait, uint, 0644);
  156. MODULE_PARM_DESC(nowait, "Disable Loongson-2F specific wait");
  157. MODULE_AUTHOR("Yanhua <yanh@lemote.com>");
  158. MODULE_DESCRIPTION("cpufreq driver for Loongson2F");
  159. MODULE_LICENSE("GPL");