clkt2xxx_dpllcore.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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 = omap2xxx_cm_get_core_clk_src();
  56. if (v == CORE_CLK_SRC_32K)
  57. core_clk = 32768;
  58. else
  59. core_clk *= v;
  60. return core_clk;
  61. }
  62. /*
  63. * Uses the current prcm set to tell if a rate is valid.
  64. * You can go slower, but not faster within a given rate set.
  65. */
  66. static long omap2_dpllcore_round_rate(unsigned long target_rate)
  67. {
  68. u32 high, low, core_clk_src;
  69. core_clk_src = omap2xxx_cm_get_core_clk_src();
  70. if (core_clk_src == CORE_CLK_SRC_DPLL) { /* DPLL clockout */
  71. high = curr_prcm_set->dpll_speed * 2;
  72. low = curr_prcm_set->dpll_speed;
  73. } else { /* DPLL clockout x 2 */
  74. high = curr_prcm_set->dpll_speed;
  75. low = curr_prcm_set->dpll_speed / 2;
  76. }
  77. #ifdef DOWN_VARIABLE_DPLL
  78. if (target_rate > high)
  79. return high;
  80. else
  81. return target_rate;
  82. #else
  83. if (target_rate > low)
  84. return high;
  85. else
  86. return low;
  87. #endif
  88. }
  89. unsigned long omap2_dpllcore_recalc(struct clk_hw *hw,
  90. unsigned long parent_rate)
  91. {
  92. return omap2xxx_clk_get_core_rate();
  93. }
  94. int omap2_reprogram_dpllcore(struct clk_hw *hw, unsigned long rate,
  95. unsigned long parent_rate)
  96. {
  97. struct clk_hw_omap *clk = to_clk_hw_omap(hw);
  98. u32 cur_rate, low, mult, div, valid_rate, done_rate;
  99. u32 bypass = 0;
  100. struct prcm_config tmpset;
  101. const struct dpll_data *dd;
  102. cur_rate = omap2xxx_clk_get_core_rate();
  103. mult = omap2xxx_cm_get_core_clk_src();
  104. if ((rate == (cur_rate / 2)) && (mult == 2)) {
  105. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1);
  106. } else if ((rate == (cur_rate * 2)) && (mult == 1)) {
  107. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  108. } else if (rate != cur_rate) {
  109. valid_rate = omap2_dpllcore_round_rate(rate);
  110. if (valid_rate != rate)
  111. return -EINVAL;
  112. if (mult == 1)
  113. low = curr_prcm_set->dpll_speed;
  114. else
  115. low = curr_prcm_set->dpll_speed / 2;
  116. dd = clk->dpll_data;
  117. if (!dd)
  118. return -EINVAL;
  119. tmpset.cm_clksel1_pll = readl_relaxed(dd->mult_div1_reg);
  120. tmpset.cm_clksel1_pll &= ~(dd->mult_mask |
  121. dd->div1_mask);
  122. div = ((curr_prcm_set->xtal_speed / 1000000) - 1);
  123. tmpset.cm_clksel2_pll = omap2xxx_cm_get_core_pll_config();
  124. tmpset.cm_clksel2_pll &= ~OMAP24XX_CORE_CLK_SRC_MASK;
  125. if (rate > low) {
  126. tmpset.cm_clksel2_pll |= CORE_CLK_SRC_DPLL_X2;
  127. mult = ((rate / 2) / 1000000);
  128. done_rate = CORE_CLK_SRC_DPLL_X2;
  129. } else {
  130. tmpset.cm_clksel2_pll |= CORE_CLK_SRC_DPLL;
  131. mult = (rate / 1000000);
  132. done_rate = CORE_CLK_SRC_DPLL;
  133. }
  134. tmpset.cm_clksel1_pll |= (div << __ffs(dd->mult_mask));
  135. tmpset.cm_clksel1_pll |= (mult << __ffs(dd->div1_mask));
  136. /* Worst case */
  137. tmpset.base_sdrc_rfr = SDRC_RFR_CTRL_BYPASS;
  138. if (rate == curr_prcm_set->xtal_speed) /* If asking for 1-1 */
  139. bypass = 1;
  140. /* For omap2xxx_sdrc_init_params() */
  141. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  142. /* Force dll lock mode */
  143. omap2_set_prcm(tmpset.cm_clksel1_pll, tmpset.base_sdrc_rfr,
  144. bypass);
  145. /* Errata: ret dll entry state */
  146. omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
  147. omap2xxx_sdrc_reprogram(done_rate, 0);
  148. }
  149. return 0;
  150. }
  151. /**
  152. * omap2xxx_clkt_dpllcore_init - clk init function for dpll_ck
  153. * @clk: struct clk *dpll_ck
  154. *
  155. * Store a local copy of @clk in dpll_core_ck so other code can query
  156. * the core rate without having to clk_get(), which can sleep. Must
  157. * only be called once. No return value. XXX If the clock
  158. * registration process is ever changed such that dpll_ck is no longer
  159. * statically defined, this code may need to change to increment some
  160. * kind of use count on dpll_ck.
  161. */
  162. void omap2xxx_clkt_dpllcore_init(struct clk_hw *hw)
  163. {
  164. WARN(dpll_core_ck, "dpll_core_ck already set - should never happen");
  165. dpll_core_ck = to_clk_hw_omap(hw);
  166. }