Revert "clocksource: sh_tmu: Runtime PM support"
[linux-2.6-block.git] / drivers / clocksource / sh_cmt.c
CommitLineData
3fb1b6ad
MD
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>
3fb1b6ad
MD
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>
01fa68b5 27#include <linux/pm_runtime.h>
3fb1b6ad
MD
28#include <linux/irq.h>
29#include <linux/err.h>
30#include <linux/clocksource.h>
31#include <linux/clockchips.h>
46a12f74 32#include <linux/sh_timer.h>
5a0e3ad6 33#include <linux/slab.h>
3fb1b6ad
MD
34
35struct sh_cmt_priv {
36 void __iomem *mapbase;
37 struct clk *clk;
38 unsigned long width; /* 16 or 32 bit version of hardware block */
39 unsigned long overflow_bit;
40 unsigned long clear_bits;
41 struct irqaction irqaction;
42 struct platform_device *pdev;
43
44 unsigned long flags;
45 unsigned long match_value;
46 unsigned long next_match_value;
47 unsigned long max_match_value;
48 unsigned long rate;
49 spinlock_t lock;
50 struct clock_event_device ced;
19bdc9d0 51 struct clocksource cs;
3fb1b6ad
MD
52 unsigned long total_cycles;
53};
54
55static DEFINE_SPINLOCK(sh_cmt_lock);
56
57#define CMSTR -1 /* shared register */
58#define CMCSR 0 /* channel register */
59#define CMCNT 1 /* channel register */
60#define CMCOR 2 /* channel register */
61
62static inline unsigned long sh_cmt_read(struct sh_cmt_priv *p, int reg_nr)
63{
46a12f74 64 struct sh_timer_config *cfg = p->pdev->dev.platform_data;
3fb1b6ad
MD
65 void __iomem *base = p->mapbase;
66 unsigned long offs;
67
68 if (reg_nr == CMSTR) {
69 offs = 0;
70 base -= cfg->channel_offset;
71 } else
72 offs = reg_nr;
73
74 if (p->width == 16)
75 offs <<= 1;
76 else {
77 offs <<= 2;
78 if ((reg_nr == CMCNT) || (reg_nr == CMCOR))
79 return ioread32(base + offs);
80 }
81
82 return ioread16(base + offs);
83}
84
85static inline void sh_cmt_write(struct sh_cmt_priv *p, int reg_nr,
86 unsigned long value)
87{
46a12f74 88 struct sh_timer_config *cfg = p->pdev->dev.platform_data;
3fb1b6ad
MD
89 void __iomem *base = p->mapbase;
90 unsigned long offs;
91
92 if (reg_nr == CMSTR) {
93 offs = 0;
94 base -= cfg->channel_offset;
95 } else
96 offs = reg_nr;
97
98 if (p->width == 16)
99 offs <<= 1;
100 else {
101 offs <<= 2;
102 if ((reg_nr == CMCNT) || (reg_nr == CMCOR)) {
103 iowrite32(value, base + offs);
104 return;
105 }
106 }
107
108 iowrite16(value, base + offs);
109}
110
111static unsigned long sh_cmt_get_counter(struct sh_cmt_priv *p,
112 int *has_wrapped)
113{
114 unsigned long v1, v2, v3;
5b644c7a
MD
115 int o1, o2;
116
117 o1 = sh_cmt_read(p, CMCSR) & p->overflow_bit;
3fb1b6ad
MD
118
119 /* Make sure the timer value is stable. Stolen from acpi_pm.c */
120 do {
5b644c7a 121 o2 = o1;
3fb1b6ad
MD
122 v1 = sh_cmt_read(p, CMCNT);
123 v2 = sh_cmt_read(p, CMCNT);
124 v3 = sh_cmt_read(p, CMCNT);
5b644c7a
MD
125 o1 = sh_cmt_read(p, CMCSR) & p->overflow_bit;
126 } while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3)
127 || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2)));
3fb1b6ad 128
5b644c7a 129 *has_wrapped = o1;
3fb1b6ad
MD
130 return v2;
131}
132
133
134static void sh_cmt_start_stop_ch(struct sh_cmt_priv *p, int start)
135{
46a12f74 136 struct sh_timer_config *cfg = p->pdev->dev.platform_data;
3fb1b6ad
MD
137 unsigned long flags, value;
138
139 /* start stop register shared by multiple timer channels */
140 spin_lock_irqsave(&sh_cmt_lock, flags);
141 value = sh_cmt_read(p, CMSTR);
142
143 if (start)
144 value |= 1 << cfg->timer_bit;
145 else
146 value &= ~(1 << cfg->timer_bit);
147
148 sh_cmt_write(p, CMSTR, value);
149 spin_unlock_irqrestore(&sh_cmt_lock, flags);
150}
151
152static int sh_cmt_enable(struct sh_cmt_priv *p, unsigned long *rate)
153{
3fb1b6ad
MD
154 int ret;
155
01fa68b5
MD
156 /* wake up device and enable clock */
157 pm_runtime_get_sync(&p->pdev->dev);
3fb1b6ad
MD
158 ret = clk_enable(p->clk);
159 if (ret) {
214a607a 160 dev_err(&p->pdev->dev, "cannot enable clock\n");
01fa68b5 161 pm_runtime_put_sync(&p->pdev->dev);
3fb1b6ad
MD
162 return ret;
163 }
3fb1b6ad
MD
164
165 /* make sure channel is disabled */
166 sh_cmt_start_stop_ch(p, 0);
167
168 /* configure channel, periodic mode and maximum timeout */
3014f474
MD
169 if (p->width == 16) {
170 *rate = clk_get_rate(p->clk) / 512;
171 sh_cmt_write(p, CMCSR, 0x43);
172 } else {
173 *rate = clk_get_rate(p->clk) / 8;
3fb1b6ad 174 sh_cmt_write(p, CMCSR, 0x01a4);
3014f474 175 }
3fb1b6ad
MD
176
177 sh_cmt_write(p, CMCOR, 0xffffffff);
178 sh_cmt_write(p, CMCNT, 0);
179
180 /* enable channel */
181 sh_cmt_start_stop_ch(p, 1);
182 return 0;
183}
184
185static void sh_cmt_disable(struct sh_cmt_priv *p)
186{
187 /* disable channel */
188 sh_cmt_start_stop_ch(p, 0);
189
be890a1a
MD
190 /* disable interrupts in CMT block */
191 sh_cmt_write(p, CMCSR, 0);
192
01fa68b5 193 /* stop clock and mark device as idle */
3fb1b6ad 194 clk_disable(p->clk);
01fa68b5 195 pm_runtime_put_sync(&p->pdev->dev);
3fb1b6ad
MD
196}
197
198/* private flags */
199#define FLAG_CLOCKEVENT (1 << 0)
200#define FLAG_CLOCKSOURCE (1 << 1)
201#define FLAG_REPROGRAM (1 << 2)
202#define FLAG_SKIPEVENT (1 << 3)
203#define FLAG_IRQCONTEXT (1 << 4)
204
205static void sh_cmt_clock_event_program_verify(struct sh_cmt_priv *p,
206 int absolute)
207{
208 unsigned long new_match;
209 unsigned long value = p->next_match_value;
210 unsigned long delay = 0;
211 unsigned long now = 0;
212 int has_wrapped;
213
214 now = sh_cmt_get_counter(p, &has_wrapped);
215 p->flags |= FLAG_REPROGRAM; /* force reprogram */
216
217 if (has_wrapped) {
218 /* we're competing with the interrupt handler.
219 * -> let the interrupt handler reprogram the timer.
220 * -> interrupt number two handles the event.
221 */
222 p->flags |= FLAG_SKIPEVENT;
223 return;
224 }
225
226 if (absolute)
227 now = 0;
228
229 do {
230 /* reprogram the timer hardware,
231 * but don't save the new match value yet.
232 */
233 new_match = now + value + delay;
234 if (new_match > p->max_match_value)
235 new_match = p->max_match_value;
236
237 sh_cmt_write(p, CMCOR, new_match);
238
239 now = sh_cmt_get_counter(p, &has_wrapped);
240 if (has_wrapped && (new_match > p->match_value)) {
241 /* we are changing to a greater match value,
242 * so this wrap must be caused by the counter
243 * matching the old value.
244 * -> first interrupt reprograms the timer.
245 * -> interrupt number two handles the event.
246 */
247 p->flags |= FLAG_SKIPEVENT;
248 break;
249 }
250
251 if (has_wrapped) {
252 /* we are changing to a smaller match value,
253 * so the wrap must be caused by the counter
254 * matching the new value.
255 * -> save programmed match value.
256 * -> let isr handle the event.
257 */
258 p->match_value = new_match;
259 break;
260 }
261
262 /* be safe: verify hardware settings */
263 if (now < new_match) {
264 /* timer value is below match value, all good.
265 * this makes sure we won't miss any match events.
266 * -> save programmed match value.
267 * -> let isr handle the event.
268 */
269 p->match_value = new_match;
270 break;
271 }
272
273 /* the counter has reached a value greater
274 * than our new match value. and since the
275 * has_wrapped flag isn't set we must have
276 * programmed a too close event.
277 * -> increase delay and retry.
278 */
279 if (delay)
280 delay <<= 1;
281 else
282 delay = 1;
283
284 if (!delay)
214a607a 285 dev_warn(&p->pdev->dev, "too long delay\n");
3fb1b6ad
MD
286
287 } while (delay);
288}
289
65ada547 290static void __sh_cmt_set_next(struct sh_cmt_priv *p, unsigned long delta)
3fb1b6ad 291{
3fb1b6ad 292 if (delta > p->max_match_value)
214a607a 293 dev_warn(&p->pdev->dev, "delta out of range\n");
3fb1b6ad 294
3fb1b6ad
MD
295 p->next_match_value = delta;
296 sh_cmt_clock_event_program_verify(p, 0);
65ada547
TY
297}
298
299static void sh_cmt_set_next(struct sh_cmt_priv *p, unsigned long delta)
300{
301 unsigned long flags;
302
303 spin_lock_irqsave(&p->lock, flags);
304 __sh_cmt_set_next(p, delta);
3fb1b6ad
MD
305 spin_unlock_irqrestore(&p->lock, flags);
306}
307
308static irqreturn_t sh_cmt_interrupt(int irq, void *dev_id)
309{
310 struct sh_cmt_priv *p = dev_id;
311
312 /* clear flags */
313 sh_cmt_write(p, CMCSR, sh_cmt_read(p, CMCSR) & p->clear_bits);
314
315 /* update clock source counter to begin with if enabled
316 * the wrap flag should be cleared by the timer specific
317 * isr before we end up here.
318 */
319 if (p->flags & FLAG_CLOCKSOURCE)
43809473 320 p->total_cycles += p->match_value + 1;
3fb1b6ad
MD
321
322 if (!(p->flags & FLAG_REPROGRAM))
323 p->next_match_value = p->max_match_value;
324
325 p->flags |= FLAG_IRQCONTEXT;
326
327 if (p->flags & FLAG_CLOCKEVENT) {
328 if (!(p->flags & FLAG_SKIPEVENT)) {
329 if (p->ced.mode == CLOCK_EVT_MODE_ONESHOT) {
330 p->next_match_value = p->max_match_value;
331 p->flags |= FLAG_REPROGRAM;
332 }
333
334 p->ced.event_handler(&p->ced);
335 }
336 }
337
338 p->flags &= ~FLAG_SKIPEVENT;
339
340 if (p->flags & FLAG_REPROGRAM) {
341 p->flags &= ~FLAG_REPROGRAM;
342 sh_cmt_clock_event_program_verify(p, 1);
343
344 if (p->flags & FLAG_CLOCKEVENT)
345 if ((p->ced.mode == CLOCK_EVT_MODE_SHUTDOWN)
346 || (p->match_value == p->next_match_value))
347 p->flags &= ~FLAG_REPROGRAM;
348 }
349
350 p->flags &= ~FLAG_IRQCONTEXT;
351
352 return IRQ_HANDLED;
353}
354
355static int sh_cmt_start(struct sh_cmt_priv *p, unsigned long flag)
356{
357 int ret = 0;
358 unsigned long flags;
359
360 spin_lock_irqsave(&p->lock, flags);
361
362 if (!(p->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE)))
363 ret = sh_cmt_enable(p, &p->rate);
364
365 if (ret)
366 goto out;
367 p->flags |= flag;
368
369 /* setup timeout if no clockevent */
370 if ((flag == FLAG_CLOCKSOURCE) && (!(p->flags & FLAG_CLOCKEVENT)))
65ada547 371 __sh_cmt_set_next(p, p->max_match_value);
3fb1b6ad
MD
372 out:
373 spin_unlock_irqrestore(&p->lock, flags);
374
375 return ret;
376}
377
378static void sh_cmt_stop(struct sh_cmt_priv *p, unsigned long flag)
379{
380 unsigned long flags;
381 unsigned long f;
382
383 spin_lock_irqsave(&p->lock, flags);
384
385 f = p->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE);
386 p->flags &= ~flag;
387
388 if (f && !(p->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE)))
389 sh_cmt_disable(p);
390
391 /* adjust the timeout to maximum if only clocksource left */
392 if ((flag == FLAG_CLOCKEVENT) && (p->flags & FLAG_CLOCKSOURCE))
65ada547 393 __sh_cmt_set_next(p, p->max_match_value);
3fb1b6ad
MD
394
395 spin_unlock_irqrestore(&p->lock, flags);
396}
397
19bdc9d0
MD
398static struct sh_cmt_priv *cs_to_sh_cmt(struct clocksource *cs)
399{
400 return container_of(cs, struct sh_cmt_priv, cs);
401}
402
403static cycle_t sh_cmt_clocksource_read(struct clocksource *cs)
404{
405 struct sh_cmt_priv *p = cs_to_sh_cmt(cs);
406 unsigned long flags, raw;
407 unsigned long value;
408 int has_wrapped;
409
410 spin_lock_irqsave(&p->lock, flags);
411 value = p->total_cycles;
412 raw = sh_cmt_get_counter(p, &has_wrapped);
413
414 if (unlikely(has_wrapped))
43809473 415 raw += p->match_value + 1;
19bdc9d0
MD
416 spin_unlock_irqrestore(&p->lock, flags);
417
418 return value + raw;
419}
420
421static int sh_cmt_clocksource_enable(struct clocksource *cs)
422{
3593f5fe 423 int ret;
19bdc9d0 424 struct sh_cmt_priv *p = cs_to_sh_cmt(cs);
19bdc9d0
MD
425
426 p->total_cycles = 0;
427
3593f5fe
MD
428 ret = sh_cmt_start(p, FLAG_CLOCKSOURCE);
429 if (!ret)
430 __clocksource_updatefreq_hz(cs, p->rate);
431 return ret;
19bdc9d0
MD
432}
433
434static void sh_cmt_clocksource_disable(struct clocksource *cs)
435{
436 sh_cmt_stop(cs_to_sh_cmt(cs), FLAG_CLOCKSOURCE);
437}
438
c8162884
MD
439static void sh_cmt_clocksource_resume(struct clocksource *cs)
440{
441 sh_cmt_start(cs_to_sh_cmt(cs), FLAG_CLOCKSOURCE);
442}
443
19bdc9d0
MD
444static int sh_cmt_register_clocksource(struct sh_cmt_priv *p,
445 char *name, unsigned long rating)
446{
447 struct clocksource *cs = &p->cs;
448
449 cs->name = name;
450 cs->rating = rating;
451 cs->read = sh_cmt_clocksource_read;
452 cs->enable = sh_cmt_clocksource_enable;
453 cs->disable = sh_cmt_clocksource_disable;
c8162884
MD
454 cs->suspend = sh_cmt_clocksource_disable;
455 cs->resume = sh_cmt_clocksource_resume;
19bdc9d0
MD
456 cs->mask = CLOCKSOURCE_MASK(sizeof(unsigned long) * 8);
457 cs->flags = CLOCK_SOURCE_IS_CONTINUOUS;
f4d7c356 458
214a607a 459 dev_info(&p->pdev->dev, "used as clock source\n");
f4d7c356 460
3593f5fe
MD
461 /* Register with dummy 1 Hz value, gets updated in ->enable() */
462 clocksource_register_hz(cs, 1);
19bdc9d0
MD
463 return 0;
464}
465
3fb1b6ad
MD
466static struct sh_cmt_priv *ced_to_sh_cmt(struct clock_event_device *ced)
467{
468 return container_of(ced, struct sh_cmt_priv, ced);
469}
470
471static void sh_cmt_clock_event_start(struct sh_cmt_priv *p, int periodic)
472{
473 struct clock_event_device *ced = &p->ced;
474
475 sh_cmt_start(p, FLAG_CLOCKEVENT);
476
477 /* TODO: calculate good shift from rate and counter bit width */
478
479 ced->shift = 32;
480 ced->mult = div_sc(p->rate, NSEC_PER_SEC, ced->shift);
481 ced->max_delta_ns = clockevent_delta2ns(p->max_match_value, ced);
482 ced->min_delta_ns = clockevent_delta2ns(0x1f, ced);
483
484 if (periodic)
43809473 485 sh_cmt_set_next(p, ((p->rate + HZ/2) / HZ) - 1);
3fb1b6ad
MD
486 else
487 sh_cmt_set_next(p, p->max_match_value);
488}
489
490static void sh_cmt_clock_event_mode(enum clock_event_mode mode,
491 struct clock_event_device *ced)
492{
493 struct sh_cmt_priv *p = ced_to_sh_cmt(ced);
494
495 /* deal with old setting first */
496 switch (ced->mode) {
497 case CLOCK_EVT_MODE_PERIODIC:
498 case CLOCK_EVT_MODE_ONESHOT:
499 sh_cmt_stop(p, FLAG_CLOCKEVENT);
500 break;
501 default:
502 break;
503 }
504
505 switch (mode) {
506 case CLOCK_EVT_MODE_PERIODIC:
214a607a 507 dev_info(&p->pdev->dev, "used for periodic clock events\n");
3fb1b6ad
MD
508 sh_cmt_clock_event_start(p, 1);
509 break;
510 case CLOCK_EVT_MODE_ONESHOT:
214a607a 511 dev_info(&p->pdev->dev, "used for oneshot clock events\n");
3fb1b6ad
MD
512 sh_cmt_clock_event_start(p, 0);
513 break;
514 case CLOCK_EVT_MODE_SHUTDOWN:
515 case CLOCK_EVT_MODE_UNUSED:
516 sh_cmt_stop(p, FLAG_CLOCKEVENT);
517 break;
518 default:
519 break;
520 }
521}
522
523static int sh_cmt_clock_event_next(unsigned long delta,
524 struct clock_event_device *ced)
525{
526 struct sh_cmt_priv *p = ced_to_sh_cmt(ced);
527
528 BUG_ON(ced->mode != CLOCK_EVT_MODE_ONESHOT);
529 if (likely(p->flags & FLAG_IRQCONTEXT))
43809473 530 p->next_match_value = delta - 1;
3fb1b6ad 531 else
43809473 532 sh_cmt_set_next(p, delta - 1);
3fb1b6ad
MD
533
534 return 0;
535}
536
537static void sh_cmt_register_clockevent(struct sh_cmt_priv *p,
538 char *name, unsigned long rating)
539{
540 struct clock_event_device *ced = &p->ced;
541
542 memset(ced, 0, sizeof(*ced));
543
544 ced->name = name;
545 ced->features = CLOCK_EVT_FEAT_PERIODIC;
546 ced->features |= CLOCK_EVT_FEAT_ONESHOT;
547 ced->rating = rating;
548 ced->cpumask = cpumask_of(0);
549 ced->set_next_event = sh_cmt_clock_event_next;
550 ced->set_mode = sh_cmt_clock_event_mode;
551
214a607a 552 dev_info(&p->pdev->dev, "used for clock events\n");
3fb1b6ad
MD
553 clockevents_register_device(ced);
554}
555
d1fcc0a8
PM
556static int sh_cmt_register(struct sh_cmt_priv *p, char *name,
557 unsigned long clockevent_rating,
558 unsigned long clocksource_rating)
3fb1b6ad
MD
559{
560 if (p->width == (sizeof(p->max_match_value) * 8))
561 p->max_match_value = ~0;
562 else
563 p->max_match_value = (1 << p->width) - 1;
564
565 p->match_value = p->max_match_value;
566 spin_lock_init(&p->lock);
567
568 if (clockevent_rating)
569 sh_cmt_register_clockevent(p, name, clockevent_rating);
570
19bdc9d0
MD
571 if (clocksource_rating)
572 sh_cmt_register_clocksource(p, name, clocksource_rating);
573
3fb1b6ad
MD
574 return 0;
575}
576
577static int sh_cmt_setup(struct sh_cmt_priv *p, struct platform_device *pdev)
578{
46a12f74 579 struct sh_timer_config *cfg = pdev->dev.platform_data;
3fb1b6ad
MD
580 struct resource *res;
581 int irq, ret;
582 ret = -ENXIO;
583
584 memset(p, 0, sizeof(*p));
585 p->pdev = pdev;
586
587 if (!cfg) {
588 dev_err(&p->pdev->dev, "missing platform data\n");
589 goto err0;
590 }
591
592 platform_set_drvdata(pdev, p);
593
594 res = platform_get_resource(p->pdev, IORESOURCE_MEM, 0);
595 if (!res) {
596 dev_err(&p->pdev->dev, "failed to get I/O memory\n");
597 goto err0;
598 }
599
600 irq = platform_get_irq(p->pdev, 0);
601 if (irq < 0) {
602 dev_err(&p->pdev->dev, "failed to get irq\n");
603 goto err0;
604 }
605
606 /* map memory, let mapbase point to our channel */
607 p->mapbase = ioremap_nocache(res->start, resource_size(res));
608 if (p->mapbase == NULL) {
214a607a 609 dev_err(&p->pdev->dev, "failed to remap I/O memory\n");
3fb1b6ad
MD
610 goto err0;
611 }
612
613 /* request irq using setup_irq() (too early for request_irq()) */
214a607a 614 p->irqaction.name = dev_name(&p->pdev->dev);
3fb1b6ad
MD
615 p->irqaction.handler = sh_cmt_interrupt;
616 p->irqaction.dev_id = p;
fecf066c
PM
617 p->irqaction.flags = IRQF_DISABLED | IRQF_TIMER | \
618 IRQF_IRQPOLL | IRQF_NOBALANCING;
3fb1b6ad
MD
619
620 /* get hold of clock */
c2a25e81 621 p->clk = clk_get(&p->pdev->dev, "cmt_fck");
3fb1b6ad 622 if (IS_ERR(p->clk)) {
03ff858c
MD
623 dev_err(&p->pdev->dev, "cannot get clock\n");
624 ret = PTR_ERR(p->clk);
625 goto err1;
3fb1b6ad
MD
626 }
627
628 if (resource_size(res) == 6) {
629 p->width = 16;
630 p->overflow_bit = 0x80;
3014f474 631 p->clear_bits = ~0x80;
3fb1b6ad
MD
632 } else {
633 p->width = 32;
634 p->overflow_bit = 0x8000;
635 p->clear_bits = ~0xc000;
636 }
637
214a607a 638 ret = sh_cmt_register(p, (char *)dev_name(&p->pdev->dev),
da64c2a8
PM
639 cfg->clockevent_rating,
640 cfg->clocksource_rating);
641 if (ret) {
214a607a 642 dev_err(&p->pdev->dev, "registration failed\n");
da64c2a8
PM
643 goto err1;
644 }
645
646 ret = setup_irq(irq, &p->irqaction);
647 if (ret) {
214a607a 648 dev_err(&p->pdev->dev, "failed to request irq %d\n", irq);
da64c2a8
PM
649 goto err1;
650 }
651
652 return 0;
653
654err1:
3fb1b6ad 655 iounmap(p->mapbase);
da64c2a8 656err0:
3fb1b6ad
MD
657 return ret;
658}
659
660static int __devinit sh_cmt_probe(struct platform_device *pdev)
661{
662 struct sh_cmt_priv *p = platform_get_drvdata(pdev);
663 int ret;
664
e475eedb 665 if (p) {
214a607a 666 dev_info(&pdev->dev, "kept as earlytimer\n");
01fa68b5 667 pm_runtime_enable(&pdev->dev);
e475eedb
MD
668 return 0;
669 }
670
8e0b8429 671 p = kmalloc(sizeof(*p), GFP_KERNEL);
3fb1b6ad
MD
672 if (p == NULL) {
673 dev_err(&pdev->dev, "failed to allocate driver data\n");
674 return -ENOMEM;
675 }
676
677 ret = sh_cmt_setup(p, pdev);
678 if (ret) {
8e0b8429 679 kfree(p);
3fb1b6ad
MD
680 platform_set_drvdata(pdev, NULL);
681 }
01fa68b5
MD
682
683 if (!is_early_platform_device(pdev))
684 pm_runtime_enable(&pdev->dev);
3fb1b6ad
MD
685 return ret;
686}
687
688static int __devexit sh_cmt_remove(struct platform_device *pdev)
689{
690 return -EBUSY; /* cannot unregister clockevent and clocksource */
691}
692
693static struct platform_driver sh_cmt_device_driver = {
694 .probe = sh_cmt_probe,
695 .remove = __devexit_p(sh_cmt_remove),
696 .driver = {
697 .name = "sh_cmt",
698 }
699};
700
701static int __init sh_cmt_init(void)
702{
703 return platform_driver_register(&sh_cmt_device_driver);
704}
705
706static void __exit sh_cmt_exit(void)
707{
708 platform_driver_unregister(&sh_cmt_device_driver);
709}
710
e475eedb 711early_platform_init("earlytimer", &sh_cmt_device_driver);
3fb1b6ad
MD
712module_init(sh_cmt_init);
713module_exit(sh_cmt_exit);
714
715MODULE_AUTHOR("Magnus Damm");
716MODULE_DESCRIPTION("SuperH CMT Timer Driver");
717MODULE_LICENSE("GPL v2");