blob: 69ce6f9573570b78645437225fb90f62655af659 [file] [log] [blame]
Jens Scharsig98250e82010-02-03 22:47:35 +01001/*
2 * (C) Copyright 2002
3 * Lineo, Inc. <www.lineo.com>
4 * Bernhard Kuhn <bkuhn@lineo.com>
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
10 * (C) Copyright 2002
11 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
12 * Alex Zuepke <azu@sysgo.de>
13 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020014 * SPDX-License-Identifier: GPL-2.0+
Jens Scharsig98250e82010-02-03 22:47:35 +010015 */
16
17#include <common.h>
18
Jens Scharsig80733992011-02-19 06:17:02 +000019#include <asm/io.h>
Andreas Bießmanna429db72010-11-30 09:45:06 +000020#include <asm/arch/hardware.h>
Jens Scharsig98250e82010-02-03 22:47:35 +010021#include <asm/arch/at91_tc.h>
Wenyou Yangeced5a72016-02-03 10:16:49 +080022#include <asm/arch/clk.h>
Jens Scharsig98250e82010-02-03 22:47:35 +010023
Andreas Bießmanna429db72010-11-30 09:45:06 +000024DECLARE_GLOBAL_DATA_PTR;
25
Jens Scharsig98250e82010-02-03 22:47:35 +010026/* the number of clocks per CONFIG_SYS_HZ */
27#define TIMER_LOAD_VAL (CONFIG_SYS_HZ_CLOCK/CONFIG_SYS_HZ)
28
Jens Scharsig98250e82010-02-03 22:47:35 +010029int timer_init(void)
30{
Jens Scharsig80733992011-02-19 06:17:02 +000031 at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC;
Jens Scharsig98250e82010-02-03 22:47:35 +010032
Wenyou Yangeced5a72016-02-03 10:16:49 +080033 at91_periph_clk_enable(ATMEL_ID_TC0);
Jens Scharsig98250e82010-02-03 22:47:35 +010034
35 writel(0, &tc->bcr);
36 writel(AT91_TC_BMR_TC0XC0S_NONE | AT91_TC_BMR_TC1XC1S_NONE |
37 AT91_TC_BMR_TC2XC2S_NONE , &tc->bmr);
38
39 writel(AT91_TC_CCR_CLKDIS, &tc->tc[0].ccr);
40 /* set to MCLK/2 and restart the timer
41 when the value in TC_RC is reached */
42 writel(AT91_TC_CMR_TCCLKS_CLOCK1 | AT91_TC_CMR_CPCTRG, &tc->tc[0].cmr);
43
Mike Williams16263082011-07-22 04:01:30 +000044 writel(0xFFFFFFFF, &tc->tc[0].idr); /* disable interrupts */
Jens Scharsig98250e82010-02-03 22:47:35 +010045 writel(TIMER_LOAD_VAL, &tc->tc[0].rc);
46
47 writel(AT91_TC_CCR_SWTRG | AT91_TC_CCR_CLKEN, &tc->tc[0].ccr);
Simon Glass582601d2012-12-13 20:48:35 +000048 gd->arch.lastinc = 0;
Simon Glass66ee6922012-12-13 20:48:34 +000049 gd->arch.tbl = 0;
Jens Scharsig98250e82010-02-03 22:47:35 +010050
51 return 0;
52}
53
54/*
55 * timer without interrupts
56 */
Jens Scharsig98250e82010-02-03 22:47:35 +010057ulong get_timer(ulong base)
58{
59 return get_timer_masked() - base;
60}
61
Jens Scharsig98250e82010-02-03 22:47:35 +010062void __udelay(unsigned long usec)
63{
64 udelay_masked(usec);
65}
66
Jens Scharsig98250e82010-02-03 22:47:35 +010067ulong get_timer_raw(void)
68{
Jens Scharsig80733992011-02-19 06:17:02 +000069 at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC;
Jens Scharsig98250e82010-02-03 22:47:35 +010070 u32 now;
71
72 now = readl(&tc->tc[0].cv) & 0x0000ffff;
73
Simon Glass582601d2012-12-13 20:48:35 +000074 if (now >= gd->arch.lastinc) {
Jens Scharsig98250e82010-02-03 22:47:35 +010075 /* normal mode */
Simon Glass582601d2012-12-13 20:48:35 +000076 gd->arch.tbl += now - gd->arch.lastinc;
Jens Scharsig98250e82010-02-03 22:47:35 +010077 } else {
78 /* we have an overflow ... */
Simon Glass582601d2012-12-13 20:48:35 +000079 gd->arch.tbl += now + TIMER_LOAD_VAL - gd->arch.lastinc;
Jens Scharsig98250e82010-02-03 22:47:35 +010080 }
Simon Glass582601d2012-12-13 20:48:35 +000081 gd->arch.lastinc = now;
Jens Scharsig98250e82010-02-03 22:47:35 +010082
Simon Glass66ee6922012-12-13 20:48:34 +000083 return gd->arch.tbl;
Jens Scharsig98250e82010-02-03 22:47:35 +010084}
85
86ulong get_timer_masked(void)
87{
88 return get_timer_raw()/TIMER_LOAD_VAL;
89}
90
91void udelay_masked(unsigned long usec)
92{
93 u32 tmo;
94 u32 endtime;
95 signed long diff;
96
97 tmo = CONFIG_SYS_HZ_CLOCK / 1000;
98 tmo *= usec;
99 tmo /= 1000;
100
101 endtime = get_timer_raw() + tmo;
102
103 do {
104 u32 now = get_timer_raw();
105 diff = endtime - now;
106 } while (diff >= 0);
107}
108
109/*
110 * This function is derived from PowerPC code (read timebase as long long).
111 * On ARM it just returns the timer value.
112 */
113unsigned long long get_ticks(void)
114{
115 return get_timer(0);
116}
117
118/*
119 * This function is derived from PowerPC code (timebase clock frequency).
120 * On ARM it returns the number of timer ticks per second.
121 */
122ulong get_tbclk(void)
123{
124 return CONFIG_SYS_HZ;
125}