blob: 717a2b72bd9c88783b9a6865011c1b5556c272dd [file] [log] [blame]
Sascha Hauer1a7676f2008-03-26 20:40:42 +01001/*
2 * (C) Copyright 2007
3 * Sascha Hauer, Pengutronix
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
Stefano Babic78129d92011-03-14 15:43:56 +010025#include <asm/arch/imx-regs.h>
Tomohiro Masubuchi9a3393b2008-10-21 13:17:16 +090026#include <div64.h>
Stefano Babice17e3312011-02-02 00:49:36 +000027#include <watchdog.h>
28#include <asm/io.h>
Sascha Hauer1a7676f2008-03-26 20:40:42 +010029
30#define TIMER_BASE 0x53f90000 /* General purpose timer 1 */
31
32/* General purpose timers registers */
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +020033#define GPTCR __REG(TIMER_BASE) /* Control register */
34#define GPTPR __REG(TIMER_BASE + 0x4) /* Prescaler register */
35#define GPTSR __REG(TIMER_BASE + 0x8) /* Status register */
36#define GPTCNT __REG(TIMER_BASE + 0x24) /* Counter register */
Sascha Hauer1a7676f2008-03-26 20:40:42 +010037
38/* General purpose timers bitfields */
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +020039#define GPTCR_SWR (1 << 15) /* Software reset */
40#define GPTCR_FRR (1 << 9) /* Freerun / restart */
41#define GPTCR_CLKSOURCE_32 (4 << 6) /* Clock source */
42#define GPTCR_TEN 1 /* Timer enable */
43
Heiko Schocherf2015952010-12-09 22:01:15 +000044DECLARE_GLOBAL_DATA_PTR;
Tomohiro Masubuchi9a3393b2008-10-21 13:17:16 +090045
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020046/* "time" is measured in 1 / CONFIG_SYS_HZ seconds, "tick" is internal timer period */
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +020047#ifdef CONFIG_MX31_TIMER_HIGH_PRECISION
48/* ~0.4% error - measured with stop-watch on 100s boot-delay */
Tomohiro Masubuchi9a3393b2008-10-21 13:17:16 +090049static inline unsigned long long tick_to_time(unsigned long long tick)
50{
51 tick *= CONFIG_SYS_HZ;
52 do_div(tick, CONFIG_MX31_CLK32);
53 return tick;
54}
55
56static inline unsigned long long time_to_tick(unsigned long long time)
57{
58 time *= CONFIG_MX31_CLK32;
59 do_div(time, CONFIG_SYS_HZ);
60 return time;
61}
62
63static inline unsigned long long us_to_tick(unsigned long long us)
64{
65 us = us * CONFIG_MX31_CLK32 + 999999;
66 do_div(us, 1000000);
67 return us;
68}
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +020069#else
70/* ~2% error */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020071#define TICK_PER_TIME ((CONFIG_MX31_CLK32 + CONFIG_SYS_HZ / 2) / CONFIG_SYS_HZ)
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +020072#define US_PER_TICK (1000000 / CONFIG_MX31_CLK32)
Sascha Hauer1a7676f2008-03-26 20:40:42 +010073
Tomohiro Masubuchi9a3393b2008-10-21 13:17:16 +090074static inline unsigned long long tick_to_time(unsigned long long tick)
75{
76 do_div(tick, TICK_PER_TIME);
77 return tick;
78}
79
80static inline unsigned long long time_to_tick(unsigned long long time)
81{
82 return time * TICK_PER_TIME;
83}
84
85static inline unsigned long long us_to_tick(unsigned long long us)
86{
87 us += US_PER_TICK - 1;
88 do_div(us, US_PER_TICK);
89 return us;
90}
91#endif
Magnus Lilja067a4f92008-08-29 10:36:17 +020092
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +020093/* The 32768Hz 32-bit timer overruns in 131072 seconds */
Jean-Christophe PLAGNIOL-VILLARD8c9fc002009-05-15 23:47:02 +020094int timer_init (void)
Sascha Hauer1a7676f2008-03-26 20:40:42 +010095{
96 int i;
97
98 /* setup GP Timer 1 */
99 GPTCR = GPTCR_SWR;
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200100 for (i = 0; i < 100; i++)
101 GPTCR = 0; /* We have no udelay by now */
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100102 GPTPR = 0; /* 32Khz */
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200103 /* Freerun Mode, PERCLK1 input */
104 GPTCR |= GPTCR_CLKSOURCE_32 | GPTCR_TEN;
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100105
106 return 0;
107}
108
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200109unsigned long long get_ticks (void)
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100110{
Magnus Lilja067a4f92008-08-29 10:36:17 +0200111 ulong now = GPTCNT; /* current tick value */
112
Heiko Schocherf2015952010-12-09 22:01:15 +0000113 if (now >= gd->lastinc) /* normal mode (non roll) */
Magnus Lilja067a4f92008-08-29 10:36:17 +0200114 /* move stamp forward with absolut diff ticks */
Heiko Schocherf2015952010-12-09 22:01:15 +0000115 gd->tbl += (now - gd->lastinc);
Magnus Lilja067a4f92008-08-29 10:36:17 +0200116 else /* we have rollover of incrementer */
Heiko Schocherf2015952010-12-09 22:01:15 +0000117 gd->tbl += (0xFFFFFFFF - gd->lastinc) + now;
118 gd->lastinc = now;
119 return gd->tbl;
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100120}
121
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200122ulong get_timer_masked (void)
123{
124 /*
125 * get_ticks() returns a long long (64 bit), it wraps in
126 * 2^64 / CONFIG_MX31_CLK32 = 2^64 / 2^15 = 2^49 ~ 5 * 10^14 (s) ~
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200127 * 5 * 10^9 days... and get_ticks() * CONFIG_SYS_HZ wraps in
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200128 * 5 * 10^6 days - long enough.
129 */
Tomohiro Masubuchi9a3393b2008-10-21 13:17:16 +0900130 return tick_to_time(get_ticks());
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200131}
132
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100133ulong get_timer (ulong base)
134{
135 return get_timer_masked () - base;
136}
137
Wolfgang Denkd7cb3552010-05-21 23:13:18 +0200138/* delay x useconds AND preserve advance timestamp value */
Ingo van Lilf0f778a2009-11-24 14:09:21 +0100139void __udelay (unsigned long usec)
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100140{
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200141 unsigned long long tmp;
142 ulong tmo;
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100143
Tomohiro Masubuchi9a3393b2008-10-21 13:17:16 +0900144 tmo = us_to_tick(usec);
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200145 tmp = get_ticks() + tmo; /* get current timestamp */
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100146
Guennadi Liakhovetski4771a4c2008-09-25 20:54:37 +0200147 while (get_ticks() < tmp) /* loop till event */
148 /*NOP*/;
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100149}
150
151void reset_cpu (ulong addr)
152{
Stefano Babice17e3312011-02-02 00:49:36 +0000153 struct wdog_regs *wdog = (struct wdog_regs *)WDOG_BASE;
154 wdog->wcr = WDOG_ENABLE;
155 while (1)
156 ;
Sascha Hauer1a7676f2008-03-26 20:40:42 +0100157}
Stefano Babice17e3312011-02-02 00:49:36 +0000158
159#ifdef CONFIG_HW_WATCHDOG
160void mxc_hw_watchdog_enable(void)
161{
162 struct wdog_regs *wdog = (struct wdog_regs *)WDOG_BASE;
163 u16 secs;
164
165 /*
166 * The timer watchdog can be set between
167 * 0.5 and 128 Seconds. If not defined
168 * in configuration file, sets 64 Seconds
169 */
170#ifdef CONFIG_SYS_WD_TIMER_SECS
171 secs = (CONFIG_SYS_WD_TIMER_SECS << 1) & 0xFF;
172 if (!secs) secs = 1;
173#else
174 secs = 64;
175#endif
Fabio Estevama335af92011-09-21 03:29:17 +0000176 setbits_le16(&wdog->wcr, (secs << WDOG_WT_SHIFT) | WDOG_ENABLE
177 | WDOG_WDZST);
Stefano Babice17e3312011-02-02 00:49:36 +0000178}
179
180
181void mxc_hw_watchdog_reset(void)
182{
183 struct wdog_regs *wdog = (struct wdog_regs *)WDOG_BASE;
184
185 writew(0x5555, &wdog->wsr);
186 writew(0xAAAA, &wdog->wsr);
187}
188#endif