wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 1 | /* |
Ladislav Michl | 3791a11 | 2009-04-22 01:12:04 +0200 | [diff] [blame] | 2 | * (C) Copyright 2009 |
| 3 | * 2N Telekomunikace, <www.2n.cz> |
| 4 | * |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 5 | * (C) Copyright 2003 |
| 6 | * Texas Instruments, <www.ti.com> |
| 7 | * |
| 8 | * (C) Copyright 2002 |
| 9 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 10 | * Marius Groeger <mgroeger@sysgo.de> |
| 11 | * |
| 12 | * (C) Copyright 2002 |
| 13 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 14 | * Alex Zuepke <azu@sysgo.de> |
| 15 | * |
| 16 | * (C) Copyright 2002 |
Detlev Zundel | 792a09e | 2009-05-13 10:54:10 +0200 | [diff] [blame] | 17 | * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de> |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 18 | * |
| 19 | * See file CREDITS for list of people who contributed to this |
| 20 | * project. |
| 21 | * |
| 22 | * This program is free software; you can redistribute it and/or |
| 23 | * modify it under the terms of the GNU General Public License as |
| 24 | * published by the Free Software Foundation; either version 2 of |
| 25 | * the License, or (at your option) any later version. |
| 26 | * |
| 27 | * This program is distributed in the hope that it will be useful, |
| 28 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 29 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 30 | * GNU General Public License for more details. |
| 31 | * |
| 32 | * You should have received a copy of the GNU General Public License |
| 33 | * along with this program; if not, write to the Free Software |
| 34 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 35 | * MA 02111-1307 USA |
| 36 | */ |
| 37 | |
| 38 | #include <common.h> |
| 39 | #include <arm925t.h> |
| 40 | #include <configs/omap1510.h> |
Ladislav Michl | 89c00fb | 2009-03-30 18:58:41 +0200 | [diff] [blame] | 41 | #include <asm/io.h> |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 42 | |
Ladislav Michl | 3791a11 | 2009-04-22 01:12:04 +0200 | [diff] [blame] | 43 | #define TIMER_LOAD_VAL 0xffffffff |
| 44 | #define TIMER_CLOCK (CONFIG_SYS_CLK_FREQ / (2 << CONFIG_SYS_PTV)) |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 45 | |
Ladislav Michl | 89c00fb | 2009-03-30 18:58:41 +0200 | [diff] [blame] | 46 | static uint32_t timestamp; |
| 47 | static uint32_t lastdec; |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 48 | |
| 49 | /* nothing really to do with interrupts, just starts up a counter. */ |
Jean-Christophe PLAGNIOL-VILLARD | b54384e | 2009-05-15 23:47:02 +0200 | [diff] [blame] | 50 | int timer_init (void) |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 51 | { |
wdenk | a3ad8e2 | 2003-10-19 23:22:11 +0000 | [diff] [blame] | 52 | /* Start the decrementer ticking down from 0xffffffff */ |
Ladislav Michl | 89c00fb | 2009-03-30 18:58:41 +0200 | [diff] [blame] | 53 | __raw_writel(TIMER_LOAD_VAL, CONFIG_SYS_TIMERBASE + LOAD_TIM); |
| 54 | __raw_writel(MPUTIM_ST | MPUTIM_AR | MPUTIM_CLOCK_ENABLE | |
| 55 | (CONFIG_SYS_PTV << MPUTIM_PTV_BIT), |
| 56 | CONFIG_SYS_TIMERBASE + CNTL_TIMER); |
wdenk | a3ad8e2 | 2003-10-19 23:22:11 +0000 | [diff] [blame] | 57 | |
| 58 | /* init the timestamp and lastdec value */ |
| 59 | reset_timer_masked(); |
| 60 | |
Ladislav Michl | fe672d6 | 2009-03-30 18:58:40 +0200 | [diff] [blame] | 61 | return 0; |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | /* |
| 65 | * timer without interrupts |
| 66 | */ |
| 67 | |
| 68 | void reset_timer (void) |
| 69 | { |
| 70 | reset_timer_masked (); |
| 71 | } |
| 72 | |
| 73 | ulong get_timer (ulong base) |
| 74 | { |
| 75 | return get_timer_masked () - base; |
| 76 | } |
| 77 | |
| 78 | void set_timer (ulong t) |
| 79 | { |
| 80 | timestamp = t; |
| 81 | } |
| 82 | |
wdenk | 0b8fa03 | 2004-04-25 14:37:29 +0000 | [diff] [blame] | 83 | /* delay x useconds AND preserve advance timestamp value */ |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 84 | void udelay (unsigned long usec) |
| 85 | { |
Ladislav Michl | 3791a11 | 2009-04-22 01:12:04 +0200 | [diff] [blame] | 86 | int32_t tmo = usec * (TIMER_CLOCK / 1000) / 1000; |
| 87 | uint32_t now, last = __raw_readl(CONFIG_SYS_TIMERBASE + READ_TIM); |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 88 | |
Ladislav Michl | 3791a11 | 2009-04-22 01:12:04 +0200 | [diff] [blame] | 89 | while (tmo > 0) { |
| 90 | now = __raw_readl(CONFIG_SYS_TIMERBASE + READ_TIM); |
| 91 | if (last < now) /* count down timer underflow */ |
| 92 | tmo -= TIMER_LOAD_VAL - now + last; |
| 93 | else |
| 94 | tmo -= last - now; |
| 95 | last = now; |
wdenk | a3ad8e2 | 2003-10-19 23:22:11 +0000 | [diff] [blame] | 96 | } |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | void reset_timer_masked (void) |
| 100 | { |
| 101 | /* reset time */ |
Ladislav Michl | 3791a11 | 2009-04-22 01:12:04 +0200 | [diff] [blame] | 102 | lastdec = __raw_readl(CONFIG_SYS_TIMERBASE + READ_TIM) / |
| 103 | (TIMER_CLOCK / CONFIG_SYS_HZ); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 104 | timestamp = 0; /* start "advancing" time stamp from 0 */ |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | ulong get_timer_masked (void) |
| 108 | { |
Ladislav Michl | 3791a11 | 2009-04-22 01:12:04 +0200 | [diff] [blame] | 109 | uint32_t now = __raw_readl(CONFIG_SYS_TIMERBASE + READ_TIM) / |
| 110 | (TIMER_CLOCK / CONFIG_SYS_HZ); |
| 111 | if (lastdec < now) /* count down timer underflow */ |
| 112 | timestamp += TIMER_LOAD_VAL / (TIMER_CLOCK / CONFIG_SYS_HZ) - |
| 113 | now + lastdec; |
| 114 | else |
| 115 | timestamp += lastdec - now; |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 116 | lastdec = now; |
| 117 | |
| 118 | return timestamp; |
| 119 | } |
| 120 | |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 121 | /* |
| 122 | * This function is derived from PowerPC code (read timebase as long long). |
| 123 | * On ARM it just returns the timer value. |
| 124 | */ |
| 125 | unsigned long long get_ticks(void) |
| 126 | { |
| 127 | return get_timer(0); |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * This function is derived from PowerPC code (timebase clock frequency). |
| 132 | * On ARM it returns the number of timer ticks per second. |
| 133 | */ |
| 134 | ulong get_tbclk (void) |
wdenk | a3ad8e2 | 2003-10-19 23:22:11 +0000 | [diff] [blame] | 135 | { |
Ladislav Michl | fe672d6 | 2009-03-30 18:58:40 +0200 | [diff] [blame] | 136 | return CONFIG_SYS_HZ; |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 137 | } |