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