clkt2xxx_virt_prcm_set.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. /*
  2. * OMAP2xxx DVFS virtual clock functions
  3. *
  4. * Copyright (C) 2005-2008 Texas Instruments, Inc.
  5. * Copyright (C) 2004-2010 Nokia Corporation
  6. *
  7. * Contacts:
  8. * Richard Woodruff <r-woodruff2@ti.com>
  9. * Paul Walmsley
  10. *
  11. * Based on earlier work by Tuukka Tikkanen, Tony Lindgren,
  12. * Gordon McNutt and RidgeRun, Inc.
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License version 2 as
  16. * published by the Free Software Foundation.
  17. *
  18. * XXX Some of this code should be replaceable by the upcoming OPP layer
  19. * code. However, some notion of "rate set" is probably still necessary
  20. * for OMAP2xxx at least. Rate sets should be generalized so they can be
  21. * used for any OMAP chip, not just OMAP2xxx. In particular, Richard Woodruff
  22. * has in the past expressed a preference to use rate sets for OPP changes,
  23. * rather than dynamically recalculating the clock tree, so if someone wants
  24. * this badly enough to write the code to handle it, we should support it
  25. * as an option.
  26. */
  27. #undef DEBUG
  28. #include <linux/kernel.h>
  29. #include <linux/errno.h>
  30. #include <linux/clk.h>
  31. #include <linux/io.h>
  32. #include <linux/cpufreq.h>
  33. #include <plat/clock.h>
  34. #include <plat/sram.h>
  35. #include <plat/sdrc.h>
  36. #include "clock.h"
  37. #include "clock2xxx.h"
  38. #include "opp2xxx.h"
  39. #include "cm.h"
  40. #include "cm-regbits-24xx.h"
  41. const struct prcm_config *curr_prcm_set;
  42. const struct prcm_config *rate_table;
  43. /**
  44. * omap2_table_mpu_recalc - just return the MPU speed
  45. * @clk: virt_prcm_set struct clk
  46. *
  47. * Set virt_prcm_set's rate to the mpu_speed field of the current PRCM set.
  48. */
  49. unsigned long omap2_table_mpu_recalc(struct clk *clk)
  50. {
  51. return curr_prcm_set->mpu_speed;
  52. }
  53. /*
  54. * Look for a rate equal or less than the target rate given a configuration set.
  55. *
  56. * What's not entirely clear is "which" field represents the key field.
  57. * Some might argue L3-DDR, others ARM, others IVA. This code is simple and
  58. * just uses the ARM rates.
  59. */
  60. long omap2_round_to_table_rate(struct clk *clk, unsigned long rate)
  61. {
  62. const struct prcm_config *ptr;
  63. long highest_rate;
  64. long sys_ck_rate;
  65. sys_ck_rate = clk_get_rate(sclk);
  66. highest_rate = -EINVAL;
  67. for (ptr = rate_table; ptr->mpu_speed; ptr++) {
  68. if (!(ptr->flags & cpu_mask))
  69. continue;
  70. if (ptr->xtal_speed != sys_ck_rate)
  71. continue;
  72. highest_rate = ptr->mpu_speed;
  73. /* Can check only after xtal frequency check */
  74. if (ptr->mpu_speed <= rate)
  75. break;
  76. }
  77. return highest_rate;
  78. }
  79. /* Sets basic clocks based on the specified rate */
  80. int omap2_select_table_rate(struct clk *clk, unsigned long rate)
  81. {
  82. u32 cur_rate, done_rate, bypass = 0, tmp;
  83. const struct prcm_config *prcm;
  84. unsigned long found_speed = 0;
  85. unsigned long flags;
  86. long sys_ck_rate;
  87. sys_ck_rate = clk_get_rate(sclk);
  88. for (prcm = rate_table; prcm->mpu_speed; prcm++) {
  89. if (!(prcm->flags & cpu_mask))
  90. continue;
  91. if (prcm->xtal_speed != sys_ck_rate)
  92. continue;
  93. if (prcm->mpu_speed <= rate) {
  94. found_speed = prcm->mpu_speed;
  95. break;
  96. }
  97. }
  98. if (!found_speed) {
  99. printk(KERN_INFO "Could not set MPU rate to %luMHz\n",
  100. rate / 1000000);
  101. return -EINVAL;
  102. }
  103. curr_prcm_set = prcm;
  104. cur_rate = omap2xxx_clk_get_core_rate(dclk);
  105. if (prcm->dpll_speed == cur_rate / 2) {
  106. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1);
  107. } else if (prcm->dpll_speed == cur_rate * 2) {
  108. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  109. } else if (prcm->dpll_speed != cur_rate) {
  110. local_irq_save(flags);
  111. if (prcm->dpll_speed == prcm->xtal_speed)
  112. bypass = 1;
  113. if ((prcm->cm_clksel2_pll & OMAP24XX_CORE_CLK_SRC_MASK) ==
  114. CORE_CLK_SRC_DPLL_X2)
  115. done_rate = CORE_CLK_SRC_DPLL_X2;
  116. else
  117. done_rate = CORE_CLK_SRC_DPLL;
  118. /* MPU divider */
  119. cm_write_mod_reg(prcm->cm_clksel_mpu, MPU_MOD, CM_CLKSEL);
  120. /* dsp + iva1 div(2420), iva2.1(2430) */
  121. cm_write_mod_reg(prcm->cm_clksel_dsp,
  122. OMAP24XX_DSP_MOD, CM_CLKSEL);
  123. cm_write_mod_reg(prcm->cm_clksel_gfx, GFX_MOD, CM_CLKSEL);
  124. /* Major subsystem dividers */
  125. tmp = cm_read_mod_reg(CORE_MOD, CM_CLKSEL1) & OMAP24XX_CLKSEL_DSS2_MASK;
  126. cm_write_mod_reg(prcm->cm_clksel1_core | tmp, CORE_MOD,
  127. CM_CLKSEL1);
  128. if (cpu_is_omap2430())
  129. cm_write_mod_reg(prcm->cm_clksel_mdm,
  130. OMAP2430_MDM_MOD, CM_CLKSEL);
  131. /* x2 to enter omap2xxx_sdrc_init_params() */
  132. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  133. omap2_set_prcm(prcm->cm_clksel1_pll, prcm->base_sdrc_rfr,
  134. bypass);
  135. omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
  136. omap2xxx_sdrc_reprogram(done_rate, 0);
  137. local_irq_restore(flags);
  138. }
  139. return 0;
  140. }
  141. #ifdef CONFIG_CPU_FREQ
  142. /*
  143. * Walk PRCM rate table and fillout cpufreq freq_table
  144. * XXX This should be replaced by an OPP layer in the near future
  145. */
  146. static struct cpufreq_frequency_table *freq_table;
  147. void omap2_clk_init_cpufreq_table(struct cpufreq_frequency_table **table)
  148. {
  149. const struct prcm_config *prcm;
  150. long sys_ck_rate;
  151. int i = 0;
  152. int tbl_sz = 0;
  153. if (!cpu_is_omap24xx())
  154. return;
  155. sys_ck_rate = clk_get_rate(sclk);
  156. for (prcm = rate_table; prcm->mpu_speed; prcm++) {
  157. if (!(prcm->flags & cpu_mask))
  158. continue;
  159. if (prcm->xtal_speed != sys_ck_rate)
  160. continue;
  161. /* don't put bypass rates in table */
  162. if (prcm->dpll_speed == prcm->xtal_speed)
  163. continue;
  164. tbl_sz++;
  165. }
  166. /*
  167. * XXX Ensure that we're doing what CPUFreq expects for this error
  168. * case and the following one
  169. */
  170. if (tbl_sz == 0) {
  171. pr_warning("%s: no matching entries in rate_table\n",
  172. __func__);
  173. return;
  174. }
  175. /* Include the CPUFREQ_TABLE_END terminator entry */
  176. tbl_sz++;
  177. freq_table = kzalloc(sizeof(struct cpufreq_frequency_table) * tbl_sz,
  178. GFP_ATOMIC);
  179. if (!freq_table) {
  180. pr_err("%s: could not kzalloc frequency table\n", __func__);
  181. return;
  182. }
  183. for (prcm = rate_table; prcm->mpu_speed; prcm++) {
  184. if (!(prcm->flags & cpu_mask))
  185. continue;
  186. if (prcm->xtal_speed != sys_ck_rate)
  187. continue;
  188. /* don't put bypass rates in table */
  189. if (prcm->dpll_speed == prcm->xtal_speed)
  190. continue;
  191. freq_table[i].index = i;
  192. freq_table[i].frequency = prcm->mpu_speed / 1000;
  193. i++;
  194. }
  195. freq_table[i].index = i;
  196. freq_table[i].frequency = CPUFREQ_TABLE_END;
  197. *table = &freq_table[0];
  198. }
  199. void omap2_clk_exit_cpufreq_table(struct cpufreq_frequency_table **table)
  200. {
  201. if (!cpu_is_omap24xx())
  202. return;
  203. kfree(freq_table);
  204. }
  205. #endif