ics307_clk.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright 2010 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. #ifdef CONFIG_FSL_NGPIXIS
  26. #include "ngpixis.h"
  27. #else
  28. #include "pixis.h"
  29. #endif
  30. /* decode S[0-2] to Output Divider (OD) */
  31. static u8 ics307_s_to_od[] = {
  32. 10, 2, 8, 4, 5, 7, 3, 6
  33. };
  34. /*
  35. * Calculate frequency being generated by ICS307-02 clock chip based upon
  36. * the control bytes being programmed into it.
  37. */
  38. static unsigned long ics307_clk_freq(u8 cw0, u8 cw1, u8 cw2)
  39. {
  40. const unsigned long input_freq = CONFIG_ICS307_REFCLK_HZ;
  41. unsigned long vdw = ((cw1 << 1) & 0x1FE) + ((cw2 >> 7) & 1);
  42. unsigned long rdw = cw2 & 0x7F;
  43. unsigned long od = ics307_s_to_od[cw0 & 0x7];
  44. unsigned long freq;
  45. /*
  46. * CLK1 Freq = Input Frequency * 2 * (VDW + 8) / ((RDW + 2) * OD)
  47. *
  48. * cw0: C1 C0 TTL F1 F0 S2 S1 S0
  49. * cw1: V8 V7 V6 V5 V4 V3 V2 V1
  50. * cw2: V0 R6 R5 R4 R3 R2 R1 R0
  51. *
  52. * R6:R0 = Reference Divider Word (RDW)
  53. * V8:V0 = VCO Divider Word (VDW)
  54. * S2:S0 = Output Divider Select (OD)
  55. * F1:F0 = Function of CLK2 Output
  56. * TTL = duty cycle
  57. * C1:C0 = internal load capacitance for cyrstal
  58. *
  59. */
  60. freq = input_freq * 2 * (vdw + 8) / ((rdw + 2) * od);
  61. debug("ICS307: CW[0-2]: %02X %02X %02X => %lu Hz\n", cw0, cw1, cw2,
  62. freq);
  63. return freq;
  64. }
  65. unsigned long get_board_sys_clk(void)
  66. {
  67. return ics307_clk_freq(
  68. in_8(&pixis->sclk[0]),
  69. in_8(&pixis->sclk[1]),
  70. in_8(&pixis->sclk[2]));
  71. }
  72. unsigned long get_board_ddr_clk(void)
  73. {
  74. return ics307_clk_freq(
  75. in_8(&pixis->dclk[0]),
  76. in_8(&pixis->dclk[1]),
  77. in_8(&pixis->dclk[2]));
  78. }