blob: 82b8d7e7d7f65bc39023444270feff720f20b13d [file] [log] [blame]
Stelian Popd1aea1c2008-01-30 21:15:54 +00001/*
2 * (C) Copyright 2007-2008
Stelian Pop50497522008-05-08 22:52:09 +02003 * Stelian Pop <stelian.pop@leadtechdesign.com>
Stelian Popd1aea1c2008-01-30 21:15:54 +00004 * Lead Tech Design <www.leadtechdesign.com>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
26#include <asm/arch/hardware.h>
Stelian Popd4bfbc52008-03-26 20:52:32 +010027#include <asm/arch/at91_pit.h>
28#include <asm/arch/at91_pmc.h>
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020029#include <asm/arch/clk.h>
Stelian Popd4bfbc52008-03-26 20:52:32 +010030#include <asm/arch/io.h>
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020031#include <div64.h>
Stelian Popd1aea1c2008-01-30 21:15:54 +000032
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020033#if !defined(CONFIG_AT91FAMILY)
34# error You need to define CONFIG_AT91FAMILY in your board config!
35#endif
36
37DECLARE_GLOBAL_DATA_PTR;
38
Stelian Popd1aea1c2008-01-30 21:15:54 +000039/*
Stelian Popeea44aa2008-03-26 20:52:28 +010040 * We're using the AT91CAP9/SAM9 PITC in 32 bit mode, by
Stelian Popd1aea1c2008-01-30 21:15:54 +000041 * setting the 20 bit counter period to its maximum (0xfffff).
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020042 * (See the relevant data sheets to understand that this really works)
43 *
44 * We do also mimic the typical powerpc way of incrementing
45 * two 32 bit registers called tbl and tbu.
46 *
47 * Those registers increment at 1/16 the main clock rate.
Stelian Popd1aea1c2008-01-30 21:15:54 +000048 */
Stelian Popd1aea1c2008-01-30 21:15:54 +000049
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020050#define TIMER_LOAD_VAL 0xfffff
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020051
52static inline unsigned long long tick_to_time(unsigned long long tick)
53{
54 tick *= CONFIG_SYS_HZ;
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020055 do_div(tick, gd->timer_rate_hz);
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020056
57 return tick;
58}
59
60static inline unsigned long long usec_to_tick(unsigned long long usec)
61{
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020062 usec *= gd->timer_rate_hz;
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020063 do_div(usec, 1000000);
64
65 return usec;
66}
Stelian Popd1aea1c2008-01-30 21:15:54 +000067
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020068/*
69 * Use the PITC in full 32 bit incrementing mode
70 */
Stelian Pop6bf2de22008-03-26 21:52:27 +010071int timer_init(void)
Stelian Popd1aea1c2008-01-30 21:15:54 +000072{
Jens Scharsiga4db1ca2010-02-03 22:46:58 +010073 at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
74 at91_pit_t *pit = (at91_pit_t *) AT91_PIT_BASE;
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020075
76 /* Enable PITC Clock */
Jens Scharsiga4db1ca2010-02-03 22:46:58 +010077 writel(1 << AT91_ID_SYS, &pmc->pcer);
Stelian Popd1aea1c2008-01-30 21:15:54 +000078
79 /* Enable PITC */
Jens Scharsiga4db1ca2010-02-03 22:46:58 +010080 writel(TIMER_LOAD_VAL | AT91_PIT_MR_EN , &pit->mr);
Stelian Popd1aea1c2008-01-30 21:15:54 +000081
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020082 gd->timer_rate_hz = gd->mck_rate_hz / 16;
83 gd->tbu = gd->tbl = 0;
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020084
Stelian Popd1aea1c2008-01-30 21:15:54 +000085 return 0;
86}
87
88/*
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020089 * Get the current 64 bit timer tick count
Stelian Popd1aea1c2008-01-30 21:15:54 +000090 */
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020091unsigned long long get_ticks(void)
Stelian Popd1aea1c2008-01-30 21:15:54 +000092{
Jens Scharsiga4db1ca2010-02-03 22:46:58 +010093 at91_pit_t *pit = (at91_pit_t *) AT91_PIT_BASE;
94
95 ulong now = readl(&pit->piir);
Stelian Popd4bfbc52008-03-26 20:52:32 +010096
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020097 /* increment tbu if tbl has rolled over */
98 if (now < gd->tbl)
99 gd->tbu++;
100 gd->tbl = now;
101 return (((unsigned long long)gd->tbu) << 32) | gd->tbl;
Stelian Popd1aea1c2008-01-30 21:15:54 +0000102}
103
Ingo van Lilf0f778a2009-11-24 14:09:21 +0100104void __udelay(unsigned long usec)
Stelian Popd1aea1c2008-01-30 21:15:54 +0000105{
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +0200106 unsigned long long tmp;
107 ulong tmo;
Stelian Popd1aea1c2008-01-30 21:15:54 +0000108
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +0200109 tmo = usec_to_tick(usec);
110 tmp = get_ticks() + tmo; /* get current timestamp */
111
112 while (get_ticks() < tmp) /* loop till event */
Reinhard Meyer0a1790a2010-10-05 16:54:35 +0200113 ;
Stelian Popd1aea1c2008-01-30 21:15:54 +0000114}
115
Reinhard Meyer0a1790a2010-10-05 16:54:35 +0200116/*
117 * reset_timer() and get_timer(base) are a pair of functions that are used by
118 * some timeout/sleep mechanisms in u-boot.
119 *
120 * reset_timer() marks the current time as epoch and
121 * get_timer(base) works relative to that epoch.
122 *
123 * The time is used in CONFIG_SYS_HZ units!
124 */
Stelian Popd1aea1c2008-01-30 21:15:54 +0000125void reset_timer(void)
126{
Reinhard Meyer0a1790a2010-10-05 16:54:35 +0200127 gd->timer_reset_value = get_ticks();
Stelian Popd1aea1c2008-01-30 21:15:54 +0000128}
129
130ulong get_timer(ulong base)
131{
Reinhard Meyer0a1790a2010-10-05 16:54:35 +0200132 return tick_to_time(get_ticks() - gd->timer_reset_value) - base;
Stelian Popd1aea1c2008-01-30 21:15:54 +0000133}
134
135/*
Reinhard Meyer0a1790a2010-10-05 16:54:35 +0200136 * Return the number of timer ticks per second.
Stelian Popd1aea1c2008-01-30 21:15:54 +0000137 */
138ulong get_tbclk(void)
139{
Reinhard Meyer0a1790a2010-10-05 16:54:35 +0200140 return gd->timer_rate_hz;
Stelian Popd1aea1c2008-01-30 21:15:54 +0000141}