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