timer.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * (C) Copyright 2008
  3. * Texas Instruments
  4. *
  5. * Richard Woodruff <r-woodruff2@ti.com>
  6. * Syed Moahmmed Khasim <khasim@ti.com>
  7. *
  8. * (C) Copyright 2002
  9. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  10. * Marius Groeger <mgroeger@sysgo.de>
  11. * Alex Zuepke <azu@sysgo.de>
  12. *
  13. * (C) Copyright 2002
  14. * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
  15. *
  16. * See file CREDITS for list of people who contributed to this
  17. * project.
  18. *
  19. * This program is free software; you can redistribute it and/or
  20. * modify it under the terms of the GNU General Public License as
  21. * published by the Free Software Foundation; either version 2 of
  22. * the License, or (at your option) any later version.
  23. *
  24. * This program is distributed in the hope that it will be useful,
  25. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. * GNU General Public License for more details.
  28. *
  29. * You should have received a copy of the GNU General Public License
  30. * along with this program; if not, write to the Free Software
  31. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  32. * MA 02111-1307 USA
  33. */
  34. #include <common.h>
  35. #include <asm/io.h>
  36. static ulong timestamp;
  37. static ulong lastinc;
  38. static gptimer_t *timer_base = (gptimer_t *)CONFIG_SYS_TIMERBASE;
  39. /*
  40. * Nothing really to do with interrupts, just starts up a counter.
  41. * We run the counter with 13MHz, divided by 8, resulting in timer
  42. * frequency of 1.625MHz. With 32bit counter register, counter
  43. * overflows in ~44min
  44. */
  45. /* 13MHz / 8 = 1.625MHz */
  46. #define TIMER_CLOCK (V_SCLK / (2 << CONFIG_SYS_PTV))
  47. #define TIMER_LOAD_VAL 0xffffffff
  48. int timer_init(void)
  49. {
  50. /* start the counter ticking up, reload value on overflow */
  51. writel(TIMER_LOAD_VAL, &timer_base->tldr);
  52. /* enable timer */
  53. writel((CONFIG_SYS_PTV << 2) | TCLR_PRE | TCLR_AR | TCLR_ST,
  54. &timer_base->tclr);
  55. reset_timer_masked(); /* init the timestamp and lastinc value */
  56. return 0;
  57. }
  58. /*
  59. * timer without interrupts
  60. */
  61. void reset_timer(void)
  62. {
  63. reset_timer_masked();
  64. }
  65. ulong get_timer(ulong base)
  66. {
  67. return get_timer_masked() - base;
  68. }
  69. void set_timer(ulong t)
  70. {
  71. timestamp = t;
  72. }
  73. /* delay x useconds */
  74. void udelay(unsigned long usec)
  75. {
  76. long tmo = usec * (TIMER_CLOCK / 1000) / 1000;
  77. unsigned long now, last = readl(&timer_base->tcrr);
  78. while (tmo > 0) {
  79. now = readl(&timer_base->tcrr);
  80. if (last > now) /* count up timer overflow */
  81. tmo -= TIMER_LOAD_VAL - last + now;
  82. else
  83. tmo -= now - last;
  84. last = now;
  85. }
  86. }
  87. void reset_timer_masked(void)
  88. {
  89. /* reset time, capture current incrementer value time */
  90. lastinc = readl(&timer_base->tcrr) / (TIMER_CLOCK / CONFIG_SYS_HZ);
  91. timestamp = 0; /* start "advancing" time stamp from 0 */
  92. }
  93. ulong get_timer_masked(void)
  94. {
  95. /* current tick value */
  96. ulong now = readl(&timer_base->tcrr) / (TIMER_CLOCK / CONFIG_SYS_HZ);
  97. if (now >= lastinc) /* normal mode (non roll) */
  98. /* move stamp fordward with absoulte diff ticks */
  99. timestamp += (now - lastinc);
  100. else /* we have rollover of incrementer */
  101. timestamp += ((TIMER_LOAD_VAL / (TIMER_CLOCK / CONFIG_SYS_HZ))
  102. - lastinc) + now;
  103. lastinc = now;
  104. return timestamp;
  105. }
  106. /*
  107. * This function is derived from PowerPC code (read timebase as long long).
  108. * On ARM it just returns the timer value.
  109. */
  110. unsigned long long get_ticks(void)
  111. {
  112. return get_timer(0);
  113. }
  114. /*
  115. * This function is derived from PowerPC code (timebase clock frequency).
  116. * On ARM it returns the number of timer ticks per second.
  117. */
  118. ulong get_tbclk(void)
  119. {
  120. return CONFIG_SYS_HZ;
  121. }