ics307_clk.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. #include <asm/io.h>
  24. #include "ics307_clk.h"
  25. #if defined(CONFIG_FSL_NGPIXIS)
  26. #include "ngpixis.h"
  27. #define fpga_reg pixis
  28. #elif defined(CONFIG_FSL_QIXIS)
  29. #include "qixis.h"
  30. #define fpga_reg ((struct qixis *)QIXIS_BASE)
  31. #else
  32. #include "pixis.h"
  33. #define fpga_reg pixis
  34. #endif
  35. /* define for SYS CLK or CLK1Frequency */
  36. #define TTL 1
  37. #define CLK2 0
  38. #define CRYSTAL 0
  39. #define MAX_VDW (511 + 8)
  40. #define MAX_RDW (127 + 2)
  41. #define MIN_VDW (4 + 8)
  42. #define MIN_RDW (1 + 2)
  43. #define NUM_OD_SETTING 8
  44. /*
  45. * These defines cover the industrial temperature range part,
  46. * for commercial, change below to 400000 and 55000, respectively
  47. */
  48. #define MAX_VCO 360000
  49. #define MIN_VCO 60000
  50. /* decode S[0-2] to Output Divider (OD) */
  51. static u8 ics307_s_to_od[] = {
  52. 10, 2, 8, 4, 5, 7, 3, 6
  53. };
  54. /*
  55. * Find one solution to generate required frequency for SYSCLK
  56. * out_freq: KHz, required frequency to the SYSCLK
  57. * the result will be retuned with component RDW, VDW, OD, TTL,
  58. * CLK2 and crystal
  59. */
  60. unsigned long ics307_sysclk_calculator(unsigned long out_freq)
  61. {
  62. const unsigned long input_freq = CONFIG_ICS307_REFCLK_HZ;
  63. unsigned long vdw, rdw, odp, s_vdw = 0, s_rdw = 0, s_odp = 0, od;
  64. unsigned long tmp_out, diff, result = 0;
  65. int found = 0;
  66. for (odp = 0; odp < NUM_OD_SETTING; odp++) {
  67. od = ics307_s_to_od[odp];
  68. if (od * out_freq < MIN_VCO || od * out_freq > MAX_VCO)
  69. continue;
  70. for (rdw = MIN_RDW; rdw <= MAX_RDW; rdw++) {
  71. /* Calculate the VDW */
  72. vdw = out_freq * 1000 * od * rdw / (input_freq * 2);
  73. if (vdw > MAX_VDW)
  74. vdw = MAX_VDW;
  75. if (vdw < MIN_VDW)
  76. continue;
  77. /* Calculate the temp out frequency */
  78. tmp_out = input_freq * 2 * vdw / (rdw * od * 1000);
  79. diff = MAX(out_freq, tmp_out) - MIN(out_freq, tmp_out);
  80. /*
  81. * calculate the percent, the precision is 1/1000
  82. * If greater than 1/1000, continue
  83. * otherwise, we think the solution is we required
  84. */
  85. if (diff * 1000 / out_freq > 1)
  86. continue;
  87. else {
  88. s_vdw = vdw;
  89. s_rdw = rdw;
  90. s_odp = odp;
  91. found = 1;
  92. break;
  93. }
  94. }
  95. }
  96. if (found)
  97. result = (s_rdw - 2) | (s_vdw - 8) << 7 | s_odp << 16 |
  98. CLK2 << 19 | TTL << 21 | CRYSTAL << 22;
  99. debug("ICS307-02: RDW: %ld, VDW: %ld, OD: %d\n", s_rdw - 2, s_vdw - 8,
  100. ics307_s_to_od[s_odp]);
  101. return result;
  102. }
  103. /*
  104. * Calculate frequency being generated by ICS307-02 clock chip based upon
  105. * the control bytes being programmed into it.
  106. */
  107. static unsigned long ics307_clk_freq(u8 cw0, u8 cw1, u8 cw2)
  108. {
  109. const unsigned long input_freq = CONFIG_ICS307_REFCLK_HZ;
  110. unsigned long vdw = ((cw1 << 1) & 0x1FE) + ((cw2 >> 7) & 1);
  111. unsigned long rdw = cw2 & 0x7F;
  112. unsigned long od = ics307_s_to_od[cw0 & 0x7];
  113. unsigned long freq;
  114. /*
  115. * CLK1 Freq = Input Frequency * 2 * (VDW + 8) / ((RDW + 2) * OD)
  116. *
  117. * cw0: C1 C0 TTL F1 F0 S2 S1 S0
  118. * cw1: V8 V7 V6 V5 V4 V3 V2 V1
  119. * cw2: V0 R6 R5 R4 R3 R2 R1 R0
  120. *
  121. * R6:R0 = Reference Divider Word (RDW)
  122. * V8:V0 = VCO Divider Word (VDW)
  123. * S2:S0 = Output Divider Select (OD)
  124. * F1:F0 = Function of CLK2 Output
  125. * TTL = duty cycle
  126. * C1:C0 = internal load capacitance for cyrstal
  127. *
  128. */
  129. freq = input_freq * 2 * (vdw + 8) / ((rdw + 2) * od);
  130. debug("ICS307: CW[0-2]: %02X %02X %02X => %lu Hz\n", cw0, cw1, cw2,
  131. freq);
  132. return freq;
  133. }
  134. unsigned long get_board_sys_clk(void)
  135. {
  136. return ics307_clk_freq(
  137. in_8(&fpga_reg->sclk[0]),
  138. in_8(&fpga_reg->sclk[1]),
  139. in_8(&fpga_reg->sclk[2]));
  140. }
  141. unsigned long get_board_ddr_clk(void)
  142. {
  143. return ics307_clk_freq(
  144. in_8(&fpga_reg->dclk[0]),
  145. in_8(&fpga_reg->dclk[1]),
  146. in_8(&fpga_reg->dclk[2]));
  147. }