blob: fa1941aec42e04978c857044e19e5bbbe883b1bd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefano Babic64fdf452010-01-20 18:19:32 +01002/*
3 * (C) Copyright 2007
4 * Sascha Hauer, Pengutronix
5 *
6 * (C) Copyright 2009 Freescale Semiconductor, Inc.
Stefano Babic64fdf452010-01-20 18:19:32 +01007 */
8
9#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Simon Glass6887c5b2019-11-14 12:57:26 -070011#include <time.h>
Stefano Babic64fdf452010-01-20 18:19:32 +010012#include <asm/io.h>
Stefano Babic782bb0d2012-02-06 12:52:36 +010013#include <div64.h>
Stefano Babic64fdf452010-01-20 18:19:32 +010014#include <asm/arch/imx-regs.h>
Benoît Thébaudeau833b6432012-09-27 10:19:58 +000015#include <asm/arch/clock.h>
Ye.Li1a1f7952014-10-30 18:20:55 +080016#include <asm/arch/sys_proto.h>
Stefano Babic64fdf452010-01-20 18:19:32 +010017
18/* General purpose timers registers */
19struct mxc_gpt {
20 unsigned int control;
21 unsigned int prescaler;
22 unsigned int status;
23 unsigned int nouse[6];
24 unsigned int counter;
25};
26
27static struct mxc_gpt *cur_gpt = (struct mxc_gpt *)GPT1_BASE_ADDR;
28
29/* General purpose timers bitfields */
Jason Liu18936ee2011-11-25 00:18:01 +000030#define GPTCR_SWR (1 << 15) /* Software reset */
Ye.Li1a1f7952014-10-30 18:20:55 +080031#define GPTCR_24MEN (1 << 10) /* Enable 24MHz clock input */
Jason Liu18936ee2011-11-25 00:18:01 +000032#define GPTCR_FRR (1 << 9) /* Freerun / restart */
Ye.Li1a1f7952014-10-30 18:20:55 +080033#define GPTCR_CLKSOURCE_32 (4 << 6) /* Clock source 32khz */
34#define GPTCR_CLKSOURCE_OSC (5 << 6) /* Clock source OSC */
35#define GPTCR_CLKSOURCE_PRE (1 << 6) /* Clock source PRECLK */
36#define GPTCR_CLKSOURCE_MASK (0x7 << 6)
Jason Liu18936ee2011-11-25 00:18:01 +000037#define GPTCR_TEN 1 /* Timer enable */
Stefano Babic64fdf452010-01-20 18:19:32 +010038
Ye.Li1a1f7952014-10-30 18:20:55 +080039#define GPTPR_PRESCALER24M_SHIFT 12
40#define GPTPR_PRESCALER24M_MASK (0xF << GPTPR_PRESCALER24M_SHIFT)
41
Ye.Li1a1f7952014-10-30 18:20:55 +080042static inline int gpt_has_clk_source_osc(void)
43{
44#if defined(CONFIG_MX6)
Peng Fan27cd0da2016-05-23 18:35:56 +080045 if (((is_mx6dq()) && (soc_rev() > CHIP_REV_1_0)) ||
Peng Fan988acd22016-08-11 14:02:42 +080046 is_mx6dqp() || is_mx6sdl() || is_mx6sx() || is_mx6ul() ||
Peng Fanfddac802016-12-11 19:24:23 +080047 is_mx6ull() || is_mx6sll())
Ye.Li1a1f7952014-10-30 18:20:55 +080048 return 1;
49
50 return 0;
51#else
52 return 0;
53#endif
54}
55
56static inline ulong gpt_get_clk(void)
57{
58#ifdef CONFIG_MXC_GPT_HCLK
59 if (gpt_has_clk_source_osc())
60 return MXC_HCLK >> 3;
61 else
62 return mxc_get_clock(MXC_IPG_PERCLK);
63#else
64 return MXC_CLK32;
65#endif
66}
Stefano Babic782bb0d2012-02-06 12:52:36 +010067
Stefano Babic64fdf452010-01-20 18:19:32 +010068int timer_init(void)
69{
70 int i;
71
72 /* setup GP Timer 1 */
73 __raw_writel(GPTCR_SWR, &cur_gpt->control);
74
75 /* We have no udelay by now */
Anatolij Gustschinae642262017-08-28 17:46:32 +020076 __raw_writel(0, &cur_gpt->control);
Stefano Babic64fdf452010-01-20 18:19:32 +010077
Stefano Babic64fdf452010-01-20 18:19:32 +010078 i = __raw_readl(&cur_gpt->control);
Ye.Li1a1f7952014-10-30 18:20:55 +080079 i &= ~GPTCR_CLKSOURCE_MASK;
80
81#ifdef CONFIG_MXC_GPT_HCLK
82 if (gpt_has_clk_source_osc()) {
83 i |= GPTCR_CLKSOURCE_OSC | GPTCR_TEN;
84
Peng Fanfddac802016-12-11 19:24:23 +080085 /*
86 * For DL/S, SX, UL, ULL, SLL set 24Mhz OSC
87 * Enable bit and prescaler
88 */
89 if (is_mx6sdl() || is_mx6sx() || is_mx6ul() || is_mx6ull() ||
90 is_mx6sll()) {
Ye.Li1a1f7952014-10-30 18:20:55 +080091 i |= GPTCR_24MEN;
92
93 /* Produce 3Mhz clock */
94 __raw_writel((7 << GPTPR_PRESCALER24M_SHIFT),
95 &cur_gpt->prescaler);
96 }
97 } else {
98 i |= GPTCR_CLKSOURCE_PRE | GPTCR_TEN;
99 }
100#else
101 __raw_writel(0, &cur_gpt->prescaler); /* 32Khz */
102 i |= GPTCR_CLKSOURCE_32 | GPTCR_TEN;
103#endif
104 __raw_writel(i, &cur_gpt->control);
Stefano Babic64fdf452010-01-20 18:19:32 +0100105
Graeme Russ17659d72011-07-15 02:21:14 +0000106 return 0;
Stefano Babic64fdf452010-01-20 18:19:32 +0100107}
108
Peng Fan2bb01482015-08-26 15:40:58 +0800109unsigned long timer_read_counter(void)
Stefano Babic782bb0d2012-02-06 12:52:36 +0100110{
Peng Fan2bb01482015-08-26 15:40:58 +0800111 return __raw_readl(&cur_gpt->counter); /* current tick value */
Stefano Babic782bb0d2012-02-06 12:52:36 +0100112}
Stefano Babic64fdf452010-01-20 18:19:32 +0100113
Stefano Babic782bb0d2012-02-06 12:52:36 +0100114/*
115 * This function is derived from PowerPC code (timebase clock frequency).
116 * On ARM it returns the number of timer ticks per second.
117 */
118ulong get_tbclk(void)
119{
Ye.Li1a1f7952014-10-30 18:20:55 +0800120 return gpt_get_clk();
Stefano Babic64fdf452010-01-20 18:19:32 +0100121}
Peng Fan436baaa2016-08-25 19:03:17 +0200122
123/*
124 * This function is intended for SHORT delays only.
125 * It will overflow at around 10 seconds @ 400MHz,
126 * or 20 seconds @ 200MHz.
127 */
128unsigned long usec2ticks(unsigned long _usec)
129{
130 unsigned long long usec = _usec;
131
132 usec *= get_tbclk();
133 usec += 999999;
134 do_div(usec, 1000000);
135
136 return usec;
137}