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>
7 * See file CREDITS for list of people who contributed to this
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.
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.
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,
28 #include <asm/arch/pwm.h>
29 #include <asm/arch/clk.h>
32 DECLARE_GLOBAL_DATA_PTR;
34 unsigned long get_current_tick(void);
36 /* macro to read the 16 bit timer */
37 static inline struct s5p_timer *s5p_get_base_timer(void)
39 return (struct s5p_timer *)samsung_get_base_timer();
45 pwm_init(4, MUX_DIV_2, 0);
55 * timer without interrupts
57 unsigned long get_timer(unsigned long base)
59 return get_timer_masked() - base;
62 /* delay x useconds */
63 void __udelay(unsigned long usec)
65 struct s5p_timer *const timer = s5p_get_base_timer();
66 unsigned long tmo, tmp, count_value;
68 count_value = readl(&timer->tcntb4);
72 * if "big" number, spread normalization
74 * 1. start to normalize for usec to ticks per sec
75 * 2. find number of "ticks" to wait to achieve target
76 * 3. finish normalize.
79 tmo *= (CONFIG_SYS_HZ * count_value);
82 /* else small number, don't kill it prior to HZ multiply */
83 tmo = usec * CONFIG_SYS_HZ * count_value;
87 /* get current timestamp */
88 tmp = get_current_tick();
90 /* if setting this fordward will roll time stamp */
91 /* reset "advancing" timestamp to 0, set lastinc value */
92 /* else, set advancing stamp wake up time */
93 if ((tmo + tmp + 1) < tmp)
99 while (get_current_tick() < tmo)
103 void reset_timer_masked(void)
105 struct s5p_timer *const timer = s5p_get_base_timer();
108 gd->lastinc = readl(&timer->tcnto4);
112 unsigned long get_timer_masked(void)
114 struct s5p_timer *const timer = s5p_get_base_timer();
115 unsigned long count_value = readl(&timer->tcntb4);
117 return get_current_tick() / count_value;
120 unsigned long get_current_tick(void)
122 struct s5p_timer *const timer = s5p_get_base_timer();
123 unsigned long now = readl(&timer->tcnto4);
124 unsigned long count_value = readl(&timer->tcntb4);
126 if (gd->lastinc >= now)
127 gd->arch.tbl += gd->lastinc - now;
129 gd->arch.tbl += gd->lastinc + count_value - now;
137 * This function is derived from PowerPC code (read timebase as long long).
138 * On ARM it just returns the timer value.
140 unsigned long long get_ticks(void)
146 * This function is derived from PowerPC code (timebase clock frequency).
147 * On ARM it returns the number of timer ticks per second.
149 unsigned long get_tbclk(void)
151 return CONFIG_SYS_HZ;