blob: 77971fe4cc95ba2b8bd55667b892392b1aa7bdaf [file] [log] [blame]
Chris Zankel5a0015d2005-06-23 22:01:16 -07001/*
2 * arch/xtensa/kernel/time.c
3 *
4 * Timer and clock support.
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 *
10 * Copyright (C) 2005 Tensilica Inc.
11 *
12 * Chris Zankel <chris@zankel.net>
13 */
14
Max Filippov205ad542016-09-20 11:11:08 -070015#include <linux/clk.h>
16#include <linux/clk-provider.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070017#include <linux/errno.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040018#include <linux/sched.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070019#include <linux/time.h>
Johannes Weinerfcc8f0f2009-03-04 21:39:12 +010020#include <linux/clocksource.h>
Baruch Siach925f5532013-06-18 08:48:53 +030021#include <linux/clockchips.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070022#include <linux/interrupt.h>
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/irq.h>
26#include <linux/profile.h>
27#include <linux/delay.h>
Max Filippov2206d5d2012-11-04 00:29:12 +040028#include <linux/irqdomain.h>
Baruch Siache3f43292013-06-17 11:29:46 +030029#include <linux/sched_clock.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070030
31#include <asm/timex.h>
32#include <asm/platform.h>
33
Baruch Siache504c4b2013-06-17 11:29:43 +030034unsigned long ccount_freq; /* ccount Hz */
Max Filippov45ec8862014-01-19 20:00:48 +040035EXPORT_SYMBOL(ccount_freq);
Chris Zankel5a0015d2005-06-23 22:01:16 -070036
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010037static u64 ccount_read(struct clocksource *cs)
Johannes Weinerfcc8f0f2009-03-04 21:39:12 +010038{
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010039 return (u64)get_ccount();
Johannes Weinerfcc8f0f2009-03-04 21:39:12 +010040}
41
Stephen Boyd3ade4f82013-12-13 01:43:58 -080042static u64 notrace ccount_sched_clock_read(void)
Baruch Siache3f43292013-06-17 11:29:46 +030043{
44 return get_ccount();
45}
46
Johannes Weinerfcc8f0f2009-03-04 21:39:12 +010047static struct clocksource ccount_clocksource = {
48 .name = "ccount",
49 .rating = 200,
50 .read = ccount_read,
51 .mask = CLOCKSOURCE_MASK(32),
Baruch Siach0fb40402013-10-17 02:42:18 +040052 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Johannes Weinerfcc8f0f2009-03-04 21:39:12 +010053};
54
Max Filippov62351532013-10-17 02:42:19 +040055struct ccount_timer {
Baruch Siach925f5532013-06-18 08:48:53 +030056 struct clock_event_device evt;
57 int irq_enabled;
Max Filippov62351532013-10-17 02:42:19 +040058 char name[24];
Baruch Siach925f5532013-06-18 08:48:53 +030059};
60
61static int ccount_timer_set_next_event(unsigned long delta,
62 struct clock_event_device *dev)
63{
64 unsigned long flags, next;
65 int ret = 0;
66
67 local_irq_save(flags);
68 next = get_ccount() + delta;
69 set_linux_timer(next);
70 if (next - get_ccount() > delta)
71 ret = -ETIME;
72 local_irq_restore(flags);
73
74 return ret;
75}
76
Viresh Kumar8e40fc42015-07-16 16:56:33 +053077/*
78 * There is no way to disable the timer interrupt at the device level,
79 * only at the intenable register itself. Since enable_irq/disable_irq
80 * calls are nested, we need to make sure that these calls are
81 * balanced.
82 */
83static int ccount_timer_shutdown(struct clock_event_device *evt)
Baruch Siach925f5532013-06-18 08:48:53 +030084{
Max Filippov62351532013-10-17 02:42:19 +040085 struct ccount_timer *timer =
86 container_of(evt, struct ccount_timer, evt);
Baruch Siach925f5532013-06-18 08:48:53 +030087
Viresh Kumar8e40fc42015-07-16 16:56:33 +053088 if (timer->irq_enabled) {
Max Filippov4fe87132018-01-29 09:09:41 -080089 disable_irq_nosync(evt->irq);
Viresh Kumar8e40fc42015-07-16 16:56:33 +053090 timer->irq_enabled = 0;
Baruch Siach925f5532013-06-18 08:48:53 +030091 }
Viresh Kumar8e40fc42015-07-16 16:56:33 +053092 return 0;
93}
94
95static int ccount_timer_set_oneshot(struct clock_event_device *evt)
96{
97 struct ccount_timer *timer =
98 container_of(evt, struct ccount_timer, evt);
99
100 if (!timer->irq_enabled) {
101 enable_irq(evt->irq);
102 timer->irq_enabled = 1;
103 }
104 return 0;
Baruch Siach925f5532013-06-18 08:48:53 +0300105}
106
Max Filippov74d69ea2019-01-24 15:09:21 -0800107static DEFINE_PER_CPU(struct ccount_timer, ccount_timer) = {
108 .evt = {
109 .features = CLOCK_EVT_FEAT_ONESHOT,
110 .rating = 300,
111 .set_next_event = ccount_timer_set_next_event,
112 .set_state_shutdown = ccount_timer_shutdown,
113 .set_state_oneshot = ccount_timer_set_oneshot,
114 .tick_resume = ccount_timer_set_oneshot,
115 },
116};
117
118static irqreturn_t timer_interrupt(int irq, void *dev_id)
119{
120 struct clock_event_device *evt = &this_cpu_ptr(&ccount_timer)->evt;
121
122 set_linux_timer(get_linux_timer());
123 evt->event_handler(evt);
124
125 /* Allow platform to do something useful (Wdog). */
126 platform_heartbeat();
127
128 return IRQ_HANDLED;
129}
130
Max Filippov62351532013-10-17 02:42:19 +0400131void local_timer_setup(unsigned cpu)
132{
133 struct ccount_timer *timer = &per_cpu(ccount_timer, cpu);
134 struct clock_event_device *clockevent = &timer->evt;
135
136 timer->irq_enabled = 1;
Max Filippov62351532013-10-17 02:42:19 +0400137 snprintf(timer->name, sizeof(timer->name), "ccount_clockevent_%u", cpu);
Max Filippov74d69ea2019-01-24 15:09:21 -0800138 clockevent->name = timer->name;
Max Filippov62351532013-10-17 02:42:19 +0400139 clockevent->cpumask = cpumask_of(cpu);
140 clockevent->irq = irq_create_mapping(NULL, LINUX_TIMER_INT);
141 if (WARN(!clockevent->irq, "error: can't map timer irq"))
142 return;
143 clockevents_config_and_register(clockevent, ccount_freq,
144 0xf, 0xffffffff);
145}
146
Max Filippov205ad542016-09-20 11:11:08 -0700147#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
148#ifdef CONFIG_OF
149static void __init calibrate_ccount(void)
150{
151 struct device_node *cpu;
152 struct clk *clk;
153
154 cpu = of_find_compatible_node(NULL, NULL, "cdns,xtensa-cpu");
155 if (cpu) {
156 clk = of_clk_get(cpu, 0);
157 if (!IS_ERR(clk)) {
158 ccount_freq = clk_get_rate(clk);
159 return;
160 } else {
161 pr_warn("%s: CPU input clock not found\n",
162 __func__);
163 }
164 } else {
165 pr_warn("%s: CPU node not found in the device tree\n",
166 __func__);
167 }
168
169 platform_calibrate_ccount();
170}
171#else
172static inline void calibrate_ccount(void)
173{
174 platform_calibrate_ccount();
175}
176#endif
177#endif
178
Chris Zankel5a0015d2005-06-23 22:01:16 -0700179void __init time_init(void)
180{
afzal mohammed98060482020-03-04 06:11:11 +0530181 int irq;
182
Max Filippov205ad542016-09-20 11:11:08 -0700183 of_clk_init(NULL);
Chris Zankel288a60c2005-09-22 21:44:23 -0700184#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
Max Filippovd4eccaf2016-11-04 14:45:08 -0700185 pr_info("Calibrating CPU frequency ");
Max Filippov205ad542016-09-20 11:11:08 -0700186 calibrate_ccount();
Max Filippovd4eccaf2016-11-04 14:45:08 -0700187 pr_cont("%d.%02d MHz\n",
188 (int)ccount_freq / 1000000,
189 (int)(ccount_freq / 10000) % 100);
Baruch Siachfedc21d2013-07-15 07:03:38 +0300190#else
191 ccount_freq = CONFIG_XTENSA_CPU_CLOCK*1000000UL;
Chris Zankel5a0015d2005-06-23 22:01:16 -0700192#endif
Max Filippov205ad542016-09-20 11:11:08 -0700193 WARN(!ccount_freq,
194 "%s: CPU clock frequency is not set up correctly\n",
195 __func__);
Baruch Siach8d5e1d82013-07-15 08:24:22 +0300196 clocksource_register_hz(&ccount_clocksource, ccount_freq);
Max Filippov62351532013-10-17 02:42:19 +0400197 local_timer_setup(0);
afzal mohammed98060482020-03-04 06:11:11 +0530198 irq = this_cpu_ptr(&ccount_timer)->evt.irq;
199 if (request_irq(irq, timer_interrupt, IRQF_TIMER, "timer", NULL))
200 pr_err("Failed to request irq %d (timer)\n", irq);
Stephen Boyd3ade4f82013-12-13 01:43:58 -0800201 sched_clock_register(ccount_sched_clock_read, 32, ccount_freq);
Daniel Lezcanoba5d08c2017-05-26 17:40:46 +0200202 timer_probe();
Chris Zankel5a0015d2005-06-23 22:01:16 -0700203}
204
Chris Zankel5a0015d2005-06-23 22:01:16 -0700205#ifndef CONFIG_GENERIC_CALIBRATE_DELAY
Paul Gortmaker6cb4c152013-06-18 17:54:49 -0400206void calibrate_delay(void)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700207{
Baruch Siach8d5e1d82013-07-15 08:24:22 +0300208 loops_per_jiffy = ccount_freq / HZ;
Max Filippovd4eccaf2016-11-04 14:45:08 -0700209 pr_info("Calibrating delay loop (skipped)... %lu.%02lu BogoMIPS preset\n",
210 loops_per_jiffy / (1000000 / HZ),
211 (loops_per_jiffy / (10000 / HZ)) % 100);
Chris Zankel5a0015d2005-06-23 22:01:16 -0700212}
213#endif