blob: 5e3e96d3d1b98cd1452aef80b934b6ab9ff57f08 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Changhwan Youn30d8bea2011-03-11 10:39:57 +09002/* linux/arch/arm/mach-exynos4/mct.c
3 *
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
6 *
Krzysztof Kozlowski4ad35342020-01-04 16:20:58 +01007 * Exynos4 MCT(Multi-Core Timer) support
Changhwan Youn30d8bea2011-03-11 10:39:57 +09008*/
9
Changhwan Youn30d8bea2011-03-11 10:39:57 +090010#include <linux/interrupt.h>
11#include <linux/irq.h>
12#include <linux/err.h>
13#include <linux/clk.h>
14#include <linux/clockchips.h>
Stephen Boydee98d272013-02-15 16:40:51 -080015#include <linux/cpu.h>
Changhwan Youn30d8bea2011-03-11 10:39:57 +090016#include <linux/delay.h>
17#include <linux/percpu.h>
Kukjin Kim2edb36c2012-11-15 15:48:56 +090018#include <linux/of.h>
Thomas Abraham36ba5d52013-03-09 16:01:52 +090019#include <linux/of_irq.h>
20#include <linux/of_address.h>
Thomas Abraham9fbf0c82013-03-09 16:10:03 +090021#include <linux/clocksource.h>
Vincent Guittot93bfb762014-05-02 22:27:01 +090022#include <linux/sched_clock.h>
Changhwan Youn30d8bea2011-03-11 10:39:57 +090023
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090024#define EXYNOS4_MCTREG(x) (x)
25#define EXYNOS4_MCT_G_CNT_L EXYNOS4_MCTREG(0x100)
26#define EXYNOS4_MCT_G_CNT_U EXYNOS4_MCTREG(0x104)
27#define EXYNOS4_MCT_G_CNT_WSTAT EXYNOS4_MCTREG(0x110)
28#define EXYNOS4_MCT_G_COMP0_L EXYNOS4_MCTREG(0x200)
29#define EXYNOS4_MCT_G_COMP0_U EXYNOS4_MCTREG(0x204)
30#define EXYNOS4_MCT_G_COMP0_ADD_INCR EXYNOS4_MCTREG(0x208)
31#define EXYNOS4_MCT_G_TCON EXYNOS4_MCTREG(0x240)
32#define EXYNOS4_MCT_G_INT_CSTAT EXYNOS4_MCTREG(0x244)
33#define EXYNOS4_MCT_G_INT_ENB EXYNOS4_MCTREG(0x248)
34#define EXYNOS4_MCT_G_WSTAT EXYNOS4_MCTREG(0x24C)
35#define _EXYNOS4_MCT_L_BASE EXYNOS4_MCTREG(0x300)
36#define EXYNOS4_MCT_L_BASE(x) (_EXYNOS4_MCT_L_BASE + (0x100 * x))
37#define EXYNOS4_MCT_L_MASK (0xffffff00)
38
39#define MCT_L_TCNTB_OFFSET (0x00)
40#define MCT_L_ICNTB_OFFSET (0x08)
41#define MCT_L_TCON_OFFSET (0x20)
42#define MCT_L_INT_CSTAT_OFFSET (0x30)
43#define MCT_L_INT_ENB_OFFSET (0x34)
44#define MCT_L_WSTAT_OFFSET (0x40)
45#define MCT_G_TCON_START (1 << 8)
46#define MCT_G_TCON_COMP0_AUTO_INC (1 << 1)
47#define MCT_G_TCON_COMP0_ENABLE (1 << 0)
48#define MCT_L_TCON_INTERVAL_MODE (1 << 2)
49#define MCT_L_TCON_INT_START (1 << 1)
50#define MCT_L_TCON_TIMER_START (1 << 0)
51
Changhwan Youn4d2e4d72012-03-09 15:09:21 -080052#define TICK_BASE_CNT 1
53
Will Deaconae460fd2021-06-08 16:43:40 +010054#ifdef CONFIG_ARM
55/* Use values higher than ARM arch timer. See 6282edb72bed. */
56#define MCT_CLKSOURCE_RATING 450
57#define MCT_CLKEVENTS_RATING 500
58#else
59#define MCT_CLKSOURCE_RATING 350
60#define MCT_CLKEVENTS_RATING 350
61#endif
62
Changhwan Youn3a062282011-10-04 17:02:58 +090063enum {
64 MCT_INT_SPI,
65 MCT_INT_PPI
66};
67
Thomas Abrahamc371dc62013-03-09 16:01:50 +090068enum {
69 MCT_G0_IRQ,
70 MCT_G1_IRQ,
71 MCT_G2_IRQ,
72 MCT_G3_IRQ,
73 MCT_L0_IRQ,
74 MCT_L1_IRQ,
75 MCT_L2_IRQ,
76 MCT_L3_IRQ,
Chander Kashyap6c16ded2013-12-02 07:48:23 +090077 MCT_L4_IRQ,
78 MCT_L5_IRQ,
79 MCT_L6_IRQ,
80 MCT_L7_IRQ,
Thomas Abrahamc371dc62013-03-09 16:01:50 +090081 MCT_NR_IRQS,
82};
83
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090084static void __iomem *reg_base;
Changhwan Youn30d8bea2011-03-11 10:39:57 +090085static unsigned long clk_rate;
Changhwan Youn3a062282011-10-04 17:02:58 +090086static unsigned int mct_int_type;
Thomas Abrahamc371dc62013-03-09 16:01:50 +090087static int mct_irqs[MCT_NR_IRQS];
Changhwan Youn30d8bea2011-03-11 10:39:57 +090088
89struct mct_clock_event_device {
Stephen Boydee98d272013-02-15 16:40:51 -080090 struct clock_event_device evt;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090091 unsigned long base;
Changhwan Younc8987472011-10-04 17:09:26 +090092 char name[10];
Changhwan Youn30d8bea2011-03-11 10:39:57 +090093};
94
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090095static void exynos4_mct_write(unsigned int value, unsigned long offset)
Changhwan Youn30d8bea2011-03-11 10:39:57 +090096{
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090097 unsigned long stat_addr;
Changhwan Youn30d8bea2011-03-11 10:39:57 +090098 u32 mask;
99 u32 i;
100
Doug Andersonfdb06f62014-07-05 06:43:20 +0900101 writel_relaxed(value, reg_base + offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900102
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900103 if (likely(offset >= EXYNOS4_MCT_L_BASE(0))) {
Tobias Jakobi8c38d282014-10-22 03:37:08 +0200104 stat_addr = (offset & EXYNOS4_MCT_L_MASK) + MCT_L_WSTAT_OFFSET;
105 switch (offset & ~EXYNOS4_MCT_L_MASK) {
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900106 case MCT_L_TCON_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900107 mask = 1 << 3; /* L_TCON write status */
108 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900109 case MCT_L_ICNTB_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900110 mask = 1 << 1; /* L_ICNTB write status */
111 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900112 case MCT_L_TCNTB_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900113 mask = 1 << 0; /* L_TCNTB write status */
114 break;
115 default:
116 return;
117 }
118 } else {
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900119 switch (offset) {
120 case EXYNOS4_MCT_G_TCON:
Changhwan Younc8987472011-10-04 17:09:26 +0900121 stat_addr = EXYNOS4_MCT_G_WSTAT;
122 mask = 1 << 16; /* G_TCON write status */
123 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900124 case EXYNOS4_MCT_G_COMP0_L:
Changhwan Younc8987472011-10-04 17:09:26 +0900125 stat_addr = EXYNOS4_MCT_G_WSTAT;
126 mask = 1 << 0; /* G_COMP0_L write status */
127 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900128 case EXYNOS4_MCT_G_COMP0_U:
Changhwan Younc8987472011-10-04 17:09:26 +0900129 stat_addr = EXYNOS4_MCT_G_WSTAT;
130 mask = 1 << 1; /* G_COMP0_U write status */
131 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900132 case EXYNOS4_MCT_G_COMP0_ADD_INCR:
Changhwan Younc8987472011-10-04 17:09:26 +0900133 stat_addr = EXYNOS4_MCT_G_WSTAT;
134 mask = 1 << 2; /* G_COMP0_ADD_INCR w status */
135 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900136 case EXYNOS4_MCT_G_CNT_L:
Changhwan Younc8987472011-10-04 17:09:26 +0900137 stat_addr = EXYNOS4_MCT_G_CNT_WSTAT;
138 mask = 1 << 0; /* G_CNT_L write status */
139 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900140 case EXYNOS4_MCT_G_CNT_U:
Changhwan Younc8987472011-10-04 17:09:26 +0900141 stat_addr = EXYNOS4_MCT_G_CNT_WSTAT;
142 mask = 1 << 1; /* G_CNT_U write status */
143 break;
144 default:
145 return;
146 }
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900147 }
148
149 /* Wait maximum 1 ms until written values are applied */
150 for (i = 0; i < loops_per_jiffy / 1000 * HZ; i++)
Doug Andersonfdb06f62014-07-05 06:43:20 +0900151 if (readl_relaxed(reg_base + stat_addr) & mask) {
152 writel_relaxed(mask, reg_base + stat_addr);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900153 return;
154 }
155
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900156 panic("MCT hangs after writing %d (offset:0x%lx)\n", value, offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900157}
158
159/* Clocksource handling */
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900160static void exynos4_mct_frc_start(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900161{
162 u32 reg;
163
Doug Andersonfdb06f62014-07-05 06:43:20 +0900164 reg = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900165 reg |= MCT_G_TCON_START;
166 exynos4_mct_write(reg, EXYNOS4_MCT_G_TCON);
167}
168
Doug Anderson3252a642014-07-05 06:43:26 +0900169/**
170 * exynos4_read_count_64 - Read all 64-bits of the global counter
171 *
172 * This will read all 64-bits of the global counter taking care to make sure
173 * that the upper and lower half match. Note that reading the MCT can be quite
174 * slow (hundreds of nanoseconds) so you should use the 32-bit (lower half
175 * only) version when possible.
176 *
177 * Returns the number of cycles in the global counter.
178 */
179static u64 exynos4_read_count_64(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900180{
181 unsigned int lo, hi;
Doug Andersonfdb06f62014-07-05 06:43:20 +0900182 u32 hi2 = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_U);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900183
184 do {
185 hi = hi2;
Doug Andersonfdb06f62014-07-05 06:43:20 +0900186 lo = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_L);
187 hi2 = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_U);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900188 } while (hi != hi2);
189
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100190 return ((u64)hi << 32) | lo;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900191}
192
Doug Anderson3252a642014-07-05 06:43:26 +0900193/**
194 * exynos4_read_count_32 - Read the lower 32-bits of the global counter
195 *
196 * This will read just the lower 32-bits of the global counter. This is marked
197 * as notrace so it can be used by the scheduler clock.
198 *
199 * Returns the number of cycles in the global counter (lower 32 bits).
200 */
201static u32 notrace exynos4_read_count_32(void)
202{
203 return readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_L);
204}
205
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100206static u64 exynos4_frc_read(struct clocksource *cs)
Doug Anderson89e6a132014-07-05 06:38:55 +0900207{
Doug Anderson3252a642014-07-05 06:43:26 +0900208 return exynos4_read_count_32();
Doug Anderson89e6a132014-07-05 06:38:55 +0900209}
210
Changhwan Younaa421c12011-09-02 14:10:52 +0900211static void exynos4_frc_resume(struct clocksource *cs)
212{
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900213 exynos4_mct_frc_start();
Changhwan Younaa421c12011-09-02 14:10:52 +0900214}
215
Krzysztof Kozlowski6c10bf62015-04-30 13:42:52 +0900216static struct clocksource mct_frc = {
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900217 .name = "mct-frc",
Will Deaconae460fd2021-06-08 16:43:40 +0100218 .rating = MCT_CLKSOURCE_RATING,
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900219 .read = exynos4_frc_read,
Doug Anderson3252a642014-07-05 06:43:26 +0900220 .mask = CLOCKSOURCE_MASK(32),
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900221 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Changhwan Younaa421c12011-09-02 14:10:52 +0900222 .resume = exynos4_frc_resume,
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900223};
224
Vincent Guittot93bfb762014-05-02 22:27:01 +0900225static u64 notrace exynos4_read_sched_clock(void)
226{
Doug Anderson3252a642014-07-05 06:43:26 +0900227 return exynos4_read_count_32();
Vincent Guittot93bfb762014-05-02 22:27:01 +0900228}
229
Chanwoo Choif1a4c1f2016-08-24 22:49:05 +0900230#if defined(CONFIG_ARM)
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900231static struct delay_timer exynos4_delay_timer;
232
233static cycles_t exynos4_read_current_timer(void)
234{
Doug Anderson3252a642014-07-05 06:43:26 +0900235 BUILD_BUG_ON_MSG(sizeof(cycles_t) != sizeof(u32),
236 "cycles_t needs to move to 32-bit for ARM64 usage");
237 return exynos4_read_count_32();
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900238}
Chanwoo Choif1a4c1f2016-08-24 22:49:05 +0900239#endif
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900240
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200241static int __init exynos4_clocksource_init(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900242{
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900243 exynos4_mct_frc_start();
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900244
Chanwoo Choif1a4c1f2016-08-24 22:49:05 +0900245#if defined(CONFIG_ARM)
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900246 exynos4_delay_timer.read_current_timer = &exynos4_read_current_timer;
247 exynos4_delay_timer.freq = clk_rate;
248 register_current_timer_delay(&exynos4_delay_timer);
Chanwoo Choif1a4c1f2016-08-24 22:49:05 +0900249#endif
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900250
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900251 if (clocksource_register_hz(&mct_frc, clk_rate))
252 panic("%s: can't register clocksource\n", mct_frc.name);
Vincent Guittot93bfb762014-05-02 22:27:01 +0900253
Doug Anderson3252a642014-07-05 06:43:26 +0900254 sched_clock_register(exynos4_read_sched_clock, 32, clk_rate);
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200255
256 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900257}
258
259static void exynos4_mct_comp0_stop(void)
260{
261 unsigned int tcon;
262
Doug Andersonfdb06f62014-07-05 06:43:20 +0900263 tcon = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900264 tcon &= ~(MCT_G_TCON_COMP0_ENABLE | MCT_G_TCON_COMP0_AUTO_INC);
265
266 exynos4_mct_write(tcon, EXYNOS4_MCT_G_TCON);
267 exynos4_mct_write(0, EXYNOS4_MCT_G_INT_ENB);
268}
269
Viresh Kumar79e436d2015-06-18 16:24:20 +0530270static void exynos4_mct_comp0_start(bool periodic, unsigned long cycles)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900271{
272 unsigned int tcon;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100273 u64 comp_cycle;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900274
Doug Andersonfdb06f62014-07-05 06:43:20 +0900275 tcon = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900276
Viresh Kumar79e436d2015-06-18 16:24:20 +0530277 if (periodic) {
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900278 tcon |= MCT_G_TCON_COMP0_AUTO_INC;
279 exynos4_mct_write(cycles, EXYNOS4_MCT_G_COMP0_ADD_INCR);
280 }
281
Doug Anderson3252a642014-07-05 06:43:26 +0900282 comp_cycle = exynos4_read_count_64() + cycles;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900283 exynos4_mct_write((u32)comp_cycle, EXYNOS4_MCT_G_COMP0_L);
284 exynos4_mct_write((u32)(comp_cycle >> 32), EXYNOS4_MCT_G_COMP0_U);
285
286 exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_ENB);
287
288 tcon |= MCT_G_TCON_COMP0_ENABLE;
289 exynos4_mct_write(tcon , EXYNOS4_MCT_G_TCON);
290}
291
292static int exynos4_comp_set_next_event(unsigned long cycles,
293 struct clock_event_device *evt)
294{
Viresh Kumar79e436d2015-06-18 16:24:20 +0530295 exynos4_mct_comp0_start(false, cycles);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900296
297 return 0;
298}
299
Viresh Kumar79e436d2015-06-18 16:24:20 +0530300static int mct_set_state_shutdown(struct clock_event_device *evt)
301{
302 exynos4_mct_comp0_stop();
303 return 0;
304}
305
306static int mct_set_state_periodic(struct clock_event_device *evt)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900307{
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800308 unsigned long cycles_per_jiffy;
Viresh Kumar79e436d2015-06-18 16:24:20 +0530309
310 cycles_per_jiffy = (((unsigned long long)NSEC_PER_SEC / HZ * evt->mult)
311 >> evt->shift);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900312 exynos4_mct_comp0_stop();
Viresh Kumar79e436d2015-06-18 16:24:20 +0530313 exynos4_mct_comp0_start(true, cycles_per_jiffy);
314 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900315}
316
317static struct clock_event_device mct_comp_device = {
Viresh Kumar79e436d2015-06-18 16:24:20 +0530318 .name = "mct-comp",
319 .features = CLOCK_EVT_FEAT_PERIODIC |
320 CLOCK_EVT_FEAT_ONESHOT,
321 .rating = 250,
322 .set_next_event = exynos4_comp_set_next_event,
323 .set_state_periodic = mct_set_state_periodic,
324 .set_state_shutdown = mct_set_state_shutdown,
325 .set_state_oneshot = mct_set_state_shutdown,
Viresh Kumar07f101d2015-12-23 16:59:14 +0530326 .set_state_oneshot_stopped = mct_set_state_shutdown,
Viresh Kumar79e436d2015-06-18 16:24:20 +0530327 .tick_resume = mct_set_state_shutdown,
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900328};
329
330static irqreturn_t exynos4_mct_comp_isr(int irq, void *dev_id)
331{
332 struct clock_event_device *evt = dev_id;
333
334 exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_CSTAT);
335
336 evt->event_handler(evt);
337
338 return IRQ_HANDLED;
339}
340
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200341static int exynos4_clockevent_init(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900342{
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900343 mct_comp_device.cpumask = cpumask_of(0);
Shawn Guo838a2ae2013-01-12 11:50:05 +0000344 clockevents_config_and_register(&mct_comp_device, clk_rate,
345 0xf, 0xffffffff);
afzal mohammedcc2550b2020-02-27 16:29:02 +0530346 if (request_irq(mct_irqs[MCT_G0_IRQ], exynos4_mct_comp_isr,
347 IRQF_TIMER | IRQF_IRQPOLL, "mct_comp_irq",
348 &mct_comp_device))
349 pr_err("%s: request_irq() failed\n", "mct_comp_irq");
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200350
351 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900352}
353
Kukjin Kim991a6c72011-12-08 10:04:49 +0900354static DEFINE_PER_CPU(struct mct_clock_event_device, percpu_mct_tick);
355
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900356/* Clock event handling */
357static void exynos4_mct_tick_stop(struct mct_clock_event_device *mevt)
358{
359 unsigned long tmp;
360 unsigned long mask = MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900361 unsigned long offset = mevt->base + MCT_L_TCON_OFFSET;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900362
Doug Andersonfdb06f62014-07-05 06:43:20 +0900363 tmp = readl_relaxed(reg_base + offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900364 if (tmp & mask) {
365 tmp &= ~mask;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900366 exynos4_mct_write(tmp, offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900367 }
368}
369
370static void exynos4_mct_tick_start(unsigned long cycles,
371 struct mct_clock_event_device *mevt)
372{
373 unsigned long tmp;
374
375 exynos4_mct_tick_stop(mevt);
376
377 tmp = (1 << 31) | cycles; /* MCT_L_UPDATE_ICNTB */
378
379 /* update interrupt count buffer */
380 exynos4_mct_write(tmp, mevt->base + MCT_L_ICNTB_OFFSET);
381
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300382 /* enable MCT tick interrupt */
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900383 exynos4_mct_write(0x1, mevt->base + MCT_L_INT_ENB_OFFSET);
384
Doug Andersonfdb06f62014-07-05 06:43:20 +0900385 tmp = readl_relaxed(reg_base + mevt->base + MCT_L_TCON_OFFSET);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900386 tmp |= MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START |
387 MCT_L_TCON_INTERVAL_MODE;
388 exynos4_mct_write(tmp, mevt->base + MCT_L_TCON_OFFSET);
389}
390
Stuart Menefya5719a42019-02-10 22:51:13 +0000391static void exynos4_mct_tick_clear(struct mct_clock_event_device *mevt)
392{
393 /* Clear the MCT tick interrupt */
394 if (readl_relaxed(reg_base + mevt->base + MCT_L_INT_CSTAT_OFFSET) & 1)
395 exynos4_mct_write(0x1, mevt->base + MCT_L_INT_CSTAT_OFFSET);
396}
397
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900398static int exynos4_tick_set_next_event(unsigned long cycles,
399 struct clock_event_device *evt)
400{
Alexey Klimov31f79872015-09-04 02:49:58 +0300401 struct mct_clock_event_device *mevt;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900402
Alexey Klimov31f79872015-09-04 02:49:58 +0300403 mevt = container_of(evt, struct mct_clock_event_device, evt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900404 exynos4_mct_tick_start(cycles, mevt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900405 return 0;
406}
407
Viresh Kumar79e436d2015-06-18 16:24:20 +0530408static int set_state_shutdown(struct clock_event_device *evt)
409{
Alexey Klimov31f79872015-09-04 02:49:58 +0300410 struct mct_clock_event_device *mevt;
411
412 mevt = container_of(evt, struct mct_clock_event_device, evt);
413 exynos4_mct_tick_stop(mevt);
Stuart Menefyd2f276c2019-02-10 22:51:14 +0000414 exynos4_mct_tick_clear(mevt);
Viresh Kumar79e436d2015-06-18 16:24:20 +0530415 return 0;
416}
417
418static int set_state_periodic(struct clock_event_device *evt)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900419{
Alexey Klimov31f79872015-09-04 02:49:58 +0300420 struct mct_clock_event_device *mevt;
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800421 unsigned long cycles_per_jiffy;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900422
Alexey Klimov31f79872015-09-04 02:49:58 +0300423 mevt = container_of(evt, struct mct_clock_event_device, evt);
Viresh Kumar79e436d2015-06-18 16:24:20 +0530424 cycles_per_jiffy = (((unsigned long long)NSEC_PER_SEC / HZ * evt->mult)
425 >> evt->shift);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900426 exynos4_mct_tick_stop(mevt);
Viresh Kumar79e436d2015-06-18 16:24:20 +0530427 exynos4_mct_tick_start(cycles_per_jiffy, mevt);
428 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900429}
430
Stuart Menefya5719a42019-02-10 22:51:13 +0000431static irqreturn_t exynos4_mct_tick_isr(int irq, void *dev_id)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900432{
Stuart Menefya5719a42019-02-10 22:51:13 +0000433 struct mct_clock_event_device *mevt = dev_id;
434 struct clock_event_device *evt = &mevt->evt;
435
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900436 /*
437 * This is for supporting oneshot mode.
438 * Mct would generate interrupt periodically
439 * without explicit stopping.
440 */
Viresh Kumar79e436d2015-06-18 16:24:20 +0530441 if (!clockevent_state_periodic(&mevt->evt))
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900442 exynos4_mct_tick_stop(mevt);
443
Changhwan Youn3a062282011-10-04 17:02:58 +0900444 exynos4_mct_tick_clear(mevt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900445
446 evt->event_handler(evt);
447
448 return IRQ_HANDLED;
449}
450
Richard Cochrand11b3a62016-07-13 17:17:05 +0000451static int exynos4_mct_starting_cpu(unsigned int cpu)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900452{
Richard Cochrand11b3a62016-07-13 17:17:05 +0000453 struct mct_clock_event_device *mevt =
454 per_cpu_ptr(&percpu_mct_tick, cpu);
Alexey Klimov479a9322015-06-21 23:41:39 +0300455 struct clock_event_device *evt = &mevt->evt;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900456
Marc Zyngiere700e412011-11-03 11:13:12 +0900457 mevt->base = EXYNOS4_MCT_L_BASE(cpu);
Dan Carpenter09e15172014-03-01 16:57:14 +0300458 snprintf(mevt->name, sizeof(mevt->name), "mct_tick%d", cpu);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900459
Marc Zyngiere700e412011-11-03 11:13:12 +0900460 evt->name = mevt->name;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900461 evt->cpumask = cpumask_of(cpu);
462 evt->set_next_event = exynos4_tick_set_next_event;
Viresh Kumar79e436d2015-06-18 16:24:20 +0530463 evt->set_state_periodic = set_state_periodic;
464 evt->set_state_shutdown = set_state_shutdown;
465 evt->set_state_oneshot = set_state_shutdown;
Viresh Kumar07f101d2015-12-23 16:59:14 +0530466 evt->set_state_oneshot_stopped = set_state_shutdown;
Viresh Kumar79e436d2015-06-18 16:24:20 +0530467 evt->tick_resume = set_state_shutdown;
Will Deacon88183782021-06-08 16:43:41 +0100468 evt->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT |
469 CLOCK_EVT_FEAT_PERCPU;
Will Deaconae460fd2021-06-08 16:43:40 +0100470 evt->rating = MCT_CLKEVENTS_RATING,
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900471
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800472 exynos4_mct_write(TICK_BASE_CNT, mevt->base + MCT_L_TCNTB_OFFSET);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900473
Changhwan Youn3a062282011-10-04 17:02:58 +0900474 if (mct_int_type == MCT_INT_SPI) {
Damian Eppel56a94f12015-06-26 15:23:04 +0200475
476 if (evt->irq == -1)
Chander Kashyap7114cd72013-06-19 00:29:35 +0900477 return -EIO;
Damian Eppel56a94f12015-06-26 15:23:04 +0200478
479 irq_force_affinity(evt->irq, cpumask_of(cpu));
480 enable_irq(evt->irq);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900481 } else {
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900482 enable_percpu_irq(mct_irqs[MCT_L0_IRQ], 0);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900483 }
Krzysztof Kozlowski8db6e512014-04-16 14:36:45 +0000484 clockevents_config_and_register(evt, clk_rate / (TICK_BASE_CNT + 1),
485 0xf, 0x7fffffff);
Kukjin Kim4d487d72011-08-24 16:07:39 +0900486
487 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900488}
489
Richard Cochrand11b3a62016-07-13 17:17:05 +0000490static int exynos4_mct_dying_cpu(unsigned int cpu)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900491{
Richard Cochrand11b3a62016-07-13 17:17:05 +0000492 struct mct_clock_event_device *mevt =
493 per_cpu_ptr(&percpu_mct_tick, cpu);
Alexey Klimov479a9322015-06-21 23:41:39 +0300494 struct clock_event_device *evt = &mevt->evt;
495
Viresh Kumar79e436d2015-06-18 16:24:20 +0530496 evt->set_state_shutdown(evt);
Damian Eppel56a94f12015-06-26 15:23:04 +0200497 if (mct_int_type == MCT_INT_SPI) {
498 if (evt->irq != -1)
499 disable_irq_nosync(evt->irq);
Joonyoung Shimbc7c36e2017-01-17 13:54:36 +0900500 exynos4_mct_write(0x1, mevt->base + MCT_L_INT_CSTAT_OFFSET);
Damian Eppel56a94f12015-06-26 15:23:04 +0200501 } else {
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900502 disable_percpu_irq(mct_irqs[MCT_L0_IRQ]);
Damian Eppel56a94f12015-06-26 15:23:04 +0200503 }
Richard Cochrand11b3a62016-07-13 17:17:05 +0000504 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900505}
Marc Zyngiera8cb6042012-01-10 19:44:19 +0000506
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200507static int __init exynos4_timer_resources(struct device_node *np, void __iomem *base)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900508{
Damian Eppel56a94f12015-06-26 15:23:04 +0200509 int err, cpu;
Thomas Abrahamca9048e2013-03-09 17:10:37 +0900510 struct clk *mct_clk, *tick_clk;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900511
Marek Szyprowski9fd464f2018-10-18 11:57:03 +0200512 tick_clk = of_clk_get_by_name(np, "fin_pll");
Thomas Abraham415ac2e2013-03-09 17:10:31 +0900513 if (IS_ERR(tick_clk))
514 panic("%s: unable to determine tick clock rate\n", __func__);
515 clk_rate = clk_get_rate(tick_clk);
Marc Zyngiere700e412011-11-03 11:13:12 +0900516
Marek Szyprowski9fd464f2018-10-18 11:57:03 +0200517 mct_clk = of_clk_get_by_name(np, "mct");
Thomas Abrahamca9048e2013-03-09 17:10:37 +0900518 if (IS_ERR(mct_clk))
519 panic("%s: unable to retrieve mct clock instance\n", __func__);
520 clk_prepare_enable(mct_clk);
Marc Zyngiere700e412011-11-03 11:13:12 +0900521
Arnd Bergmann228e3022013-04-09 22:07:37 +0200522 reg_base = base;
Thomas Abraham36ba5d52013-03-09 16:01:52 +0900523 if (!reg_base)
524 panic("%s: unable to ioremap mct address space\n", __func__);
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900525
Marc Zyngiere700e412011-11-03 11:13:12 +0900526 if (mct_int_type == MCT_INT_PPI) {
Marc Zyngiere700e412011-11-03 11:13:12 +0900527
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900528 err = request_percpu_irq(mct_irqs[MCT_L0_IRQ],
Marc Zyngiere700e412011-11-03 11:13:12 +0900529 exynos4_mct_tick_isr, "MCT",
530 &percpu_mct_tick);
531 WARN(err, "MCT: can't request IRQ %d (%d)\n",
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900532 mct_irqs[MCT_L0_IRQ], err);
Tomasz Figa5df718d2013-09-25 12:00:59 +0200533 } else {
Damian Eppel56a94f12015-06-26 15:23:04 +0200534 for_each_possible_cpu(cpu) {
535 int mct_irq = mct_irqs[MCT_L0_IRQ + cpu];
536 struct mct_clock_event_device *pcpu_mevt =
537 per_cpu_ptr(&percpu_mct_tick, cpu);
538
539 pcpu_mevt->evt.irq = -1;
540
541 irq_set_status_flags(mct_irq, IRQ_NOAUTOEN);
542 if (request_irq(mct_irq,
543 exynos4_mct_tick_isr,
544 IRQF_TIMER | IRQF_NOBALANCING,
545 pcpu_mevt->name, pcpu_mevt)) {
546 pr_err("exynos-mct: cannot register IRQ (cpu%d)\n",
547 cpu);
548
549 continue;
550 }
551 pcpu_mevt->evt.irq = mct_irq;
552 }
Marc Zyngiere700e412011-11-03 11:13:12 +0900553 }
Marc Zyngiera8cb6042012-01-10 19:44:19 +0000554
Richard Cochrand11b3a62016-07-13 17:17:05 +0000555 /* Install hotplug callbacks which configure the timer on this CPU */
556 err = cpuhp_setup_state(CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING,
Thomas Gleixner73c1b412016-12-21 20:19:54 +0100557 "clockevents/exynos4/mct_timer:starting",
Richard Cochrand11b3a62016-07-13 17:17:05 +0000558 exynos4_mct_starting_cpu,
559 exynos4_mct_dying_cpu);
Stephen Boydee98d272013-02-15 16:40:51 -0800560 if (err)
561 goto out_irq;
562
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200563 return 0;
Stephen Boydee98d272013-02-15 16:40:51 -0800564
565out_irq:
Marek Szyprowskib9307422018-10-18 11:57:04 +0200566 if (mct_int_type == MCT_INT_PPI) {
567 free_percpu_irq(mct_irqs[MCT_L0_IRQ], &percpu_mct_tick);
568 } else {
569 for_each_possible_cpu(cpu) {
570 struct mct_clock_event_device *pcpu_mevt =
571 per_cpu_ptr(&percpu_mct_tick, cpu);
572
573 if (pcpu_mevt->evt.irq != -1) {
574 free_irq(pcpu_mevt->evt.irq, pcpu_mevt);
575 pcpu_mevt->evt.irq = -1;
576 }
577 }
578 }
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200579 return err;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900580}
581
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200582static int __init mct_init_dt(struct device_node *np, unsigned int int_type)
Arnd Bergmann228e3022013-04-09 22:07:37 +0200583{
584 u32 nr_irqs, i;
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200585 int ret;
Arnd Bergmann228e3022013-04-09 22:07:37 +0200586
587 mct_int_type = int_type;
588
589 /* This driver uses only one global timer interrupt */
590 mct_irqs[MCT_G0_IRQ] = irq_of_parse_and_map(np, MCT_G0_IRQ);
591
592 /*
593 * Find out the number of local irqs specified. The local
594 * timer irqs are specified after the four global timer
595 * irqs are specified.
596 */
597 nr_irqs = of_irq_count(np);
598 for (i = MCT_L0_IRQ; i < nr_irqs; i++)
599 mct_irqs[i] = irq_of_parse_and_map(np, i);
600
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200601 ret = exynos4_timer_resources(np, of_iomap(np, 0));
602 if (ret)
603 return ret;
604
605 ret = exynos4_clocksource_init();
606 if (ret)
607 return ret;
608
609 return exynos4_clockevent_init();
Arnd Bergmann228e3022013-04-09 22:07:37 +0200610}
611
612
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200613static int __init mct_init_spi(struct device_node *np)
Arnd Bergmann228e3022013-04-09 22:07:37 +0200614{
615 return mct_init_dt(np, MCT_INT_SPI);
616}
617
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200618static int __init mct_init_ppi(struct device_node *np)
Arnd Bergmann228e3022013-04-09 22:07:37 +0200619{
620 return mct_init_dt(np, MCT_INT_PPI);
621}
Daniel Lezcano17273392017-05-26 16:56:11 +0200622TIMER_OF_DECLARE(exynos4210, "samsung,exynos4210-mct", mct_init_spi);
623TIMER_OF_DECLARE(exynos4412, "samsung,exynos4412-mct", mct_init_ppi);