blob: ab51bf20a3ed87aee2de4715eb858227cafa9fd5 [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
13#include <linux/sched.h>
14#include <linux/interrupt.h>
15#include <linux/irq.h>
16#include <linux/err.h>
17#include <linux/clk.h>
18#include <linux/clockchips.h>
Stephen Boydee98d272013-02-15 16:40:51 -080019#include <linux/cpu.h>
Changhwan Youn30d8bea2011-03-11 10:39:57 +090020#include <linux/platform_device.h>
21#include <linux/delay.h>
22#include <linux/percpu.h>
Kukjin Kim2edb36c2012-11-15 15:48:56 +090023#include <linux/of.h>
Thomas Abraham36ba5d52013-03-09 16:01:52 +090024#include <linux/of_irq.h>
25#include <linux/of_address.h>
Thomas Abraham9fbf0c82013-03-09 16:10:03 +090026#include <linux/clocksource.h>
Vincent Guittot93bfb762014-05-02 22:27:01 +090027#include <linux/sched_clock.h>
Changhwan Youn30d8bea2011-03-11 10:39:57 +090028
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090029#define EXYNOS4_MCTREG(x) (x)
30#define EXYNOS4_MCT_G_CNT_L EXYNOS4_MCTREG(0x100)
31#define EXYNOS4_MCT_G_CNT_U EXYNOS4_MCTREG(0x104)
32#define EXYNOS4_MCT_G_CNT_WSTAT EXYNOS4_MCTREG(0x110)
33#define EXYNOS4_MCT_G_COMP0_L EXYNOS4_MCTREG(0x200)
34#define EXYNOS4_MCT_G_COMP0_U EXYNOS4_MCTREG(0x204)
35#define EXYNOS4_MCT_G_COMP0_ADD_INCR EXYNOS4_MCTREG(0x208)
36#define EXYNOS4_MCT_G_TCON EXYNOS4_MCTREG(0x240)
37#define EXYNOS4_MCT_G_INT_CSTAT EXYNOS4_MCTREG(0x244)
38#define EXYNOS4_MCT_G_INT_ENB EXYNOS4_MCTREG(0x248)
39#define EXYNOS4_MCT_G_WSTAT EXYNOS4_MCTREG(0x24C)
40#define _EXYNOS4_MCT_L_BASE EXYNOS4_MCTREG(0x300)
41#define EXYNOS4_MCT_L_BASE(x) (_EXYNOS4_MCT_L_BASE + (0x100 * x))
42#define EXYNOS4_MCT_L_MASK (0xffffff00)
43
44#define MCT_L_TCNTB_OFFSET (0x00)
45#define MCT_L_ICNTB_OFFSET (0x08)
46#define MCT_L_TCON_OFFSET (0x20)
47#define MCT_L_INT_CSTAT_OFFSET (0x30)
48#define MCT_L_INT_ENB_OFFSET (0x34)
49#define MCT_L_WSTAT_OFFSET (0x40)
50#define MCT_G_TCON_START (1 << 8)
51#define MCT_G_TCON_COMP0_AUTO_INC (1 << 1)
52#define MCT_G_TCON_COMP0_ENABLE (1 << 0)
53#define MCT_L_TCON_INTERVAL_MODE (1 << 2)
54#define MCT_L_TCON_INT_START (1 << 1)
55#define MCT_L_TCON_TIMER_START (1 << 0)
56
Changhwan Youn4d2e4d72012-03-09 15:09:21 -080057#define TICK_BASE_CNT 1
58
Changhwan Youn3a062282011-10-04 17:02:58 +090059enum {
60 MCT_INT_SPI,
61 MCT_INT_PPI
62};
63
Thomas Abrahamc371dc62013-03-09 16:01:50 +090064enum {
65 MCT_G0_IRQ,
66 MCT_G1_IRQ,
67 MCT_G2_IRQ,
68 MCT_G3_IRQ,
69 MCT_L0_IRQ,
70 MCT_L1_IRQ,
71 MCT_L2_IRQ,
72 MCT_L3_IRQ,
Chander Kashyap6c16ded2013-12-02 07:48:23 +090073 MCT_L4_IRQ,
74 MCT_L5_IRQ,
75 MCT_L6_IRQ,
76 MCT_L7_IRQ,
Thomas Abrahamc371dc62013-03-09 16:01:50 +090077 MCT_NR_IRQS,
78};
79
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090080static void __iomem *reg_base;
Changhwan Youn30d8bea2011-03-11 10:39:57 +090081static unsigned long clk_rate;
Changhwan Youn3a062282011-10-04 17:02:58 +090082static unsigned int mct_int_type;
Thomas Abrahamc371dc62013-03-09 16:01:50 +090083static int mct_irqs[MCT_NR_IRQS];
Changhwan Youn30d8bea2011-03-11 10:39:57 +090084
85struct mct_clock_event_device {
Stephen Boydee98d272013-02-15 16:40:51 -080086 struct clock_event_device evt;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090087 unsigned long base;
Changhwan Younc8987472011-10-04 17:09:26 +090088 char name[10];
Changhwan Youn30d8bea2011-03-11 10:39:57 +090089};
90
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090091static void exynos4_mct_write(unsigned int value, unsigned long offset)
Changhwan Youn30d8bea2011-03-11 10:39:57 +090092{
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090093 unsigned long stat_addr;
Changhwan Youn30d8bea2011-03-11 10:39:57 +090094 u32 mask;
95 u32 i;
96
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090097 __raw_writel(value, reg_base + offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +090098
Thomas Abrahama1ba7a72013-03-09 16:01:47 +090099 if (likely(offset >= EXYNOS4_MCT_L_BASE(0))) {
100 stat_addr = (offset & ~EXYNOS4_MCT_L_MASK) + MCT_L_WSTAT_OFFSET;
101 switch (offset & EXYNOS4_MCT_L_MASK) {
102 case MCT_L_TCON_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900103 mask = 1 << 3; /* L_TCON write status */
104 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900105 case MCT_L_ICNTB_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900106 mask = 1 << 1; /* L_ICNTB write status */
107 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900108 case MCT_L_TCNTB_OFFSET:
Changhwan Younc8987472011-10-04 17:09:26 +0900109 mask = 1 << 0; /* L_TCNTB write status */
110 break;
111 default:
112 return;
113 }
114 } else {
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900115 switch (offset) {
116 case EXYNOS4_MCT_G_TCON:
Changhwan Younc8987472011-10-04 17:09:26 +0900117 stat_addr = EXYNOS4_MCT_G_WSTAT;
118 mask = 1 << 16; /* G_TCON write status */
119 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900120 case EXYNOS4_MCT_G_COMP0_L:
Changhwan Younc8987472011-10-04 17:09:26 +0900121 stat_addr = EXYNOS4_MCT_G_WSTAT;
122 mask = 1 << 0; /* G_COMP0_L write status */
123 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900124 case EXYNOS4_MCT_G_COMP0_U:
Changhwan Younc8987472011-10-04 17:09:26 +0900125 stat_addr = EXYNOS4_MCT_G_WSTAT;
126 mask = 1 << 1; /* G_COMP0_U write status */
127 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900128 case EXYNOS4_MCT_G_COMP0_ADD_INCR:
Changhwan Younc8987472011-10-04 17:09:26 +0900129 stat_addr = EXYNOS4_MCT_G_WSTAT;
130 mask = 1 << 2; /* G_COMP0_ADD_INCR w status */
131 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900132 case EXYNOS4_MCT_G_CNT_L:
Changhwan Younc8987472011-10-04 17:09:26 +0900133 stat_addr = EXYNOS4_MCT_G_CNT_WSTAT;
134 mask = 1 << 0; /* G_CNT_L write status */
135 break;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900136 case EXYNOS4_MCT_G_CNT_U:
Changhwan Younc8987472011-10-04 17:09:26 +0900137 stat_addr = EXYNOS4_MCT_G_CNT_WSTAT;
138 mask = 1 << 1; /* G_CNT_U write status */
139 break;
140 default:
141 return;
142 }
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900143 }
144
145 /* Wait maximum 1 ms until written values are applied */
146 for (i = 0; i < loops_per_jiffy / 1000 * HZ; i++)
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900147 if (__raw_readl(reg_base + stat_addr) & mask) {
148 __raw_writel(mask, reg_base + stat_addr);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900149 return;
150 }
151
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900152 panic("MCT hangs after writing %d (offset:0x%lx)\n", value, offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900153}
154
155/* Clocksource handling */
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900156static void exynos4_mct_frc_start(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900157{
158 u32 reg;
159
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900160 reg = __raw_readl(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900161 reg |= MCT_G_TCON_START;
162 exynos4_mct_write(reg, EXYNOS4_MCT_G_TCON);
163}
164
Doug Anderson89e6a132014-07-05 06:38:55 +0900165static cycle_t notrace _exynos4_frc_read(void)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900166{
167 unsigned int lo, hi;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900168 u32 hi2 = __raw_readl(reg_base + EXYNOS4_MCT_G_CNT_U);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900169
170 do {
171 hi = hi2;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900172 lo = __raw_readl(reg_base + EXYNOS4_MCT_G_CNT_L);
173 hi2 = __raw_readl(reg_base + EXYNOS4_MCT_G_CNT_U);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900174 } while (hi != hi2);
175
176 return ((cycle_t)hi << 32) | lo;
177}
178
Doug Anderson89e6a132014-07-05 06:38:55 +0900179static cycle_t exynos4_frc_read(struct clocksource *cs)
180{
181 return _exynos4_frc_read();
182}
183
Changhwan Younaa421c12011-09-02 14:10:52 +0900184static void exynos4_frc_resume(struct clocksource *cs)
185{
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900186 exynos4_mct_frc_start();
Changhwan Younaa421c12011-09-02 14:10:52 +0900187}
188
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900189struct clocksource mct_frc = {
190 .name = "mct-frc",
191 .rating = 400,
192 .read = exynos4_frc_read,
193 .mask = CLOCKSOURCE_MASK(64),
194 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
Changhwan Younaa421c12011-09-02 14:10:52 +0900195 .resume = exynos4_frc_resume,
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900196};
197
Vincent Guittot93bfb762014-05-02 22:27:01 +0900198static u64 notrace exynos4_read_sched_clock(void)
199{
Doug Anderson89e6a132014-07-05 06:38:55 +0900200 return _exynos4_frc_read();
Vincent Guittot93bfb762014-05-02 22:27:01 +0900201}
202
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900203static struct delay_timer exynos4_delay_timer;
204
205static cycles_t exynos4_read_current_timer(void)
206{
207 return _exynos4_frc_read();
208}
209
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900210static void __init exynos4_clocksource_init(void)
211{
Chirantan Ekbote1d804152014-06-12 00:18:48 +0900212 exynos4_mct_frc_start();
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900213
Amit Daniel Kachhap8bf13a42014-07-05 06:40:23 +0900214 exynos4_delay_timer.read_current_timer = &exynos4_read_current_timer;
215 exynos4_delay_timer.freq = clk_rate;
216 register_current_timer_delay(&exynos4_delay_timer);
217
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900218 if (clocksource_register_hz(&mct_frc, clk_rate))
219 panic("%s: can't register clocksource\n", mct_frc.name);
Vincent Guittot93bfb762014-05-02 22:27:01 +0900220
221 sched_clock_register(exynos4_read_sched_clock, 64, clk_rate);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900222}
223
224static void exynos4_mct_comp0_stop(void)
225{
226 unsigned int tcon;
227
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900228 tcon = __raw_readl(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900229 tcon &= ~(MCT_G_TCON_COMP0_ENABLE | MCT_G_TCON_COMP0_AUTO_INC);
230
231 exynos4_mct_write(tcon, EXYNOS4_MCT_G_TCON);
232 exynos4_mct_write(0, EXYNOS4_MCT_G_INT_ENB);
233}
234
235static void exynos4_mct_comp0_start(enum clock_event_mode mode,
236 unsigned long cycles)
237{
238 unsigned int tcon;
239 cycle_t comp_cycle;
240
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900241 tcon = __raw_readl(reg_base + EXYNOS4_MCT_G_TCON);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900242
243 if (mode == CLOCK_EVT_MODE_PERIODIC) {
244 tcon |= MCT_G_TCON_COMP0_AUTO_INC;
245 exynos4_mct_write(cycles, EXYNOS4_MCT_G_COMP0_ADD_INCR);
246 }
247
248 comp_cycle = exynos4_frc_read(&mct_frc) + cycles;
249 exynos4_mct_write((u32)comp_cycle, EXYNOS4_MCT_G_COMP0_L);
250 exynos4_mct_write((u32)(comp_cycle >> 32), EXYNOS4_MCT_G_COMP0_U);
251
252 exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_ENB);
253
254 tcon |= MCT_G_TCON_COMP0_ENABLE;
255 exynos4_mct_write(tcon , EXYNOS4_MCT_G_TCON);
256}
257
258static int exynos4_comp_set_next_event(unsigned long cycles,
259 struct clock_event_device *evt)
260{
261 exynos4_mct_comp0_start(evt->mode, cycles);
262
263 return 0;
264}
265
266static void exynos4_comp_set_mode(enum clock_event_mode mode,
267 struct clock_event_device *evt)
268{
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800269 unsigned long cycles_per_jiffy;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900270 exynos4_mct_comp0_stop();
271
272 switch (mode) {
273 case CLOCK_EVT_MODE_PERIODIC:
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800274 cycles_per_jiffy =
275 (((unsigned long long) NSEC_PER_SEC / HZ * evt->mult) >> evt->shift);
276 exynos4_mct_comp0_start(mode, cycles_per_jiffy);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900277 break;
278
279 case CLOCK_EVT_MODE_ONESHOT:
280 case CLOCK_EVT_MODE_UNUSED:
281 case CLOCK_EVT_MODE_SHUTDOWN:
282 case CLOCK_EVT_MODE_RESUME:
283 break;
284 }
285}
286
287static struct clock_event_device mct_comp_device = {
288 .name = "mct-comp",
289 .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
290 .rating = 250,
291 .set_next_event = exynos4_comp_set_next_event,
292 .set_mode = exynos4_comp_set_mode,
293};
294
295static irqreturn_t exynos4_mct_comp_isr(int irq, void *dev_id)
296{
297 struct clock_event_device *evt = dev_id;
298
299 exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_CSTAT);
300
301 evt->event_handler(evt);
302
303 return IRQ_HANDLED;
304}
305
306static struct irqaction mct_comp_event_irq = {
307 .name = "mct_comp_irq",
308 .flags = IRQF_TIMER | IRQF_IRQPOLL,
309 .handler = exynos4_mct_comp_isr,
310 .dev_id = &mct_comp_device,
311};
312
313static void exynos4_clockevent_init(void)
314{
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900315 mct_comp_device.cpumask = cpumask_of(0);
Shawn Guo838a2ae2013-01-12 11:50:05 +0000316 clockevents_config_and_register(&mct_comp_device, clk_rate,
317 0xf, 0xffffffff);
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900318 setup_irq(mct_irqs[MCT_G0_IRQ], &mct_comp_event_irq);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900319}
320
Kukjin Kim991a6c72011-12-08 10:04:49 +0900321static DEFINE_PER_CPU(struct mct_clock_event_device, percpu_mct_tick);
322
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900323/* Clock event handling */
324static void exynos4_mct_tick_stop(struct mct_clock_event_device *mevt)
325{
326 unsigned long tmp;
327 unsigned long mask = MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900328 unsigned long offset = mevt->base + MCT_L_TCON_OFFSET;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900329
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900330 tmp = __raw_readl(reg_base + offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900331 if (tmp & mask) {
332 tmp &= ~mask;
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900333 exynos4_mct_write(tmp, offset);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900334 }
335}
336
337static void exynos4_mct_tick_start(unsigned long cycles,
338 struct mct_clock_event_device *mevt)
339{
340 unsigned long tmp;
341
342 exynos4_mct_tick_stop(mevt);
343
344 tmp = (1 << 31) | cycles; /* MCT_L_UPDATE_ICNTB */
345
346 /* update interrupt count buffer */
347 exynos4_mct_write(tmp, mevt->base + MCT_L_ICNTB_OFFSET);
348
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300349 /* enable MCT tick interrupt */
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900350 exynos4_mct_write(0x1, mevt->base + MCT_L_INT_ENB_OFFSET);
351
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900352 tmp = __raw_readl(reg_base + mevt->base + MCT_L_TCON_OFFSET);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900353 tmp |= MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START |
354 MCT_L_TCON_INTERVAL_MODE;
355 exynos4_mct_write(tmp, mevt->base + MCT_L_TCON_OFFSET);
356}
357
358static int exynos4_tick_set_next_event(unsigned long cycles,
359 struct clock_event_device *evt)
360{
Marc Zyngiere700e412011-11-03 11:13:12 +0900361 struct mct_clock_event_device *mevt = this_cpu_ptr(&percpu_mct_tick);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900362
363 exynos4_mct_tick_start(cycles, mevt);
364
365 return 0;
366}
367
368static inline void exynos4_tick_set_mode(enum clock_event_mode mode,
369 struct clock_event_device *evt)
370{
Marc Zyngiere700e412011-11-03 11:13:12 +0900371 struct mct_clock_event_device *mevt = this_cpu_ptr(&percpu_mct_tick);
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800372 unsigned long cycles_per_jiffy;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900373
374 exynos4_mct_tick_stop(mevt);
375
376 switch (mode) {
377 case CLOCK_EVT_MODE_PERIODIC:
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800378 cycles_per_jiffy =
379 (((unsigned long long) NSEC_PER_SEC / HZ * evt->mult) >> evt->shift);
380 exynos4_mct_tick_start(cycles_per_jiffy, mevt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900381 break;
382
383 case CLOCK_EVT_MODE_ONESHOT:
384 case CLOCK_EVT_MODE_UNUSED:
385 case CLOCK_EVT_MODE_SHUTDOWN:
386 case CLOCK_EVT_MODE_RESUME:
387 break;
388 }
389}
390
Changhwan Younc8987472011-10-04 17:09:26 +0900391static int exynos4_mct_tick_clear(struct mct_clock_event_device *mevt)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900392{
Stephen Boydee98d272013-02-15 16:40:51 -0800393 struct clock_event_device *evt = &mevt->evt;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900394
395 /*
396 * This is for supporting oneshot mode.
397 * Mct would generate interrupt periodically
398 * without explicit stopping.
399 */
400 if (evt->mode != CLOCK_EVT_MODE_PERIODIC)
401 exynos4_mct_tick_stop(mevt);
402
403 /* Clear the MCT tick interrupt */
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900404 if (__raw_readl(reg_base + mevt->base + MCT_L_INT_CSTAT_OFFSET) & 1) {
Changhwan Youn3a062282011-10-04 17:02:58 +0900405 exynos4_mct_write(0x1, mevt->base + MCT_L_INT_CSTAT_OFFSET);
406 return 1;
407 } else {
408 return 0;
409 }
410}
411
412static irqreturn_t exynos4_mct_tick_isr(int irq, void *dev_id)
413{
414 struct mct_clock_event_device *mevt = dev_id;
Stephen Boydee98d272013-02-15 16:40:51 -0800415 struct clock_event_device *evt = &mevt->evt;
Changhwan Youn3a062282011-10-04 17:02:58 +0900416
417 exynos4_mct_tick_clear(mevt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900418
419 evt->event_handler(evt);
420
421 return IRQ_HANDLED;
422}
423
Paul Gortmaker8c37bb32013-06-19 11:32:08 -0400424static int exynos4_local_timer_setup(struct clock_event_device *evt)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900425{
Marc Zyngiere700e412011-11-03 11:13:12 +0900426 struct mct_clock_event_device *mevt;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900427 unsigned int cpu = smp_processor_id();
428
Stephen Boydee98d272013-02-15 16:40:51 -0800429 mevt = container_of(evt, struct mct_clock_event_device, evt);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900430
Marc Zyngiere700e412011-11-03 11:13:12 +0900431 mevt->base = EXYNOS4_MCT_L_BASE(cpu);
Dan Carpenter09e15172014-03-01 16:57:14 +0300432 snprintf(mevt->name, sizeof(mevt->name), "mct_tick%d", cpu);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900433
Marc Zyngiere700e412011-11-03 11:13:12 +0900434 evt->name = mevt->name;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900435 evt->cpumask = cpumask_of(cpu);
436 evt->set_next_event = exynos4_tick_set_next_event;
437 evt->set_mode = exynos4_tick_set_mode;
438 evt->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT;
439 evt->rating = 450;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900440
Changhwan Youn4d2e4d72012-03-09 15:09:21 -0800441 exynos4_mct_write(TICK_BASE_CNT, mevt->base + MCT_L_TCNTB_OFFSET);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900442
Changhwan Youn3a062282011-10-04 17:02:58 +0900443 if (mct_int_type == MCT_INT_SPI) {
Chander Kashyap7114cd72013-06-19 00:29:35 +0900444 evt->irq = mct_irqs[MCT_L0_IRQ + cpu];
445 if (request_irq(evt->irq, exynos4_mct_tick_isr,
446 IRQF_TIMER | IRQF_NOBALANCING,
447 evt->name, mevt)) {
448 pr_err("exynos-mct: cannot register IRQ %d\n",
449 evt->irq);
450 return -EIO;
Changhwan Youn3a062282011-10-04 17:02:58 +0900451 }
Thomas Gleixner30ccf032014-04-16 14:36:45 +0000452 irq_force_affinity(mct_irqs[MCT_L0_IRQ + cpu], cpumask_of(cpu));
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900453 } else {
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900454 enable_percpu_irq(mct_irqs[MCT_L0_IRQ], 0);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900455 }
Krzysztof Kozlowski8db6e512014-04-16 14:36:45 +0000456 clockevents_config_and_register(evt, clk_rate / (TICK_BASE_CNT + 1),
457 0xf, 0x7fffffff);
Kukjin Kim4d487d72011-08-24 16:07:39 +0900458
459 return 0;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900460}
461
Marc Zyngiera8cb6042012-01-10 19:44:19 +0000462static void exynos4_local_timer_stop(struct clock_event_device *evt)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900463{
Marc Zyngier28af6902011-07-22 12:52:37 +0100464 evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
Marc Zyngiere700e412011-11-03 11:13:12 +0900465 if (mct_int_type == MCT_INT_SPI)
Chander Kashyap7114cd72013-06-19 00:29:35 +0900466 free_irq(evt->irq, this_cpu_ptr(&percpu_mct_tick));
Marc Zyngiere700e412011-11-03 11:13:12 +0900467 else
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900468 disable_percpu_irq(mct_irqs[MCT_L0_IRQ]);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900469}
Marc Zyngiera8cb6042012-01-10 19:44:19 +0000470
Olof Johansson47dcd352013-07-23 14:51:34 -0700471static int exynos4_mct_cpu_notify(struct notifier_block *self,
Stephen Boydee98d272013-02-15 16:40:51 -0800472 unsigned long action, void *hcpu)
473{
474 struct mct_clock_event_device *mevt;
475
476 /*
477 * Grab cpu pointer in each case to avoid spurious
478 * preemptible warnings
479 */
480 switch (action & ~CPU_TASKS_FROZEN) {
481 case CPU_STARTING:
482 mevt = this_cpu_ptr(&percpu_mct_tick);
483 exynos4_local_timer_setup(&mevt->evt);
484 break;
485 case CPU_DYING:
486 mevt = this_cpu_ptr(&percpu_mct_tick);
487 exynos4_local_timer_stop(&mevt->evt);
488 break;
489 }
490
491 return NOTIFY_OK;
492}
493
Olof Johansson47dcd352013-07-23 14:51:34 -0700494static struct notifier_block exynos4_mct_cpu_nb = {
Stephen Boydee98d272013-02-15 16:40:51 -0800495 .notifier_call = exynos4_mct_cpu_notify,
Marc Zyngiera8cb6042012-01-10 19:44:19 +0000496};
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900497
Arnd Bergmann19ce4f42013-04-09 22:24:06 +0200498static void __init exynos4_timer_resources(struct device_node *np, void __iomem *base)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900499{
Stephen Boydee98d272013-02-15 16:40:51 -0800500 int err;
501 struct mct_clock_event_device *mevt = this_cpu_ptr(&percpu_mct_tick);
Thomas Abrahamca9048e2013-03-09 17:10:37 +0900502 struct clk *mct_clk, *tick_clk;
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900503
Thomas Abraham415ac2e2013-03-09 17:10:31 +0900504 tick_clk = np ? of_clk_get_by_name(np, "fin_pll") :
505 clk_get(NULL, "fin_pll");
506 if (IS_ERR(tick_clk))
507 panic("%s: unable to determine tick clock rate\n", __func__);
508 clk_rate = clk_get_rate(tick_clk);
Marc Zyngiere700e412011-11-03 11:13:12 +0900509
Thomas Abrahamca9048e2013-03-09 17:10:37 +0900510 mct_clk = np ? of_clk_get_by_name(np, "mct") : clk_get(NULL, "mct");
511 if (IS_ERR(mct_clk))
512 panic("%s: unable to retrieve mct clock instance\n", __func__);
513 clk_prepare_enable(mct_clk);
Marc Zyngiere700e412011-11-03 11:13:12 +0900514
Arnd Bergmann228e3022013-04-09 22:07:37 +0200515 reg_base = base;
Thomas Abraham36ba5d52013-03-09 16:01:52 +0900516 if (!reg_base)
517 panic("%s: unable to ioremap mct address space\n", __func__);
Thomas Abrahama1ba7a72013-03-09 16:01:47 +0900518
Marc Zyngiere700e412011-11-03 11:13:12 +0900519 if (mct_int_type == MCT_INT_PPI) {
Marc Zyngiere700e412011-11-03 11:13:12 +0900520
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900521 err = request_percpu_irq(mct_irqs[MCT_L0_IRQ],
Marc Zyngiere700e412011-11-03 11:13:12 +0900522 exynos4_mct_tick_isr, "MCT",
523 &percpu_mct_tick);
524 WARN(err, "MCT: can't request IRQ %d (%d)\n",
Thomas Abrahamc371dc62013-03-09 16:01:50 +0900525 mct_irqs[MCT_L0_IRQ], err);
Tomasz Figa5df718d2013-09-25 12:00:59 +0200526 } else {
527 irq_set_affinity(mct_irqs[MCT_L0_IRQ], cpumask_of(0));
Marc Zyngiere700e412011-11-03 11:13:12 +0900528 }
Marc Zyngiera8cb6042012-01-10 19:44:19 +0000529
Stephen Boydee98d272013-02-15 16:40:51 -0800530 err = register_cpu_notifier(&exynos4_mct_cpu_nb);
531 if (err)
532 goto out_irq;
533
534 /* Immediately configure the timer on the boot CPU */
535 exynos4_local_timer_setup(&mevt->evt);
536 return;
537
538out_irq:
539 free_percpu_irq(mct_irqs[MCT_L0_IRQ], &percpu_mct_tick);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900540}
541
Arnd Bergmann034c0972013-04-10 11:35:29 +0200542void __init mct_init(void __iomem *base, int irq_g0, int irq_l0, int irq_l1)
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900543{
Arnd Bergmann034c0972013-04-10 11:35:29 +0200544 mct_irqs[MCT_G0_IRQ] = irq_g0;
545 mct_irqs[MCT_L0_IRQ] = irq_l0;
546 mct_irqs[MCT_L1_IRQ] = irq_l1;
547 mct_int_type = MCT_INT_SPI;
Kukjin Kim2edb36c2012-11-15 15:48:56 +0900548
Arnd Bergmann034c0972013-04-10 11:35:29 +0200549 exynos4_timer_resources(NULL, base);
Changhwan Youn30d8bea2011-03-11 10:39:57 +0900550 exynos4_clocksource_init();
551 exynos4_clockevent_init();
552}
Arnd Bergmann228e3022013-04-09 22:07:37 +0200553
554static void __init mct_init_dt(struct device_node *np, unsigned int int_type)
555{
556 u32 nr_irqs, i;
557
558 mct_int_type = int_type;
559
560 /* This driver uses only one global timer interrupt */
561 mct_irqs[MCT_G0_IRQ] = irq_of_parse_and_map(np, MCT_G0_IRQ);
562
563 /*
564 * Find out the number of local irqs specified. The local
565 * timer irqs are specified after the four global timer
566 * irqs are specified.
567 */
Arnd Bergmannf4636d02013-04-19 22:00:04 +0200568#ifdef CONFIG_OF
Arnd Bergmann228e3022013-04-09 22:07:37 +0200569 nr_irqs = of_irq_count(np);
Arnd Bergmannf4636d02013-04-19 22:00:04 +0200570#else
571 nr_irqs = 0;
572#endif
Arnd Bergmann228e3022013-04-09 22:07:37 +0200573 for (i = MCT_L0_IRQ; i < nr_irqs; i++)
574 mct_irqs[i] = irq_of_parse_and_map(np, i);
575
Arnd Bergmann19ce4f42013-04-09 22:24:06 +0200576 exynos4_timer_resources(np, of_iomap(np, 0));
Arnd Bergmann228e3022013-04-09 22:07:37 +0200577 exynos4_clocksource_init();
578 exynos4_clockevent_init();
579}
580
581
582static void __init mct_init_spi(struct device_node *np)
583{
584 return mct_init_dt(np, MCT_INT_SPI);
585}
586
587static void __init mct_init_ppi(struct device_node *np)
588{
589 return mct_init_dt(np, MCT_INT_PPI);
590}
591CLOCKSOURCE_OF_DECLARE(exynos4210, "samsung,exynos4210-mct", mct_init_spi);
592CLOCKSOURCE_OF_DECLARE(exynos4412, "samsung,exynos4412-mct", mct_init_ppi);