xref: /openbmc/linux/arch/riscv/include/asm/timex.h (revision 2f828fb2)
1 /*
2  * Copyright (C) 2012 Regents of the University of California
3  *
4  *   This program is free software; you can redistribute it and/or
5  *   modify it under the terms of the GNU General Public License
6  *   as published by the Free Software Foundation, version 2.
7  *
8  *   This program is distributed in the hope that it will be useful,
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *   GNU General Public License for more details.
12  */
13 
14 #ifndef _ASM_RISCV_TIMEX_H
15 #define _ASM_RISCV_TIMEX_H
16 
17 #include <asm/param.h>
18 
19 typedef unsigned long cycles_t;
20 
21 static inline cycles_t get_cycles(void)
22 {
23 	cycles_t n;
24 
25 	__asm__ __volatile__ (
26 		"rdtime %0"
27 		: "=r" (n));
28 	return n;
29 }
30 
31 #ifdef CONFIG_64BIT
32 static inline uint64_t get_cycles64(void)
33 {
34         return get_cycles();
35 }
36 #else
37 static inline uint64_t get_cycles64(void)
38 {
39 	u32 lo, hi, tmp;
40 	__asm__ __volatile__ (
41 		"1:\n"
42 		"rdtimeh %0\n"
43 		"rdtime %1\n"
44 		"rdtimeh %2\n"
45 		"bne %0, %2, 1b"
46 		: "=&r" (hi), "=&r" (lo), "=&r" (tmp));
47 	return ((u64)hi << 32) | lo;
48 }
49 #endif
50 
51 #define ARCH_HAS_READ_CURRENT_TIMER
52 
53 static inline int read_current_timer(unsigned long *timer_val)
54 {
55 	*timer_val = get_cycles();
56 	return 0;
57 }
58 
59 #endif /* _ASM_RISCV_TIMEX_H */
60