Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 1 | /* |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame^] | 2 | * U-Boot - delay.h Routines for introducing delays |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 3 | * |
Aubrey Li | 155fd76 | 2007-04-05 18:31:18 +0800 | [diff] [blame] | 4 | * Copyright (c) 2005-2007 Analog Devices Inc. |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _BLACKFIN_DELAY_H |
| 10 | #define _BLACKFIN_DELAY_H |
| 11 | |
| 12 | /* |
| 13 | * Changes made by akbar.hussain@Lineo.com, for BLACKFIN |
| 14 | * Copyright (C) 1994 Hamish Macdonald |
| 15 | * |
| 16 | * Delay routines, using a pre-computed "loops_per_second" value. |
| 17 | */ |
| 18 | |
Måns Rullgård | 44d0677 | 2015-11-06 12:44:01 +0000 | [diff] [blame] | 19 | static __inline__ void __delay(unsigned long loops) |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 20 | { |
| 21 | __asm__ __volatile__("1:\t%0 += -1;\n\t" |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 22 | "cc = %0 == 0;\n\t" |
| 23 | "if ! cc jump 1b;\n":"=d"(loops) |
| 24 | :"0"(loops)); |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | /* |
| 28 | * Use only for very small delays ( < 1 msec). Should probably use a |
| 29 | * lookup table, really, as the multiplications take much too long with |
| 30 | * short delays. This is a "reasonable" implementation, though (and the |
| 31 | * first constant multiplications gets optimized away if the delay is |
| 32 | * a constant) |
| 33 | */ |
Måns Rullgård | 44d0677 | 2015-11-06 12:44:01 +0000 | [diff] [blame] | 34 | static __inline__ void __udelay(unsigned long usecs) |
Wolfgang Denk | 6cb142f | 2006-03-12 02:12:27 +0100 | [diff] [blame] | 35 | { |
| 36 | __delay(usecs); |
| 37 | } |
| 38 | |
| 39 | #endif |