Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 1 | /* |
| 2 | * TI Common Platform Time Sync |
| 3 | * |
| 4 | * Copyright (C) 2012 Richard Cochran <richardcochran@gmail.com> |
| 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, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | */ |
| 20 | #include <linux/err.h> |
| 21 | #include <linux/if.h> |
| 22 | #include <linux/hrtimer.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/net_tstamp.h> |
| 25 | #include <linux/ptp_classify.h> |
| 26 | #include <linux/time.h> |
| 27 | #include <linux/uaccess.h> |
| 28 | #include <linux/workqueue.h> |
Alexei Starovoitov | 79eb9d2 | 2014-04-01 18:26:48 -0700 | [diff] [blame] | 29 | #include <linux/if_ether.h> |
| 30 | #include <linux/if_vlan.h> |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 31 | |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 32 | #include "cpts.h" |
| 33 | |
Grygorii Strashko | 391fd6c | 2016-12-06 18:00:33 -0600 | [diff] [blame] | 34 | #define cpts_read32(c, r) readl_relaxed(&c->reg->r) |
| 35 | #define cpts_write32(c, v, r) writel_relaxed(v, &c->reg->r) |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 36 | |
| 37 | static int event_expired(struct cpts_event *event) |
| 38 | { |
| 39 | return time_after(jiffies, event->tmo); |
| 40 | } |
| 41 | |
| 42 | static int event_type(struct cpts_event *event) |
| 43 | { |
| 44 | return (event->high >> EVENT_TYPE_SHIFT) & EVENT_TYPE_MASK; |
| 45 | } |
| 46 | |
| 47 | static int cpts_fifo_pop(struct cpts *cpts, u32 *high, u32 *low) |
| 48 | { |
| 49 | u32 r = cpts_read32(cpts, intstat_raw); |
| 50 | |
| 51 | if (r & TS_PEND_RAW) { |
| 52 | *high = cpts_read32(cpts, event_high); |
| 53 | *low = cpts_read32(cpts, event_low); |
| 54 | cpts_write32(cpts, EVENT_POP, event_pop); |
| 55 | return 0; |
| 56 | } |
| 57 | return -1; |
| 58 | } |
| 59 | |
WingMan Kwok | e4439fa | 2016-12-06 18:00:39 -0600 | [diff] [blame^] | 60 | static int cpts_purge_events(struct cpts *cpts) |
| 61 | { |
| 62 | struct list_head *this, *next; |
| 63 | struct cpts_event *event; |
| 64 | int removed = 0; |
| 65 | |
| 66 | list_for_each_safe(this, next, &cpts->events) { |
| 67 | event = list_entry(this, struct cpts_event, list); |
| 68 | if (event_expired(event)) { |
| 69 | list_del_init(&event->list); |
| 70 | list_add(&event->list, &cpts->pool); |
| 71 | ++removed; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | if (removed) |
| 76 | pr_debug("cpts: event pool cleaned up %d\n", removed); |
| 77 | return removed ? 0 : -1; |
| 78 | } |
| 79 | |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 80 | /* |
| 81 | * Returns zero if matching event type was found. |
| 82 | */ |
| 83 | static int cpts_fifo_read(struct cpts *cpts, int match) |
| 84 | { |
| 85 | int i, type = -1; |
| 86 | u32 hi, lo; |
| 87 | struct cpts_event *event; |
| 88 | |
| 89 | for (i = 0; i < CPTS_FIFO_DEPTH; i++) { |
| 90 | if (cpts_fifo_pop(cpts, &hi, &lo)) |
| 91 | break; |
WingMan Kwok | e4439fa | 2016-12-06 18:00:39 -0600 | [diff] [blame^] | 92 | |
| 93 | if (list_empty(&cpts->pool) && cpts_purge_events(cpts)) { |
| 94 | pr_err("cpts: event pool empty\n"); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 95 | return -1; |
| 96 | } |
WingMan Kwok | e4439fa | 2016-12-06 18:00:39 -0600 | [diff] [blame^] | 97 | |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 98 | event = list_first_entry(&cpts->pool, struct cpts_event, list); |
| 99 | event->tmo = jiffies + 2; |
| 100 | event->high = hi; |
| 101 | event->low = lo; |
| 102 | type = event_type(event); |
| 103 | switch (type) { |
| 104 | case CPTS_EV_PUSH: |
| 105 | case CPTS_EV_RX: |
| 106 | case CPTS_EV_TX: |
| 107 | list_del_init(&event->list); |
| 108 | list_add_tail(&event->list, &cpts->events); |
| 109 | break; |
| 110 | case CPTS_EV_ROLL: |
| 111 | case CPTS_EV_HALF: |
| 112 | case CPTS_EV_HW: |
| 113 | break; |
| 114 | default: |
Masanari Iida | 07f4225 | 2013-03-20 11:00:34 +0900 | [diff] [blame] | 115 | pr_err("cpts: unknown event type\n"); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 116 | break; |
| 117 | } |
| 118 | if (type == match) |
| 119 | break; |
| 120 | } |
| 121 | return type == match ? 0 : -1; |
| 122 | } |
| 123 | |
| 124 | static cycle_t cpts_systim_read(const struct cyclecounter *cc) |
| 125 | { |
| 126 | u64 val = 0; |
| 127 | struct cpts_event *event; |
| 128 | struct list_head *this, *next; |
| 129 | struct cpts *cpts = container_of(cc, struct cpts, cc); |
| 130 | |
| 131 | cpts_write32(cpts, TS_PUSH, ts_push); |
| 132 | if (cpts_fifo_read(cpts, CPTS_EV_PUSH)) |
| 133 | pr_err("cpts: unable to obtain a time stamp\n"); |
| 134 | |
| 135 | list_for_each_safe(this, next, &cpts->events) { |
| 136 | event = list_entry(this, struct cpts_event, list); |
| 137 | if (event_type(event) == CPTS_EV_PUSH) { |
| 138 | list_del_init(&event->list); |
| 139 | list_add(&event->list, &cpts->pool); |
| 140 | val = event->low; |
| 141 | break; |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | return val; |
| 146 | } |
| 147 | |
| 148 | /* PTP clock operations */ |
| 149 | |
| 150 | static int cpts_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb) |
| 151 | { |
| 152 | u64 adj; |
| 153 | u32 diff, mult; |
| 154 | int neg_adj = 0; |
| 155 | unsigned long flags; |
| 156 | struct cpts *cpts = container_of(ptp, struct cpts, info); |
| 157 | |
| 158 | if (ppb < 0) { |
| 159 | neg_adj = 1; |
| 160 | ppb = -ppb; |
| 161 | } |
| 162 | mult = cpts->cc_mult; |
| 163 | adj = mult; |
| 164 | adj *= ppb; |
| 165 | diff = div_u64(adj, 1000000000ULL); |
| 166 | |
| 167 | spin_lock_irqsave(&cpts->lock, flags); |
| 168 | |
| 169 | timecounter_read(&cpts->tc); |
| 170 | |
| 171 | cpts->cc.mult = neg_adj ? mult - diff : mult + diff; |
| 172 | |
| 173 | spin_unlock_irqrestore(&cpts->lock, flags); |
| 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | static int cpts_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta) |
| 179 | { |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 180 | unsigned long flags; |
| 181 | struct cpts *cpts = container_of(ptp, struct cpts, info); |
| 182 | |
| 183 | spin_lock_irqsave(&cpts->lock, flags); |
Richard Cochran | f25a30b | 2014-12-21 19:47:05 +0100 | [diff] [blame] | 184 | timecounter_adjtime(&cpts->tc, delta); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 185 | spin_unlock_irqrestore(&cpts->lock, flags); |
| 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
Richard Cochran | a5c79c2 | 2015-03-29 23:12:08 +0200 | [diff] [blame] | 190 | static int cpts_ptp_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts) |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 191 | { |
| 192 | u64 ns; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 193 | unsigned long flags; |
| 194 | struct cpts *cpts = container_of(ptp, struct cpts, info); |
| 195 | |
| 196 | spin_lock_irqsave(&cpts->lock, flags); |
| 197 | ns = timecounter_read(&cpts->tc); |
| 198 | spin_unlock_irqrestore(&cpts->lock, flags); |
| 199 | |
Richard Cochran | 84d923c | 2015-03-31 23:08:16 +0200 | [diff] [blame] | 200 | *ts = ns_to_timespec64(ns); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 201 | |
| 202 | return 0; |
| 203 | } |
| 204 | |
| 205 | static int cpts_ptp_settime(struct ptp_clock_info *ptp, |
Richard Cochran | a5c79c2 | 2015-03-29 23:12:08 +0200 | [diff] [blame] | 206 | const struct timespec64 *ts) |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 207 | { |
| 208 | u64 ns; |
| 209 | unsigned long flags; |
| 210 | struct cpts *cpts = container_of(ptp, struct cpts, info); |
| 211 | |
Richard Cochran | 84d923c | 2015-03-31 23:08:16 +0200 | [diff] [blame] | 212 | ns = timespec64_to_ns(ts); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 213 | |
| 214 | spin_lock_irqsave(&cpts->lock, flags); |
| 215 | timecounter_init(&cpts->tc, &cpts->cc, ns); |
| 216 | spin_unlock_irqrestore(&cpts->lock, flags); |
| 217 | |
| 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | static int cpts_ptp_enable(struct ptp_clock_info *ptp, |
| 222 | struct ptp_clock_request *rq, int on) |
| 223 | { |
| 224 | return -EOPNOTSUPP; |
| 225 | } |
| 226 | |
| 227 | static struct ptp_clock_info cpts_info = { |
| 228 | .owner = THIS_MODULE, |
| 229 | .name = "CTPS timer", |
| 230 | .max_adj = 1000000, |
| 231 | .n_ext_ts = 0, |
Richard Cochran | 4986b4f0 | 2014-03-20 22:21:55 +0100 | [diff] [blame] | 232 | .n_pins = 0, |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 233 | .pps = 0, |
| 234 | .adjfreq = cpts_ptp_adjfreq, |
| 235 | .adjtime = cpts_ptp_adjtime, |
Richard Cochran | a5c79c2 | 2015-03-29 23:12:08 +0200 | [diff] [blame] | 236 | .gettime64 = cpts_ptp_gettime, |
| 237 | .settime64 = cpts_ptp_settime, |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 238 | .enable = cpts_ptp_enable, |
| 239 | }; |
| 240 | |
| 241 | static void cpts_overflow_check(struct work_struct *work) |
| 242 | { |
Richard Cochran | a5c79c2 | 2015-03-29 23:12:08 +0200 | [diff] [blame] | 243 | struct timespec64 ts; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 244 | struct cpts *cpts = container_of(work, struct cpts, overflow_work.work); |
| 245 | |
| 246 | cpts_write32(cpts, CPTS_EN, control); |
| 247 | cpts_write32(cpts, TS_PEND_EN, int_enable); |
| 248 | cpts_ptp_gettime(&cpts->info, &ts); |
Richard Cochran | a5c79c2 | 2015-03-29 23:12:08 +0200 | [diff] [blame] | 249 | pr_debug("cpts overflow check at %lld.%09lu\n", ts.tv_sec, ts.tv_nsec); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 250 | schedule_delayed_work(&cpts->overflow_work, CPTS_OVERFLOW_PERIOD); |
| 251 | } |
| 252 | |
George Cherian | d0415e7 | 2014-05-02 12:02:00 +0530 | [diff] [blame] | 253 | static void cpts_clk_init(struct device *dev, struct cpts *cpts) |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 254 | { |
Grygorii Strashko | fd123a9 | 2016-12-06 18:00:36 -0600 | [diff] [blame] | 255 | if (!cpts->refclk) { |
| 256 | cpts->refclk = devm_clk_get(dev, "cpts"); |
| 257 | if (IS_ERR(cpts->refclk)) { |
| 258 | dev_err(dev, "Failed to get cpts refclk\n"); |
| 259 | cpts->refclk = NULL; |
| 260 | return; |
| 261 | } |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 262 | } |
Richard Cochran | ccb6e98 | 2012-12-23 21:19:10 +0000 | [diff] [blame] | 263 | clk_prepare_enable(cpts->refclk); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | static void cpts_clk_release(struct cpts *cpts) |
| 267 | { |
Grygorii Strashko | fd123a9 | 2016-12-06 18:00:36 -0600 | [diff] [blame] | 268 | clk_disable_unprepare(cpts->refclk); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | static int cpts_match(struct sk_buff *skb, unsigned int ptp_class, |
| 272 | u16 ts_seqid, u8 ts_msgtype) |
| 273 | { |
| 274 | u16 *seqid; |
Stefan Sørensen | ae5c6c6 | 2014-06-27 11:59:10 +0200 | [diff] [blame] | 275 | unsigned int offset = 0; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 276 | u8 *msgtype, *data = skb->data; |
| 277 | |
Stefan Sørensen | ae5c6c6 | 2014-06-27 11:59:10 +0200 | [diff] [blame] | 278 | if (ptp_class & PTP_CLASS_VLAN) |
| 279 | offset += VLAN_HLEN; |
| 280 | |
| 281 | switch (ptp_class & PTP_CLASS_PMASK) { |
| 282 | case PTP_CLASS_IPV4: |
Richard Cochran | cca04b2 | 2014-11-12 11:33:52 +0100 | [diff] [blame] | 283 | offset += ETH_HLEN + IPV4_HLEN(data + offset) + UDP_HLEN; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 284 | break; |
Stefan Sørensen | ae5c6c6 | 2014-06-27 11:59:10 +0200 | [diff] [blame] | 285 | case PTP_CLASS_IPV6: |
| 286 | offset += ETH_HLEN + IP6_HLEN + UDP_HLEN; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 287 | break; |
Stefan Sørensen | ae5c6c6 | 2014-06-27 11:59:10 +0200 | [diff] [blame] | 288 | case PTP_CLASS_L2: |
| 289 | offset += ETH_HLEN; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 290 | break; |
| 291 | default: |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | if (skb->len + ETH_HLEN < offset + OFF_PTP_SEQUENCE_ID + sizeof(*seqid)) |
| 296 | return 0; |
| 297 | |
| 298 | if (unlikely(ptp_class & PTP_CLASS_V1)) |
| 299 | msgtype = data + offset + OFF_PTP_CONTROL; |
| 300 | else |
| 301 | msgtype = data + offset; |
| 302 | |
| 303 | seqid = (u16 *)(data + offset + OFF_PTP_SEQUENCE_ID); |
| 304 | |
| 305 | return (ts_msgtype == (*msgtype & 0xf) && ts_seqid == ntohs(*seqid)); |
| 306 | } |
| 307 | |
| 308 | static u64 cpts_find_ts(struct cpts *cpts, struct sk_buff *skb, int ev_type) |
| 309 | { |
| 310 | u64 ns = 0; |
| 311 | struct cpts_event *event; |
| 312 | struct list_head *this, *next; |
Daniel Borkmann | 164d8c6 | 2014-03-28 18:58:22 +0100 | [diff] [blame] | 313 | unsigned int class = ptp_classify_raw(skb); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 314 | unsigned long flags; |
| 315 | u16 seqid; |
| 316 | u8 mtype; |
| 317 | |
| 318 | if (class == PTP_CLASS_NONE) |
| 319 | return 0; |
| 320 | |
| 321 | spin_lock_irqsave(&cpts->lock, flags); |
| 322 | cpts_fifo_read(cpts, CPTS_EV_PUSH); |
| 323 | list_for_each_safe(this, next, &cpts->events) { |
| 324 | event = list_entry(this, struct cpts_event, list); |
| 325 | if (event_expired(event)) { |
| 326 | list_del_init(&event->list); |
| 327 | list_add(&event->list, &cpts->pool); |
| 328 | continue; |
| 329 | } |
| 330 | mtype = (event->high >> MESSAGE_TYPE_SHIFT) & MESSAGE_TYPE_MASK; |
| 331 | seqid = (event->high >> SEQUENCE_ID_SHIFT) & SEQUENCE_ID_MASK; |
| 332 | if (ev_type == event_type(event) && |
| 333 | cpts_match(skb, class, seqid, mtype)) { |
| 334 | ns = timecounter_cyc2time(&cpts->tc, event->low); |
| 335 | list_del_init(&event->list); |
| 336 | list_add(&event->list, &cpts->pool); |
| 337 | break; |
| 338 | } |
| 339 | } |
| 340 | spin_unlock_irqrestore(&cpts->lock, flags); |
| 341 | |
| 342 | return ns; |
| 343 | } |
| 344 | |
| 345 | void cpts_rx_timestamp(struct cpts *cpts, struct sk_buff *skb) |
| 346 | { |
| 347 | u64 ns; |
| 348 | struct skb_shared_hwtstamps *ssh; |
| 349 | |
| 350 | if (!cpts->rx_enable) |
| 351 | return; |
| 352 | ns = cpts_find_ts(cpts, skb, CPTS_EV_RX); |
| 353 | if (!ns) |
| 354 | return; |
| 355 | ssh = skb_hwtstamps(skb); |
| 356 | memset(ssh, 0, sizeof(*ssh)); |
| 357 | ssh->hwtstamp = ns_to_ktime(ns); |
| 358 | } |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 359 | EXPORT_SYMBOL_GPL(cpts_rx_timestamp); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 360 | |
| 361 | void cpts_tx_timestamp(struct cpts *cpts, struct sk_buff *skb) |
| 362 | { |
| 363 | u64 ns; |
| 364 | struct skb_shared_hwtstamps ssh; |
| 365 | |
| 366 | if (!(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) |
| 367 | return; |
| 368 | ns = cpts_find_ts(cpts, skb, CPTS_EV_TX); |
| 369 | if (!ns) |
| 370 | return; |
| 371 | memset(&ssh, 0, sizeof(ssh)); |
| 372 | ssh.hwtstamp = ns_to_ktime(ns); |
| 373 | skb_tstamp_tx(skb, &ssh); |
| 374 | } |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 375 | EXPORT_SYMBOL_GPL(cpts_tx_timestamp); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 376 | |
| 377 | int cpts_register(struct device *dev, struct cpts *cpts, |
| 378 | u32 mult, u32 shift) |
| 379 | { |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 380 | int err, i; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 381 | |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 382 | cpts->info = cpts_info; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 383 | spin_lock_init(&cpts->lock); |
| 384 | |
| 385 | cpts->cc.read = cpts_systim_read; |
| 386 | cpts->cc.mask = CLOCKSOURCE_MASK(32); |
| 387 | cpts->cc_mult = mult; |
| 388 | cpts->cc.mult = mult; |
| 389 | cpts->cc.shift = shift; |
| 390 | |
| 391 | INIT_LIST_HEAD(&cpts->events); |
| 392 | INIT_LIST_HEAD(&cpts->pool); |
| 393 | for (i = 0; i < CPTS_MAX_EVENTS; i++) |
| 394 | list_add(&cpts->pool_data[i].list, &cpts->pool); |
| 395 | |
George Cherian | d0415e7 | 2014-05-02 12:02:00 +0530 | [diff] [blame] | 396 | cpts_clk_init(dev, cpts); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 397 | cpts_write32(cpts, CPTS_EN, control); |
| 398 | cpts_write32(cpts, TS_PEND_EN, int_enable); |
| 399 | |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 400 | timecounter_init(&cpts->tc, &cpts->cc, ktime_to_ns(ktime_get_real())); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 401 | |
| 402 | INIT_DELAYED_WORK(&cpts->overflow_work, cpts_overflow_check); |
Grygorii Strashko | 6c69140 | 2016-12-06 18:00:37 -0600 | [diff] [blame] | 403 | |
| 404 | cpts->clock = ptp_clock_register(&cpts->info, dev); |
| 405 | if (IS_ERR(cpts->clock)) { |
| 406 | err = PTR_ERR(cpts->clock); |
| 407 | cpts->clock = NULL; |
| 408 | goto err_ptp; |
| 409 | } |
| 410 | cpts->phc_index = ptp_clock_index(cpts->clock); |
| 411 | |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 412 | schedule_delayed_work(&cpts->overflow_work, CPTS_OVERFLOW_PERIOD); |
| 413 | |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 414 | return 0; |
Grygorii Strashko | 6c69140 | 2016-12-06 18:00:37 -0600 | [diff] [blame] | 415 | |
| 416 | err_ptp: |
| 417 | if (cpts->refclk) |
| 418 | cpts_clk_release(cpts); |
| 419 | return err; |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 420 | } |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 421 | EXPORT_SYMBOL_GPL(cpts_register); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 422 | |
| 423 | void cpts_unregister(struct cpts *cpts) |
| 424 | { |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 425 | if (cpts->clock) { |
| 426 | ptp_clock_unregister(cpts->clock); |
| 427 | cancel_delayed_work_sync(&cpts->overflow_work); |
| 428 | } |
Grygorii Strashko | 8fcd689 | 2016-12-06 18:00:38 -0600 | [diff] [blame] | 429 | |
| 430 | cpts_write32(cpts, 0, int_enable); |
| 431 | cpts_write32(cpts, 0, control); |
| 432 | |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 433 | if (cpts->refclk) |
| 434 | cpts_clk_release(cpts); |
Richard Cochran | 87c0e76 | 2012-10-29 08:45:16 +0000 | [diff] [blame] | 435 | } |
Grygorii Strashko | c8395d4 | 2016-12-06 18:00:34 -0600 | [diff] [blame] | 436 | EXPORT_SYMBOL_GPL(cpts_unregister); |
| 437 | |
| 438 | MODULE_LICENSE("GPL v2"); |
| 439 | MODULE_DESCRIPTION("TI CPTS driver"); |
| 440 | MODULE_AUTHOR("Richard Cochran <richardcochran@gmail.com>"); |