Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * SuperH Timer Support - TMU
4 *
5 * Copyright (C) 2009 Magnus Damm
6 */
7
8#include <linux/clk.h>
9#include <linux/clockchips.h>
10#include <linux/clocksource.h>
11#include <linux/delay.h>
12#include <linux/err.h>
13#include <linux/init.h>
14#include <linux/interrupt.h>
15#include <linux/io.h>
16#include <linux/ioport.h>
17#include <linux/irq.h>
18#include <linux/module.h>
19#include <linux/of.h>
20#include <linux/platform_device.h>
21#include <linux/pm_domain.h>
22#include <linux/pm_runtime.h>
23#include <linux/sh_timer.h>
24#include <linux/slab.h>
25#include <linux/spinlock.h>
26
27#ifdef CONFIG_SUPERH
28#include <asm/platform_early.h>
29#endif
30
31enum sh_tmu_model {
32 SH_TMU,
33 SH_TMU_SH3,
34};
35
36struct sh_tmu_device;
37
38struct sh_tmu_channel {
39 struct sh_tmu_device *tmu;
40 unsigned int index;
41
42 void __iomem *base;
43 int irq;
44
45 unsigned long periodic;
46 struct clock_event_device ced;
47 struct clocksource cs;
48 bool cs_enabled;
49 unsigned int enable_count;
50};
51
52struct sh_tmu_device {
53 struct platform_device *pdev;
54
55 void __iomem *mapbase;
56 struct clk *clk;
57 unsigned long rate;
58
59 enum sh_tmu_model model;
60
61 raw_spinlock_t lock; /* Protect the shared start/stop register */
62
63 struct sh_tmu_channel *channels;
64 unsigned int num_channels;
65
66 bool has_clockevent;
67 bool has_clocksource;
68};
69
70#define TSTR -1 /* shared register */
71#define TCOR 0 /* channel register */
72#define TCNT 1 /* channel register */
73#define TCR 2 /* channel register */
74
75#define TCR_UNF (1 << 8)
76#define TCR_UNIE (1 << 5)
77#define TCR_TPSC_CLK4 (0 << 0)
78#define TCR_TPSC_CLK16 (1 << 0)
79#define TCR_TPSC_CLK64 (2 << 0)
80#define TCR_TPSC_CLK256 (3 << 0)
81#define TCR_TPSC_CLK1024 (4 << 0)
82#define TCR_TPSC_MASK (7 << 0)
83
84static inline unsigned long sh_tmu_read(struct sh_tmu_channel *ch, int reg_nr)
85{
86 unsigned long offs;
87
88 if (reg_nr == TSTR) {
89 switch (ch->tmu->model) {
90 case SH_TMU_SH3:
91 return ioread8(ch->tmu->mapbase + 2);
92 case SH_TMU:
93 return ioread8(ch->tmu->mapbase + 4);
94 }
95 }
96
97 offs = reg_nr << 2;
98
99 if (reg_nr == TCR)
100 return ioread16(ch->base + offs);
101 else
102 return ioread32(ch->base + offs);
103}
104
105static inline void sh_tmu_write(struct sh_tmu_channel *ch, int reg_nr,
106 unsigned long value)
107{
108 unsigned long offs;
109
110 if (reg_nr == TSTR) {
111 switch (ch->tmu->model) {
112 case SH_TMU_SH3:
113 return iowrite8(value, ch->tmu->mapbase + 2);
114 case SH_TMU:
115 return iowrite8(value, ch->tmu->mapbase + 4);
116 }
117 }
118
119 offs = reg_nr << 2;
120
121 if (reg_nr == TCR)
122 iowrite16(value, ch->base + offs);
123 else
124 iowrite32(value, ch->base + offs);
125}
126
127static void sh_tmu_start_stop_ch(struct sh_tmu_channel *ch, int start)
128{
129 unsigned long flags, value;
130
131 /* start stop register shared by multiple timer channels */
132 raw_spin_lock_irqsave(&ch->tmu->lock, flags);
133 value = sh_tmu_read(ch, TSTR);
134
135 if (start)
136 value |= 1 << ch->index;
137 else
138 value &= ~(1 << ch->index);
139
140 sh_tmu_write(ch, TSTR, value);
141 raw_spin_unlock_irqrestore(&ch->tmu->lock, flags);
142}
143
144static int __sh_tmu_enable(struct sh_tmu_channel *ch)
145{
146 int ret;
147
148 /* enable clock */
149 ret = clk_enable(ch->tmu->clk);
150 if (ret) {
151 dev_err(&ch->tmu->pdev->dev, "ch%u: cannot enable clock\n",
152 ch->index);
153 return ret;
154 }
155
156 /* make sure channel is disabled */
157 sh_tmu_start_stop_ch(ch, 0);
158
159 /* maximum timeout */
160 sh_tmu_write(ch, TCOR, 0xffffffff);
161 sh_tmu_write(ch, TCNT, 0xffffffff);
162
163 /* configure channel to parent clock / 4, irq off */
164 sh_tmu_write(ch, TCR, TCR_TPSC_CLK4);
165
166 /* enable channel */
167 sh_tmu_start_stop_ch(ch, 1);
168
169 return 0;
170}
171
172static int sh_tmu_enable(struct sh_tmu_channel *ch)
173{
174 if (ch->enable_count++ > 0)
175 return 0;
176
177 pm_runtime_get_sync(&ch->tmu->pdev->dev);
178 dev_pm_syscore_device(&ch->tmu->pdev->dev, true);
179
180 return __sh_tmu_enable(ch);
181}
182
183static void __sh_tmu_disable(struct sh_tmu_channel *ch)
184{
185 /* disable channel */
186 sh_tmu_start_stop_ch(ch, 0);
187
188 /* disable interrupts in TMU block */
189 sh_tmu_write(ch, TCR, TCR_TPSC_CLK4);
190
191 /* stop clock */
192 clk_disable(ch->tmu->clk);
193}
194
195static void sh_tmu_disable(struct sh_tmu_channel *ch)
196{
197 if (WARN_ON(ch->enable_count == 0))
198 return;
199
200 if (--ch->enable_count > 0)
201 return;
202
203 __sh_tmu_disable(ch);
204
205 dev_pm_syscore_device(&ch->tmu->pdev->dev, false);
206 pm_runtime_put(&ch->tmu->pdev->dev);
207}
208
209static void sh_tmu_set_next(struct sh_tmu_channel *ch, unsigned long delta,
210 int periodic)
211{
212 /* stop timer */
213 sh_tmu_start_stop_ch(ch, 0);
214
215 /* acknowledge interrupt */
216 sh_tmu_read(ch, TCR);
217
218 /* enable interrupt */
219 sh_tmu_write(ch, TCR, TCR_UNIE | TCR_TPSC_CLK4);
220
221 /* reload delta value in case of periodic timer */
222 if (periodic)
223 sh_tmu_write(ch, TCOR, delta);
224 else
225 sh_tmu_write(ch, TCOR, 0xffffffff);
226
227 sh_tmu_write(ch, TCNT, delta);
228
229 /* start timer */
230 sh_tmu_start_stop_ch(ch, 1);
231}
232
233static irqreturn_t sh_tmu_interrupt(int irq, void *dev_id)
234{
235 struct sh_tmu_channel *ch = dev_id;
236
237 /* disable or acknowledge interrupt */
238 if (clockevent_state_oneshot(&ch->ced))
239 sh_tmu_write(ch, TCR, TCR_TPSC_CLK4);
240 else
241 sh_tmu_write(ch, TCR, TCR_UNIE | TCR_TPSC_CLK4);
242
243 /* notify clockevent layer */
244 ch->ced.event_handler(&ch->ced);
245 return IRQ_HANDLED;
246}
247
248static struct sh_tmu_channel *cs_to_sh_tmu(struct clocksource *cs)
249{
250 return container_of(cs, struct sh_tmu_channel, cs);
251}
252
253static u64 sh_tmu_clocksource_read(struct clocksource *cs)
254{
255 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
256
257 return sh_tmu_read(ch, TCNT) ^ 0xffffffff;
258}
259
260static int sh_tmu_clocksource_enable(struct clocksource *cs)
261{
262 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
263 int ret;
264
265 if (WARN_ON(ch->cs_enabled))
266 return 0;
267
268 ret = sh_tmu_enable(ch);
269 if (!ret)
270 ch->cs_enabled = true;
271
272 return ret;
273}
274
275static void sh_tmu_clocksource_disable(struct clocksource *cs)
276{
277 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
278
279 if (WARN_ON(!ch->cs_enabled))
280 return;
281
282 sh_tmu_disable(ch);
283 ch->cs_enabled = false;
284}
285
286static void sh_tmu_clocksource_suspend(struct clocksource *cs)
287{
288 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
289
290 if (!ch->cs_enabled)
291 return;
292
293 if (--ch->enable_count == 0) {
294 __sh_tmu_disable(ch);
295 dev_pm_genpd_suspend(&ch->tmu->pdev->dev);
296 }
297}
298
299static void sh_tmu_clocksource_resume(struct clocksource *cs)
300{
301 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
302
303 if (!ch->cs_enabled)
304 return;
305
306 if (ch->enable_count++ == 0) {
307 dev_pm_genpd_resume(&ch->tmu->pdev->dev);
308 __sh_tmu_enable(ch);
309 }
310}
311
312static int sh_tmu_register_clocksource(struct sh_tmu_channel *ch,
313 const char *name)
314{
315 struct clocksource *cs = &ch->cs;
316
317 cs->name = name;
318 cs->rating = 200;
319 cs->read = sh_tmu_clocksource_read;
320 cs->enable = sh_tmu_clocksource_enable;
321 cs->disable = sh_tmu_clocksource_disable;
322 cs->suspend = sh_tmu_clocksource_suspend;
323 cs->resume = sh_tmu_clocksource_resume;
324 cs->mask = CLOCKSOURCE_MASK(32);
325 cs->flags = CLOCK_SOURCE_IS_CONTINUOUS;
326
327 dev_info(&ch->tmu->pdev->dev, "ch%u: used as clock source\n",
328 ch->index);
329
330 clocksource_register_hz(cs, ch->tmu->rate);
331 return 0;
332}
333
334static struct sh_tmu_channel *ced_to_sh_tmu(struct clock_event_device *ced)
335{
336 return container_of(ced, struct sh_tmu_channel, ced);
337}
338
339static void sh_tmu_clock_event_start(struct sh_tmu_channel *ch, int periodic)
340{
341 sh_tmu_enable(ch);
342
343 if (periodic) {
344 ch->periodic = (ch->tmu->rate + HZ/2) / HZ;
345 sh_tmu_set_next(ch, ch->periodic, 1);
346 }
347}
348
349static int sh_tmu_clock_event_shutdown(struct clock_event_device *ced)
350{
351 struct sh_tmu_channel *ch = ced_to_sh_tmu(ced);
352
353 if (clockevent_state_oneshot(ced) || clockevent_state_periodic(ced))
354 sh_tmu_disable(ch);
355 return 0;
356}
357
358static int sh_tmu_clock_event_set_state(struct clock_event_device *ced,
359 int periodic)
360{
361 struct sh_tmu_channel *ch = ced_to_sh_tmu(ced);
362
363 /* deal with old setting first */
364 if (clockevent_state_oneshot(ced) || clockevent_state_periodic(ced))
365 sh_tmu_disable(ch);
366
367 dev_info(&ch->tmu->pdev->dev, "ch%u: used for %s clock events\n",
368 ch->index, periodic ? "periodic" : "oneshot");
369 sh_tmu_clock_event_start(ch, periodic);
370 return 0;
371}
372
373static int sh_tmu_clock_event_set_oneshot(struct clock_event_device *ced)
374{
375 return sh_tmu_clock_event_set_state(ced, 0);
376}
377
378static int sh_tmu_clock_event_set_periodic(struct clock_event_device *ced)
379{
380 return sh_tmu_clock_event_set_state(ced, 1);
381}
382
383static int sh_tmu_clock_event_next(unsigned long delta,
384 struct clock_event_device *ced)
385{
386 struct sh_tmu_channel *ch = ced_to_sh_tmu(ced);
387
388 BUG_ON(!clockevent_state_oneshot(ced));
389
390 /* program new delta value */
391 sh_tmu_set_next(ch, delta, 0);
392 return 0;
393}
394
395static void sh_tmu_clock_event_suspend(struct clock_event_device *ced)
396{
397 dev_pm_genpd_suspend(&ced_to_sh_tmu(ced)->tmu->pdev->dev);
398}
399
400static void sh_tmu_clock_event_resume(struct clock_event_device *ced)
401{
402 dev_pm_genpd_resume(&ced_to_sh_tmu(ced)->tmu->pdev->dev);
403}
404
405static void sh_tmu_register_clockevent(struct sh_tmu_channel *ch,
406 const char *name)
407{
408 struct clock_event_device *ced = &ch->ced;
409 int ret;
410
411 ced->name = name;
412 ced->features = CLOCK_EVT_FEAT_PERIODIC;
413 ced->features |= CLOCK_EVT_FEAT_ONESHOT;
414 ced->rating = 200;
415 ced->cpumask = cpu_possible_mask;
416 ced->set_next_event = sh_tmu_clock_event_next;
417 ced->set_state_shutdown = sh_tmu_clock_event_shutdown;
418 ced->set_state_periodic = sh_tmu_clock_event_set_periodic;
419 ced->set_state_oneshot = sh_tmu_clock_event_set_oneshot;
420 ced->suspend = sh_tmu_clock_event_suspend;
421 ced->resume = sh_tmu_clock_event_resume;
422
423 dev_info(&ch->tmu->pdev->dev, "ch%u: used for clock events\n",
424 ch->index);
425
426 clockevents_config_and_register(ced, ch->tmu->rate, 0x300, 0xffffffff);
427
428 ret = request_irq(ch->irq, sh_tmu_interrupt,
429 IRQF_TIMER | IRQF_IRQPOLL | IRQF_NOBALANCING,
430 dev_name(&ch->tmu->pdev->dev), ch);
431 if (ret) {
432 dev_err(&ch->tmu->pdev->dev, "ch%u: failed to request irq %d\n",
433 ch->index, ch->irq);
434 return;
435 }
436}
437
438static int sh_tmu_register(struct sh_tmu_channel *ch, const char *name,
439 bool clockevent, bool clocksource)
440{
441 if (clockevent) {
442 ch->tmu->has_clockevent = true;
443 sh_tmu_register_clockevent(ch, name);
444 } else if (clocksource) {
445 ch->tmu->has_clocksource = true;
446 sh_tmu_register_clocksource(ch, name);
447 }
448
449 return 0;
450}
451
452static int sh_tmu_channel_setup(struct sh_tmu_channel *ch, unsigned int index,
453 bool clockevent, bool clocksource,
454 struct sh_tmu_device *tmu)
455{
456 /* Skip unused channels. */
457 if (!clockevent && !clocksource)
458 return 0;
459
460 ch->tmu = tmu;
461 ch->index = index;
462
463 if (tmu->model == SH_TMU_SH3)
464 ch->base = tmu->mapbase + 4 + ch->index * 12;
465 else
466 ch->base = tmu->mapbase + 8 + ch->index * 12;
467
468 ch->irq = platform_get_irq(tmu->pdev, index);
469 if (ch->irq < 0)
470 return ch->irq;
471
472 ch->cs_enabled = false;
473 ch->enable_count = 0;
474
475 return sh_tmu_register(ch, dev_name(&tmu->pdev->dev),
476 clockevent, clocksource);
477}
478
479static int sh_tmu_map_memory(struct sh_tmu_device *tmu)
480{
481 struct resource *res;
482
483 res = platform_get_resource(tmu->pdev, IORESOURCE_MEM, 0);
484 if (!res) {
485 dev_err(&tmu->pdev->dev, "failed to get I/O memory\n");
486 return -ENXIO;
487 }
488
489 tmu->mapbase = ioremap(res->start, resource_size(res));
490 if (tmu->mapbase == NULL)
491 return -ENXIO;
492
493 return 0;
494}
495
496static int sh_tmu_parse_dt(struct sh_tmu_device *tmu)
497{
498 struct device_node *np = tmu->pdev->dev.of_node;
499
500 tmu->model = SH_TMU;
501 tmu->num_channels = 3;
502
503 of_property_read_u32(np, "#renesas,channels", &tmu->num_channels);
504
505 if (tmu->num_channels != 2 && tmu->num_channels != 3) {
506 dev_err(&tmu->pdev->dev, "invalid number of channels %u\n",
507 tmu->num_channels);
508 return -EINVAL;
509 }
510
511 return 0;
512}
513
514static int sh_tmu_setup(struct sh_tmu_device *tmu, struct platform_device *pdev)
515{
516 unsigned int i;
517 int ret;
518
519 tmu->pdev = pdev;
520
521 raw_spin_lock_init(&tmu->lock);
522
523 if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) {
524 ret = sh_tmu_parse_dt(tmu);
525 if (ret < 0)
526 return ret;
527 } else if (pdev->dev.platform_data) {
528 const struct platform_device_id *id = pdev->id_entry;
529 struct sh_timer_config *cfg = pdev->dev.platform_data;
530
531 tmu->model = id->driver_data;
532 tmu->num_channels = hweight8(cfg->channels_mask);
533 } else {
534 dev_err(&tmu->pdev->dev, "missing platform data\n");
535 return -ENXIO;
536 }
537
538 /* Get hold of clock. */
539 tmu->clk = clk_get(&tmu->pdev->dev, "fck");
540 if (IS_ERR(tmu->clk)) {
541 dev_err(&tmu->pdev->dev, "cannot get clock\n");
542 return PTR_ERR(tmu->clk);
543 }
544
545 ret = clk_prepare(tmu->clk);
546 if (ret < 0)
547 goto err_clk_put;
548
549 /* Determine clock rate. */
550 ret = clk_enable(tmu->clk);
551 if (ret < 0)
552 goto err_clk_unprepare;
553
554 tmu->rate = clk_get_rate(tmu->clk) / 4;
555 clk_disable(tmu->clk);
556
557 /* Map the memory resource. */
558 ret = sh_tmu_map_memory(tmu);
559 if (ret < 0) {
560 dev_err(&tmu->pdev->dev, "failed to remap I/O memory\n");
561 goto err_clk_unprepare;
562 }
563
564 /* Allocate and setup the channels. */
565 tmu->channels = kcalloc(tmu->num_channels, sizeof(*tmu->channels),
566 GFP_KERNEL);
567 if (tmu->channels == NULL) {
568 ret = -ENOMEM;
569 goto err_unmap;
570 }
571
572 /*
573 * Use the first channel as a clock event device and the second channel
574 * as a clock source.
575 */
576 for (i = 0; i < tmu->num_channels; ++i) {
577 ret = sh_tmu_channel_setup(&tmu->channels[i], i,
578 i == 0, i == 1, tmu);
579 if (ret < 0)
580 goto err_unmap;
581 }
582
583 platform_set_drvdata(pdev, tmu);
584
585 return 0;
586
587err_unmap:
588 kfree(tmu->channels);
589 iounmap(tmu->mapbase);
590err_clk_unprepare:
591 clk_unprepare(tmu->clk);
592err_clk_put:
593 clk_put(tmu->clk);
594 return ret;
595}
596
597static int sh_tmu_probe(struct platform_device *pdev)
598{
599 struct sh_tmu_device *tmu = platform_get_drvdata(pdev);
600 int ret;
601
602 if (!is_sh_early_platform_device(pdev)) {
603 pm_runtime_set_active(&pdev->dev);
604 pm_runtime_enable(&pdev->dev);
605 }
606
607 if (tmu) {
608 dev_info(&pdev->dev, "kept as earlytimer\n");
609 goto out;
610 }
611
612 tmu = kzalloc(sizeof(*tmu), GFP_KERNEL);
613 if (tmu == NULL)
614 return -ENOMEM;
615
616 ret = sh_tmu_setup(tmu, pdev);
617 if (ret) {
618 kfree(tmu);
619 pm_runtime_idle(&pdev->dev);
620 return ret;
621 }
622
623 if (is_sh_early_platform_device(pdev))
624 return 0;
625
626 out:
627 if (tmu->has_clockevent || tmu->has_clocksource)
628 pm_runtime_irq_safe(&pdev->dev);
629 else
630 pm_runtime_idle(&pdev->dev);
631
632 return 0;
633}
634
635static const struct platform_device_id sh_tmu_id_table[] = {
636 { "sh-tmu", SH_TMU },
637 { "sh-tmu-sh3", SH_TMU_SH3 },
638 { }
639};
640MODULE_DEVICE_TABLE(platform, sh_tmu_id_table);
641
642static const struct of_device_id sh_tmu_of_table[] __maybe_unused = {
643 { .compatible = "renesas,tmu" },
644 { }
645};
646MODULE_DEVICE_TABLE(of, sh_tmu_of_table);
647
648static struct platform_driver sh_tmu_device_driver = {
649 .probe = sh_tmu_probe,
650 .driver = {
651 .name = "sh_tmu",
652 .of_match_table = of_match_ptr(sh_tmu_of_table),
653 .suppress_bind_attrs = true,
654 },
655 .id_table = sh_tmu_id_table,
656};
657
658static int __init sh_tmu_init(void)
659{
660 return platform_driver_register(&sh_tmu_device_driver);
661}
662
663static void __exit sh_tmu_exit(void)
664{
665 platform_driver_unregister(&sh_tmu_device_driver);
666}
667
668#ifdef CONFIG_SUPERH
669sh_early_platform_init("earlytimer", &sh_tmu_device_driver);
670#endif
671
672subsys_initcall(sh_tmu_init);
673module_exit(sh_tmu_exit);
674
675MODULE_AUTHOR("Magnus Damm");
676MODULE_DESCRIPTION("SuperH TMU Timer Driver");
1/*
2 * SuperH Timer Support - TMU
3 *
4 * Copyright (C) 2009 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
16#include <linux/clk.h>
17#include <linux/clockchips.h>
18#include <linux/clocksource.h>
19#include <linux/delay.h>
20#include <linux/err.h>
21#include <linux/init.h>
22#include <linux/interrupt.h>
23#include <linux/io.h>
24#include <linux/ioport.h>
25#include <linux/irq.h>
26#include <linux/module.h>
27#include <linux/of.h>
28#include <linux/platform_device.h>
29#include <linux/pm_domain.h>
30#include <linux/pm_runtime.h>
31#include <linux/sh_timer.h>
32#include <linux/slab.h>
33#include <linux/spinlock.h>
34
35enum sh_tmu_model {
36 SH_TMU,
37 SH_TMU_SH3,
38};
39
40struct sh_tmu_device;
41
42struct sh_tmu_channel {
43 struct sh_tmu_device *tmu;
44 unsigned int index;
45
46 void __iomem *base;
47 int irq;
48
49 unsigned long rate;
50 unsigned long periodic;
51 struct clock_event_device ced;
52 struct clocksource cs;
53 bool cs_enabled;
54 unsigned int enable_count;
55};
56
57struct sh_tmu_device {
58 struct platform_device *pdev;
59
60 void __iomem *mapbase;
61 struct clk *clk;
62
63 enum sh_tmu_model model;
64
65 raw_spinlock_t lock; /* Protect the shared start/stop register */
66
67 struct sh_tmu_channel *channels;
68 unsigned int num_channels;
69
70 bool has_clockevent;
71 bool has_clocksource;
72};
73
74#define TSTR -1 /* shared register */
75#define TCOR 0 /* channel register */
76#define TCNT 1 /* channel register */
77#define TCR 2 /* channel register */
78
79#define TCR_UNF (1 << 8)
80#define TCR_UNIE (1 << 5)
81#define TCR_TPSC_CLK4 (0 << 0)
82#define TCR_TPSC_CLK16 (1 << 0)
83#define TCR_TPSC_CLK64 (2 << 0)
84#define TCR_TPSC_CLK256 (3 << 0)
85#define TCR_TPSC_CLK1024 (4 << 0)
86#define TCR_TPSC_MASK (7 << 0)
87
88static inline unsigned long sh_tmu_read(struct sh_tmu_channel *ch, int reg_nr)
89{
90 unsigned long offs;
91
92 if (reg_nr == TSTR) {
93 switch (ch->tmu->model) {
94 case SH_TMU_SH3:
95 return ioread8(ch->tmu->mapbase + 2);
96 case SH_TMU:
97 return ioread8(ch->tmu->mapbase + 4);
98 }
99 }
100
101 offs = reg_nr << 2;
102
103 if (reg_nr == TCR)
104 return ioread16(ch->base + offs);
105 else
106 return ioread32(ch->base + offs);
107}
108
109static inline void sh_tmu_write(struct sh_tmu_channel *ch, int reg_nr,
110 unsigned long value)
111{
112 unsigned long offs;
113
114 if (reg_nr == TSTR) {
115 switch (ch->tmu->model) {
116 case SH_TMU_SH3:
117 return iowrite8(value, ch->tmu->mapbase + 2);
118 case SH_TMU:
119 return iowrite8(value, ch->tmu->mapbase + 4);
120 }
121 }
122
123 offs = reg_nr << 2;
124
125 if (reg_nr == TCR)
126 iowrite16(value, ch->base + offs);
127 else
128 iowrite32(value, ch->base + offs);
129}
130
131static void sh_tmu_start_stop_ch(struct sh_tmu_channel *ch, int start)
132{
133 unsigned long flags, value;
134
135 /* start stop register shared by multiple timer channels */
136 raw_spin_lock_irqsave(&ch->tmu->lock, flags);
137 value = sh_tmu_read(ch, TSTR);
138
139 if (start)
140 value |= 1 << ch->index;
141 else
142 value &= ~(1 << ch->index);
143
144 sh_tmu_write(ch, TSTR, value);
145 raw_spin_unlock_irqrestore(&ch->tmu->lock, flags);
146}
147
148static int __sh_tmu_enable(struct sh_tmu_channel *ch)
149{
150 int ret;
151
152 /* enable clock */
153 ret = clk_enable(ch->tmu->clk);
154 if (ret) {
155 dev_err(&ch->tmu->pdev->dev, "ch%u: cannot enable clock\n",
156 ch->index);
157 return ret;
158 }
159
160 /* make sure channel is disabled */
161 sh_tmu_start_stop_ch(ch, 0);
162
163 /* maximum timeout */
164 sh_tmu_write(ch, TCOR, 0xffffffff);
165 sh_tmu_write(ch, TCNT, 0xffffffff);
166
167 /* configure channel to parent clock / 4, irq off */
168 ch->rate = clk_get_rate(ch->tmu->clk) / 4;
169 sh_tmu_write(ch, TCR, TCR_TPSC_CLK4);
170
171 /* enable channel */
172 sh_tmu_start_stop_ch(ch, 1);
173
174 return 0;
175}
176
177static int sh_tmu_enable(struct sh_tmu_channel *ch)
178{
179 if (ch->enable_count++ > 0)
180 return 0;
181
182 pm_runtime_get_sync(&ch->tmu->pdev->dev);
183 dev_pm_syscore_device(&ch->tmu->pdev->dev, true);
184
185 return __sh_tmu_enable(ch);
186}
187
188static void __sh_tmu_disable(struct sh_tmu_channel *ch)
189{
190 /* disable channel */
191 sh_tmu_start_stop_ch(ch, 0);
192
193 /* disable interrupts in TMU block */
194 sh_tmu_write(ch, TCR, TCR_TPSC_CLK4);
195
196 /* stop clock */
197 clk_disable(ch->tmu->clk);
198}
199
200static void sh_tmu_disable(struct sh_tmu_channel *ch)
201{
202 if (WARN_ON(ch->enable_count == 0))
203 return;
204
205 if (--ch->enable_count > 0)
206 return;
207
208 __sh_tmu_disable(ch);
209
210 dev_pm_syscore_device(&ch->tmu->pdev->dev, false);
211 pm_runtime_put(&ch->tmu->pdev->dev);
212}
213
214static void sh_tmu_set_next(struct sh_tmu_channel *ch, unsigned long delta,
215 int periodic)
216{
217 /* stop timer */
218 sh_tmu_start_stop_ch(ch, 0);
219
220 /* acknowledge interrupt */
221 sh_tmu_read(ch, TCR);
222
223 /* enable interrupt */
224 sh_tmu_write(ch, TCR, TCR_UNIE | TCR_TPSC_CLK4);
225
226 /* reload delta value in case of periodic timer */
227 if (periodic)
228 sh_tmu_write(ch, TCOR, delta);
229 else
230 sh_tmu_write(ch, TCOR, 0xffffffff);
231
232 sh_tmu_write(ch, TCNT, delta);
233
234 /* start timer */
235 sh_tmu_start_stop_ch(ch, 1);
236}
237
238static irqreturn_t sh_tmu_interrupt(int irq, void *dev_id)
239{
240 struct sh_tmu_channel *ch = dev_id;
241
242 /* disable or acknowledge interrupt */
243 if (clockevent_state_oneshot(&ch->ced))
244 sh_tmu_write(ch, TCR, TCR_TPSC_CLK4);
245 else
246 sh_tmu_write(ch, TCR, TCR_UNIE | TCR_TPSC_CLK4);
247
248 /* notify clockevent layer */
249 ch->ced.event_handler(&ch->ced);
250 return IRQ_HANDLED;
251}
252
253static struct sh_tmu_channel *cs_to_sh_tmu(struct clocksource *cs)
254{
255 return container_of(cs, struct sh_tmu_channel, cs);
256}
257
258static cycle_t sh_tmu_clocksource_read(struct clocksource *cs)
259{
260 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
261
262 return sh_tmu_read(ch, TCNT) ^ 0xffffffff;
263}
264
265static int sh_tmu_clocksource_enable(struct clocksource *cs)
266{
267 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
268 int ret;
269
270 if (WARN_ON(ch->cs_enabled))
271 return 0;
272
273 ret = sh_tmu_enable(ch);
274 if (!ret) {
275 __clocksource_update_freq_hz(cs, ch->rate);
276 ch->cs_enabled = true;
277 }
278
279 return ret;
280}
281
282static void sh_tmu_clocksource_disable(struct clocksource *cs)
283{
284 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
285
286 if (WARN_ON(!ch->cs_enabled))
287 return;
288
289 sh_tmu_disable(ch);
290 ch->cs_enabled = false;
291}
292
293static void sh_tmu_clocksource_suspend(struct clocksource *cs)
294{
295 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
296
297 if (!ch->cs_enabled)
298 return;
299
300 if (--ch->enable_count == 0) {
301 __sh_tmu_disable(ch);
302 pm_genpd_syscore_poweroff(&ch->tmu->pdev->dev);
303 }
304}
305
306static void sh_tmu_clocksource_resume(struct clocksource *cs)
307{
308 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs);
309
310 if (!ch->cs_enabled)
311 return;
312
313 if (ch->enable_count++ == 0) {
314 pm_genpd_syscore_poweron(&ch->tmu->pdev->dev);
315 __sh_tmu_enable(ch);
316 }
317}
318
319static int sh_tmu_register_clocksource(struct sh_tmu_channel *ch,
320 const char *name)
321{
322 struct clocksource *cs = &ch->cs;
323
324 cs->name = name;
325 cs->rating = 200;
326 cs->read = sh_tmu_clocksource_read;
327 cs->enable = sh_tmu_clocksource_enable;
328 cs->disable = sh_tmu_clocksource_disable;
329 cs->suspend = sh_tmu_clocksource_suspend;
330 cs->resume = sh_tmu_clocksource_resume;
331 cs->mask = CLOCKSOURCE_MASK(32);
332 cs->flags = CLOCK_SOURCE_IS_CONTINUOUS;
333
334 dev_info(&ch->tmu->pdev->dev, "ch%u: used as clock source\n",
335 ch->index);
336
337 /* Register with dummy 1 Hz value, gets updated in ->enable() */
338 clocksource_register_hz(cs, 1);
339 return 0;
340}
341
342static struct sh_tmu_channel *ced_to_sh_tmu(struct clock_event_device *ced)
343{
344 return container_of(ced, struct sh_tmu_channel, ced);
345}
346
347static void sh_tmu_clock_event_start(struct sh_tmu_channel *ch, int periodic)
348{
349 struct clock_event_device *ced = &ch->ced;
350
351 sh_tmu_enable(ch);
352
353 clockevents_config(ced, ch->rate);
354
355 if (periodic) {
356 ch->periodic = (ch->rate + HZ/2) / HZ;
357 sh_tmu_set_next(ch, ch->periodic, 1);
358 }
359}
360
361static int sh_tmu_clock_event_shutdown(struct clock_event_device *ced)
362{
363 struct sh_tmu_channel *ch = ced_to_sh_tmu(ced);
364
365 if (clockevent_state_oneshot(ced) || clockevent_state_periodic(ced))
366 sh_tmu_disable(ch);
367 return 0;
368}
369
370static int sh_tmu_clock_event_set_state(struct clock_event_device *ced,
371 int periodic)
372{
373 struct sh_tmu_channel *ch = ced_to_sh_tmu(ced);
374
375 /* deal with old setting first */
376 if (clockevent_state_oneshot(ced) || clockevent_state_periodic(ced))
377 sh_tmu_disable(ch);
378
379 dev_info(&ch->tmu->pdev->dev, "ch%u: used for %s clock events\n",
380 ch->index, periodic ? "periodic" : "oneshot");
381 sh_tmu_clock_event_start(ch, periodic);
382 return 0;
383}
384
385static int sh_tmu_clock_event_set_oneshot(struct clock_event_device *ced)
386{
387 return sh_tmu_clock_event_set_state(ced, 0);
388}
389
390static int sh_tmu_clock_event_set_periodic(struct clock_event_device *ced)
391{
392 return sh_tmu_clock_event_set_state(ced, 1);
393}
394
395static int sh_tmu_clock_event_next(unsigned long delta,
396 struct clock_event_device *ced)
397{
398 struct sh_tmu_channel *ch = ced_to_sh_tmu(ced);
399
400 BUG_ON(!clockevent_state_oneshot(ced));
401
402 /* program new delta value */
403 sh_tmu_set_next(ch, delta, 0);
404 return 0;
405}
406
407static void sh_tmu_clock_event_suspend(struct clock_event_device *ced)
408{
409 pm_genpd_syscore_poweroff(&ced_to_sh_tmu(ced)->tmu->pdev->dev);
410}
411
412static void sh_tmu_clock_event_resume(struct clock_event_device *ced)
413{
414 pm_genpd_syscore_poweron(&ced_to_sh_tmu(ced)->tmu->pdev->dev);
415}
416
417static void sh_tmu_register_clockevent(struct sh_tmu_channel *ch,
418 const char *name)
419{
420 struct clock_event_device *ced = &ch->ced;
421 int ret;
422
423 ced->name = name;
424 ced->features = CLOCK_EVT_FEAT_PERIODIC;
425 ced->features |= CLOCK_EVT_FEAT_ONESHOT;
426 ced->rating = 200;
427 ced->cpumask = cpu_possible_mask;
428 ced->set_next_event = sh_tmu_clock_event_next;
429 ced->set_state_shutdown = sh_tmu_clock_event_shutdown;
430 ced->set_state_periodic = sh_tmu_clock_event_set_periodic;
431 ced->set_state_oneshot = sh_tmu_clock_event_set_oneshot;
432 ced->suspend = sh_tmu_clock_event_suspend;
433 ced->resume = sh_tmu_clock_event_resume;
434
435 dev_info(&ch->tmu->pdev->dev, "ch%u: used for clock events\n",
436 ch->index);
437
438 clockevents_config_and_register(ced, 1, 0x300, 0xffffffff);
439
440 ret = request_irq(ch->irq, sh_tmu_interrupt,
441 IRQF_TIMER | IRQF_IRQPOLL | IRQF_NOBALANCING,
442 dev_name(&ch->tmu->pdev->dev), ch);
443 if (ret) {
444 dev_err(&ch->tmu->pdev->dev, "ch%u: failed to request irq %d\n",
445 ch->index, ch->irq);
446 return;
447 }
448}
449
450static int sh_tmu_register(struct sh_tmu_channel *ch, const char *name,
451 bool clockevent, bool clocksource)
452{
453 if (clockevent) {
454 ch->tmu->has_clockevent = true;
455 sh_tmu_register_clockevent(ch, name);
456 } else if (clocksource) {
457 ch->tmu->has_clocksource = true;
458 sh_tmu_register_clocksource(ch, name);
459 }
460
461 return 0;
462}
463
464static int sh_tmu_channel_setup(struct sh_tmu_channel *ch, unsigned int index,
465 bool clockevent, bool clocksource,
466 struct sh_tmu_device *tmu)
467{
468 /* Skip unused channels. */
469 if (!clockevent && !clocksource)
470 return 0;
471
472 ch->tmu = tmu;
473 ch->index = index;
474
475 if (tmu->model == SH_TMU_SH3)
476 ch->base = tmu->mapbase + 4 + ch->index * 12;
477 else
478 ch->base = tmu->mapbase + 8 + ch->index * 12;
479
480 ch->irq = platform_get_irq(tmu->pdev, index);
481 if (ch->irq < 0) {
482 dev_err(&tmu->pdev->dev, "ch%u: failed to get irq\n",
483 ch->index);
484 return ch->irq;
485 }
486
487 ch->cs_enabled = false;
488 ch->enable_count = 0;
489
490 return sh_tmu_register(ch, dev_name(&tmu->pdev->dev),
491 clockevent, clocksource);
492}
493
494static int sh_tmu_map_memory(struct sh_tmu_device *tmu)
495{
496 struct resource *res;
497
498 res = platform_get_resource(tmu->pdev, IORESOURCE_MEM, 0);
499 if (!res) {
500 dev_err(&tmu->pdev->dev, "failed to get I/O memory\n");
501 return -ENXIO;
502 }
503
504 tmu->mapbase = ioremap_nocache(res->start, resource_size(res));
505 if (tmu->mapbase == NULL)
506 return -ENXIO;
507
508 return 0;
509}
510
511static int sh_tmu_parse_dt(struct sh_tmu_device *tmu)
512{
513 struct device_node *np = tmu->pdev->dev.of_node;
514
515 tmu->model = SH_TMU;
516 tmu->num_channels = 3;
517
518 of_property_read_u32(np, "#renesas,channels", &tmu->num_channels);
519
520 if (tmu->num_channels != 2 && tmu->num_channels != 3) {
521 dev_err(&tmu->pdev->dev, "invalid number of channels %u\n",
522 tmu->num_channels);
523 return -EINVAL;
524 }
525
526 return 0;
527}
528
529static int sh_tmu_setup(struct sh_tmu_device *tmu, struct platform_device *pdev)
530{
531 unsigned int i;
532 int ret;
533
534 tmu->pdev = pdev;
535
536 raw_spin_lock_init(&tmu->lock);
537
538 if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) {
539 ret = sh_tmu_parse_dt(tmu);
540 if (ret < 0)
541 return ret;
542 } else if (pdev->dev.platform_data) {
543 const struct platform_device_id *id = pdev->id_entry;
544 struct sh_timer_config *cfg = pdev->dev.platform_data;
545
546 tmu->model = id->driver_data;
547 tmu->num_channels = hweight8(cfg->channels_mask);
548 } else {
549 dev_err(&tmu->pdev->dev, "missing platform data\n");
550 return -ENXIO;
551 }
552
553 /* Get hold of clock. */
554 tmu->clk = clk_get(&tmu->pdev->dev, "fck");
555 if (IS_ERR(tmu->clk)) {
556 dev_err(&tmu->pdev->dev, "cannot get clock\n");
557 return PTR_ERR(tmu->clk);
558 }
559
560 ret = clk_prepare(tmu->clk);
561 if (ret < 0)
562 goto err_clk_put;
563
564 /* Map the memory resource. */
565 ret = sh_tmu_map_memory(tmu);
566 if (ret < 0) {
567 dev_err(&tmu->pdev->dev, "failed to remap I/O memory\n");
568 goto err_clk_unprepare;
569 }
570
571 /* Allocate and setup the channels. */
572 tmu->channels = kzalloc(sizeof(*tmu->channels) * tmu->num_channels,
573 GFP_KERNEL);
574 if (tmu->channels == NULL) {
575 ret = -ENOMEM;
576 goto err_unmap;
577 }
578
579 /*
580 * Use the first channel as a clock event device and the second channel
581 * as a clock source.
582 */
583 for (i = 0; i < tmu->num_channels; ++i) {
584 ret = sh_tmu_channel_setup(&tmu->channels[i], i,
585 i == 0, i == 1, tmu);
586 if (ret < 0)
587 goto err_unmap;
588 }
589
590 platform_set_drvdata(pdev, tmu);
591
592 return 0;
593
594err_unmap:
595 kfree(tmu->channels);
596 iounmap(tmu->mapbase);
597err_clk_unprepare:
598 clk_unprepare(tmu->clk);
599err_clk_put:
600 clk_put(tmu->clk);
601 return ret;
602}
603
604static int sh_tmu_probe(struct platform_device *pdev)
605{
606 struct sh_tmu_device *tmu = platform_get_drvdata(pdev);
607 int ret;
608
609 if (!is_early_platform_device(pdev)) {
610 pm_runtime_set_active(&pdev->dev);
611 pm_runtime_enable(&pdev->dev);
612 }
613
614 if (tmu) {
615 dev_info(&pdev->dev, "kept as earlytimer\n");
616 goto out;
617 }
618
619 tmu = kzalloc(sizeof(*tmu), GFP_KERNEL);
620 if (tmu == NULL)
621 return -ENOMEM;
622
623 ret = sh_tmu_setup(tmu, pdev);
624 if (ret) {
625 kfree(tmu);
626 pm_runtime_idle(&pdev->dev);
627 return ret;
628 }
629 if (is_early_platform_device(pdev))
630 return 0;
631
632 out:
633 if (tmu->has_clockevent || tmu->has_clocksource)
634 pm_runtime_irq_safe(&pdev->dev);
635 else
636 pm_runtime_idle(&pdev->dev);
637
638 return 0;
639}
640
641static int sh_tmu_remove(struct platform_device *pdev)
642{
643 return -EBUSY; /* cannot unregister clockevent and clocksource */
644}
645
646static const struct platform_device_id sh_tmu_id_table[] = {
647 { "sh-tmu", SH_TMU },
648 { "sh-tmu-sh3", SH_TMU_SH3 },
649 { }
650};
651MODULE_DEVICE_TABLE(platform, sh_tmu_id_table);
652
653static const struct of_device_id sh_tmu_of_table[] __maybe_unused = {
654 { .compatible = "renesas,tmu" },
655 { }
656};
657MODULE_DEVICE_TABLE(of, sh_tmu_of_table);
658
659static struct platform_driver sh_tmu_device_driver = {
660 .probe = sh_tmu_probe,
661 .remove = sh_tmu_remove,
662 .driver = {
663 .name = "sh_tmu",
664 .of_match_table = of_match_ptr(sh_tmu_of_table),
665 },
666 .id_table = sh_tmu_id_table,
667};
668
669static int __init sh_tmu_init(void)
670{
671 return platform_driver_register(&sh_tmu_device_driver);
672}
673
674static void __exit sh_tmu_exit(void)
675{
676 platform_driver_unregister(&sh_tmu_device_driver);
677}
678
679early_platform_init("earlytimer", &sh_tmu_device_driver);
680subsys_initcall(sh_tmu_init);
681module_exit(sh_tmu_exit);
682
683MODULE_AUTHOR("Magnus Damm");
684MODULE_DESCRIPTION("SuperH TMU Timer Driver");
685MODULE_LICENSE("GPL v2");