Bin Meng | 2539903 | 2018-12-12 06:12:27 -0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
Sean Anderson | 9baaaef | 2020-09-28 10:52:21 -0400 | [diff] [blame] | 3 | * Copyright (C) 2020, Sean Anderson <seanga2@gmail.com> |
Bin Meng | 2539903 | 2018-12-12 06:12:27 -0800 | [diff] [blame] | 4 | * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> |
Sean Anderson | 9baaaef | 2020-09-28 10:52:21 -0400 | [diff] [blame] | 5 | * Copyright (C) 2018, Anup Patel <anup@brainfault.org> |
| 6 | * Copyright (C) 2012 Regents of the University of California |
Bin Meng | 2539903 | 2018-12-12 06:12:27 -0800 | [diff] [blame] | 7 | * |
Sean Anderson | 9baaaef | 2020-09-28 10:52:21 -0400 | [diff] [blame] | 8 | * RISC-V architecturally-defined generic timer driver |
Bin Meng | 2539903 | 2018-12-12 06:12:27 -0800 | [diff] [blame] | 9 | * |
Sean Anderson | 9baaaef | 2020-09-28 10:52:21 -0400 | [diff] [blame] | 10 | * This driver provides generic timer support for S-mode U-Boot. |
Bin Meng | 2539903 | 2018-12-12 06:12:27 -0800 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
| 14 | #include <dm.h> |
| 15 | #include <errno.h> |
| 16 | #include <timer.h> |
Sean Anderson | 9baaaef | 2020-09-28 10:52:21 -0400 | [diff] [blame] | 17 | #include <asm/csr.h> |
Bin Meng | 2539903 | 2018-12-12 06:12:27 -0800 | [diff] [blame] | 18 | |
| 19 | static int riscv_timer_get_count(struct udevice *dev, u64 *count) |
| 20 | { |
Sean Anderson | 9baaaef | 2020-09-28 10:52:21 -0400 | [diff] [blame] | 21 | if (IS_ENABLED(CONFIG_64BIT)) { |
| 22 | *count = csr_read(CSR_TIME); |
| 23 | } else { |
| 24 | u32 hi, lo; |
| 25 | |
| 26 | do { |
| 27 | hi = csr_read(CSR_TIMEH); |
| 28 | lo = csr_read(CSR_TIME); |
| 29 | } while (hi != csr_read(CSR_TIMEH)); |
| 30 | |
| 31 | *count = ((u64)hi << 32) | lo; |
| 32 | } |
| 33 | |
| 34 | return 0; |
Bin Meng | 2539903 | 2018-12-12 06:12:27 -0800 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | static int riscv_timer_probe(struct udevice *dev) |
| 38 | { |
| 39 | struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
| 40 | |
| 41 | /* clock frequency was passed from the cpu driver as driver data */ |
| 42 | uc_priv->clock_rate = dev->driver_data; |
| 43 | |
| 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | static const struct timer_ops riscv_timer_ops = { |
| 48 | .get_count = riscv_timer_get_count, |
| 49 | }; |
| 50 | |
| 51 | U_BOOT_DRIVER(riscv_timer) = { |
| 52 | .name = "riscv_timer", |
| 53 | .id = UCLASS_TIMER, |
| 54 | .probe = riscv_timer_probe, |
| 55 | .ops = &riscv_timer_ops, |
| 56 | .flags = DM_FLAG_PRE_RELOC, |
| 57 | }; |