Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 1 | /* |
| 2 | * SuperH Timer Support - CMT |
| 3 | * |
| 4 | * Copyright (C) 2008 Magnus Damm |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
| 19 | |
| 20 | #include <linux/init.h> |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/ioport.h> |
| 25 | #include <linux/io.h> |
| 26 | #include <linux/clk.h> |
| 27 | #include <linux/irq.h> |
| 28 | #include <linux/err.h> |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 29 | #include <linux/delay.h> |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 30 | #include <linux/clocksource.h> |
| 31 | #include <linux/clockchips.h> |
Paul Mundt | 46a12f7 | 2009-05-03 17:57:17 +0900 | [diff] [blame] | 32 | #include <linux/sh_timer.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Paul Gortmaker | 7deeab5 | 2011-07-03 13:36:22 -0400 | [diff] [blame] | 34 | #include <linux/module.h> |
Rafael J. Wysocki | 615a445 | 2012-03-13 22:40:06 +0100 | [diff] [blame] | 35 | #include <linux/pm_domain.h> |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 36 | #include <linux/pm_runtime.h> |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 37 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 38 | struct sh_cmt_device; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 39 | |
| 40 | struct sh_cmt_channel { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 41 | struct sh_cmt_device *cmt; |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 42 | unsigned int index; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 43 | |
Laurent Pinchart | c924d2d | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 44 | void __iomem *base; |
| 45 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 46 | unsigned long flags; |
| 47 | unsigned long match_value; |
| 48 | unsigned long next_match_value; |
| 49 | unsigned long max_match_value; |
| 50 | unsigned long rate; |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 51 | raw_spinlock_t lock; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 52 | struct clock_event_device ced; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 53 | struct clocksource cs; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 54 | unsigned long total_cycles; |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 55 | bool cs_enabled; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 58 | struct sh_cmt_device { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 59 | struct platform_device *pdev; |
| 60 | |
Laurent Pinchart | 36f1ac9 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 61 | void __iomem *mapbase_ch; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 62 | void __iomem *mapbase; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 63 | struct clk *clk; |
| 64 | |
Laurent Pinchart | f5ec9b1 | 2014-01-27 22:04:17 +0100 | [diff] [blame^] | 65 | struct sh_cmt_channel *channels; |
| 66 | unsigned int num_channels; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 67 | |
| 68 | unsigned long width; /* 16 or 32 bit version of hardware block */ |
| 69 | unsigned long overflow_bit; |
| 70 | unsigned long clear_bits; |
Magnus Damm | a6a912c | 2012-12-14 14:54:19 +0900 | [diff] [blame] | 71 | |
Magnus Damm | cccd704 | 2012-12-14 14:54:28 +0900 | [diff] [blame] | 72 | /* callbacks for CMSTR and CMCSR access */ |
| 73 | unsigned long (*read_control)(void __iomem *base, unsigned long offs); |
| 74 | void (*write_control)(void __iomem *base, unsigned long offs, |
| 75 | unsigned long value); |
| 76 | |
Magnus Damm | a6a912c | 2012-12-14 14:54:19 +0900 | [diff] [blame] | 77 | /* callbacks for CMCNT and CMCOR access */ |
| 78 | unsigned long (*read_count)(void __iomem *base, unsigned long offs); |
| 79 | void (*write_count)(void __iomem *base, unsigned long offs, |
| 80 | unsigned long value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 81 | }; |
| 82 | |
Magnus Damm | 118aee4 | 2012-12-14 14:54:37 +0900 | [diff] [blame] | 83 | /* Examples of supported CMT timer register layouts and I/O access widths: |
| 84 | * |
| 85 | * "16-bit counter and 16-bit control" as found on sh7263: |
| 86 | * CMSTR 0xfffec000 16-bit |
| 87 | * CMCSR 0xfffec002 16-bit |
| 88 | * CMCNT 0xfffec004 16-bit |
| 89 | * CMCOR 0xfffec006 16-bit |
| 90 | * |
| 91 | * "32-bit counter and 16-bit control" as found on sh7372, sh73a0, r8a7740: |
| 92 | * CMSTR 0xffca0000 16-bit |
| 93 | * CMCSR 0xffca0060 16-bit |
| 94 | * CMCNT 0xffca0064 32-bit |
| 95 | * CMCOR 0xffca0068 32-bit |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 96 | * |
| 97 | * "32-bit counter and 32-bit control" as found on r8a73a4 and r8a7790: |
| 98 | * CMSTR 0xffca0500 32-bit |
| 99 | * CMCSR 0xffca0510 32-bit |
| 100 | * CMCNT 0xffca0514 32-bit |
| 101 | * CMCOR 0xffca0518 32-bit |
Magnus Damm | 118aee4 | 2012-12-14 14:54:37 +0900 | [diff] [blame] | 102 | */ |
| 103 | |
Magnus Damm | a6a912c | 2012-12-14 14:54:19 +0900 | [diff] [blame] | 104 | static unsigned long sh_cmt_read16(void __iomem *base, unsigned long offs) |
Magnus Damm | 587acb3 | 2012-12-14 14:54:10 +0900 | [diff] [blame] | 105 | { |
| 106 | return ioread16(base + (offs << 1)); |
| 107 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 108 | |
Magnus Damm | a6a912c | 2012-12-14 14:54:19 +0900 | [diff] [blame] | 109 | static unsigned long sh_cmt_read32(void __iomem *base, unsigned long offs) |
| 110 | { |
| 111 | return ioread32(base + (offs << 2)); |
| 112 | } |
| 113 | |
| 114 | static void sh_cmt_write16(void __iomem *base, unsigned long offs, |
| 115 | unsigned long value) |
Magnus Damm | 587acb3 | 2012-12-14 14:54:10 +0900 | [diff] [blame] | 116 | { |
| 117 | iowrite16(value, base + (offs << 1)); |
| 118 | } |
| 119 | |
Magnus Damm | a6a912c | 2012-12-14 14:54:19 +0900 | [diff] [blame] | 120 | static void sh_cmt_write32(void __iomem *base, unsigned long offs, |
| 121 | unsigned long value) |
| 122 | { |
| 123 | iowrite32(value, base + (offs << 2)); |
| 124 | } |
| 125 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 126 | #define CMCSR 0 /* channel register */ |
| 127 | #define CMCNT 1 /* channel register */ |
| 128 | #define CMCOR 2 /* channel register */ |
| 129 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 130 | static inline unsigned long sh_cmt_read_cmstr(struct sh_cmt_channel *ch) |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 131 | { |
Laurent Pinchart | 36f1ac9 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 132 | return ch->cmt->read_control(ch->cmt->mapbase, 0); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 133 | } |
| 134 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 135 | static inline unsigned long sh_cmt_read_cmcsr(struct sh_cmt_channel *ch) |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 136 | { |
Laurent Pinchart | c924d2d | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 137 | return ch->cmt->read_control(ch->base, CMCSR); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 138 | } |
| 139 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 140 | static inline unsigned long sh_cmt_read_cmcnt(struct sh_cmt_channel *ch) |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 141 | { |
Laurent Pinchart | c924d2d | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 142 | return ch->cmt->read_count(ch->base, CMCNT); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 145 | static inline void sh_cmt_write_cmstr(struct sh_cmt_channel *ch, |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 146 | unsigned long value) |
| 147 | { |
Laurent Pinchart | 36f1ac9 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 148 | ch->cmt->write_control(ch->cmt->mapbase, 0, value); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 149 | } |
| 150 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 151 | static inline void sh_cmt_write_cmcsr(struct sh_cmt_channel *ch, |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 152 | unsigned long value) |
| 153 | { |
Laurent Pinchart | c924d2d | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 154 | ch->cmt->write_control(ch->base, CMCSR, value); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 155 | } |
| 156 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 157 | static inline void sh_cmt_write_cmcnt(struct sh_cmt_channel *ch, |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 158 | unsigned long value) |
| 159 | { |
Laurent Pinchart | c924d2d | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 160 | ch->cmt->write_count(ch->base, CMCNT, value); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 161 | } |
| 162 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 163 | static inline void sh_cmt_write_cmcor(struct sh_cmt_channel *ch, |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 164 | unsigned long value) |
| 165 | { |
Laurent Pinchart | c924d2d | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 166 | ch->cmt->write_count(ch->base, CMCOR, value); |
Magnus Damm | 1b56b96 | 2012-12-14 14:54:00 +0900 | [diff] [blame] | 167 | } |
| 168 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 169 | static unsigned long sh_cmt_get_counter(struct sh_cmt_channel *ch, |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 170 | int *has_wrapped) |
| 171 | { |
| 172 | unsigned long v1, v2, v3; |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 173 | int o1, o2; |
| 174 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 175 | o1 = sh_cmt_read_cmcsr(ch) & ch->cmt->overflow_bit; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 176 | |
| 177 | /* Make sure the timer value is stable. Stolen from acpi_pm.c */ |
| 178 | do { |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 179 | o2 = o1; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 180 | v1 = sh_cmt_read_cmcnt(ch); |
| 181 | v2 = sh_cmt_read_cmcnt(ch); |
| 182 | v3 = sh_cmt_read_cmcnt(ch); |
| 183 | o1 = sh_cmt_read_cmcsr(ch) & ch->cmt->overflow_bit; |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 184 | } while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3) |
| 185 | || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2))); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 186 | |
Magnus Damm | 5b644c7 | 2009-04-28 08:17:54 +0000 | [diff] [blame] | 187 | *has_wrapped = o1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 188 | return v2; |
| 189 | } |
| 190 | |
Magnus Damm | 587acb3 | 2012-12-14 14:54:10 +0900 | [diff] [blame] | 191 | static DEFINE_RAW_SPINLOCK(sh_cmt_lock); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 192 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 193 | 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] | 194 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 195 | struct sh_timer_config *cfg = ch->cmt->pdev->dev.platform_data; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 196 | unsigned long flags, value; |
| 197 | |
| 198 | /* start stop register shared by multiple timer channels */ |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 199 | raw_spin_lock_irqsave(&sh_cmt_lock, flags); |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 200 | value = sh_cmt_read_cmstr(ch); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 201 | |
| 202 | if (start) |
| 203 | value |= 1 << cfg->timer_bit; |
| 204 | else |
| 205 | value &= ~(1 << cfg->timer_bit); |
| 206 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 207 | sh_cmt_write_cmstr(ch, value); |
Paul Mundt | 7d0c399 | 2012-05-25 13:36:43 +0900 | [diff] [blame] | 208 | raw_spin_unlock_irqrestore(&sh_cmt_lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 211 | static int sh_cmt_enable(struct sh_cmt_channel *ch, unsigned long *rate) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 212 | { |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 213 | int k, ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 214 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 215 | pm_runtime_get_sync(&ch->cmt->pdev->dev); |
| 216 | dev_pm_syscore_device(&ch->cmt->pdev->dev, true); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 217 | |
Paul Mundt | 9436b4a | 2011-05-31 15:26:42 +0900 | [diff] [blame] | 218 | /* enable clock */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 219 | ret = clk_enable(ch->cmt->clk); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 220 | if (ret) { |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 221 | dev_err(&ch->cmt->pdev->dev, "ch%u: cannot enable clock\n", |
| 222 | ch->index); |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 223 | goto err0; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 224 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 225 | |
| 226 | /* make sure channel is disabled */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 227 | sh_cmt_start_stop_ch(ch, 0); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 228 | |
| 229 | /* configure channel, periodic mode and maximum timeout */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 230 | if (ch->cmt->width == 16) { |
| 231 | *rate = clk_get_rate(ch->cmt->clk) / 512; |
| 232 | sh_cmt_write_cmcsr(ch, 0x43); |
Magnus Damm | 3014f47 | 2009-04-29 14:50:37 +0000 | [diff] [blame] | 233 | } else { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 234 | *rate = clk_get_rate(ch->cmt->clk) / 8; |
| 235 | sh_cmt_write_cmcsr(ch, 0x01a4); |
Magnus Damm | 3014f47 | 2009-04-29 14:50:37 +0000 | [diff] [blame] | 236 | } |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 237 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 238 | sh_cmt_write_cmcor(ch, 0xffffffff); |
| 239 | sh_cmt_write_cmcnt(ch, 0); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 240 | |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 241 | /* |
| 242 | * According to the sh73a0 user's manual, as CMCNT can be operated |
| 243 | * only by the RCLK (Pseudo 32 KHz), there's one restriction on |
| 244 | * modifying CMCNT register; two RCLK cycles are necessary before |
| 245 | * this register is either read or any modification of the value |
| 246 | * it holds is reflected in the LSI's actual operation. |
| 247 | * |
| 248 | * While at it, we're supposed to clear out the CMCNT as of this |
| 249 | * moment, so make sure it's processed properly here. This will |
| 250 | * take RCLKx2 at maximum. |
| 251 | */ |
| 252 | for (k = 0; k < 100; k++) { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 253 | if (!sh_cmt_read_cmcnt(ch)) |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 254 | break; |
| 255 | udelay(1); |
| 256 | } |
| 257 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 258 | if (sh_cmt_read_cmcnt(ch)) { |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 259 | dev_err(&ch->cmt->pdev->dev, "ch%u: cannot clear CMCNT\n", |
| 260 | ch->index); |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 261 | ret = -ETIMEDOUT; |
| 262 | goto err1; |
| 263 | } |
| 264 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 265 | /* enable channel */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 266 | sh_cmt_start_stop_ch(ch, 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 267 | return 0; |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 268 | err1: |
| 269 | /* stop clock */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 270 | clk_disable(ch->cmt->clk); |
Magnus Damm | 3f7e5e2 | 2011-07-13 07:59:48 +0000 | [diff] [blame] | 271 | |
| 272 | err0: |
| 273 | return ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 276 | static void sh_cmt_disable(struct sh_cmt_channel *ch) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 277 | { |
| 278 | /* disable channel */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 279 | sh_cmt_start_stop_ch(ch, 0); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 280 | |
Magnus Damm | be890a1 | 2009-06-17 05:04:04 +0000 | [diff] [blame] | 281 | /* disable interrupts in CMT block */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 282 | sh_cmt_write_cmcsr(ch, 0); |
Magnus Damm | be890a1 | 2009-06-17 05:04:04 +0000 | [diff] [blame] | 283 | |
Paul Mundt | 9436b4a | 2011-05-31 15:26:42 +0900 | [diff] [blame] | 284 | /* stop clock */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 285 | clk_disable(ch->cmt->clk); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 286 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 287 | dev_pm_syscore_device(&ch->cmt->pdev->dev, false); |
| 288 | pm_runtime_put(&ch->cmt->pdev->dev); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | /* private flags */ |
| 292 | #define FLAG_CLOCKEVENT (1 << 0) |
| 293 | #define FLAG_CLOCKSOURCE (1 << 1) |
| 294 | #define FLAG_REPROGRAM (1 << 2) |
| 295 | #define FLAG_SKIPEVENT (1 << 3) |
| 296 | #define FLAG_IRQCONTEXT (1 << 4) |
| 297 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 298 | 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] | 299 | int absolute) |
| 300 | { |
| 301 | unsigned long new_match; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 302 | unsigned long value = ch->next_match_value; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 303 | unsigned long delay = 0; |
| 304 | unsigned long now = 0; |
| 305 | int has_wrapped; |
| 306 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 307 | now = sh_cmt_get_counter(ch, &has_wrapped); |
| 308 | ch->flags |= FLAG_REPROGRAM; /* force reprogram */ |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 309 | |
| 310 | if (has_wrapped) { |
| 311 | /* we're competing with the interrupt handler. |
| 312 | * -> let the interrupt handler reprogram the timer. |
| 313 | * -> interrupt number two handles the event. |
| 314 | */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 315 | ch->flags |= FLAG_SKIPEVENT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 316 | return; |
| 317 | } |
| 318 | |
| 319 | if (absolute) |
| 320 | now = 0; |
| 321 | |
| 322 | do { |
| 323 | /* reprogram the timer hardware, |
| 324 | * but don't save the new match value yet. |
| 325 | */ |
| 326 | new_match = now + value + delay; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 327 | if (new_match > ch->max_match_value) |
| 328 | new_match = ch->max_match_value; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 329 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 330 | sh_cmt_write_cmcor(ch, new_match); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 331 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 332 | now = sh_cmt_get_counter(ch, &has_wrapped); |
| 333 | if (has_wrapped && (new_match > ch->match_value)) { |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 334 | /* we are changing to a greater match value, |
| 335 | * so this wrap must be caused by the counter |
| 336 | * matching the old value. |
| 337 | * -> first interrupt reprograms the timer. |
| 338 | * -> interrupt number two handles the event. |
| 339 | */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 340 | ch->flags |= FLAG_SKIPEVENT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 341 | break; |
| 342 | } |
| 343 | |
| 344 | if (has_wrapped) { |
| 345 | /* we are changing to a smaller match value, |
| 346 | * so the wrap must be caused by the counter |
| 347 | * matching the new value. |
| 348 | * -> save programmed match value. |
| 349 | * -> let isr handle the event. |
| 350 | */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 351 | ch->match_value = new_match; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 352 | break; |
| 353 | } |
| 354 | |
| 355 | /* be safe: verify hardware settings */ |
| 356 | if (now < new_match) { |
| 357 | /* timer value is below match value, all good. |
| 358 | * this makes sure we won't miss any match events. |
| 359 | * -> save programmed match value. |
| 360 | * -> let isr handle the event. |
| 361 | */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 362 | ch->match_value = new_match; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 363 | break; |
| 364 | } |
| 365 | |
| 366 | /* the counter has reached a value greater |
| 367 | * than our new match value. and since the |
| 368 | * has_wrapped flag isn't set we must have |
| 369 | * programmed a too close event. |
| 370 | * -> increase delay and retry. |
| 371 | */ |
| 372 | if (delay) |
| 373 | delay <<= 1; |
| 374 | else |
| 375 | delay = 1; |
| 376 | |
| 377 | if (!delay) |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 378 | dev_warn(&ch->cmt->pdev->dev, "ch%u: too long delay\n", |
| 379 | ch->index); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 380 | |
| 381 | } while (delay); |
| 382 | } |
| 383 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 384 | 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] | 385 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 386 | if (delta > ch->max_match_value) |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 387 | dev_warn(&ch->cmt->pdev->dev, "ch%u: delta out of range\n", |
| 388 | ch->index); |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 389 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 390 | ch->next_match_value = delta; |
| 391 | sh_cmt_clock_event_program_verify(ch, 0); |
Takashi YOSHII | 65ada54 | 2010-12-17 07:25:09 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 394 | 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] | 395 | { |
| 396 | unsigned long flags; |
| 397 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 398 | raw_spin_lock_irqsave(&ch->lock, flags); |
| 399 | __sh_cmt_set_next(ch, delta); |
| 400 | raw_spin_unlock_irqrestore(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 401 | } |
| 402 | |
| 403 | static irqreturn_t sh_cmt_interrupt(int irq, void *dev_id) |
| 404 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 405 | struct sh_cmt_channel *ch = dev_id; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 406 | |
| 407 | /* clear flags */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 408 | sh_cmt_write_cmcsr(ch, sh_cmt_read_cmcsr(ch) & ch->cmt->clear_bits); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 409 | |
| 410 | /* update clock source counter to begin with if enabled |
| 411 | * the wrap flag should be cleared by the timer specific |
| 412 | * isr before we end up here. |
| 413 | */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 414 | if (ch->flags & FLAG_CLOCKSOURCE) |
| 415 | ch->total_cycles += ch->match_value + 1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 416 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 417 | if (!(ch->flags & FLAG_REPROGRAM)) |
| 418 | ch->next_match_value = ch->max_match_value; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 419 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 420 | ch->flags |= FLAG_IRQCONTEXT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 421 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 422 | if (ch->flags & FLAG_CLOCKEVENT) { |
| 423 | if (!(ch->flags & FLAG_SKIPEVENT)) { |
| 424 | if (ch->ced.mode == CLOCK_EVT_MODE_ONESHOT) { |
| 425 | ch->next_match_value = ch->max_match_value; |
| 426 | ch->flags |= FLAG_REPROGRAM; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 429 | ch->ced.event_handler(&ch->ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 430 | } |
| 431 | } |
| 432 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 433 | ch->flags &= ~FLAG_SKIPEVENT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 434 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 435 | if (ch->flags & FLAG_REPROGRAM) { |
| 436 | ch->flags &= ~FLAG_REPROGRAM; |
| 437 | sh_cmt_clock_event_program_verify(ch, 1); |
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 | if (ch->flags & FLAG_CLOCKEVENT) |
| 440 | if ((ch->ced.mode == CLOCK_EVT_MODE_SHUTDOWN) |
| 441 | || (ch->match_value == ch->next_match_value)) |
| 442 | ch->flags &= ~FLAG_REPROGRAM; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 443 | } |
| 444 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 445 | ch->flags &= ~FLAG_IRQCONTEXT; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 446 | |
| 447 | return IRQ_HANDLED; |
| 448 | } |
| 449 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 450 | 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] | 451 | { |
| 452 | int ret = 0; |
| 453 | unsigned long flags; |
| 454 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 455 | raw_spin_lock_irqsave(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 456 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 457 | if (!(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE))) |
| 458 | ret = sh_cmt_enable(ch, &ch->rate); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 459 | |
| 460 | if (ret) |
| 461 | goto out; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 462 | ch->flags |= flag; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 463 | |
| 464 | /* setup timeout if no clockevent */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 465 | if ((flag == FLAG_CLOCKSOURCE) && (!(ch->flags & FLAG_CLOCKEVENT))) |
| 466 | __sh_cmt_set_next(ch, ch->max_match_value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 467 | out: |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 468 | raw_spin_unlock_irqrestore(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 469 | |
| 470 | return ret; |
| 471 | } |
| 472 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 473 | 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] | 474 | { |
| 475 | unsigned long flags; |
| 476 | unsigned long f; |
| 477 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 478 | raw_spin_lock_irqsave(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 479 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 480 | f = ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE); |
| 481 | ch->flags &= ~flag; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 482 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 483 | if (f && !(ch->flags & (FLAG_CLOCKEVENT | FLAG_CLOCKSOURCE))) |
| 484 | sh_cmt_disable(ch); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 485 | |
| 486 | /* adjust the timeout to maximum if only clocksource left */ |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 487 | if ((flag == FLAG_CLOCKEVENT) && (ch->flags & FLAG_CLOCKSOURCE)) |
| 488 | __sh_cmt_set_next(ch, ch->max_match_value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 489 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 490 | raw_spin_unlock_irqrestore(&ch->lock, flags); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 491 | } |
| 492 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 493 | static struct sh_cmt_channel *cs_to_sh_cmt(struct clocksource *cs) |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 494 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 495 | return container_of(cs, struct sh_cmt_channel, cs); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | static cycle_t sh_cmt_clocksource_read(struct clocksource *cs) |
| 499 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 500 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 501 | unsigned long flags, raw; |
| 502 | unsigned long value; |
| 503 | int has_wrapped; |
| 504 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 505 | raw_spin_lock_irqsave(&ch->lock, flags); |
| 506 | value = ch->total_cycles; |
| 507 | raw = sh_cmt_get_counter(ch, &has_wrapped); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 508 | |
| 509 | if (unlikely(has_wrapped)) |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 510 | raw += ch->match_value + 1; |
| 511 | raw_spin_unlock_irqrestore(&ch->lock, flags); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 512 | |
| 513 | return value + raw; |
| 514 | } |
| 515 | |
| 516 | static int sh_cmt_clocksource_enable(struct clocksource *cs) |
| 517 | { |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 518 | int ret; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 519 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 520 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 521 | WARN_ON(ch->cs_enabled); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 522 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 523 | ch->total_cycles = 0; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 524 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 525 | ret = sh_cmt_start(ch, FLAG_CLOCKSOURCE); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 526 | if (!ret) { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 527 | __clocksource_updatefreq_hz(cs, ch->rate); |
| 528 | ch->cs_enabled = true; |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 529 | } |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 530 | return ret; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | static void sh_cmt_clocksource_disable(struct clocksource *cs) |
| 534 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 535 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 536 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 537 | WARN_ON(!ch->cs_enabled); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 538 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 539 | sh_cmt_stop(ch, FLAG_CLOCKSOURCE); |
| 540 | ch->cs_enabled = false; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 543 | static void sh_cmt_clocksource_suspend(struct clocksource *cs) |
| 544 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 545 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 546 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 547 | sh_cmt_stop(ch, FLAG_CLOCKSOURCE); |
| 548 | pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 549 | } |
| 550 | |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 551 | static void sh_cmt_clocksource_resume(struct clocksource *cs) |
| 552 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 553 | struct sh_cmt_channel *ch = cs_to_sh_cmt(cs); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 554 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 555 | pm_genpd_syscore_poweron(&ch->cmt->pdev->dev); |
| 556 | sh_cmt_start(ch, FLAG_CLOCKSOURCE); |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 557 | } |
| 558 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 559 | static int sh_cmt_register_clocksource(struct sh_cmt_channel *ch, |
Laurent Pinchart | 1d053e1 | 2014-02-17 16:04:16 +0100 | [diff] [blame] | 560 | const char *name, unsigned long rating) |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 561 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 562 | struct clocksource *cs = &ch->cs; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 563 | |
| 564 | cs->name = name; |
| 565 | cs->rating = rating; |
| 566 | cs->read = sh_cmt_clocksource_read; |
| 567 | cs->enable = sh_cmt_clocksource_enable; |
| 568 | cs->disable = sh_cmt_clocksource_disable; |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 569 | cs->suspend = sh_cmt_clocksource_suspend; |
Magnus Damm | c816288 | 2010-02-02 14:41:40 -0800 | [diff] [blame] | 570 | cs->resume = sh_cmt_clocksource_resume; |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 571 | cs->mask = CLOCKSOURCE_MASK(sizeof(unsigned long) * 8); |
| 572 | cs->flags = CLOCK_SOURCE_IS_CONTINUOUS; |
Paul Mundt | f4d7c35 | 2010-06-02 17:10:44 +0900 | [diff] [blame] | 573 | |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 574 | dev_info(&ch->cmt->pdev->dev, "ch%u: used as clock source\n", |
| 575 | ch->index); |
Paul Mundt | f4d7c35 | 2010-06-02 17:10:44 +0900 | [diff] [blame] | 576 | |
Magnus Damm | 3593f5f | 2011-04-25 22:32:11 +0900 | [diff] [blame] | 577 | /* Register with dummy 1 Hz value, gets updated in ->enable() */ |
| 578 | clocksource_register_hz(cs, 1); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 579 | return 0; |
| 580 | } |
| 581 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 582 | 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] | 583 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 584 | return container_of(ced, struct sh_cmt_channel, ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 585 | } |
| 586 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 587 | 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] | 588 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 589 | struct clock_event_device *ced = &ch->ced; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 590 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 591 | sh_cmt_start(ch, FLAG_CLOCKEVENT); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 592 | |
| 593 | /* TODO: calculate good shift from rate and counter bit width */ |
| 594 | |
| 595 | ced->shift = 32; |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 596 | ced->mult = div_sc(ch->rate, NSEC_PER_SEC, ced->shift); |
| 597 | ced->max_delta_ns = clockevent_delta2ns(ch->max_match_value, ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 598 | ced->min_delta_ns = clockevent_delta2ns(0x1f, ced); |
| 599 | |
| 600 | if (periodic) |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 601 | sh_cmt_set_next(ch, ((ch->rate + HZ/2) / HZ) - 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 602 | else |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 603 | sh_cmt_set_next(ch, ch->max_match_value); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | static void sh_cmt_clock_event_mode(enum clock_event_mode mode, |
| 607 | struct clock_event_device *ced) |
| 608 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 609 | struct sh_cmt_channel *ch = ced_to_sh_cmt(ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 610 | |
| 611 | /* deal with old setting first */ |
| 612 | switch (ced->mode) { |
| 613 | case CLOCK_EVT_MODE_PERIODIC: |
| 614 | case CLOCK_EVT_MODE_ONESHOT: |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 615 | sh_cmt_stop(ch, FLAG_CLOCKEVENT); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 616 | break; |
| 617 | default: |
| 618 | break; |
| 619 | } |
| 620 | |
| 621 | switch (mode) { |
| 622 | case CLOCK_EVT_MODE_PERIODIC: |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 623 | dev_info(&ch->cmt->pdev->dev, |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 624 | "ch%u: used for periodic clock events\n", ch->index); |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 625 | sh_cmt_clock_event_start(ch, 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 626 | break; |
| 627 | case CLOCK_EVT_MODE_ONESHOT: |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 628 | dev_info(&ch->cmt->pdev->dev, |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 629 | "ch%u: used for oneshot clock events\n", ch->index); |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 630 | sh_cmt_clock_event_start(ch, 0); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 631 | break; |
| 632 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 633 | case CLOCK_EVT_MODE_UNUSED: |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 634 | sh_cmt_stop(ch, FLAG_CLOCKEVENT); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 635 | break; |
| 636 | default: |
| 637 | break; |
| 638 | } |
| 639 | } |
| 640 | |
| 641 | static int sh_cmt_clock_event_next(unsigned long delta, |
| 642 | struct clock_event_device *ced) |
| 643 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 644 | struct sh_cmt_channel *ch = ced_to_sh_cmt(ced); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 645 | |
| 646 | BUG_ON(ced->mode != CLOCK_EVT_MODE_ONESHOT); |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 647 | if (likely(ch->flags & FLAG_IRQCONTEXT)) |
| 648 | ch->next_match_value = delta - 1; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 649 | else |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 650 | sh_cmt_set_next(ch, delta - 1); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 651 | |
| 652 | return 0; |
| 653 | } |
| 654 | |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 655 | static void sh_cmt_clock_event_suspend(struct clock_event_device *ced) |
| 656 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 657 | struct sh_cmt_channel *ch = ced_to_sh_cmt(ced); |
Laurent Pinchart | 57dee99 | 2013-12-14 15:07:32 +0900 | [diff] [blame] | 658 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 659 | pm_genpd_syscore_poweroff(&ch->cmt->pdev->dev); |
| 660 | clk_unprepare(ch->cmt->clk); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | static void sh_cmt_clock_event_resume(struct clock_event_device *ced) |
| 664 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 665 | struct sh_cmt_channel *ch = ced_to_sh_cmt(ced); |
Laurent Pinchart | 57dee99 | 2013-12-14 15:07:32 +0900 | [diff] [blame] | 666 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 667 | clk_prepare(ch->cmt->clk); |
| 668 | pm_genpd_syscore_poweron(&ch->cmt->pdev->dev); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 669 | } |
| 670 | |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 671 | static void sh_cmt_register_clockevent(struct sh_cmt_channel *ch, |
Laurent Pinchart | 1d053e1 | 2014-02-17 16:04:16 +0100 | [diff] [blame] | 672 | const char *name, unsigned long rating) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 673 | { |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 674 | struct clock_event_device *ced = &ch->ced; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 675 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 676 | ced->name = name; |
| 677 | ced->features = CLOCK_EVT_FEAT_PERIODIC; |
| 678 | ced->features |= CLOCK_EVT_FEAT_ONESHOT; |
| 679 | ced->rating = rating; |
| 680 | ced->cpumask = cpumask_of(0); |
| 681 | ced->set_next_event = sh_cmt_clock_event_next; |
| 682 | ced->set_mode = sh_cmt_clock_event_mode; |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 683 | ced->suspend = sh_cmt_clock_event_suspend; |
| 684 | ced->resume = sh_cmt_clock_event_resume; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 685 | |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 686 | dev_info(&ch->cmt->pdev->dev, "ch%u: used for clock events\n", |
| 687 | ch->index); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 688 | clockevents_register_device(ced); |
| 689 | } |
| 690 | |
Laurent Pinchart | 1d053e1 | 2014-02-17 16:04:16 +0100 | [diff] [blame] | 691 | static int sh_cmt_register(struct sh_cmt_channel *ch, const char *name, |
Paul Mundt | d1fcc0a | 2009-05-03 18:05:42 +0900 | [diff] [blame] | 692 | unsigned long clockevent_rating, |
| 693 | unsigned long clocksource_rating) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 694 | { |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 695 | if (clockevent_rating) |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 696 | sh_cmt_register_clockevent(ch, name, clockevent_rating); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 697 | |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 698 | if (clocksource_rating) |
Laurent Pinchart | 7269f93 | 2014-01-27 15:29:19 +0100 | [diff] [blame] | 699 | sh_cmt_register_clocksource(ch, name, clocksource_rating); |
Magnus Damm | 19bdc9d | 2009-04-17 05:26:31 +0000 | [diff] [blame] | 700 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 701 | return 0; |
| 702 | } |
| 703 | |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 704 | static int sh_cmt_setup_channel(struct sh_cmt_channel *ch, unsigned int index, |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 705 | struct sh_cmt_device *cmt) |
| 706 | { |
| 707 | struct sh_timer_config *cfg = cmt->pdev->dev.platform_data; |
| 708 | int irq; |
| 709 | int ret; |
| 710 | |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 711 | ch->cmt = cmt; |
Laurent Pinchart | c924d2d | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 712 | ch->base = cmt->mapbase_ch; |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 713 | ch->index = index; |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 714 | |
| 715 | irq = platform_get_irq(cmt->pdev, 0); |
| 716 | if (irq < 0) { |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 717 | dev_err(&cmt->pdev->dev, "ch%u: failed to get irq\n", |
| 718 | ch->index); |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 719 | return irq; |
| 720 | } |
| 721 | |
| 722 | if (cmt->width == (sizeof(ch->max_match_value) * 8)) |
| 723 | ch->max_match_value = ~0; |
| 724 | else |
| 725 | ch->max_match_value = (1 << cmt->width) - 1; |
| 726 | |
| 727 | ch->match_value = ch->max_match_value; |
| 728 | raw_spin_lock_init(&ch->lock); |
| 729 | |
Laurent Pinchart | 1d053e1 | 2014-02-17 16:04:16 +0100 | [diff] [blame] | 730 | ret = sh_cmt_register(ch, dev_name(&cmt->pdev->dev), |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 731 | cfg->clockevent_rating, |
| 732 | cfg->clocksource_rating); |
| 733 | if (ret) { |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 734 | dev_err(&cmt->pdev->dev, "ch%u: registration failed\n", |
| 735 | ch->index); |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 736 | return ret; |
| 737 | } |
| 738 | ch->cs_enabled = false; |
| 739 | |
| 740 | ret = request_irq(irq, sh_cmt_interrupt, |
| 741 | IRQF_TIMER | IRQF_IRQPOLL | IRQF_NOBALANCING, |
| 742 | dev_name(&cmt->pdev->dev), ch); |
| 743 | if (ret) { |
Laurent Pinchart | 740a951 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 744 | dev_err(&cmt->pdev->dev, "ch%u: failed to request irq %d\n", |
| 745 | ch->index, irq); |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 746 | return ret; |
| 747 | } |
| 748 | |
| 749 | return 0; |
| 750 | } |
| 751 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 752 | static int sh_cmt_setup(struct sh_cmt_device *cmt, struct platform_device *pdev) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 753 | { |
Paul Mundt | 46a12f7 | 2009-05-03 17:57:17 +0900 | [diff] [blame] | 754 | struct sh_timer_config *cfg = pdev->dev.platform_data; |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 755 | struct resource *res, *res2; |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 756 | int ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 757 | ret = -ENXIO; |
| 758 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 759 | cmt->pdev = pdev; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 760 | |
| 761 | if (!cfg) { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 762 | dev_err(&cmt->pdev->dev, "missing platform data\n"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 763 | goto err0; |
| 764 | } |
| 765 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 766 | res = platform_get_resource(cmt->pdev, IORESOURCE_MEM, 0); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 767 | if (!res) { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 768 | dev_err(&cmt->pdev->dev, "failed to get I/O memory\n"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 769 | goto err0; |
| 770 | } |
| 771 | |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 772 | /* optional resource for the shared timer start/stop register */ |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 773 | res2 = platform_get_resource(cmt->pdev, IORESOURCE_MEM, 1); |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 774 | |
Laurent Pinchart | 36f1ac9 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 775 | /* map memory, let mapbase_ch point to our channel */ |
| 776 | cmt->mapbase_ch = ioremap_nocache(res->start, resource_size(res)); |
| 777 | if (cmt->mapbase_ch == NULL) { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 778 | dev_err(&cmt->pdev->dev, "failed to remap I/O memory\n"); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 779 | goto err0; |
| 780 | } |
| 781 | |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 782 | /* map second resource for CMSTR */ |
Laurent Pinchart | 36f1ac9 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 783 | cmt->mapbase = ioremap_nocache(res2 ? res2->start : |
| 784 | res->start - cfg->channel_offset, |
| 785 | res2 ? resource_size(res2) : 2); |
| 786 | if (cmt->mapbase == NULL) { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 787 | dev_err(&cmt->pdev->dev, "failed to remap I/O second memory\n"); |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 788 | goto err1; |
| 789 | } |
| 790 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 791 | /* get hold of clock */ |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 792 | cmt->clk = clk_get(&cmt->pdev->dev, "cmt_fck"); |
| 793 | if (IS_ERR(cmt->clk)) { |
| 794 | dev_err(&cmt->pdev->dev, "cannot get clock\n"); |
| 795 | ret = PTR_ERR(cmt->clk); |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 796 | goto err2; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 797 | } |
| 798 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 799 | ret = clk_prepare(cmt->clk); |
Laurent Pinchart | 57dee99 | 2013-12-14 15:07:32 +0900 | [diff] [blame] | 800 | if (ret < 0) |
| 801 | goto err3; |
| 802 | |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 803 | if (res2 && (resource_size(res2) == 4)) { |
| 804 | /* assume both CMSTR and CMCSR to be 32-bit */ |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 805 | cmt->read_control = sh_cmt_read32; |
| 806 | cmt->write_control = sh_cmt_write32; |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 807 | } else { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 808 | cmt->read_control = sh_cmt_read16; |
| 809 | cmt->write_control = sh_cmt_write16; |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 810 | } |
Magnus Damm | cccd704 | 2012-12-14 14:54:28 +0900 | [diff] [blame] | 811 | |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 812 | if (resource_size(res) == 6) { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 813 | cmt->width = 16; |
| 814 | cmt->read_count = sh_cmt_read16; |
| 815 | cmt->write_count = sh_cmt_write16; |
| 816 | cmt->overflow_bit = 0x80; |
| 817 | cmt->clear_bits = ~0x80; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 818 | } else { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 819 | cmt->width = 32; |
| 820 | cmt->read_count = sh_cmt_read32; |
| 821 | cmt->write_count = sh_cmt_write32; |
| 822 | cmt->overflow_bit = 0x8000; |
| 823 | cmt->clear_bits = ~0xc000; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 824 | } |
| 825 | |
Laurent Pinchart | f5ec9b1 | 2014-01-27 22:04:17 +0100 | [diff] [blame^] | 826 | cmt->channels = kzalloc(sizeof(*cmt->channels), GFP_KERNEL); |
| 827 | if (cmt->channels == NULL) { |
| 828 | ret = -ENOMEM; |
| 829 | goto err4; |
| 830 | } |
| 831 | |
| 832 | cmt->num_channels = 1; |
| 833 | |
| 834 | ret = sh_cmt_setup_channel(&cmt->channels[0], cfg->timer_bit, cmt); |
Laurent Pinchart | b882e7b | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 835 | if (ret < 0) |
Laurent Pinchart | 57dee99 | 2013-12-14 15:07:32 +0900 | [diff] [blame] | 836 | goto err4; |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 837 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 838 | platform_set_drvdata(pdev, cmt); |
Magnus Damm | adccc69 | 2012-12-14 14:53:51 +0900 | [diff] [blame] | 839 | |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 840 | return 0; |
Laurent Pinchart | 57dee99 | 2013-12-14 15:07:32 +0900 | [diff] [blame] | 841 | err4: |
Laurent Pinchart | f5ec9b1 | 2014-01-27 22:04:17 +0100 | [diff] [blame^] | 842 | kfree(cmt->channels); |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 843 | clk_unprepare(cmt->clk); |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 844 | err3: |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 845 | clk_put(cmt->clk); |
Magnus Damm | 8874c5e | 2013-06-17 15:40:52 +0900 | [diff] [blame] | 846 | err2: |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 847 | iounmap(cmt->mapbase); |
Laurent Pinchart | 36f1ac9 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 848 | err1: |
| 849 | iounmap(cmt->mapbase_ch); |
Paul Mundt | da64c2a | 2010-02-25 16:37:46 +0900 | [diff] [blame] | 850 | err0: |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 851 | return ret; |
| 852 | } |
| 853 | |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 854 | static int sh_cmt_probe(struct platform_device *pdev) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 855 | { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 856 | struct sh_cmt_device *cmt = platform_get_drvdata(pdev); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 857 | struct sh_timer_config *cfg = pdev->dev.platform_data; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 858 | int ret; |
| 859 | |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 860 | if (!is_early_platform_device(pdev)) { |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 861 | pm_runtime_set_active(&pdev->dev); |
| 862 | pm_runtime_enable(&pdev->dev); |
Rafael J. Wysocki | 9bb5ec8 | 2012-08-06 01:43:03 +0200 | [diff] [blame] | 863 | } |
Rafael J. Wysocki | 615a445 | 2012-03-13 22:40:06 +0100 | [diff] [blame] | 864 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 865 | if (cmt) { |
Paul Mundt | 214a607 | 2010-03-10 16:26:25 +0900 | [diff] [blame] | 866 | dev_info(&pdev->dev, "kept as earlytimer\n"); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 867 | goto out; |
Magnus Damm | e475eed | 2009-04-15 10:50:04 +0000 | [diff] [blame] | 868 | } |
| 869 | |
Laurent Pinchart | b262bc7 | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 870 | cmt = kzalloc(sizeof(*cmt), GFP_KERNEL); |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 871 | if (cmt == NULL) { |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 872 | dev_err(&pdev->dev, "failed to allocate driver data\n"); |
| 873 | return -ENOMEM; |
| 874 | } |
| 875 | |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 876 | ret = sh_cmt_setup(cmt, pdev); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 877 | if (ret) { |
Laurent Pinchart | 2653caf | 2014-01-27 22:04:17 +0100 | [diff] [blame] | 878 | kfree(cmt); |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 879 | pm_runtime_idle(&pdev->dev); |
| 880 | return ret; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 881 | } |
Rafael J. Wysocki | bad8138 | 2012-08-06 01:48:57 +0200 | [diff] [blame] | 882 | if (is_early_platform_device(pdev)) |
| 883 | return 0; |
| 884 | |
| 885 | out: |
| 886 | if (cfg->clockevent_rating || cfg->clocksource_rating) |
| 887 | pm_runtime_irq_safe(&pdev->dev); |
| 888 | else |
| 889 | pm_runtime_idle(&pdev->dev); |
| 890 | |
| 891 | return 0; |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 892 | } |
| 893 | |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 894 | static int sh_cmt_remove(struct platform_device *pdev) |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 895 | { |
| 896 | return -EBUSY; /* cannot unregister clockevent and clocksource */ |
| 897 | } |
| 898 | |
| 899 | static struct platform_driver sh_cmt_device_driver = { |
| 900 | .probe = sh_cmt_probe, |
Greg Kroah-Hartman | 1850514 | 2012-12-21 15:11:38 -0800 | [diff] [blame] | 901 | .remove = sh_cmt_remove, |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 902 | .driver = { |
| 903 | .name = "sh_cmt", |
| 904 | } |
| 905 | }; |
| 906 | |
| 907 | static int __init sh_cmt_init(void) |
| 908 | { |
| 909 | return platform_driver_register(&sh_cmt_device_driver); |
| 910 | } |
| 911 | |
| 912 | static void __exit sh_cmt_exit(void) |
| 913 | { |
| 914 | platform_driver_unregister(&sh_cmt_device_driver); |
| 915 | } |
| 916 | |
Magnus Damm | e475eed | 2009-04-15 10:50:04 +0000 | [diff] [blame] | 917 | early_platform_init("earlytimer", &sh_cmt_device_driver); |
Simon Horman | e903a03 | 2013-03-05 15:40:42 +0900 | [diff] [blame] | 918 | subsys_initcall(sh_cmt_init); |
Magnus Damm | 3fb1b6a | 2009-01-22 09:55:59 +0000 | [diff] [blame] | 919 | module_exit(sh_cmt_exit); |
| 920 | |
| 921 | MODULE_AUTHOR("Magnus Damm"); |
| 922 | MODULE_DESCRIPTION("SuperH CMT Timer Driver"); |
| 923 | MODULE_LICENSE("GPL v2"); |