1 // SPDX-License-Identifier: GPL-2.0
3 * Common time service routines for LoongArch machines.
5 * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
7 #include <linux/clockchips.h>
8 #include <linux/delay.h>
9 #include <linux/export.h>
10 #include <linux/init.h>
11 #include <linux/interrupt.h>
12 #include <linux/kernel.h>
13 #include <linux/sched_clock.h>
14 #include <linux/spinlock.h>
16 #include <asm/cpu-features.h>
17 #include <asm/loongarch.h>
18 #include <asm/paravirt.h>
22 EXPORT_SYMBOL(cpu_clock_freq);
24 EXPORT_SYMBOL(const_clock_freq);
26 static DEFINE_RAW_SPINLOCK(state_lock);
27 static DEFINE_PER_CPU(struct clock_event_device, constant_clockevent_device);
29 static void constant_event_handler(struct clock_event_device *dev)
33 static irqreturn_t constant_timer_interrupt(int irq, void *data)
35 int cpu = smp_processor_id();
36 struct clock_event_device *cd;
38 /* Clear Timer Interrupt */
39 write_csr_tintclear(CSR_TINTCLR_TI);
40 cd = &per_cpu(constant_clockevent_device, cpu);
41 cd->event_handler(cd);
46 static int constant_set_state_oneshot(struct clock_event_device *evt)
48 unsigned long timer_config;
50 raw_spin_lock(&state_lock);
52 timer_config = csr_read64(LOONGARCH_CSR_TCFG);
53 timer_config |= CSR_TCFG_EN;
54 timer_config &= ~CSR_TCFG_PERIOD;
55 csr_write64(timer_config, LOONGARCH_CSR_TCFG);
57 raw_spin_unlock(&state_lock);
62 static int constant_set_state_periodic(struct clock_event_device *evt)
65 unsigned long timer_config;
67 raw_spin_lock(&state_lock);
69 period = const_clock_freq / HZ;
70 timer_config = period & CSR_TCFG_VAL;
71 timer_config |= (CSR_TCFG_PERIOD | CSR_TCFG_EN);
72 csr_write64(timer_config, LOONGARCH_CSR_TCFG);
74 raw_spin_unlock(&state_lock);
79 static int constant_set_state_shutdown(struct clock_event_device *evt)
81 unsigned long timer_config;
83 raw_spin_lock(&state_lock);
85 timer_config = csr_read64(LOONGARCH_CSR_TCFG);
86 timer_config &= ~CSR_TCFG_EN;
87 csr_write64(timer_config, LOONGARCH_CSR_TCFG);
89 raw_spin_unlock(&state_lock);
94 static int constant_timer_next_event(unsigned long delta, struct clock_event_device *evt)
96 unsigned long timer_config;
98 delta &= CSR_TCFG_VAL;
99 timer_config = delta | CSR_TCFG_EN;
100 csr_write64(timer_config, LOONGARCH_CSR_TCFG);
105 static unsigned long __init get_loops_per_jiffy(void)
107 unsigned long lpj = (unsigned long)const_clock_freq;
114 static long init_offset __nosavedata;
116 void save_counter(void)
118 init_offset = drdtime();
121 void sync_counter(void)
123 /* Ensure counter begin at 0 */
124 csr_write64(init_offset, LOONGARCH_CSR_CNTC);
127 int constant_clockevent_init(void)
129 unsigned int cpu = smp_processor_id();
130 #ifdef CONFIG_PREEMPT_RT
131 unsigned long min_delta = 100;
133 unsigned long min_delta = 1000;
135 unsigned long max_delta = GENMASK_ULL(boot_cpu_data.timerbits, 0);
136 struct clock_event_device *cd;
137 static int irq = 0, timer_irq_installed = 0;
139 if (!timer_irq_installed) {
140 irq = get_percpu_irq(INT_TI);
142 pr_err("Failed to map irq %d (timer)\n", irq);
145 cd = &per_cpu(constant_clockevent_device, cpu);
147 cd->name = "Constant";
148 cd->features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_PERCPU;
152 cd->cpumask = cpumask_of(cpu);
153 cd->set_state_oneshot = constant_set_state_oneshot;
154 cd->set_state_oneshot_stopped = constant_set_state_shutdown;
155 cd->set_state_periodic = constant_set_state_periodic;
156 cd->set_state_shutdown = constant_set_state_shutdown;
157 cd->set_next_event = constant_timer_next_event;
158 cd->event_handler = constant_event_handler;
160 clockevents_config_and_register(cd, const_clock_freq, min_delta, max_delta);
162 if (timer_irq_installed)
165 timer_irq_installed = 1;
169 if (request_irq(irq, constant_timer_interrupt, IRQF_PERCPU | IRQF_TIMER, "timer", NULL))
170 pr_err("Failed to request irq %d (timer)\n", irq);
172 lpj_fine = get_loops_per_jiffy();
173 pr_info("Constant clock event device register\n");
178 static u64 read_const_counter(struct clocksource *clk)
183 static noinstr u64 sched_clock_read(void)
188 static struct clocksource clocksource_const = {
191 .read = read_const_counter,
192 .mask = CLOCKSOURCE_MASK(64),
193 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
194 .vdso_clock_mode = VDSO_CLOCKMODE_CPU,
197 int __init constant_clocksource_init(void)
200 unsigned long freq = const_clock_freq;
202 res = clocksource_register_hz(&clocksource_const, freq);
204 sched_clock_register(sched_clock_read, 64, freq);
206 pr_info("Constant clock source device register\n");
211 void __init time_init(void)
214 const_clock_freq = cpu_clock_freq;
216 const_clock_freq = calc_const_freq();
218 init_offset = -(drdtime() - csr_read64(LOONGARCH_CSR_CNTC));
220 constant_clockevent_init();
221 constant_clocksource_init();