aboutsummaryrefslogtreecommitdiffstats
path: root/arch/openrisc/lib/delay.c
diff options
context:
space:
mode:
authorJonas Bonn <jonas@southpole.se>2011-06-04 15:44:40 -0400
committerJonas Bonn <jonas@southpole.se>2011-07-22 12:46:40 -0400
commit224cd129fdbb40a01de4aaf46cd77d80e65d81e5 (patch)
treeafd1b32161acd06b7a82a8355c71c454375b8a83 /arch/openrisc/lib/delay.c
parent58e0166a4772aaeb10c9b0f6d59f19099d2047df (diff)
OpenRISC: Library routines
Signed-off-by: Jonas Bonn <jonas@southpole.se> Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/openrisc/lib/delay.c')
-rw-r--r--arch/openrisc/lib/delay.c60
1 files changed, 60 insertions, 0 deletions
diff --git a/arch/openrisc/lib/delay.c b/arch/openrisc/lib/delay.c
new file mode 100644
index 000000000000..01d9740ae6f3
--- /dev/null
+++ b/arch/openrisc/lib/delay.c
@@ -0,0 +1,60 @@
1/*
2 * OpenRISC Linux
3 *
4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
6 * declaration.
7 *
8 * Modifications for the OpenRISC architecture:
9 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
10 *
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
14 *
15 * Precise Delay Loops
16 */
17
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <asm/delay.h>
22#include <asm/timex.h>
23#include <asm/processor.h>
24
25int __devinit read_current_timer(unsigned long *timer_value)
26{
27 *timer_value = mfspr(SPR_TTCR);
28 return 0;
29}
30
31void __delay(unsigned long cycles)
32{
33 cycles_t target = get_cycles() + cycles;
34
35 while (get_cycles() < target)
36 cpu_relax();
37}
38EXPORT_SYMBOL(__delay);
39
40inline void __const_udelay(unsigned long xloops)
41{
42 unsigned long long loops;
43
44 loops = xloops * loops_per_jiffy * HZ;
45
46 __delay(loops >> 32);
47}
48EXPORT_SYMBOL(__const_udelay);
49
50void __udelay(unsigned long usecs)
51{
52 __const_udelay(usecs * 0x10C7UL); /* 2**32 / 1000000 (rounded up) */
53}
54EXPORT_SYMBOL(__udelay);
55
56void __ndelay(unsigned long nsecs)
57{
58 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */
59}
60EXPORT_SYMBOL(__ndelay);