clkt2xxx_dpllcore.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * DPLL + CORE_CLK composite 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 The DPLL and CORE clocks should be split into two separate clock
  19. * types.
  20. */
  21. #undef DEBUG
  22. #include <linux/kernel.h>
  23. #include <linux/errno.h>
  24. #include <linux/clk.h>
  25. #include <linux/io.h>
  26. #include "clock.h"
  27. #include "clock2xxx.h"
  28. #include "opp2xxx.h"
  29. #include "cm2xxx.h"
  30. #include "cm-regbits-24xx.h"
  31. #include "sdrc.h"
  32. #include "sram.h"
  33. /* #define DOWN_VARIABLE_DPLL 1 */ /* Experimental */
  34. /*
  35. * dpll_core_ck: pointer to the combined dpll_ck + core_ck on OMAP2xxx
  36. * (currently defined as "dpll_ck" in the OMAP2xxx clock tree). Set
  37. * during dpll_ck init and used later by omap2xxx_clk_get_core_rate().
  38. */
  39. static struct clk_hw_omap *dpll_core_ck;
  40. /**
  41. * omap2xxx_clk_get_core_rate - return the CORE_CLK rate
  42. *
  43. * Returns the CORE_CLK rate. CORE_CLK can have one of three rate
  44. * sources on OMAP2xxx: the DPLL CLKOUT rate, DPLL CLKOUTX2, or 32KHz
  45. * (the latter is unusual). This currently should be called with
  46. * struct clk *dpll_ck, which is a composite clock of dpll_ck and
  47. * core_ck.
  48. */
  49. unsigned long omap2xxx_clk_get_core_rate(void)
  50. {
  51. long long core_clk;
  52. u32 v;
  53. WARN_ON(!dpll_core_ck);
  54. core_clk = omap2_get_dpll_rate(dpll_core_ck);
  55. v = omap2_cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
  56. v &= OMAP24XX_CORE_CLK_SRC_MASK;
  57. if (v == CORE_CLK_SRC_32K)
  58. core_clk = 32768;
  59. else
  60. core_clk *= v;
  61. return core_clk;
  62. }
  63. /*
  64. * Uses the current prcm set to tell if a rate is valid.
  65. * You can go slower, but not faster within a given rate set.
  66. */
  67. static long omap2_dpllcore_round_rate(unsigned long target_rate)
  68. {
  69. u32 high, low, core_clk_src;
  70. core_clk_src = omap2_cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
  71. core_clk_src &= OMAP24XX_CORE_CLK_SRC_MASK;
  72. if (core_clk_src == CORE_CLK_SRC_DPLL) { /* DPLL clockout */
  73. high = curr_prcm_set->dpll_speed * 2;
  74. low = curr_prcm_set->dpll_speed;
  75. } else { /* DPLL clockout x 2 */
  76. high = curr_prcm_set->dpll_speed;
  77. low = curr_prcm_set->dpll_speed / 2;
  78. }
  79. #ifdef DOWN_VARIABLE_DPLL
  80. if (target_rate > high)
  81. return high;
  82. else
  83. return target_rate;
  84. #else
  85. if (target_rate > low)
  86. return high;
  87. else
  88. return low;
  89. #endif
  90. }
  91. unsigned long omap2_dpllcore_recalc(struct clk_hw *hw,
  92. unsigned long parent_rate)
  93. {
  94. return omap2xxx_clk_get_core_rate();
  95. }
  96. int omap2_reprogram_dpllcore(struct clk_hw *hw, unsigned long rate,
  97. unsigned long parent_rate)
  98. {
  99. struct clk_hw_omap *clk = to_clk_hw_omap(hw);
  100. u32 cur_rate, low, mult, div, valid_rate, done_rate;
  101. u32 bypass = 0;
  102. struct prcm_config tmpset;
  103. const struct dpll_data *dd;
  104. cur_rate = omap2xxx_clk_get_core_rate();
  105. mult = omap2_cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
  106. mult &= OMAP24XX_CORE_CLK_SRC_MASK;
  107. if ((rate == (cur_rate / 2)) && (mult == 2)) {
  108. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1);
  109. } else if ((rate == (cur_rate * 2)) && (mult == 1)) {
  110. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  111. } else if (rate != cur_rate) {
  112. valid_rate = omap2_dpllcore_round_rate(rate);
  113. if (valid_rate != rate)
  114. return -EINVAL;
  115. if (mult == 1)
  116. low = curr_prcm_set->dpll_speed;
  117. else
  118. low = curr_prcm_set->dpll_speed / 2;
  119. dd = clk->dpll_data;
  120. if (!dd)
  121. return -EINVAL;
  122. tmpset.cm_clksel1_pll = __raw_readl(dd->mult_div1_reg);
  123. tmpset.cm_clksel1_pll &= ~(dd->mult_mask |
  124. dd->div1_mask);
  125. div = ((curr_prcm_set->xtal_speed / 1000000) - 1);
  126. tmpset.cm_clksel2_pll = omap2_cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
  127. tmpset.cm_clksel2_pll &= ~OMAP24XX_CORE_CLK_SRC_MASK;
  128. if (rate > low) {
  129. tmpset.cm_clksel2_pll |= CORE_CLK_SRC_DPLL_X2;
  130. mult = ((rate / 2) / 1000000);
  131. done_rate = CORE_CLK_SRC_DPLL_X2;
  132. } else {
  133. tmpset.cm_clksel2_pll |= CORE_CLK_SRC_DPLL;
  134. mult = (rate / 1000000);
  135. done_rate = CORE_CLK_SRC_DPLL;
  136. }
  137. tmpset.cm_clksel1_pll |= (div << __ffs(dd->mult_mask));
  138. tmpset.cm_clksel1_pll |= (mult << __ffs(dd->div1_mask));
  139. /* Worst case */
  140. tmpset.base_sdrc_rfr = SDRC_RFR_CTRL_BYPASS;
  141. if (rate == curr_prcm_set->xtal_speed) /* If asking for 1-1 */
  142. bypass = 1;
  143. /* For omap2xxx_sdrc_init_params() */
  144. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  145. /* Force dll lock mode */
  146. omap2_set_prcm(tmpset.cm_clksel1_pll, tmpset.base_sdrc_rfr,
  147. bypass);
  148. /* Errata: ret dll entry state */
  149. omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
  150. omap2xxx_sdrc_reprogram(done_rate, 0);
  151. }
  152. return 0;
  153. }
  154. /**
  155. * omap2xxx_clkt_dpllcore_init - clk init function for dpll_ck
  156. * @clk: struct clk *dpll_ck
  157. *
  158. * Store a local copy of @clk in dpll_core_ck so other code can query
  159. * the core rate without having to clk_get(), which can sleep. Must
  160. * only be called once. No return value. XXX If the clock
  161. * registration process is ever changed such that dpll_ck is no longer
  162. * statically defined, this code may need to change to increment some
  163. * kind of use count on dpll_ck.
  164. */
  165. void omap2xxx_clkt_dpllcore_init(struct clk_hw *hw)
  166. {
  167. WARN(dpll_core_ck, "dpll_core_ck already set - should never happen");
  168. dpll_core_ck = to_clk_hw_omap(hw);
  169. }