blob: 61db1e6c5002deca349e3d258a707a67fe42d0e3 [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 Glass97589732020-05-10 11:40:02 -060010#include <init.h>
Simon Glass9b61c7c2019-11-14 12:57:41 -070011#include <irq_func.h>
Simon Glass45c78902019-11-14 12:57:26 -070012#include <time.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Simon Glassdbd79542020-05-10 11:40:11 -060014#include <linux/delay.h>
wdenkabf7a7c2003-12-08 01:34:36 +000015
TsiChungLiew903b6062007-07-05 23:36:16 -050016#include <asm/timer.h>
17#include <asm/immap.h>
Richard Retanubun2a8c8892009-03-20 15:30:10 -040018#include <watchdog.h>
wdenke65527f2004-02-12 00:47:09 +000019
TsiChungLiew699f2282007-08-05 03:58:52 -050020DECLARE_GLOBAL_DATA_PTR;
21
Richard Retanubun2a8c8892009-03-20 15:30:10 -040022static volatile ulong timestamp = 0;
23
Tom Rini364d0022023-01-10 11:19:45 -050024#ifndef CFG_SYS_WATCHDOG_FREQ
25#define CFG_SYS_WATCHDOG_FREQ (CONFIG_SYS_HZ / 2)
Richard Retanubun2a8c8892009-03-20 15:30:10 -040026#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -050027
Marek Vasut38908f52023-03-23 01:20:39 +010028#if CONFIG_IS_ENABLED(MCFTMR)
Tom Rini364d0022023-01-10 11:19:45 -050029#ifndef CFG_SYS_UDELAY_BASE
TsiChung Liewf6afe722007-06-18 13:50:13 -050030# error "uDelay base not defined!"
31#endif
32
Tom Rini364d0022023-01-10 11:19:45 -050033#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 -050034# error "TMR_BASE, INTR_BASE, TMRINTR_NO or TMRINTR_MASk not defined!"
35#endif
TsiChungLiew903b6062007-07-05 23:36:16 -050036extern void dtimer_intr_setup(void);
TsiChung Liewf6afe722007-06-18 13:50:13 -050037
Ingo van Lilf0f778a2009-11-24 14:09:21 +010038void __udelay(unsigned long usec)
TsiChung Liewf6afe722007-06-18 13:50:13 -050039{
Tom Rini364d0022023-01-10 11:19:45 -050040 volatile dtmr_t *timerp = (dtmr_t *) (CFG_SYS_UDELAY_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050041 uint start, now, tmp;
42
43 while (usec > 0) {
44 if (usec > 65000)
45 tmp = 65000;
46 else
47 tmp = usec;
48 usec = usec - tmp;
49
50 /* Set up TIMER 3 as timebase clock */
51 timerp->tmr = DTIM_DTMR_RST_RST;
52 timerp->tcn = 0;
53 /* set period to 1 us */
54 timerp->tmr =
Tom Rini364d0022023-01-10 11:19:45 -050055 CFG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 | DTIM_DTMR_FRR |
TsiChungLiew903b6062007-07-05 23:36:16 -050056 DTIM_DTMR_RST_EN;
TsiChung Liewf6afe722007-06-18 13:50:13 -050057
58 start = now = timerp->tcn;
59 while (now < start + tmp)
60 now = timerp->tcn;
61 }
62}
63
64void dtimer_interrupt(void *not_used)
65{
Tom Rini364d0022023-01-10 11:19:45 -050066 volatile dtmr_t *timerp = (dtmr_t *) (CFG_SYS_TMR_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050067
68 /* check for timer interrupt asserted */
Tom Rini364d0022023-01-10 11:19:45 -050069 if ((CFG_SYS_TMRPND_REG & CFG_SYS_TMRINTR_MASK) == CFG_SYS_TMRINTR_PEND) {
TsiChung Liewf6afe722007-06-18 13:50:13 -050070 timerp->ter = (DTIM_DTER_CAP | DTIM_DTER_REF);
71 timestamp++;
Richard Retanubun2a8c8892009-03-20 15:30:10 -040072
73 #if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG)
Tom Rini364d0022023-01-10 11:19:45 -050074 if (CFG_SYS_WATCHDOG_FREQ && (timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0) {
Stefan Roese80877fa2022-09-02 14:10:46 +020075 schedule();
Richard Retanubun2a8c8892009-03-20 15:30:10 -040076 }
77 #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
TsiChung Liewf6afe722007-06-18 13:50:13 -050078 return;
79 }
80}
81
Jason Jin1dd491e2011-08-19 10:02:32 +080082int timer_init(void)
TsiChung Liewf6afe722007-06-18 13:50:13 -050083{
Tom Rini364d0022023-01-10 11:19:45 -050084 volatile dtmr_t *timerp = (dtmr_t *) (CFG_SYS_TMR_BASE);
TsiChung Liewf6afe722007-06-18 13:50:13 -050085
86 timestamp = 0;
87
88 timerp->tcn = 0;
89 timerp->trr = 0;
90
91 /* Set up TIMER 4 as clock */
92 timerp->tmr = DTIM_DTMR_RST_RST;
93
TsiChungLiew903b6062007-07-05 23:36:16 -050094 /* initialize and enable timer interrupt */
Tom Rini364d0022023-01-10 11:19:45 -050095 irq_install_handler(CFG_SYS_TMRINTR_NO, dtimer_interrupt, 0);
TsiChung Liewf6afe722007-06-18 13:50:13 -050096
97 timerp->tcn = 0;
98 timerp->trr = 1000; /* Interrupt every ms */
99
TsiChungLiew903b6062007-07-05 23:36:16 -0500100 dtimer_intr_setup();
TsiChung Liewf6afe722007-06-18 13:50:13 -0500101
102 /* set a period of 1us, set timer mode to restart and enable timer and interrupt */
Tom Rini364d0022023-01-10 11:19:45 -0500103 timerp->tmr = CFG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 |
TsiChung Liewf6afe722007-06-18 13:50:13 -0500104 DTIM_DTMR_FRR | DTIM_DTMR_ORRI | DTIM_DTMR_RST_EN;
Jason Jin1dd491e2011-08-19 10:02:32 +0800105
106 return 0;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500107}
108
TsiChung Liewf6afe722007-06-18 13:50:13 -0500109ulong get_timer(ulong base)
110{
111 return (timestamp - base);
112}
113
wdenkd11115a2004-06-09 15:24:18 +0000114/*
115 * This function is derived from PowerPC code (read timebase as long long).
116 * On M68K it just returns the timer value.
117 */
118unsigned long long get_ticks(void)
119{
120 return get_timer(0);
121}
Marek Vasut4c77f062023-03-23 01:20:40 +0100122#else
123static u64 timer64 __section(".data");
124static u16 timer16 __section(".data");
125
126uint64_t __weak get_ticks(void)
127{
128 volatile pit_t *timerp = (pit_t *) (CFG_SYS_UDELAY_BASE);
129 u16 val = ~timerp->pcntr;
130
131 if (timer16 > val)
132 timer64 += 0xffff - timer16 + val;
133 else
134 timer64 += val - timer16;
135
136 timer16 = val;
137
138 return timer64;
139}
wdenkd11115a2004-06-09 15:24:18 +0000140
Marek Vasut4c77f062023-03-23 01:20:40 +0100141/* PIT timer */
142int timer_init(void)
143{
144 volatile pit_t *timerp = (pit_t *) (CFG_SYS_UDELAY_BASE);
145
146 timer16 = 0;
147 timer64 = 0;
148
149 /* Set up PIT as timebase clock */
150 timerp->pmr = 0xffff;
151 timerp->pcsr = PIT_PCSR_EN | PIT_PCSR_OVW;
152
153 return 0;
154}
155#endif /* CONFIG_MCFTMR */
156
Stefan Roese37628252008-08-06 14:05:38 +0200157unsigned long usec2ticks(unsigned long usec)
158{
159 return get_timer(usec);
160}
161
wdenkd11115a2004-06-09 15:24:18 +0000162/*
163 * This function is derived from PowerPC code (timebase clock frequency).
164 * On M68K it returns the number of timer ticks per second.
165 */
TsiChungLiew903b6062007-07-05 23:36:16 -0500166ulong get_tbclk(void)
wdenkd11115a2004-06-09 15:24:18 +0000167{
Masahiro Yamada04cfea52016-09-06 22:17:38 +0900168 return CONFIG_SYS_HZ;
wdenkd11115a2004-06-09 15:24:18 +0000169}