blob: 8957d194d4a6f63fc2679d08d12659d0f299ac87 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkabf7a7c2003-12-08 01:34:36 +00002/*
wdenke65527f2004-02-12 00:47:09 +00003 * (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de>
4 *
5 * (C) Copyright 2000
wdenkabf7a7c2003-12-08 01:34:36 +00006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkabf7a7c2003-12-08 01:34:36 +00007 */
8
9#include <common.h>
Simon Glass9b61c7c2019-11-14 12:57:41 -070010#include <irq_func.h>
Simon Glass45c78902019-11-14 12:57:26 -070011#include <time.h>
wdenkabf7a7c2003-12-08 01:34:36 +000012
TsiChungLiew903b6062007-07-05 23:36:16 -050013#include <asm/timer.h>
14#include <asm/immap.h>
Richard Retanubun2a8c8892009-03-20 15:30:10 -040015#include <watchdog.h>
wdenke65527f2004-02-12 00:47:09 +000016
TsiChungLiew699f2282007-08-05 03:58:52 -050017DECLARE_GLOBAL_DATA_PTR;
18
Richard Retanubun2a8c8892009-03-20 15:30:10 -040019static volatile ulong timestamp = 0;
20
21#ifndef CONFIG_SYS_WATCHDOG_FREQ
22#define CONFIG_SYS_WATCHDOG_FREQ (CONFIG_SYS_HZ / 2)
23#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -050024
25#if defined(CONFIG_MCFTMR)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020026#ifndef CONFIG_SYS_UDELAY_BASE
TsiChung Liewf6afe722007-06-18 13:50:13 -050027# error "uDelay base not defined!"
28#endif
29
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020030#if !defined(CONFIG_SYS_TMR_BASE) || !defined(CONFIG_SYS_INTR_BASE) || !defined(CONFIG_SYS_TMRINTR_NO) || !defined(CONFIG_SYS_TMRINTR_MASK)
TsiChung Liewf6afe722007-06-18 13:50:13 -050031# error "TMR_BASE, INTR_BASE, TMRINTR_NO or TMRINTR_MASk not defined!"
32#endif
TsiChungLiew903b6062007-07-05 23:36:16 -050033extern void dtimer_intr_setup(void);
TsiChung Liewf6afe722007-06-18 13:50:13 -050034
Ingo van Lilf0f778a2009-11-24 14:09:21 +010035void __udelay(unsigned long usec)
TsiChung Liewf6afe722007-06-18 13:50:13 -050036{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020037 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_UDELAY_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050038 uint start, now, tmp;
39
40 while (usec > 0) {
41 if (usec > 65000)
42 tmp = 65000;
43 else
44 tmp = usec;
45 usec = usec - tmp;
46
47 /* Set up TIMER 3 as timebase clock */
48 timerp->tmr = DTIM_DTMR_RST_RST;
49 timerp->tcn = 0;
50 /* set period to 1 us */
51 timerp->tmr =
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020052 CONFIG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 | DTIM_DTMR_FRR |
TsiChungLiew903b6062007-07-05 23:36:16 -050053 DTIM_DTMR_RST_EN;
TsiChung Liewf6afe722007-06-18 13:50:13 -050054
55 start = now = timerp->tcn;
56 while (now < start + tmp)
57 now = timerp->tcn;
58 }
59}
60
61void dtimer_interrupt(void *not_used)
62{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020063 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_TMR_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050064
65 /* check for timer interrupt asserted */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020066 if ((CONFIG_SYS_TMRPND_REG & CONFIG_SYS_TMRINTR_MASK) == CONFIG_SYS_TMRINTR_PEND) {
TsiChung Liewf6afe722007-06-18 13:50:13 -050067 timerp->ter = (DTIM_DTER_CAP | DTIM_DTER_REF);
68 timestamp++;
Richard Retanubun2a8c8892009-03-20 15:30:10 -040069
70 #if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
71 if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) {
72 WATCHDOG_RESET ();
73 }
74 #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
TsiChung Liewf6afe722007-06-18 13:50:13 -050075 return;
76 }
77}
78
Jason Jin1dd491e2011-08-19 10:02:32 +080079int timer_init(void)
TsiChung Liewf6afe722007-06-18 13:50:13 -050080{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020081 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_TMR_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050082
83 timestamp = 0;
84
85 timerp->tcn = 0;
86 timerp->trr = 0;
87
88 /* Set up TIMER 4 as clock */
89 timerp->tmr = DTIM_DTMR_RST_RST;
90
TsiChungLiew903b6062007-07-05 23:36:16 -050091 /* initialize and enable timer interrupt */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020092 irq_install_handler(CONFIG_SYS_TMRINTR_NO, dtimer_interrupt, 0);
TsiChung Liewf6afe722007-06-18 13:50:13 -050093
94 timerp->tcn = 0;
95 timerp->trr = 1000; /* Interrupt every ms */
96
TsiChungLiew903b6062007-07-05 23:36:16 -050097 dtimer_intr_setup();
TsiChung Liewf6afe722007-06-18 13:50:13 -050098
99 /* set a period of 1us, set timer mode to restart and enable timer and interrupt */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200100 timerp->tmr = CONFIG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 |
TsiChung Liewf6afe722007-06-18 13:50:13 -0500101 DTIM_DTMR_FRR | DTIM_DTMR_ORRI | DTIM_DTMR_RST_EN;
Jason Jin1dd491e2011-08-19 10:02:32 +0800102
103 return 0;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500104}
105
TsiChung Liewf6afe722007-06-18 13:50:13 -0500106ulong get_timer(ulong base)
107{
108 return (timestamp - base);
109}
110
TsiChung Liewf6afe722007-06-18 13:50:13 -0500111#endif /* CONFIG_MCFTMR */
112
113#if defined(CONFIG_MCFPIT)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200114#if !defined(CONFIG_SYS_PIT_BASE)
115# error "CONFIG_SYS_PIT_BASE not defined!"
stroese89607922004-12-16 17:56:09 +0000116#endif
117
TsiChung Liewf6afe722007-06-18 13:50:13 -0500118static unsigned short lastinc;
119
Ingo van Lilf0f778a2009-11-24 14:09:21 +0100120void __udelay(unsigned long usec)
TsiChung Liewf6afe722007-06-18 13:50:13 -0500121{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200122 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_UDELAY_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500123 uint tmp;
124
125 while (usec > 0) {
126 if (usec > 65000)
127 tmp = 65000;
128 else
129 tmp = usec;
130 usec = usec - tmp;
131
132 /* Set up TIMER 3 as timebase clock */
133 timerp->pcsr = PIT_PCSR_OVW;
134 timerp->pmr = 0;
135 /* set period to 1 us */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200136 timerp->pcsr |= PIT_PCSR_PRE(CONFIG_SYS_PIT_PRESCALE) | PIT_PCSR_EN;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500137
138 timerp->pmr = tmp;
139 while (timerp->pcntr > 0) ;
140 }
141}
142
143void timer_init(void)
144{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200145 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_PIT_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500146 timestamp = 0;
147
148 /* Set up TIMER 4 as poll clock */
149 timerp->pcsr = PIT_PCSR_OVW;
150 timerp->pmr = lastinc = 0;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200151 timerp->pcsr |= PIT_PCSR_PRE(CONFIG_SYS_PIT_PRESCALE) | PIT_PCSR_EN;
Jason Jin1dd491e2011-08-19 10:02:32 +0800152
153 return 0;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500154}
155
TsiChung Liewf6afe722007-06-18 13:50:13 -0500156ulong get_timer(ulong base)
157{
158 unsigned short now, diff;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200159 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_PIT_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -0500160
161 now = timerp->pcntr;
162 diff = -(now - lastinc);
163
164 timestamp += diff;
165 lastinc = now;
166 return timestamp - base;
167}
168
169void wait_ticks(unsigned long ticks)
170{
Graeme Russ5e669ff2011-07-15 02:18:12 +0000171 u32 start = get_timer(0);
172 while (get_timer(start) < ticks) ;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500173}
174#endif /* CONFIG_MCFPIT */
stroese89607922004-12-16 17:56:09 +0000175
wdenkd11115a2004-06-09 15:24:18 +0000176/*
177 * This function is derived from PowerPC code (read timebase as long long).
178 * On M68K it just returns the timer value.
179 */
180unsigned long long get_ticks(void)
181{
182 return get_timer(0);
183}
184
Stefan Roese37628252008-08-06 14:05:38 +0200185unsigned long usec2ticks(unsigned long usec)
186{
187 return get_timer(usec);
188}
189
wdenkd11115a2004-06-09 15:24:18 +0000190/*
191 * This function is derived from PowerPC code (timebase clock frequency).
192 * On M68K it returns the number of timer ticks per second.
193 */
TsiChungLiew903b6062007-07-05 23:36:16 -0500194ulong get_tbclk(void)
wdenkd11115a2004-06-09 15:24:18 +0000195{
Masahiro Yamada04cfea52016-09-06 22:17:38 +0900196 return CONFIG_SYS_HZ;
wdenkd11115a2004-06-09 15:24:18 +0000197}