blob: 82b10f6b2487c213b2b85177ef8777db098919b9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dirk Behmee0e49fe2008-12-14 09:47:15 +01002/*
3 * (C) Copyright 2008
4 * Texas Instruments
5 *
6 * Richard Woodruff <r-woodruff2@ti.com>
7 * Syed Moahmmed Khasim <khasim@ti.com>
8 *
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Marius Groeger <mgroeger@sysgo.de>
12 * Alex Zuepke <azu@sysgo.de>
13 *
14 * (C) Copyright 2002
Detlev Zundelf1b3f2b2009-05-13 10:54:10 +020015 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
Dirk Behmee0e49fe2008-12-14 09:47:15 +010016 */
17
18#include <common.h>
Simon Glass97589732020-05-10 11:40:02 -060019#include <init.h>
Simon Glass495a5dc2019-11-14 12:57:30 -070020#include <time.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060021#include <asm/global_data.h>
Dirk Behmee0e49fe2008-12-14 09:47:15 +010022#include <asm/io.h>
Tom Rini8eb48ff2013-03-14 11:15:25 +000023#include <asm/arch/cpu.h>
Sricharan R8bbdc3f2013-05-30 03:19:34 +000024#include <asm/arch/clock.h>
Simon Glassdbd79542020-05-10 11:40:11 -060025#include <linux/delay.h>
Dirk Behmee0e49fe2008-12-14 09:47:15 +010026
Dirk Behmeae8c7ee2010-12-11 10:50:48 -050027DECLARE_GLOBAL_DATA_PTR;
28
Dirk Behmedc7af202009-08-08 09:30:21 +020029static struct gptimer *timer_base = (struct gptimer *)CONFIG_SYS_TIMERBASE;
Patrick Delaunay9858a602018-10-05 11:33:52 +020030static ulong get_timer_masked(void);
Dirk Behmee0e49fe2008-12-14 09:47:15 +010031
Manikandan Pillaie8b16962009-04-21 17:29:05 +020032/*
33 * Nothing really to do with interrupts, just starts up a counter.
Manikandan Pillaie8b16962009-04-21 17:29:05 +020034 */
35
John Rigbyee764d12010-12-27 14:33:10 +000036#define TIMER_CLOCK (V_SCLK / (2 << CONFIG_SYS_PTV))
37#define TIMER_OVERFLOW_VAL 0xffffffff
38#define TIMER_LOAD_VAL 0
Manikandan Pillaie8b16962009-04-21 17:29:05 +020039
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +020040int timer_init(void)
Dirk Behmee0e49fe2008-12-14 09:47:15 +010041{
42 /* start the counter ticking up, reload value on overflow */
43 writel(TIMER_LOAD_VAL, &timer_base->tldr);
44 /* enable timer */
Ladislav Michl993e57d2009-03-30 18:58:41 +020045 writel((CONFIG_SYS_PTV << 2) | TCLR_PRE | TCLR_AR | TCLR_ST,
Dirk Behmee0e49fe2008-12-14 09:47:15 +010046 &timer_base->tclr);
47
Dirk Behmee0e49fe2008-12-14 09:47:15 +010048 return 0;
49}
50
51/*
52 * timer without interrupts
53 */
Dirk Behmee0e49fe2008-12-14 09:47:15 +010054ulong get_timer(ulong base)
55{
56 return get_timer_masked() - base;
57}
58
Manikandan Pillaie8b16962009-04-21 17:29:05 +020059/* delay x useconds */
Ingo van Lilf0f778a2009-11-24 14:09:21 +010060void __udelay(unsigned long usec)
Dirk Behmee0e49fe2008-12-14 09:47:15 +010061{
Manikandan Pillaie8b16962009-04-21 17:29:05 +020062 long tmo = usec * (TIMER_CLOCK / 1000) / 1000;
63 unsigned long now, last = readl(&timer_base->tcrr);
Dirk Behmee0e49fe2008-12-14 09:47:15 +010064
Manikandan Pillaie8b16962009-04-21 17:29:05 +020065 while (tmo > 0) {
66 now = readl(&timer_base->tcrr);
67 if (last > now) /* count up timer overflow */
John Rigbyee764d12010-12-27 14:33:10 +000068 tmo -= TIMER_OVERFLOW_VAL - last + now + 1;
Manikandan Pillaie8b16962009-04-21 17:29:05 +020069 else
70 tmo -= now - last;
71 last = now;
Dirk Behmee0e49fe2008-12-14 09:47:15 +010072 }
Dirk Behmee0e49fe2008-12-14 09:47:15 +010073}
74
Patrick Delaunay9858a602018-10-05 11:33:52 +020075static ulong get_timer_masked(void)
Dirk Behmee0e49fe2008-12-14 09:47:15 +010076{
Manikandan Pillaie8b16962009-04-21 17:29:05 +020077 /* current tick value */
78 ulong now = readl(&timer_base->tcrr) / (TIMER_CLOCK / CONFIG_SYS_HZ);
Dirk Behmee0e49fe2008-12-14 09:47:15 +010079
Simon Glassa848da52012-12-13 20:48:35 +000080 if (now >= gd->arch.lastinc) { /* normal mode (non roll) */
Dirk Behmee0e49fe2008-12-14 09:47:15 +010081 /* move stamp fordward with absoulte diff ticks */
Simon Glassa848da52012-12-13 20:48:35 +000082 gd->arch.tbl += (now - gd->arch.lastinc);
Simon Glass2655ee12012-12-13 20:48:34 +000083 } else { /* we have rollover of incrementer */
Daniel Gorsulowskic1f2bdd2016-06-06 09:40:11 +020084 gd->arch.tbl += ((TIMER_OVERFLOW_VAL / (TIMER_CLOCK /
Simon Glassa848da52012-12-13 20:48:35 +000085 CONFIG_SYS_HZ)) - gd->arch.lastinc) + now;
Simon Glass2655ee12012-12-13 20:48:34 +000086 }
Simon Glassa848da52012-12-13 20:48:35 +000087 gd->arch.lastinc = now;
Simon Glass2655ee12012-12-13 20:48:34 +000088 return gd->arch.tbl;
Dirk Behmee0e49fe2008-12-14 09:47:15 +010089}
90
Dirk Behmee0e49fe2008-12-14 09:47:15 +010091/*
92 * This function is derived from PowerPC code (read timebase as long long).
93 * On ARM it just returns the timer value.
94 */
95unsigned long long get_ticks(void)
96{
97 return get_timer(0);
98}
99
100/*
101 * This function is derived from PowerPC code (timebase clock frequency).
102 * On ARM it returns the number of timer ticks per second.
103 */
104ulong get_tbclk(void)
105{
Manikandan Pillaie8b16962009-04-21 17:29:05 +0200106 return CONFIG_SYS_HZ;
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100107}