blob: c4f15c4068c02b0cc37831543a33a2c87fe9aa51 [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 *
Christoph Hellwig4f9bbce2019-10-28 13:10:37 +01006 * All RISC-V systems have a timer attached to every hart. These timers can
7 * either be read from the "time" and "timeh" CSRs, and can use the SBI to
8 * setup events, or directly accessed using MMIO registers.
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>
Christoph Hellwig4f9bbce2019-10-28 13:10:37 +010016#include <linux/io-64-nonatomic-lo-hi.h>
Atish Patraf99fb602018-10-02 12:15:05 -070017#include <asm/smp.h>
Palmer Dabbelt62b01942018-08-04 10:23:19 +020018#include <asm/sbi.h>
19
Christoph Hellwig4f9bbce2019-10-28 13:10:37 +010020u64 __iomem *riscv_time_cmp;
21u64 __iomem *riscv_time_val;
22
23static inline void mmio_set_timer(u64 val)
24{
25 void __iomem *r;
26
27 r = riscv_time_cmp + cpuid_to_hartid_map(smp_processor_id());
28 writeq_relaxed(val, r);
29}
30
Palmer Dabbelt62b01942018-08-04 10:23:19 +020031static int riscv_clock_next_event(unsigned long delta,
32 struct clock_event_device *ce)
33{
Christoph Hellwiga4c37332019-10-28 13:10:32 +010034 csr_set(CSR_IE, IE_TIE);
Christoph Hellwig4f9bbce2019-10-28 13:10:37 +010035 if (IS_ENABLED(CONFIG_RISCV_SBI))
36 sbi_set_timer(get_cycles64() + delta);
37 else
38 mmio_set_timer(get_cycles64() + delta);
Palmer Dabbelt62b01942018-08-04 10:23:19 +020039 return 0;
40}
41
42static DEFINE_PER_CPU(struct clock_event_device, riscv_clock_event) = {
43 .name = "riscv_timer_clockevent",
44 .features = CLOCK_EVT_FEAT_ONESHOT,
45 .rating = 100,
46 .set_next_event = riscv_clock_next_event,
47};
48
49/*
50 * It is guaranteed that all the timers across all the harts are synchronized
51 * within one tick of each other, so while this could technically go
52 * backwards when hopping between CPUs, practically it won't happen.
53 */
54static unsigned long long riscv_clocksource_rdtime(struct clocksource *cs)
55{
56 return get_cycles64();
57}
58
Zong Li9d05c182019-12-23 16:46:14 +080059static u64 notrace riscv_sched_clock(void)
Anup Patel92e0d142018-12-04 15:59:52 +053060{
61 return get_cycles64();
62}
63
Atish Patra713203e2019-08-02 21:27:20 -070064static struct clocksource riscv_clocksource = {
Palmer Dabbelt62b01942018-08-04 10:23:19 +020065 .name = "riscv_clocksource",
66 .rating = 300,
Atish Patra32d0be02019-03-22 14:54:11 -070067 .mask = CLOCKSOURCE_MASK(64),
Palmer Dabbelt62b01942018-08-04 10:23:19 +020068 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
69 .read = riscv_clocksource_rdtime,
70};
71
72static int riscv_timer_starting_cpu(unsigned int cpu)
73{
74 struct clock_event_device *ce = per_cpu_ptr(&riscv_clock_event, cpu);
75
76 ce->cpumask = cpumask_of(cpu);
77 clockevents_config_and_register(ce, riscv_timebase, 100, 0x7fffffff);
78
Christoph Hellwiga4c37332019-10-28 13:10:32 +010079 csr_set(CSR_IE, IE_TIE);
Palmer Dabbelt62b01942018-08-04 10:23:19 +020080 return 0;
81}
82
83static int riscv_timer_dying_cpu(unsigned int cpu)
84{
Christoph Hellwiga4c37332019-10-28 13:10:32 +010085 csr_clear(CSR_IE, IE_TIE);
Palmer Dabbelt62b01942018-08-04 10:23:19 +020086 return 0;
87}
88
89/* called directly from the low-level interrupt handler */
90void riscv_timer_interrupt(void)
91{
92 struct clock_event_device *evdev = this_cpu_ptr(&riscv_clock_event);
93
Christoph Hellwiga4c37332019-10-28 13:10:32 +010094 csr_clear(CSR_IE, IE_TIE);
Palmer Dabbelt62b01942018-08-04 10:23:19 +020095 evdev->event_handler(evdev);
96}
97
98static int __init riscv_timer_init_dt(struct device_node *n)
99{
Atish Patraf99fb602018-10-02 12:15:05 -0700100 int cpuid, hartid, error;
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200101
Atish Patraf99fb602018-10-02 12:15:05 -0700102 hartid = riscv_of_processor_hartid(n);
Atish Patra26478b22019-02-13 12:18:10 -0800103 if (hartid < 0) {
104 pr_warn("Not valid hartid for node [%pOF] error = [%d]\n",
105 n, hartid);
106 return hartid;
107 }
108
Atish Patraf99fb602018-10-02 12:15:05 -0700109 cpuid = riscv_hartid_to_cpuid(hartid);
Atish Patra26478b22019-02-13 12:18:10 -0800110 if (cpuid < 0) {
111 pr_warn("Invalid cpuid for hartid [%d]\n", hartid);
112 return cpuid;
113 }
Atish Patraf99fb602018-10-02 12:15:05 -0700114
115 if (cpuid != smp_processor_id())
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200116 return 0;
117
Atish Patra26478b22019-02-13 12:18:10 -0800118 pr_info("%s: Registering clocksource cpuid [%d] hartid [%d]\n",
119 __func__, cpuid, hartid);
Atish Patra713203e2019-08-02 21:27:20 -0700120 error = clocksource_register_hz(&riscv_clocksource, riscv_timebase);
Atish Patra26478b22019-02-13 12:18:10 -0800121 if (error) {
122 pr_err("RISCV timer register failed [%d] for cpu = [%d]\n",
123 error, cpuid);
124 return error;
125 }
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200126
Atish Patra32d0be02019-03-22 14:54:11 -0700127 sched_clock_register(riscv_sched_clock, 64, riscv_timebase);
Anup Patel92e0d142018-12-04 15:59:52 +0530128
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200129 error = cpuhp_setup_state(CPUHP_AP_RISCV_TIMER_STARTING,
130 "clockevents/riscv/timer:starting",
131 riscv_timer_starting_cpu, riscv_timer_dying_cpu);
132 if (error)
Atish Patra26478b22019-02-13 12:18:10 -0800133 pr_err("cpu hp setup state failed for RISCV timer [%d]\n",
134 error);
Palmer Dabbelt62b01942018-08-04 10:23:19 +0200135 return error;
136}
137
138TIMER_OF_DECLARE(riscv_timer, "riscv", riscv_timer_init_dt);