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