interrupts.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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
  14. * Gary Jennejohn, DENX Software Engineering, <gj@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 <arm925t.h>
  36. #include <configs/omap1510.h>
  37. #include <asm/io.h>
  38. #define TIMER_LOAD_VAL 0xffffffff
  39. static uint32_t timestamp;
  40. static uint32_t lastdec;
  41. /* nothing really to do with interrupts, just starts up a counter. */
  42. int interrupt_init (void)
  43. {
  44. /* Start the decrementer ticking down from 0xffffffff */
  45. __raw_writel(TIMER_LOAD_VAL, CONFIG_SYS_TIMERBASE + LOAD_TIM);
  46. __raw_writel(MPUTIM_ST | MPUTIM_AR | MPUTIM_CLOCK_ENABLE |
  47. (CONFIG_SYS_PTV << MPUTIM_PTV_BIT),
  48. CONFIG_SYS_TIMERBASE + CNTL_TIMER);
  49. /* init the timestamp and lastdec value */
  50. reset_timer_masked();
  51. return 0;
  52. }
  53. /*
  54. * timer without interrupts
  55. */
  56. void reset_timer (void)
  57. {
  58. reset_timer_masked ();
  59. }
  60. ulong get_timer (ulong base)
  61. {
  62. return get_timer_masked () - base;
  63. }
  64. void set_timer (ulong t)
  65. {
  66. timestamp = t;
  67. }
  68. /* delay x useconds AND preserve advance timestamp value */
  69. void udelay (unsigned long usec)
  70. {
  71. ulong tmo, tmp;
  72. if (usec >= 1000) { /* if "big" number, spread normalization to seconds */
  73. tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
  74. tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
  75. tmo /= 1000; /* finish normalize. */
  76. } else { /* else small number, don't kill it prior to HZ multiply */
  77. tmo = usec * CONFIG_SYS_HZ;
  78. tmo /= (1000*1000);
  79. }
  80. tmp = get_timer (0); /* get current timestamp */
  81. if ((tmo + tmp + 1) < tmp) /* if setting this fordward will roll time stamp */
  82. reset_timer_masked (); /* reset "advancing" timestamp to 0, set lastdec value */
  83. else
  84. tmo += tmp; /* else, set advancing stamp wake up time */
  85. while (get_timer_masked () < tmo) /* loop till event */
  86. /*NOP*/;
  87. }
  88. void reset_timer_masked (void)
  89. {
  90. /* reset time */
  91. lastdec = __raw_readl(CONFIG_SYS_TIMERBASE + READ_TIM);
  92. timestamp = 0; /* start "advancing" time stamp from 0 */
  93. }
  94. ulong get_timer_masked (void)
  95. {
  96. uint32_t now = __raw_readl(CONFIG_SYS_TIMERBASE + READ_TIM);
  97. if (lastdec >= now) { /* normal mode (non roll) */
  98. /* normal mode */
  99. timestamp += lastdec - now; /* move stamp fordward with absoulte diff ticks */
  100. } else { /* we have overflow of the count down timer */
  101. /* nts = ts + ld + (TLV - now)
  102. * ts=old stamp, ld=time that passed before passing through -1
  103. * (TLV-now) amount of time after passing though -1
  104. * nts = new "advancing time stamp"...it could also roll and cause problems.
  105. */
  106. timestamp += lastdec + TIMER_LOAD_VAL - now;
  107. }
  108. lastdec = now;
  109. return timestamp;
  110. }
  111. /* waits specified delay value and resets timestamp */
  112. void udelay_masked (unsigned long usec)
  113. {
  114. #ifdef CONFIG_INNOVATOROMAP1510
  115. #define LOOPS_PER_MSEC 60 /* tuned on omap1510 */
  116. volatile int i, time_remaining = LOOPS_PER_MSEC*usec;
  117. for (i=time_remaining; i>0; i--) { }
  118. #else
  119. ulong tmo;
  120. ulong endtime;
  121. signed long diff;
  122. if (usec >= 1000) { /* if "big" number, spread normalization to seconds */
  123. tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
  124. tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
  125. tmo /= 1000; /* finish normalize. */
  126. } else { /* else small number, don't kill it prior to HZ multiply */
  127. tmo = usec * CONFIG_SYS_HZ;
  128. tmo /= (1000*1000);
  129. }
  130. endtime = get_timer_masked () + tmo;
  131. do {
  132. ulong now = get_timer_masked ();
  133. diff = endtime - now;
  134. } while (diff >= 0);
  135. #endif
  136. }
  137. /*
  138. * This function is derived from PowerPC code (read timebase as long long).
  139. * On ARM it just returns the timer value.
  140. */
  141. unsigned long long get_ticks(void)
  142. {
  143. return get_timer(0);
  144. }
  145. /*
  146. * This function is derived from PowerPC code (timebase clock frequency).
  147. * On ARM it returns the number of timer ticks per second.
  148. */
  149. ulong get_tbclk (void)
  150. {
  151. return CONFIG_SYS_HZ;
  152. }