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