blob: f81e8455937cd18b271f09296b41c8fe52267bd4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stelian Popd1aea1c2008-01-30 21:15:54 +00002/*
3 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Popd1aea1c2008-01-30 21:15:54 +00005 * Lead Tech Design <www.leadtechdesign.com>
Stelian Popd1aea1c2008-01-30 21:15:54 +00006 */
7
8#include <common.h>
Reinhard Meyerb06208c2010-11-07 13:26:14 +01009#include <asm/io.h>
Stelian Popd1aea1c2008-01-30 21:15:54 +000010#include <asm/arch/hardware.h>
Stelian Popd4bfbc52008-03-26 20:52:32 +010011#include <asm/arch/at91_pit.h>
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020012#include <asm/arch/clk.h>
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020013#include <div64.h>
Stelian Popd1aea1c2008-01-30 21:15:54 +000014
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020015#if !defined(CONFIG_AT91FAMILY)
16# error You need to define CONFIG_AT91FAMILY in your board config!
17#endif
18
19DECLARE_GLOBAL_DATA_PTR;
20
Stelian Popd1aea1c2008-01-30 21:15:54 +000021/*
Stelian Popeea44aa2008-03-26 20:52:28 +010022 * We're using the AT91CAP9/SAM9 PITC in 32 bit mode, by
Stelian Popd1aea1c2008-01-30 21:15:54 +000023 * setting the 20 bit counter period to its maximum (0xfffff).
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020024 * (See the relevant data sheets to understand that this really works)
25 *
26 * We do also mimic the typical powerpc way of incrementing
27 * two 32 bit registers called tbl and tbu.
28 *
29 * Those registers increment at 1/16 the main clock rate.
Stelian Popd1aea1c2008-01-30 21:15:54 +000030 */
Stelian Popd1aea1c2008-01-30 21:15:54 +000031
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020032#define TIMER_LOAD_VAL 0xfffff
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020033
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020034/*
35 * Use the PITC in full 32 bit incrementing mode
36 */
Stelian Pop6bf2de22008-03-26 21:52:27 +010037int timer_init(void)
Stelian Popd1aea1c2008-01-30 21:15:54 +000038{
Reinhard Meyere260d0b2010-11-03 15:39:55 +010039 at91_pit_t *pit = (at91_pit_t *) ATMEL_BASE_PIT;
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020040
Wenyou Yang57b7f292016-02-03 10:16:49 +080041 at91_periph_clk_enable(ATMEL_ID_SYS);
Stelian Popd1aea1c2008-01-30 21:15:54 +000042
43 /* Enable PITC */
Jens Scharsiga4db1ca2010-02-03 22:46:58 +010044 writel(TIMER_LOAD_VAL | AT91_PIT_MR_EN , &pit->mr);
Stelian Popd1aea1c2008-01-30 21:15:54 +000045
Simon Glass6ed6e032012-12-13 20:48:32 +000046 gd->arch.timer_rate_hz = gd->arch.mck_rate_hz / 16;
Jean-Christophe PLAGNIOL-VILLARD1d4a3792009-04-16 21:30:48 +020047
Stelian Popd1aea1c2008-01-30 21:15:54 +000048 return 0;
49}
50
51/*
Reinhard Meyer0a1790a2010-10-05 16:54:35 +020052 * Return the number of timer ticks per second.
Stelian Popd1aea1c2008-01-30 21:15:54 +000053 */
54ulong get_tbclk(void)
55{
Simon Glass6ed6e032012-12-13 20:48:32 +000056 return gd->arch.timer_rate_hz;
Stelian Popd1aea1c2008-01-30 21:15:54 +000057}