Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 2 | /* |
| 3 | * OpenRISC Linux |
| 4 | * |
| 5 | * Linux architectural port borrowing liberally from similar works of |
| 6 | * others. All original copyrights apply as per the original source |
| 7 | * declaration. |
| 8 | * |
| 9 | * Modifications for the OpenRISC architecture: |
| 10 | * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se> |
| 11 | * |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 12 | * Precise Delay Loops |
| 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
Stafford Horne | 1938852 | 2017-03-14 22:54:22 +0900 | [diff] [blame] | 16 | #include <linux/export.h> |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 17 | #include <linux/init.h> |
Stafford Horne | 1938852 | 2017-03-14 22:54:22 +0900 | [diff] [blame] | 18 | #include <asm/param.h> |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 19 | #include <asm/delay.h> |
| 20 | #include <asm/timex.h> |
| 21 | #include <asm/processor.h> |
| 22 | |
Greg Kroah-Hartman | b881bc4 | 2012-12-21 14:06:37 -0800 | [diff] [blame] | 23 | int read_current_timer(unsigned long *timer_value) |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 24 | { |
Stefan Kristiansson | 8e6d08e | 2014-05-11 21:49:34 +0300 | [diff] [blame] | 25 | *timer_value = get_cycles(); |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 26 | return 0; |
| 27 | } |
| 28 | |
| 29 | void __delay(unsigned long cycles) |
| 30 | { |
Will Deacon | 807607f | 2012-08-07 17:59:54 +0100 | [diff] [blame] | 31 | cycles_t start = get_cycles(); |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 32 | |
Will Deacon | 807607f | 2012-08-07 17:59:54 +0100 | [diff] [blame] | 33 | while ((get_cycles() - start) < cycles) |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 34 | cpu_relax(); |
| 35 | } |
| 36 | EXPORT_SYMBOL(__delay); |
| 37 | |
| 38 | inline void __const_udelay(unsigned long xloops) |
| 39 | { |
| 40 | unsigned long long loops; |
| 41 | |
Will Deacon | 4391646 | 2012-08-07 17:59:53 +0100 | [diff] [blame] | 42 | loops = (unsigned long long)xloops * loops_per_jiffy * HZ; |
Jonas Bonn | 224cd12 | 2011-06-04 22:44:40 +0300 | [diff] [blame] | 43 | |
| 44 | __delay(loops >> 32); |
| 45 | } |
| 46 | EXPORT_SYMBOL(__const_udelay); |
| 47 | |
| 48 | void __udelay(unsigned long usecs) |
| 49 | { |
| 50 | __const_udelay(usecs * 0x10C7UL); /* 2**32 / 1000000 (rounded up) */ |
| 51 | } |
| 52 | EXPORT_SYMBOL(__udelay); |
| 53 | |
| 54 | void __ndelay(unsigned long nsecs) |
| 55 | { |
| 56 | __const_udelay(nsecs * 0x5UL); /* 2**32 / 1000000000 (rounded up) */ |
| 57 | } |
| 58 | EXPORT_SYMBOL(__ndelay); |