timer.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * (C) Copyright 2007
  3. * Sascha Hauer, Pengutronix
  4. *
  5. * (C) Copyright 2008-2009 Freescale Semiconductor, Inc.
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <asm/io.h>
  27. #include <div64.h>
  28. #include <asm/arch/imx-regs.h>
  29. #include <asm/arch/clock.h>
  30. DECLARE_GLOBAL_DATA_PTR;
  31. #define timestamp (gd->tbl)
  32. #define lastinc (gd->lastinc)
  33. /* General purpose timers bitfields */
  34. #define GPTCR_SWR (1<<15) /* Software reset */
  35. #define GPTCR_FRR (1<<9) /* Freerun / restart */
  36. #define GPTCR_CLKSOURCE_32 (0x100<<6) /* Clock source */
  37. #define GPTCR_CLKSOURCE_IPG (0x001<<6) /* Clock source */
  38. #define GPTCR_TEN (1) /* Timer enable */
  39. #define TIMER_FREQ_HZ mxc_get_clock(MXC_IPG_CLK)
  40. static inline unsigned long long tick_to_time(unsigned long long tick)
  41. {
  42. tick *= CONFIG_SYS_HZ;
  43. do_div(tick, TIMER_FREQ_HZ);
  44. return tick;
  45. }
  46. static inline unsigned long long us_to_tick(unsigned long long usec)
  47. {
  48. usec *= TIMER_FREQ_HZ;
  49. do_div(usec, 1000000);
  50. return usec;
  51. }
  52. int timer_init(void)
  53. {
  54. int i;
  55. struct gpt_regs *gpt = (struct gpt_regs *)GPT1_BASE_ADDR;
  56. /* setup GP Timer 1 */
  57. writel(GPTCR_SWR, &gpt->ctrl);
  58. for (i = 0; i < 100; i++)
  59. writel(0, &gpt->ctrl); /* We have no udelay by now */
  60. writel(0, &gpt->pre);
  61. /* Freerun Mode, PERCLK1 input */
  62. writel(readl(&gpt->ctrl) |
  63. GPTCR_CLKSOURCE_IPG | GPTCR_TEN,
  64. &gpt->ctrl);
  65. return 0;
  66. }
  67. unsigned long long get_ticks(void)
  68. {
  69. struct gpt_regs *gpt = (struct gpt_regs *)GPT1_BASE_ADDR;
  70. ulong now = readl(&gpt->counter); /* current tick value */
  71. if (now >= lastinc) {
  72. /*
  73. * normal mode (non roll)
  74. * move stamp forward with absolut diff ticks
  75. */
  76. timestamp += (now - lastinc);
  77. } else {
  78. /* we have rollover of incrementer */
  79. timestamp += (0xFFFFFFFF - lastinc) + now;
  80. }
  81. lastinc = now;
  82. return timestamp;
  83. }
  84. ulong get_timer_masked(void)
  85. {
  86. /*
  87. * get_ticks() returns a long long (64 bit), it wraps in
  88. * 2^64 / CONFIG_MX25_CLK32 = 2^64 / 2^15 = 2^49 ~ 5 * 10^14 (s) ~
  89. * 5 * 10^9 days... and get_ticks() * CONFIG_SYS_HZ wraps in
  90. * 5 * 10^6 days - long enough.
  91. */
  92. return tick_to_time(get_ticks());
  93. }
  94. ulong get_timer(ulong base)
  95. {
  96. return get_timer_masked() - base;
  97. }
  98. /* delay x useconds AND preserve advance timstamp value */
  99. void __udelay(unsigned long usec)
  100. {
  101. unsigned long long tmp;
  102. ulong tmo;
  103. tmo = us_to_tick(usec);
  104. tmp = get_ticks() + tmo; /* get current timestamp */
  105. while (get_ticks() < tmp) /* loop till event */
  106. /*NOP*/;
  107. }
  108. /*
  109. * This function is derived from PowerPC code (timebase clock frequency).
  110. * On ARM it returns the number of timer ticks per second.
  111. */
  112. ulong get_tbclk(void)
  113. {
  114. return TIMER_FREQ_HZ;
  115. }