Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 1 | /* 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 Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 19 | #include <linux/cpu.h> |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/delay.h> |
| 22 | #include <linux/percpu.h> |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 23 | #include <linux/of.h> |
Thomas Abraham | 36ba5d5 | 2013-03-09 16:01:52 +0900 | [diff] [blame] | 24 | #include <linux/of_irq.h> |
| 25 | #include <linux/of_address.h> |
Thomas Abraham | 9fbf0c8 | 2013-03-09 16:10:03 +0900 | [diff] [blame] | 26 | #include <linux/clocksource.h> |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 27 | |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 28 | #include <asm/mach/time.h> |
| 29 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 30 | #define EXYNOS4_MCTREG(x) (x) |
| 31 | #define EXYNOS4_MCT_G_CNT_L EXYNOS4_MCTREG(0x100) |
| 32 | #define EXYNOS4_MCT_G_CNT_U EXYNOS4_MCTREG(0x104) |
| 33 | #define EXYNOS4_MCT_G_CNT_WSTAT EXYNOS4_MCTREG(0x110) |
| 34 | #define EXYNOS4_MCT_G_COMP0_L EXYNOS4_MCTREG(0x200) |
| 35 | #define EXYNOS4_MCT_G_COMP0_U EXYNOS4_MCTREG(0x204) |
| 36 | #define EXYNOS4_MCT_G_COMP0_ADD_INCR EXYNOS4_MCTREG(0x208) |
| 37 | #define EXYNOS4_MCT_G_TCON EXYNOS4_MCTREG(0x240) |
| 38 | #define EXYNOS4_MCT_G_INT_CSTAT EXYNOS4_MCTREG(0x244) |
| 39 | #define EXYNOS4_MCT_G_INT_ENB EXYNOS4_MCTREG(0x248) |
| 40 | #define EXYNOS4_MCT_G_WSTAT EXYNOS4_MCTREG(0x24C) |
| 41 | #define _EXYNOS4_MCT_L_BASE EXYNOS4_MCTREG(0x300) |
| 42 | #define EXYNOS4_MCT_L_BASE(x) (_EXYNOS4_MCT_L_BASE + (0x100 * x)) |
| 43 | #define EXYNOS4_MCT_L_MASK (0xffffff00) |
| 44 | |
| 45 | #define MCT_L_TCNTB_OFFSET (0x00) |
| 46 | #define MCT_L_ICNTB_OFFSET (0x08) |
| 47 | #define MCT_L_TCON_OFFSET (0x20) |
| 48 | #define MCT_L_INT_CSTAT_OFFSET (0x30) |
| 49 | #define MCT_L_INT_ENB_OFFSET (0x34) |
| 50 | #define MCT_L_WSTAT_OFFSET (0x40) |
| 51 | #define MCT_G_TCON_START (1 << 8) |
| 52 | #define MCT_G_TCON_COMP0_AUTO_INC (1 << 1) |
| 53 | #define MCT_G_TCON_COMP0_ENABLE (1 << 0) |
| 54 | #define MCT_L_TCON_INTERVAL_MODE (1 << 2) |
| 55 | #define MCT_L_TCON_INT_START (1 << 1) |
| 56 | #define MCT_L_TCON_TIMER_START (1 << 0) |
| 57 | |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 58 | #define TICK_BASE_CNT 1 |
| 59 | |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 60 | enum { |
| 61 | MCT_INT_SPI, |
| 62 | MCT_INT_PPI |
| 63 | }; |
| 64 | |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 65 | enum { |
| 66 | MCT_G0_IRQ, |
| 67 | MCT_G1_IRQ, |
| 68 | MCT_G2_IRQ, |
| 69 | MCT_G3_IRQ, |
| 70 | MCT_L0_IRQ, |
| 71 | MCT_L1_IRQ, |
| 72 | MCT_L2_IRQ, |
| 73 | MCT_L3_IRQ, |
| 74 | MCT_NR_IRQS, |
| 75 | }; |
| 76 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 77 | static void __iomem *reg_base; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 78 | static unsigned long clk_rate; |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 79 | static unsigned int mct_int_type; |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 80 | static int mct_irqs[MCT_NR_IRQS]; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 81 | |
| 82 | struct mct_clock_event_device { |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 83 | struct clock_event_device evt; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 84 | unsigned long base; |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 85 | char name[10]; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 86 | }; |
| 87 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 88 | static void exynos4_mct_write(unsigned int value, unsigned long offset) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 89 | { |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 90 | unsigned long stat_addr; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 91 | u32 mask; |
| 92 | u32 i; |
| 93 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 94 | __raw_writel(value, reg_base + offset); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 95 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 96 | if (likely(offset >= EXYNOS4_MCT_L_BASE(0))) { |
| 97 | stat_addr = (offset & ~EXYNOS4_MCT_L_MASK) + MCT_L_WSTAT_OFFSET; |
| 98 | switch (offset & EXYNOS4_MCT_L_MASK) { |
| 99 | case MCT_L_TCON_OFFSET: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 100 | mask = 1 << 3; /* L_TCON write status */ |
| 101 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 102 | case MCT_L_ICNTB_OFFSET: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 103 | mask = 1 << 1; /* L_ICNTB write status */ |
| 104 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 105 | case MCT_L_TCNTB_OFFSET: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 106 | mask = 1 << 0; /* L_TCNTB write status */ |
| 107 | break; |
| 108 | default: |
| 109 | return; |
| 110 | } |
| 111 | } else { |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 112 | switch (offset) { |
| 113 | case EXYNOS4_MCT_G_TCON: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 114 | stat_addr = EXYNOS4_MCT_G_WSTAT; |
| 115 | mask = 1 << 16; /* G_TCON write status */ |
| 116 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 117 | case EXYNOS4_MCT_G_COMP0_L: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 118 | stat_addr = EXYNOS4_MCT_G_WSTAT; |
| 119 | mask = 1 << 0; /* G_COMP0_L write status */ |
| 120 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 121 | case EXYNOS4_MCT_G_COMP0_U: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 122 | stat_addr = EXYNOS4_MCT_G_WSTAT; |
| 123 | mask = 1 << 1; /* G_COMP0_U write status */ |
| 124 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 125 | case EXYNOS4_MCT_G_COMP0_ADD_INCR: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 126 | stat_addr = EXYNOS4_MCT_G_WSTAT; |
| 127 | mask = 1 << 2; /* G_COMP0_ADD_INCR w status */ |
| 128 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 129 | case EXYNOS4_MCT_G_CNT_L: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 130 | stat_addr = EXYNOS4_MCT_G_CNT_WSTAT; |
| 131 | mask = 1 << 0; /* G_CNT_L write status */ |
| 132 | break; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 133 | case EXYNOS4_MCT_G_CNT_U: |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 134 | stat_addr = EXYNOS4_MCT_G_CNT_WSTAT; |
| 135 | mask = 1 << 1; /* G_CNT_U write status */ |
| 136 | break; |
| 137 | default: |
| 138 | return; |
| 139 | } |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | /* Wait maximum 1 ms until written values are applied */ |
| 143 | for (i = 0; i < loops_per_jiffy / 1000 * HZ; i++) |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 144 | if (__raw_readl(reg_base + stat_addr) & mask) { |
| 145 | __raw_writel(mask, reg_base + stat_addr); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 146 | return; |
| 147 | } |
| 148 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 149 | panic("MCT hangs after writing %d (offset:0x%lx)\n", value, offset); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | /* Clocksource handling */ |
| 153 | static void exynos4_mct_frc_start(u32 hi, u32 lo) |
| 154 | { |
| 155 | u32 reg; |
| 156 | |
| 157 | exynos4_mct_write(lo, EXYNOS4_MCT_G_CNT_L); |
| 158 | exynos4_mct_write(hi, EXYNOS4_MCT_G_CNT_U); |
| 159 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 160 | reg = __raw_readl(reg_base + EXYNOS4_MCT_G_TCON); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 161 | reg |= MCT_G_TCON_START; |
| 162 | exynos4_mct_write(reg, EXYNOS4_MCT_G_TCON); |
| 163 | } |
| 164 | |
| 165 | static cycle_t exynos4_frc_read(struct clocksource *cs) |
| 166 | { |
| 167 | unsigned int lo, hi; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 168 | u32 hi2 = __raw_readl(reg_base + EXYNOS4_MCT_G_CNT_U); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 169 | |
| 170 | do { |
| 171 | hi = hi2; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 172 | lo = __raw_readl(reg_base + EXYNOS4_MCT_G_CNT_L); |
| 173 | hi2 = __raw_readl(reg_base + EXYNOS4_MCT_G_CNT_U); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 174 | } while (hi != hi2); |
| 175 | |
| 176 | return ((cycle_t)hi << 32) | lo; |
| 177 | } |
| 178 | |
Changhwan Youn | aa421c1 | 2011-09-02 14:10:52 +0900 | [diff] [blame] | 179 | static void exynos4_frc_resume(struct clocksource *cs) |
| 180 | { |
| 181 | exynos4_mct_frc_start(0, 0); |
| 182 | } |
| 183 | |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 184 | struct clocksource mct_frc = { |
| 185 | .name = "mct-frc", |
| 186 | .rating = 400, |
| 187 | .read = exynos4_frc_read, |
| 188 | .mask = CLOCKSOURCE_MASK(64), |
| 189 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
Changhwan Youn | aa421c1 | 2011-09-02 14:10:52 +0900 | [diff] [blame] | 190 | .resume = exynos4_frc_resume, |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 191 | }; |
| 192 | |
| 193 | static void __init exynos4_clocksource_init(void) |
| 194 | { |
| 195 | exynos4_mct_frc_start(0, 0); |
| 196 | |
| 197 | if (clocksource_register_hz(&mct_frc, clk_rate)) |
| 198 | panic("%s: can't register clocksource\n", mct_frc.name); |
| 199 | } |
| 200 | |
| 201 | static void exynos4_mct_comp0_stop(void) |
| 202 | { |
| 203 | unsigned int tcon; |
| 204 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 205 | tcon = __raw_readl(reg_base + EXYNOS4_MCT_G_TCON); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 206 | tcon &= ~(MCT_G_TCON_COMP0_ENABLE | MCT_G_TCON_COMP0_AUTO_INC); |
| 207 | |
| 208 | exynos4_mct_write(tcon, EXYNOS4_MCT_G_TCON); |
| 209 | exynos4_mct_write(0, EXYNOS4_MCT_G_INT_ENB); |
| 210 | } |
| 211 | |
| 212 | static void exynos4_mct_comp0_start(enum clock_event_mode mode, |
| 213 | unsigned long cycles) |
| 214 | { |
| 215 | unsigned int tcon; |
| 216 | cycle_t comp_cycle; |
| 217 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 218 | tcon = __raw_readl(reg_base + EXYNOS4_MCT_G_TCON); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 219 | |
| 220 | if (mode == CLOCK_EVT_MODE_PERIODIC) { |
| 221 | tcon |= MCT_G_TCON_COMP0_AUTO_INC; |
| 222 | exynos4_mct_write(cycles, EXYNOS4_MCT_G_COMP0_ADD_INCR); |
| 223 | } |
| 224 | |
| 225 | comp_cycle = exynos4_frc_read(&mct_frc) + cycles; |
| 226 | exynos4_mct_write((u32)comp_cycle, EXYNOS4_MCT_G_COMP0_L); |
| 227 | exynos4_mct_write((u32)(comp_cycle >> 32), EXYNOS4_MCT_G_COMP0_U); |
| 228 | |
| 229 | exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_ENB); |
| 230 | |
| 231 | tcon |= MCT_G_TCON_COMP0_ENABLE; |
| 232 | exynos4_mct_write(tcon , EXYNOS4_MCT_G_TCON); |
| 233 | } |
| 234 | |
| 235 | static int exynos4_comp_set_next_event(unsigned long cycles, |
| 236 | struct clock_event_device *evt) |
| 237 | { |
| 238 | exynos4_mct_comp0_start(evt->mode, cycles); |
| 239 | |
| 240 | return 0; |
| 241 | } |
| 242 | |
| 243 | static void exynos4_comp_set_mode(enum clock_event_mode mode, |
| 244 | struct clock_event_device *evt) |
| 245 | { |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 246 | unsigned long cycles_per_jiffy; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 247 | exynos4_mct_comp0_stop(); |
| 248 | |
| 249 | switch (mode) { |
| 250 | case CLOCK_EVT_MODE_PERIODIC: |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 251 | cycles_per_jiffy = |
| 252 | (((unsigned long long) NSEC_PER_SEC / HZ * evt->mult) >> evt->shift); |
| 253 | exynos4_mct_comp0_start(mode, cycles_per_jiffy); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 254 | break; |
| 255 | |
| 256 | case CLOCK_EVT_MODE_ONESHOT: |
| 257 | case CLOCK_EVT_MODE_UNUSED: |
| 258 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 259 | case CLOCK_EVT_MODE_RESUME: |
| 260 | break; |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | static struct clock_event_device mct_comp_device = { |
| 265 | .name = "mct-comp", |
| 266 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
| 267 | .rating = 250, |
| 268 | .set_next_event = exynos4_comp_set_next_event, |
| 269 | .set_mode = exynos4_comp_set_mode, |
| 270 | }; |
| 271 | |
| 272 | static irqreturn_t exynos4_mct_comp_isr(int irq, void *dev_id) |
| 273 | { |
| 274 | struct clock_event_device *evt = dev_id; |
| 275 | |
| 276 | exynos4_mct_write(0x1, EXYNOS4_MCT_G_INT_CSTAT); |
| 277 | |
| 278 | evt->event_handler(evt); |
| 279 | |
| 280 | return IRQ_HANDLED; |
| 281 | } |
| 282 | |
| 283 | static struct irqaction mct_comp_event_irq = { |
| 284 | .name = "mct_comp_irq", |
| 285 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
| 286 | .handler = exynos4_mct_comp_isr, |
| 287 | .dev_id = &mct_comp_device, |
| 288 | }; |
| 289 | |
| 290 | static void exynos4_clockevent_init(void) |
| 291 | { |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 292 | mct_comp_device.cpumask = cpumask_of(0); |
Shawn Guo | 838a2ae | 2013-01-12 11:50:05 +0000 | [diff] [blame] | 293 | clockevents_config_and_register(&mct_comp_device, clk_rate, |
| 294 | 0xf, 0xffffffff); |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 295 | setup_irq(mct_irqs[MCT_G0_IRQ], &mct_comp_event_irq); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 296 | } |
| 297 | |
Kukjin Kim | 991a6c7 | 2011-12-08 10:04:49 +0900 | [diff] [blame] | 298 | static DEFINE_PER_CPU(struct mct_clock_event_device, percpu_mct_tick); |
| 299 | |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 300 | /* Clock event handling */ |
| 301 | static void exynos4_mct_tick_stop(struct mct_clock_event_device *mevt) |
| 302 | { |
| 303 | unsigned long tmp; |
| 304 | unsigned long mask = MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 305 | unsigned long offset = mevt->base + MCT_L_TCON_OFFSET; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 306 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 307 | tmp = __raw_readl(reg_base + offset); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 308 | if (tmp & mask) { |
| 309 | tmp &= ~mask; |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 310 | exynos4_mct_write(tmp, offset); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 311 | } |
| 312 | } |
| 313 | |
| 314 | static void exynos4_mct_tick_start(unsigned long cycles, |
| 315 | struct mct_clock_event_device *mevt) |
| 316 | { |
| 317 | unsigned long tmp; |
| 318 | |
| 319 | exynos4_mct_tick_stop(mevt); |
| 320 | |
| 321 | tmp = (1 << 31) | cycles; /* MCT_L_UPDATE_ICNTB */ |
| 322 | |
| 323 | /* update interrupt count buffer */ |
| 324 | exynos4_mct_write(tmp, mevt->base + MCT_L_ICNTB_OFFSET); |
| 325 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 326 | /* enable MCT tick interrupt */ |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 327 | exynos4_mct_write(0x1, mevt->base + MCT_L_INT_ENB_OFFSET); |
| 328 | |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 329 | tmp = __raw_readl(reg_base + mevt->base + MCT_L_TCON_OFFSET); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 330 | tmp |= MCT_L_TCON_INT_START | MCT_L_TCON_TIMER_START | |
| 331 | MCT_L_TCON_INTERVAL_MODE; |
| 332 | exynos4_mct_write(tmp, mevt->base + MCT_L_TCON_OFFSET); |
| 333 | } |
| 334 | |
| 335 | static int exynos4_tick_set_next_event(unsigned long cycles, |
| 336 | struct clock_event_device *evt) |
| 337 | { |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 338 | struct mct_clock_event_device *mevt = this_cpu_ptr(&percpu_mct_tick); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 339 | |
| 340 | exynos4_mct_tick_start(cycles, mevt); |
| 341 | |
| 342 | return 0; |
| 343 | } |
| 344 | |
| 345 | static inline void exynos4_tick_set_mode(enum clock_event_mode mode, |
| 346 | struct clock_event_device *evt) |
| 347 | { |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 348 | struct mct_clock_event_device *mevt = this_cpu_ptr(&percpu_mct_tick); |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 349 | unsigned long cycles_per_jiffy; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 350 | |
| 351 | exynos4_mct_tick_stop(mevt); |
| 352 | |
| 353 | switch (mode) { |
| 354 | case CLOCK_EVT_MODE_PERIODIC: |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 355 | cycles_per_jiffy = |
| 356 | (((unsigned long long) NSEC_PER_SEC / HZ * evt->mult) >> evt->shift); |
| 357 | exynos4_mct_tick_start(cycles_per_jiffy, mevt); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 358 | break; |
| 359 | |
| 360 | case CLOCK_EVT_MODE_ONESHOT: |
| 361 | case CLOCK_EVT_MODE_UNUSED: |
| 362 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 363 | case CLOCK_EVT_MODE_RESUME: |
| 364 | break; |
| 365 | } |
| 366 | } |
| 367 | |
Changhwan Youn | c898747 | 2011-10-04 17:09:26 +0900 | [diff] [blame] | 368 | static int exynos4_mct_tick_clear(struct mct_clock_event_device *mevt) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 369 | { |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 370 | struct clock_event_device *evt = &mevt->evt; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 371 | |
| 372 | /* |
| 373 | * This is for supporting oneshot mode. |
| 374 | * Mct would generate interrupt periodically |
| 375 | * without explicit stopping. |
| 376 | */ |
| 377 | if (evt->mode != CLOCK_EVT_MODE_PERIODIC) |
| 378 | exynos4_mct_tick_stop(mevt); |
| 379 | |
| 380 | /* Clear the MCT tick interrupt */ |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 381 | if (__raw_readl(reg_base + mevt->base + MCT_L_INT_CSTAT_OFFSET) & 1) { |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 382 | exynos4_mct_write(0x1, mevt->base + MCT_L_INT_CSTAT_OFFSET); |
| 383 | return 1; |
| 384 | } else { |
| 385 | return 0; |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | static irqreturn_t exynos4_mct_tick_isr(int irq, void *dev_id) |
| 390 | { |
| 391 | struct mct_clock_event_device *mevt = dev_id; |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 392 | struct clock_event_device *evt = &mevt->evt; |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 393 | |
| 394 | exynos4_mct_tick_clear(mevt); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 395 | |
| 396 | evt->event_handler(evt); |
| 397 | |
| 398 | return IRQ_HANDLED; |
| 399 | } |
| 400 | |
Paul Gortmaker | 8c37bb3 | 2013-06-19 11:32:08 -0400 | [diff] [blame] | 401 | static int exynos4_local_timer_setup(struct clock_event_device *evt) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 402 | { |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 403 | struct mct_clock_event_device *mevt; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 404 | unsigned int cpu = smp_processor_id(); |
| 405 | |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 406 | mevt = container_of(evt, struct mct_clock_event_device, evt); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 407 | |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 408 | mevt->base = EXYNOS4_MCT_L_BASE(cpu); |
| 409 | sprintf(mevt->name, "mct_tick%d", cpu); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 410 | |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 411 | evt->name = mevt->name; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 412 | evt->cpumask = cpumask_of(cpu); |
| 413 | evt->set_next_event = exynos4_tick_set_next_event; |
| 414 | evt->set_mode = exynos4_tick_set_mode; |
| 415 | evt->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT; |
| 416 | evt->rating = 450; |
Shawn Guo | 838a2ae | 2013-01-12 11:50:05 +0000 | [diff] [blame] | 417 | clockevents_config_and_register(evt, clk_rate / (TICK_BASE_CNT + 1), |
| 418 | 0xf, 0x7fffffff); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 419 | |
Changhwan Youn | 4d2e4d7 | 2012-03-09 15:09:21 -0800 | [diff] [blame] | 420 | exynos4_mct_write(TICK_BASE_CNT, mevt->base + MCT_L_TCNTB_OFFSET); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 421 | |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 422 | if (mct_int_type == MCT_INT_SPI) { |
Chander Kashyap | 7114cd7 | 2013-06-19 00:29:35 +0900 | [diff] [blame] | 423 | evt->irq = mct_irqs[MCT_L0_IRQ + cpu]; |
| 424 | if (request_irq(evt->irq, exynos4_mct_tick_isr, |
| 425 | IRQF_TIMER | IRQF_NOBALANCING, |
| 426 | evt->name, mevt)) { |
| 427 | pr_err("exynos-mct: cannot register IRQ %d\n", |
| 428 | evt->irq); |
| 429 | return -EIO; |
Changhwan Youn | 3a06228 | 2011-10-04 17:02:58 +0900 | [diff] [blame] | 430 | } |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 431 | } else { |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 432 | enable_percpu_irq(mct_irqs[MCT_L0_IRQ], 0); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 433 | } |
Kukjin Kim | 4d487d7 | 2011-08-24 16:07:39 +0900 | [diff] [blame] | 434 | |
| 435 | return 0; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 436 | } |
| 437 | |
Marc Zyngier | a8cb604 | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 438 | static void exynos4_local_timer_stop(struct clock_event_device *evt) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 439 | { |
Marc Zyngier | 28af690 | 2011-07-22 12:52:37 +0100 | [diff] [blame] | 440 | evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt); |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 441 | if (mct_int_type == MCT_INT_SPI) |
Chander Kashyap | 7114cd7 | 2013-06-19 00:29:35 +0900 | [diff] [blame] | 442 | free_irq(evt->irq, this_cpu_ptr(&percpu_mct_tick)); |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 443 | else |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 444 | disable_percpu_irq(mct_irqs[MCT_L0_IRQ]); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 445 | } |
Marc Zyngier | a8cb604 | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 446 | |
Olof Johansson | 47dcd35 | 2013-07-23 14:51:34 -0700 | [diff] [blame] | 447 | static int exynos4_mct_cpu_notify(struct notifier_block *self, |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 448 | unsigned long action, void *hcpu) |
| 449 | { |
| 450 | struct mct_clock_event_device *mevt; |
Tomasz Figa | 5df718d | 2013-09-25 12:00:59 +0200 | [diff] [blame^] | 451 | unsigned int cpu; |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 452 | |
| 453 | /* |
| 454 | * Grab cpu pointer in each case to avoid spurious |
| 455 | * preemptible warnings |
| 456 | */ |
| 457 | switch (action & ~CPU_TASKS_FROZEN) { |
| 458 | case CPU_STARTING: |
| 459 | mevt = this_cpu_ptr(&percpu_mct_tick); |
| 460 | exynos4_local_timer_setup(&mevt->evt); |
| 461 | break; |
Tomasz Figa | 5df718d | 2013-09-25 12:00:59 +0200 | [diff] [blame^] | 462 | case CPU_ONLINE: |
| 463 | cpu = (unsigned long)hcpu; |
| 464 | if (mct_int_type == MCT_INT_SPI) |
| 465 | irq_set_affinity(mct_irqs[MCT_L0_IRQ + cpu], |
| 466 | cpumask_of(cpu)); |
| 467 | break; |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 468 | case CPU_DYING: |
| 469 | mevt = this_cpu_ptr(&percpu_mct_tick); |
| 470 | exynos4_local_timer_stop(&mevt->evt); |
| 471 | break; |
| 472 | } |
| 473 | |
| 474 | return NOTIFY_OK; |
| 475 | } |
| 476 | |
Olof Johansson | 47dcd35 | 2013-07-23 14:51:34 -0700 | [diff] [blame] | 477 | static struct notifier_block exynos4_mct_cpu_nb = { |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 478 | .notifier_call = exynos4_mct_cpu_notify, |
Marc Zyngier | a8cb604 | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 479 | }; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 480 | |
Arnd Bergmann | 19ce4f4 | 2013-04-09 22:24:06 +0200 | [diff] [blame] | 481 | static void __init exynos4_timer_resources(struct device_node *np, void __iomem *base) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 482 | { |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 483 | int err; |
| 484 | struct mct_clock_event_device *mevt = this_cpu_ptr(&percpu_mct_tick); |
Thomas Abraham | ca9048e | 2013-03-09 17:10:37 +0900 | [diff] [blame] | 485 | struct clk *mct_clk, *tick_clk; |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 486 | |
Thomas Abraham | 415ac2e | 2013-03-09 17:10:31 +0900 | [diff] [blame] | 487 | tick_clk = np ? of_clk_get_by_name(np, "fin_pll") : |
| 488 | clk_get(NULL, "fin_pll"); |
| 489 | if (IS_ERR(tick_clk)) |
| 490 | panic("%s: unable to determine tick clock rate\n", __func__); |
| 491 | clk_rate = clk_get_rate(tick_clk); |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 492 | |
Thomas Abraham | ca9048e | 2013-03-09 17:10:37 +0900 | [diff] [blame] | 493 | mct_clk = np ? of_clk_get_by_name(np, "mct") : clk_get(NULL, "mct"); |
| 494 | if (IS_ERR(mct_clk)) |
| 495 | panic("%s: unable to retrieve mct clock instance\n", __func__); |
| 496 | clk_prepare_enable(mct_clk); |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 497 | |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 498 | reg_base = base; |
Thomas Abraham | 36ba5d5 | 2013-03-09 16:01:52 +0900 | [diff] [blame] | 499 | if (!reg_base) |
| 500 | panic("%s: unable to ioremap mct address space\n", __func__); |
Thomas Abraham | a1ba7a7 | 2013-03-09 16:01:47 +0900 | [diff] [blame] | 501 | |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 502 | if (mct_int_type == MCT_INT_PPI) { |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 503 | |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 504 | err = request_percpu_irq(mct_irqs[MCT_L0_IRQ], |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 505 | exynos4_mct_tick_isr, "MCT", |
| 506 | &percpu_mct_tick); |
| 507 | WARN(err, "MCT: can't request IRQ %d (%d)\n", |
Thomas Abraham | c371dc6 | 2013-03-09 16:01:50 +0900 | [diff] [blame] | 508 | mct_irqs[MCT_L0_IRQ], err); |
Tomasz Figa | 5df718d | 2013-09-25 12:00:59 +0200 | [diff] [blame^] | 509 | } else { |
| 510 | irq_set_affinity(mct_irqs[MCT_L0_IRQ], cpumask_of(0)); |
Marc Zyngier | e700e41 | 2011-11-03 11:13:12 +0900 | [diff] [blame] | 511 | } |
Marc Zyngier | a8cb604 | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 512 | |
Stephen Boyd | ee98d27 | 2013-02-15 16:40:51 -0800 | [diff] [blame] | 513 | err = register_cpu_notifier(&exynos4_mct_cpu_nb); |
| 514 | if (err) |
| 515 | goto out_irq; |
| 516 | |
| 517 | /* Immediately configure the timer on the boot CPU */ |
| 518 | exynos4_local_timer_setup(&mevt->evt); |
| 519 | return; |
| 520 | |
| 521 | out_irq: |
| 522 | free_percpu_irq(mct_irqs[MCT_L0_IRQ], &percpu_mct_tick); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 523 | } |
| 524 | |
Arnd Bergmann | 034c097 | 2013-04-10 11:35:29 +0200 | [diff] [blame] | 525 | void __init mct_init(void __iomem *base, int irq_g0, int irq_l0, int irq_l1) |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 526 | { |
Arnd Bergmann | 034c097 | 2013-04-10 11:35:29 +0200 | [diff] [blame] | 527 | mct_irqs[MCT_G0_IRQ] = irq_g0; |
| 528 | mct_irqs[MCT_L0_IRQ] = irq_l0; |
| 529 | mct_irqs[MCT_L1_IRQ] = irq_l1; |
| 530 | mct_int_type = MCT_INT_SPI; |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 531 | |
Arnd Bergmann | 034c097 | 2013-04-10 11:35:29 +0200 | [diff] [blame] | 532 | exynos4_timer_resources(NULL, base); |
Changhwan Youn | 30d8bea | 2011-03-11 10:39:57 +0900 | [diff] [blame] | 533 | exynos4_clocksource_init(); |
| 534 | exynos4_clockevent_init(); |
| 535 | } |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 536 | |
| 537 | static void __init mct_init_dt(struct device_node *np, unsigned int int_type) |
| 538 | { |
| 539 | u32 nr_irqs, i; |
| 540 | |
| 541 | mct_int_type = int_type; |
| 542 | |
| 543 | /* This driver uses only one global timer interrupt */ |
| 544 | mct_irqs[MCT_G0_IRQ] = irq_of_parse_and_map(np, MCT_G0_IRQ); |
| 545 | |
| 546 | /* |
| 547 | * Find out the number of local irqs specified. The local |
| 548 | * timer irqs are specified after the four global timer |
| 549 | * irqs are specified. |
| 550 | */ |
Arnd Bergmann | f4636d0 | 2013-04-19 22:00:04 +0200 | [diff] [blame] | 551 | #ifdef CONFIG_OF |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 552 | nr_irqs = of_irq_count(np); |
Arnd Bergmann | f4636d0 | 2013-04-19 22:00:04 +0200 | [diff] [blame] | 553 | #else |
| 554 | nr_irqs = 0; |
| 555 | #endif |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 556 | for (i = MCT_L0_IRQ; i < nr_irqs; i++) |
| 557 | mct_irqs[i] = irq_of_parse_and_map(np, i); |
| 558 | |
Arnd Bergmann | 19ce4f4 | 2013-04-09 22:24:06 +0200 | [diff] [blame] | 559 | exynos4_timer_resources(np, of_iomap(np, 0)); |
Arnd Bergmann | 228e302 | 2013-04-09 22:07:37 +0200 | [diff] [blame] | 560 | exynos4_clocksource_init(); |
| 561 | exynos4_clockevent_init(); |
| 562 | } |
| 563 | |
| 564 | |
| 565 | static void __init mct_init_spi(struct device_node *np) |
| 566 | { |
| 567 | return mct_init_dt(np, MCT_INT_SPI); |
| 568 | } |
| 569 | |
| 570 | static void __init mct_init_ppi(struct device_node *np) |
| 571 | { |
| 572 | return mct_init_dt(np, MCT_INT_PPI); |
| 573 | } |
| 574 | CLOCKSOURCE_OF_DECLARE(exynos4210, "samsung,exynos4210-mct", mct_init_spi); |
| 575 | CLOCKSOURCE_OF_DECLARE(exynos4412, "samsung,exynos4412-mct", mct_init_ppi); |