blob: a6346c01b285170ae3c991b8b472404d22c8f025 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bo Shen3225f342013-05-12 22:40:54 +00002/*
3 * (C) Copyright 2007-2008
4 * Stelian Pop <stelian@popies.net>
5 * Lead Tech Design <www.leadtechdesign.com>
6 *
7 * (C) Copyright 2013
8 * Bo Shen <voice.shen@atmel.com>
Bo Shen3225f342013-05-12 22:40:54 +00009 */
10
11#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Simon Glass049f8d62019-12-28 10:44:59 -070013#include <time.h>
Bo Shen3225f342013-05-12 22:40:54 +000014#include <asm/io.h>
15#include <asm/arch/hardware.h>
16#include <asm/arch/at91_pit.h>
Bo Shen3225f342013-05-12 22:40:54 +000017#include <asm/arch/clk.h>
18#include <div64.h>
19
20#if !defined(CONFIG_AT91FAMILY)
21# error You need to define CONFIG_AT91FAMILY in your board config!
22#endif
23
24DECLARE_GLOBAL_DATA_PTR;
25
26/*
27 * We're using the SAMA5D3x PITC in 32 bit mode, by
28 * setting the 20 bit counter period to its maximum (0xfffff).
29 * (See the relevant data sheets to understand that this really works)
30 *
31 * We do also mimic the typical powerpc way of incrementing
32 * two 32 bit registers called tbl and tbu.
33 *
34 * Those registers increment at 1/16 the main clock rate.
35 */
36
37#define TIMER_LOAD_VAL 0xfffff
38
Bo Shen3225f342013-05-12 22:40:54 +000039/*
40 * Use the PITC in full 32 bit incrementing mode
41 */
42int timer_init(void)
43{
44 at91_pit_t *pit = (at91_pit_t *)ATMEL_BASE_PIT;
45
46 /* Enable PITC Clock */
Bo Shen184c5512013-11-15 11:12:32 +080047 at91_periph_clk_enable(ATMEL_ID_PIT);
Bo Shen3225f342013-05-12 22:40:54 +000048
49 /* Enable PITC */
50 writel(TIMER_LOAD_VAL | AT91_PIT_MR_EN , &pit->mr);
51
Bo Shen927b9012014-11-10 15:24:02 +080052 gd->arch.timer_rate_hz = get_pit_clk_rate() / 16;
53
Bo Shen3225f342013-05-12 22:40:54 +000054 return 0;
55}
56
57/*
Bo Shen3225f342013-05-12 22:40:54 +000058 * Return the number of timer ticks per second.
59 */
60ulong get_tbclk(void)
61{
62 return gd->arch.timer_rate_hz;
63}