Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 2 | /* |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 3 | * (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de> |
| 4 | * |
| 5 | * (C) Copyright 2000 |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 10 | #include <init.h> |
Simon Glass | 9b61c7c | 2019-11-14 12:57:41 -0700 | [diff] [blame] | 11 | #include <irq_func.h> |
Simon Glass | 45c7890 | 2019-11-14 12:57:26 -0700 | [diff] [blame] | 12 | #include <time.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 14 | #include <linux/delay.h> |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 15 | |
TsiChungLiew | 903b606 | 2007-07-05 23:36:16 -0500 | [diff] [blame] | 16 | #include <asm/timer.h> |
| 17 | #include <asm/immap.h> |
Richard Retanubun | 2a8c889 | 2009-03-20 15:30:10 -0400 | [diff] [blame] | 18 | #include <watchdog.h> |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 19 | |
TsiChungLiew | 699f228 | 2007-08-05 03:58:52 -0500 | [diff] [blame] | 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
Richard Retanubun | 2a8c889 | 2009-03-20 15:30:10 -0400 | [diff] [blame] | 22 | static volatile ulong timestamp = 0; |
| 23 | |
| 24 | #ifndef CONFIG_SYS_WATCHDOG_FREQ |
| 25 | #define CONFIG_SYS_WATCHDOG_FREQ (CONFIG_SYS_HZ / 2) |
| 26 | #endif |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 27 | |
| 28 | #if defined(CONFIG_MCFTMR) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 29 | #ifndef CONFIG_SYS_UDELAY_BASE |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 30 | # error "uDelay base not defined!" |
| 31 | #endif |
| 32 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 33 | #if !defined(CONFIG_SYS_TMR_BASE) || !defined(CONFIG_SYS_INTR_BASE) || !defined(CONFIG_SYS_TMRINTR_NO) || !defined(CONFIG_SYS_TMRINTR_MASK) |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 34 | # error "TMR_BASE, INTR_BASE, TMRINTR_NO or TMRINTR_MASk not defined!" |
| 35 | #endif |
TsiChungLiew | 903b606 | 2007-07-05 23:36:16 -0500 | [diff] [blame] | 36 | extern void dtimer_intr_setup(void); |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 37 | |
Ingo van Lil | f0f778a | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 38 | void __udelay(unsigned long usec) |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 39 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 40 | volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_UDELAY_BASE); |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 41 | 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 = |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 55 | CONFIG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 | DTIM_DTMR_FRR | |
TsiChungLiew | 903b606 | 2007-07-05 23:36:16 -0500 | [diff] [blame] | 56 | DTIM_DTMR_RST_EN; |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 57 | |
| 58 | start = now = timerp->tcn; |
| 59 | while (now < start + tmp) |
| 60 | now = timerp->tcn; |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | void dtimer_interrupt(void *not_used) |
| 65 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 66 | volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_TMR_BASE); |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 67 | |
| 68 | /* check for timer interrupt asserted */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 69 | if ((CONFIG_SYS_TMRPND_REG & CONFIG_SYS_TMRINTR_MASK) == CONFIG_SYS_TMRINTR_PEND) { |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 70 | timerp->ter = (DTIM_DTER_CAP | DTIM_DTER_REF); |
| 71 | timestamp++; |
Richard Retanubun | 2a8c889 | 2009-03-20 15:30:10 -0400 | [diff] [blame] | 72 | |
| 73 | #if defined(CONFIG_WATCHDOG) || defined (CONFIG_HW_WATCHDOG) |
Rasmus Villemoes | 134cc2b | 2021-04-14 09:18:22 +0200 | [diff] [blame] | 74 | if (CONFIG_SYS_WATCHDOG_FREQ && (timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) { |
Richard Retanubun | 2a8c889 | 2009-03-20 15:30:10 -0400 | [diff] [blame] | 75 | WATCHDOG_RESET (); |
| 76 | } |
| 77 | #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */ |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 78 | return; |
| 79 | } |
| 80 | } |
| 81 | |
Jason Jin | 1dd491e | 2011-08-19 10:02:32 +0800 | [diff] [blame] | 82 | int timer_init(void) |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 83 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 84 | volatile dtmr_t *timerp = (dtmr_t *) (CONFIG_SYS_TMR_BASE); |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 85 | |
| 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 | |
TsiChungLiew | 903b606 | 2007-07-05 23:36:16 -0500 | [diff] [blame] | 94 | /* initialize and enable timer interrupt */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 95 | irq_install_handler(CONFIG_SYS_TMRINTR_NO, dtimer_interrupt, 0); |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 96 | |
| 97 | timerp->tcn = 0; |
| 98 | timerp->trr = 1000; /* Interrupt every ms */ |
| 99 | |
TsiChungLiew | 903b606 | 2007-07-05 23:36:16 -0500 | [diff] [blame] | 100 | dtimer_intr_setup(); |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 101 | |
| 102 | /* set a period of 1us, set timer mode to restart and enable timer and interrupt */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 103 | timerp->tmr = CONFIG_SYS_TIMER_PRESCALER | DTIM_DTMR_CLK_DIV1 | |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 104 | DTIM_DTMR_FRR | DTIM_DTMR_ORRI | DTIM_DTMR_RST_EN; |
Jason Jin | 1dd491e | 2011-08-19 10:02:32 +0800 | [diff] [blame] | 105 | |
| 106 | return 0; |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 107 | } |
| 108 | |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 109 | ulong get_timer(ulong base) |
| 110 | { |
| 111 | return (timestamp - base); |
| 112 | } |
| 113 | |
TsiChung Liew | f6afe72 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 114 | #endif /* CONFIG_MCFTMR */ |
| 115 | |
wdenk | d11115a | 2004-06-09 15:24:18 +0000 | [diff] [blame] | 116 | /* |
| 117 | * This function is derived from PowerPC code (read timebase as long long). |
| 118 | * On M68K it just returns the timer value. |
| 119 | */ |
| 120 | unsigned long long get_ticks(void) |
| 121 | { |
| 122 | return get_timer(0); |
| 123 | } |
| 124 | |
Stefan Roese | 3762825 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 125 | unsigned long usec2ticks(unsigned long usec) |
| 126 | { |
| 127 | return get_timer(usec); |
| 128 | } |
| 129 | |
wdenk | d11115a | 2004-06-09 15:24:18 +0000 | [diff] [blame] | 130 | /* |
| 131 | * This function is derived from PowerPC code (timebase clock frequency). |
| 132 | * On M68K it returns the number of timer ticks per second. |
| 133 | */ |
TsiChungLiew | 903b606 | 2007-07-05 23:36:16 -0500 | [diff] [blame] | 134 | ulong get_tbclk(void) |
wdenk | d11115a | 2004-06-09 15:24:18 +0000 | [diff] [blame] | 135 | { |
Masahiro Yamada | 04cfea5 | 2016-09-06 22:17:38 +0900 | [diff] [blame] | 136 | return CONFIG_SYS_HZ; |
wdenk | d11115a | 2004-06-09 15:24:18 +0000 | [diff] [blame] | 137 | } |