timer.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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 <div64.h>
  27. #include <asm/io.h>
  28. #include <asm/arch/pwm.h>
  29. #include <asm/arch/clk.h>
  30. #include <pwm.h>
  31. DECLARE_GLOBAL_DATA_PTR;
  32. unsigned long get_current_tick(void);
  33. /* macro to read the 16 bit timer */
  34. static inline struct s5p_timer *s5p_get_base_timer(void)
  35. {
  36. return (struct s5p_timer *)samsung_get_base_timer();
  37. }
  38. /**
  39. * Read the countdown timer.
  40. *
  41. * This operates at 1MHz and counts downwards. It will wrap about every
  42. * hour (2^32 microseconds).
  43. *
  44. * @return current value of timer
  45. */
  46. static unsigned long timer_get_us_down(void)
  47. {
  48. struct s5p_timer *const timer = s5p_get_base_timer();
  49. return readl(&timer->tcnto4);
  50. }
  51. int timer_init(void)
  52. {
  53. /* PWM Timer 4 */
  54. pwm_init(4, MUX_DIV_4, 0);
  55. pwm_config(4, 100000, 100000);
  56. pwm_enable(4);
  57. /* Use this as the current monotonic time in us */
  58. gd->arch.timer_reset_value = 0;
  59. /* Use this as the last timer value we saw */
  60. gd->arch.lastinc = timer_get_us_down();
  61. reset_timer_masked();
  62. return 0;
  63. }
  64. /*
  65. * timer without interrupts
  66. */
  67. unsigned long get_timer(unsigned long base)
  68. {
  69. unsigned long long time_ms;
  70. ulong now = timer_get_us_down();
  71. /*
  72. * Increment the time by the amount elapsed since the last read.
  73. * The timer may have wrapped around, but it makes no difference to
  74. * our arithmetic here.
  75. */
  76. gd->arch.timer_reset_value += gd->arch.lastinc - now;
  77. gd->arch.lastinc = now;
  78. /* Divide by 1000 to convert from us to ms */
  79. time_ms = gd->arch.timer_reset_value;
  80. do_div(time_ms, 1000);
  81. return time_ms - base;
  82. }
  83. unsigned long timer_get_us(void)
  84. {
  85. static unsigned long base_time_us;
  86. struct s5p_timer *const timer =
  87. (struct s5p_timer *)samsung_get_base_timer();
  88. unsigned long now_downward_us = readl(&timer->tcnto4);
  89. if (!base_time_us)
  90. base_time_us = now_downward_us;
  91. /* Note that this timer counts downward. */
  92. return base_time_us - now_downward_us;
  93. }
  94. /* delay x useconds */
  95. void __udelay(unsigned long usec)
  96. {
  97. unsigned long count_value;
  98. count_value = timer_get_us_down();
  99. while ((int)(count_value - timer_get_us_down()) < (int)usec)
  100. ;
  101. }
  102. void reset_timer_masked(void)
  103. {
  104. struct s5p_timer *const timer = s5p_get_base_timer();
  105. /* reset time */
  106. gd->arch.lastinc = readl(&timer->tcnto4);
  107. gd->arch.tbl = 0;
  108. }
  109. /*
  110. * This function is derived from PowerPC code (read timebase as long long).
  111. * On ARM it just returns the timer value.
  112. */
  113. unsigned long long get_ticks(void)
  114. {
  115. return get_timer(0);
  116. }
  117. /*
  118. * This function is derived from PowerPC code (timebase clock frequency).
  119. * On ARM it returns the number of timer ticks per second.
  120. */
  121. unsigned long get_tbclk(void)
  122. {
  123. return CONFIG_SYS_HZ;
  124. }