timer.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*
  2. * (C) Copyright 2003
  3. * Texas Instruments <www.ti.com>
  4. *
  5. * (C) Copyright 2002
  6. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  7. * Marius Groeger <mgroeger@sysgo.de>
  8. *
  9. * (C) Copyright 2002
  10. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  11. * Alex Zuepke <azu@sysgo.de>
  12. *
  13. * (C) Copyright 2002-2004
  14. * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
  15. *
  16. * (C) Copyright 2004
  17. * Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
  18. *
  19. * See file CREDITS for list of people who contributed to this
  20. * project.
  21. *
  22. * This program is free software; you can redistribute it and/or
  23. * modify it under the terms of the GNU General Public License as
  24. * published by the Free Software Foundation; either version 2 of
  25. * the License, or (at your option) any later version.
  26. *
  27. * This program is distributed in the hope that it will be useful,
  28. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  29. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  30. * GNU General Public License for more details.
  31. *
  32. * You should have received a copy of the GNU General Public License
  33. * along with this program; if not, write to the Free Software
  34. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  35. * MA 02111-1307 USA
  36. */
  37. #include <common.h>
  38. #include <asm/io.h>
  39. #define TIMER_CLOCK (CONFIG_SYS_CLK_FREQ / (2 << CONFIG_SYS_PTV))
  40. #define TIMER_LOAD_VAL 0xffffffff
  41. /* macro to read the 32 bit timer */
  42. #define READ_TIMER readl(CONFIG_SYS_TIMERBASE+8) \
  43. / (TIMER_CLOCK / CONFIG_SYS_HZ)
  44. DECLARE_GLOBAL_DATA_PTR;
  45. #define timestamp gd->arch.tbl
  46. #define lastdec gd->arch.lastinc
  47. int timer_init (void)
  48. {
  49. int32_t val;
  50. /* Start the decrementer ticking down from 0xffffffff */
  51. *((int32_t *) (CONFIG_SYS_TIMERBASE + LOAD_TIM)) = TIMER_LOAD_VAL;
  52. val = MPUTIM_ST | MPUTIM_AR | MPUTIM_CLOCK_ENABLE | (CONFIG_SYS_PTV << MPUTIM_PTV_BIT);
  53. *((int32_t *) (CONFIG_SYS_TIMERBASE + CNTL_TIMER)) = val;
  54. /* init the timestamp and lastdec value */
  55. reset_timer_masked();
  56. return 0;
  57. }
  58. /*
  59. * timer without interrupts
  60. */
  61. ulong get_timer (ulong base)
  62. {
  63. return get_timer_masked () - base;
  64. }
  65. /* delay x useconds AND preserve advance timestamp value */
  66. void __udelay (unsigned long usec)
  67. {
  68. ulong tmo, tmp;
  69. if(usec >= 1000){ /* if "big" number, spread normalization to seconds */
  70. tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
  71. tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
  72. tmo /= 1000; /* finish normalize. */
  73. }else{ /* else small number, don't kill it prior to HZ multiply */
  74. tmo = usec * CONFIG_SYS_HZ;
  75. tmo /= (1000*1000);
  76. }
  77. tmp = get_timer (0); /* get current timestamp */
  78. if( (tmo + tmp + 1) < tmp ) /* if setting this fordward will roll time stamp */
  79. reset_timer_masked (); /* reset "advancing" timestamp to 0, set lastdec value */
  80. else
  81. tmo += tmp; /* else, set advancing stamp wake up time */
  82. while (get_timer_masked () < tmo)/* loop till event */
  83. /*NOP*/;
  84. }
  85. void reset_timer_masked (void)
  86. {
  87. /* reset time */
  88. lastdec = READ_TIMER; /* capure current decrementer value time */
  89. timestamp = 0; /* start "advancing" time stamp from 0 */
  90. }
  91. ulong get_timer_masked (void)
  92. {
  93. ulong now = READ_TIMER; /* current tick value */
  94. if (lastdec >= now) { /* normal mode (non roll) */
  95. /* normal mode */
  96. timestamp += lastdec - now; /* move stamp fordward with absoulte diff ticks */
  97. } else { /* we have overflow of the count down timer */
  98. /* nts = ts + ld + (TLV - now)
  99. * ts=old stamp, ld=time that passed before passing through -1
  100. * (TLV-now) amount of time after passing though -1
  101. * nts = new "advancing time stamp"...it could also roll and cause problems.
  102. */
  103. timestamp += lastdec + (TIMER_LOAD_VAL / (TIMER_CLOCK /
  104. CONFIG_SYS_HZ)) - now;
  105. }
  106. lastdec = now;
  107. return timestamp;
  108. }
  109. /* waits specified delay value and resets timestamp */
  110. void udelay_masked (unsigned long usec)
  111. {
  112. ulong tmo;
  113. ulong endtime;
  114. signed long diff;
  115. if (usec >= 1000) { /* if "big" number, spread normalization to seconds */
  116. tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
  117. tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
  118. tmo /= 1000; /* finish normalize. */
  119. } else { /* else small number, don't kill it prior to HZ multiply */
  120. tmo = usec * CONFIG_SYS_HZ;
  121. tmo /= (1000*1000);
  122. }
  123. endtime = get_timer_masked () + tmo;
  124. do {
  125. ulong now = get_timer_masked ();
  126. diff = endtime - now;
  127. } while (diff >= 0);
  128. }
  129. /*
  130. * This function is derived from PowerPC code (read timebase as long long).
  131. * On ARM it just returns the timer value.
  132. */
  133. unsigned long long get_ticks(void)
  134. {
  135. return get_timer(0);
  136. }
  137. /*
  138. * This function is derived from PowerPC code (timebase clock frequency).
  139. * On ARM it returns the number of timer ticks per second.
  140. */
  141. ulong get_tbclk (void)
  142. {
  143. return CONFIG_SYS_HZ;
  144. }