blob: 34bd250d46c6ce26f796611f5dca6b4dceb52387 [file] [log] [blame]
Changhwan Youn30d8bea2011-03-11 10:39:57 +09001/* linux/arch/arm/mach-exynos4/mct.c
2 *
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
5 *
6 * EXYNOS4 MCT(Multi-Core Timer) support
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11*/
12
Changhwan Youn30d8bea2011-03-11 10:39:57 +090013#include <linux/interrupt.h>
14#include <linux/irq.h>
15#include <linux/err.h>
16#include <linux/clk.h>
17#include <linux/clockchips.h>
Stephen Boydee98d272013-02-15 16:40:51 -080018#include <linux/cpu.h>
Changhwan Youn30d8bea2011-03-11 10:39:57 +090019#include <linux/delay.h>
20#include <linux/percpu.h>
Kukjin Kim2edb36c2012-11-15 15:48:56 +090021#include <linux/of.h>
Thomas Abraham36ba5d52013-03-09 16:01:52 +090022#include <linux/of_irq.h>
23#include <linux/of_address.h>
Thomas Abraham9fbf0c82013-03-09 16:10:03 +090024#include <linux/clocksource.h>
Vincent Guittot93bfb762014-05-02 22:27:01 +090025#include <linux/sched_clock.h>
Changhwan Youn30d8bea2011-03-11 10:39:57 +090026
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090027#define EXYNOS4_MCTREG(x) (x)
28#define EXYNOS4_MCT_G_CNT_L EXYNOS4_MCTREG(0x100)
29#define EXYNOS4_MCT_G_CNT_U EXYNOS4_MCTREG(0x104)
30#define EXYNOS4_MCT_G_CNT_WSTAT EXYNOS4_MCTREG(0x110)
31#define EXYNOS4_MCT_G_COMP0_L EXYNOS4_MCTREG(0x200)
32#define EXYNOS4_MCT_G_COMP0_U EXYNOS4_MCTREG(0x204)
33#define EXYNOS4_MCT_G_COMP0_ADD_INCR EXYNOS4_MCTREG(0x208)
34#define EXYNOS4_MCT_G_TCON EXYNOS4_MCTREG(0x240)
35#define EXYNOS4_MCT_G_INT_CSTAT EXYNOS4_MCTREG(0x244)
36#define EXYNOS4_MCT_G_INT_ENB EXYNOS4_MCTREG(0x248)
37#define EXYNOS4_MCT_G_WSTAT EXYNOS4_MCTREG(0x24C)
38#define _EXYNOS4_MCT_L_BASE EXYNOS4_MCTREG(0x300)
39#define EXYNOS4_MCT_L_BASE(x) (_EXYNOS4_MCT_L_BASE + (0x100 * x))
40#define EXYNOS4_MCT_L_MASK (0xffffff00)
41
42#define MCT_L_TCNTB_OFFSET (0x00)
43#define MCT_L_ICNTB_OFFSET (0x08)
44#define MCT_L_TCON_OFFSET (0x20)
45#define MCT_L_INT_CSTAT_OFFSET (0x30)
46#define MCT_L_INT_ENB_OFFSET (0x34)
47#define MCT_L_WSTAT_OFFSET (0x40)
48#define MCT_G_TCON_START (1 << 8)
49#define MCT_G_TCON_COMP0_AUTO_INC (1 << 1)
50#define MCT_G_TCON_COMP0_ENABLE (1 << 0)
51#define MCT_L_TCON_INTERVAL_MODE (1 << 2)
52#define MCT_L_TCON_INT_START (1 << 1)
53#define MCT_L_TCON_TIMER_START (1 << 0)
54
Changhwan Youn4d2e4d72012-03-09 15:09:21 -080055#define TICK_BASE_CNT 1
56
Changhwan Youn3a062282011-10-04 17:02:58 +090057enum {
58 MCT_INT_SPI,
59 MCT_INT_PPI
60};
61
Thomas Abrahamc371dc62013-03-09 16:01:50 +090062enum {
63 MCT_G0_IRQ,
64 MCT_G1_IRQ,
65 MCT_G2_IRQ,
66 MCT_G3_IRQ,
67 MCT_L0_IRQ,
68 MCT_L1_IRQ,
69 MCT_L2_IRQ,
70 MCT_L3_IRQ,
Chander Kashyap6c16ded2013-12-02 07:48:23 +090071 MCT_L4_IRQ,
72 MCT_L5_IRQ,
73 MCT_L6_IRQ,
74 MCT_L7_IRQ,
Thomas Abrahamc371dc62013-03-09 16:01:50 +090075 MCT_NR_IRQS,
76};
77
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090078static void __iomem *reg_base;
Changhwan Youn30d8bea2011-03-11 10:39:57 +090079static unsigned long clk_rate;
Changhwan Youn3a062282011-10-04 17:02:58 +090080static unsigned int mct_int_type;
Thomas Abrahamc371dc62013-03-09 16:01:50 +090081static int mct_irqs[MCT_NR_IRQS];
Changhwan Youn30d8bea2011-03-11 10:39:57 +090082
83struct mct_clock_event_device {
Stephen Boydee98d272013-02-15 16:40:51 -080084 struct clock_event_device evt;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090085 unsigned long base;
Changhwan Younc8987472011-10-04 17:09:26 +090086 char name[10];
Changhwan Youn30d8bea2011-03-11 10:39:57 +090087};
88
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090089static void exynos4_mct_write(unsigned int value, unsigned long offset)
Changhwan Youn30d8bea2011-03-11 10:39:57 +090090{
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090091 unsigned long stat_addr;
Changhwan Youn30d8bea2011-03-11 10:39:57 +090092 u32 mask;
93 u32 i;
94
Doug Andersonfdb06f62014-07-05 06:43:20 +090095 writel_relaxed(value, reg_base + offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +090096
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090097 if (likely(offset >= EXYNOS4_MCT_L_BASE(0))) {
Tobias Jakobi8c38d282014-10-22 03:37:08 +020098 stat_addr = (offset & EXYNOS4_MCT_L_MASK) + MCT_L_WSTAT_OFFSET;
99 switch (offset & ~EXYNOS4_MCT_L_MASK) {
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900100 case MCT_L_TCON_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900101 mask = 1 << 3; /* L_TCON write status */
102 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900103 case MCT_L_ICNTB_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900104 mask = 1 << 1; /* L_ICNTB write status */
105 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900106 case MCT_L_TCNTB_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900107 mask = 1 << 0; /* L_TCNTB write status */
108 break;
109 default:
110 return;
111 }
112 } else {
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900113 switch (offset) {
114 case EXYNOS4_MCT_G_TCON:
Changhwan Younc8987472011-10-04 17:09:26 +0900115 stat_addr = EXYNOS4_MCT_G_WSTAT;
116 mask = 1 << 16; /* G_TCON write status */
117 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900118 case EXYNOS4_MCT_G_COMP0_L:
Changhwan Younc8987472011-10-04 17:09:26 +0900119 stat_addr = EXYNOS4_MCT_G_WSTAT;
120 mask = 1 << 0; /* G_COMP0_L write status */
121 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900122 case EXYNOS4_MCT_G_COMP0_U:
Changhwan Younc8987472011-10-04 17:09:26 +0900123 stat_addr = EXYNOS4_MCT_G_WSTAT;
124 mask = 1 << 1; /* G_COMP0_U write status */
125 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900126 case EXYNOS4_MCT_G_COMP0_ADD_INCR:
Changhwan Younc8987472011-10-04 17:09:26 +0900127 stat_addr = EXYNOS4_MCT_G_WSTAT;
128 mask = 1 << 2; /* G_COMP0_ADD_INCR w status */
129 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900130 case EXYNOS4_MCT_G_CNT_L:
Changhwan Younc8987472011-10-04 17:09:26 +0900131 stat_addr = EXYNOS4_MCT_G_CNT_WSTAT;
132 mask = 1 << 0; /* G_CNT_L write status */
133 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900134 case EXYNOS4_MCT_G_CNT_U:
Changhwan Younc8987472011-10-04 17:09:26 +0900135 stat_addr = EXYNOS4_MCT_G_CNT_WSTAT;
136 mask = 1 << 1; /* G_CNT_U write status */
137 break;
138 default:
139 return;
140 }
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900141 }
142
143 /* Wait maximum 1 ms until written values are applied */
144 for (i = 0; i < loops_per_jiffy / 1000 * HZ; i++)
Doug Andersonfdb06f62014-07-05 06:43:20 +0900145 if (readl_relaxed(reg_base + stat_addr) & mask) {
146 writel_relaxed(mask, reg_base + stat_addr);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900147 return;
148 }
149
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900150 panic("MCT hangs after writing %d (offset:0x%lx)\n", value, offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900151}
152
153/* Clocksource handling */
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900154static void exynos4_mct_frc_start(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900155{
156 u32 reg;
157
Doug Andersonfdb06f62014-07-05 06:43:20 +0900158 reg = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900159 reg |= MCT_G_TCON_START;
160 exynos4_mct_write(reg, EXYNOS4_MCT_G_TCON);
161}
162
Doug Anderson3252a642014-07-05 06:43:26 +0900163/**
164 * exynos4_read_count_64 - Read all 64-bits of the global counter
165 *
166 * This will read all 64-bits of the global counter taking care to make sure
167 * that the upper and lower half match. Note that reading the MCT can be quite
168 * slow (hundreds of nanoseconds) so you should use the 32-bit (lower half
169 * only) version when possible.
170 *
171 * Returns the number of cycles in the global counter.
172 */
173static u64 exynos4_read_count_64(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900174{
175 unsigned int lo, hi;
Doug Andersonfdb06f62014-07-05 06:43:20 +0900176 u32 hi2 = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_U);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900177
178 do {
179 hi = hi2;
Doug Andersonfdb06f62014-07-05 06:43:20 +0900180 lo = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_L);
181 hi2 = readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_U);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900182 } while (hi != hi2);
183
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100184 return ((u64)hi << 32) | lo;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900185}
186
Doug Anderson3252a642014-07-05 06:43:26 +0900187/**
188 * exynos4_read_count_32 - Read the lower 32-bits of the global counter
189 *
190 * This will read just the lower 32-bits of the global counter. This is marked
191 * as notrace so it can be used by the scheduler clock.
192 *
193 * Returns the number of cycles in the global counter (lower 32 bits).
194 */
195static u32 notrace exynos4_read_count_32(void)
196{
197 return readl_relaxed(reg_base + EXYNOS4_MCT_G_CNT_L);
198}
199
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100200static u64 exynos4_frc_read(struct clocksource *cs)
Doug Anderson89e6a132014-07-05 06:38:55 +0900201{
Doug Anderson3252a642014-07-05 06:43:26 +0900202 return exynos4_read_count_32();
Doug Anderson89e6a132014-07-05 06:38:55 +0900203}
204
Changhwan Younaa421c12011-09-02 14:10:52 +0900205static void exynos4_frc_resume(struct clocksource *cs)
206{
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900207 exynos4_mct_frc_start();
Changhwan Younaa421c12011-09-02 14:10:52 +0900208}
209
Krzysztof Kozlowski6c10bf62015-04-30 13:42:52 +0900210static struct clocksource mct_frc = {
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900211 .name = "mct-frc",
212 .rating = 400,
213 .read = exynos4_frc_read,
Doug Anderson3252a642014-07-05 06:43:26 +0900214 .mask = CLOCKSOURCE_MASK(32),
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900215 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Changhwan Younaa421c12011-09-02 14:10:52 +0900216 .resume = exynos4_frc_resume,
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900217};
218
Vincent Guittot93bfb762014-05-02 22:27:01 +0900219static u64 notrace exynos4_read_sched_clock(void)
220{
Doug Anderson3252a642014-07-05 06:43:26 +0900221 return exynos4_read_count_32();
Vincent Guittot93bfb762014-05-02 22:27:01 +0900222}
223
Chanwoo Choif1a4c1f2016-08-24 22:49:05 +0900224#if defined(CONFIG_ARM)
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900225static struct delay_timer exynos4_delay_timer;
226
227static cycles_t exynos4_read_current_timer(void)
228{
Doug Anderson3252a642014-07-05 06:43:26 +0900229 BUILD_BUG_ON_MSG(sizeof(cycles_t) != sizeof(u32),
230 "cycles_t needs to move to 32-bit for ARM64 usage");
231 return exynos4_read_count_32();
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900232}
Chanwoo Choif1a4c1f2016-08-24 22:49:05 +0900233#endif
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900234
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200235static int __init exynos4_clocksource_init(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900236{
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900237 exynos4_mct_frc_start();
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900238
Chanwoo Choif1a4c1f2016-08-24 22:49:05 +0900239#if defined(CONFIG_ARM)
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900240 exynos4_delay_timer.read_current_timer = &exynos4_read_current_timer;
241 exynos4_delay_timer.freq = clk_rate;
242 register_current_timer_delay(&exynos4_delay_timer);
Chanwoo Choif1a4c1f2016-08-24 22:49:05 +0900243#endif
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900244
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900245 if (clocksource_register_hz(&mct_frc, clk_rate))
246 panic("%s: can't register clocksource\n", mct_frc.name);
Vincent Guittot93bfb762014-05-02 22:27:01 +0900247
Doug Anderson3252a642014-07-05 06:43:26 +0900248 sched_clock_register(exynos4_read_sched_clock, 32, clk_rate);
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200249
250 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900251}
252
253static void exynos4_mct_comp0_stop(void)
254{
255 unsigned int tcon;
256
Doug Andersonfdb06f62014-07-05 06:43:20 +0900257 tcon = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900258 tcon &= ~(MCT_G_TCON_COMP0_ENABLE | MCT_G_TCON_COMP0_AUTO_INC);
259
260 exynos4_mct_write(tcon, EXYNOS4_MCT_G_TCON);
261 exynos4_mct_write(0, EXYNOS4_MCT_G_INT_ENB);
262}
263
Viresh Kumar79e436d2015-06-18 16:24:20 +0530264static void exynos4_mct_comp0_start(bool periodic, unsigned long cycles)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900265{
266 unsigned int tcon;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100267 u64 comp_cycle;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900268
Doug Andersonfdb06f62014-07-05 06:43:20 +0900269 tcon = readl_relaxed(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900270
Viresh Kumar79e436d2015-06-18 16:24:20 +0530271 if (periodic) {
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900272 tcon |= MCT_G_TCON_COMP0_AUTO_INC;
273 exynos4_mct_write(cycles, EXYNOS4_MCT_G_COMP0_ADD_INCR);
274 }
275
Doug Anderson3252a642014-07-05 06:43:26 +0900276 comp_cycle = exynos4_read_count_64() + cycles;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900277 exynos4_mct_write((u32)comp_cycle, EXYNOS4_MCT_G_COMP0_L);
278 exynos4_mct_write((u32)(comp_cycle >> 32), EXYNOS4_MCT_G_COMP0_U);
279
280 exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_ENB);
281
282 tcon |= MCT_G_TCON_COMP0_ENABLE;
283 exynos4_mct_write(tcon , EXYNOS4_MCT_G_TCON);
284}
285
286static int exynos4_comp_set_next_event(unsigned long cycles,
287 struct clock_event_device *evt)
288{
Viresh Kumar79e436d2015-06-18 16:24:20 +0530289 exynos4_mct_comp0_start(false, cycles);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900290
291 return 0;
292}
293
Viresh Kumar79e436d2015-06-18 16:24:20 +0530294static int mct_set_state_shutdown(struct clock_event_device *evt)
295{
296 exynos4_mct_comp0_stop();
297 return 0;
298}
299
300static int mct_set_state_periodic(struct clock_event_device *evt)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900301{
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800302 unsigned long cycles_per_jiffy;
Viresh Kumar79e436d2015-06-18 16:24:20 +0530303
304 cycles_per_jiffy = (((unsigned long long)NSEC_PER_SEC / HZ * evt->mult)
305 >> evt->shift);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900306 exynos4_mct_comp0_stop();
Viresh Kumar79e436d2015-06-18 16:24:20 +0530307 exynos4_mct_comp0_start(true, cycles_per_jiffy);
308 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900309}
310
311static struct clock_event_device mct_comp_device = {
Viresh Kumar79e436d2015-06-18 16:24:20 +0530312 .name = "mct-comp",
313 .features = CLOCK_EVT_FEAT_PERIODIC |
314 CLOCK_EVT_FEAT_ONESHOT,
315 .rating = 250,
316 .set_next_event = exynos4_comp_set_next_event,
317 .set_state_periodic = mct_set_state_periodic,
318 .set_state_shutdown = mct_set_state_shutdown,
319 .set_state_oneshot = mct_set_state_shutdown,
Viresh Kumar07f101d2015-12-23 16:59:14 +0530320 .set_state_oneshot_stopped = mct_set_state_shutdown,
Viresh Kumar79e436d2015-06-18 16:24:20 +0530321 .tick_resume = mct_set_state_shutdown,
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900322};
323
324static irqreturn_t exynos4_mct_comp_isr(int irq, void *dev_id)
325{
326 struct clock_event_device *evt = dev_id;
327
328 exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_CSTAT);
329
330 evt->event_handler(evt);
331
332 return IRQ_HANDLED;
333}
334
335static struct irqaction mct_comp_event_irq = {
336 .name = "mct_comp_irq",
337 .flags = IRQF_TIMER | IRQF_IRQPOLL,
338 .handler = exynos4_mct_comp_isr,
339 .dev_id = &mct_comp_device,
340};
341
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200342static int exynos4_clockevent_init(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900343{
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900344 mct_comp_device.cpumask = cpumask_of(0);
Shawn Guo838a2ae2013-01-12 11:50:05 +0000345 clockevents_config_and_register(&mct_comp_device, clk_rate,
346 0xf, 0xffffffff);
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900347 setup_irq(mct_irqs[MCT_G0_IRQ], &mct_comp_event_irq);
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200348
349 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900350}
351
Kukjin Kim991a6c72011-12-08 10:04:49 +0900352static DEFINE_PER_CPU(struct mct_clock_event_device, percpu_mct_tick);
353
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900354/* Clock event handling */
355static void exynos4_mct_tick_stop(struct mct_clock_event_device *mevt)
356{
357 unsigned long tmp;
358 unsigned long mask = MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900359 unsigned long offset = mevt->base + MCT_L_TCON_OFFSET;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900360
Doug Andersonfdb06f62014-07-05 06:43:20 +0900361 tmp = readl_relaxed(reg_base + offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900362 if (tmp & mask) {
363 tmp &= ~mask;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900364 exynos4_mct_write(tmp, offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900365 }
366}
367
368static void exynos4_mct_tick_start(unsigned long cycles,
369 struct mct_clock_event_device *mevt)
370{
371 unsigned long tmp;
372
373 exynos4_mct_tick_stop(mevt);
374
375 tmp = (1 << 31) | cycles; /* MCT_L_UPDATE_ICNTB */
376
377 /* update interrupt count buffer */
378 exynos4_mct_write(tmp, mevt->base + MCT_L_ICNTB_OFFSET);
379
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300380 /* enable MCT tick interrupt */
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900381 exynos4_mct_write(0x1, mevt->base + MCT_L_INT_ENB_OFFSET);
382
Doug Andersonfdb06f62014-07-05 06:43:20 +0900383 tmp = readl_relaxed(reg_base + mevt->base + MCT_L_TCON_OFFSET);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900384 tmp |= MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START |
385 MCT_L_TCON_INTERVAL_MODE;
386 exynos4_mct_write(tmp, mevt->base + MCT_L_TCON_OFFSET);
387}
388
Stuart Menefya5719a42019-02-10 22:51:13 +0000389static void exynos4_mct_tick_clear(struct mct_clock_event_device *mevt)
390{
391 /* Clear the MCT tick interrupt */
392 if (readl_relaxed(reg_base + mevt->base + MCT_L_INT_CSTAT_OFFSET) & 1)
393 exynos4_mct_write(0x1, mevt->base + MCT_L_INT_CSTAT_OFFSET);
394}
395
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900396static int exynos4_tick_set_next_event(unsigned long cycles,
397 struct clock_event_device *evt)
398{
Alexey Klimov31f79872015-09-04 02:49:58 +0300399 struct mct_clock_event_device *mevt;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900400
Alexey Klimov31f79872015-09-04 02:49:58 +0300401 mevt = container_of(evt, struct mct_clock_event_device, evt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900402 exynos4_mct_tick_start(cycles, mevt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900403 return 0;
404}
405
Viresh Kumar79e436d2015-06-18 16:24:20 +0530406static int set_state_shutdown(struct clock_event_device *evt)
407{
Alexey Klimov31f79872015-09-04 02:49:58 +0300408 struct mct_clock_event_device *mevt;
409
410 mevt = container_of(evt, struct mct_clock_event_device, evt);
411 exynos4_mct_tick_stop(mevt);
Stuart Menefyd2f276c2019-02-10 22:51:14 +0000412 exynos4_mct_tick_clear(mevt);
Viresh Kumar79e436d2015-06-18 16:24:20 +0530413 return 0;
414}
415
416static int set_state_periodic(struct clock_event_device *evt)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900417{
Alexey Klimov31f79872015-09-04 02:49:58 +0300418 struct mct_clock_event_device *mevt;
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800419 unsigned long cycles_per_jiffy;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900420
Alexey Klimov31f79872015-09-04 02:49:58 +0300421 mevt = container_of(evt, struct mct_clock_event_device, evt);
Viresh Kumar79e436d2015-06-18 16:24:20 +0530422 cycles_per_jiffy = (((unsigned long long)NSEC_PER_SEC / HZ * evt->mult)
423 >> evt->shift);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900424 exynos4_mct_tick_stop(mevt);
Viresh Kumar79e436d2015-06-18 16:24:20 +0530425 exynos4_mct_tick_start(cycles_per_jiffy, mevt);
426 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900427}
428
Stuart Menefya5719a42019-02-10 22:51:13 +0000429static irqreturn_t exynos4_mct_tick_isr(int irq, void *dev_id)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900430{
Stuart Menefya5719a42019-02-10 22:51:13 +0000431 struct mct_clock_event_device *mevt = dev_id;
432 struct clock_event_device *evt = &mevt->evt;
433
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900434 /*
435 * This is for supporting oneshot mode.
436 * Mct would generate interrupt periodically
437 * without explicit stopping.
438 */
Viresh Kumar79e436d2015-06-18 16:24:20 +0530439 if (!clockevent_state_periodic(&mevt->evt))
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900440 exynos4_mct_tick_stop(mevt);
441
Changhwan Youn3a062282011-10-04 17:02:58 +0900442 exynos4_mct_tick_clear(mevt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900443
444 evt->event_handler(evt);
445
446 return IRQ_HANDLED;
447}
448
Richard Cochrand11b3a62016-07-13 17:17:05 +0000449static int exynos4_mct_starting_cpu(unsigned int cpu)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900450{
Richard Cochrand11b3a62016-07-13 17:17:05 +0000451 struct mct_clock_event_device *mevt =
452 per_cpu_ptr(&percpu_mct_tick, cpu);
Alexey Klimov479a9322015-06-21 23:41:39 +0300453 struct clock_event_device *evt = &mevt->evt;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900454
Marc Zyngiere700e412011-11-03 11:13:12 +0900455 mevt->base = EXYNOS4_MCT_L_BASE(cpu);
Dan Carpenter09e15172014-03-01 16:57:14 +0300456 snprintf(mevt->name, sizeof(mevt->name), "mct_tick%d", cpu);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900457
Marc Zyngiere700e412011-11-03 11:13:12 +0900458 evt->name = mevt->name;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900459 evt->cpumask = cpumask_of(cpu);
460 evt->set_next_event = exynos4_tick_set_next_event;
Viresh Kumar79e436d2015-06-18 16:24:20 +0530461 evt->set_state_periodic = set_state_periodic;
462 evt->set_state_shutdown = set_state_shutdown;
463 evt->set_state_oneshot = set_state_shutdown;
Viresh Kumar07f101d2015-12-23 16:59:14 +0530464 evt->set_state_oneshot_stopped = set_state_shutdown;
Viresh Kumar79e436d2015-06-18 16:24:20 +0530465 evt->tick_resume = set_state_shutdown;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900466 evt->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT;
467 evt->rating = 450;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900468
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800469 exynos4_mct_write(TICK_BASE_CNT, mevt->base + MCT_L_TCNTB_OFFSET);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900470
Changhwan Youn3a062282011-10-04 17:02:58 +0900471 if (mct_int_type == MCT_INT_SPI) {
Damian Eppel56a94f12015-06-26 15:23:04 +0200472
473 if (evt->irq == -1)
Chander Kashyap7114cd72013-06-19 00:29:35 +0900474 return -EIO;
Damian Eppel56a94f12015-06-26 15:23:04 +0200475
476 irq_force_affinity(evt->irq, cpumask_of(cpu));
477 enable_irq(evt->irq);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900478 } else {
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900479 enable_percpu_irq(mct_irqs[MCT_L0_IRQ], 0);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900480 }
Krzysztof Kozlowski8db6e512014-04-16 14:36:45 +0000481 clockevents_config_and_register(evt, clk_rate / (TICK_BASE_CNT + 1),
482 0xf, 0x7fffffff);
Kukjin Kim4d487d72011-08-24 16:07:39 +0900483
484 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900485}
486
Richard Cochrand11b3a62016-07-13 17:17:05 +0000487static int exynos4_mct_dying_cpu(unsigned int cpu)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900488{
Richard Cochrand11b3a62016-07-13 17:17:05 +0000489 struct mct_clock_event_device *mevt =
490 per_cpu_ptr(&percpu_mct_tick, cpu);
Alexey Klimov479a9322015-06-21 23:41:39 +0300491 struct clock_event_device *evt = &mevt->evt;
492
Viresh Kumar79e436d2015-06-18 16:24:20 +0530493 evt->set_state_shutdown(evt);
Damian Eppel56a94f12015-06-26 15:23:04 +0200494 if (mct_int_type == MCT_INT_SPI) {
495 if (evt->irq != -1)
496 disable_irq_nosync(evt->irq);
Joonyoung Shimbc7c36e2017-01-17 13:54:36 +0900497 exynos4_mct_write(0x1, mevt->base + MCT_L_INT_CSTAT_OFFSET);
Damian Eppel56a94f12015-06-26 15:23:04 +0200498 } else {
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900499 disable_percpu_irq(mct_irqs[MCT_L0_IRQ]);
Damian Eppel56a94f12015-06-26 15:23:04 +0200500 }
Richard Cochrand11b3a62016-07-13 17:17:05 +0000501 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900502}
Marc Zyngiera8cb6042012-01-10 19:44:19 +0000503
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200504static int __init exynos4_timer_resources(struct device_node *np, void __iomem *base)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900505{
Damian Eppel56a94f12015-06-26 15:23:04 +0200506 int err, cpu;
Thomas Abrahamca9048e2013-03-09 17:10:37 +0900507 struct clk *mct_clk, *tick_clk;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900508
Marek Szyprowski9fd464f2018-10-18 11:57:03 +0200509 tick_clk = of_clk_get_by_name(np, "fin_pll");
Thomas Abraham415ac2e2013-03-09 17:10:31 +0900510 if (IS_ERR(tick_clk))
511 panic("%s: unable to determine tick clock rate\n", __func__);
512 clk_rate = clk_get_rate(tick_clk);
Marc Zyngiere700e412011-11-03 11:13:12 +0900513
Marek Szyprowski9fd464f2018-10-18 11:57:03 +0200514 mct_clk = of_clk_get_by_name(np, "mct");
Thomas Abrahamca9048e2013-03-09 17:10:37 +0900515 if (IS_ERR(mct_clk))
516 panic("%s: unable to retrieve mct clock instance\n", __func__);
517 clk_prepare_enable(mct_clk);
Marc Zyngiere700e412011-11-03 11:13:12 +0900518
Arnd Bergmann228e3022013-04-09 22:07:37 +0200519 reg_base = base;
Thomas Abraham36ba5d52013-03-09 16:01:52 +0900520 if (!reg_base)
521 panic("%s: unable to ioremap mct address space\n", __func__);
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900522
Marc Zyngiere700e412011-11-03 11:13:12 +0900523 if (mct_int_type == MCT_INT_PPI) {
Marc Zyngiere700e412011-11-03 11:13:12 +0900524
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900525 err = request_percpu_irq(mct_irqs[MCT_L0_IRQ],
Marc Zyngiere700e412011-11-03 11:13:12 +0900526 exynos4_mct_tick_isr, "MCT",
527 &percpu_mct_tick);
528 WARN(err, "MCT: can't request IRQ %d (%d)\n",
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900529 mct_irqs[MCT_L0_IRQ], err);
Tomasz Figa5df718d2013-09-25 12:00:59 +0200530 } else {
Damian Eppel56a94f12015-06-26 15:23:04 +0200531 for_each_possible_cpu(cpu) {
532 int mct_irq = mct_irqs[MCT_L0_IRQ + cpu];
533 struct mct_clock_event_device *pcpu_mevt =
534 per_cpu_ptr(&percpu_mct_tick, cpu);
535
536 pcpu_mevt->evt.irq = -1;
537
538 irq_set_status_flags(mct_irq, IRQ_NOAUTOEN);
539 if (request_irq(mct_irq,
540 exynos4_mct_tick_isr,
541 IRQF_TIMER | IRQF_NOBALANCING,
542 pcpu_mevt->name, pcpu_mevt)) {
543 pr_err("exynos-mct: cannot register IRQ (cpu%d)\n",
544 cpu);
545
546 continue;
547 }
548 pcpu_mevt->evt.irq = mct_irq;
549 }
Marc Zyngiere700e412011-11-03 11:13:12 +0900550 }
Marc Zyngiera8cb6042012-01-10 19:44:19 +0000551
Richard Cochrand11b3a62016-07-13 17:17:05 +0000552 /* Install hotplug callbacks which configure the timer on this CPU */
553 err = cpuhp_setup_state(CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING,
Thomas Gleixner73c1b412016-12-21 20:19:54 +0100554 "clockevents/exynos4/mct_timer:starting",
Richard Cochrand11b3a62016-07-13 17:17:05 +0000555 exynos4_mct_starting_cpu,
556 exynos4_mct_dying_cpu);
Stephen Boydee98d272013-02-15 16:40:51 -0800557 if (err)
558 goto out_irq;
559
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200560 return 0;
Stephen Boydee98d272013-02-15 16:40:51 -0800561
562out_irq:
Marek Szyprowskib9307422018-10-18 11:57:04 +0200563 if (mct_int_type == MCT_INT_PPI) {
564 free_percpu_irq(mct_irqs[MCT_L0_IRQ], &percpu_mct_tick);
565 } else {
566 for_each_possible_cpu(cpu) {
567 struct mct_clock_event_device *pcpu_mevt =
568 per_cpu_ptr(&percpu_mct_tick, cpu);
569
570 if (pcpu_mevt->evt.irq != -1) {
571 free_irq(pcpu_mevt->evt.irq, pcpu_mevt);
572 pcpu_mevt->evt.irq = -1;
573 }
574 }
575 }
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200576 return err;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900577}
578
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200579static int __init mct_init_dt(struct device_node *np, unsigned int int_type)
Arnd Bergmann228e3022013-04-09 22:07:37 +0200580{
581 u32 nr_irqs, i;
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200582 int ret;
Arnd Bergmann228e3022013-04-09 22:07:37 +0200583
584 mct_int_type = int_type;
585
586 /* This driver uses only one global timer interrupt */
587 mct_irqs[MCT_G0_IRQ] = irq_of_parse_and_map(np, MCT_G0_IRQ);
588
589 /*
590 * Find out the number of local irqs specified. The local
591 * timer irqs are specified after the four global timer
592 * irqs are specified.
593 */
594 nr_irqs = of_irq_count(np);
595 for (i = MCT_L0_IRQ; i < nr_irqs; i++)
596 mct_irqs[i] = irq_of_parse_and_map(np, i);
597
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200598 ret = exynos4_timer_resources(np, of_iomap(np, 0));
599 if (ret)
600 return ret;
601
602 ret = exynos4_clocksource_init();
603 if (ret)
604 return ret;
605
606 return exynos4_clockevent_init();
Arnd Bergmann228e3022013-04-09 22:07:37 +0200607}
608
609
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200610static int __init mct_init_spi(struct device_node *np)
Arnd Bergmann228e3022013-04-09 22:07:37 +0200611{
612 return mct_init_dt(np, MCT_INT_SPI);
613}
614
Daniel Lezcano5e558eb2016-05-31 19:26:55 +0200615static int __init mct_init_ppi(struct device_node *np)
Arnd Bergmann228e3022013-04-09 22:07:37 +0200616{
617 return mct_init_dt(np, MCT_INT_PPI);
618}
Daniel Lezcano17273392017-05-26 16:56:11 +0200619TIMER_OF_DECLARE(exynos4210, "samsung,exynos4210-mct", mct_init_spi);
620TIMER_OF_DECLARE(exynos4412, "samsung,exynos4412-mct", mct_init_ppi);