1 // SPDX-License-Identifier: GPL-2.0-only
5 * Linux architectural port borrowing liberally from similar works of
6 * others. All original copyrights apply as per the original source
9 * Modifications for the OpenRISC architecture:
10 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
15 #include <linux/kernel.h>
16 #include <linux/export.h>
17 #include <linux/init.h>
18 #include <asm/param.h>
19 #include <asm/delay.h>
20 #include <asm/timex.h>
21 #include <asm/processor.h>
23 int read_current_timer(unsigned long *timer_value
)
25 *timer_value
= get_cycles();
29 void __delay(unsigned long cycles
)
31 cycles_t start
= get_cycles();
33 while ((get_cycles() - start
) < cycles
)
36 EXPORT_SYMBOL(__delay
);
38 inline void __const_udelay(unsigned long xloops
)
40 unsigned long long loops
;
42 loops
= (unsigned long long)xloops
* loops_per_jiffy
* HZ
;
46 EXPORT_SYMBOL(__const_udelay
);
48 void __udelay(unsigned long usecs
)
50 __const_udelay(usecs
* 0x10C7UL
); /* 2**32 / 1000000 (rounded up) */
52 EXPORT_SYMBOL(__udelay
);
54 void __ndelay(unsigned long nsecs
)
56 __const_udelay(nsecs
* 0x5UL
); /* 2**32 / 1000000000 (rounded up) */
58 EXPORT_SYMBOL(__ndelay
);