timer.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*
  2. * Copyright (C) 2012 Michal Simek <monstr@monstr.eu>
  3. * Copyright (C) 2011-2012 Xilinx, Inc. All rights reserved.
  4. *
  5. * (C) Copyright 2008
  6. * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
  7. *
  8. * (C) Copyright 2004
  9. * Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
  10. *
  11. * (C) Copyright 2002-2004
  12. * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
  13. *
  14. * (C) Copyright 2003
  15. * Texas Instruments <www.ti.com>
  16. *
  17. * (C) Copyright 2002
  18. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  19. * Marius Groeger <mgroeger@sysgo.de>
  20. *
  21. * (C) Copyright 2002
  22. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  23. * Alex Zuepke <azu@sysgo.de>
  24. *
  25. * See file CREDITS for list of people who contributed to this
  26. * project.
  27. *
  28. * This program is free software; you can redistribute it and/or
  29. * modify it under the terms of the GNU General Public License as
  30. * published by the Free Software Foundation; either version 2 of
  31. * the License, or (at your option) any later version.
  32. *
  33. * This program is distributed in the hope that it will be useful,
  34. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  35. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  36. * GNU General Public License for more details.
  37. *
  38. * You should have received a copy of the GNU General Public License
  39. * along with this program; if not, write to the Free Software
  40. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  41. * MA 02111-1307 USA
  42. */
  43. #include <common.h>
  44. #include <div64.h>
  45. #include <asm/io.h>
  46. #include <asm/arch/hardware.h>
  47. DECLARE_GLOBAL_DATA_PTR;
  48. struct scu_timer {
  49. u32 load; /* Timer Load Register */
  50. u32 counter; /* Timer Counter Register */
  51. u32 control; /* Timer Control Register */
  52. };
  53. static struct scu_timer *timer_base =
  54. (struct scu_timer *)ZYNQ_SCUTIMER_BASEADDR;
  55. #define SCUTIMER_CONTROL_PRESCALER_MASK 0x0000FF00 /* Prescaler */
  56. #define SCUTIMER_CONTROL_PRESCALER_SHIFT 8
  57. #define SCUTIMER_CONTROL_AUTO_RELOAD_MASK 0x00000002 /* Auto-reload */
  58. #define SCUTIMER_CONTROL_ENABLE_MASK 0x00000001 /* Timer enable */
  59. #define TIMER_LOAD_VAL 0xFFFFFFFF
  60. #define TIMER_PRESCALE 255
  61. #define TIMER_TICK_HZ (CONFIG_CPU_FREQ_HZ / 2 / TIMER_PRESCALE)
  62. int timer_init(void)
  63. {
  64. const u32 emask = SCUTIMER_CONTROL_AUTO_RELOAD_MASK |
  65. (TIMER_PRESCALE << SCUTIMER_CONTROL_PRESCALER_SHIFT) |
  66. SCUTIMER_CONTROL_ENABLE_MASK;
  67. /* Load the timer counter register */
  68. writel(0xFFFFFFFF, &timer_base->counter);
  69. /*
  70. * Start the A9Timer device
  71. * Enable Auto reload mode, Clear prescaler control bits
  72. * Set prescaler value, Enable the decrementer
  73. */
  74. clrsetbits_le32(&timer_base->control, SCUTIMER_CONTROL_PRESCALER_MASK,
  75. emask);
  76. /* Reset time */
  77. gd->arch.lastinc = readl(&timer_base->counter) /
  78. (TIMER_TICK_HZ / CONFIG_SYS_HZ);
  79. gd->arch.tbl = 0;
  80. return 0;
  81. }
  82. /*
  83. * This function is derived from PowerPC code (read timebase as long long).
  84. * On ARM it just returns the timer value.
  85. */
  86. ulong get_timer_masked(void)
  87. {
  88. ulong now;
  89. now = readl(&timer_base->counter) / (TIMER_TICK_HZ / CONFIG_SYS_HZ);
  90. if (gd->arch.lastinc >= now) {
  91. /* Normal mode */
  92. gd->arch.tbl += gd->arch.lastinc - now;
  93. } else {
  94. /* We have an overflow ... */
  95. gd->arch.tbl += gd->arch.lastinc + TIMER_LOAD_VAL - now;
  96. }
  97. gd->arch.lastinc = now;
  98. return gd->arch.tbl;
  99. }
  100. void __udelay(unsigned long usec)
  101. {
  102. u32 countticks;
  103. u32 timeend;
  104. u32 timediff;
  105. u32 timenow;
  106. if (usec == 0)
  107. return;
  108. countticks = (u32) (((unsigned long long) TIMER_TICK_HZ * usec) /
  109. 1000000);
  110. /* decrementing timer */
  111. timeend = readl(&timer_base->counter) - countticks;
  112. #if TIMER_LOAD_VAL != 0xFFFFFFFF
  113. /* do not manage multiple overflow */
  114. if (countticks >= TIMER_LOAD_VAL)
  115. countticks = TIMER_LOAD_VAL - 1;
  116. #endif
  117. do {
  118. timenow = readl(&timer_base->counter);
  119. if (timenow >= timeend) {
  120. /* normal case */
  121. timediff = timenow - timeend;
  122. } else {
  123. if ((TIMER_LOAD_VAL - timeend + timenow) <=
  124. countticks) {
  125. /* overflow */
  126. timediff = TIMER_LOAD_VAL - timeend + timenow;
  127. } else {
  128. /* missed the exact match */
  129. break;
  130. }
  131. }
  132. } while (timediff > 0);
  133. }
  134. /* Timer without interrupts */
  135. ulong get_timer(ulong base)
  136. {
  137. return get_timer_masked() - base;
  138. }
  139. /*
  140. * This function is derived from PowerPC code (read timebase as long long).
  141. * On ARM it just returns the timer value.
  142. */
  143. unsigned long long get_ticks(void)
  144. {
  145. return get_timer(0);
  146. }
  147. /*
  148. * This function is derived from PowerPC code (timebase clock frequency).
  149. * On ARM it returns the number of timer ticks per second.
  150. */
  151. ulong get_tbclk(void)
  152. {
  153. return CONFIG_SYS_HZ;
  154. }