cpufreq.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /*
  2. * arch/sh/kernel/cpufreq.c
  3. *
  4. * cpufreq driver for the SuperH processors.
  5. *
  6. * Copyright (C) 2002, 2003, 2004, 2005 Paul Mundt
  7. * Copyright (C) 2002 M. R. Brown
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the
  11. * Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. */
  14. #include <linux/types.h>
  15. #include <linux/cpufreq.h>
  16. #include <linux/kernel.h>
  17. #include <linux/module.h>
  18. #include <linux/slab.h>
  19. #include <linux/init.h>
  20. #include <linux/delay.h>
  21. #include <linux/cpumask.h>
  22. #include <linux/smp.h>
  23. #include <asm/processor.h>
  24. #include <asm/watchdog.h>
  25. #include <asm/freq.h>
  26. #include <asm/io.h>
  27. /*
  28. * For SuperH, each policy change requires that we change the IFC, BFC, and
  29. * PFC at the same time. Here we define sane values that won't trash the
  30. * system.
  31. *
  32. * Note the max set is computed at runtime, we use the divisors that we booted
  33. * with to setup our maximum operating frequencies.
  34. */
  35. struct clock_set {
  36. unsigned int ifc;
  37. unsigned int bfc;
  38. unsigned int pfc;
  39. } clock_sets[] = {
  40. #if defined(CONFIG_CPU_SH3) || defined(CONFIG_CPU_SH2)
  41. { 0, 0, 0 }, /* not implemented yet */
  42. #elif defined(CONFIG_CPU_SH4)
  43. { 4, 8, 8 }, /* min - IFC: 1/4, BFC: 1/8, PFC: 1/8 */
  44. { 1, 2, 2 }, /* max - IFC: 1, BFC: 1/2, PFC: 1/2 */
  45. #endif
  46. };
  47. #define MIN_CLOCK_SET 0
  48. #define MAX_CLOCK_SET (ARRAY_SIZE(clock_sets) - 1)
  49. /*
  50. * For the time being, we only support two frequencies, which in turn are
  51. * aimed at the POWERSAVE and PERFORMANCE policies, which in turn are derived
  52. * directly from the respective min/max clock sets. Technically we could
  53. * support a wider range of frequencies, but these vary far too much for each
  54. * CPU subtype (and we'd have to construct a frequency table for each subtype).
  55. *
  56. * Maybe something to implement in the future..
  57. */
  58. #define SH_FREQ_MAX 0
  59. #define SH_FREQ_MIN 1
  60. static struct cpufreq_frequency_table sh_freqs[] = {
  61. { SH_FREQ_MAX, 0 },
  62. { SH_FREQ_MIN, 0 },
  63. { 0, CPUFREQ_TABLE_END },
  64. };
  65. static void sh_cpufreq_update_clocks(unsigned int set)
  66. {
  67. current_cpu_data.cpu_clock = current_cpu_data.master_clock / clock_sets[set].ifc;
  68. current_cpu_data.bus_clock = current_cpu_data.master_clock / clock_sets[set].bfc;
  69. current_cpu_data.module_clock = current_cpu_data.master_clock / clock_sets[set].pfc;
  70. current_cpu_data.loops_per_jiffy = loops_per_jiffy;
  71. }
  72. /* XXX: This needs to be split out per CPU and CPU subtype. */
  73. /*
  74. * Here we notify other drivers of the proposed change and the final change.
  75. */
  76. static int sh_cpufreq_setstate(unsigned int cpu, unsigned int set)
  77. {
  78. unsigned short frqcr = ctrl_inw(FRQCR);
  79. cpumask_t cpus_allowed;
  80. struct cpufreq_freqs freqs;
  81. if (!cpu_online(cpu))
  82. return -ENODEV;
  83. cpus_allowed = current->cpus_allowed;
  84. set_cpus_allowed(current, cpumask_of_cpu(cpu));
  85. BUG_ON(smp_processor_id() != cpu);
  86. freqs.cpu = cpu;
  87. freqs.old = current_cpu_data.cpu_clock / 1000;
  88. freqs.new = (current_cpu_data.master_clock / clock_sets[set].ifc) / 1000;
  89. cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
  90. #if defined(CONFIG_CPU_SH3)
  91. frqcr |= (newstate & 0x4000) << 14;
  92. frqcr |= (newstate & 0x000c) << 2;
  93. #elif defined(CONFIG_CPU_SH4)
  94. /*
  95. * FRQCR.PLL2EN is 1, we need to allow the PLL to stabilize by
  96. * initializing the WDT.
  97. */
  98. if (frqcr & (1 << 9)) {
  99. __u8 csr;
  100. /*
  101. * Set the overflow period to the highest available,
  102. * in this case a 1/4096 division ratio yields a 5.25ms
  103. * overflow period. See asm-sh/watchdog.h for more
  104. * information and a range of other divisors.
  105. */
  106. csr = sh_wdt_read_csr();
  107. csr |= WTCSR_CKS_4096;
  108. sh_wdt_write_csr(csr);
  109. sh_wdt_write_cnt(0);
  110. }
  111. frqcr &= 0x0e00; /* Clear ifc, bfc, pfc */
  112. frqcr |= get_ifc_value(clock_sets[set].ifc) << 6;
  113. frqcr |= get_bfc_value(clock_sets[set].bfc) << 3;
  114. frqcr |= get_pfc_value(clock_sets[set].pfc);
  115. #endif
  116. ctrl_outw(frqcr, FRQCR);
  117. sh_cpufreq_update_clocks(set);
  118. set_cpus_allowed(current, cpus_allowed);
  119. cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
  120. return 0;
  121. }
  122. static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
  123. {
  124. unsigned int min_freq, max_freq;
  125. unsigned int ifc, bfc, pfc;
  126. if (!cpu_online(policy->cpu))
  127. return -ENODEV;
  128. /* Update our maximum clock set */
  129. get_current_frequency_divisors(&ifc, &bfc, &pfc);
  130. clock_sets[MAX_CLOCK_SET].ifc = ifc;
  131. clock_sets[MAX_CLOCK_SET].bfc = bfc;
  132. clock_sets[MAX_CLOCK_SET].pfc = pfc;
  133. /* Convert from Hz to kHz */
  134. max_freq = current_cpu_data.cpu_clock / 1000;
  135. min_freq = (current_cpu_data.master_clock / clock_sets[MIN_CLOCK_SET].ifc) / 1000;
  136. sh_freqs[SH_FREQ_MAX].frequency = max_freq;
  137. sh_freqs[SH_FREQ_MIN].frequency = min_freq;
  138. /* cpuinfo and default policy values */
  139. policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
  140. policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
  141. policy->cur = max_freq;
  142. return cpufreq_frequency_table_cpuinfo(policy, &sh_freqs[0]);
  143. }
  144. static int sh_cpufreq_verify(struct cpufreq_policy *policy)
  145. {
  146. return cpufreq_frequency_table_verify(policy, &sh_freqs[0]);
  147. }
  148. static int sh_cpufreq_target(struct cpufreq_policy *policy,
  149. unsigned int target_freq,
  150. unsigned int relation)
  151. {
  152. unsigned int set, idx = 0;
  153. if (cpufreq_frequency_table_target(policy, &sh_freqs[0], target_freq, relation, &idx))
  154. return -EINVAL;
  155. set = (idx == SH_FREQ_MIN) ? MIN_CLOCK_SET : MAX_CLOCK_SET;
  156. sh_cpufreq_setstate(policy->cpu, set);
  157. return 0;
  158. }
  159. static struct cpufreq_driver sh_cpufreq_driver = {
  160. .owner = THIS_MODULE,
  161. .name = "SH cpufreq",
  162. .init = sh_cpufreq_cpu_init,
  163. .verify = sh_cpufreq_verify,
  164. .target = sh_cpufreq_target,
  165. };
  166. static int __init sh_cpufreq_init(void)
  167. {
  168. if (!current_cpu_data.cpu_clock)
  169. return -EINVAL;
  170. if (cpufreq_register_driver(&sh_cpufreq_driver))
  171. return -EINVAL;
  172. return 0;
  173. }
  174. static void __exit sh_cpufreq_exit(void)
  175. {
  176. cpufreq_unregister_driver(&sh_cpufreq_driver);
  177. }
  178. module_init(sh_cpufreq_init);
  179. module_exit(sh_cpufreq_exit);
  180. MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>");
  181. MODULE_DESCRIPTION("cpufreq driver for SuperH");
  182. MODULE_LICENSE("GPL");