blob: 1a88ce686249c3827bfc0f4354703baf8d9a58f1 [file] [log] [blame]
Stefano Babic64fdf452010-01-20 18:19:32 +01001/*
2 * (C) Copyright 2007
3 * Sascha Hauer, Pengutronix
4 *
5 * (C) Copyright 2009 Freescale Semiconductor, Inc.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Stefano Babic64fdf452010-01-20 18:19:32 +01008 */
9
10#include <common.h>
11#include <asm/io.h>
Stefano Babic782bb0d2012-02-06 12:52:36 +010012#include <div64.h>
Stefano Babic64fdf452010-01-20 18:19:32 +010013#include <asm/arch/imx-regs.h>
Benoît Thébaudeau833b6432012-09-27 10:19:58 +000014#include <asm/arch/clock.h>
Ye.Li1a1f7952014-10-30 18:20:55 +080015#include <asm/arch/sys_proto.h>
Stefano Babic64fdf452010-01-20 18:19:32 +010016
17/* General purpose timers registers */
18struct mxc_gpt {
19 unsigned int control;
20 unsigned int prescaler;
21 unsigned int status;
22 unsigned int nouse[6];
23 unsigned int counter;
24};
25
26static struct mxc_gpt *cur_gpt = (struct mxc_gpt *)GPT1_BASE_ADDR;
27
28/* General purpose timers bitfields */
Jason Liu18936ee2011-11-25 00:18:01 +000029#define GPTCR_SWR (1 << 15) /* Software reset */
Ye.Li1a1f7952014-10-30 18:20:55 +080030#define GPTCR_24MEN (1 << 10) /* Enable 24MHz clock input */
Jason Liu18936ee2011-11-25 00:18:01 +000031#define GPTCR_FRR (1 << 9) /* Freerun / restart */
Ye.Li1a1f7952014-10-30 18:20:55 +080032#define GPTCR_CLKSOURCE_32 (4 << 6) /* Clock source 32khz */
33#define GPTCR_CLKSOURCE_OSC (5 << 6) /* Clock source OSC */
34#define GPTCR_CLKSOURCE_PRE (1 << 6) /* Clock source PRECLK */
35#define GPTCR_CLKSOURCE_MASK (0x7 << 6)
Jason Liu18936ee2011-11-25 00:18:01 +000036#define GPTCR_TEN 1 /* Timer enable */
Stefano Babic64fdf452010-01-20 18:19:32 +010037
Ye.Li1a1f7952014-10-30 18:20:55 +080038#define GPTPR_PRESCALER24M_SHIFT 12
39#define GPTPR_PRESCALER24M_MASK (0xF << GPTPR_PRESCALER24M_SHIFT)
40
Stefano Babicdb106ef2011-01-21 21:16:15 +010041DECLARE_GLOBAL_DATA_PTR;
42
Ye.Li1a1f7952014-10-30 18:20:55 +080043static inline int gpt_has_clk_source_osc(void)
44{
45#if defined(CONFIG_MX6)
46 if (((is_cpu_type(MXC_CPU_MX6Q) || is_cpu_type(MXC_CPU_MX6D)) &&
Peng Fanb65d9d82015-06-11 18:30:35 +080047 (soc_rev() > CHIP_REV_1_0)) || is_cpu_type(MXC_CPU_MX6DL) ||
Peng Fan35d5e542015-07-20 19:28:25 +080048 is_cpu_type(MXC_CPU_MX6SOLO) || is_cpu_type(MXC_CPU_MX6SX) ||
49 is_cpu_type(MXC_CPU_MX6UL))
Ye.Li1a1f7952014-10-30 18:20:55 +080050 return 1;
51
52 return 0;
53#else
54 return 0;
55#endif
56}
57
58static inline ulong gpt_get_clk(void)
59{
60#ifdef CONFIG_MXC_GPT_HCLK
61 if (gpt_has_clk_source_osc())
62 return MXC_HCLK >> 3;
63 else
64 return mxc_get_clock(MXC_IPG_PERCLK);
65#else
66 return MXC_CLK32;
67#endif
68}
Stefano Babic782bb0d2012-02-06 12:52:36 +010069static inline unsigned long long tick_to_time(unsigned long long tick)
70{
Ye.Li1a1f7952014-10-30 18:20:55 +080071 ulong gpt_clk = gpt_get_clk();
72
Stefano Babic782bb0d2012-02-06 12:52:36 +010073 tick *= CONFIG_SYS_HZ;
Ye.Li1a1f7952014-10-30 18:20:55 +080074 do_div(tick, gpt_clk);
Stefano Babic782bb0d2012-02-06 12:52:36 +010075
76 return tick;
77}
78
79static inline unsigned long long us_to_tick(unsigned long long usec)
80{
Ye.Li1a1f7952014-10-30 18:20:55 +080081 ulong gpt_clk = gpt_get_clk();
82
83 usec = usec * gpt_clk + 999999;
Stefano Babic782bb0d2012-02-06 12:52:36 +010084 do_div(usec, 1000000);
85
86 return usec;
87}
88
Stefano Babic64fdf452010-01-20 18:19:32 +010089int timer_init(void)
90{
91 int i;
92
93 /* setup GP Timer 1 */
94 __raw_writel(GPTCR_SWR, &cur_gpt->control);
95
96 /* We have no udelay by now */
97 for (i = 0; i < 100; i++)
98 __raw_writel(0, &cur_gpt->control);
99
Stefano Babic64fdf452010-01-20 18:19:32 +0100100 i = __raw_readl(&cur_gpt->control);
Ye.Li1a1f7952014-10-30 18:20:55 +0800101 i &= ~GPTCR_CLKSOURCE_MASK;
102
103#ifdef CONFIG_MXC_GPT_HCLK
104 if (gpt_has_clk_source_osc()) {
105 i |= GPTCR_CLKSOURCE_OSC | GPTCR_TEN;
106
Peng Fan35d5e542015-07-20 19:28:25 +0800107 /* For DL/S, SX, UL, set 24Mhz OSC Enable bit and prescaler */
Ye.Li1a1f7952014-10-30 18:20:55 +0800108 if (is_cpu_type(MXC_CPU_MX6DL) ||
109 is_cpu_type(MXC_CPU_MX6SOLO) ||
Peng Fan35d5e542015-07-20 19:28:25 +0800110 is_cpu_type(MXC_CPU_MX6SX) ||
111 is_cpu_type(MXC_CPU_MX6UL)) {
Ye.Li1a1f7952014-10-30 18:20:55 +0800112 i |= GPTCR_24MEN;
113
114 /* Produce 3Mhz clock */
115 __raw_writel((7 << GPTPR_PRESCALER24M_SHIFT),
116 &cur_gpt->prescaler);
117 }
118 } else {
119 i |= GPTCR_CLKSOURCE_PRE | GPTCR_TEN;
120 }
121#else
122 __raw_writel(0, &cur_gpt->prescaler); /* 32Khz */
123 i |= GPTCR_CLKSOURCE_32 | GPTCR_TEN;
124#endif
125 __raw_writel(i, &cur_gpt->control);
Stefano Babic64fdf452010-01-20 18:19:32 +0100126
Knut Wohlrab982a3c42013-03-04 04:16:02 +0000127 gd->arch.tbl = __raw_readl(&cur_gpt->counter);
128 gd->arch.tbu = 0;
Graeme Russ17659d72011-07-15 02:21:14 +0000129
130 return 0;
Stefano Babic64fdf452010-01-20 18:19:32 +0100131}
132
Stefano Babic782bb0d2012-02-06 12:52:36 +0100133unsigned long long get_ticks(void)
134{
135 ulong now = __raw_readl(&cur_gpt->counter); /* current tick value */
136
Knut Wohlrab982a3c42013-03-04 04:16:02 +0000137 /* increment tbu if tbl has rolled over */
138 if (now < gd->arch.tbl)
139 gd->arch.tbu++;
140 gd->arch.tbl = now;
141 return (((unsigned long long)gd->arch.tbu) << 32) | gd->arch.tbl;
Stefano Babic782bb0d2012-02-06 12:52:36 +0100142}
143
Stefano Babic64fdf452010-01-20 18:19:32 +0100144ulong get_timer_masked(void)
145{
Stefano Babic782bb0d2012-02-06 12:52:36 +0100146 /*
147 * get_ticks() returns a long long (64 bit), it wraps in
Ye.Li1a1f7952014-10-30 18:20:55 +0800148 * 2^64 / GPT_CLK = 2^64 / 2^15 = 2^49 ~ 5 * 10^14 (s) ~
Stefano Babic782bb0d2012-02-06 12:52:36 +0100149 * 5 * 10^9 days... and get_ticks() * CONFIG_SYS_HZ wraps in
150 * 5 * 10^6 days - long enough.
151 */
152 return tick_to_time(get_ticks());
Stefano Babic64fdf452010-01-20 18:19:32 +0100153}
154
155ulong get_timer(ulong base)
156{
157 return get_timer_masked() - base;
158}
159
Stefano Babic782bb0d2012-02-06 12:52:36 +0100160/* delay x useconds AND preserve advance timstamp value */
Stefano Babic64fdf452010-01-20 18:19:32 +0100161void __udelay(unsigned long usec)
162{
Stefano Babic782bb0d2012-02-06 12:52:36 +0100163 unsigned long long tmp;
164 ulong tmo;
Stefano Babic64fdf452010-01-20 18:19:32 +0100165
Stefano Babic782bb0d2012-02-06 12:52:36 +0100166 tmo = us_to_tick(usec);
167 tmp = get_ticks() + tmo; /* get current timestamp */
Stefano Babic64fdf452010-01-20 18:19:32 +0100168
Stefano Babic782bb0d2012-02-06 12:52:36 +0100169 while (get_ticks() < tmp) /* loop till event */
170 /*NOP*/;
171}
Stefano Babic64fdf452010-01-20 18:19:32 +0100172
Stefano Babic782bb0d2012-02-06 12:52:36 +0100173/*
174 * This function is derived from PowerPC code (timebase clock frequency).
175 * On ARM it returns the number of timer ticks per second.
176 */
177ulong get_tbclk(void)
178{
Ye.Li1a1f7952014-10-30 18:20:55 +0800179 return gpt_get_clk();
Stefano Babic64fdf452010-01-20 18:19:32 +0100180}
Raul Cardenas02000202015-02-27 11:22:06 -0600181
182/*
183 * This function is intended for SHORT delays only.
184 * It will overflow at around 10 seconds @ 400MHz,
185 * or 20 seconds @ 200MHz.
186 */
187unsigned long usec2ticks(unsigned long usec)
188{
189 ulong ticks;
190
191 if (usec < 1000)
192 ticks = ((usec * (get_tbclk()/1000)) + 500) / 1000;
193 else
194 ticks = ((usec / 10) * (get_tbclk() / 100000));
195
196 return ticks;
197}