Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 1 | /* |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 2 | * (C) Copyright 2009 Alessandro Rubini |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <asm/io.h> |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 25 | #include <asm/arch/mtu.h> |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 26 | |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 27 | /* |
| 28 | * The timer is a decrementer, we'll left it free running at 2.4MHz. |
| 29 | * We have 2.4 ticks per microsecond and an overflow in almost 30min |
| 30 | */ |
| 31 | #define TIMER_CLOCK (24 * 100 * 1000) |
| 32 | #define COUNT_TO_USEC(x) ((x) * 5 / 12) /* overflows at 6min */ |
| 33 | #define USEC_TO_COUNT(x) ((x) * 12 / 5) /* overflows at 6min */ |
| 34 | #define TICKS_PER_HZ (TIMER_CLOCK / CONFIG_SYS_HZ) |
| 35 | #define TICKS_TO_HZ(x) ((x) / TICKS_PER_HZ) |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 36 | |
Alessandro Rubini | 4b894a9 | 2009-11-25 23:41:51 +0100 | [diff] [blame] | 37 | /* macro to read the decrementing 32 bit timer as an increasing count */ |
| 38 | #define READ_TIMER() (0 - readl(CONFIG_SYS_TIMERBASE + MTU_VAL(0))) |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 39 | |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 40 | /* Configure a free-running, auto-wrap counter with no prescaler */ |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 41 | int timer_init(void) |
| 42 | { |
Graeme Russ | 4769be2 | 2011-07-15 02:19:44 +0000 | [diff] [blame] | 43 | ulong val; |
| 44 | |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 45 | writel(MTU_CRn_ENA | MTU_CRn_PRESCALE_1 | MTU_CRn_32BITS, |
| 46 | CONFIG_SYS_TIMERBASE + MTU_CR(0)); |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 47 | |
Graeme Russ | 4769be2 | 2011-07-15 02:19:44 +0000 | [diff] [blame] | 48 | /* Reset the timer */ |
Alessandro Rubini | 4b894a9 | 2009-11-25 23:41:51 +0100 | [diff] [blame] | 49 | writel(0, CONFIG_SYS_TIMERBASE + MTU_LR(0)); |
| 50 | /* |
| 51 | * The load-register isn't really immediate: it changes on clock |
| 52 | * edges, so we must wait for our newly-written value to appear. |
| 53 | * Since we might miss reading 0, wait for any change in value. |
| 54 | */ |
| 55 | val = READ_TIMER(); |
| 56 | while (READ_TIMER() == val) |
| 57 | ; |
Graeme Russ | 4769be2 | 2011-07-15 02:19:44 +0000 | [diff] [blame] | 58 | |
| 59 | return 0; |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 60 | } |
| 61 | |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 62 | /* Return how many HZ passed since "base" */ |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 63 | ulong get_timer(ulong base) |
| 64 | { |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 65 | return TICKS_TO_HZ(READ_TIMER()) - base; |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 66 | } |
| 67 | |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 68 | /* Delay x useconds */ |
Ingo van Lil | 3eb90ba | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 69 | void __udelay(unsigned long usec) |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 70 | { |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 71 | ulong ini, end; |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 72 | |
Alessandro Rubini | 095a460 | 2009-06-29 10:52:37 +0200 | [diff] [blame] | 73 | ini = READ_TIMER(); |
| 74 | end = ini + USEC_TO_COUNT(usec); |
| 75 | while ((signed)(end - READ_TIMER()) > 0) |
| 76 | ; |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 77 | } |