Initial code commit
[oweals/u-boot_mod.git] / u-boot / lib_mips / time.c
1 /*
2  * (C) Copyright 2003
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 #include <common.h>
25
26 static inline void mips_compare_set(u32 v){
27         asm volatile ("mtc0 %0, $11" : : "r" (v));
28 }
29
30 static inline void mips_count_set(u32 v){
31         asm volatile ("mtc0 %0, $9" : : "r" (v));
32 }
33
34 static inline u32 mips_count_get(void){
35         u32 count;
36
37         asm volatile ("mfc0 %0, $9" : "=r" (count) :);
38         return count;
39 }
40
41 /*
42  * timer without interrupts
43  */
44 int timer_init(void){
45         mips_compare_set(0);
46         mips_count_set(0);
47
48         return 0;
49 }
50
51 ulong get_timer(ulong base){
52         return mips_count_get() - base;
53 }
54
55 void udelay(unsigned long usec){
56         ulong tmo;
57         ulong start = get_timer(0);
58
59         tmo = usec * (CFG_HZ / 1000000);
60         while ((ulong)((mips_count_get() - start)) < tmo)
61                 /*NOP*/;
62 }