2002-10-11 07:57:01 +00:00
|
|
|
/*
|
2011-11-26 09:02:41 +00:00
|
|
|
* Marvell PXA2xx/3xx timer driver
|
2002-10-11 07:57:01 +00:00
|
|
|
*
|
2011-11-26 09:02:41 +00:00
|
|
|
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
|
2002-10-11 07:57:01 +00:00
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-10-11 07:57:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm/arch/pxa-regs.h>
|
2010-09-09 07:50:39 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <common.h>
|
2009-02-24 05:13:10 +00:00
|
|
|
#include <div64.h>
|
2002-10-11 07:57:01 +00:00
|
|
|
|
2011-11-26 09:02:41 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
#define TIMER_LOAD_VAL 0xffffffff
|
|
|
|
|
2012-12-13 20:48:34 +00:00
|
|
|
#define timestamp (gd->arch.tbl)
|
2012-12-13 20:48:35 +00:00
|
|
|
#define lastinc (gd->arch.lastinc)
|
2002-10-11 07:57:01 +00:00
|
|
|
|
2011-11-26 06:20:07 +00:00
|
|
|
#if defined(CONFIG_CPU_PXA27X) || defined(CONFIG_CPU_MONAHANS)
|
2011-11-26 09:02:41 +00:00
|
|
|
#define TIMER_FREQ_HZ 3250000
|
2011-11-26 06:20:07 +00:00
|
|
|
#elif defined(CONFIG_CPU_PXA25X)
|
2011-11-26 09:02:41 +00:00
|
|
|
#define TIMER_FREQ_HZ 3686400
|
2009-02-11 17:50:11 +00:00
|
|
|
#else
|
|
|
|
#error "Timer frequency unknown - please config PXA CPU type"
|
|
|
|
#endif
|
|
|
|
|
2011-11-26 09:02:41 +00:00
|
|
|
static unsigned long long tick_to_time(unsigned long long tick)
|
2009-02-24 05:13:10 +00:00
|
|
|
{
|
2013-12-05 19:48:37 +00:00
|
|
|
return lldiv(tick * CONFIG_SYS_HZ, TIMER_FREQ_HZ);
|
2009-02-24 05:13:10 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 09:02:41 +00:00
|
|
|
static unsigned long long us_to_tick(unsigned long long us)
|
2009-02-24 05:13:10 +00:00
|
|
|
{
|
2013-12-05 19:48:37 +00:00
|
|
|
return lldiv(us * TIMER_FREQ_HZ, 1000000);
|
2009-02-24 05:13:10 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 09:02:41 +00:00
|
|
|
int timer_init(void)
|
2002-10-11 07:57:01 +00:00
|
|
|
{
|
2011-07-15 02:21:14 +00:00
|
|
|
writel(0, OSCR);
|
2009-05-15 21:47:02 +00:00
|
|
|
return 0;
|
2002-10-11 07:57:01 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 09:02:41 +00:00
|
|
|
unsigned long long get_ticks(void)
|
2002-10-11 07:57:01 +00:00
|
|
|
{
|
2011-11-26 09:02:41 +00:00
|
|
|
/* Current tick value */
|
|
|
|
uint32_t now = readl(OSCR);
|
|
|
|
|
|
|
|
if (now >= lastinc) {
|
|
|
|
/*
|
|
|
|
* Normal mode (non roll)
|
|
|
|
* Move stamp forward with absolute diff ticks
|
|
|
|
*/
|
|
|
|
timestamp += (now - lastinc);
|
|
|
|
} else {
|
|
|
|
/* We have rollover of incrementer */
|
|
|
|
timestamp += (TIMER_LOAD_VAL - lastinc) + now;
|
|
|
|
}
|
|
|
|
|
|
|
|
lastinc = now;
|
|
|
|
return timestamp;
|
2002-10-11 07:57:01 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 09:02:41 +00:00
|
|
|
ulong get_timer(ulong base)
|
2002-10-11 07:57:01 +00:00
|
|
|
{
|
2011-11-26 09:02:41 +00:00
|
|
|
return tick_to_time(get_ticks()) - base;
|
2002-10-11 07:57:01 +00:00
|
|
|
}
|
|
|
|
|
2011-11-26 09:02:41 +00:00
|
|
|
void __udelay(unsigned long usec)
|
2002-10-11 07:57:01 +00:00
|
|
|
{
|
2009-02-24 05:13:10 +00:00
|
|
|
unsigned long long tmp;
|
2002-10-11 07:57:01 +00:00
|
|
|
ulong tmo;
|
2009-02-24 05:13:10 +00:00
|
|
|
|
|
|
|
tmo = us_to_tick(usec);
|
|
|
|
tmp = get_ticks() + tmo; /* get current timestamp */
|
|
|
|
|
|
|
|
while (get_ticks() < tmp) /* loop till event */
|
|
|
|
/*NOP*/;
|
2003-10-08 22:33:00 +00:00
|
|
|
}
|
2012-02-27 12:59:47 +00:00
|
|
|
|
|
|
|
ulong get_tbclk(void)
|
|
|
|
{
|
|
|
|
return TIMER_FREQ_HZ;
|
|
|
|
}
|