Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1 | /* |
| 2 | * SuperH Timer Support - CMT |
| 3 | * |
| 4 | * Copyright (C) 2008 Magnus Damm |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
| 19 | |
| 20 | #include <linux/init.h> |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/ioport.h> |
| 25 | #include <linux/io.h> |
| 26 | #include <linux/clk.h> |
| 27 | #include <linux/irq.h> |
| 28 | #include <linux/err.h> |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 29 | #include <linux/delay.h> |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 30 | #include <linux/clocksource.h> |
| 31 | #include <linux/clockchips.h> |
Paul Mundt | 46a12f7 | 2009-05-03 17:57:17 +0900 | [diff] [blame] | 32 | #include <linux/sh_timer.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Paul Gortmaker | 7deeab5 | 2011-07-03 13:36:22 -0400 | [diff] [blame] | 34 | #include <linux/module.h> |
Rafael J. Wysocki | 615a445 | 2012-03-13 22:40:06 +0100 | [diff] [blame] | 35 | #include <linux/pm_domain.h> |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 36 | #include <linux/pm_runtime.h> |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 37 | |
| 38 | struct sh_cmt_priv { |
| 39 | void __iomem *mapbase; |
| 40 | struct clk *clk; |
| 41 | unsigned long width; /* 16 or 32 bit version of hardware block */ |
| 42 | unsigned long overflow_bit; |
| 43 | unsigned long clear_bits; |
| 44 | struct irqaction irqaction; |
| 45 | struct platform_device *pdev; |
| 46 | |
| 47 | unsigned long flags; |
| 48 | unsigned long match_value; |
| 49 | unsigned long next_match_value; |
| 50 | unsigned long max_match_value; |
| 51 | unsigned long rate; |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 52 | raw_spinlock_t lock; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 53 | struct clock_event_device ced; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 54 | struct clocksource cs; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 55 | unsigned long total_cycles; |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 56 | bool cs_enabled; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 59 | static DEFINE_RAW_SPINLOCK(sh_cmt_lock); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 60 | |
| 61 | #define CMSTR -1 /* shared register */ |
| 62 | #define CMCSR 0 /* channel register */ |
| 63 | #define CMCNT 1 /* channel register */ |
| 64 | #define CMCOR 2 /* channel register */ |
| 65 | |
| 66 | static inline unsigned long sh_cmt_read(struct sh_cmt_priv *p, int reg_nr) |
| 67 | { |
Paul Mundt | 46a12f7 | 2009-05-03 17:57:17 +0900 | [diff] [blame] | 68 | struct sh_timer_config *cfg = p->pdev->dev.platform_data; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 69 | void __iomem *base = p->mapbase; |
| 70 | unsigned long offs; |
| 71 | |
| 72 | if (reg_nr == CMSTR) { |
| 73 | offs = 0; |
| 74 | base -= cfg->channel_offset; |
| 75 | } else |
| 76 | offs = reg_nr; |
| 77 | |
| 78 | if (p->width == 16) |
| 79 | offs <<= 1; |
| 80 | else { |
| 81 | offs <<= 2; |
| 82 | if ((reg_nr == CMCNT) || (reg_nr == CMCOR)) |
| 83 | return ioread32(base + offs); |
| 84 | } |
| 85 | |
| 86 | return ioread16(base + offs); |
| 87 | } |
| 88 | |
| 89 | static inline void sh_cmt_write(struct sh_cmt_priv *p, int reg_nr, |
| 90 | unsigned long value) |
| 91 | { |
Paul Mundt | 46a12f7 | 2009-05-03 17:57:17 +0900 | [diff] [blame] | 92 | struct sh_timer_config *cfg = p->pdev->dev.platform_data; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 93 | void __iomem *base = p->mapbase; |
| 94 | unsigned long offs; |
| 95 | |
| 96 | if (reg_nr == CMSTR) { |
| 97 | offs = 0; |
| 98 | base -= cfg->channel_offset; |
| 99 | } else |
| 100 | offs = reg_nr; |
| 101 | |
| 102 | if (p->width == 16) |
| 103 | offs <<= 1; |
| 104 | else { |
| 105 | offs <<= 2; |
| 106 | if ((reg_nr == CMCNT) || (reg_nr == CMCOR)) { |
| 107 | iowrite32(value, base + offs); |
| 108 | return; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | iowrite16(value, base + offs); |
| 113 | } |
| 114 | |
| 115 | static unsigned long sh_cmt_get_counter(struct sh_cmt_priv *p, |
| 116 | int *has_wrapped) |
| 117 | { |
| 118 | unsigned long v1, v2, v3; |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 119 | int o1, o2; |
| 120 | |
| 121 | o1 = sh_cmt_read(p, CMCSR) & p->overflow_bit; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 122 | |
| 123 | /* Make sure the timer value is stable. Stolen from acpi_pm.c */ |
| 124 | do { |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 125 | o2 = o1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 126 | v1 = sh_cmt_read(p, CMCNT); |
| 127 | v2 = sh_cmt_read(p, CMCNT); |
| 128 | v3 = sh_cmt_read(p, CMCNT); |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 129 | o1 = sh_cmt_read(p, CMCSR) & p->overflow_bit; |
| 130 | } while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3) |
| 131 | || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2))); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 132 | |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 133 | *has_wrapped = o1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 134 | return v2; |
| 135 | } |
| 136 | |
| 137 | |
| 138 | static void sh_cmt_start_stop_ch(struct sh_cmt_priv *p, int start) |
| 139 | { |
Paul Mundt | 46a12f7 | 2009-05-03 17:57:17 +0900 | [diff] [blame] | 140 | struct sh_timer_config *cfg = p->pdev->dev.platform_data; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 141 | unsigned long flags, value; |
| 142 | |
| 143 | /* start stop register shared by multiple timer channels */ |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 144 | raw_spin_lock_irqsave(&sh_cmt_lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 145 | value = sh_cmt_read(p, CMSTR); |
| 146 | |
| 147 | if (start) |
| 148 | value |= 1 << cfg->timer_bit; |
| 149 | else |
| 150 | value &= ~(1 << cfg->timer_bit); |
| 151 | |
| 152 | sh_cmt_write(p, CMSTR, value); |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 153 | raw_spin_unlock_irqrestore(&sh_cmt_lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | static int sh_cmt_enable(struct sh_cmt_priv *p, unsigned long *rate) |
| 157 | { |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 158 | int k, ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 159 | |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 160 | pm_runtime_get_sync(&p->pdev->dev); |
| 161 | dev_pm_syscore_device(&p->pdev->dev, true); |
| 162 | |
Paul Mundt | 9436b4a | 2011-05-31 15:26:42 +0900 | [diff] [blame] | 163 | /* enable clock */ |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 164 | ret = clk_enable(p->clk); |
| 165 | if (ret) { |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 166 | dev_err(&p->pdev->dev, "cannot enable clock\n"); |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 167 | goto err0; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 168 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 169 | |
| 170 | /* make sure channel is disabled */ |
| 171 | sh_cmt_start_stop_ch(p, 0); |
| 172 | |
| 173 | /* configure channel, periodic mode and maximum timeout */ |
Magnus Damm | 3014f47 | 2009-04-29 14:50:37 +0000 | [diff] [blame] | 174 | if (p->width == 16) { |
| 175 | *rate = clk_get_rate(p->clk) / 512; |
| 176 | sh_cmt_write(p, CMCSR, 0x43); |
| 177 | } else { |
| 178 | *rate = clk_get_rate(p->clk) / 8; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 179 | sh_cmt_write(p, CMCSR, 0x01a4); |
Magnus Damm | 3014f47 | 2009-04-29 14:50:37 +0000 | [diff] [blame] | 180 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 181 | |
| 182 | sh_cmt_write(p, CMCOR, 0xffffffff); |
| 183 | sh_cmt_write(p, CMCNT, 0); |
| 184 | |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 185 | /* |
| 186 | * According to the sh73a0 user's manual, as CMCNT can be operated |
| 187 | * only by the RCLK (Pseudo 32 KHz), there's one restriction on |
| 188 | * modifying CMCNT register; two RCLK cycles are necessary before |
| 189 | * this register is either read or any modification of the value |
| 190 | * it holds is reflected in the LSI's actual operation. |
| 191 | * |
| 192 | * While at it, we're supposed to clear out the CMCNT as of this |
| 193 | * moment, so make sure it's processed properly here. This will |
| 194 | * take RCLKx2 at maximum. |
| 195 | */ |
| 196 | for (k = 0; k < 100; k++) { |
| 197 | if (!sh_cmt_read(p, CMCNT)) |
| 198 | break; |
| 199 | udelay(1); |
| 200 | } |
| 201 | |
| 202 | if (sh_cmt_read(p, CMCNT)) { |
| 203 | dev_err(&p->pdev->dev, "cannot clear CMCNT\n"); |
| 204 | ret = -ETIMEDOUT; |
| 205 | goto err1; |
| 206 | } |
| 207 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 208 | /* enable channel */ |
| 209 | sh_cmt_start_stop_ch(p, 1); |
| 210 | return 0; |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 211 | err1: |
| 212 | /* stop clock */ |
| 213 | clk_disable(p->clk); |
| 214 | |
| 215 | err0: |
| 216 | return ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | static void sh_cmt_disable(struct sh_cmt_priv *p) |
| 220 | { |
| 221 | /* disable channel */ |
| 222 | sh_cmt_start_stop_ch(p, 0); |
| 223 | |
Magnus Damm | be890a1 | 2009-06-17 05:04:04 +0000 | [diff] [blame] | 224 | /* disable interrupts in CMT block */ |
| 225 | sh_cmt_write(p, CMCSR, 0); |
| 226 | |
Paul Mundt | 9436b4a | 2011-05-31 15:26:42 +0900 | [diff] [blame] | 227 | /* stop clock */ |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 228 | clk_disable(p->clk); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 229 | |
| 230 | dev_pm_syscore_device(&p->pdev->dev, false); |
| 231 | pm_runtime_put(&p->pdev->dev); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | /* private flags */ |
| 235 | #define FLAG_CLOCKEVENT (1 << 0) |
| 236 | #define FLAG_CLOCKSOURCE (1 << 1) |
| 237 | #define FLAG_REPROGRAM (1 << 2) |
| 238 | #define FLAG_SKIPEVENT (1 << 3) |
| 239 | #define FLAG_IRQCONTEXT (1 << 4) |
| 240 | |
| 241 | static void sh_cmt_clock_event_program_verify(struct sh_cmt_priv *p, |
| 242 | int absolute) |
| 243 | { |
| 244 | unsigned long new_match; |
| 245 | unsigned long value = p->next_match_value; |
| 246 | unsigned long delay = 0; |
| 247 | unsigned long now = 0; |
| 248 | int has_wrapped; |
| 249 | |
| 250 | now = sh_cmt_get_counter(p, &has_wrapped); |
| 251 | p->flags |= FLAG_REPROGRAM; /* force reprogram */ |
| 252 | |
| 253 | if (has_wrapped) { |
| 254 | /* we're competing with the interrupt handler. |
| 255 | * -> let the interrupt handler reprogram the timer. |
| 256 | * -> interrupt number two handles the event. |
| 257 | */ |
| 258 | p->flags |= FLAG_SKIPEVENT; |
| 259 | return; |
| 260 | } |
| 261 | |
| 262 | if (absolute) |
| 263 | now = 0; |
| 264 | |
| 265 | do { |
| 266 | /* reprogram the timer hardware, |
| 267 | * but don't save the new match value yet. |
| 268 | */ |
| 269 | new_match = now + value + delay; |
| 270 | if (new_match > p->max_match_value) |
| 271 | new_match = p->max_match_value; |
| 272 | |
| 273 | sh_cmt_write(p, CMCOR, new_match); |
| 274 | |
| 275 | now = sh_cmt_get_counter(p, &has_wrapped); |
| 276 | if (has_wrapped && (new_match > p->match_value)) { |
| 277 | /* we are changing to a greater match value, |
| 278 | * so this wrap must be caused by the counter |
| 279 | * matching the old value. |
| 280 | * -> first interrupt reprograms the timer. |
| 281 | * -> interrupt number two handles the event. |
| 282 | */ |
| 283 | p->flags |= FLAG_SKIPEVENT; |
| 284 | break; |
| 285 | } |
| 286 | |
| 287 | if (has_wrapped) { |
| 288 | /* we are changing to a smaller match value, |
| 289 | * so the wrap must be caused by the counter |
| 290 | * matching the new value. |
| 291 | * -> save programmed match value. |
| 292 | * -> let isr handle the event. |
| 293 | */ |
| 294 | p->match_value = new_match; |
| 295 | break; |
| 296 | } |
| 297 | |
| 298 | /* be safe: verify hardware settings */ |
| 299 | if (now < new_match) { |
| 300 | /* timer value is below match value, all good. |
| 301 | * this makes sure we won't miss any match events. |
| 302 | * -> save programmed match value. |
| 303 | * -> let isr handle the event. |
| 304 | */ |
| 305 | p->match_value = new_match; |
| 306 | break; |
| 307 | } |
| 308 | |
| 309 | /* the counter has reached a value greater |
| 310 | * than our new match value. and since the |
| 311 | * has_wrapped flag isn't set we must have |
| 312 | * programmed a too close event. |
| 313 | * -> increase delay and retry. |
| 314 | */ |
| 315 | if (delay) |
| 316 | delay <<= 1; |
| 317 | else |
| 318 | delay = 1; |
| 319 | |
| 320 | if (!delay) |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 321 | dev_warn(&p->pdev->dev, "too long delay\n"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 322 | |
| 323 | } while (delay); |
| 324 | } |
| 325 | |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 326 | static void __sh_cmt_set_next(struct sh_cmt_priv *p, unsigned long delta) |
| 327 | { |
| 328 | if (delta > p->max_match_value) |
| 329 | dev_warn(&p->pdev->dev, "delta out of range\n"); |
| 330 | |
| 331 | p->next_match_value = delta; |
| 332 | sh_cmt_clock_event_program_verify(p, 0); |
| 333 | } |
| 334 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 335 | static void sh_cmt_set_next(struct sh_cmt_priv *p, unsigned long delta) |
| 336 | { |
| 337 | unsigned long flags; |
| 338 | |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 339 | raw_spin_lock_irqsave(&p->lock, flags); |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 340 | __sh_cmt_set_next(p, delta); |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 341 | raw_spin_unlock_irqrestore(&p->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | static irqreturn_t sh_cmt_interrupt(int irq, void *dev_id) |
| 345 | { |
| 346 | struct sh_cmt_priv *p = dev_id; |
| 347 | |
| 348 | /* clear flags */ |
| 349 | sh_cmt_write(p, CMCSR, sh_cmt_read(p, CMCSR) & p->clear_bits); |
| 350 | |
| 351 | /* update clock source counter to begin with if enabled |
| 352 | * the wrap flag should be cleared by the timer specific |
| 353 | * isr before we end up here. |
| 354 | */ |
| 355 | if (p->flags & FLAG_CLOCKSOURCE) |
Magnus Damm | 4380947 | 2010-08-04 04:31:38 +0000 | [diff] [blame] | 356 | p->total_cycles += p->match_value + 1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 357 | |
| 358 | if (!(p->flags & FLAG_REPROGRAM)) |
| 359 | p->next_match_value = p->max_match_value; |
| 360 | |
| 361 | p->flags |= FLAG_IRQCONTEXT; |
| 362 | |
| 363 | if (p->flags & FLAG_CLOCKEVENT) { |
| 364 | if (!(p->flags & FLAG_SKIPEVENT)) { |
| 365 | if (p->ced.mode == CLOCK_EVT_MODE_ONESHOT) { |
| 366 | p->next_match_value = p->max_match_value; |
| 367 | p->flags |= FLAG_REPROGRAM; |
| 368 | } |
| 369 | |
| 370 | p->ced.event_handler(&p->ced); |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | p->flags &= ~FLAG_SKIPEVENT; |
| 375 | |
| 376 | if (p->flags & FLAG_REPROGRAM) { |
| 377 | p->flags &= ~FLAG_REPROGRAM; |
| 378 | sh_cmt_clock_event_program_verify(p, 1); |
| 379 | |
| 380 | if (p->flags & FLAG_CLOCKEVENT) |
| 381 | if ((p->ced.mode == CLOCK_EVT_MODE_SHUTDOWN) |
| 382 | || (p->match_value == p->next_match_value)) |
| 383 | p->flags &= ~FLAG_REPROGRAM; |
| 384 | } |
| 385 | |
| 386 | p->flags &= ~FLAG_IRQCONTEXT; |
| 387 | |
| 388 | return IRQ_HANDLED; |
| 389 | } |
| 390 | |
| 391 | static int sh_cmt_start(struct sh_cmt_priv *p, unsigned long flag) |
| 392 | { |
| 393 | int ret = 0; |
| 394 | unsigned long flags; |
| 395 | |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 396 | raw_spin_lock_irqsave(&p->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 397 | |
| 398 | if (!(p->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE))) |
| 399 | ret = sh_cmt_enable(p, &p->rate); |
| 400 | |
| 401 | if (ret) |
| 402 | goto out; |
| 403 | p->flags |= flag; |
| 404 | |
| 405 | /* setup timeout if no clockevent */ |
| 406 | if ((flag == FLAG_CLOCKSOURCE) && (!(p->flags & FLAG_CLOCKEVENT))) |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 407 | __sh_cmt_set_next(p, p->max_match_value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 408 | out: |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 409 | raw_spin_unlock_irqrestore(&p->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 410 | |
| 411 | return ret; |
| 412 | } |
| 413 | |
| 414 | static void sh_cmt_stop(struct sh_cmt_priv *p, unsigned long flag) |
| 415 | { |
| 416 | unsigned long flags; |
| 417 | unsigned long f; |
| 418 | |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 419 | raw_spin_lock_irqsave(&p->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 420 | |
| 421 | f = p->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE); |
| 422 | p->flags &= ~flag; |
| 423 | |
| 424 | if (f && !(p->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE))) |
| 425 | sh_cmt_disable(p); |
| 426 | |
| 427 | /* adjust the timeout to maximum if only clocksource left */ |
| 428 | if ((flag == FLAG_CLOCKEVENT) && (p->flags & FLAG_CLOCKSOURCE)) |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 429 | __sh_cmt_set_next(p, p->max_match_value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 430 | |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 431 | raw_spin_unlock_irqrestore(&p->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 434 | static struct sh_cmt_priv *cs_to_sh_cmt(struct clocksource *cs) |
| 435 | { |
| 436 | return container_of(cs, struct sh_cmt_priv, cs); |
| 437 | } |
| 438 | |
| 439 | static cycle_t sh_cmt_clocksource_read(struct clocksource *cs) |
| 440 | { |
| 441 | struct sh_cmt_priv *p = cs_to_sh_cmt(cs); |
| 442 | unsigned long flags, raw; |
| 443 | unsigned long value; |
| 444 | int has_wrapped; |
| 445 | |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 446 | raw_spin_lock_irqsave(&p->lock, flags); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 447 | value = p->total_cycles; |
| 448 | raw = sh_cmt_get_counter(p, &has_wrapped); |
| 449 | |
| 450 | if (unlikely(has_wrapped)) |
Magnus Damm | 4380947 | 2010-08-04 04:31:38 +0000 | [diff] [blame] | 451 | raw += p->match_value + 1; |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 452 | raw_spin_unlock_irqrestore(&p->lock, flags); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 453 | |
| 454 | return value + raw; |
| 455 | } |
| 456 | |
| 457 | static int sh_cmt_clocksource_enable(struct clocksource *cs) |
| 458 | { |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 459 | int ret; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 460 | struct sh_cmt_priv *p = cs_to_sh_cmt(cs); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 461 | |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 462 | WARN_ON(p->cs_enabled); |
| 463 | |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 464 | p->total_cycles = 0; |
| 465 | |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 466 | ret = sh_cmt_start(p, FLAG_CLOCKSOURCE); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 467 | if (!ret) { |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 468 | __clocksource_updatefreq_hz(cs, p->rate); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 469 | p->cs_enabled = true; |
| 470 | } |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 471 | return ret; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | static void sh_cmt_clocksource_disable(struct clocksource *cs) |
| 475 | { |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 476 | struct sh_cmt_priv *p = cs_to_sh_cmt(cs); |
| 477 | |
| 478 | WARN_ON(!p->cs_enabled); |
| 479 | |
| 480 | sh_cmt_stop(p, FLAG_CLOCKSOURCE); |
| 481 | p->cs_enabled = false; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 484 | static void sh_cmt_clocksource_suspend(struct clocksource *cs) |
| 485 | { |
| 486 | struct sh_cmt_priv *p = cs_to_sh_cmt(cs); |
| 487 | |
| 488 | sh_cmt_stop(p, FLAG_CLOCKSOURCE); |
| 489 | pm_genpd_syscore_poweroff(&p->pdev->dev); |
| 490 | } |
| 491 | |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 492 | static void sh_cmt_clocksource_resume(struct clocksource *cs) |
| 493 | { |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 494 | struct sh_cmt_priv *p = cs_to_sh_cmt(cs); |
| 495 | |
| 496 | pm_genpd_syscore_poweron(&p->pdev->dev); |
| 497 | sh_cmt_start(p, FLAG_CLOCKSOURCE); |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 498 | } |
| 499 | |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 500 | static int sh_cmt_register_clocksource(struct sh_cmt_priv *p, |
| 501 | char *name, unsigned long rating) |
| 502 | { |
| 503 | struct clocksource *cs = &p->cs; |
| 504 | |
| 505 | cs->name = name; |
| 506 | cs->rating = rating; |
| 507 | cs->read = sh_cmt_clocksource_read; |
| 508 | cs->enable = sh_cmt_clocksource_enable; |
| 509 | cs->disable = sh_cmt_clocksource_disable; |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 510 | cs->suspend = sh_cmt_clocksource_suspend; |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 511 | cs->resume = sh_cmt_clocksource_resume; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 512 | cs->mask = CLOCKSOURCE_MASK(sizeof(unsigned long) * 8); |
| 513 | cs->flags = CLOCK_SOURCE_IS_CONTINUOUS; |
Paul Mundt | f4d7c35 | 2010-06-02 17:10:44 +0900 | [diff] [blame] | 514 | |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 515 | dev_info(&p->pdev->dev, "used as clock source\n"); |
Paul Mundt | f4d7c35 | 2010-06-02 17:10:44 +0900 | [diff] [blame] | 516 | |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 517 | /* Register with dummy 1 Hz value, gets updated in ->enable() */ |
| 518 | clocksource_register_hz(cs, 1); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 519 | return 0; |
| 520 | } |
| 521 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 522 | static struct sh_cmt_priv *ced_to_sh_cmt(struct clock_event_device *ced) |
| 523 | { |
| 524 | return container_of(ced, struct sh_cmt_priv, ced); |
| 525 | } |
| 526 | |
| 527 | static void sh_cmt_clock_event_start(struct sh_cmt_priv *p, int periodic) |
| 528 | { |
| 529 | struct clock_event_device *ced = &p->ced; |
| 530 | |
| 531 | sh_cmt_start(p, FLAG_CLOCKEVENT); |
| 532 | |
| 533 | /* TODO: calculate good shift from rate and counter bit width */ |
| 534 | |
| 535 | ced->shift = 32; |
| 536 | ced->mult = div_sc(p->rate, NSEC_PER_SEC, ced->shift); |
| 537 | ced->max_delta_ns = clockevent_delta2ns(p->max_match_value, ced); |
| 538 | ced->min_delta_ns = clockevent_delta2ns(0x1f, ced); |
| 539 | |
| 540 | if (periodic) |
Magnus Damm | 4380947 | 2010-08-04 04:31:38 +0000 | [diff] [blame] | 541 | sh_cmt_set_next(p, ((p->rate + HZ/2) / HZ) - 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 542 | else |
| 543 | sh_cmt_set_next(p, p->max_match_value); |
| 544 | } |
| 545 | |
| 546 | static void sh_cmt_clock_event_mode(enum clock_event_mode mode, |
| 547 | struct clock_event_device *ced) |
| 548 | { |
| 549 | struct sh_cmt_priv *p = ced_to_sh_cmt(ced); |
| 550 | |
| 551 | /* deal with old setting first */ |
| 552 | switch (ced->mode) { |
| 553 | case CLOCK_EVT_MODE_PERIODIC: |
| 554 | case CLOCK_EVT_MODE_ONESHOT: |
| 555 | sh_cmt_stop(p, FLAG_CLOCKEVENT); |
| 556 | break; |
| 557 | default: |
| 558 | break; |
| 559 | } |
| 560 | |
| 561 | switch (mode) { |
| 562 | case CLOCK_EVT_MODE_PERIODIC: |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 563 | dev_info(&p->pdev->dev, "used for periodic clock events\n"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 564 | sh_cmt_clock_event_start(p, 1); |
| 565 | break; |
| 566 | case CLOCK_EVT_MODE_ONESHOT: |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 567 | dev_info(&p->pdev->dev, "used for oneshot clock events\n"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 568 | sh_cmt_clock_event_start(p, 0); |
| 569 | break; |
| 570 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 571 | case CLOCK_EVT_MODE_UNUSED: |
| 572 | sh_cmt_stop(p, FLAG_CLOCKEVENT); |
| 573 | break; |
| 574 | default: |
| 575 | break; |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | static int sh_cmt_clock_event_next(unsigned long delta, |
| 580 | struct clock_event_device *ced) |
| 581 | { |
| 582 | struct sh_cmt_priv *p = ced_to_sh_cmt(ced); |
| 583 | |
| 584 | BUG_ON(ced->mode != CLOCK_EVT_MODE_ONESHOT); |
| 585 | if (likely(p->flags & FLAG_IRQCONTEXT)) |
Magnus Damm | 4380947 | 2010-08-04 04:31:38 +0000 | [diff] [blame] | 586 | p->next_match_value = delta - 1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 587 | else |
Magnus Damm | 4380947 | 2010-08-04 04:31:38 +0000 | [diff] [blame] | 588 | sh_cmt_set_next(p, delta - 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 589 | |
| 590 | return 0; |
| 591 | } |
| 592 | |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 593 | static void sh_cmt_clock_event_suspend(struct clock_event_device *ced) |
| 594 | { |
| 595 | pm_genpd_syscore_poweroff(&ced_to_sh_cmt(ced)->pdev->dev); |
| 596 | } |
| 597 | |
| 598 | static void sh_cmt_clock_event_resume(struct clock_event_device *ced) |
| 599 | { |
| 600 | pm_genpd_syscore_poweron(&ced_to_sh_cmt(ced)->pdev->dev); |
| 601 | } |
| 602 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 603 | static void sh_cmt_register_clockevent(struct sh_cmt_priv *p, |
| 604 | char *name, unsigned long rating) |
| 605 | { |
| 606 | struct clock_event_device *ced = &p->ced; |
| 607 | |
| 608 | memset(ced, 0, sizeof(*ced)); |
| 609 | |
| 610 | ced->name = name; |
| 611 | ced->features = CLOCK_EVT_FEAT_PERIODIC; |
| 612 | ced->features |= CLOCK_EVT_FEAT_ONESHOT; |
| 613 | ced->rating = rating; |
| 614 | ced->cpumask = cpumask_of(0); |
| 615 | ced->set_next_event = sh_cmt_clock_event_next; |
| 616 | ced->set_mode = sh_cmt_clock_event_mode; |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 617 | ced->suspend = sh_cmt_clock_event_suspend; |
| 618 | ced->resume = sh_cmt_clock_event_resume; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 619 | |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 620 | dev_info(&p->pdev->dev, "used for clock events\n"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 621 | clockevents_register_device(ced); |
| 622 | } |
| 623 | |
Paul Mundt | d1fcc0a | 2009-05-03 18:05:42 +0900 | [diff] [blame] | 624 | static int sh_cmt_register(struct sh_cmt_priv *p, char *name, |
| 625 | unsigned long clockevent_rating, |
| 626 | unsigned long clocksource_rating) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 627 | { |
| 628 | if (p->width == (sizeof(p->max_match_value) * 8)) |
| 629 | p->max_match_value = ~0; |
| 630 | else |
| 631 | p->max_match_value = (1 << p->width) - 1; |
| 632 | |
| 633 | p->match_value = p->max_match_value; |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 634 | raw_spin_lock_init(&p->lock); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 635 | |
| 636 | if (clockevent_rating) |
| 637 | sh_cmt_register_clockevent(p, name, clockevent_rating); |
| 638 | |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 639 | if (clocksource_rating) |
| 640 | sh_cmt_register_clocksource(p, name, clocksource_rating); |
| 641 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 642 | return 0; |
| 643 | } |
| 644 | |
| 645 | static int sh_cmt_setup(struct sh_cmt_priv *p, struct platform_device *pdev) |
| 646 | { |
Paul Mundt | 46a12f7 | 2009-05-03 17:57:17 +0900 | [diff] [blame] | 647 | struct sh_timer_config *cfg = pdev->dev.platform_data; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 648 | struct resource *res; |
| 649 | int irq, ret; |
| 650 | ret = -ENXIO; |
| 651 | |
| 652 | memset(p, 0, sizeof(*p)); |
| 653 | p->pdev = pdev; |
| 654 | |
| 655 | if (!cfg) { |
| 656 | dev_err(&p->pdev->dev, "missing platform data\n"); |
| 657 | goto err0; |
| 658 | } |
| 659 | |
| 660 | platform_set_drvdata(pdev, p); |
| 661 | |
| 662 | res = platform_get_resource(p->pdev, IORESOURCE_MEM, 0); |
| 663 | if (!res) { |
| 664 | dev_err(&p->pdev->dev, "failed to get I/O memory\n"); |
| 665 | goto err0; |
| 666 | } |
| 667 | |
| 668 | irq = platform_get_irq(p->pdev, 0); |
| 669 | if (irq < 0) { |
| 670 | dev_err(&p->pdev->dev, "failed to get irq\n"); |
| 671 | goto err0; |
| 672 | } |
| 673 | |
| 674 | /* map memory, let mapbase point to our channel */ |
| 675 | p->mapbase = ioremap_nocache(res->start, resource_size(res)); |
| 676 | if (p->mapbase == NULL) { |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 677 | dev_err(&p->pdev->dev, "failed to remap I/O memory\n"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 678 | goto err0; |
| 679 | } |
| 680 | |
| 681 | /* request irq using setup_irq() (too early for request_irq()) */ |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 682 | p->irqaction.name = dev_name(&p->pdev->dev); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 683 | p->irqaction.handler = sh_cmt_interrupt; |
| 684 | p->irqaction.dev_id = p; |
Paul Mundt | fecf066 | 2010-04-15 11:59:28 +0900 | [diff] [blame] | 685 | p->irqaction.flags = IRQF_DISABLED | IRQF_TIMER | \ |
| 686 | IRQF_IRQPOLL | IRQF_NOBALANCING; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 687 | |
| 688 | /* get hold of clock */ |
Paul Mundt | c2a25e8 | 2010-03-29 16:55:43 +0900 | [diff] [blame] | 689 | p->clk = clk_get(&p->pdev->dev, "cmt_fck"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 690 | if (IS_ERR(p->clk)) { |
Magnus Damm | 03ff858 | 2010-10-13 07:36:38 +0000 | [diff] [blame] | 691 | dev_err(&p->pdev->dev, "cannot get clock\n"); |
| 692 | ret = PTR_ERR(p->clk); |
| 693 | goto err1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | if (resource_size(res) == 6) { |
| 697 | p->width = 16; |
| 698 | p->overflow_bit = 0x80; |
Magnus Damm | 3014f47 | 2009-04-29 14:50:37 +0000 | [diff] [blame] | 699 | p->clear_bits = ~0x80; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 700 | } else { |
| 701 | p->width = 32; |
| 702 | p->overflow_bit = 0x8000; |
| 703 | p->clear_bits = ~0xc000; |
| 704 | } |
| 705 | |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 706 | ret = sh_cmt_register(p, (char *)dev_name(&p->pdev->dev), |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 707 | cfg->clockevent_rating, |
| 708 | cfg->clocksource_rating); |
| 709 | if (ret) { |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 710 | dev_err(&p->pdev->dev, "registration failed\n"); |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 711 | goto err1; |
| 712 | } |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 713 | p->cs_enabled = false; |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 714 | |
| 715 | ret = setup_irq(irq, &p->irqaction); |
| 716 | if (ret) { |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 717 | dev_err(&p->pdev->dev, "failed to request irq %d\n", irq); |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 718 | goto err1; |
| 719 | } |
| 720 | |
| 721 | return 0; |
| 722 | |
| 723 | err1: |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 724 | iounmap(p->mapbase); |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 725 | err0: |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 726 | return ret; |
| 727 | } |
| 728 | |
| 729 | static int __devinit sh_cmt_probe(struct platform_device *pdev) |
| 730 | { |
| 731 | struct sh_cmt_priv *p = platform_get_drvdata(pdev); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 732 | struct sh_timer_config *cfg = pdev->dev.platform_data; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 733 | int ret; |
| 734 | |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 735 | if (!is_early_platform_device(pdev)) { |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 736 | pm_runtime_set_active(&pdev->dev); |
| 737 | pm_runtime_enable(&pdev->dev); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 738 | } |
Rafael J. Wysocki | 615a445 | 2012-03-13 22:40:06 +0100 | [diff] [blame] | 739 | |
Magnus Damm | e475eed | 2009-04-15 10:50:04 +0000 | [diff] [blame] | 740 | if (p) { |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 741 | dev_info(&pdev->dev, "kept as earlytimer\n"); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 742 | goto out; |
Magnus Damm | e475eed | 2009-04-15 10:50:04 +0000 | [diff] [blame] | 743 | } |
| 744 | |
Magnus Damm | 8e0b842 | 2009-04-28 08:19:50 +0000 | [diff] [blame] | 745 | p = kmalloc(sizeof(*p), GFP_KERNEL); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 746 | if (p == NULL) { |
| 747 | dev_err(&pdev->dev, "failed to allocate driver data\n"); |
| 748 | return -ENOMEM; |
| 749 | } |
| 750 | |
| 751 | ret = sh_cmt_setup(p, pdev); |
| 752 | if (ret) { |
Magnus Damm | 8e0b842 | 2009-04-28 08:19:50 +0000 | [diff] [blame] | 753 | kfree(p); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 754 | platform_set_drvdata(pdev, NULL); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 755 | pm_runtime_idle(&pdev->dev); |
| 756 | return ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 757 | } |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 758 | if (is_early_platform_device(pdev)) |
| 759 | return 0; |
| 760 | |
| 761 | out: |
| 762 | if (cfg->clockevent_rating || cfg->clocksource_rating) |
| 763 | pm_runtime_irq_safe(&pdev->dev); |
| 764 | else |
| 765 | pm_runtime_idle(&pdev->dev); |
| 766 | |
| 767 | return 0; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | static int __devexit sh_cmt_remove(struct platform_device *pdev) |
| 771 | { |
| 772 | return -EBUSY; /* cannot unregister clockevent and clocksource */ |
| 773 | } |
| 774 | |
| 775 | static struct platform_driver sh_cmt_device_driver = { |
| 776 | .probe = sh_cmt_probe, |
| 777 | .remove = __devexit_p(sh_cmt_remove), |
| 778 | .driver = { |
| 779 | .name = "sh_cmt", |
| 780 | } |
| 781 | }; |
| 782 | |
| 783 | static int __init sh_cmt_init(void) |
| 784 | { |
| 785 | return platform_driver_register(&sh_cmt_device_driver); |
| 786 | } |
| 787 | |
| 788 | static void __exit sh_cmt_exit(void) |
| 789 | { |
| 790 | platform_driver_unregister(&sh_cmt_device_driver); |
| 791 | } |
| 792 | |
Magnus Damm | e475eed | 2009-04-15 10:50:04 +0000 | [diff] [blame] | 793 | early_platform_init("earlytimer", &sh_cmt_device_driver); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 794 | module_init(sh_cmt_init); |
| 795 | module_exit(sh_cmt_exit); |
| 796 | |
| 797 | MODULE_AUTHOR("Magnus Damm"); |
| 798 | MODULE_DESCRIPTION("SuperH CMT Timer Driver"); |
| 799 | MODULE_LICENSE("GPL v2"); |