blob: a6345a0bc9c0c23cdda62ad5af6c25f3fc1fc02f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk4e5ca3e2003-12-08 01:34:36 +00002/*
wdenkbf9e3b32004-02-12 00:47:09 +00003 * (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de>
4 *
5 * (C) Copyright 2000
wdenk4e5ca3e2003-12-08 01:34:36 +00006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk4e5ca3e2003-12-08 01:34:36 +00007 */
8
9#include <common.h>
10
TsiChungLiew52b01762007-07-05 23:36:16 -050011#include <asm/timer.h>
12#include <asm/immap.h>
Richard Retanubun42a83762009-03-20 15:30:10 -040013#include <watchdog.h>
wdenk4e5ca3e2003-12-08 01:34:36 +000014
TsiChungLiew99c03c12007-08-05 03:58:52 -050015DECLARE_GLOBAL_DATA_PTR;
16
Richard Retanubun42a83762009-03-20 15:30:10 -040017static volatile ulong timestamp = 0;
18
19#ifndef CONFIG_SYS_WATCHDOG_FREQ
20#define CONFIG_SYS_WATCHDOG_FREQ (CONFIG_SYS_HZ / 2)
21#endif
stroesecd42dee2004-12-16 17:56:09 +000022
TsiChung Liew8e585f02007-06-18 13:50:13 -050023#if defined(CONFIG_MCFTMR)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020024#ifndef CONFIG_SYS_UDELAY_BASE
TsiChung Liew8e585f02007-06-18 13:50:13 -050025# error "uDelay base not defined!"
26#endif
27
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020028#if !defined(CONFIG_SYS_TMR_BASE) || !defined(CONFIG_SYS_INTR_BASE) || !defined(CONFIG_SYS_TMRINTR_NO) || !defined(CONFIG_SYS_TMRINTR_MASK)
TsiChung Liew8e585f02007-06-18 13:50:13 -050029# error "TMR_BASE, INTR_BASE, TMRINTR_NO or TMRINTR_MASk not defined!"
30#endif
TsiChungLiew52b01762007-07-05 23:36:16 -050031extern void dtimer_intr_setup(void);
TsiChung Liew8e585f02007-06-18 13:50:13 -050032
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010033void __udelay(unsigned long usec)
TsiChung Liew8e585f02007-06-18 13:50:13 -050034{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020035 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_UDELAY_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -050036 uint start, now, tmp;
37
38 while (usec > 0) {
39 if (usec > 65000)
40 tmp = 65000;
41 else
42 tmp = usec;
43 usec = usec - tmp;
44
45 /* Set up TIMER 3 as timebase clock */
46 timerp->tmr = DTIM_DTMR_RST_RST;
47 timerp->tcn = 0;
48 /* set period to 1 us */
49 timerp->tmr =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050 CONFIG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 | DTIM_DTMR_FRR |
TsiChungLiew52b01762007-07-05 23:36:16 -050051 DTIM_DTMR_RST_EN;
TsiChung Liew8e585f02007-06-18 13:50:13 -050052
53 start = now = timerp->tcn;
54 while (now < start + tmp)
55 now = timerp->tcn;
56 }
57}
58
59void dtimer_interrupt(void *not_used)
60{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020061 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_TMR_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -050062
63 /* check for timer interrupt asserted */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020064 if ((CONFIG_SYS_TMRPND_REG & CONFIG_SYS_TMRINTR_MASK) == CONFIG_SYS_TMRINTR_PEND) {
TsiChung Liew8e585f02007-06-18 13:50:13 -050065 timerp->ter = (DTIM_DTER_CAP | DTIM_DTER_REF);
66 timestamp++;
Richard Retanubun42a83762009-03-20 15:30:10 -040067
68 #if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
69 if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) {
70 WATCHDOG_RESET ();
71 }
72 #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
TsiChung Liew8e585f02007-06-18 13:50:13 -050073 return;
74 }
75}
76
Jason Jin444ddfc2011-08-19 10:02:32 +080077int timer_init(void)
TsiChung Liew8e585f02007-06-18 13:50:13 -050078{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020079 volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_TMR_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -050080
81 timestamp = 0;
82
83 timerp->tcn = 0;
84 timerp->trr = 0;
85
86 /* Set up TIMER 4 as clock */
87 timerp->tmr = DTIM_DTMR_RST_RST;
88
TsiChungLiew52b01762007-07-05 23:36:16 -050089 /* initialize and enable timer interrupt */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090 irq_install_handler(CONFIG_SYS_TMRINTR_NO, dtimer_interrupt, 0);
TsiChung Liew8e585f02007-06-18 13:50:13 -050091
92 timerp->tcn = 0;
93 timerp->trr = 1000; /* Interrupt every ms */
94
TsiChungLiew52b01762007-07-05 23:36:16 -050095 dtimer_intr_setup();
TsiChung Liew8e585f02007-06-18 13:50:13 -050096
97 /* set a period of 1us, set timer mode to restart and enable timer and interrupt */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020098 timerp->tmr = CONFIG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 |
TsiChung Liew8e585f02007-06-18 13:50:13 -050099 DTIM_DTMR_FRR | DTIM_DTMR_ORRI | DTIM_DTMR_RST_EN;
Jason Jin444ddfc2011-08-19 10:02:32 +0800100
101 return 0;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500102}
103
TsiChung Liew8e585f02007-06-18 13:50:13 -0500104ulong get_timer(ulong base)
105{
106 return (timestamp - base);
107}
108
TsiChung Liew8e585f02007-06-18 13:50:13 -0500109#endif /* CONFIG_MCFTMR */
110
111#if defined(CONFIG_MCFPIT)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112#if !defined(CONFIG_SYS_PIT_BASE)
113# error "CONFIG_SYS_PIT_BASE not defined!"
TsiChung Liew8e585f02007-06-18 13:50:13 -0500114#endif
115
116static unsigned short lastinc;
117
Ingo van Lil3eb90ba2009-11-24 14:09:21 +0100118void __udelay(unsigned long usec)
TsiChung Liew8e585f02007-06-18 13:50:13 -0500119{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200120 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_UDELAY_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500121 uint tmp;
122
123 while (usec > 0) {
124 if (usec > 65000)
125 tmp = 65000;
126 else
127 tmp = usec;
128 usec = usec - tmp;
129
130 /* Set up TIMER 3 as timebase clock */
131 timerp->pcsr = PIT_PCSR_OVW;
132 timerp->pmr = 0;
133 /* set period to 1 us */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200134 timerp->pcsr |= PIT_PCSR_PRE(CONFIG_SYS_PIT_PRESCALE) | PIT_PCSR_EN;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500135
136 timerp->pmr = tmp;
137 while (timerp->pcntr > 0) ;
138 }
139}
140
141void timer_init(void)
142{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200143 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_PIT_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500144 timestamp = 0;
145
146 /* Set up TIMER 4 as poll clock */
147 timerp->pcsr = PIT_PCSR_OVW;
148 timerp->pmr = lastinc = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149 timerp->pcsr |= PIT_PCSR_PRE(CONFIG_SYS_PIT_PRESCALE) | PIT_PCSR_EN;
Jason Jin444ddfc2011-08-19 10:02:32 +0800150
151 return 0;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500152}
153
TsiChung Liew8e585f02007-06-18 13:50:13 -0500154ulong get_timer(ulong base)
155{
156 unsigned short now, diff;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200157 volatile pit_t *timerp = (pit_t *) (CONFIG_SYS_PIT_BASE);
TsiChung Liew8e585f02007-06-18 13:50:13 -0500158
159 now = timerp->pcntr;
160 diff = -(now - lastinc);
161
162 timestamp += diff;
163 lastinc = now;
164 return timestamp - base;
165}
166
167void wait_ticks(unsigned long ticks)
168{
Graeme Russ5c8404a2011-07-15 02:18:12 +0000169 u32 start = get_timer(0);
170 while (get_timer(start) < ticks) ;
TsiChung Liew8e585f02007-06-18 13:50:13 -0500171}
172#endif /* CONFIG_MCFPIT */
stroesecd42dee2004-12-16 17:56:09 +0000173
wdenk70f05ac2004-06-09 15:24:18 +0000174/*
175 * This function is derived from PowerPC code (read timebase as long long).
176 * On M68K it just returns the timer value.
177 */
178unsigned long long get_ticks(void)
179{
180 return get_timer(0);
181}
182
Stefan Roesef2302d42008-08-06 14:05:38 +0200183unsigned long usec2ticks(unsigned long usec)
184{
185 return get_timer(usec);
186}
187
wdenk70f05ac2004-06-09 15:24:18 +0000188/*
189 * This function is derived from PowerPC code (timebase clock frequency).
190 * On M68K it returns the number of timer ticks per second.
191 */
TsiChungLiew52b01762007-07-05 23:36:16 -0500192ulong get_tbclk(void)
wdenk70f05ac2004-06-09 15:24:18 +0000193{
Masahiro Yamada63a75782016-09-06 22:17:38 +0900194 return CONFIG_SYS_HZ;
wdenk70f05ac2004-06-09 15:24:18 +0000195}