timer.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. #include <arm926ejs.h>
  40. #define TIMER_LOAD_VAL 0xffffffff
  41. /* macro to read the 32 bit timer */
  42. #define READ_TIMER readl(CONFIG_SYS_TIMERBASE + 20)
  43. static ulong timestamp;
  44. static ulong lastdec;
  45. /* nothing really to do with interrupts, just starts up a counter. */
  46. int timer_init(void)
  47. {
  48. /* Load timer with initial value */
  49. writel(TIMER_LOAD_VAL, CONFIG_SYS_TIMERBASE + 16);
  50. /*
  51. * Set timer to be enabled, free-running, no interrupts, 256 divider,
  52. * 32-bit, wrap-mode
  53. */
  54. writel(0x8a, CONFIG_SYS_TIMERBASE + 24);
  55. /* init the timestamp and lastdec value */
  56. reset_timer_masked();
  57. return 0;
  58. }
  59. /*
  60. * timer without interrupts
  61. */
  62. void reset_timer(void)
  63. {
  64. reset_timer_masked();
  65. }
  66. ulong get_timer(ulong base)
  67. {
  68. return get_timer_masked() - base;
  69. }
  70. void set_timer(ulong t)
  71. {
  72. timestamp = t;
  73. }
  74. /* delay x useconds AND perserve advance timstamp value */
  75. void udelay(unsigned long usec)
  76. {
  77. ulong tmo, tmp;
  78. if (usec >= 1000) {
  79. /* if "big" number, spread normalization to seconds */
  80. tmo = usec / 1000; /* start to normalize */
  81. tmo *= CONFIG_SYS_HZ; /* find number of "ticks" */
  82. tmo /= 1000; /* finish normalize. */
  83. } else {
  84. /* small number, don't kill it prior to HZ multiply */
  85. tmo = usec * CONFIG_SYS_HZ;
  86. tmo /= (1000 * 1000);
  87. }
  88. tmp = get_timer(0); /* get current timestamp */
  89. if ((tmo + tmp + 1) < tmp) /* will roll time stamp? */
  90. reset_timer_masked(); /* reset to 0, set lastdec value */
  91. else
  92. tmo += tmp;
  93. while (get_timer_masked() < tmo)
  94. /* nothing */ ;
  95. }
  96. void reset_timer_masked(void)
  97. {
  98. /* reset time */
  99. lastdec = READ_TIMER; /* capure current decrementer value time */
  100. timestamp = 0; /* start "advancing" time stamp from 0 */
  101. }
  102. ulong get_timer_masked(void)
  103. {
  104. ulong now = READ_TIMER; /* current tick value */
  105. if (lastdec >= now) { /* normal mode (non roll) */
  106. /* move stamp fordward */
  107. timestamp += lastdec - now;
  108. } else {
  109. /*
  110. * An overflow is expected.
  111. * nts = ts + ld + (TLV - now)
  112. * ts=old stamp, ld=time that passed before passing through -1
  113. * (TLV-now) amount of time after passing though -1
  114. * nts = new "advancing time stamp"...it could also roll
  115. */
  116. timestamp += lastdec + TIMER_LOAD_VAL - now;
  117. }
  118. lastdec = now;
  119. return timestamp;
  120. }
  121. /* waits specified delay value and resets timestamp */
  122. void udelay_masked(unsigned long usec)
  123. {
  124. ulong tmo;
  125. if (usec >= 1000) {
  126. /* if "big" number, spread normalization to seconds */
  127. tmo = usec / 1000; /* start to normalize */
  128. tmo *= CONFIG_SYS_HZ; /* find number of "ticks" */
  129. tmo /= 1000; /* finish normalize. */
  130. } else {
  131. /* else small number, don't kill it prior to HZ multiply */
  132. tmo = usec * CONFIG_SYS_HZ;
  133. tmo /= (1000*1000);
  134. }
  135. reset_timer_masked();
  136. /* set "advancing" timestamp to 0, set lastdec vaule */
  137. while (get_timer_masked() < tmo)
  138. /* nothing */ ;
  139. }
  140. /*
  141. * This function is derived from PowerPC code (read timebase as long long).
  142. * On ARM it just returns the timer value.
  143. */
  144. unsigned long long get_ticks(void)
  145. {
  146. return get_timer(0);
  147. }
  148. /*
  149. * This function is derived from PowerPC code (timebase clock frequency).
  150. * On ARM it returns the number of timer ticks per second.
  151. */
  152. ulong get_tbclk(void)
  153. {
  154. ulong tbclk;
  155. tbclk = CONFIG_SYS_HZ;
  156. return tbclk;
  157. }