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
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* 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 <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
|
|
|
|
|
|
|
|
#define timestamp (gd->tbl)
|
|
|
|
#define lastinc (gd->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
|
|
|
{
|
2011-11-26 09:02:41 +00:00
|
|
|
return 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
|
|
|
{
|
2011-11-26 09:02:41 +00:00
|
|
|
return (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
|
|
|
}
|