blob: 507f6873e91d27f8a56e67fffc7ea073c793de21 [file] [log] [blame]
Dirk Behme91eee542008-12-14 09:47:15 +01001/*
2 * (C) Copyright 2008
3 * Texas Instruments
4 *
5 * Richard Woodruff <r-woodruff2@ti.com>
6 * Syed Moahmmed Khasim <khasim@ti.com>
7 *
8 * (C) Copyright 2002
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Marius Groeger <mgroeger@sysgo.de>
11 * Alex Zuepke <azu@sysgo.de>
12 *
13 * (C) Copyright 2002
Detlev Zundel792a09e2009-05-13 10:54:10 +020014 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Dirk Behme91eee542008-12-14 09:47:15 +010015 *
16 * See file CREDITS for list of people who contributed to this
17 * project.
18 *
19 * This program is free software; you can redistribute it and/or
20 * modify it under the terms of the GNU General Public License as
21 * published by the Free Software Foundation; either version 2 of
22 * the License, or (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 * MA 02111-1307 USA
33 */
34
35#include <common.h>
36#include <asm/io.h>
Tom Rini98f92002013-03-14 11:15:25 +000037#include <asm/arch/cpu.h>
Dirk Behme91eee542008-12-14 09:47:15 +010038
Dirk Behmeb03c8402010-12-11 10:50:48 -050039DECLARE_GLOBAL_DATA_PTR;
40
Dirk Behme97a099e2009-08-08 09:30:21 +020041static struct gptimer *timer_base = (struct gptimer *)CONFIG_SYS_TIMERBASE;
Dirk Behme91eee542008-12-14 09:47:15 +010042
Manikandan Pillaid3a513c2009-04-21 17:29:05 +020043/*
44 * Nothing really to do with interrupts, just starts up a counter.
Manikandan Pillaid3a513c2009-04-21 17:29:05 +020045 */
46
John Rigbyaadcfc12010-12-27 14:33:10 +000047#define TIMER_CLOCK (V_SCLK / (2 << CONFIG_SYS_PTV))
48#define TIMER_OVERFLOW_VAL 0xffffffff
49#define TIMER_LOAD_VAL 0
Manikandan Pillaid3a513c2009-04-21 17:29:05 +020050
Jean-Christophe PLAGNIOL-VILLARDb54384e2009-05-15 23:47:02 +020051int timer_init(void)
Dirk Behme91eee542008-12-14 09:47:15 +010052{
53 /* start the counter ticking up, reload value on overflow */
54 writel(TIMER_LOAD_VAL, &timer_base->tldr);
55 /* enable timer */
Ladislav Michl81472d82009-03-30 18:58:41 +020056 writel((CONFIG_SYS_PTV << 2) | TCLR_PRE | TCLR_AR | TCLR_ST,
Dirk Behme91eee542008-12-14 09:47:15 +010057 &timer_base->tclr);
58
Graeme Russ17659d72011-07-15 02:21:14 +000059 /* reset time, capture current incrementer value time */
Simon Glass582601d2012-12-13 20:48:35 +000060 gd->arch.lastinc = readl(&timer_base->tcrr) /
61 (TIMER_CLOCK / CONFIG_SYS_HZ);
Simon Glass66ee6922012-12-13 20:48:34 +000062 gd->arch.tbl = 0; /* start "advancing" time stamp from 0 */
Dirk Behme91eee542008-12-14 09:47:15 +010063
64 return 0;
65}
66
67/*
68 * timer without interrupts
69 */
Dirk Behme91eee542008-12-14 09:47:15 +010070ulong get_timer(ulong base)
71{
72 return get_timer_masked() - base;
73}
74
Manikandan Pillaid3a513c2009-04-21 17:29:05 +020075/* delay x useconds */
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010076void __udelay(unsigned long usec)
Dirk Behme91eee542008-12-14 09:47:15 +010077{
Manikandan Pillaid3a513c2009-04-21 17:29:05 +020078 long tmo = usec * (TIMER_CLOCK / 1000) / 1000;
79 unsigned long now, last = readl(&timer_base->tcrr);
Dirk Behme91eee542008-12-14 09:47:15 +010080
Manikandan Pillaid3a513c2009-04-21 17:29:05 +020081 while (tmo > 0) {
82 now = readl(&timer_base->tcrr);
83 if (last > now) /* count up timer overflow */
John Rigbyaadcfc12010-12-27 14:33:10 +000084 tmo -= TIMER_OVERFLOW_VAL - last + now + 1;
Manikandan Pillaid3a513c2009-04-21 17:29:05 +020085 else
86 tmo -= now - last;
87 last = now;
Dirk Behme91eee542008-12-14 09:47:15 +010088 }
Dirk Behme91eee542008-12-14 09:47:15 +010089}
90
Dirk Behme91eee542008-12-14 09:47:15 +010091ulong get_timer_masked(void)
92{
Manikandan Pillaid3a513c2009-04-21 17:29:05 +020093 /* current tick value */
94 ulong now = readl(&timer_base->tcrr) / (TIMER_CLOCK / CONFIG_SYS_HZ);
Dirk Behme91eee542008-12-14 09:47:15 +010095
Simon Glass582601d2012-12-13 20:48:35 +000096 if (now >= gd->arch.lastinc) { /* normal mode (non roll) */
Dirk Behme91eee542008-12-14 09:47:15 +010097 /* move stamp fordward with absoulte diff ticks */
Simon Glass582601d2012-12-13 20:48:35 +000098 gd->arch.tbl += (now - gd->arch.lastinc);
Simon Glass66ee6922012-12-13 20:48:34 +000099 } else { /* we have rollover of incrementer */
100 gd->arch.tbl += ((TIMER_LOAD_VAL / (TIMER_CLOCK /
Simon Glass582601d2012-12-13 20:48:35 +0000101 CONFIG_SYS_HZ)) - gd->arch.lastinc) + now;
Simon Glass66ee6922012-12-13 20:48:34 +0000102 }
Simon Glass582601d2012-12-13 20:48:35 +0000103 gd->arch.lastinc = now;
Simon Glass66ee6922012-12-13 20:48:34 +0000104 return gd->arch.tbl;
Dirk Behme91eee542008-12-14 09:47:15 +0100105}
106
Dirk Behme91eee542008-12-14 09:47:15 +0100107/*
108 * This function is derived from PowerPC code (read timebase as long long).
109 * On ARM it just returns the timer value.
110 */
111unsigned long long get_ticks(void)
112{
113 return get_timer(0);
114}
115
116/*
117 * This function is derived from PowerPC code (timebase clock frequency).
118 * On ARM it returns the number of timer ticks per second.
119 */
120ulong get_tbclk(void)
121{
Manikandan Pillaid3a513c2009-04-21 17:29:05 +0200122 return CONFIG_SYS_HZ;
Dirk Behme91eee542008-12-14 09:47:15 +0100123}