spi/pl022: disable port when unused
[linux-2.6/btrfs-unstable.git] / arch / openrisc / lib / delay.c
blob01d9740ae6f3bff549db96cf0bc87476bbb0bb08
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/module.h>
20 #include <linux/init.h>
21 #include <asm/delay.h>
22 #include <asm/timex.h>
23 #include <asm/processor.h>
25 int __devinit read_current_timer(unsigned long *timer_value)
27 *timer_value = mfspr(SPR_TTCR);
28 return 0;
31 void __delay(unsigned long cycles)
33 cycles_t target = get_cycles() + cycles;
35 while (get_cycles() < target)
36 cpu_relax();
38 EXPORT_SYMBOL(__delay);
40 inline void __const_udelay(unsigned long xloops)
42 unsigned long long loops;
44 loops = xloops * loops_per_jiffy * HZ;
46 __delay(loops >> 32);
48 EXPORT_SYMBOL(__const_udelay);
50 void __udelay(unsigned long usecs)
52 __const_udelay(usecs * 0x10C7UL); /* 2**32 / 1000000 (rounded up) */
54 EXPORT_SYMBOL(__udelay);
56 void __ndelay(unsigned long nsecs)
58 __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */
60 EXPORT_SYMBOL(__ndelay);