wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000, 2001 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Christophe Leroy | ba3da73 | 2017-07-06 10:33:13 +0200 | [diff] [blame] | 9 | #include <asm/io.h> |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 10 | |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 11 | /* ------------------------------------------------------------------------- */ |
| 12 | |
| 13 | /* |
| 14 | * This function is intended for SHORT delays only. |
| 15 | * It will overflow at around 10 seconds @ 400MHz, |
| 16 | * or 20 seconds @ 200MHz. |
| 17 | */ |
| 18 | unsigned long usec2ticks(unsigned long usec) |
| 19 | { |
| 20 | ulong ticks; |
| 21 | |
| 22 | if (usec < 1000) { |
| 23 | ticks = ((usec * (get_tbclk()/1000)) + 500) / 1000; |
| 24 | } else { |
| 25 | ticks = ((usec / 10) * (get_tbclk() / 100000)); |
| 26 | } |
| 27 | |
| 28 | return (ticks); |
| 29 | } |
| 30 | |
| 31 | /* ------------------------------------------------------------------------- */ |
| 32 | |
| 33 | /* |
| 34 | * We implement the delay by converting the delay (the number of |
| 35 | * microseconds to wait) into a number of time base ticks; then we |
| 36 | * watch the time base until it has incremented by that amount. |
| 37 | */ |
Ingo van Lil | 3eb90ba | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 38 | void __udelay(unsigned long usec) |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 39 | { |
Ingo van Lil | 3eb90ba | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 40 | ulong ticks = usec2ticks (usec); |
| 41 | wait_ticks (ticks); |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | /* ------------------------------------------------------------------------- */ |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 45 | #ifndef CONFIG_NAND_SPL |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 46 | unsigned long ticks2usec(unsigned long ticks) |
| 47 | { |
| 48 | ulong tbclk = get_tbclk(); |
| 49 | |
| 50 | /* usec = ticks * 1000000 / tbclk |
| 51 | * Multiplication would overflow at ~4.2e3 ticks, |
| 52 | * so we break it up into |
| 53 | * usec = ( ( ticks * 1000) / tbclk ) * 1000; |
| 54 | */ |
| 55 | ticks *= 1000L; |
| 56 | ticks /= tbclk; |
| 57 | ticks *= 1000L; |
| 58 | |
| 59 | return ((ulong)ticks); |
| 60 | } |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 61 | #endif |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 62 | /* ------------------------------------------------------------------------- */ |
| 63 | |
Simon Glass | 70e2aaf | 2017-03-28 10:27:24 -0600 | [diff] [blame] | 64 | int timer_init(void) |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 65 | { |
Timur Tabi | 96805a5 | 2010-12-14 17:18:51 -0600 | [diff] [blame] | 66 | unsigned long temp; |
| 67 | |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 68 | /* reset */ |
Christophe Leroy | f0eda3c | 2017-07-13 15:09:50 +0200 | [diff] [blame] | 69 | asm volatile("li %0,0 ; mttbl %0 ; mttbu %0;" |
Timur Tabi | 96805a5 | 2010-12-14 17:18:51 -0600 | [diff] [blame] | 70 | : "=&r"(temp) ); |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 71 | |
wdenk | 1dda0b1 | 2002-08-27 10:52:29 +0000 | [diff] [blame] | 72 | return (0); |
| 73 | } |
| 74 | /* ------------------------------------------------------------------------- */ |