3 * Nobobuhiro Iwamatsu <iwamatsu@nigauri.org>
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #include <asm/processor.h>
30 #define TMU_MAX_COUNTER (~0UL)
32 static void tmu_timer_start (unsigned int timer)
37 *((volatile unsigned char *) TSTR) |= (1 << timer);
40 static void tmu_timer_stop (unsigned int timer)
42 u8 val = *((volatile u8 *)TSTR);
45 *((volatile unsigned char *)TSTR) = val &~(1 << timer);
50 /* Divide clock by 4 */
51 *(volatile u16 *)TCR0 = 0;
59 In theory we should return a true 64bit value (ie something that doesn't
60 overflow). However, we don't. Therefore if TMU runs at fastest rate of
61 6.75 MHz this value will wrap after u-boot has been running for approx
64 unsigned long long get_ticks (void)
66 return (0 - *((volatile u32 *) TCNT0));
69 unsigned long get_timer (unsigned long base)
71 return ((0 - *((volatile u32 *) TCNT0)) - base);
74 void set_timer (unsigned long t)
76 *((volatile unsigned int *) TCNT0) = (0 - t);
79 void reset_timer (void)
86 void udelay (unsigned long usec)
88 unsigned int start = get_timer (0);
89 unsigned int end = start + (usec * ((CFG_HZ + 500000) / 1000000));
91 while (get_timer (0) < end)
95 unsigned long get_tbclk (void)