speed.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * (C) Copyright 2000-2007
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * Copyright (C) 2004-2006 Freescale Semiconductor, Inc.
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. *
  25. * Based on the MPC83xx code.
  26. */
  27. #include <common.h>
  28. #include <mpc512x.h>
  29. #include <command.h>
  30. #include <asm/processor.h>
  31. DECLARE_GLOBAL_DATA_PTR;
  32. static int spmf_mult[] = {
  33. 68, 1, 12, 16,
  34. 20, 24, 28, 32,
  35. 36, 40, 44, 48,
  36. 52, 56, 60, 64
  37. };
  38. static int cpmf_mult[][2] = {
  39. {0, 1}, {0, 1}, /* 0 and 1 are not valid */
  40. {1, 1}, {3, 2},
  41. {2, 1}, {5, 2},
  42. {3, 1}, {7, 2},
  43. {0, 1}, {0, 1}, /* and all above 7 are not valid too */
  44. {0, 1}, {0, 1},
  45. {0, 1}, {0, 1},
  46. {0, 1}, {0, 1}
  47. };
  48. static int sys_dividors[][2] = {
  49. {2, 1}, {5, 2}, {3, 1}, {7, 2}, {4, 1},
  50. {9, 2}, {5, 1}, {7, 1}, {6, 1}, {8, 1},
  51. {9, 1}, {11, 1}, {10, 1}, {12, 1}, {13, 1},
  52. {15, 1}, {14, 1}, {16, 1}, {17, 1}, {19, 1},
  53. {18, 1}, {20, 1}, {21, 1}, {23, 1}, {22, 1},
  54. {24, 1}, {25, 1}, {27, 1}, {26, 1}, {28, 1},
  55. {29, 1}, {31, 1}, {30, 1}, {32, 1}, {33, 1}
  56. };
  57. int get_clocks (void)
  58. {
  59. volatile immap_t *im = (immap_t *) CFG_IMMR;
  60. u8 spmf;
  61. u8 cpmf;
  62. u8 sys_div;
  63. u8 ips_div;
  64. u32 ref_clk = CFG_MPC512X_CLKIN;
  65. u32 spll;
  66. u32 sys_clk;
  67. u32 core_clk;
  68. u32 csb_clk;
  69. u32 ips_clk;
  70. if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
  71. return -1;
  72. spmf = (im->clk.spmr & SPMR_SPMF) >> SPMR_SPMF_SHIFT;
  73. spll = ref_clk * spmf_mult[spmf];
  74. sys_div = (im->clk.scfr[1] & SCFR2_SYS_DIV) >> SCFR2_SYS_DIV_SHIFT;
  75. sys_clk = (spll * sys_dividors[sys_div][1]) / sys_dividors[sys_div][0];
  76. csb_clk = sys_clk / 2;
  77. cpmf = (im->clk.spmr & SPMR_CPMF) >> SPMR_CPMF_SHIFT;
  78. core_clk = (csb_clk * cpmf_mult[cpmf][0]) / cpmf_mult[cpmf][1];
  79. ips_div = (im->clk.scfr[0] & SCFR1_IPS_DIV_MASK) >> SCFR1_IPS_DIV_SHIFT;
  80. if (ips_div != 0) {
  81. ips_clk = csb_clk / ips_div;
  82. } else {
  83. /* in case we cannot get a sane IPS divisor, fail gracefully */
  84. ips_clk = 0;
  85. }
  86. gd->ips_clk = ips_clk;
  87. gd->csb_clk = csb_clk;
  88. gd->cpu_clk = core_clk;
  89. gd->bus_clk = csb_clk;
  90. return 0;
  91. }
  92. /********************************************
  93. * get_bus_freq
  94. * return system bus freq in Hz
  95. *********************************************/
  96. ulong get_bus_freq (ulong dummy)
  97. {
  98. return gd->csb_clk;
  99. }
  100. int do_clocks (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
  101. {
  102. printf ("Clock configuration:\n");
  103. printf (" CPU: %4d MHz\n", gd->cpu_clk / 1000000);
  104. printf (" Coherent System Bus: %4d MHz\n", gd->csb_clk / 1000000);
  105. printf (" IPS Bus: %4d MHz\n", gd->ips_clk / 1000000);
  106. printf (" DDR: %4d MHz\n", 2 * gd->csb_clk / 1000000);
  107. return 0;
  108. }
  109. U_BOOT_CMD(clocks, 1, 0, do_clocks,
  110. "clocks - print clock configuration\n",
  111. " clocks\n"
  112. );
  113. int prt_mpc512x_clks (void)
  114. {
  115. do_clocks (NULL, 0, 0, NULL);
  116. return (0);
  117. }