blob: 5926a5a810f4885c589900ae7825a0ff0b2c1367 [file] [log] [blame]
Dirk Behmee0e49fe2008-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 Zundelf1b3f2b2009-05-13 10:54:10 +020014 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Dirk Behmee0e49fe2008-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 Rini8eb48ff2013-03-14 11:15:25 +000037#include <asm/arch/cpu.h>
Sricharan R8bbdc3f2013-05-30 03:19:34 +000038#include <asm/arch/clock.h>
Dirk Behmee0e49fe2008-12-14 09:47:15 +010039
Dirk Behmeae8c7ee2010-12-11 10:50:48 -050040DECLARE_GLOBAL_DATA_PTR;
41
Dirk Behmedc7af202009-08-08 09:30:21 +020042static struct gptimer *timer_base = (struct gptimer *)CONFIG_SYS_TIMERBASE;
Dirk Behmee0e49fe2008-12-14 09:47:15 +010043
Manikandan Pillaie8b16962009-04-21 17:29:05 +020044/*
45 * Nothing really to do with interrupts, just starts up a counter.
Manikandan Pillaie8b16962009-04-21 17:29:05 +020046 */
47
John Rigbyee764d12010-12-27 14:33:10 +000048#define TIMER_CLOCK (V_SCLK / (2 << CONFIG_SYS_PTV))
49#define TIMER_OVERFLOW_VAL 0xffffffff
50#define TIMER_LOAD_VAL 0
Manikandan Pillaie8b16962009-04-21 17:29:05 +020051
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +020052int timer_init(void)
Dirk Behmee0e49fe2008-12-14 09:47:15 +010053{
54 /* start the counter ticking up, reload value on overflow */
55 writel(TIMER_LOAD_VAL, &timer_base->tldr);
56 /* enable timer */
Ladislav Michl993e57d2009-03-30 18:58:41 +020057 writel((CONFIG_SYS_PTV << 2) | TCLR_PRE | TCLR_AR | TCLR_ST,
Dirk Behmee0e49fe2008-12-14 09:47:15 +010058 &timer_base->tclr);
59
Graeme Russ944a7fe2011-07-15 02:21:14 +000060 /* reset time, capture current incrementer value time */
Simon Glassa848da52012-12-13 20:48:35 +000061 gd->arch.lastinc = readl(&timer_base->tcrr) /
62 (TIMER_CLOCK / CONFIG_SYS_HZ);
Simon Glass2655ee12012-12-13 20:48:34 +000063 gd->arch.tbl = 0; /* start "advancing" time stamp from 0 */
Dirk Behmee0e49fe2008-12-14 09:47:15 +010064
65 return 0;
66}
67
68/*
69 * timer without interrupts
70 */
Dirk Behmee0e49fe2008-12-14 09:47:15 +010071ulong get_timer(ulong base)
72{
73 return get_timer_masked() - base;
74}
75
Manikandan Pillaie8b16962009-04-21 17:29:05 +020076/* delay x useconds */
Ingo van Lilf0f778a2009-11-24 14:09:21 +010077void __udelay(unsigned long usec)
Dirk Behmee0e49fe2008-12-14 09:47:15 +010078{
Manikandan Pillaie8b16962009-04-21 17:29:05 +020079 long tmo = usec * (TIMER_CLOCK / 1000) / 1000;
80 unsigned long now, last = readl(&timer_base->tcrr);
Dirk Behmee0e49fe2008-12-14 09:47:15 +010081
Manikandan Pillaie8b16962009-04-21 17:29:05 +020082 while (tmo > 0) {
83 now = readl(&timer_base->tcrr);
84 if (last > now) /* count up timer overflow */
John Rigbyee764d12010-12-27 14:33:10 +000085 tmo -= TIMER_OVERFLOW_VAL - last + now + 1;
Manikandan Pillaie8b16962009-04-21 17:29:05 +020086 else
87 tmo -= now - last;
88 last = now;
Dirk Behmee0e49fe2008-12-14 09:47:15 +010089 }
Dirk Behmee0e49fe2008-12-14 09:47:15 +010090}
91
Dirk Behmee0e49fe2008-12-14 09:47:15 +010092ulong get_timer_masked(void)
93{
Manikandan Pillaie8b16962009-04-21 17:29:05 +020094 /* current tick value */
95 ulong now = readl(&timer_base->tcrr) / (TIMER_CLOCK / CONFIG_SYS_HZ);
Dirk Behmee0e49fe2008-12-14 09:47:15 +010096
Simon Glassa848da52012-12-13 20:48:35 +000097 if (now >= gd->arch.lastinc) { /* normal mode (non roll) */
Dirk Behmee0e49fe2008-12-14 09:47:15 +010098 /* move stamp fordward with absoulte diff ticks */
Simon Glassa848da52012-12-13 20:48:35 +000099 gd->arch.tbl += (now - gd->arch.lastinc);
Simon Glass2655ee12012-12-13 20:48:34 +0000100 } else { /* we have rollover of incrementer */
101 gd->arch.tbl += ((TIMER_LOAD_VAL / (TIMER_CLOCK /
Simon Glassa848da52012-12-13 20:48:35 +0000102 CONFIG_SYS_HZ)) - gd->arch.lastinc) + now;
Simon Glass2655ee12012-12-13 20:48:34 +0000103 }
Simon Glassa848da52012-12-13 20:48:35 +0000104 gd->arch.lastinc = now;
Simon Glass2655ee12012-12-13 20:48:34 +0000105 return gd->arch.tbl;
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100106}
107
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100108/*
109 * This function is derived from PowerPC code (read timebase as long long).
110 * On ARM it just returns the timer value.
111 */
112unsigned long long get_ticks(void)
113{
114 return get_timer(0);
115}
116
117/*
118 * This function is derived from PowerPC code (timebase clock frequency).
119 * On ARM it returns the number of timer ticks per second.
120 */
121ulong get_tbclk(void)
122{
Manikandan Pillaie8b16962009-04-21 17:29:05 +0200123 return CONFIG_SYS_HZ;
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100124}