blob: 760777458a9091cd4de24790049635d935fb5afc [file] [log] [blame]
Kuninori Morimotoefad0112018-08-22 02:25:53 +00001// SPDX-License-Identifier: GPL-2.0
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00002/*
3 * SuperH Timer Support - CMT
4 *
5 * Copyright (C) 2008 Magnus Damm
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00006 */
7
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00008#include <linux/clk.h>
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00009#include <linux/clockchips.h>
Laurent Pincharte7a9bcc2014-02-12 16:56:44 +010010#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 Gortmaker7deeab52011-07-03 13:36:22 -040018#include <linux/module.h>
Laurent Pinchart1768aa22014-02-12 17:12:40 +010019#include <linux/of.h>
Geert Uytterhoeven2d1d5172017-09-18 15:46:47 +020020#include <linux/of_device.h>
Laurent Pincharte7a9bcc2014-02-12 16:56:44 +010021#include <linux/platform_device.h>
Rafael J. Wysocki615a4452012-03-13 22:40:06 +010022#include <linux/pm_domain.h>
Rafael J. Wysockibad81382012-08-06 01:48:57 +020023#include <linux/pm_runtime.h>
Laurent Pincharte7a9bcc2014-02-12 16:56:44 +010024#include <linux/sh_timer.h>
25#include <linux/slab.h>
26#include <linux/spinlock.h>
Magnus Damm3fb1b6a2009-01-22 09:55:59 +000027
Bartosz Golaszewski507fd012019-10-03 11:29:12 +020028#ifdef CONFIG_SUPERH
29#include <asm/platform_early.h>
30#endif
31
Laurent Pinchart2653caf2014-01-27 22:04:17 +010032struct sh_cmt_device;
Laurent Pinchart7269f932014-01-27 15:29:19 +010033
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010034/*
35 * The CMT comes in 5 different identified flavours, depending not only on the
36 * SoC but also on the particular instance. The following table lists the main
37 * characteristics of those flavours.
38 *
Magnus Damm83c79a62017-09-18 15:46:43 +020039 * 16B 32B 32B-F 48B R-Car Gen2
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010040 * -----------------------------------------------------------------------------
41 * Channels 2 1/4 1 6 2/8
42 * Control Width 16 16 16 16 32
43 * Counter Width 16 32 32 32/48 32/48
44 * Shared Start/Stop Y Y Y Y N
45 *
Magnus Damm83c79a62017-09-18 15:46:43 +020046 * The r8a73a4 / R-Car Gen2 version has a per-channel start/stop register
47 * located in the channel registers block. All other versions have a shared
48 * start/stop register located in the global space.
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010049 *
Laurent Pinchart81b3b272014-01-28 12:36:48 +010050 * Channels are indexed from 0 to N-1 in the documentation. The channel index
51 * infers the start/stop bit position in the control register and the channel
52 * registers block address. Some CMT instances have a subset of channels
53 * available, in which case the index in the documentation doesn't match the
54 * "real" index as implemented in hardware. This is for instance the case with
55 * CMT0 on r8a7740, which is a 32-bit variant with a single channel numbered 0
56 * in the documentation but using start/stop bit 5 and having its registers
57 * block at 0x60.
58 *
59 * Similarly CMT0 on r8a73a4, r8a7790 and r8a7791, while implementing 32-bit
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010060 * channels only, is a 48-bit gen2 CMT with the 48-bit channels unavailable.
61 */
62
63enum sh_cmt_model {
64 SH_CMT_16BIT,
65 SH_CMT_32BIT,
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010066 SH_CMT_48BIT,
Magnus Damm83c79a62017-09-18 15:46:43 +020067 SH_CMT0_RCAR_GEN2,
68 SH_CMT1_RCAR_GEN2,
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010069};
70
71struct sh_cmt_info {
72 enum sh_cmt_model model;
73
Magnus Damm464eed82017-09-18 15:46:42 +020074 unsigned int channels_mask;
75
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010076 unsigned long width; /* 16 or 32 bit version of hardware block */
Sergei Shtylyov22627c62018-09-08 23:54:05 +030077 u32 overflow_bit;
78 u32 clear_bits;
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010079
80 /* callbacks for CMSTR and CMCSR access */
Sergei Shtylyov22627c62018-09-08 23:54:05 +030081 u32 (*read_control)(void __iomem *base, unsigned long offs);
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010082 void (*write_control)(void __iomem *base, unsigned long offs,
Sergei Shtylyov22627c62018-09-08 23:54:05 +030083 u32 value);
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010084
85 /* callbacks for CMCNT and CMCOR access */
Sergei Shtylyov22627c62018-09-08 23:54:05 +030086 u32 (*read_count)(void __iomem *base, unsigned long offs);
87 void (*write_count)(void __iomem *base, unsigned long offs, u32 value);
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +010088};
89
Laurent Pinchart7269f932014-01-27 15:29:19 +010090struct sh_cmt_channel {
Laurent Pinchart2653caf2014-01-27 22:04:17 +010091 struct sh_cmt_device *cmt;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +000092
Laurent Pinchart81b3b272014-01-28 12:36:48 +010093 unsigned int index; /* Index in the documentation */
94 unsigned int hwidx; /* Real hardware index */
Laurent Pinchartc924d2d2014-01-27 22:04:17 +010095
Laurent Pinchart81b3b272014-01-28 12:36:48 +010096 void __iomem *iostart;
97 void __iomem *ioctrl;
98
99 unsigned int timer_bit;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000100 unsigned long flags;
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300101 u32 match_value;
102 u32 next_match_value;
103 u32 max_match_value;
Paul Mundt7d0c3992012-05-25 13:36:43 +0900104 raw_spinlock_t lock;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000105 struct clock_event_device ced;
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000106 struct clocksource cs;
Sergei Shtylyov37e77422018-09-10 23:22:16 +0300107 u64 total_cycles;
Rafael J. Wysockibad81382012-08-06 01:48:57 +0200108 bool cs_enabled;
Laurent Pinchart7269f932014-01-27 15:29:19 +0100109};
110
Laurent Pinchart2653caf2014-01-27 22:04:17 +0100111struct sh_cmt_device {
Laurent Pinchart7269f932014-01-27 15:29:19 +0100112 struct platform_device *pdev;
113
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100114 const struct sh_cmt_info *info;
115
Laurent Pinchart7269f932014-01-27 15:29:19 +0100116 void __iomem *mapbase;
Laurent Pinchart7269f932014-01-27 15:29:19 +0100117 struct clk *clk;
Nicolai Stange890f4232017-02-06 22:11:59 +0100118 unsigned long rate;
Laurent Pinchart7269f932014-01-27 15:29:19 +0100119
Laurent Pinchartde599c82014-02-17 16:49:05 +0100120 raw_spinlock_t lock; /* Protect the shared start/stop register */
121
Laurent Pinchartf5ec9b12014-01-27 22:04:17 +0100122 struct sh_cmt_channel *channels;
123 unsigned int num_channels;
Laurent Pinchart1768aa22014-02-12 17:12:40 +0100124 unsigned int hw_channels;
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100125
126 bool has_clockevent;
127 bool has_clocksource;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000128};
129
Laurent Pinchartd14be992014-01-29 00:33:08 +0100130#define SH_CMT16_CMCSR_CMF (1 << 7)
131#define SH_CMT16_CMCSR_CMIE (1 << 6)
132#define SH_CMT16_CMCSR_CKS8 (0 << 0)
133#define SH_CMT16_CMCSR_CKS32 (1 << 0)
134#define SH_CMT16_CMCSR_CKS128 (2 << 0)
135#define SH_CMT16_CMCSR_CKS512 (3 << 0)
136#define SH_CMT16_CMCSR_CKS_MASK (3 << 0)
137
138#define SH_CMT32_CMCSR_CMF (1 << 15)
139#define SH_CMT32_CMCSR_OVF (1 << 14)
140#define SH_CMT32_CMCSR_WRFLG (1 << 13)
141#define SH_CMT32_CMCSR_STTF (1 << 12)
142#define SH_CMT32_CMCSR_STPF (1 << 11)
143#define SH_CMT32_CMCSR_SSIE (1 << 10)
144#define SH_CMT32_CMCSR_CMS (1 << 9)
145#define SH_CMT32_CMCSR_CMM (1 << 8)
146#define SH_CMT32_CMCSR_CMTOUT_IE (1 << 7)
147#define SH_CMT32_CMCSR_CMR_NONE (0 << 4)
148#define SH_CMT32_CMCSR_CMR_DMA (1 << 4)
149#define SH_CMT32_CMCSR_CMR_IRQ (2 << 4)
150#define SH_CMT32_CMCSR_CMR_MASK (3 << 4)
151#define SH_CMT32_CMCSR_DBGIVD (1 << 3)
152#define SH_CMT32_CMCSR_CKS_RCLK8 (4 << 0)
153#define SH_CMT32_CMCSR_CKS_RCLK32 (5 << 0)
154#define SH_CMT32_CMCSR_CKS_RCLK128 (6 << 0)
155#define SH_CMT32_CMCSR_CKS_RCLK1 (7 << 0)
156#define SH_CMT32_CMCSR_CKS_MASK (7 << 0)
157
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300158static u32 sh_cmt_read16(void __iomem *base, unsigned long offs)
Magnus Damm587acb32012-12-14 14:54:10 +0900159{
160 return ioread16(base + (offs << 1));
161}
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000162
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300163static u32 sh_cmt_read32(void __iomem *base, unsigned long offs)
Magnus Damma6a912c2012-12-14 14:54:19 +0900164{
165 return ioread32(base + (offs << 2));
166}
167
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300168static void sh_cmt_write16(void __iomem *base, unsigned long offs, u32 value)
Magnus Damm587acb32012-12-14 14:54:10 +0900169{
170 iowrite16(value, base + (offs << 1));
171}
172
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300173static void sh_cmt_write32(void __iomem *base, unsigned long offs, u32 value)
Magnus Damma6a912c2012-12-14 14:54:19 +0900174{
175 iowrite32(value, base + (offs << 2));
176}
177
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100178static const struct sh_cmt_info sh_cmt_info[] = {
179 [SH_CMT_16BIT] = {
180 .model = SH_CMT_16BIT,
181 .width = 16,
Laurent Pinchartd14be992014-01-29 00:33:08 +0100182 .overflow_bit = SH_CMT16_CMCSR_CMF,
183 .clear_bits = ~SH_CMT16_CMCSR_CMF,
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100184 .read_control = sh_cmt_read16,
185 .write_control = sh_cmt_write16,
186 .read_count = sh_cmt_read16,
187 .write_count = sh_cmt_write16,
188 },
189 [SH_CMT_32BIT] = {
190 .model = SH_CMT_32BIT,
191 .width = 32,
Laurent Pinchartd14be992014-01-29 00:33:08 +0100192 .overflow_bit = SH_CMT32_CMCSR_CMF,
193 .clear_bits = ~(SH_CMT32_CMCSR_CMF | SH_CMT32_CMCSR_OVF),
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100194 .read_control = sh_cmt_read16,
195 .write_control = sh_cmt_write16,
196 .read_count = sh_cmt_read32,
197 .write_count = sh_cmt_write32,
198 },
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100199 [SH_CMT_48BIT] = {
200 .model = SH_CMT_48BIT,
Magnus Damm464eed82017-09-18 15:46:42 +0200201 .channels_mask = 0x3f,
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100202 .width = 32,
Laurent Pinchartd14be992014-01-29 00:33:08 +0100203 .overflow_bit = SH_CMT32_CMCSR_CMF,
204 .clear_bits = ~(SH_CMT32_CMCSR_CMF | SH_CMT32_CMCSR_OVF),
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100205 .read_control = sh_cmt_read32,
206 .write_control = sh_cmt_write32,
207 .read_count = sh_cmt_read32,
208 .write_count = sh_cmt_write32,
209 },
Magnus Damm83c79a62017-09-18 15:46:43 +0200210 [SH_CMT0_RCAR_GEN2] = {
211 .model = SH_CMT0_RCAR_GEN2,
212 .channels_mask = 0x60,
213 .width = 32,
214 .overflow_bit = SH_CMT32_CMCSR_CMF,
215 .clear_bits = ~(SH_CMT32_CMCSR_CMF | SH_CMT32_CMCSR_OVF),
216 .read_control = sh_cmt_read32,
217 .write_control = sh_cmt_write32,
218 .read_count = sh_cmt_read32,
219 .write_count = sh_cmt_write32,
220 },
221 [SH_CMT1_RCAR_GEN2] = {
222 .model = SH_CMT1_RCAR_GEN2,
223 .channels_mask = 0xff,
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100224 .width = 32,
Laurent Pinchartd14be992014-01-29 00:33:08 +0100225 .overflow_bit = SH_CMT32_CMCSR_CMF,
226 .clear_bits = ~(SH_CMT32_CMCSR_CMF | SH_CMT32_CMCSR_OVF),
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100227 .read_control = sh_cmt_read32,
228 .write_control = sh_cmt_write32,
229 .read_count = sh_cmt_read32,
230 .write_count = sh_cmt_write32,
231 },
232};
233
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000234#define CMCSR 0 /* channel register */
235#define CMCNT 1 /* channel register */
236#define CMCOR 2 /* channel register */
237
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300238static inline u32 sh_cmt_read_cmstr(struct sh_cmt_channel *ch)
Magnus Damm1b56b962012-12-14 14:54:00 +0900239{
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100240 if (ch->iostart)
241 return ch->cmt->info->read_control(ch->iostart, 0);
242 else
243 return ch->cmt->info->read_control(ch->cmt->mapbase, 0);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000244}
245
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300246static inline void sh_cmt_write_cmstr(struct sh_cmt_channel *ch, u32 value)
Magnus Damm1b56b962012-12-14 14:54:00 +0900247{
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100248 if (ch->iostart)
249 ch->cmt->info->write_control(ch->iostart, 0, value);
250 else
251 ch->cmt->info->write_control(ch->cmt->mapbase, 0, value);
252}
253
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300254static inline u32 sh_cmt_read_cmcsr(struct sh_cmt_channel *ch)
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100255{
256 return ch->cmt->info->read_control(ch->ioctrl, CMCSR);
Magnus Damm1b56b962012-12-14 14:54:00 +0900257}
258
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300259static inline void sh_cmt_write_cmcsr(struct sh_cmt_channel *ch, u32 value)
Magnus Damm1b56b962012-12-14 14:54:00 +0900260{
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100261 ch->cmt->info->write_control(ch->ioctrl, CMCSR, value);
262}
263
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300264static inline u32 sh_cmt_read_cmcnt(struct sh_cmt_channel *ch)
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100265{
266 return ch->cmt->info->read_count(ch->ioctrl, CMCNT);
Magnus Damm1b56b962012-12-14 14:54:00 +0900267}
268
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300269static inline void sh_cmt_write_cmcnt(struct sh_cmt_channel *ch, u32 value)
Magnus Damm1b56b962012-12-14 14:54:00 +0900270{
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100271 ch->cmt->info->write_count(ch->ioctrl, CMCNT, value);
Magnus Damm1b56b962012-12-14 14:54:00 +0900272}
273
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300274static inline void sh_cmt_write_cmcor(struct sh_cmt_channel *ch, u32 value)
Magnus Damm1b56b962012-12-14 14:54:00 +0900275{
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100276 ch->cmt->info->write_count(ch->ioctrl, CMCOR, value);
Magnus Damm1b56b962012-12-14 14:54:00 +0900277}
278
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300279static u32 sh_cmt_get_counter(struct sh_cmt_channel *ch, u32 *has_wrapped)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000280{
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300281 u32 v1, v2, v3;
282 u32 o1, o2;
Magnus Damm5b644c72009-04-28 08:17:54 +0000283
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100284 o1 = sh_cmt_read_cmcsr(ch) & ch->cmt->info->overflow_bit;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000285
286 /* Make sure the timer value is stable. Stolen from acpi_pm.c */
287 do {
Magnus Damm5b644c72009-04-28 08:17:54 +0000288 o2 = o1;
Laurent Pinchart7269f932014-01-27 15:29:19 +0100289 v1 = sh_cmt_read_cmcnt(ch);
290 v2 = sh_cmt_read_cmcnt(ch);
291 v3 = sh_cmt_read_cmcnt(ch);
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100292 o1 = sh_cmt_read_cmcsr(ch) & ch->cmt->info->overflow_bit;
Magnus Damm5b644c72009-04-28 08:17:54 +0000293 } while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3)
294 || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2)));
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000295
Magnus Damm5b644c72009-04-28 08:17:54 +0000296 *has_wrapped = o1;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000297 return v2;
298}
299
Laurent Pinchart7269f932014-01-27 15:29:19 +0100300static void sh_cmt_start_stop_ch(struct sh_cmt_channel *ch, int start)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000301{
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300302 unsigned long flags;
303 u32 value;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000304
305 /* start stop register shared by multiple timer channels */
Laurent Pinchartde599c82014-02-17 16:49:05 +0100306 raw_spin_lock_irqsave(&ch->cmt->lock, flags);
Laurent Pinchart7269f932014-01-27 15:29:19 +0100307 value = sh_cmt_read_cmstr(ch);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000308
309 if (start)
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100310 value |= 1 << ch->timer_bit;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000311 else
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100312 value &= ~(1 << ch->timer_bit);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000313
Laurent Pinchart7269f932014-01-27 15:29:19 +0100314 sh_cmt_write_cmstr(ch, value);
Laurent Pinchartde599c82014-02-17 16:49:05 +0100315 raw_spin_unlock_irqrestore(&ch->cmt->lock, flags);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000316}
317
Nicolai Stange890f4232017-02-06 22:11:59 +0100318static int sh_cmt_enable(struct sh_cmt_channel *ch)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000319{
Magnus Damm3f7e5e22011-07-13 07:59:48 +0000320 int k, ret;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000321
Laurent Pinchart7269f932014-01-27 15:29:19 +0100322 pm_runtime_get_sync(&ch->cmt->pdev->dev);
323 dev_pm_syscore_device(&ch->cmt->pdev->dev, true);
Rafael J. Wysockibad81382012-08-06 01:48:57 +0200324
Paul Mundt9436b4a2011-05-31 15:26:42 +0900325 /* enable clock */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100326 ret = clk_enable(ch->cmt->clk);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000327 if (ret) {
Laurent Pinchart740a9512014-01-27 22:04:17 +0100328 dev_err(&ch->cmt->pdev->dev, "ch%u: cannot enable clock\n",
329 ch->index);
Magnus Damm3f7e5e22011-07-13 07:59:48 +0000330 goto err0;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000331 }
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000332
333 /* make sure channel is disabled */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100334 sh_cmt_start_stop_ch(ch, 0);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000335
336 /* configure channel, periodic mode and maximum timeout */
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100337 if (ch->cmt->info->width == 16) {
Laurent Pinchartd14be992014-01-29 00:33:08 +0100338 sh_cmt_write_cmcsr(ch, SH_CMT16_CMCSR_CMIE |
339 SH_CMT16_CMCSR_CKS512);
Magnus Damm3014f472009-04-29 14:50:37 +0000340 } else {
Laurent Pinchartd14be992014-01-29 00:33:08 +0100341 sh_cmt_write_cmcsr(ch, SH_CMT32_CMCSR_CMM |
342 SH_CMT32_CMCSR_CMTOUT_IE |
343 SH_CMT32_CMCSR_CMR_IRQ |
344 SH_CMT32_CMCSR_CKS_RCLK8);
Magnus Damm3014f472009-04-29 14:50:37 +0000345 }
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000346
Laurent Pinchart7269f932014-01-27 15:29:19 +0100347 sh_cmt_write_cmcor(ch, 0xffffffff);
348 sh_cmt_write_cmcnt(ch, 0);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000349
Magnus Damm3f7e5e22011-07-13 07:59:48 +0000350 /*
351 * According to the sh73a0 user's manual, as CMCNT can be operated
Geert Uytterhoevenad7794d2020-06-18 10:02:12 +0200352 * only by the RCLK (Pseudo 32 kHz), there's one restriction on
Magnus Damm3f7e5e22011-07-13 07:59:48 +0000353 * modifying CMCNT register; two RCLK cycles are necessary before
354 * this register is either read or any modification of the value
355 * it holds is reflected in the LSI's actual operation.
356 *
357 * While at it, we're supposed to clear out the CMCNT as of this
358 * moment, so make sure it's processed properly here. This will
359 * take RCLKx2 at maximum.
360 */
361 for (k = 0; k < 100; k++) {
Laurent Pinchart7269f932014-01-27 15:29:19 +0100362 if (!sh_cmt_read_cmcnt(ch))
Magnus Damm3f7e5e22011-07-13 07:59:48 +0000363 break;
364 udelay(1);
365 }
366
Laurent Pinchart7269f932014-01-27 15:29:19 +0100367 if (sh_cmt_read_cmcnt(ch)) {
Laurent Pinchart740a9512014-01-27 22:04:17 +0100368 dev_err(&ch->cmt->pdev->dev, "ch%u: cannot clear CMCNT\n",
369 ch->index);
Magnus Damm3f7e5e22011-07-13 07:59:48 +0000370 ret = -ETIMEDOUT;
371 goto err1;
372 }
373
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000374 /* enable channel */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100375 sh_cmt_start_stop_ch(ch, 1);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000376 return 0;
Magnus Damm3f7e5e22011-07-13 07:59:48 +0000377 err1:
378 /* stop clock */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100379 clk_disable(ch->cmt->clk);
Magnus Damm3f7e5e22011-07-13 07:59:48 +0000380
381 err0:
382 return ret;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000383}
384
Laurent Pinchart7269f932014-01-27 15:29:19 +0100385static void sh_cmt_disable(struct sh_cmt_channel *ch)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000386{
387 /* disable channel */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100388 sh_cmt_start_stop_ch(ch, 0);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000389
Magnus Dammbe890a12009-06-17 05:04:04 +0000390 /* disable interrupts in CMT block */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100391 sh_cmt_write_cmcsr(ch, 0);
Magnus Dammbe890a12009-06-17 05:04:04 +0000392
Paul Mundt9436b4a2011-05-31 15:26:42 +0900393 /* stop clock */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100394 clk_disable(ch->cmt->clk);
Rafael J. Wysockibad81382012-08-06 01:48:57 +0200395
Laurent Pinchart7269f932014-01-27 15:29:19 +0100396 dev_pm_syscore_device(&ch->cmt->pdev->dev, false);
397 pm_runtime_put(&ch->cmt->pdev->dev);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000398}
399
400/* private flags */
401#define FLAG_CLOCKEVENT (1 << 0)
402#define FLAG_CLOCKSOURCE (1 << 1)
403#define FLAG_REPROGRAM (1 << 2)
404#define FLAG_SKIPEVENT (1 << 3)
405#define FLAG_IRQCONTEXT (1 << 4)
406
Laurent Pinchart7269f932014-01-27 15:29:19 +0100407static void sh_cmt_clock_event_program_verify(struct sh_cmt_channel *ch,
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000408 int absolute)
409{
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300410 u32 value = ch->next_match_value;
411 u32 new_match;
412 u32 delay = 0;
413 u32 now = 0;
414 u32 has_wrapped;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000415
Laurent Pinchart7269f932014-01-27 15:29:19 +0100416 now = sh_cmt_get_counter(ch, &has_wrapped);
417 ch->flags |= FLAG_REPROGRAM; /* force reprogram */
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000418
419 if (has_wrapped) {
420 /* we're competing with the interrupt handler.
421 * -> let the interrupt handler reprogram the timer.
422 * -> interrupt number two handles the event.
423 */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100424 ch->flags |= FLAG_SKIPEVENT;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000425 return;
426 }
427
428 if (absolute)
429 now = 0;
430
431 do {
432 /* reprogram the timer hardware,
433 * but don't save the new match value yet.
434 */
435 new_match = now + value + delay;
Laurent Pinchart7269f932014-01-27 15:29:19 +0100436 if (new_match > ch->max_match_value)
437 new_match = ch->max_match_value;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000438
Laurent Pinchart7269f932014-01-27 15:29:19 +0100439 sh_cmt_write_cmcor(ch, new_match);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000440
Laurent Pinchart7269f932014-01-27 15:29:19 +0100441 now = sh_cmt_get_counter(ch, &has_wrapped);
442 if (has_wrapped && (new_match > ch->match_value)) {
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000443 /* we are changing to a greater match value,
444 * so this wrap must be caused by the counter
445 * matching the old value.
446 * -> first interrupt reprograms the timer.
447 * -> interrupt number two handles the event.
448 */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100449 ch->flags |= FLAG_SKIPEVENT;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000450 break;
451 }
452
453 if (has_wrapped) {
454 /* we are changing to a smaller match value,
455 * so the wrap must be caused by the counter
456 * matching the new value.
457 * -> save programmed match value.
458 * -> let isr handle the event.
459 */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100460 ch->match_value = new_match;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000461 break;
462 }
463
464 /* be safe: verify hardware settings */
465 if (now < new_match) {
466 /* timer value is below match value, all good.
467 * this makes sure we won't miss any match events.
468 * -> save programmed match value.
469 * -> let isr handle the event.
470 */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100471 ch->match_value = new_match;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000472 break;
473 }
474
475 /* the counter has reached a value greater
476 * than our new match value. and since the
477 * has_wrapped flag isn't set we must have
478 * programmed a too close event.
479 * -> increase delay and retry.
480 */
481 if (delay)
482 delay <<= 1;
483 else
484 delay = 1;
485
486 if (!delay)
Laurent Pinchart740a9512014-01-27 22:04:17 +0100487 dev_warn(&ch->cmt->pdev->dev, "ch%u: too long delay\n",
488 ch->index);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000489
490 } while (delay);
491}
492
Laurent Pinchart7269f932014-01-27 15:29:19 +0100493static void __sh_cmt_set_next(struct sh_cmt_channel *ch, unsigned long delta)
Takashi YOSHII65ada542010-12-17 07:25:09 +0000494{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100495 if (delta > ch->max_match_value)
Laurent Pinchart740a9512014-01-27 22:04:17 +0100496 dev_warn(&ch->cmt->pdev->dev, "ch%u: delta out of range\n",
497 ch->index);
Takashi YOSHII65ada542010-12-17 07:25:09 +0000498
Laurent Pinchart7269f932014-01-27 15:29:19 +0100499 ch->next_match_value = delta;
500 sh_cmt_clock_event_program_verify(ch, 0);
Takashi YOSHII65ada542010-12-17 07:25:09 +0000501}
502
Laurent Pinchart7269f932014-01-27 15:29:19 +0100503static void sh_cmt_set_next(struct sh_cmt_channel *ch, unsigned long delta)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000504{
505 unsigned long flags;
506
Laurent Pinchart7269f932014-01-27 15:29:19 +0100507 raw_spin_lock_irqsave(&ch->lock, flags);
508 __sh_cmt_set_next(ch, delta);
509 raw_spin_unlock_irqrestore(&ch->lock, flags);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000510}
511
512static irqreturn_t sh_cmt_interrupt(int irq, void *dev_id)
513{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100514 struct sh_cmt_channel *ch = dev_id;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000515
516 /* clear flags */
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100517 sh_cmt_write_cmcsr(ch, sh_cmt_read_cmcsr(ch) &
518 ch->cmt->info->clear_bits);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000519
520 /* update clock source counter to begin with if enabled
521 * the wrap flag should be cleared by the timer specific
522 * isr before we end up here.
523 */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100524 if (ch->flags & FLAG_CLOCKSOURCE)
525 ch->total_cycles += ch->match_value + 1;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000526
Laurent Pinchart7269f932014-01-27 15:29:19 +0100527 if (!(ch->flags & FLAG_REPROGRAM))
528 ch->next_match_value = ch->max_match_value;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000529
Laurent Pinchart7269f932014-01-27 15:29:19 +0100530 ch->flags |= FLAG_IRQCONTEXT;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000531
Laurent Pinchart7269f932014-01-27 15:29:19 +0100532 if (ch->flags & FLAG_CLOCKEVENT) {
533 if (!(ch->flags & FLAG_SKIPEVENT)) {
Viresh Kumar051b7822015-06-18 16:24:34 +0530534 if (clockevent_state_oneshot(&ch->ced)) {
Laurent Pinchart7269f932014-01-27 15:29:19 +0100535 ch->next_match_value = ch->max_match_value;
536 ch->flags |= FLAG_REPROGRAM;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000537 }
538
Laurent Pinchart7269f932014-01-27 15:29:19 +0100539 ch->ced.event_handler(&ch->ced);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000540 }
541 }
542
Laurent Pinchart7269f932014-01-27 15:29:19 +0100543 ch->flags &= ~FLAG_SKIPEVENT;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000544
Laurent Pinchart7269f932014-01-27 15:29:19 +0100545 if (ch->flags & FLAG_REPROGRAM) {
546 ch->flags &= ~FLAG_REPROGRAM;
547 sh_cmt_clock_event_program_verify(ch, 1);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000548
Laurent Pinchart7269f932014-01-27 15:29:19 +0100549 if (ch->flags & FLAG_CLOCKEVENT)
Viresh Kumar051b7822015-06-18 16:24:34 +0530550 if ((clockevent_state_shutdown(&ch->ced))
Laurent Pinchart7269f932014-01-27 15:29:19 +0100551 || (ch->match_value == ch->next_match_value))
552 ch->flags &= ~FLAG_REPROGRAM;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000553 }
554
Laurent Pinchart7269f932014-01-27 15:29:19 +0100555 ch->flags &= ~FLAG_IRQCONTEXT;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000556
557 return IRQ_HANDLED;
558}
559
Laurent Pinchart7269f932014-01-27 15:29:19 +0100560static int sh_cmt_start(struct sh_cmt_channel *ch, unsigned long flag)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000561{
562 int ret = 0;
563 unsigned long flags;
564
Laurent Pinchart7269f932014-01-27 15:29:19 +0100565 raw_spin_lock_irqsave(&ch->lock, flags);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000566
Laurent Pinchart7269f932014-01-27 15:29:19 +0100567 if (!(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE)))
Nicolai Stange890f4232017-02-06 22:11:59 +0100568 ret = sh_cmt_enable(ch);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000569
570 if (ret)
571 goto out;
Laurent Pinchart7269f932014-01-27 15:29:19 +0100572 ch->flags |= flag;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000573
574 /* setup timeout if no clockevent */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100575 if ((flag == FLAG_CLOCKSOURCE) && (!(ch->flags & FLAG_CLOCKEVENT)))
576 __sh_cmt_set_next(ch, ch->max_match_value);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000577 out:
Laurent Pinchart7269f932014-01-27 15:29:19 +0100578 raw_spin_unlock_irqrestore(&ch->lock, flags);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000579
580 return ret;
581}
582
Laurent Pinchart7269f932014-01-27 15:29:19 +0100583static void sh_cmt_stop(struct sh_cmt_channel *ch, unsigned long flag)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000584{
585 unsigned long flags;
586 unsigned long f;
587
Laurent Pinchart7269f932014-01-27 15:29:19 +0100588 raw_spin_lock_irqsave(&ch->lock, flags);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000589
Laurent Pinchart7269f932014-01-27 15:29:19 +0100590 f = ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE);
591 ch->flags &= ~flag;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000592
Laurent Pinchart7269f932014-01-27 15:29:19 +0100593 if (f && !(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE)))
594 sh_cmt_disable(ch);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000595
596 /* adjust the timeout to maximum if only clocksource left */
Laurent Pinchart7269f932014-01-27 15:29:19 +0100597 if ((flag == FLAG_CLOCKEVENT) && (ch->flags & FLAG_CLOCKSOURCE))
598 __sh_cmt_set_next(ch, ch->max_match_value);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000599
Laurent Pinchart7269f932014-01-27 15:29:19 +0100600 raw_spin_unlock_irqrestore(&ch->lock, flags);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000601}
602
Laurent Pinchart7269f932014-01-27 15:29:19 +0100603static struct sh_cmt_channel *cs_to_sh_cmt(struct clocksource *cs)
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000604{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100605 return container_of(cs, struct sh_cmt_channel, cs);
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000606}
607
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +0100608static u64 sh_cmt_clocksource_read(struct clocksource *cs)
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000609{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100610 struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300611 unsigned long flags;
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300612 u32 has_wrapped;
Sergei Shtylyov37e77422018-09-10 23:22:16 +0300613 u64 value;
Sergei Shtylyov22627c62018-09-08 23:54:05 +0300614 u32 raw;
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000615
Laurent Pinchart7269f932014-01-27 15:29:19 +0100616 raw_spin_lock_irqsave(&ch->lock, flags);
617 value = ch->total_cycles;
618 raw = sh_cmt_get_counter(ch, &has_wrapped);
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000619
620 if (unlikely(has_wrapped))
Laurent Pinchart7269f932014-01-27 15:29:19 +0100621 raw += ch->match_value + 1;
622 raw_spin_unlock_irqrestore(&ch->lock, flags);
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000623
624 return value + raw;
625}
626
627static int sh_cmt_clocksource_enable(struct clocksource *cs)
628{
Magnus Damm3593f5f2011-04-25 22:32:11 +0900629 int ret;
Laurent Pinchart7269f932014-01-27 15:29:19 +0100630 struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000631
Laurent Pinchart7269f932014-01-27 15:29:19 +0100632 WARN_ON(ch->cs_enabled);
Rafael J. Wysockibad81382012-08-06 01:48:57 +0200633
Laurent Pinchart7269f932014-01-27 15:29:19 +0100634 ch->total_cycles = 0;
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000635
Laurent Pinchart7269f932014-01-27 15:29:19 +0100636 ret = sh_cmt_start(ch, FLAG_CLOCKSOURCE);
Nicolai Stange890f4232017-02-06 22:11:59 +0100637 if (!ret)
Laurent Pinchart7269f932014-01-27 15:29:19 +0100638 ch->cs_enabled = true;
Nicolai Stange890f4232017-02-06 22:11:59 +0100639
Magnus Damm3593f5f2011-04-25 22:32:11 +0900640 return ret;
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000641}
642
643static void sh_cmt_clocksource_disable(struct clocksource *cs)
644{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100645 struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
Rafael J. Wysockibad81382012-08-06 01:48:57 +0200646
Laurent Pinchart7269f932014-01-27 15:29:19 +0100647 WARN_ON(!ch->cs_enabled);
Rafael J. Wysockibad81382012-08-06 01:48:57 +0200648
Laurent Pinchart7269f932014-01-27 15:29:19 +0100649 sh_cmt_stop(ch, FLAG_CLOCKSOURCE);
650 ch->cs_enabled = false;
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000651}
652
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200653static void sh_cmt_clocksource_suspend(struct clocksource *cs)
654{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100655 struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200656
Geert Uytterhoeven54d46b72015-08-06 17:32:06 +0200657 if (!ch->cs_enabled)
658 return;
659
Laurent Pinchart7269f932014-01-27 15:29:19 +0100660 sh_cmt_stop(ch, FLAG_CLOCKSOURCE);
661 pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev);
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200662}
663
Magnus Dammc8162882010-02-02 14:41:40 -0800664static void sh_cmt_clocksource_resume(struct clocksource *cs)
665{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100666 struct sh_cmt_channel *ch = cs_to_sh_cmt(cs);
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200667
Geert Uytterhoeven54d46b72015-08-06 17:32:06 +0200668 if (!ch->cs_enabled)
669 return;
670
Laurent Pinchart7269f932014-01-27 15:29:19 +0100671 pm_genpd_syscore_poweron(&ch->cmt->pdev->dev);
672 sh_cmt_start(ch, FLAG_CLOCKSOURCE);
Magnus Dammc8162882010-02-02 14:41:40 -0800673}
674
Laurent Pinchart7269f932014-01-27 15:29:19 +0100675static int sh_cmt_register_clocksource(struct sh_cmt_channel *ch,
Laurent Pinchartfb28a652014-02-19 17:00:31 +0100676 const char *name)
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000677{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100678 struct clocksource *cs = &ch->cs;
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000679
680 cs->name = name;
Laurent Pinchartfb28a652014-02-19 17:00:31 +0100681 cs->rating = 125;
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000682 cs->read = sh_cmt_clocksource_read;
683 cs->enable = sh_cmt_clocksource_enable;
684 cs->disable = sh_cmt_clocksource_disable;
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200685 cs->suspend = sh_cmt_clocksource_suspend;
Magnus Dammc8162882010-02-02 14:41:40 -0800686 cs->resume = sh_cmt_clocksource_resume;
Sergei Shtylyov37e77422018-09-10 23:22:16 +0300687 cs->mask = CLOCKSOURCE_MASK(sizeof(u64) * 8);
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000688 cs->flags = CLOCK_SOURCE_IS_CONTINUOUS;
Paul Mundtf4d7c352010-06-02 17:10:44 +0900689
Laurent Pinchart740a9512014-01-27 22:04:17 +0100690 dev_info(&ch->cmt->pdev->dev, "ch%u: used as clock source\n",
691 ch->index);
Paul Mundtf4d7c352010-06-02 17:10:44 +0900692
Nicolai Stange890f4232017-02-06 22:11:59 +0100693 clocksource_register_hz(cs, ch->cmt->rate);
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000694 return 0;
695}
696
Laurent Pinchart7269f932014-01-27 15:29:19 +0100697static struct sh_cmt_channel *ced_to_sh_cmt(struct clock_event_device *ced)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000698{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100699 return container_of(ced, struct sh_cmt_channel, ced);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000700}
701
Laurent Pinchart7269f932014-01-27 15:29:19 +0100702static void sh_cmt_clock_event_start(struct sh_cmt_channel *ch, int periodic)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000703{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100704 sh_cmt_start(ch, FLAG_CLOCKEVENT);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000705
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000706 if (periodic)
Nicolai Stange890f4232017-02-06 22:11:59 +0100707 sh_cmt_set_next(ch, ((ch->cmt->rate + HZ/2) / HZ) - 1);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000708 else
Laurent Pinchart7269f932014-01-27 15:29:19 +0100709 sh_cmt_set_next(ch, ch->max_match_value);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000710}
711
Viresh Kumar051b7822015-06-18 16:24:34 +0530712static int sh_cmt_clock_event_shutdown(struct clock_event_device *ced)
713{
714 struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
715
716 sh_cmt_stop(ch, FLAG_CLOCKEVENT);
717 return 0;
718}
719
720static int sh_cmt_clock_event_set_state(struct clock_event_device *ced,
721 int periodic)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000722{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100723 struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000724
725 /* deal with old setting first */
Viresh Kumar051b7822015-06-18 16:24:34 +0530726 if (clockevent_state_oneshot(ced) || clockevent_state_periodic(ced))
Laurent Pinchart7269f932014-01-27 15:29:19 +0100727 sh_cmt_stop(ch, FLAG_CLOCKEVENT);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000728
Viresh Kumar051b7822015-06-18 16:24:34 +0530729 dev_info(&ch->cmt->pdev->dev, "ch%u: used for %s clock events\n",
730 ch->index, periodic ? "periodic" : "oneshot");
731 sh_cmt_clock_event_start(ch, periodic);
732 return 0;
733}
734
735static int sh_cmt_clock_event_set_oneshot(struct clock_event_device *ced)
736{
737 return sh_cmt_clock_event_set_state(ced, 0);
738}
739
740static int sh_cmt_clock_event_set_periodic(struct clock_event_device *ced)
741{
742 return sh_cmt_clock_event_set_state(ced, 1);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000743}
744
745static int sh_cmt_clock_event_next(unsigned long delta,
746 struct clock_event_device *ced)
747{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100748 struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000749
Viresh Kumar051b7822015-06-18 16:24:34 +0530750 BUG_ON(!clockevent_state_oneshot(ced));
Laurent Pinchart7269f932014-01-27 15:29:19 +0100751 if (likely(ch->flags & FLAG_IRQCONTEXT))
752 ch->next_match_value = delta - 1;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000753 else
Laurent Pinchart7269f932014-01-27 15:29:19 +0100754 sh_cmt_set_next(ch, delta - 1);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000755
756 return 0;
757}
758
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200759static void sh_cmt_clock_event_suspend(struct clock_event_device *ced)
760{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100761 struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
Laurent Pinchart57dee992013-12-14 15:07:32 +0900762
Laurent Pinchart7269f932014-01-27 15:29:19 +0100763 pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev);
764 clk_unprepare(ch->cmt->clk);
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200765}
766
767static void sh_cmt_clock_event_resume(struct clock_event_device *ced)
768{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100769 struct sh_cmt_channel *ch = ced_to_sh_cmt(ced);
Laurent Pinchart57dee992013-12-14 15:07:32 +0900770
Laurent Pinchart7269f932014-01-27 15:29:19 +0100771 clk_prepare(ch->cmt->clk);
772 pm_genpd_syscore_poweron(&ch->cmt->pdev->dev);
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200773}
774
Laurent Pinchartbfa76bb2014-02-21 01:24:47 +0100775static int sh_cmt_register_clockevent(struct sh_cmt_channel *ch,
776 const char *name)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000777{
Laurent Pinchart7269f932014-01-27 15:29:19 +0100778 struct clock_event_device *ced = &ch->ced;
Laurent Pinchartbfa76bb2014-02-21 01:24:47 +0100779 int irq;
780 int ret;
781
Laurent Pinchart31e912f2014-01-28 15:52:46 +0100782 irq = platform_get_irq(ch->cmt->pdev, ch->index);
Stephen Boyd9f475d02019-07-30 11:15:04 -0700783 if (irq < 0)
Laurent Pinchartbfa76bb2014-02-21 01:24:47 +0100784 return irq;
Laurent Pinchartbfa76bb2014-02-21 01:24:47 +0100785
786 ret = request_irq(irq, sh_cmt_interrupt,
787 IRQF_TIMER | IRQF_IRQPOLL | IRQF_NOBALANCING,
788 dev_name(&ch->cmt->pdev->dev), ch);
789 if (ret) {
790 dev_err(&ch->cmt->pdev->dev, "ch%u: failed to request irq %d\n",
791 ch->index, irq);
792 return ret;
793 }
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000794
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000795 ced->name = name;
796 ced->features = CLOCK_EVT_FEAT_PERIODIC;
797 ced->features |= CLOCK_EVT_FEAT_ONESHOT;
Laurent Pinchartb7fcbb02014-02-19 17:00:31 +0100798 ced->rating = 125;
Laurent Pinchartf1ebe1e2014-02-19 16:19:44 +0100799 ced->cpumask = cpu_possible_mask;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000800 ced->set_next_event = sh_cmt_clock_event_next;
Viresh Kumar051b7822015-06-18 16:24:34 +0530801 ced->set_state_shutdown = sh_cmt_clock_event_shutdown;
802 ced->set_state_periodic = sh_cmt_clock_event_set_periodic;
803 ced->set_state_oneshot = sh_cmt_clock_event_set_oneshot;
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +0200804 ced->suspend = sh_cmt_clock_event_suspend;
805 ced->resume = sh_cmt_clock_event_resume;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000806
Nicolai Stange890f4232017-02-06 22:11:59 +0100807 /* TODO: calculate good shift from rate and counter bit width */
808 ced->shift = 32;
809 ced->mult = div_sc(ch->cmt->rate, NSEC_PER_SEC, ced->shift);
810 ced->max_delta_ns = clockevent_delta2ns(ch->max_match_value, ced);
Nicolai Stangebb2e94a2017-03-30 22:09:12 +0200811 ced->max_delta_ticks = ch->max_match_value;
Nicolai Stange890f4232017-02-06 22:11:59 +0100812 ced->min_delta_ns = clockevent_delta2ns(0x1f, ced);
Nicolai Stangebb2e94a2017-03-30 22:09:12 +0200813 ced->min_delta_ticks = 0x1f;
Nicolai Stange890f4232017-02-06 22:11:59 +0100814
Laurent Pinchart740a9512014-01-27 22:04:17 +0100815 dev_info(&ch->cmt->pdev->dev, "ch%u: used for clock events\n",
816 ch->index);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000817 clockevents_register_device(ced);
Laurent Pinchartbfa76bb2014-02-21 01:24:47 +0100818
819 return 0;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000820}
821
Laurent Pinchart1d053e12014-02-17 16:04:16 +0100822static int sh_cmt_register(struct sh_cmt_channel *ch, const char *name,
Laurent Pinchartfb28a652014-02-19 17:00:31 +0100823 bool clockevent, bool clocksource)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000824{
Laurent Pinchartbfa76bb2014-02-21 01:24:47 +0100825 int ret;
826
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100827 if (clockevent) {
828 ch->cmt->has_clockevent = true;
Laurent Pinchartbfa76bb2014-02-21 01:24:47 +0100829 ret = sh_cmt_register_clockevent(ch, name);
830 if (ret < 0)
831 return ret;
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100832 }
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000833
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100834 if (clocksource) {
835 ch->cmt->has_clocksource = true;
Laurent Pinchartfb28a652014-02-19 17:00:31 +0100836 sh_cmt_register_clocksource(ch, name);
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100837 }
Magnus Damm19bdc9d2009-04-17 05:26:31 +0000838
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000839 return 0;
840}
841
Laurent Pinchart740a9512014-01-27 22:04:17 +0100842static int sh_cmt_setup_channel(struct sh_cmt_channel *ch, unsigned int index,
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100843 unsigned int hwidx, bool clockevent,
844 bool clocksource, struct sh_cmt_device *cmt)
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100845{
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100846 int ret;
847
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100848 /* Skip unused channels. */
849 if (!clockevent && !clocksource)
850 return 0;
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100851
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100852 ch->cmt = cmt;
853 ch->index = index;
854 ch->hwidx = hwidx;
Magnus Damm83c79a62017-09-18 15:46:43 +0200855 ch->timer_bit = hwidx;
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100856
857 /*
858 * Compute the address of the channel control register block. For the
859 * timers with a per-channel start/stop register, compute its address
860 * as well.
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100861 */
Laurent Pinchart31e912f2014-01-28 15:52:46 +0100862 switch (cmt->info->model) {
863 case SH_CMT_16BIT:
864 ch->ioctrl = cmt->mapbase + 2 + ch->hwidx * 6;
865 break;
866 case SH_CMT_32BIT:
867 case SH_CMT_48BIT:
868 ch->ioctrl = cmt->mapbase + 0x10 + ch->hwidx * 0x10;
869 break;
Magnus Damm83c79a62017-09-18 15:46:43 +0200870 case SH_CMT0_RCAR_GEN2:
871 case SH_CMT1_RCAR_GEN2:
Laurent Pinchart31e912f2014-01-28 15:52:46 +0100872 ch->iostart = cmt->mapbase + ch->hwidx * 0x100;
873 ch->ioctrl = ch->iostart + 0x10;
Magnus Damm83c79a62017-09-18 15:46:43 +0200874 ch->timer_bit = 0;
Laurent Pinchart31e912f2014-01-28 15:52:46 +0100875 break;
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100876 }
877
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100878 if (cmt->info->width == (sizeof(ch->max_match_value) * 8))
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100879 ch->max_match_value = ~0;
880 else
Laurent Pinchart2cda3ac2014-02-11 23:46:48 +0100881 ch->max_match_value = (1 << cmt->info->width) - 1;
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100882
883 ch->match_value = ch->max_match_value;
884 raw_spin_lock_init(&ch->lock);
885
Laurent Pinchart1d053e12014-02-17 16:04:16 +0100886 ret = sh_cmt_register(ch, dev_name(&cmt->pdev->dev),
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100887 clockevent, clocksource);
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100888 if (ret) {
Laurent Pinchart740a9512014-01-27 22:04:17 +0100889 dev_err(&cmt->pdev->dev, "ch%u: registration failed\n",
890 ch->index);
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100891 return ret;
892 }
893 ch->cs_enabled = false;
894
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100895 return 0;
896}
897
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100898static int sh_cmt_map_memory(struct sh_cmt_device *cmt)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000899{
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100900 struct resource *mem;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000901
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100902 mem = platform_get_resource(cmt->pdev, IORESOURCE_MEM, 0);
903 if (!mem) {
904 dev_err(&cmt->pdev->dev, "failed to get I/O memory\n");
905 return -ENXIO;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +0000906 }
907
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +0100908 cmt->mapbase = ioremap(mem->start, resource_size(mem));
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100909 if (cmt->mapbase == NULL) {
910 dev_err(&cmt->pdev->dev, "failed to remap I/O memory\n");
911 return -ENXIO;
912 }
913
914 return 0;
915}
916
Laurent Pinchart1768aa22014-02-12 17:12:40 +0100917static const struct platform_device_id sh_cmt_id_table[] = {
918 { "sh-cmt-16", (kernel_ulong_t)&sh_cmt_info[SH_CMT_16BIT] },
919 { "sh-cmt-32", (kernel_ulong_t)&sh_cmt_info[SH_CMT_32BIT] },
Laurent Pinchart1768aa22014-02-12 17:12:40 +0100920 { }
921};
922MODULE_DEVICE_TABLE(platform, sh_cmt_id_table);
923
924static const struct of_device_id sh_cmt_of_table[] __maybe_unused = {
Magnus Damm19d60842019-08-20 21:36:07 +0900925 {
926 /* deprecated, preserved for backward compatibility */
927 .compatible = "renesas,cmt-48",
928 .data = &sh_cmt_info[SH_CMT_48BIT]
929 },
Geert Uytterhoeven8d50e942017-09-18 15:46:45 +0200930 {
931 /* deprecated, preserved for backward compatibility */
932 .compatible = "renesas,cmt-48-gen2",
933 .data = &sh_cmt_info[SH_CMT0_RCAR_GEN2]
934 },
Sergei Shtylyoveceb4c42018-09-12 23:14:14 +0300935 {
Magnus Damm8c1afba2019-08-20 21:35:56 +0900936 .compatible = "renesas,r8a7740-cmt1",
937 .data = &sh_cmt_info[SH_CMT_48BIT]
938 },
939 {
940 .compatible = "renesas,sh73a0-cmt1",
941 .data = &sh_cmt_info[SH_CMT_48BIT]
942 },
943 {
Sergei Shtylyoveceb4c42018-09-12 23:14:14 +0300944 .compatible = "renesas,rcar-gen2-cmt0",
945 .data = &sh_cmt_info[SH_CMT0_RCAR_GEN2]
946 },
947 {
948 .compatible = "renesas,rcar-gen2-cmt1",
949 .data = &sh_cmt_info[SH_CMT1_RCAR_GEN2]
950 },
Sergei Shtylyovac142a72018-09-12 23:17:37 +0300951 {
952 .compatible = "renesas,rcar-gen3-cmt0",
953 .data = &sh_cmt_info[SH_CMT0_RCAR_GEN2]
954 },
955 {
956 .compatible = "renesas,rcar-gen3-cmt1",
957 .data = &sh_cmt_info[SH_CMT1_RCAR_GEN2]
958 },
Laurent Pinchart1768aa22014-02-12 17:12:40 +0100959 { }
960};
961MODULE_DEVICE_TABLE(of, sh_cmt_of_table);
962
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100963static int sh_cmt_setup(struct sh_cmt_device *cmt, struct platform_device *pdev)
964{
Laurent Pinchart31e912f2014-01-28 15:52:46 +0100965 unsigned int mask;
966 unsigned int i;
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100967 int ret;
968
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100969 cmt->pdev = pdev;
Laurent Pinchartde599c82014-02-17 16:49:05 +0100970 raw_spin_lock_init(&cmt->lock);
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100971
Laurent Pinchart1768aa22014-02-12 17:12:40 +0100972 if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) {
Geert Uytterhoeven2d1d5172017-09-18 15:46:47 +0200973 cmt->info = of_device_get_match_data(&pdev->dev);
Geert Uytterhoevend1d28592017-09-18 15:46:46 +0200974 cmt->hw_channels = cmt->info->channels_mask;
Laurent Pinchart1768aa22014-02-12 17:12:40 +0100975 } else if (pdev->dev.platform_data) {
976 struct sh_timer_config *cfg = pdev->dev.platform_data;
977 const struct platform_device_id *id = pdev->id_entry;
978
979 cmt->info = (const struct sh_cmt_info *)id->driver_data;
980 cmt->hw_channels = cfg->channels_mask;
981 } else {
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100982 dev_err(&cmt->pdev->dev, "missing platform data\n");
983 return -ENXIO;
Laurent Pinchartf5ec9b12014-01-27 22:04:17 +0100984 }
985
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100986 /* Get hold of clock. */
Laurent Pinchart31e912f2014-01-28 15:52:46 +0100987 cmt->clk = clk_get(&cmt->pdev->dev, "fck");
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100988 if (IS_ERR(cmt->clk)) {
989 dev_err(&cmt->pdev->dev, "cannot get clock\n");
990 return PTR_ERR(cmt->clk);
991 }
992
993 ret = clk_prepare(cmt->clk);
Laurent Pinchartb882e7b2014-01-27 22:04:17 +0100994 if (ret < 0)
Laurent Pinchart81b3b272014-01-28 12:36:48 +0100995 goto err_clk_put;
996
Nicolai Stange890f4232017-02-06 22:11:59 +0100997 /* Determine clock rate. */
998 ret = clk_enable(cmt->clk);
999 if (ret < 0)
1000 goto err_clk_unprepare;
1001
1002 if (cmt->info->width == 16)
1003 cmt->rate = clk_get_rate(cmt->clk) / 512;
1004 else
1005 cmt->rate = clk_get_rate(cmt->clk) / 8;
1006
1007 clk_disable(cmt->clk);
1008
Laurent Pinchart31e912f2014-01-28 15:52:46 +01001009 /* Map the memory resource(s). */
1010 ret = sh_cmt_map_memory(cmt);
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001011 if (ret < 0)
1012 goto err_clk_unprepare;
1013
1014 /* Allocate and setup the channels. */
Laurent Pinchart1768aa22014-02-12 17:12:40 +01001015 cmt->num_channels = hweight8(cmt->hw_channels);
Kees Cook6396bb22018-06-12 14:03:40 -07001016 cmt->channels = kcalloc(cmt->num_channels, sizeof(*cmt->channels),
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001017 GFP_KERNEL);
1018 if (cmt->channels == NULL) {
1019 ret = -ENOMEM;
1020 goto err_unmap;
1021 }
1022
Laurent Pinchart31e912f2014-01-28 15:52:46 +01001023 /*
1024 * Use the first channel as a clock event device and the second channel
1025 * as a clock source. If only one channel is available use it for both.
1026 */
Laurent Pinchart1768aa22014-02-12 17:12:40 +01001027 for (i = 0, mask = cmt->hw_channels; i < cmt->num_channels; ++i) {
Laurent Pinchart31e912f2014-01-28 15:52:46 +01001028 unsigned int hwidx = ffs(mask) - 1;
1029 bool clocksource = i == 1 || cmt->num_channels == 1;
1030 bool clockevent = i == 0;
1031
1032 ret = sh_cmt_setup_channel(&cmt->channels[i], i, hwidx,
1033 clockevent, clocksource, cmt);
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001034 if (ret < 0)
1035 goto err_unmap;
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001036
Laurent Pinchart31e912f2014-01-28 15:52:46 +01001037 mask &= ~(1 << hwidx);
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001038 }
Paul Mundtda64c2a2010-02-25 16:37:46 +09001039
Laurent Pinchart2653caf2014-01-27 22:04:17 +01001040 platform_set_drvdata(pdev, cmt);
Magnus Dammadccc692012-12-14 14:53:51 +09001041
Paul Mundtda64c2a2010-02-25 16:37:46 +09001042 return 0;
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001043
1044err_unmap:
Laurent Pinchartf5ec9b12014-01-27 22:04:17 +01001045 kfree(cmt->channels);
Laurent Pinchart31e912f2014-01-28 15:52:46 +01001046 iounmap(cmt->mapbase);
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001047err_clk_unprepare:
Laurent Pinchart2653caf2014-01-27 22:04:17 +01001048 clk_unprepare(cmt->clk);
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001049err_clk_put:
Laurent Pinchart2653caf2014-01-27 22:04:17 +01001050 clk_put(cmt->clk);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001051 return ret;
1052}
1053
Greg Kroah-Hartman18505142012-12-21 15:11:38 -08001054static int sh_cmt_probe(struct platform_device *pdev)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001055{
Laurent Pinchart2653caf2014-01-27 22:04:17 +01001056 struct sh_cmt_device *cmt = platform_get_drvdata(pdev);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001057 int ret;
1058
Bartosz Golaszewski201e9102019-10-03 11:29:13 +02001059 if (!is_sh_early_platform_device(pdev)) {
Rafael J. Wysockibad81382012-08-06 01:48:57 +02001060 pm_runtime_set_active(&pdev->dev);
1061 pm_runtime_enable(&pdev->dev);
Rafael J. Wysocki9bb5ec82012-08-06 01:43:03 +02001062 }
Rafael J. Wysocki615a4452012-03-13 22:40:06 +01001063
Laurent Pinchart2653caf2014-01-27 22:04:17 +01001064 if (cmt) {
Paul Mundt214a6072010-03-10 16:26:25 +09001065 dev_info(&pdev->dev, "kept as earlytimer\n");
Rafael J. Wysockibad81382012-08-06 01:48:57 +02001066 goto out;
Magnus Damme475eed2009-04-15 10:50:04 +00001067 }
1068
Laurent Pinchartb262bc72014-01-27 22:04:17 +01001069 cmt = kzalloc(sizeof(*cmt), GFP_KERNEL);
Jingoo Han0178f412014-05-22 14:05:06 +02001070 if (cmt == NULL)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001071 return -ENOMEM;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001072
Laurent Pinchart2653caf2014-01-27 22:04:17 +01001073 ret = sh_cmt_setup(cmt, pdev);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001074 if (ret) {
Laurent Pinchart2653caf2014-01-27 22:04:17 +01001075 kfree(cmt);
Rafael J. Wysockibad81382012-08-06 01:48:57 +02001076 pm_runtime_idle(&pdev->dev);
1077 return ret;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001078 }
Bartosz Golaszewski201e9102019-10-03 11:29:13 +02001079 if (is_sh_early_platform_device(pdev))
Rafael J. Wysockibad81382012-08-06 01:48:57 +02001080 return 0;
1081
1082 out:
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001083 if (cmt->has_clockevent || cmt->has_clocksource)
Rafael J. Wysockibad81382012-08-06 01:48:57 +02001084 pm_runtime_irq_safe(&pdev->dev);
1085 else
1086 pm_runtime_idle(&pdev->dev);
1087
1088 return 0;
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001089}
1090
Greg Kroah-Hartman18505142012-12-21 15:11:38 -08001091static int sh_cmt_remove(struct platform_device *pdev)
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001092{
1093 return -EBUSY; /* cannot unregister clockevent and clocksource */
1094}
1095
1096static struct platform_driver sh_cmt_device_driver = {
1097 .probe = sh_cmt_probe,
Greg Kroah-Hartman18505142012-12-21 15:11:38 -08001098 .remove = sh_cmt_remove,
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001099 .driver = {
1100 .name = "sh_cmt",
Laurent Pinchart1768aa22014-02-12 17:12:40 +01001101 .of_match_table = of_match_ptr(sh_cmt_of_table),
Laurent Pinchart81b3b272014-01-28 12:36:48 +01001102 },
1103 .id_table = sh_cmt_id_table,
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001104};
1105
1106static int __init sh_cmt_init(void)
1107{
1108 return platform_driver_register(&sh_cmt_device_driver);
1109}
1110
1111static void __exit sh_cmt_exit(void)
1112{
1113 platform_driver_unregister(&sh_cmt_device_driver);
1114}
1115
Bartosz Golaszewski507fd012019-10-03 11:29:12 +02001116#ifdef CONFIG_SUPERH
Bartosz Golaszewski201e9102019-10-03 11:29:13 +02001117sh_early_platform_init("earlytimer", &sh_cmt_device_driver);
Bartosz Golaszewski507fd012019-10-03 11:29:12 +02001118#endif
1119
Simon Hormane903a032013-03-05 15:40:42 +09001120subsys_initcall(sh_cmt_init);
Magnus Damm3fb1b6a2009-01-22 09:55:59 +00001121module_exit(sh_cmt_exit);
1122
1123MODULE_AUTHOR("Magnus Damm");
1124MODULE_DESCRIPTION("SuperH CMT Timer Driver");
1125MODULE_LICENSE("GPL v2");