timer.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * Copyright (C) 2009 Samsung Electronics
  3. * Heungjun Kim <riverful.kim@samsung.com>
  4. * Inki Dae <inki.dae@samsung.com>
  5. * Minkyu Kang <mk7.kang@samsung.com>
  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 <asm/arch/pwm.h>
  28. #include <asm/arch/clk.h>
  29. #include <pwm.h>
  30. DECLARE_GLOBAL_DATA_PTR;
  31. unsigned long get_current_tick(void);
  32. /* macro to read the 16 bit timer */
  33. static inline struct s5p_timer *s5p_get_base_timer(void)
  34. {
  35. return (struct s5p_timer *)samsung_get_base_timer();
  36. }
  37. int timer_init(void)
  38. {
  39. /* PWM Timer 4 */
  40. pwm_init(4, MUX_DIV_2, 0);
  41. pwm_config(4, 0, 0);
  42. pwm_enable(4);
  43. reset_timer_masked();
  44. return 0;
  45. }
  46. /*
  47. * timer without interrupts
  48. */
  49. unsigned long get_timer(unsigned long base)
  50. {
  51. return get_timer_masked() - base;
  52. }
  53. /* delay x useconds */
  54. void __udelay(unsigned long usec)
  55. {
  56. struct s5p_timer *const timer = s5p_get_base_timer();
  57. unsigned long tmo, tmp, count_value;
  58. count_value = readl(&timer->tcntb4);
  59. if (usec >= 1000) {
  60. /*
  61. * if "big" number, spread normalization
  62. * to seconds
  63. * 1. start to normalize for usec to ticks per sec
  64. * 2. find number of "ticks" to wait to achieve target
  65. * 3. finish normalize.
  66. */
  67. tmo = usec / 1000;
  68. tmo *= (CONFIG_SYS_HZ * count_value);
  69. tmo /= 1000;
  70. } else {
  71. /* else small number, don't kill it prior to HZ multiply */
  72. tmo = usec * CONFIG_SYS_HZ * count_value;
  73. tmo /= (1000 * 1000);
  74. }
  75. /* get current timestamp */
  76. tmp = get_current_tick();
  77. /* if setting this fordward will roll time stamp */
  78. /* reset "advancing" timestamp to 0, set lastinc value */
  79. /* else, set advancing stamp wake up time */
  80. if ((tmo + tmp + 1) < tmp)
  81. reset_timer_masked();
  82. else
  83. tmo += tmp;
  84. /* loop till event */
  85. while (get_current_tick() < tmo)
  86. ; /* nop */
  87. }
  88. void reset_timer_masked(void)
  89. {
  90. struct s5p_timer *const timer = s5p_get_base_timer();
  91. /* reset time */
  92. gd->arch.lastinc = readl(&timer->tcnto4);
  93. gd->arch.tbl = 0;
  94. }
  95. unsigned long get_timer_masked(void)
  96. {
  97. struct s5p_timer *const timer = s5p_get_base_timer();
  98. unsigned long count_value = readl(&timer->tcntb4);
  99. return get_current_tick() / count_value;
  100. }
  101. unsigned long get_current_tick(void)
  102. {
  103. struct s5p_timer *const timer = s5p_get_base_timer();
  104. unsigned long now = readl(&timer->tcnto4);
  105. unsigned long count_value = readl(&timer->tcntb4);
  106. if (gd->arch.lastinc >= now)
  107. gd->arch.tbl += gd->arch.lastinc - now;
  108. else
  109. gd->arch.tbl += gd->arch.lastinc + count_value - now;
  110. gd->arch.lastinc = now;
  111. return gd->arch.tbl;
  112. }
  113. /*
  114. * This function is derived from PowerPC code (read timebase as long long).
  115. * On ARM it just returns the timer value.
  116. */
  117. unsigned long long get_ticks(void)
  118. {
  119. return get_timer(0);
  120. }
  121. /*
  122. * This function is derived from PowerPC code (timebase clock frequency).
  123. * On ARM it returns the number of timer ticks per second.
  124. */
  125. unsigned long get_tbclk(void)
  126. {
  127. return CONFIG_SYS_HZ;
  128. }