.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * 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 | 4 | */ |
---|
13 | 5 | |
---|
14 | 6 | #ifndef _ASM_RISCV_TIMEX_H |
---|
15 | 7 | #define _ASM_RISCV_TIMEX_H |
---|
16 | 8 | |
---|
17 | | -#include <asm/param.h> |
---|
| 9 | +#include <asm/csr.h> |
---|
18 | 10 | |
---|
19 | 11 | typedef unsigned long cycles_t; |
---|
20 | 12 | |
---|
21 | | -static inline cycles_t get_cycles_inline(void) |
---|
22 | | -{ |
---|
23 | | - cycles_t n; |
---|
| 13 | +#ifdef CONFIG_RISCV_M_MODE |
---|
24 | 14 | |
---|
25 | | - __asm__ __volatile__ ( |
---|
26 | | - "rdtime %0" |
---|
27 | | - : "=r" (n)); |
---|
28 | | - return n; |
---|
29 | | -} |
---|
30 | | -#define get_cycles get_cycles_inline |
---|
| 15 | +#include <asm/clint.h> |
---|
31 | 16 | |
---|
32 | 17 | #ifdef CONFIG_64BIT |
---|
33 | | -static inline uint64_t get_cycles64(void) |
---|
| 18 | +static inline cycles_t get_cycles(void) |
---|
34 | 19 | { |
---|
35 | | - return get_cycles(); |
---|
| 20 | + return readq_relaxed(clint_time_val); |
---|
36 | 21 | } |
---|
37 | | -#else |
---|
38 | | -static inline uint64_t get_cycles64(void) |
---|
| 22 | +#else /* !CONFIG_64BIT */ |
---|
| 23 | +static inline u32 get_cycles(void) |
---|
39 | 24 | { |
---|
40 | | - u32 lo, hi, tmp; |
---|
41 | | - __asm__ __volatile__ ( |
---|
42 | | - "1:\n" |
---|
43 | | - "rdtimeh %0\n" |
---|
44 | | - "rdtime %1\n" |
---|
45 | | - "rdtimeh %2\n" |
---|
46 | | - "bne %0, %2, 1b" |
---|
47 | | - : "=&r" (hi), "=&r" (lo), "=&r" (tmp)); |
---|
| 25 | + return readl_relaxed(((u32 *)clint_time_val)); |
---|
| 26 | +} |
---|
| 27 | +#define get_cycles get_cycles |
---|
| 28 | + |
---|
| 29 | +static inline u32 get_cycles_hi(void) |
---|
| 30 | +{ |
---|
| 31 | + return readl_relaxed(((u32 *)clint_time_val) + 1); |
---|
| 32 | +} |
---|
| 33 | +#define get_cycles_hi get_cycles_hi |
---|
| 34 | +#endif /* CONFIG_64BIT */ |
---|
| 35 | + |
---|
| 36 | +/* |
---|
| 37 | + * Much like MIPS, we may not have a viable counter to use at an early point |
---|
| 38 | + * in the boot process. Unfortunately we don't have a fallback, so instead |
---|
| 39 | + * we just return 0. |
---|
| 40 | + */ |
---|
| 41 | +static inline unsigned long random_get_entropy(void) |
---|
| 42 | +{ |
---|
| 43 | + if (unlikely(clint_time_val == NULL)) |
---|
| 44 | + return random_get_entropy_fallback(); |
---|
| 45 | + return get_cycles(); |
---|
| 46 | +} |
---|
| 47 | +#define random_get_entropy() random_get_entropy() |
---|
| 48 | + |
---|
| 49 | +#else /* CONFIG_RISCV_M_MODE */ |
---|
| 50 | + |
---|
| 51 | +static inline cycles_t get_cycles(void) |
---|
| 52 | +{ |
---|
| 53 | + return csr_read(CSR_TIME); |
---|
| 54 | +} |
---|
| 55 | +#define get_cycles get_cycles |
---|
| 56 | + |
---|
| 57 | +static inline u32 get_cycles_hi(void) |
---|
| 58 | +{ |
---|
| 59 | + return csr_read(CSR_TIMEH); |
---|
| 60 | +} |
---|
| 61 | +#define get_cycles_hi get_cycles_hi |
---|
| 62 | + |
---|
| 63 | +#endif /* !CONFIG_RISCV_M_MODE */ |
---|
| 64 | + |
---|
| 65 | +#ifdef CONFIG_64BIT |
---|
| 66 | +static inline u64 get_cycles64(void) |
---|
| 67 | +{ |
---|
| 68 | + return get_cycles(); |
---|
| 69 | +} |
---|
| 70 | +#else /* CONFIG_64BIT */ |
---|
| 71 | +static inline u64 get_cycles64(void) |
---|
| 72 | +{ |
---|
| 73 | + u32 hi, lo; |
---|
| 74 | + |
---|
| 75 | + do { |
---|
| 76 | + hi = get_cycles_hi(); |
---|
| 77 | + lo = get_cycles(); |
---|
| 78 | + } while (hi != get_cycles_hi()); |
---|
| 79 | + |
---|
48 | 80 | return ((u64)hi << 32) | lo; |
---|
49 | 81 | } |
---|
50 | | -#endif |
---|
| 82 | +#endif /* CONFIG_64BIT */ |
---|
51 | 83 | |
---|
52 | 84 | #define ARCH_HAS_READ_CURRENT_TIMER |
---|
53 | | - |
---|
54 | 85 | static inline int read_current_timer(unsigned long *timer_val) |
---|
55 | 86 | { |
---|
56 | 87 | *timer_val = get_cycles(); |
---|