blob: e929ae45bbf7023248608d3cf055692da423fc7f [file] [log] [blame]
Wolfgang Denka48499f2008-04-11 15:11:26 +02001/*
2 * (C) Copyright 2004
3 * Texas Instruments
4 * Richard Woodruff <r-woodruff2@ti.com>
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 * Alex Zuepke <azu@sysgo.de>
10 *
11 * (C) Copyright 2002
Detlev Zundelf1b3f2b2009-05-13 10:54:10 +020012 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Wolfgang Denka48499f2008-04-11 15:11:26 +020013 *
14 * See file CREDITS for list of people who contributed to this
15 * project.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * MA 02111-1307 USA
31 */
32
33#include <common.h>
34#include <asm/arch/bits.h>
Sascha Hauer7a19cea2008-03-26 20:40:36 +010035#include <asm/arch/omap2420.h>
Wolfgang Denka48499f2008-04-11 15:11:26 +020036
37#define TIMER_LOAD_VAL 0
38
39/* macro to read the 32 bit timer */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020040#define READ_TIMER (*((volatile ulong *)(CONFIG_SYS_TIMERBASE+TCRR)))
Wolfgang Denka48499f2008-04-11 15:11:26 +020041
Heiko Schocherf2015952010-12-09 22:01:15 +000042DECLARE_GLOBAL_DATA_PTR;
Wolfgang Denka48499f2008-04-11 15:11:26 +020043
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +020044int timer_init (void)
Wolfgang Denka48499f2008-04-11 15:11:26 +020045{
46 int32_t val;
47
48 /* Start the counter ticking up */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020049 *((int32_t *) (CONFIG_SYS_TIMERBASE + TLDR)) = TIMER_LOAD_VAL; /* reload value on overflow*/
Ladislav Michl993e57d2009-03-30 18:58:41 +020050 val = (CONFIG_SYS_PTV << 2) | BIT5 | BIT1 | BIT0; /* mask to enable timer*/
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020051 *((int32_t *) (CONFIG_SYS_TIMERBASE + TCLR)) = val; /* start timer */
Wolfgang Denka48499f2008-04-11 15:11:26 +020052
Wolfgang Denk68ad3dc2011-09-05 05:55:59 +000053 /* reset time */
54 gd->lastinc = READ_TIMER; /* capture current incrementer value */
55 gd->tbl = 0; /* start "advancing" time stamp */
Wolfgang Denka48499f2008-04-11 15:11:26 +020056
57 return(0);
58}
59/*
60 * timer without interrupts
61 */
Wolfgang Denka48499f2008-04-11 15:11:26 +020062ulong get_timer (ulong base)
63{
64 return get_timer_masked () - base;
65}
66
Wolfgang Denkd7cb3552010-05-21 23:13:18 +020067/* delay x useconds AND preserve advance timestamp value */
Ingo van Lilf0f778a2009-11-24 14:09:21 +010068void __udelay (unsigned long usec)
Wolfgang Denka48499f2008-04-11 15:11:26 +020069{
70 ulong tmo, tmp;
71
Wolfgang Denkd7cb3552010-05-21 23:13:18 +020072 if (usec >= 1000) { /* if "big" number, spread normalization to seconds */
73 tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
74 tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
75 tmo /= 1000; /* finish normalize. */
76 } else { /* else small number, don't kill it prior to HZ multiply */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020077 tmo = usec * CONFIG_SYS_HZ;
Wolfgang Denka48499f2008-04-11 15:11:26 +020078 tmo /= (1000*1000);
79 }
80
81 tmp = get_timer (0); /* get current timestamp */
Wolfgang Denk68ad3dc2011-09-05 05:55:59 +000082 if ((tmo + tmp + 1) < tmp) { /* if setting this forward will roll */
83 /* time stamp, then reset time */
84 gd->lastinc = READ_TIMER; /* capture incrementer value */
85 gd->tbl = 0; /* start time stamp */
86 } else {
Wolfgang Denkd7cb3552010-05-21 23:13:18 +020087 tmo += tmp; /* else, set advancing stamp wake up time */
Wolfgang Denk68ad3dc2011-09-05 05:55:59 +000088 }
Wolfgang Denka48499f2008-04-11 15:11:26 +020089 while (get_timer_masked () < tmo)/* loop till event */
90 /*NOP*/;
91}
92
Wolfgang Denka48499f2008-04-11 15:11:26 +020093ulong get_timer_masked (void)
94{
95 ulong now = READ_TIMER; /* current tick value */
96
Heiko Schocherf2015952010-12-09 22:01:15 +000097 if (now >= gd->lastinc) /* normal mode (non roll) */
98 gd->tbl += (now - gd->lastinc); /* move stamp fordward with absoulte diff ticks */
Wolfgang Denkd7cb3552010-05-21 23:13:18 +020099 else /* we have rollover of incrementer */
Heiko Schocherf2015952010-12-09 22:01:15 +0000100 gd->tbl += (0xFFFFFFFF - gd->lastinc) + now;
101 gd->lastinc = now;
102 return gd->tbl;
Wolfgang Denka48499f2008-04-11 15:11:26 +0200103}
104
105/* waits specified delay value and resets timestamp */
106void udelay_masked (unsigned long usec)
107{
108 ulong tmo;
109 ulong endtime;
110 signed long diff;
111
112 if (usec >= 1000) { /* if "big" number, spread normalization to seconds */
113 tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200114 tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
Wolfgang Denka48499f2008-04-11 15:11:26 +0200115 tmo /= 1000; /* finish normalize. */
116 } else { /* else small number, don't kill it prior to HZ multiply */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200117 tmo = usec * CONFIG_SYS_HZ;
Wolfgang Denka48499f2008-04-11 15:11:26 +0200118 tmo /= (1000*1000);
119 }
120 endtime = get_timer_masked () + tmo;
121
122 do {
123 ulong now = get_timer_masked ();
124 diff = endtime - now;
125 } while (diff >= 0);
126}
127
128/*
129 * This function is derived from PowerPC code (read timebase as long long).
130 * On ARM it just returns the timer value.
131 */
132unsigned long long get_ticks(void)
133{
134 return get_timer(0);
135}
136/*
137 * This function is derived from PowerPC code (timebase clock frequency).
138 * On ARM it returns the number of timer ticks per second.
139 */
140ulong get_tbclk (void)
141{
142 ulong tbclk;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200143 tbclk = CONFIG_SYS_HZ;
Wolfgang Denka48499f2008-04-11 15:11:26 +0200144 return tbclk;
145}