]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - cpu/sh2/time.c
rename CFG_ macros to CONFIG_SYS
[karo-tx-uboot.git] / cpu / sh2 / time.c
1 /*
2  * Copyright (C) 2007,2008 Nobobuhiro Iwamatsu <iwamatsu@nigauri.org>
3  * Copyright (C) 2008 Renesas Solutions Corp.
4  *
5  * (C) Copyright 2003
6  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7  *
8  * See file CREDITS for list of people who contributed to this
9  * project.
10  *
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.
15  *
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.
20  *
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,
24  * MA 02111-1307 USA
25  */
26
27 #include <common.h>
28 #include <asm/io.h>
29 #include <asm/processor.h>
30
31 #define CMT_CMCSR_INIT  0x0001  /* PCLK/32 */
32 #define CMT_CMCSR_CALIB 0x0000
33 #define CMT_MAX_COUNTER (0xFFFFFFFF)
34 #define CMT_TIMER_RESET (0xFFFF)
35
36 static vu_long cmt0_timer;
37
38 static void cmt_timer_start(unsigned int timer)
39 {
40         writew(readw(CMSTR) | 0x01, CMSTR);
41 }
42
43 static void cmt_timer_stop(unsigned int timer)
44 {
45         writew(readw(CMSTR) & ~0x01, CMSTR);
46 }
47
48 int timer_init(void)
49 {
50         cmt0_timer = 0;
51         /* Divide clock by 32 */
52         readw(CMCSR_0);
53         writew(CMT_CMCSR_INIT, CMCSR_0);
54
55         /* User Device 0 only */
56         cmt_timer_stop(0);
57         set_timer(CMT_TIMER_RESET);
58         cmt_timer_start(0);
59
60         return 0;
61 }
62
63 unsigned long long get_ticks(void)
64 {
65         return cmt0_timer;
66 }
67
68 static vu_long cmcnt;
69 ulong get_timer(ulong base)
70 {
71         ulong data = readw(CMCNT_0);
72
73         if (data >= cmcnt)
74                 cmcnt = data - cmcnt;
75         else
76                 cmcnt = (CMT_TIMER_RESET - cmcnt) + data;
77
78         if ((cmt0_timer + cmcnt) > CMT_MAX_COUNTER)
79                 cmt0_timer = ((cmt0_timer + cmcnt) - CMT_MAX_COUNTER);
80         else
81                 cmt0_timer += cmcnt;
82
83         cmcnt = data;
84         return cmt0_timer - base;
85 }
86
87 void set_timer(ulong t)
88 {
89         writew((u16) t, CMCOR_0);
90 }
91
92 void reset_timer(void)
93 {
94         cmt_timer_stop(0);
95         set_timer(CMT_TIMER_RESET);
96         cmt0_timer = 0;
97         cmt_timer_start(0);
98 }
99
100 void udelay(unsigned long usec)
101 {
102         unsigned int start = get_timer(0);
103
104         while (get_timer((ulong) start) < (usec * (CONFIG_SYS_HZ / 1000000)))
105                 continue;
106 }
107
108 unsigned long get_tbclk(void)
109 {
110         return CONFIG_SYS_HZ;
111 }