aptina-pll.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*
  2. * Aptina Sensor PLL Configuration
  3. *
  4. * Copyright (C) 2012 Laurent Pinchart <laurent.pinchart@ideasonboard.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * version 2 as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. */
  15. #include <linux/device.h>
  16. #include <linux/gcd.h>
  17. #include <linux/kernel.h>
  18. #include <linux/lcm.h>
  19. #include <linux/module.h>
  20. #include "aptina-pll.h"
  21. int aptina_pll_calculate(struct device *dev,
  22. const struct aptina_pll_limits *limits,
  23. struct aptina_pll *pll)
  24. {
  25. unsigned int mf_min;
  26. unsigned int mf_max;
  27. unsigned int p1_min;
  28. unsigned int p1_max;
  29. unsigned int p1;
  30. unsigned int div;
  31. dev_dbg(dev, "PLL: ext clock %u pix clock %u\n",
  32. pll->ext_clock, pll->pix_clock);
  33. if (pll->ext_clock < limits->ext_clock_min ||
  34. pll->ext_clock > limits->ext_clock_max) {
  35. dev_err(dev, "pll: invalid external clock frequency.\n");
  36. return -EINVAL;
  37. }
  38. if (pll->pix_clock == 0 || pll->pix_clock > limits->pix_clock_max) {
  39. dev_err(dev, "pll: invalid pixel clock frequency.\n");
  40. return -EINVAL;
  41. }
  42. /* Compute the multiplier M and combined N*P1 divisor. */
  43. div = gcd(pll->pix_clock, pll->ext_clock);
  44. pll->m = pll->pix_clock / div;
  45. div = pll->ext_clock / div;
  46. /* We now have the smallest M and N*P1 values that will result in the
  47. * desired pixel clock frequency, but they might be out of the valid
  48. * range. Compute the factor by which we should multiply them given the
  49. * following constraints:
  50. *
  51. * - minimum/maximum multiplier
  52. * - minimum/maximum multiplier output clock frequency assuming the
  53. * minimum/maximum N value
  54. * - minimum/maximum combined N*P1 divisor
  55. */
  56. mf_min = DIV_ROUND_UP(limits->m_min, pll->m);
  57. mf_min = max(mf_min, limits->out_clock_min /
  58. (pll->ext_clock / limits->n_min * pll->m));
  59. mf_min = max(mf_min, limits->n_min * limits->p1_min / div);
  60. mf_max = limits->m_max / pll->m;
  61. mf_max = min(mf_max, limits->out_clock_max /
  62. (pll->ext_clock / limits->n_max * pll->m));
  63. mf_max = min(mf_max, DIV_ROUND_UP(limits->n_max * limits->p1_max, div));
  64. dev_dbg(dev, "pll: mf min %u max %u\n", mf_min, mf_max);
  65. if (mf_min > mf_max) {
  66. dev_err(dev, "pll: no valid combined N*P1 divisor.\n");
  67. return -EINVAL;
  68. }
  69. /*
  70. * We're looking for the highest acceptable P1 value for which a
  71. * multiplier factor MF exists that fulfills the following conditions:
  72. *
  73. * 1. p1 is in the [p1_min, p1_max] range given by the limits and is
  74. * even
  75. * 2. mf is in the [mf_min, mf_max] range computed above
  76. * 3. div * mf is a multiple of p1, in order to compute
  77. * n = div * mf / p1
  78. * m = pll->m * mf
  79. * 4. the internal clock frequency, given by ext_clock / n, is in the
  80. * [int_clock_min, int_clock_max] range given by the limits
  81. * 5. the output clock frequency, given by ext_clock / n * m, is in the
  82. * [out_clock_min, out_clock_max] range given by the limits
  83. *
  84. * The first naive approach is to iterate over all p1 values acceptable
  85. * according to (1) and all mf values acceptable according to (2), and
  86. * stop at the first combination that fulfills (3), (4) and (5). This
  87. * has a O(n^2) complexity.
  88. *
  89. * Instead of iterating over all mf values in the [mf_min, mf_max] range
  90. * we can compute the mf increment between two acceptable values
  91. * according to (3) with
  92. *
  93. * mf_inc = p1 / gcd(div, p1) (6)
  94. *
  95. * and round the minimum up to the nearest multiple of mf_inc. This will
  96. * restrict the number of mf values to be checked.
  97. *
  98. * Furthermore, conditions (4) and (5) only restrict the range of
  99. * acceptable p1 and mf values by modifying the minimum and maximum
  100. * limits. (5) can be expressed as
  101. *
  102. * ext_clock / (div * mf / p1) * m * mf >= out_clock_min
  103. * ext_clock / (div * mf / p1) * m * mf <= out_clock_max
  104. *
  105. * or
  106. *
  107. * p1 >= out_clock_min * div / (ext_clock * m) (7)
  108. * p1 <= out_clock_max * div / (ext_clock * m)
  109. *
  110. * Similarly, (4) can be expressed as
  111. *
  112. * mf >= ext_clock * p1 / (int_clock_max * div) (8)
  113. * mf <= ext_clock * p1 / (int_clock_min * div)
  114. *
  115. * We can thus iterate over the restricted p1 range defined by the
  116. * combination of (1) and (7), and then compute the restricted mf range
  117. * defined by the combination of (2), (6) and (8). If the resulting mf
  118. * range is not empty, any value in the mf range is acceptable. We thus
  119. * select the mf lwoer bound and the corresponding p1 value.
  120. */
  121. if (limits->p1_min == 0) {
  122. dev_err(dev, "pll: P1 minimum value must be >0.\n");
  123. return -EINVAL;
  124. }
  125. p1_min = max(limits->p1_min, DIV_ROUND_UP(limits->out_clock_min * div,
  126. pll->ext_clock * pll->m));
  127. p1_max = min(limits->p1_max, limits->out_clock_max * div /
  128. (pll->ext_clock * pll->m));
  129. for (p1 = p1_max & ~1; p1 >= p1_min; p1 -= 2) {
  130. unsigned int mf_inc = p1 / gcd(div, p1);
  131. unsigned int mf_high;
  132. unsigned int mf_low;
  133. mf_low = roundup(max(mf_min, DIV_ROUND_UP(pll->ext_clock * p1,
  134. limits->int_clock_max * div)), mf_inc);
  135. mf_high = min(mf_max, pll->ext_clock * p1 /
  136. (limits->int_clock_min * div));
  137. if (mf_low > mf_high)
  138. continue;
  139. pll->n = div * mf_low / p1;
  140. pll->m *= mf_low;
  141. pll->p1 = p1;
  142. dev_dbg(dev, "PLL: N %u M %u P1 %u\n", pll->n, pll->m, pll->p1);
  143. return 0;
  144. }
  145. dev_err(dev, "pll: no valid N and P1 divisors found.\n");
  146. return -EINVAL;
  147. }
  148. EXPORT_SYMBOL_GPL(aptina_pll_calculate);
  149. MODULE_DESCRIPTION("Aptina PLL Helpers");
  150. MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
  151. MODULE_LICENSE("GPL v2");