blob: fcd45f09f1815b12551cc32fe84da6f5f9fe874f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefano Babica521a772010-01-20 18:19:32 +01002/*
3 * (C) Copyright 2007
4 * Sascha Hauer, Pengutronix
5 *
6 * (C) Copyright 2009 Freescale Semiconductor, Inc.
Stefano Babica521a772010-01-20 18:19:32 +01007 */
8
9#include <common.h>
Simon Glass97589732020-05-10 11:40:02 -060010#include <init.h>
Simon Glass45c78902019-11-14 12:57:26 -070011#include <time.h>
Stefano Babica521a772010-01-20 18:19:32 +010012#include <asm/io.h>
Stefano Babicc37b7f72012-02-06 12:52:36 +010013#include <div64.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Stefano Babica521a772010-01-20 18:19:32 +010015#include <asm/arch/imx-regs.h>
Benoît Thébaudeauafac1652012-09-27 10:19:58 +000016#include <asm/arch/clock.h>
Ye.Lib7d176f2014-10-30 18:20:55 +080017#include <asm/arch/sys_proto.h>
Stefano Babica521a772010-01-20 18:19:32 +010018
19/* General purpose timers registers */
20struct mxc_gpt {
21 unsigned int control;
22 unsigned int prescaler;
23 unsigned int status;
24 unsigned int nouse[6];
25 unsigned int counter;
26};
27
28static struct mxc_gpt *cur_gpt = (struct mxc_gpt *)GPT1_BASE_ADDR;
29
30/* General purpose timers bitfields */
Jason Liu83aa8fe2011-11-25 00:18:01 +000031#define GPTCR_SWR (1 << 15) /* Software reset */
Ye.Lib7d176f2014-10-30 18:20:55 +080032#define GPTCR_24MEN (1 << 10) /* Enable 24MHz clock input */
Jason Liu83aa8fe2011-11-25 00:18:01 +000033#define GPTCR_FRR (1 << 9) /* Freerun / restart */
Ye.Lib7d176f2014-10-30 18:20:55 +080034#define GPTCR_CLKSOURCE_32 (4 << 6) /* Clock source 32khz */
35#define GPTCR_CLKSOURCE_OSC (5 << 6) /* Clock source OSC */
36#define GPTCR_CLKSOURCE_PRE (1 << 6) /* Clock source PRECLK */
37#define GPTCR_CLKSOURCE_MASK (0x7 << 6)
Jason Liu83aa8fe2011-11-25 00:18:01 +000038#define GPTCR_TEN 1 /* Timer enable */
Stefano Babica521a772010-01-20 18:19:32 +010039
Ye.Lib7d176f2014-10-30 18:20:55 +080040#define GPTPR_PRESCALER24M_SHIFT 12
41#define GPTPR_PRESCALER24M_MASK (0xF << GPTPR_PRESCALER24M_SHIFT)
42
Ye Li1c3e80b2018-03-22 23:45:26 -070043DECLARE_GLOBAL_DATA_PTR;
44
Ye.Lib7d176f2014-10-30 18:20:55 +080045static inline int gpt_has_clk_source_osc(void)
46{
Peng Fandc47b2b2016-05-23 18:35:56 +080047 if (((is_mx6dq()) && (soc_rev() > CHIP_REV_1_0)) ||
Peng Fan8213ce22016-08-11 14:02:42 +080048 is_mx6dqp() || is_mx6sdl() || is_mx6sx() || is_mx6ul() ||
Ye Li1c3e80b2018-03-22 23:45:26 -070049 is_mx6ull() || is_mx6sll() || is_mx7())
Ye.Lib7d176f2014-10-30 18:20:55 +080050 return 1;
51
52 return 0;
Ye.Lib7d176f2014-10-30 18:20:55 +080053}
54
55static inline ulong gpt_get_clk(void)
56{
57#ifdef CONFIG_MXC_GPT_HCLK
58 if (gpt_has_clk_source_osc())
59 return MXC_HCLK >> 3;
60 else
61 return mxc_get_clock(MXC_IPG_PERCLK);
62#else
63 return MXC_CLK32;
64#endif
65}
Stefano Babicc37b7f72012-02-06 12:52:36 +010066
Stefano Babica521a772010-01-20 18:19:32 +010067int timer_init(void)
68{
69 int i;
70
71 /* setup GP Timer 1 */
72 __raw_writel(GPTCR_SWR, &cur_gpt->control);
73
74 /* We have no udelay by now */
Ye Li1c3e80b2018-03-22 23:45:26 -070075 for (i = 0; i < 100; i++)
76 __raw_writel(0, &cur_gpt->control);
Stefano Babica521a772010-01-20 18:19:32 +010077
Stefano Babica521a772010-01-20 18:19:32 +010078 i = __raw_readl(&cur_gpt->control);
Ye.Lib7d176f2014-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 Fan3cc3b6f42016-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() ||
Ye Li1c3e80b2018-03-22 23:45:26 -070090 is_mx6sll() || is_mx7()) {
Ye.Lib7d176f2014-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 Babica521a772010-01-20 18:19:32 +0100105
Ye Li1c3e80b2018-03-22 23:45:26 -0700106 gd->arch.tbl = __raw_readl(&cur_gpt->counter);
107 gd->arch.tbu = 0;
108
Graeme Russ944a7fe2011-07-15 02:21:14 +0000109 return 0;
Stefano Babica521a772010-01-20 18:19:32 +0100110}
111
Peng Fanc271c132015-08-26 15:40:58 +0800112unsigned long timer_read_counter(void)
Stefano Babica521a772010-01-20 18:19:32 +0100113{
Peng Fanc271c132015-08-26 15:40:58 +0800114 return __raw_readl(&cur_gpt->counter); /* current tick value */
Stefano Babicc37b7f72012-02-06 12:52:36 +0100115}
Stefano Babica521a772010-01-20 18:19:32 +0100116
Stefano Babicc37b7f72012-02-06 12:52:36 +0100117/*
118 * This function is derived from PowerPC code (timebase clock frequency).
119 * On ARM it returns the number of timer ticks per second.
120 */
121ulong get_tbclk(void)
122{
Ye.Lib7d176f2014-10-30 18:20:55 +0800123 return gpt_get_clk();
Stefano Babica521a772010-01-20 18:19:32 +0100124}
Peng Fan17501892016-08-25 19:03:17 +0200125
126/*
127 * This function is intended for SHORT delays only.
128 * It will overflow at around 10 seconds @ 400MHz,
129 * or 20 seconds @ 200MHz.
130 */
131unsigned long usec2ticks(unsigned long _usec)
132{
133 unsigned long long usec = _usec;
134
135 usec *= get_tbclk();
136 usec += 999999;
137 do_div(usec, 1000000);
138
139 return usec;
140}