Merge tag 'pull-work.unaligned' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / arch / loongarch / kernel / time.c
CommitLineData
628c3bb4
HC
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Common time service routines for LoongArch machines.
4 *
5 * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
6 */
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>
15
16#include <asm/cpu-features.h>
17#include <asm/loongarch.h>
03779999 18#include <asm/paravirt.h>
628c3bb4
HC
19#include <asm/time.h>
20
21u64 cpu_clock_freq;
22EXPORT_SYMBOL(cpu_clock_freq);
23u64 const_clock_freq;
24EXPORT_SYMBOL(const_clock_freq);
25
26static DEFINE_RAW_SPINLOCK(state_lock);
27static DEFINE_PER_CPU(struct clock_event_device, constant_clockevent_device);
28
29static void constant_event_handler(struct clock_event_device *dev)
30{
31}
32
c718a0ba 33static irqreturn_t constant_timer_interrupt(int irq, void *data)
628c3bb4
HC
34{
35 int cpu = smp_processor_id();
36 struct clock_event_device *cd;
37
38 /* Clear Timer Interrupt */
39 write_csr_tintclear(CSR_TINTCLR_TI);
40 cd = &per_cpu(constant_clockevent_device, cpu);
41 cd->event_handler(cd);
42
43 return IRQ_HANDLED;
44}
45
46static int constant_set_state_oneshot(struct clock_event_device *evt)
47{
48 unsigned long timer_config;
49
50 raw_spin_lock(&state_lock);
51
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);
56
57 raw_spin_unlock(&state_lock);
58
59 return 0;
60}
61
d43f37b7 62static int constant_set_state_periodic(struct clock_event_device *evt)
628c3bb4 63{
d43f37b7 64 unsigned long period;
628c3bb4
HC
65 unsigned long timer_config;
66
67 raw_spin_lock(&state_lock);
68
d43f37b7
BM
69 period = const_clock_freq / HZ;
70 timer_config = period & CSR_TCFG_VAL;
71 timer_config |= (CSR_TCFG_PERIOD | CSR_TCFG_EN);
628c3bb4
HC
72 csr_write64(timer_config, LOONGARCH_CSR_TCFG);
73
74 raw_spin_unlock(&state_lock);
75
76 return 0;
77}
78
d43f37b7 79static int constant_set_state_shutdown(struct clock_event_device *evt)
628c3bb4 80{
628c3bb4
HC
81 unsigned long timer_config;
82
83 raw_spin_lock(&state_lock);
84
d43f37b7
BM
85 timer_config = csr_read64(LOONGARCH_CSR_TCFG);
86 timer_config &= ~CSR_TCFG_EN;
628c3bb4
HC
87 csr_write64(timer_config, LOONGARCH_CSR_TCFG);
88
89 raw_spin_unlock(&state_lock);
90
91 return 0;
92}
93
628c3bb4
HC
94static int constant_timer_next_event(unsigned long delta, struct clock_event_device *evt)
95{
96 unsigned long timer_config;
97
98 delta &= CSR_TCFG_VAL;
99 timer_config = delta | CSR_TCFG_EN;
100 csr_write64(timer_config, LOONGARCH_CSR_TCFG);
101
102 return 0;
103}
104
105static unsigned long __init get_loops_per_jiffy(void)
106{
107 unsigned long lpj = (unsigned long)const_clock_freq;
108
109 do_div(lpj, HZ);
110
111 return lpj;
112}
113
366bb35a
HC
114static long init_offset __nosavedata;
115
116void save_counter(void)
117{
118 init_offset = drdtime();
119}
628c3bb4
HC
120
121void sync_counter(void)
122{
123 /* Ensure counter begin at 0 */
366bb35a 124 csr_write64(init_offset, LOONGARCH_CSR_CNTC);
628c3bb4
HC
125}
126
127int constant_clockevent_init(void)
128{
628c3bb4
HC
129 unsigned int cpu = smp_processor_id();
130 unsigned long min_delta = 0x600;
131 unsigned long max_delta = (1UL << 48) - 1;
132 struct clock_event_device *cd;
bb7a78e3 133 static int irq = 0, timer_irq_installed = 0;
628c3bb4 134
bb7a78e3 135 if (!timer_irq_installed) {
316863cb 136 irq = get_percpu_irq(INT_TI);
bb7a78e3
TY
137 if (irq < 0)
138 pr_err("Failed to map irq %d (timer)\n", irq);
139 }
628c3bb4
HC
140
141 cd = &per_cpu(constant_clockevent_device, cpu);
142
143 cd->name = "Constant";
144 cd->features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_PERCPU;
145
146 cd->irq = irq;
147 cd->rating = 320;
148 cd->cpumask = cpumask_of(cpu);
149 cd->set_state_oneshot = constant_set_state_oneshot;
d43f37b7 150 cd->set_state_oneshot_stopped = constant_set_state_shutdown;
628c3bb4
HC
151 cd->set_state_periodic = constant_set_state_periodic;
152 cd->set_state_shutdown = constant_set_state_shutdown;
153 cd->set_next_event = constant_timer_next_event;
154 cd->event_handler = constant_event_handler;
155
156 clockevents_config_and_register(cd, const_clock_freq, min_delta, max_delta);
157
158 if (timer_irq_installed)
159 return 0;
160
161 timer_irq_installed = 1;
162
163 sync_counter();
164
165 if (request_irq(irq, constant_timer_interrupt, IRQF_PERCPU | IRQF_TIMER, "timer", NULL))
166 pr_err("Failed to request irq %d (timer)\n", irq);
167
168 lpj_fine = get_loops_per_jiffy();
169 pr_info("Constant clock event device register\n");
170
171 return 0;
172}
173
174static u64 read_const_counter(struct clocksource *clk)
175{
176 return drdtime();
177}
178
6b10fef0 179static noinstr u64 sched_clock_read(void)
628c3bb4 180{
6b10fef0 181 return drdtime();
628c3bb4
HC
182}
183
184static struct clocksource clocksource_const = {
185 .name = "Constant",
186 .rating = 400,
187 .read = read_const_counter,
188 .mask = CLOCKSOURCE_MASK(64),
189 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
c6b99bed 190 .vdso_clock_mode = VDSO_CLOCKMODE_CPU,
628c3bb4
HC
191};
192
193int __init constant_clocksource_init(void)
194{
195 int res;
196 unsigned long freq = const_clock_freq;
197
198 res = clocksource_register_hz(&clocksource_const, freq);
199
6b10fef0 200 sched_clock_register(sched_clock_read, 64, freq);
628c3bb4
HC
201
202 pr_info("Constant clock source device register\n");
203
204 return res;
205}
206
207void __init time_init(void)
208{
209 if (!cpu_has_cpucfg)
210 const_clock_freq = cpu_clock_freq;
211 else
212 const_clock_freq = calc_const_freq();
213
366bb35a 214 init_offset = -(drdtime() - csr_read64(LOONGARCH_CSR_CNTC));
628c3bb4
HC
215
216 constant_clockevent_init();
217 constant_clocksource_init();
03779999 218 pv_time_init();
628c3bb4 219}