iwlwifi: mvm: fix version check for GEO_TX_POWER_LIMIT support
[linux/fpc-iii.git] / arch / openrisc / lib / delay.c
bloba92bd621aa1f6e5e64a7ade5ad392c5d5c46e918
1 /*
2 * OpenRISC Linux
4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
6 * declaration.
8 * Modifications for the OpenRISC architecture:
9 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * version 2 as published by the Free Software Foundation
15 * Precise Delay Loops
18 #include <linux/kernel.h>
19 #include <linux/export.h>
20 #include <linux/init.h>
21 #include <asm/param.h>
22 #include <asm/delay.h>
23 #include <asm/timex.h>
24 #include <asm/processor.h>
26 int read_current_timer(unsigned long *timer_value)
28 *timer_value = get_cycles();
29 return 0;
32 void __delay(unsigned long cycles)
34 cycles_t start = get_cycles();
36 while ((get_cycles() - start) < cycles)
37 cpu_relax();
39 EXPORT_SYMBOL(__delay);
41 inline void __const_udelay(unsigned long xloops)
43 unsigned long long loops;
45 loops = (unsigned long long)xloops * loops_per_jiffy * HZ;
47 __delay(loops >> 32);
49 EXPORT_SYMBOL(__const_udelay);
51 void __udelay(unsigned long usecs)
53 __const_udelay(usecs * 0x10C7UL); /* 2**32 / 1000000 (rounded up) */
55 EXPORT_SYMBOL(__udelay);
57 void __ndelay(unsigned long nsecs)
59 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */
61 EXPORT_SYMBOL(__ndelay);