blob: 4249488c01d1ab0b65004820971af4403c13f935 [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
Simon Glass97589732020-05-10 11:40:02 -06009#include <init.h>
Simon Glass9b61c7c2019-11-14 12:57:41 -070010#include <irq_func.h>
Simon Glass45c78902019-11-14 12:57:26 -070011#include <time.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060012#include <asm/global_data.h>
Simon Glassdbd79542020-05-10 11:40:11 -060013#include <linux/delay.h>
wdenkabf7a7c2003-12-08 01:34:36 +000014
TsiChungLiew903b6062007-07-05 23:36:16 -050015#include <asm/timer.h>
16#include <asm/immap.h>
Richard Retanubun2a8c8892009-03-20 15:30:10 -040017#include <watchdog.h>
wdenke65527f2004-02-12 00:47:09 +000018
TsiChungLiew699f2282007-08-05 03:58:52 -050019DECLARE_GLOBAL_DATA_PTR;
20
Richard Retanubun2a8c8892009-03-20 15:30:10 -040021static volatile ulong timestamp = 0;
22
Tom Rini364d0022023-01-10 11:19:45 -050023#ifndef CFG_SYS_WATCHDOG_FREQ
24#define CFG_SYS_WATCHDOG_FREQ (CONFIG_SYS_HZ / 2)
Richard Retanubun2a8c8892009-03-20 15:30:10 -040025#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -050026
Marek Vasut38908f52023-03-23 01:20:39 +010027#if CONFIG_IS_ENABLED(MCFTMR)
Tom Rini364d0022023-01-10 11:19:45 -050028#ifndef CFG_SYS_UDELAY_BASE
TsiChung Liewf6afe722007-06-18 13:50:13 -050029# error "uDelay base not defined!"
30#endif
31
Tom Rini364d0022023-01-10 11:19:45 -050032#if !defined(CFG_SYS_TMR_BASE) || !defined(CFG_SYS_INTR_BASE) || !defined(CFG_SYS_TMRINTR_NO) || !defined(CFG_SYS_TMRINTR_MASK)
TsiChung Liewf6afe722007-06-18 13:50:13 -050033# error "TMR_BASE, INTR_BASE, TMRINTR_NO or TMRINTR_MASk not defined!"
34#endif
TsiChungLiew903b6062007-07-05 23:36:16 -050035extern void dtimer_intr_setup(void);
TsiChung Liewf6afe722007-06-18 13:50:13 -050036
Ingo van Lilf0f778a2009-11-24 14:09:21 +010037void __udelay(unsigned long usec)
TsiChung Liewf6afe722007-06-18 13:50:13 -050038{
Tom Rini364d0022023-01-10 11:19:45 -050039 volatile dtmr_t *timerp = (dtmr_t *) (CFG_SYS_UDELAY_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050040 uint start, now, tmp;
41
42 while (usec > 0) {
43 if (usec > 65000)
44 tmp = 65000;
45 else
46 tmp = usec;
47 usec = usec - tmp;
48
49 /* Set up TIMER 3 as timebase clock */
50 timerp->tmr = DTIM_DTMR_RST_RST;
51 timerp->tcn = 0;
52 /* set period to 1 us */
53 timerp->tmr =
Tom Rini364d0022023-01-10 11:19:45 -050054 CFG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 | DTIM_DTMR_FRR |
TsiChungLiew903b6062007-07-05 23:36:16 -050055 DTIM_DTMR_RST_EN;
TsiChung Liewf6afe722007-06-18 13:50:13 -050056
57 start = now = timerp->tcn;
58 while (now < start + tmp)
59 now = timerp->tcn;
60 }
61}
62
63void dtimer_interrupt(void *not_used)
64{
Tom Rini364d0022023-01-10 11:19:45 -050065 volatile dtmr_t *timerp = (dtmr_t *) (CFG_SYS_TMR_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050066
67 /* check for timer interrupt asserted */
Tom Rini364d0022023-01-10 11:19:45 -050068 if ((CFG_SYS_TMRPND_REG & CFG_SYS_TMRINTR_MASK) == CFG_SYS_TMRINTR_PEND) {
TsiChung Liewf6afe722007-06-18 13:50:13 -050069 timerp->ter = (DTIM_DTER_CAP | DTIM_DTER_REF);
70 timestamp++;
Richard Retanubun2a8c8892009-03-20 15:30:10 -040071
72 #if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
Tom Rini364d0022023-01-10 11:19:45 -050073 if (CFG_SYS_WATCHDOG_FREQ && (timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0) {
Stefan Roese80877fa2022-09-02 14:10:46 +020074 schedule();
Richard Retanubun2a8c8892009-03-20 15:30:10 -040075 }
76 #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
TsiChung Liewf6afe722007-06-18 13:50:13 -050077 return;
78 }
79}
80
Jason Jin1dd491e2011-08-19 10:02:32 +080081int timer_init(void)
TsiChung Liewf6afe722007-06-18 13:50:13 -050082{
Tom Rini364d0022023-01-10 11:19:45 -050083 volatile dtmr_t *timerp = (dtmr_t *) (CFG_SYS_TMR_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050084
85 timestamp = 0;
86
87 timerp->tcn = 0;
88 timerp->trr = 0;
89
90 /* Set up TIMER 4 as clock */
91 timerp->tmr = DTIM_DTMR_RST_RST;
92
TsiChungLiew903b6062007-07-05 23:36:16 -050093 /* initialize and enable timer interrupt */
Tom Rini364d0022023-01-10 11:19:45 -050094 irq_install_handler(CFG_SYS_TMRINTR_NO, dtimer_interrupt, 0);
TsiChung Liewf6afe722007-06-18 13:50:13 -050095
96 timerp->tcn = 0;
97 timerp->trr = 1000; /* Interrupt every ms */
98
TsiChungLiew903b6062007-07-05 23:36:16 -050099 dtimer_intr_setup();
TsiChung Liewf6afe722007-06-18 13:50:13 -0500100
101 /* set a period of 1us, set timer mode to restart and enable timer and interrupt */
Tom Rini364d0022023-01-10 11:19:45 -0500102 timerp->tmr = CFG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 |
TsiChung Liewf6afe722007-06-18 13:50:13 -0500103 DTIM_DTMR_FRR | DTIM_DTMR_ORRI | DTIM_DTMR_RST_EN;
Jason Jin1dd491e2011-08-19 10:02:32 +0800104
105 return 0;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500106}
107
TsiChung Liewf6afe722007-06-18 13:50:13 -0500108ulong get_timer(ulong base)
109{
110 return (timestamp - base);
111}
112
wdenkd11115a2004-06-09 15:24:18 +0000113/*
114 * This function is derived from PowerPC code (read timebase as long long).
115 * On M68K it just returns the timer value.
116 */
117unsigned long long get_ticks(void)
118{
119 return get_timer(0);
120}
Marek Vasut4c77f062023-03-23 01:20:40 +0100121#else
122static u64 timer64 __section(".data");
123static u16 timer16 __section(".data");
124
125uint64_t __weak get_ticks(void)
126{
127 volatile pit_t *timerp = (pit_t *) (CFG_SYS_UDELAY_BASE);
128 u16 val = ~timerp->pcntr;
129
130 if (timer16 > val)
131 timer64 += 0xffff - timer16 + val;
132 else
133 timer64 += val - timer16;
134
135 timer16 = val;
136
137 return timer64;
138}
wdenkd11115a2004-06-09 15:24:18 +0000139
Marek Vasut4c77f062023-03-23 01:20:40 +0100140/* PIT timer */
141int timer_init(void)
142{
143 volatile pit_t *timerp = (pit_t *) (CFG_SYS_UDELAY_BASE);
144
145 timer16 = 0;
146 timer64 = 0;
147
148 /* Set up PIT as timebase clock */
149 timerp->pmr = 0xffff;
150 timerp->pcsr = PIT_PCSR_EN | PIT_PCSR_OVW;
151
152 return 0;
153}
154#endif /* CONFIG_MCFTMR */
155
Stefan Roese37628252008-08-06 14:05:38 +0200156unsigned long usec2ticks(unsigned long usec)
157{
158 return get_timer(usec);
159}
160
wdenkd11115a2004-06-09 15:24:18 +0000161/*
162 * This function is derived from PowerPC code (timebase clock frequency).
163 * On M68K it returns the number of timer ticks per second.
164 */
TsiChungLiew903b6062007-07-05 23:36:16 -0500165ulong get_tbclk(void)
wdenkd11115a2004-06-09 15:24:18 +0000166{
Masahiro Yamada04cfea52016-09-06 22:17:38 +0900167 return CONFIG_SYS_HZ;
wdenkd11115a2004-06-09 15:24:18 +0000168}