blob: 470c7ef02ea478a4d034f7e03b3477d41dffe455 [file] [log] [blame]
Palmer Dabbelt62b01942018-08-04 10:23:19 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2012 Regents of the University of California
4 * Copyright (C) 2017 SiFive
Christoph Hellwig2f12dbf12019-08-21 23:58:36 +09005 *
6 * All RISC-V systems have a timer attached to every hart. These timers can be
7 * read from the "time" and "timeh" CSRs, and can use the SBI to setup
8 * events.
Palmer Dabbelt62b01942018-08-04 10:23:19 +02009 */
10#include <linux/clocksource.h>
11#include <linux/clockchips.h>
12#include <linux/cpu.h>
13#include <linux/delay.h>
14#include <linux/irq.h>
Anup Patel92e0d142018-12-04 15:59:52 +053015#include <linux/sched_clock.h>
Atish Patraf99fb602018-10-02 12:15:05 -070016#include <asm/smp.h>
Palmer Dabbelt62b01942018-08-04 10:23:19 +020017#include <asm/sbi.h>
18
Palmer Dabbelt62b01942018-08-04 10:23:19 +020019static int riscv_clock_next_event(unsigned long delta,
20 struct clock_event_device *ce)
21{
22 csr_set(sie, SIE_STIE);
23 sbi_set_timer(get_cycles64() + delta);
24 return 0;
25}
26
27static DEFINE_PER_CPU(struct clock_event_device, riscv_clock_event) = {
28 .name = "riscv_timer_clockevent",
29 .features = CLOCK_EVT_FEAT_ONESHOT,
30 .rating = 100,
31 .set_next_event = riscv_clock_next_event,
32};
33
34/*
35 * It is guaranteed that all the timers across all the harts are synchronized
36 * within one tick of each other, so while this could technically go
37 * backwards when hopping between CPUs, practically it won't happen.
38 */
39static unsigned long long riscv_clocksource_rdtime(struct clocksource *cs)
40{
41 return get_cycles64();
42}
43
Anup Patel92e0d142018-12-04 15:59:52 +053044static u64 riscv_sched_clock(void)
45{
46 return get_cycles64();
47}
48
Atish Patra713203e2019-08-02 21:27:20 -070049static struct clocksource riscv_clocksource = {
Palmer Dabbelt62b01942018-08-04 10:23:19 +020050 .name = "riscv_clocksource",
51 .rating = 300,
Atish Patra32d0be02019-03-22 14:54:11 -070052 .mask = CLOCKSOURCE_MASK(64),
Palmer Dabbelt62b01942018-08-04 10:23:19 +020053 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
54 .read = riscv_clocksource_rdtime,
55};
56
57static int riscv_timer_starting_cpu(unsigned int cpu)
58{
59 struct clock_event_device *ce = per_cpu_ptr(&riscv_clock_event, cpu);
60
61 ce->cpumask = cpumask_of(cpu);
62 clockevents_config_and_register(ce, riscv_timebase, 100, 0x7fffffff);
63
64 csr_set(sie, SIE_STIE);
65 return 0;
66}
67
68static int riscv_timer_dying_cpu(unsigned int cpu)
69{
70 csr_clear(sie, SIE_STIE);
71 return 0;
72}
73
74/* called directly from the low-level interrupt handler */
75void riscv_timer_interrupt(void)
76{
77 struct clock_event_device *evdev = this_cpu_ptr(&riscv_clock_event);
78
79 csr_clear(sie, SIE_STIE);
80 evdev->event_handler(evdev);
81}
82
83static int __init riscv_timer_init_dt(struct device_node *n)
84{
Atish Patraf99fb602018-10-02 12:15:05 -070085 int cpuid, hartid, error;
Palmer Dabbelt62b01942018-08-04 10:23:19 +020086
Atish Patraf99fb602018-10-02 12:15:05 -070087 hartid = riscv_of_processor_hartid(n);
Atish Patra26478b22019-02-13 12:18:10 -080088 if (hartid < 0) {
89 pr_warn("Not valid hartid for node [%pOF] error = [%d]\n",
90 n, hartid);
91 return hartid;
92 }
93
Atish Patraf99fb602018-10-02 12:15:05 -070094 cpuid = riscv_hartid_to_cpuid(hartid);
Atish Patra26478b22019-02-13 12:18:10 -080095 if (cpuid < 0) {
96 pr_warn("Invalid cpuid for hartid [%d]\n", hartid);
97 return cpuid;
98 }
Atish Patraf99fb602018-10-02 12:15:05 -070099
100 if (cpuid != smp_processor_id())
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200101 return 0;
102
Atish Patra26478b22019-02-13 12:18:10 -0800103 pr_info("%s: Registering clocksource cpuid [%d] hartid [%d]\n",
104 __func__, cpuid, hartid);
Atish Patra713203e2019-08-02 21:27:20 -0700105 error = clocksource_register_hz(&riscv_clocksource, riscv_timebase);
Atish Patra26478b22019-02-13 12:18:10 -0800106 if (error) {
107 pr_err("RISCV timer register failed [%d] for cpu = [%d]\n",
108 error, cpuid);
109 return error;
110 }
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200111
Atish Patra32d0be02019-03-22 14:54:11 -0700112 sched_clock_register(riscv_sched_clock, 64, riscv_timebase);
Anup Patel92e0d142018-12-04 15:59:52 +0530113
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200114 error = cpuhp_setup_state(CPUHP_AP_RISCV_TIMER_STARTING,
115 "clockevents/riscv/timer:starting",
116 riscv_timer_starting_cpu, riscv_timer_dying_cpu);
117 if (error)
Atish Patra26478b22019-02-13 12:18:10 -0800118 pr_err("cpu hp setup state failed for RISCV timer [%d]\n",
119 error);
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200120 return error;
121}
122
123TIMER_OF_DECLARE(riscv_timer, "riscv", riscv_timer_init_dt);