speed.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /********************************************************************
  2. *
  3. * Unless otherwise specified, Copyright (C) 2004-2005 Barco Control Rooms
  4. *
  5. * $Source: /home/services/cvs/firmware/ppc/u-boot-1.1.2/board/barco/speed.h,v $
  6. * $Revision: 1.2 $
  7. * $Author: mleeman $
  8. * $Date: 2005/02/21 12:48:58 $
  9. *
  10. * Last ChangeLog Entry
  11. * $Log: speed.h,v $
  12. * Revision 1.2 2005/02/21 12:48:58 mleeman
  13. * update of copyright years (feedback wd)
  14. *
  15. * Revision 1.1 2005/02/14 09:23:46 mleeman
  16. * - moved 'barcohydra' directory to a more generic barco; since we will be
  17. * supporting and adding multiple boards
  18. *
  19. * Revision 1.2 2005/02/09 12:56:23 mleeman
  20. * add generic header to track changes in sources
  21. *
  22. *
  23. *******************************************************************/
  24. /*
  25. * (C) Copyright 2000
  26. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  27. *
  28. * See file CREDITS for list of people who contributed to this
  29. * project.
  30. *
  31. * This program is free software; you can redistribute it and/or
  32. * modify it under the terms of the GNU General Public License as
  33. * published by the Free Software Foundation; either version 2 of
  34. * the License, or (at your option) any later version.
  35. *
  36. * This program is distributed in the hope that it will be useful,
  37. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  38. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  39. * GNU General Public License for more details.
  40. *
  41. * You should have received a copy of the GNU General Public License
  42. * along with this program; if not, write to the Free Software
  43. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  44. * MA 02111-1307 USA
  45. */
  46. /*-----------------------------------------------------------------------
  47. * Timer value for timer 2, ICLK = 10
  48. *
  49. * SPEED_FCOUNT2 = GCLK / (16 * (TIMER_TMR_PS + 1))
  50. * SPEED_TMR3_PS = (GCLK / (16 * SPEED_FCOUNT3)) - 1
  51. *
  52. * SPEED_FCOUNT2 timer 2 counting frequency
  53. * GCLK CPU clock
  54. * SPEED_TMR2_PS prescaler
  55. */
  56. #define SPEED_TMR2_PS (250 - 1) /* divide by 250 */
  57. /*-----------------------------------------------------------------------
  58. * Timer value for PIT
  59. *
  60. * PIT_TIME = SPEED_PITC / PITRTCLK
  61. * PITRTCLK = 8192
  62. */
  63. #define SPEED_PITC (82 << 16) /* start counting from 82 */
  64. /*
  65. * The new value for PTA is calculated from
  66. *
  67. * PTA = (gclk * Trefresh) / (2 ^ (2 * DFBRG) * PTP * NCS)
  68. *
  69. * gclk CPU clock (not bus clock !)
  70. * Trefresh Refresh cycle * 4 (four word bursts used)
  71. * DFBRG For normal mode (no clock reduction) always 0
  72. * PTP Prescaler (already adjusted for no. of banks and 4K / 8K refresh)
  73. * NCS Number of SDRAM banks (chip selects) on this UPM.
  74. */