speed.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * (C) Copyright 2000-2002
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <74xx_7xx.h>
  25. #include <asm/processor.h>
  26. static const int hid1_multipliers_x_10[] = {
  27. 25, /* 0000 - 2.5x */
  28. 75, /* 0001 - 7.5x */
  29. 70, /* 0010 - 7x */
  30. 10, /* 0011 - bypass */
  31. 20, /* 0100 - 2x */
  32. 65, /* 0101 - 6.5x */
  33. 100, /* 0110 - 10x */
  34. 45, /* 0111 - 4.5x */
  35. 30, /* 1000 - 3x */
  36. 55, /* 1001 - 5.5x */
  37. 40, /* 1010 - 4x */
  38. 50, /* 1011 - 5x */
  39. 80, /* 1100 - 8x */
  40. 60, /* 1101 - 6x */
  41. 35, /* 1110 - 3.5x */
  42. 0 /* 1111 - off */
  43. };
  44. /* ------------------------------------------------------------------------- */
  45. /*
  46. * Measure CPU clock speed (core clock GCLK1, GCLK2)
  47. *
  48. * (Approx. GCLK frequency in Hz)
  49. */
  50. int get_clocks (void)
  51. {
  52. DECLARE_GLOBAL_DATA_PTR;
  53. ulong clock = CFG_BUS_CLK * \
  54. hid1_multipliers_x_10[get_hid1 () >> 28] / 10;
  55. gd->cpu_clk = clock;
  56. gd->bus_clk = CFG_BUS_CLK;
  57. return (0);
  58. }
  59. /* ------------------------------------------------------------------------- */
  60. #if 0 /* disabled XXX - use global data instead */
  61. ulong get_bus_freq (ulong gclk_freq)
  62. {
  63. return CFG_BUS_CLK;
  64. }
  65. #endif /* 0 */
  66. /* ------------------------------------------------------------------------- */