clkt2xxx_dpllcore.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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_3xxx.h"
  30. #include "cm-regbits-24xx.h"
  31. #include "sdrc.h"
  32. #include "sram.h"
  33. /* #define DOWN_VARIABLE_DPLL 1 */ /* Experimental */
  34. /**
  35. * omap2xxx_clk_get_core_rate - return the CORE_CLK rate
  36. * @clk: pointer to the combined dpll_ck + core_ck (currently "dpll_ck")
  37. *
  38. * Returns the CORE_CLK rate. CORE_CLK can have one of three rate
  39. * sources on OMAP2xxx: the DPLL CLKOUT rate, DPLL CLKOUTX2, or 32KHz
  40. * (the latter is unusual). This currently should be called with
  41. * struct clk *dpll_ck, which is a composite clock of dpll_ck and
  42. * core_ck.
  43. */
  44. unsigned long omap2xxx_clk_get_core_rate(struct clk *clk)
  45. {
  46. long long core_clk;
  47. u32 v;
  48. core_clk = omap2_get_dpll_rate(clk);
  49. v = omap2_cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
  50. v &= OMAP24XX_CORE_CLK_SRC_MASK;
  51. if (v == CORE_CLK_SRC_32K)
  52. core_clk = 32768;
  53. else
  54. core_clk *= v;
  55. return core_clk;
  56. }
  57. /*
  58. * Uses the current prcm set to tell if a rate is valid.
  59. * You can go slower, but not faster within a given rate set.
  60. */
  61. static long omap2_dpllcore_round_rate(unsigned long target_rate)
  62. {
  63. u32 high, low, core_clk_src;
  64. core_clk_src = omap2_cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
  65. core_clk_src &= OMAP24XX_CORE_CLK_SRC_MASK;
  66. if (core_clk_src == CORE_CLK_SRC_DPLL) { /* DPLL clockout */
  67. high = curr_prcm_set->dpll_speed * 2;
  68. low = curr_prcm_set->dpll_speed;
  69. } else { /* DPLL clockout x 2 */
  70. high = curr_prcm_set->dpll_speed;
  71. low = curr_prcm_set->dpll_speed / 2;
  72. }
  73. #ifdef DOWN_VARIABLE_DPLL
  74. if (target_rate > high)
  75. return high;
  76. else
  77. return target_rate;
  78. #else
  79. if (target_rate > low)
  80. return high;
  81. else
  82. return low;
  83. #endif
  84. }
  85. unsigned long omap2_dpllcore_recalc(struct clk *clk)
  86. {
  87. return omap2xxx_clk_get_core_rate(clk);
  88. }
  89. int omap2_reprogram_dpllcore(struct clk *clk, unsigned long rate)
  90. {
  91. u32 cur_rate, low, mult, div, valid_rate, done_rate;
  92. u32 bypass = 0;
  93. struct prcm_config tmpset;
  94. const struct dpll_data *dd;
  95. cur_rate = omap2xxx_clk_get_core_rate(dclk);
  96. mult = omap2_cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
  97. mult &= OMAP24XX_CORE_CLK_SRC_MASK;
  98. if ((rate == (cur_rate / 2)) && (mult == 2)) {
  99. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1);
  100. } else if ((rate == (cur_rate * 2)) && (mult == 1)) {
  101. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  102. } else if (rate != cur_rate) {
  103. valid_rate = omap2_dpllcore_round_rate(rate);
  104. if (valid_rate != rate)
  105. return -EINVAL;
  106. if (mult == 1)
  107. low = curr_prcm_set->dpll_speed;
  108. else
  109. low = curr_prcm_set->dpll_speed / 2;
  110. dd = clk->dpll_data;
  111. if (!dd)
  112. return -EINVAL;
  113. tmpset.cm_clksel1_pll = __raw_readl(dd->mult_div1_reg);
  114. tmpset.cm_clksel1_pll &= ~(dd->mult_mask |
  115. dd->div1_mask);
  116. div = ((curr_prcm_set->xtal_speed / 1000000) - 1);
  117. tmpset.cm_clksel2_pll = omap2_cm_read_mod_reg(PLL_MOD, CM_CLKSEL2);
  118. tmpset.cm_clksel2_pll &= ~OMAP24XX_CORE_CLK_SRC_MASK;
  119. if (rate > low) {
  120. tmpset.cm_clksel2_pll |= CORE_CLK_SRC_DPLL_X2;
  121. mult = ((rate / 2) / 1000000);
  122. done_rate = CORE_CLK_SRC_DPLL_X2;
  123. } else {
  124. tmpset.cm_clksel2_pll |= CORE_CLK_SRC_DPLL;
  125. mult = (rate / 1000000);
  126. done_rate = CORE_CLK_SRC_DPLL;
  127. }
  128. tmpset.cm_clksel1_pll |= (div << __ffs(dd->mult_mask));
  129. tmpset.cm_clksel1_pll |= (mult << __ffs(dd->div1_mask));
  130. /* Worst case */
  131. tmpset.base_sdrc_rfr = SDRC_RFR_CTRL_BYPASS;
  132. if (rate == curr_prcm_set->xtal_speed) /* If asking for 1-1 */
  133. bypass = 1;
  134. /* For omap2xxx_sdrc_init_params() */
  135. omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
  136. /* Force dll lock mode */
  137. omap2_set_prcm(tmpset.cm_clksel1_pll, tmpset.base_sdrc_rfr,
  138. bypass);
  139. /* Errata: ret dll entry state */
  140. omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
  141. omap2xxx_sdrc_reprogram(done_rate, 0);
  142. }
  143. return 0;
  144. }