2003-07-15 20:04:06 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2003
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Alex Zuepke <azu@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2004-03-12 00:14:09 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-07-15 20:04:06 +00:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <arm925t.h>
|
|
|
|
#include <configs/omap1510.h>
|
|
|
|
|
|
|
|
#define TIMER_LOAD_VAL 0xffffffff
|
|
|
|
|
|
|
|
/* macro to read the 32 bit timer */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define READ_TIMER (*(volatile ulong *)(CONFIG_SYS_TIMERBASE+8))
|
2003-07-15 20:04:06 +00:00
|
|
|
|
|
|
|
static ulong timestamp;
|
|
|
|
static ulong lastdec;
|
|
|
|
|
|
|
|
/* nothing really to do with interrupts, just starts up a counter. */
|
|
|
|
int interrupt_init (void)
|
|
|
|
{
|
|
|
|
int32_t val;
|
|
|
|
|
2003-10-19 23:22:11 +00:00
|
|
|
/* Start the decrementer ticking down from 0xffffffff */
|
2008-10-16 13:01:15 +00:00
|
|
|
*((int32_t *) (CONFIG_SYS_TIMERBASE + LOAD_TIM)) = TIMER_LOAD_VAL;
|
|
|
|
val = MPUTIM_ST | MPUTIM_AR | MPUTIM_CLOCK_ENABLE | (CONFIG_SYS_PVT << MPUTIM_PTV_BIT);
|
|
|
|
*((int32_t *) (CONFIG_SYS_TIMERBASE + CNTL_TIMER)) = val;
|
2003-10-19 23:22:11 +00:00
|
|
|
|
|
|
|
/* init the timestamp and lastdec value */
|
|
|
|
reset_timer_masked();
|
|
|
|
|
2009-03-30 16:58:40 +00:00
|
|
|
return 0;
|
2003-07-15 20:04:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* timer without interrupts
|
|
|
|
*/
|
|
|
|
|
|
|
|
void reset_timer (void)
|
|
|
|
{
|
|
|
|
reset_timer_masked ();
|
|
|
|
}
|
|
|
|
|
|
|
|
ulong get_timer (ulong base)
|
|
|
|
{
|
|
|
|
return get_timer_masked () - base;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_timer (ulong t)
|
|
|
|
{
|
|
|
|
timestamp = t;
|
|
|
|
}
|
|
|
|
|
2004-04-25 14:37:29 +00:00
|
|
|
/* delay x useconds AND preserve advance timestamp value */
|
2003-07-15 20:04:06 +00:00
|
|
|
void udelay (unsigned long usec)
|
|
|
|
{
|
2003-10-19 23:22:11 +00:00
|
|
|
ulong tmo, tmp;
|
|
|
|
|
2009-03-30 16:58:40 +00:00
|
|
|
if (usec >= 1000) { /* if "big" number, spread normalization to seconds */
|
2004-03-12 00:14:09 +00:00
|
|
|
tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
|
2009-03-30 16:58:40 +00:00
|
|
|
tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
|
2004-03-12 00:14:09 +00:00
|
|
|
tmo /= 1000; /* finish normalize. */
|
2009-03-30 16:58:40 +00:00
|
|
|
} else { /* else small number, don't kill it prior to HZ multiply */
|
2008-10-16 13:01:15 +00:00
|
|
|
tmo = usec * CONFIG_SYS_HZ;
|
2003-10-19 23:22:11 +00:00
|
|
|
tmo /= (1000*1000);
|
|
|
|
}
|
2003-07-15 20:04:06 +00:00
|
|
|
|
2003-10-19 23:22:11 +00:00
|
|
|
tmp = get_timer (0); /* get current timestamp */
|
2009-03-30 16:58:40 +00:00
|
|
|
if ((tmo + tmp + 1) < tmp) /* if setting this fordward will roll time stamp */
|
2003-10-19 23:22:11 +00:00
|
|
|
reset_timer_masked (); /* reset "advancing" timestamp to 0, set lastdec value */
|
|
|
|
else
|
|
|
|
tmo += tmp; /* else, set advancing stamp wake up time */
|
2003-07-15 20:04:06 +00:00
|
|
|
|
2004-04-25 14:37:29 +00:00
|
|
|
while (get_timer_masked () < tmo) /* loop till event */
|
2003-07-15 20:04:06 +00:00
|
|
|
/*NOP*/;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_timer_masked (void)
|
|
|
|
{
|
|
|
|
/* reset time */
|
2003-10-19 23:22:11 +00:00
|
|
|
lastdec = READ_TIMER; /* capure current decrementer value time */
|
2004-03-12 00:14:09 +00:00
|
|
|
timestamp = 0; /* start "advancing" time stamp from 0 */
|
2003-07-15 20:04:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ulong get_timer_masked (void)
|
|
|
|
{
|
2003-10-19 23:22:11 +00:00
|
|
|
ulong now = READ_TIMER; /* current tick value */
|
2003-07-15 20:04:06 +00:00
|
|
|
|
2003-10-19 23:22:11 +00:00
|
|
|
if (lastdec >= now) { /* normal mode (non roll) */
|
2003-07-15 20:04:06 +00:00
|
|
|
/* normal mode */
|
2003-10-19 23:22:11 +00:00
|
|
|
timestamp += lastdec - now; /* move stamp fordward with absoulte diff ticks */
|
|
|
|
} else { /* we have overflow of the count down timer */
|
|
|
|
/* nts = ts + ld + (TLV - now)
|
|
|
|
* ts=old stamp, ld=time that passed before passing through -1
|
|
|
|
* (TLV-now) amount of time after passing though -1
|
|
|
|
* nts = new "advancing time stamp"...it could also roll and cause problems.
|
|
|
|
*/
|
2003-07-15 20:04:06 +00:00
|
|
|
timestamp += lastdec + TIMER_LOAD_VAL - now;
|
|
|
|
}
|
|
|
|
lastdec = now;
|
|
|
|
|
|
|
|
return timestamp;
|
|
|
|
}
|
|
|
|
|
2003-10-19 23:22:11 +00:00
|
|
|
/* waits specified delay value and resets timestamp */
|
2003-07-15 20:04:06 +00:00
|
|
|
void udelay_masked (unsigned long usec)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_INNOVATOROMAP1510
|
|
|
|
#define LOOPS_PER_MSEC 60 /* tuned on omap1510 */
|
|
|
|
volatile int i, time_remaining = LOOPS_PER_MSEC*usec;
|
2009-03-30 16:58:40 +00:00
|
|
|
for (i=time_remaining; i>0; i--) { }
|
2003-07-15 20:04:06 +00:00
|
|
|
#else
|
|
|
|
|
2004-03-12 00:14:09 +00:00
|
|
|
ulong tmo;
|
2005-04-04 12:08:28 +00:00
|
|
|
ulong endtime;
|
|
|
|
signed long diff;
|
2003-07-15 20:04:06 +00:00
|
|
|
|
2005-04-04 12:08:28 +00:00
|
|
|
if (usec >= 1000) { /* if "big" number, spread normalization to seconds */
|
2004-03-12 00:14:09 +00:00
|
|
|
tmo = usec / 1000; /* start to normalize for usec to ticks per sec */
|
2009-03-30 16:58:40 +00:00
|
|
|
tmo *= CONFIG_SYS_HZ; /* find number of "ticks" to wait to achieve target */
|
2004-03-12 00:14:09 +00:00
|
|
|
tmo /= 1000; /* finish normalize. */
|
2005-04-04 12:08:28 +00:00
|
|
|
} else { /* else small number, don't kill it prior to HZ multiply */
|
2008-10-16 13:01:15 +00:00
|
|
|
tmo = usec * CONFIG_SYS_HZ;
|
2003-10-19 23:22:11 +00:00
|
|
|
tmo /= (1000*1000);
|
|
|
|
}
|
2003-07-15 20:04:06 +00:00
|
|
|
|
2005-04-04 12:08:28 +00:00
|
|
|
endtime = get_timer_masked () + tmo;
|
2003-07-15 20:04:06 +00:00
|
|
|
|
2005-04-04 12:08:28 +00:00
|
|
|
do {
|
|
|
|
ulong now = get_timer_masked ();
|
|
|
|
diff = endtime - now;
|
|
|
|
} while (diff >= 0);
|
2003-07-15 20:04:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is derived from PowerPC code (read timebase as long long).
|
|
|
|
* On ARM it just returns the timer value.
|
|
|
|
*/
|
|
|
|
unsigned long long get_ticks(void)
|
|
|
|
{
|
|
|
|
return get_timer(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is derived from PowerPC code (timebase clock frequency).
|
|
|
|
* On ARM it returns the number of timer ticks per second.
|
|
|
|
*/
|
|
|
|
ulong get_tbclk (void)
|
2003-10-19 23:22:11 +00:00
|
|
|
{
|
2009-03-30 16:58:40 +00:00
|
|
|
return CONFIG_SYS_HZ;
|
2003-07-15 20:04:06 +00:00
|
|
|
}
|