blob: a01590ced2261c28d3ad9d02505eb7d6a9f58f70 [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)
Peng Fan27cd0da2016-05-23 18:35:56 +080046 if (((is_mx6dq()) && (soc_rev() > CHIP_REV_1_0)) ||
Peng Fan492d60a2016-05-23 18:36:01 +080047 is_mx6dqp() || is_mx6sdl() || is_mx6sx() || is_mx6ul())
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 */
76 for (i = 0; i < 100; i++)
77 __raw_writel(0, &cur_gpt->control);
78
Stefano Babic64fdf452010-01-20 18:19:32 +010079 i = __raw_readl(&cur_gpt->control);
Ye.Li1a1f7952014-10-30 18:20:55 +080080 i &= ~GPTCR_CLKSOURCE_MASK;
81
82#ifdef CONFIG_MXC_GPT_HCLK
83 if (gpt_has_clk_source_osc()) {
84 i |= GPTCR_CLKSOURCE_OSC | GPTCR_TEN;
85
Peng Fan35d5e542015-07-20 19:28:25 +080086 /* For DL/S, SX, UL, set 24Mhz OSC Enable bit and prescaler */
Peng Fan27cd0da2016-05-23 18:35:56 +080087 if (is_mx6sdl() || is_mx6sx() || is_mx6ul()) {
Ye.Li1a1f7952014-10-30 18:20:55 +080088 i |= GPTCR_24MEN;
89
90 /* Produce 3Mhz clock */
91 __raw_writel((7 << GPTPR_PRESCALER24M_SHIFT),
92 &cur_gpt->prescaler);
93 }
94 } else {
95 i |= GPTCR_CLKSOURCE_PRE | GPTCR_TEN;
96 }
97#else
98 __raw_writel(0, &cur_gpt->prescaler); /* 32Khz */
99 i |= GPTCR_CLKSOURCE_32 | GPTCR_TEN;
100#endif
101 __raw_writel(i, &cur_gpt->control);
Stefano Babic64fdf452010-01-20 18:19:32 +0100102
Knut Wohlrab982a3c42013-03-04 04:16:02 +0000103 gd->arch.tbl = __raw_readl(&cur_gpt->counter);
104 gd->arch.tbu = 0;
Graeme Russ17659d72011-07-15 02:21:14 +0000105
106 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}