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