blob: dca2d2c70c77dba0ba5f92d57e7174b04ab6e2a0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jens Scharsig98250e82010-02-03 22:47:35 +01002/*
3 * (C) Copyright 2002
4 * Lineo, Inc. <www.lineo.com>
5 * Bernhard Kuhn <bkuhn@lineo.com>
6 *
7 * (C) Copyright 2002
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
10 *
11 * (C) Copyright 2002
12 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13 * Alex Zuepke <azu@sysgo.de>
Jens Scharsig98250e82010-02-03 22:47:35 +010014 */
15
16#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -060017#include <init.h>
Simon Glass10453152019-11-14 12:57:30 -070018#include <time.h>
Simon Glassc05ed002020-05-10 11:40:11 -060019#include <linux/delay.h>
Jens Scharsig98250e82010-02-03 22:47:35 +010020
Jens Scharsig80733992011-02-19 06:17:02 +000021#include <asm/io.h>
Andreas Bießmanna429db72010-11-30 09:45:06 +000022#include <asm/arch/hardware.h>
Jens Scharsig98250e82010-02-03 22:47:35 +010023#include <asm/arch/at91_tc.h>
Wenyou Yangeced5a72016-02-03 10:16:49 +080024#include <asm/arch/clk.h>
Jens Scharsig98250e82010-02-03 22:47:35 +010025
Andreas Bießmanna429db72010-11-30 09:45:06 +000026DECLARE_GLOBAL_DATA_PTR;
27
Jens Scharsig98250e82010-02-03 22:47:35 +010028/* the number of clocks per CONFIG_SYS_HZ */
29#define TIMER_LOAD_VAL (CONFIG_SYS_HZ_CLOCK/CONFIG_SYS_HZ)
30
Jens Scharsig98250e82010-02-03 22:47:35 +010031int timer_init(void)
32{
Jens Scharsig80733992011-02-19 06:17:02 +000033 at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC;
Jens Scharsig98250e82010-02-03 22:47:35 +010034
Wenyou Yangeced5a72016-02-03 10:16:49 +080035 at91_periph_clk_enable(ATMEL_ID_TC0);
Jens Scharsig98250e82010-02-03 22:47:35 +010036
37 writel(0, &tc->bcr);
38 writel(AT91_TC_BMR_TC0XC0S_NONE | AT91_TC_BMR_TC1XC1S_NONE |
39 AT91_TC_BMR_TC2XC2S_NONE , &tc->bmr);
40
41 writel(AT91_TC_CCR_CLKDIS, &tc->tc[0].ccr);
42 /* set to MCLK/2 and restart the timer
43 when the value in TC_RC is reached */
44 writel(AT91_TC_CMR_TCCLKS_CLOCK1 | AT91_TC_CMR_CPCTRG, &tc->tc[0].cmr);
45
Mike Williams16263082011-07-22 04:01:30 +000046 writel(0xFFFFFFFF, &tc->tc[0].idr); /* disable interrupts */
Jens Scharsig98250e82010-02-03 22:47:35 +010047 writel(TIMER_LOAD_VAL, &tc->tc[0].rc);
48
49 writel(AT91_TC_CCR_SWTRG | AT91_TC_CCR_CLKEN, &tc->tc[0].ccr);
Simon Glass582601d2012-12-13 20:48:35 +000050 gd->arch.lastinc = 0;
Simon Glass66ee6922012-12-13 20:48:34 +000051 gd->arch.tbl = 0;
Jens Scharsig98250e82010-02-03 22:47:35 +010052
53 return 0;
54}
55
56/*
57 * timer without interrupts
58 */
Jens Scharsig98250e82010-02-03 22:47:35 +010059ulong get_timer_raw(void)
60{
Jens Scharsig80733992011-02-19 06:17:02 +000061 at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC;
Jens Scharsig98250e82010-02-03 22:47:35 +010062 u32 now;
63
64 now = readl(&tc->tc[0].cv) & 0x0000ffff;
65
Simon Glass582601d2012-12-13 20:48:35 +000066 if (now >= gd->arch.lastinc) {
Jens Scharsig98250e82010-02-03 22:47:35 +010067 /* normal mode */
Simon Glass582601d2012-12-13 20:48:35 +000068 gd->arch.tbl += now - gd->arch.lastinc;
Jens Scharsig98250e82010-02-03 22:47:35 +010069 } else {
70 /* we have an overflow ... */
Simon Glass582601d2012-12-13 20:48:35 +000071 gd->arch.tbl += now + TIMER_LOAD_VAL - gd->arch.lastinc;
Jens Scharsig98250e82010-02-03 22:47:35 +010072 }
Simon Glass582601d2012-12-13 20:48:35 +000073 gd->arch.lastinc = now;
Jens Scharsig98250e82010-02-03 22:47:35 +010074
Simon Glass66ee6922012-12-13 20:48:34 +000075 return gd->arch.tbl;
Jens Scharsig98250e82010-02-03 22:47:35 +010076}
77
Patrick Delaunay6180ea72018-10-05 11:33:52 +020078static ulong get_timer_masked(void)
Jens Scharsig98250e82010-02-03 22:47:35 +010079{
80 return get_timer_raw()/TIMER_LOAD_VAL;
81}
82
Patrick Delaunay6180ea72018-10-05 11:33:52 +020083ulong get_timer(ulong base)
84{
85 return get_timer_masked() - base;
86}
87
Patrick Delaunayaa33fe82018-10-05 11:33:51 +020088void __udelay(unsigned long usec)
Jens Scharsig98250e82010-02-03 22:47:35 +010089{
90 u32 tmo;
91 u32 endtime;
92 signed long diff;
93
94 tmo = CONFIG_SYS_HZ_CLOCK / 1000;
95 tmo *= usec;
96 tmo /= 1000;
97
98 endtime = get_timer_raw() + tmo;
99
100 do {
101 u32 now = get_timer_raw();
102 diff = endtime - now;
103 } while (diff >= 0);
104}
105
106/*
107 * This function is derived from PowerPC code (read timebase as long long).
108 * On ARM it just returns the timer value.
109 */
110unsigned long long get_ticks(void)
111{
112 return get_timer(0);
113}
114
115/*
116 * This function is derived from PowerPC code (timebase clock frequency).
117 * On ARM it returns the number of timer ticks per second.
118 */
119ulong get_tbclk(void)
120{
121 return CONFIG_SYS_HZ;
122}