timer.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. #define TIMER_LOAD_VAL 0xffffffff
  39. /* macro to read the 32 bit timer */
  40. #define READ_TIMER (*(volatile ulong *)(CONFIG_SYS_TIMERBASE+4))
  41. static ulong timestamp;
  42. static ulong lastdec;
  43. #define TIMER_ENABLE (1 << 7)
  44. #define TIMER_MODE_MSK (1 << 6)
  45. #define TIMER_MODE_FR (0 << 6)
  46. #define TIMER_MODE_PD (1 << 6)
  47. #define TIMER_INT_EN (1 << 5)
  48. #define TIMER_PRS_MSK (3 << 2)
  49. #define TIMER_PRS_8S (1 << 3)
  50. #define TIMER_SIZE_MSK (1 << 2)
  51. #define TIMER_ONE_SHT (1 << 0)
  52. int timer_init (void)
  53. {
  54. ulong tmr_ctrl_val;
  55. /* 1st disable the Timer */
  56. tmr_ctrl_val = *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 8);
  57. tmr_ctrl_val &= ~TIMER_ENABLE;
  58. *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 8) = tmr_ctrl_val;
  59. /*
  60. * The Timer Control Register has one Undefined/Shouldn't Use Bit
  61. * So we should do read/modify/write Operation
  62. */
  63. /*
  64. * Timer Mode : Free Running
  65. * Interrupt : Disabled
  66. * Prescale : 8 Stage, Clk/256
  67. * Tmr Siz : 16 Bit Counter
  68. * Tmr in Wrapping Mode
  69. */
  70. tmr_ctrl_val = *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 8);
  71. tmr_ctrl_val &= ~(TIMER_MODE_MSK | TIMER_INT_EN | TIMER_PRS_MSK | TIMER_SIZE_MSK | TIMER_ONE_SHT );
  72. tmr_ctrl_val |= (TIMER_ENABLE | TIMER_PRS_8S);
  73. *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 8) = tmr_ctrl_val;
  74. /* init the timestamp and lastdec value */
  75. reset_timer_masked();
  76. return 0;
  77. }
  78. /*
  79. * timer without interrupts
  80. */
  81. void reset_timer (void)
  82. {
  83. reset_timer_masked ();
  84. }
  85. ulong get_timer (ulong base)
  86. {
  87. return get_timer_masked () - base;
  88. }
  89. void set_timer (ulong t)
  90. {
  91. timestamp = t;
  92. }
  93. /* delay x useconds AND preserve advance timestamp value */
  94. void __udelay (unsigned long usec)
  95. {
  96. ulong tmo, tmp;
  97. if(usec >= 1000){ /* if "big" number, spread normalization to seconds */
  98. tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
  99. tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
  100. tmo /= 1000; /* finish normalize. */
  101. }else{ /* else small number, don't kill it prior to HZ multiply */
  102. tmo = usec * CONFIG_SYS_HZ;
  103. tmo /= (1000*1000);
  104. }
  105. tmp = get_timer (0); /* get current timestamp */
  106. if( (tmo + tmp + 1) < tmp ) /* if setting this fordward will roll time stamp */
  107. reset_timer_masked (); /* reset "advancing" timestamp to 0, set lastdec value */
  108. else
  109. tmo += tmp; /* else, set advancing stamp wake up time */
  110. while (get_timer_masked () < tmo)/* loop till event */
  111. /*NOP*/;
  112. }
  113. void reset_timer_masked (void)
  114. {
  115. /* reset time */
  116. lastdec = READ_TIMER; /* capure current decrementer value time */
  117. timestamp = 0; /* start "advancing" time stamp from 0 */
  118. }
  119. ulong get_timer_masked (void)
  120. {
  121. ulong now = READ_TIMER; /* current tick value */
  122. if (lastdec >= now) { /* normal mode (non roll) */
  123. /* normal mode */
  124. timestamp += lastdec - now; /* move stamp fordward with absoulte diff ticks */
  125. } else { /* we have overflow of the count down timer */
  126. /* nts = ts + ld + (TLV - now)
  127. * ts=old stamp, ld=time that passed before passing through -1
  128. * (TLV-now) amount of time after passing though -1
  129. * nts = new "advancing time stamp"...it could also roll and cause problems.
  130. */
  131. timestamp += lastdec + TIMER_LOAD_VAL - now;
  132. }
  133. lastdec = now;
  134. return timestamp;
  135. }
  136. /* waits specified delay value and resets timestamp */
  137. void udelay_masked (unsigned long usec)
  138. {
  139. ulong tmo;
  140. ulong endtime;
  141. signed long diff;
  142. if (usec >= 1000) { /* if "big" number, spread normalization to seconds */
  143. tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
  144. tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
  145. tmo /= 1000; /* finish normalize. */
  146. } else { /* else small number, don't kill it prior to HZ multiply */
  147. tmo = usec * CONFIG_SYS_HZ;
  148. tmo /= (1000*1000);
  149. }
  150. endtime = get_timer_masked () + tmo;
  151. do {
  152. ulong now = get_timer_masked ();
  153. diff = endtime - now;
  154. } while (diff >= 0);
  155. }
  156. /*
  157. * This function is derived from PowerPC code (read timebase as long long).
  158. * On ARM it just returns the timer value.
  159. */
  160. unsigned long long get_ticks(void)
  161. {
  162. return get_timer(0);
  163. }
  164. /*
  165. * This function is derived from PowerPC code (timebase clock frequency).
  166. * On ARM it returns the number of timer ticks per second.
  167. */
  168. ulong get_tbclk (void)
  169. {
  170. ulong tbclk;
  171. tbclk = CONFIG_SYS_HZ;
  172. return tbclk;
  173. }