timer.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * (C) Copyright 2007-2008
  3. * Stelian Pop <stelian@popies.net>
  4. * Lead Tech Design <www.leadtechdesign.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <common.h>
  25. #include <asm/io.h>
  26. #include <asm/arch/hardware.h>
  27. #include <asm/arch/at91_pit.h>
  28. #include <asm/arch/at91_pmc.h>
  29. #include <asm/arch/clk.h>
  30. #include <div64.h>
  31. #if !defined(CONFIG_AT91FAMILY)
  32. # error You need to define CONFIG_AT91FAMILY in your board config!
  33. #endif
  34. DECLARE_GLOBAL_DATA_PTR;
  35. /*
  36. * We're using the AT91CAP9/SAM9 PITC in 32 bit mode, by
  37. * setting the 20 bit counter period to its maximum (0xfffff).
  38. * (See the relevant data sheets to understand that this really works)
  39. *
  40. * We do also mimic the typical powerpc way of incrementing
  41. * two 32 bit registers called tbl and tbu.
  42. *
  43. * Those registers increment at 1/16 the main clock rate.
  44. */
  45. #define TIMER_LOAD_VAL 0xfffff
  46. static inline unsigned long long tick_to_time(unsigned long long tick)
  47. {
  48. tick *= CONFIG_SYS_HZ;
  49. do_div(tick, gd->timer_rate_hz);
  50. return tick;
  51. }
  52. static inline unsigned long long usec_to_tick(unsigned long long usec)
  53. {
  54. usec *= gd->timer_rate_hz;
  55. do_div(usec, 1000000);
  56. return usec;
  57. }
  58. /*
  59. * Use the PITC in full 32 bit incrementing mode
  60. */
  61. int timer_init(void)
  62. {
  63. at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
  64. at91_pit_t *pit = (at91_pit_t *) ATMEL_BASE_PIT;
  65. /* Enable PITC Clock */
  66. writel(1 << ATMEL_ID_SYS, &pmc->pcer);
  67. /* Enable PITC */
  68. writel(TIMER_LOAD_VAL | AT91_PIT_MR_EN , &pit->mr);
  69. gd->timer_rate_hz = gd->arch.mck_rate_hz / 16;
  70. gd->tbu = gd->tbl = 0;
  71. return 0;
  72. }
  73. /*
  74. * Get the current 64 bit timer tick count
  75. */
  76. unsigned long long get_ticks(void)
  77. {
  78. at91_pit_t *pit = (at91_pit_t *) ATMEL_BASE_PIT;
  79. ulong now = readl(&pit->piir);
  80. /* increment tbu if tbl has rolled over */
  81. if (now < gd->tbl)
  82. gd->tbu++;
  83. gd->tbl = now;
  84. return (((unsigned long long)gd->tbu) << 32) | gd->tbl;
  85. }
  86. void __udelay(unsigned long usec)
  87. {
  88. unsigned long long start;
  89. ulong tmo;
  90. start = get_ticks(); /* get current timestamp */
  91. tmo = usec_to_tick(usec); /* convert usecs to ticks */
  92. while ((get_ticks() - start) < tmo)
  93. ; /* loop till time has passed */
  94. }
  95. /*
  96. * get_timer(base) can be used to check for timeouts or
  97. * to measure elasped time relative to an event:
  98. *
  99. * ulong start_time = get_timer(0) sets start_time to the current
  100. * time value.
  101. * get_timer(start_time) returns the time elapsed since then.
  102. *
  103. * The time is used in CONFIG_SYS_HZ units!
  104. */
  105. ulong get_timer(ulong base)
  106. {
  107. return tick_to_time(get_ticks()) - base;
  108. }
  109. /*
  110. * Return the number of timer ticks per second.
  111. */
  112. ulong get_tbclk(void)
  113. {
  114. return gd->timer_rate_hz;
  115. }