3 * Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5 * (C) Copyright 2007-2008
6 * Nobobuhiro Iwamatsu <iwamatsu@nigauri.org>
9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
11 * See file CREDITS for list of people who contributed to this
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 #include <asm/processor.h>
36 #define TMU_MAX_COUNTER (~0UL)
38 static ulong timer_freq;
40 static inline unsigned long long tick_to_time(unsigned long long tick)
42 tick *= CONFIG_SYS_HZ;
43 do_div(tick, timer_freq);
48 static inline unsigned long long usec_to_tick(unsigned long long usec)
51 do_div(usec, 1000000);
56 static void tmu_timer_start (unsigned int timer)
60 writeb(readb(TSTR) | (1 << timer), TSTR);
63 static void tmu_timer_stop (unsigned int timer)
67 writeb(readb(TSTR) & ~(1 << timer), TSTR);
72 /* Divide clock by CONFIG_SYS_TMU_CLK_DIV */
75 switch (CONFIG_SYS_TMU_CLK_DIV) {
92 writew(readw(TCR0) | bit, TCR0);
95 timer_freq = get_tmu0_clk_rate() >> ((bit + 1) * 2);
103 unsigned long long get_ticks (void)
105 return 0 - readl(TCNT0);
108 void __udelay (unsigned long usec)
110 unsigned long long tmp;
113 tmo = usec_to_tick(usec);
114 tmp = get_ticks() + tmo; /* get current timestamp */
116 while (get_ticks() < tmp) /* loop till event */
120 unsigned long get_timer (unsigned long base)
123 return tick_to_time(get_ticks()) - base;
126 void set_timer (unsigned long t)
128 writel((0 - t), TCNT0);
131 void reset_timer (void)
138 unsigned long get_tbclk (void)