Kuninori Morimoto | efad011 | 2018-08-22 02:25:53 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 2 | /* |
| 3 | * SuperH Timer Support - CMT |
| 4 | * |
| 5 | * Copyright (C) 2008 Magnus Damm |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 8 | #include <linux/clk.h> |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 9 | #include <linux/clockchips.h> |
Laurent Pinchart | e7a9bcc | 2014-02-12 16:56:44 +0100 | [diff] [blame] | 10 | #include <linux/clocksource.h> |
| 11 | #include <linux/delay.h> |
| 12 | #include <linux/err.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/io.h> |
| 16 | #include <linux/ioport.h> |
| 17 | #include <linux/irq.h> |
Paul Gortmaker | 7deeab5 | 2011-07-03 13:36:22 -0400 | [diff] [blame] | 18 | #include <linux/module.h> |
Laurent Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 19 | #include <linux/of.h> |
Geert Uytterhoeven | 2d1d517 | 2017-09-18 15:46:47 +0200 | [diff] [blame] | 20 | #include <linux/of_device.h> |
Laurent Pinchart | e7a9bcc | 2014-02-12 16:56:44 +0100 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
Rafael J. Wysocki | 615a445 | 2012-03-13 22:40:06 +0100 | [diff] [blame] | 22 | #include <linux/pm_domain.h> |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 23 | #include <linux/pm_runtime.h> |
Laurent Pinchart | e7a9bcc | 2014-02-12 16:56:44 +0100 | [diff] [blame] | 24 | #include <linux/sh_timer.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/spinlock.h> |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 27 | |
Bartosz Golaszewski | 507fd01 | 2019-10-03 11:29:12 +0200 | [diff] [blame] | 28 | #ifdef CONFIG_SUPERH |
| 29 | #include <asm/platform_early.h> |
| 30 | #endif |
| 31 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 32 | struct sh_cmt_device; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 33 | |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 34 | /* |
| 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 Damm | 83c79a6 | 2017-09-18 15:46:43 +0200 | [diff] [blame] | 39 | * 16B 32B 32B-F 48B R-Car Gen2 |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 40 | * ----------------------------------------------------------------------------- |
| 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 Damm | 83c79a6 | 2017-09-18 15:46:43 +0200 | [diff] [blame] | 46 | * 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 Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 49 | * |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 50 | * 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 Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 60 | * channels only, is a 48-bit gen2 CMT with the 48-bit channels unavailable. |
| 61 | */ |
| 62 | |
| 63 | enum sh_cmt_model { |
| 64 | SH_CMT_16BIT, |
| 65 | SH_CMT_32BIT, |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 66 | SH_CMT_48BIT, |
Magnus Damm | 83c79a6 | 2017-09-18 15:46:43 +0200 | [diff] [blame] | 67 | SH_CMT0_RCAR_GEN2, |
| 68 | SH_CMT1_RCAR_GEN2, |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 69 | }; |
| 70 | |
| 71 | struct sh_cmt_info { |
| 72 | enum sh_cmt_model model; |
| 73 | |
Magnus Damm | 464eed8 | 2017-09-18 15:46:42 +0200 | [diff] [blame] | 74 | unsigned int channels_mask; |
| 75 | |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 76 | unsigned long width; /* 16 or 32 bit version of hardware block */ |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 77 | u32 overflow_bit; |
| 78 | u32 clear_bits; |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 79 | |
| 80 | /* callbacks for CMSTR and CMCSR access */ |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 81 | u32 (*read_control)(void __iomem *base, unsigned long offs); |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 82 | void (*write_control)(void __iomem *base, unsigned long offs, |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 83 | u32 value); |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 84 | |
| 85 | /* callbacks for CMCNT and CMCOR access */ |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 86 | u32 (*read_count)(void __iomem *base, unsigned long offs); |
| 87 | void (*write_count)(void __iomem *base, unsigned long offs, u32 value); |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 88 | }; |
| 89 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 90 | struct sh_cmt_channel { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 91 | struct sh_cmt_device *cmt; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 92 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 93 | unsigned int index; /* Index in the documentation */ |
| 94 | unsigned int hwidx; /* Real hardware index */ |
Laurent Pinchart | c924d2d | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 95 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 96 | void __iomem *iostart; |
| 97 | void __iomem *ioctrl; |
| 98 | |
| 99 | unsigned int timer_bit; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 100 | unsigned long flags; |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 101 | u32 match_value; |
| 102 | u32 next_match_value; |
| 103 | u32 max_match_value; |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 104 | raw_spinlock_t lock; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 105 | struct clock_event_device ced; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 106 | struct clocksource cs; |
Sergei Shtylyov | 37e7742 | 2018-09-10 23:22:16 +0300 | [diff] [blame] | 107 | u64 total_cycles; |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 108 | bool cs_enabled; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 109 | }; |
| 110 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 111 | struct sh_cmt_device { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 112 | struct platform_device *pdev; |
| 113 | |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 114 | const struct sh_cmt_info *info; |
| 115 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 116 | void __iomem *mapbase; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 117 | struct clk *clk; |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 118 | unsigned long rate; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 119 | |
Laurent Pinchart | de599c8 | 2014-02-17 16:49:05 +0100 | [diff] [blame] | 120 | raw_spinlock_t lock; /* Protect the shared start/stop register */ |
| 121 | |
Laurent Pinchart | f5ec9b1 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 122 | struct sh_cmt_channel *channels; |
| 123 | unsigned int num_channels; |
Laurent Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 124 | unsigned int hw_channels; |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 125 | |
| 126 | bool has_clockevent; |
| 127 | bool has_clocksource; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 128 | }; |
| 129 | |
Laurent Pinchart | d14be99 | 2014-01-29 00:33:08 +0100 | [diff] [blame] | 130 | #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 Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 158 | static u32 sh_cmt_read16(void __iomem *base, unsigned long offs) |
Magnus Damm | 587acb3 | 2012-12-14 14:54:10 +0900 | [diff] [blame] | 159 | { |
| 160 | return ioread16(base + (offs << 1)); |
| 161 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 162 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 163 | static u32 sh_cmt_read32(void __iomem *base, unsigned long offs) |
Magnus Damm | a6a912c | 2012-12-14 14:54:19 +0900 | [diff] [blame] | 164 | { |
| 165 | return ioread32(base + (offs << 2)); |
| 166 | } |
| 167 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 168 | static void sh_cmt_write16(void __iomem *base, unsigned long offs, u32 value) |
Magnus Damm | 587acb3 | 2012-12-14 14:54:10 +0900 | [diff] [blame] | 169 | { |
| 170 | iowrite16(value, base + (offs << 1)); |
| 171 | } |
| 172 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 173 | static void sh_cmt_write32(void __iomem *base, unsigned long offs, u32 value) |
Magnus Damm | a6a912c | 2012-12-14 14:54:19 +0900 | [diff] [blame] | 174 | { |
| 175 | iowrite32(value, base + (offs << 2)); |
| 176 | } |
| 177 | |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 178 | static const struct sh_cmt_info sh_cmt_info[] = { |
| 179 | [SH_CMT_16BIT] = { |
| 180 | .model = SH_CMT_16BIT, |
| 181 | .width = 16, |
Laurent Pinchart | d14be99 | 2014-01-29 00:33:08 +0100 | [diff] [blame] | 182 | .overflow_bit = SH_CMT16_CMCSR_CMF, |
| 183 | .clear_bits = ~SH_CMT16_CMCSR_CMF, |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 184 | .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 Pinchart | d14be99 | 2014-01-29 00:33:08 +0100 | [diff] [blame] | 192 | .overflow_bit = SH_CMT32_CMCSR_CMF, |
| 193 | .clear_bits = ~(SH_CMT32_CMCSR_CMF | SH_CMT32_CMCSR_OVF), |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 194 | .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 Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 199 | [SH_CMT_48BIT] = { |
| 200 | .model = SH_CMT_48BIT, |
Magnus Damm | 464eed8 | 2017-09-18 15:46:42 +0200 | [diff] [blame] | 201 | .channels_mask = 0x3f, |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 202 | .width = 32, |
Laurent Pinchart | d14be99 | 2014-01-29 00:33:08 +0100 | [diff] [blame] | 203 | .overflow_bit = SH_CMT32_CMCSR_CMF, |
| 204 | .clear_bits = ~(SH_CMT32_CMCSR_CMF | SH_CMT32_CMCSR_OVF), |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 205 | .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 Damm | 83c79a6 | 2017-09-18 15:46:43 +0200 | [diff] [blame] | 210 | [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 Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 224 | .width = 32, |
Laurent Pinchart | d14be99 | 2014-01-29 00:33:08 +0100 | [diff] [blame] | 225 | .overflow_bit = SH_CMT32_CMCSR_CMF, |
| 226 | .clear_bits = ~(SH_CMT32_CMCSR_CMF | SH_CMT32_CMCSR_OVF), |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 227 | .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 Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 234 | #define CMCSR 0 /* channel register */ |
| 235 | #define CMCNT 1 /* channel register */ |
| 236 | #define CMCOR 2 /* channel register */ |
| 237 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 238 | static inline u32 sh_cmt_read_cmstr(struct sh_cmt_channel *ch) |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 239 | { |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 240 | 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 Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 244 | } |
| 245 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 246 | static inline void sh_cmt_write_cmstr(struct sh_cmt_channel *ch, u32 value) |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 247 | { |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 248 | 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 Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 254 | static inline u32 sh_cmt_read_cmcsr(struct sh_cmt_channel *ch) |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 255 | { |
| 256 | return ch->cmt->info->read_control(ch->ioctrl, CMCSR); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 257 | } |
| 258 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 259 | static inline void sh_cmt_write_cmcsr(struct sh_cmt_channel *ch, u32 value) |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 260 | { |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 261 | ch->cmt->info->write_control(ch->ioctrl, CMCSR, value); |
| 262 | } |
| 263 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 264 | static inline u32 sh_cmt_read_cmcnt(struct sh_cmt_channel *ch) |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 265 | { |
| 266 | return ch->cmt->info->read_count(ch->ioctrl, CMCNT); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 267 | } |
| 268 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 269 | static inline void sh_cmt_write_cmcnt(struct sh_cmt_channel *ch, u32 value) |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 270 | { |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 271 | ch->cmt->info->write_count(ch->ioctrl, CMCNT, value); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 272 | } |
| 273 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 274 | static inline void sh_cmt_write_cmcor(struct sh_cmt_channel *ch, u32 value) |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 275 | { |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 276 | ch->cmt->info->write_count(ch->ioctrl, CMCOR, value); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 277 | } |
| 278 | |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 279 | static u32 sh_cmt_get_counter(struct sh_cmt_channel *ch, u32 *has_wrapped) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 280 | { |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 281 | u32 v1, v2, v3; |
| 282 | u32 o1, o2; |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 283 | |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 284 | o1 = sh_cmt_read_cmcsr(ch) & ch->cmt->info->overflow_bit; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 285 | |
| 286 | /* Make sure the timer value is stable. Stolen from acpi_pm.c */ |
| 287 | do { |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 288 | o2 = o1; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 289 | v1 = sh_cmt_read_cmcnt(ch); |
| 290 | v2 = sh_cmt_read_cmcnt(ch); |
| 291 | v3 = sh_cmt_read_cmcnt(ch); |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 292 | o1 = sh_cmt_read_cmcsr(ch) & ch->cmt->info->overflow_bit; |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 293 | } while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3) |
| 294 | || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2))); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 295 | |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 296 | *has_wrapped = o1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 297 | return v2; |
| 298 | } |
| 299 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 300 | static void sh_cmt_start_stop_ch(struct sh_cmt_channel *ch, int start) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 301 | { |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 302 | unsigned long flags; |
| 303 | u32 value; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 304 | |
| 305 | /* start stop register shared by multiple timer channels */ |
Laurent Pinchart | de599c8 | 2014-02-17 16:49:05 +0100 | [diff] [blame] | 306 | raw_spin_lock_irqsave(&ch->cmt->lock, flags); |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 307 | value = sh_cmt_read_cmstr(ch); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 308 | |
| 309 | if (start) |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 310 | value |= 1 << ch->timer_bit; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 311 | else |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 312 | value &= ~(1 << ch->timer_bit); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 313 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 314 | sh_cmt_write_cmstr(ch, value); |
Laurent Pinchart | de599c8 | 2014-02-17 16:49:05 +0100 | [diff] [blame] | 315 | raw_spin_unlock_irqrestore(&ch->cmt->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 318 | static int sh_cmt_enable(struct sh_cmt_channel *ch) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 319 | { |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 320 | int k, ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 321 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 322 | pm_runtime_get_sync(&ch->cmt->pdev->dev); |
| 323 | dev_pm_syscore_device(&ch->cmt->pdev->dev, true); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 324 | |
Paul Mundt | 9436b4a | 2011-05-31 15:26:42 +0900 | [diff] [blame] | 325 | /* enable clock */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 326 | ret = clk_enable(ch->cmt->clk); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 327 | if (ret) { |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 328 | dev_err(&ch->cmt->pdev->dev, "ch%u: cannot enable clock\n", |
| 329 | ch->index); |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 330 | goto err0; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 331 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 332 | |
| 333 | /* make sure channel is disabled */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 334 | sh_cmt_start_stop_ch(ch, 0); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 335 | |
| 336 | /* configure channel, periodic mode and maximum timeout */ |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 337 | if (ch->cmt->info->width == 16) { |
Laurent Pinchart | d14be99 | 2014-01-29 00:33:08 +0100 | [diff] [blame] | 338 | sh_cmt_write_cmcsr(ch, SH_CMT16_CMCSR_CMIE | |
| 339 | SH_CMT16_CMCSR_CKS512); |
Magnus Damm | 3014f47 | 2009-04-29 14:50:37 +0000 | [diff] [blame] | 340 | } else { |
Laurent Pinchart | d14be99 | 2014-01-29 00:33:08 +0100 | [diff] [blame] | 341 | 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 Damm | 3014f47 | 2009-04-29 14:50:37 +0000 | [diff] [blame] | 345 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 346 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 347 | sh_cmt_write_cmcor(ch, 0xffffffff); |
| 348 | sh_cmt_write_cmcnt(ch, 0); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 349 | |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 350 | /* |
| 351 | * According to the sh73a0 user's manual, as CMCNT can be operated |
Geert Uytterhoeven | ad7794d | 2020-06-18 10:02:12 +0200 | [diff] [blame] | 352 | * only by the RCLK (Pseudo 32 kHz), there's one restriction on |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 353 | * 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 Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 362 | if (!sh_cmt_read_cmcnt(ch)) |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 363 | break; |
| 364 | udelay(1); |
| 365 | } |
| 366 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 367 | if (sh_cmt_read_cmcnt(ch)) { |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 368 | dev_err(&ch->cmt->pdev->dev, "ch%u: cannot clear CMCNT\n", |
| 369 | ch->index); |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 370 | ret = -ETIMEDOUT; |
| 371 | goto err1; |
| 372 | } |
| 373 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 374 | /* enable channel */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 375 | sh_cmt_start_stop_ch(ch, 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 376 | return 0; |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 377 | err1: |
| 378 | /* stop clock */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 379 | clk_disable(ch->cmt->clk); |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 380 | |
| 381 | err0: |
| 382 | return ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 383 | } |
| 384 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 385 | static void sh_cmt_disable(struct sh_cmt_channel *ch) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 386 | { |
| 387 | /* disable channel */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 388 | sh_cmt_start_stop_ch(ch, 0); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 389 | |
Magnus Damm | be890a1 | 2009-06-17 05:04:04 +0000 | [diff] [blame] | 390 | /* disable interrupts in CMT block */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 391 | sh_cmt_write_cmcsr(ch, 0); |
Magnus Damm | be890a1 | 2009-06-17 05:04:04 +0000 | [diff] [blame] | 392 | |
Paul Mundt | 9436b4a | 2011-05-31 15:26:42 +0900 | [diff] [blame] | 393 | /* stop clock */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 394 | clk_disable(ch->cmt->clk); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 395 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 396 | dev_pm_syscore_device(&ch->cmt->pdev->dev, false); |
| 397 | pm_runtime_put(&ch->cmt->pdev->dev); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 398 | } |
| 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 Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 407 | static void sh_cmt_clock_event_program_verify(struct sh_cmt_channel *ch, |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 408 | int absolute) |
| 409 | { |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 410 | u32 value = ch->next_match_value; |
| 411 | u32 new_match; |
| 412 | u32 delay = 0; |
| 413 | u32 now = 0; |
| 414 | u32 has_wrapped; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 415 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 416 | now = sh_cmt_get_counter(ch, &has_wrapped); |
| 417 | ch->flags |= FLAG_REPROGRAM; /* force reprogram */ |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 418 | |
| 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 Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 424 | ch->flags |= FLAG_SKIPEVENT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 425 | 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 Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 436 | if (new_match > ch->max_match_value) |
| 437 | new_match = ch->max_match_value; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 438 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 439 | sh_cmt_write_cmcor(ch, new_match); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 440 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 441 | now = sh_cmt_get_counter(ch, &has_wrapped); |
| 442 | if (has_wrapped && (new_match > ch->match_value)) { |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 443 | /* 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 Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 449 | ch->flags |= FLAG_SKIPEVENT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 450 | 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 Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 460 | ch->match_value = new_match; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 461 | 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 Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 471 | ch->match_value = new_match; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 472 | 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 Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 487 | dev_warn(&ch->cmt->pdev->dev, "ch%u: too long delay\n", |
| 488 | ch->index); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 489 | |
| 490 | } while (delay); |
| 491 | } |
| 492 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 493 | static void __sh_cmt_set_next(struct sh_cmt_channel *ch, unsigned long delta) |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 494 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 495 | if (delta > ch->max_match_value) |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 496 | dev_warn(&ch->cmt->pdev->dev, "ch%u: delta out of range\n", |
| 497 | ch->index); |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 498 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 499 | ch->next_match_value = delta; |
| 500 | sh_cmt_clock_event_program_verify(ch, 0); |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 503 | static void sh_cmt_set_next(struct sh_cmt_channel *ch, unsigned long delta) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 504 | { |
| 505 | unsigned long flags; |
| 506 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 507 | raw_spin_lock_irqsave(&ch->lock, flags); |
| 508 | __sh_cmt_set_next(ch, delta); |
| 509 | raw_spin_unlock_irqrestore(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | static irqreturn_t sh_cmt_interrupt(int irq, void *dev_id) |
| 513 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 514 | struct sh_cmt_channel *ch = dev_id; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 515 | |
| 516 | /* clear flags */ |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 517 | sh_cmt_write_cmcsr(ch, sh_cmt_read_cmcsr(ch) & |
| 518 | ch->cmt->info->clear_bits); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 519 | |
| 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 Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 524 | if (ch->flags & FLAG_CLOCKSOURCE) |
| 525 | ch->total_cycles += ch->match_value + 1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 526 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 527 | if (!(ch->flags & FLAG_REPROGRAM)) |
| 528 | ch->next_match_value = ch->max_match_value; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 529 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 530 | ch->flags |= FLAG_IRQCONTEXT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 531 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 532 | if (ch->flags & FLAG_CLOCKEVENT) { |
| 533 | if (!(ch->flags & FLAG_SKIPEVENT)) { |
Viresh Kumar | 051b782 | 2015-06-18 16:24:34 +0530 | [diff] [blame] | 534 | if (clockevent_state_oneshot(&ch->ced)) { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 535 | ch->next_match_value = ch->max_match_value; |
| 536 | ch->flags |= FLAG_REPROGRAM; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 537 | } |
| 538 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 539 | ch->ced.event_handler(&ch->ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 540 | } |
| 541 | } |
| 542 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 543 | ch->flags &= ~FLAG_SKIPEVENT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 544 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 545 | if (ch->flags & FLAG_REPROGRAM) { |
| 546 | ch->flags &= ~FLAG_REPROGRAM; |
| 547 | sh_cmt_clock_event_program_verify(ch, 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 548 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 549 | if (ch->flags & FLAG_CLOCKEVENT) |
Viresh Kumar | 051b782 | 2015-06-18 16:24:34 +0530 | [diff] [blame] | 550 | if ((clockevent_state_shutdown(&ch->ced)) |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 551 | || (ch->match_value == ch->next_match_value)) |
| 552 | ch->flags &= ~FLAG_REPROGRAM; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 553 | } |
| 554 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 555 | ch->flags &= ~FLAG_IRQCONTEXT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 556 | |
| 557 | return IRQ_HANDLED; |
| 558 | } |
| 559 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 560 | static int sh_cmt_start(struct sh_cmt_channel *ch, unsigned long flag) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 561 | { |
| 562 | int ret = 0; |
| 563 | unsigned long flags; |
| 564 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 565 | raw_spin_lock_irqsave(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 566 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 567 | if (!(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE))) |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 568 | ret = sh_cmt_enable(ch); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 569 | |
| 570 | if (ret) |
| 571 | goto out; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 572 | ch->flags |= flag; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 573 | |
| 574 | /* setup timeout if no clockevent */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 575 | if ((flag == FLAG_CLOCKSOURCE) && (!(ch->flags & FLAG_CLOCKEVENT))) |
| 576 | __sh_cmt_set_next(ch, ch->max_match_value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 577 | out: |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 578 | raw_spin_unlock_irqrestore(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 579 | |
| 580 | return ret; |
| 581 | } |
| 582 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 583 | static void sh_cmt_stop(struct sh_cmt_channel *ch, unsigned long flag) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 584 | { |
| 585 | unsigned long flags; |
| 586 | unsigned long f; |
| 587 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 588 | raw_spin_lock_irqsave(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 589 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 590 | f = ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE); |
| 591 | ch->flags &= ~flag; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 592 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 593 | if (f && !(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE))) |
| 594 | sh_cmt_disable(ch); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 595 | |
| 596 | /* adjust the timeout to maximum if only clocksource left */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 597 | if ((flag == FLAG_CLOCKEVENT) && (ch->flags & FLAG_CLOCKSOURCE)) |
| 598 | __sh_cmt_set_next(ch, ch->max_match_value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 599 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 600 | raw_spin_unlock_irqrestore(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 601 | } |
| 602 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 603 | static struct sh_cmt_channel *cs_to_sh_cmt(struct clocksource *cs) |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 604 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 605 | return container_of(cs, struct sh_cmt_channel, cs); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 606 | } |
| 607 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 608 | static u64 sh_cmt_clocksource_read(struct clocksource *cs) |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 609 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 610 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 611 | unsigned long flags; |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 612 | u32 has_wrapped; |
Sergei Shtylyov | 37e7742 | 2018-09-10 23:22:16 +0300 | [diff] [blame] | 613 | u64 value; |
Sergei Shtylyov | 22627c6 | 2018-09-08 23:54:05 +0300 | [diff] [blame] | 614 | u32 raw; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 615 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 616 | raw_spin_lock_irqsave(&ch->lock, flags); |
| 617 | value = ch->total_cycles; |
| 618 | raw = sh_cmt_get_counter(ch, &has_wrapped); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 619 | |
| 620 | if (unlikely(has_wrapped)) |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 621 | raw += ch->match_value + 1; |
| 622 | raw_spin_unlock_irqrestore(&ch->lock, flags); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 623 | |
| 624 | return value + raw; |
| 625 | } |
| 626 | |
| 627 | static int sh_cmt_clocksource_enable(struct clocksource *cs) |
| 628 | { |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 629 | int ret; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 630 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 631 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 632 | WARN_ON(ch->cs_enabled); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 633 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 634 | ch->total_cycles = 0; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 635 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 636 | ret = sh_cmt_start(ch, FLAG_CLOCKSOURCE); |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 637 | if (!ret) |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 638 | ch->cs_enabled = true; |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 639 | |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 640 | return ret; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | static void sh_cmt_clocksource_disable(struct clocksource *cs) |
| 644 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 645 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 646 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 647 | WARN_ON(!ch->cs_enabled); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 648 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 649 | sh_cmt_stop(ch, FLAG_CLOCKSOURCE); |
| 650 | ch->cs_enabled = false; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 653 | static void sh_cmt_clocksource_suspend(struct clocksource *cs) |
| 654 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 655 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 656 | |
Geert Uytterhoeven | 54d46b7 | 2015-08-06 17:32:06 +0200 | [diff] [blame] | 657 | if (!ch->cs_enabled) |
| 658 | return; |
| 659 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 660 | sh_cmt_stop(ch, FLAG_CLOCKSOURCE); |
| 661 | pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 662 | } |
| 663 | |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 664 | static void sh_cmt_clocksource_resume(struct clocksource *cs) |
| 665 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 666 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 667 | |
Geert Uytterhoeven | 54d46b7 | 2015-08-06 17:32:06 +0200 | [diff] [blame] | 668 | if (!ch->cs_enabled) |
| 669 | return; |
| 670 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 671 | pm_genpd_syscore_poweron(&ch->cmt->pdev->dev); |
| 672 | sh_cmt_start(ch, FLAG_CLOCKSOURCE); |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 673 | } |
| 674 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 675 | static int sh_cmt_register_clocksource(struct sh_cmt_channel *ch, |
Laurent Pinchart | fb28a65 | 2014-02-19 17:00:31 +0100 | [diff] [blame] | 676 | const char *name) |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 677 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 678 | struct clocksource *cs = &ch->cs; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 679 | |
| 680 | cs->name = name; |
Laurent Pinchart | fb28a65 | 2014-02-19 17:00:31 +0100 | [diff] [blame] | 681 | cs->rating = 125; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 682 | cs->read = sh_cmt_clocksource_read; |
| 683 | cs->enable = sh_cmt_clocksource_enable; |
| 684 | cs->disable = sh_cmt_clocksource_disable; |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 685 | cs->suspend = sh_cmt_clocksource_suspend; |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 686 | cs->resume = sh_cmt_clocksource_resume; |
Sergei Shtylyov | 37e7742 | 2018-09-10 23:22:16 +0300 | [diff] [blame] | 687 | cs->mask = CLOCKSOURCE_MASK(sizeof(u64) * 8); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 688 | cs->flags = CLOCK_SOURCE_IS_CONTINUOUS; |
Paul Mundt | f4d7c35 | 2010-06-02 17:10:44 +0900 | [diff] [blame] | 689 | |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 690 | dev_info(&ch->cmt->pdev->dev, "ch%u: used as clock source\n", |
| 691 | ch->index); |
Paul Mundt | f4d7c35 | 2010-06-02 17:10:44 +0900 | [diff] [blame] | 692 | |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 693 | clocksource_register_hz(cs, ch->cmt->rate); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 694 | return 0; |
| 695 | } |
| 696 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 697 | static struct sh_cmt_channel *ced_to_sh_cmt(struct clock_event_device *ced) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 698 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 699 | return container_of(ced, struct sh_cmt_channel, ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 700 | } |
| 701 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 702 | static void sh_cmt_clock_event_start(struct sh_cmt_channel *ch, int periodic) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 703 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 704 | sh_cmt_start(ch, FLAG_CLOCKEVENT); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 705 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 706 | if (periodic) |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 707 | sh_cmt_set_next(ch, ((ch->cmt->rate + HZ/2) / HZ) - 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 708 | else |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 709 | sh_cmt_set_next(ch, ch->max_match_value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 710 | } |
| 711 | |
Viresh Kumar | 051b782 | 2015-06-18 16:24:34 +0530 | [diff] [blame] | 712 | static 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 | |
| 720 | static int sh_cmt_clock_event_set_state(struct clock_event_device *ced, |
| 721 | int periodic) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 722 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 723 | struct sh_cmt_channel *ch = ced_to_sh_cmt(ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 724 | |
| 725 | /* deal with old setting first */ |
Viresh Kumar | 051b782 | 2015-06-18 16:24:34 +0530 | [diff] [blame] | 726 | if (clockevent_state_oneshot(ced) || clockevent_state_periodic(ced)) |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 727 | sh_cmt_stop(ch, FLAG_CLOCKEVENT); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 728 | |
Viresh Kumar | 051b782 | 2015-06-18 16:24:34 +0530 | [diff] [blame] | 729 | 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 | |
| 735 | static 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 | |
| 740 | static int sh_cmt_clock_event_set_periodic(struct clock_event_device *ced) |
| 741 | { |
| 742 | return sh_cmt_clock_event_set_state(ced, 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | static int sh_cmt_clock_event_next(unsigned long delta, |
| 746 | struct clock_event_device *ced) |
| 747 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 748 | struct sh_cmt_channel *ch = ced_to_sh_cmt(ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 749 | |
Viresh Kumar | 051b782 | 2015-06-18 16:24:34 +0530 | [diff] [blame] | 750 | BUG_ON(!clockevent_state_oneshot(ced)); |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 751 | if (likely(ch->flags & FLAG_IRQCONTEXT)) |
| 752 | ch->next_match_value = delta - 1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 753 | else |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 754 | sh_cmt_set_next(ch, delta - 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 755 | |
| 756 | return 0; |
| 757 | } |
| 758 | |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 759 | static void sh_cmt_clock_event_suspend(struct clock_event_device *ced) |
| 760 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 761 | struct sh_cmt_channel *ch = ced_to_sh_cmt(ced); |
Laurent Pinchart | 57dee99 | 2013-12-14 15:07:32 +0900 | [diff] [blame] | 762 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 763 | pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev); |
| 764 | clk_unprepare(ch->cmt->clk); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | static void sh_cmt_clock_event_resume(struct clock_event_device *ced) |
| 768 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 769 | struct sh_cmt_channel *ch = ced_to_sh_cmt(ced); |
Laurent Pinchart | 57dee99 | 2013-12-14 15:07:32 +0900 | [diff] [blame] | 770 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 771 | clk_prepare(ch->cmt->clk); |
| 772 | pm_genpd_syscore_poweron(&ch->cmt->pdev->dev); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 773 | } |
| 774 | |
Laurent Pinchart | bfa76bb | 2014-02-21 01:24:47 +0100 | [diff] [blame] | 775 | static int sh_cmt_register_clockevent(struct sh_cmt_channel *ch, |
| 776 | const char *name) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 777 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 778 | struct clock_event_device *ced = &ch->ced; |
Laurent Pinchart | bfa76bb | 2014-02-21 01:24:47 +0100 | [diff] [blame] | 779 | int irq; |
| 780 | int ret; |
| 781 | |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 782 | irq = platform_get_irq(ch->cmt->pdev, ch->index); |
Stephen Boyd | 9f475d0 | 2019-07-30 11:15:04 -0700 | [diff] [blame] | 783 | if (irq < 0) |
Laurent Pinchart | bfa76bb | 2014-02-21 01:24:47 +0100 | [diff] [blame] | 784 | return irq; |
Laurent Pinchart | bfa76bb | 2014-02-21 01:24:47 +0100 | [diff] [blame] | 785 | |
| 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 Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 794 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 795 | ced->name = name; |
| 796 | ced->features = CLOCK_EVT_FEAT_PERIODIC; |
| 797 | ced->features |= CLOCK_EVT_FEAT_ONESHOT; |
Laurent Pinchart | b7fcbb0 | 2014-02-19 17:00:31 +0100 | [diff] [blame] | 798 | ced->rating = 125; |
Laurent Pinchart | f1ebe1e | 2014-02-19 16:19:44 +0100 | [diff] [blame] | 799 | ced->cpumask = cpu_possible_mask; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 800 | ced->set_next_event = sh_cmt_clock_event_next; |
Viresh Kumar | 051b782 | 2015-06-18 16:24:34 +0530 | [diff] [blame] | 801 | 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. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 804 | ced->suspend = sh_cmt_clock_event_suspend; |
| 805 | ced->resume = sh_cmt_clock_event_resume; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 806 | |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 807 | /* 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 Stange | bb2e94a | 2017-03-30 22:09:12 +0200 | [diff] [blame] | 811 | ced->max_delta_ticks = ch->max_match_value; |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 812 | ced->min_delta_ns = clockevent_delta2ns(0x1f, ced); |
Nicolai Stange | bb2e94a | 2017-03-30 22:09:12 +0200 | [diff] [blame] | 813 | ced->min_delta_ticks = 0x1f; |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 814 | |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 815 | dev_info(&ch->cmt->pdev->dev, "ch%u: used for clock events\n", |
| 816 | ch->index); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 817 | clockevents_register_device(ced); |
Laurent Pinchart | bfa76bb | 2014-02-21 01:24:47 +0100 | [diff] [blame] | 818 | |
| 819 | return 0; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 820 | } |
| 821 | |
Laurent Pinchart | 1d053e1 | 2014-02-17 16:04:16 +0100 | [diff] [blame] | 822 | static int sh_cmt_register(struct sh_cmt_channel *ch, const char *name, |
Laurent Pinchart | fb28a65 | 2014-02-19 17:00:31 +0100 | [diff] [blame] | 823 | bool clockevent, bool clocksource) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 824 | { |
Laurent Pinchart | bfa76bb | 2014-02-21 01:24:47 +0100 | [diff] [blame] | 825 | int ret; |
| 826 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 827 | if (clockevent) { |
| 828 | ch->cmt->has_clockevent = true; |
Laurent Pinchart | bfa76bb | 2014-02-21 01:24:47 +0100 | [diff] [blame] | 829 | ret = sh_cmt_register_clockevent(ch, name); |
| 830 | if (ret < 0) |
| 831 | return ret; |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 832 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 833 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 834 | if (clocksource) { |
| 835 | ch->cmt->has_clocksource = true; |
Laurent Pinchart | fb28a65 | 2014-02-19 17:00:31 +0100 | [diff] [blame] | 836 | sh_cmt_register_clocksource(ch, name); |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 837 | } |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 838 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 839 | return 0; |
| 840 | } |
| 841 | |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 842 | static int sh_cmt_setup_channel(struct sh_cmt_channel *ch, unsigned int index, |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 843 | unsigned int hwidx, bool clockevent, |
| 844 | bool clocksource, struct sh_cmt_device *cmt) |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 845 | { |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 846 | int ret; |
| 847 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 848 | /* Skip unused channels. */ |
| 849 | if (!clockevent && !clocksource) |
| 850 | return 0; |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 851 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 852 | ch->cmt = cmt; |
| 853 | ch->index = index; |
| 854 | ch->hwidx = hwidx; |
Magnus Damm | 83c79a6 | 2017-09-18 15:46:43 +0200 | [diff] [blame] | 855 | ch->timer_bit = hwidx; |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 856 | |
| 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 Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 861 | */ |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 862 | 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 Damm | 83c79a6 | 2017-09-18 15:46:43 +0200 | [diff] [blame] | 870 | case SH_CMT0_RCAR_GEN2: |
| 871 | case SH_CMT1_RCAR_GEN2: |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 872 | ch->iostart = cmt->mapbase + ch->hwidx * 0x100; |
| 873 | ch->ioctrl = ch->iostart + 0x10; |
Magnus Damm | 83c79a6 | 2017-09-18 15:46:43 +0200 | [diff] [blame] | 874 | ch->timer_bit = 0; |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 875 | break; |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 876 | } |
| 877 | |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 878 | if (cmt->info->width == (sizeof(ch->max_match_value) * 8)) |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 879 | ch->max_match_value = ~0; |
| 880 | else |
Laurent Pinchart | 2cda3ac | 2014-02-11 23:46:48 +0100 | [diff] [blame] | 881 | ch->max_match_value = (1 << cmt->info->width) - 1; |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 882 | |
| 883 | ch->match_value = ch->max_match_value; |
| 884 | raw_spin_lock_init(&ch->lock); |
| 885 | |
Laurent Pinchart | 1d053e1 | 2014-02-17 16:04:16 +0100 | [diff] [blame] | 886 | ret = sh_cmt_register(ch, dev_name(&cmt->pdev->dev), |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 887 | clockevent, clocksource); |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 888 | if (ret) { |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 889 | dev_err(&cmt->pdev->dev, "ch%u: registration failed\n", |
| 890 | ch->index); |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 891 | return ret; |
| 892 | } |
| 893 | ch->cs_enabled = false; |
| 894 | |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 895 | return 0; |
| 896 | } |
| 897 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 898 | static int sh_cmt_map_memory(struct sh_cmt_device *cmt) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 899 | { |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 900 | struct resource *mem; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 901 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 902 | 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 Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 906 | } |
| 907 | |
Christoph Hellwig | 4bdc0d6 | 2020-01-06 09:43:50 +0100 | [diff] [blame] | 908 | cmt->mapbase = ioremap(mem->start, resource_size(mem)); |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 909 | 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 Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 917 | static 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 Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 920 | { } |
| 921 | }; |
| 922 | MODULE_DEVICE_TABLE(platform, sh_cmt_id_table); |
| 923 | |
| 924 | static const struct of_device_id sh_cmt_of_table[] __maybe_unused = { |
Magnus Damm | 19d6084 | 2019-08-20 21:36:07 +0900 | [diff] [blame] | 925 | { |
| 926 | /* deprecated, preserved for backward compatibility */ |
| 927 | .compatible = "renesas,cmt-48", |
| 928 | .data = &sh_cmt_info[SH_CMT_48BIT] |
| 929 | }, |
Geert Uytterhoeven | 8d50e94 | 2017-09-18 15:46:45 +0200 | [diff] [blame] | 930 | { |
| 931 | /* deprecated, preserved for backward compatibility */ |
| 932 | .compatible = "renesas,cmt-48-gen2", |
| 933 | .data = &sh_cmt_info[SH_CMT0_RCAR_GEN2] |
| 934 | }, |
Sergei Shtylyov | eceb4c4 | 2018-09-12 23:14:14 +0300 | [diff] [blame] | 935 | { |
Magnus Damm | 8c1afba | 2019-08-20 21:35:56 +0900 | [diff] [blame] | 936 | .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 Shtylyov | eceb4c4 | 2018-09-12 23:14:14 +0300 | [diff] [blame] | 944 | .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 Shtylyov | ac142a7 | 2018-09-12 23:17:37 +0300 | [diff] [blame] | 951 | { |
| 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 Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 959 | { } |
| 960 | }; |
| 961 | MODULE_DEVICE_TABLE(of, sh_cmt_of_table); |
| 962 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 963 | static int sh_cmt_setup(struct sh_cmt_device *cmt, struct platform_device *pdev) |
| 964 | { |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 965 | unsigned int mask; |
| 966 | unsigned int i; |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 967 | int ret; |
| 968 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 969 | cmt->pdev = pdev; |
Laurent Pinchart | de599c8 | 2014-02-17 16:49:05 +0100 | [diff] [blame] | 970 | raw_spin_lock_init(&cmt->lock); |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 971 | |
Laurent Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 972 | if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) { |
Geert Uytterhoeven | 2d1d517 | 2017-09-18 15:46:47 +0200 | [diff] [blame] | 973 | cmt->info = of_device_get_match_data(&pdev->dev); |
Geert Uytterhoeven | d1d2859 | 2017-09-18 15:46:46 +0200 | [diff] [blame] | 974 | cmt->hw_channels = cmt->info->channels_mask; |
Laurent Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 975 | } 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 Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 982 | dev_err(&cmt->pdev->dev, "missing platform data\n"); |
| 983 | return -ENXIO; |
Laurent Pinchart | f5ec9b1 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 984 | } |
| 985 | |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 986 | /* Get hold of clock. */ |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 987 | cmt->clk = clk_get(&cmt->pdev->dev, "fck"); |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 988 | 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 Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 994 | if (ret < 0) |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 995 | goto err_clk_put; |
| 996 | |
Nicolai Stange | 890f423 | 2017-02-06 22:11:59 +0100 | [diff] [blame] | 997 | /* 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 Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 1009 | /* Map the memory resource(s). */ |
| 1010 | ret = sh_cmt_map_memory(cmt); |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1011 | if (ret < 0) |
| 1012 | goto err_clk_unprepare; |
| 1013 | |
| 1014 | /* Allocate and setup the channels. */ |
Laurent Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 1015 | cmt->num_channels = hweight8(cmt->hw_channels); |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1016 | cmt->channels = kcalloc(cmt->num_channels, sizeof(*cmt->channels), |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1017 | GFP_KERNEL); |
| 1018 | if (cmt->channels == NULL) { |
| 1019 | ret = -ENOMEM; |
| 1020 | goto err_unmap; |
| 1021 | } |
| 1022 | |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 1023 | /* |
| 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 Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 1027 | for (i = 0, mask = cmt->hw_channels; i < cmt->num_channels; ++i) { |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 1028 | 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 Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1034 | if (ret < 0) |
| 1035 | goto err_unmap; |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1036 | |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 1037 | mask &= ~(1 << hwidx); |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1038 | } |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 1039 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1040 | platform_set_drvdata(pdev, cmt); |
Magnus Damm | adccc69 | 2012-12-14 14:53:51 +0900 | [diff] [blame] | 1041 | |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 1042 | return 0; |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1043 | |
| 1044 | err_unmap: |
Laurent Pinchart | f5ec9b1 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1045 | kfree(cmt->channels); |
Laurent Pinchart | 31e912f | 2014-01-28 15:52:46 +0100 | [diff] [blame] | 1046 | iounmap(cmt->mapbase); |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1047 | err_clk_unprepare: |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1048 | clk_unprepare(cmt->clk); |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1049 | err_clk_put: |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1050 | clk_put(cmt->clk); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1051 | return ret; |
| 1052 | } |
| 1053 | |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 1054 | static int sh_cmt_probe(struct platform_device *pdev) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1055 | { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1056 | struct sh_cmt_device *cmt = platform_get_drvdata(pdev); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1057 | int ret; |
| 1058 | |
Bartosz Golaszewski | 201e910 | 2019-10-03 11:29:13 +0200 | [diff] [blame] | 1059 | if (!is_sh_early_platform_device(pdev)) { |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 1060 | pm_runtime_set_active(&pdev->dev); |
| 1061 | pm_runtime_enable(&pdev->dev); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 1062 | } |
Rafael J. Wysocki | 615a445 | 2012-03-13 22:40:06 +0100 | [diff] [blame] | 1063 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1064 | if (cmt) { |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 1065 | dev_info(&pdev->dev, "kept as earlytimer\n"); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 1066 | goto out; |
Magnus Damm | e475eed | 2009-04-15 10:50:04 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
Laurent Pinchart | b262bc7 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1069 | cmt = kzalloc(sizeof(*cmt), GFP_KERNEL); |
Jingoo Han | 0178f41 | 2014-05-22 14:05:06 +0200 | [diff] [blame] | 1070 | if (cmt == NULL) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1071 | return -ENOMEM; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1072 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1073 | ret = sh_cmt_setup(cmt, pdev); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1074 | if (ret) { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 1075 | kfree(cmt); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 1076 | pm_runtime_idle(&pdev->dev); |
| 1077 | return ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1078 | } |
Bartosz Golaszewski | 201e910 | 2019-10-03 11:29:13 +0200 | [diff] [blame] | 1079 | if (is_sh_early_platform_device(pdev)) |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 1080 | return 0; |
| 1081 | |
| 1082 | out: |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1083 | if (cmt->has_clockevent || cmt->has_clocksource) |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 1084 | pm_runtime_irq_safe(&pdev->dev); |
| 1085 | else |
| 1086 | pm_runtime_idle(&pdev->dev); |
| 1087 | |
| 1088 | return 0; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1089 | } |
| 1090 | |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 1091 | static int sh_cmt_remove(struct platform_device *pdev) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1092 | { |
| 1093 | return -EBUSY; /* cannot unregister clockevent and clocksource */ |
| 1094 | } |
| 1095 | |
| 1096 | static struct platform_driver sh_cmt_device_driver = { |
| 1097 | .probe = sh_cmt_probe, |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 1098 | .remove = sh_cmt_remove, |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1099 | .driver = { |
| 1100 | .name = "sh_cmt", |
Laurent Pinchart | 1768aa2 | 2014-02-12 17:12:40 +0100 | [diff] [blame] | 1101 | .of_match_table = of_match_ptr(sh_cmt_of_table), |
Laurent Pinchart | 81b3b27 | 2014-01-28 12:36:48 +0100 | [diff] [blame] | 1102 | }, |
| 1103 | .id_table = sh_cmt_id_table, |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1104 | }; |
| 1105 | |
| 1106 | static int __init sh_cmt_init(void) |
| 1107 | { |
| 1108 | return platform_driver_register(&sh_cmt_device_driver); |
| 1109 | } |
| 1110 | |
| 1111 | static void __exit sh_cmt_exit(void) |
| 1112 | { |
| 1113 | platform_driver_unregister(&sh_cmt_device_driver); |
| 1114 | } |
| 1115 | |
Bartosz Golaszewski | 507fd01 | 2019-10-03 11:29:12 +0200 | [diff] [blame] | 1116 | #ifdef CONFIG_SUPERH |
Bartosz Golaszewski | 201e910 | 2019-10-03 11:29:13 +0200 | [diff] [blame] | 1117 | sh_early_platform_init("earlytimer", &sh_cmt_device_driver); |
Bartosz Golaszewski | 507fd01 | 2019-10-03 11:29:12 +0200 | [diff] [blame] | 1118 | #endif |
| 1119 | |
Simon Horman | e903a03 | 2013-03-05 15:40:42 +0900 | [diff] [blame] | 1120 | subsys_initcall(sh_cmt_init); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1121 | module_exit(sh_cmt_exit); |
| 1122 | |
| 1123 | MODULE_AUTHOR("Magnus Damm"); |
| 1124 | MODULE_DESCRIPTION("SuperH CMT Timer Driver"); |
| 1125 | MODULE_LICENSE("GPL v2"); |