blob: f99937905bda8f81e58f9abd470be37fac6e7f6e [file] [log] [blame]
Richard Cochrancb646e22011-04-22 12:04:55 +02001/*
2 * Driver for the National Semiconductor DP83640 PHYTER
3 *
4 * Copyright (C) 2010 OMICRON electronics GmbH
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., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20#include <linux/ethtool.h>
21#include <linux/kernel.h>
22#include <linux/list.h>
23#include <linux/mii.h>
24#include <linux/module.h>
25#include <linux/net_tstamp.h>
26#include <linux/netdevice.h>
27#include <linux/phy.h>
28#include <linux/ptp_classify.h>
29#include <linux/ptp_clock_kernel.h>
30
31#include "dp83640_reg.h"
32
33#define DP83640_PHY_ID 0x20005ce1
34#define PAGESEL 0x13
35#define LAYER4 0x02
36#define LAYER2 0x01
Richard Cochran80288372011-08-06 21:03:04 +000037#define MAX_RXTS 64
Richard Cochran49b3fd42011-09-20 01:43:14 +000038#define N_EXT_TS 6
Richard Cochrancb646e22011-04-22 12:04:55 +020039#define PSF_PTPVER 2
40#define PSF_EVNT 0x4000
41#define PSF_RX 0x2000
42#define PSF_TX 0x1000
43#define EXT_EVENT 1
Richard Cochran49b3fd42011-09-20 01:43:14 +000044#define CAL_EVENT 7
45#define CAL_TRIGGER 7
46#define PER_TRIGGER 6
Richard Cochrancb646e22011-04-22 12:04:55 +020047
48/* phyter seems to miss the mark by 16 ns */
49#define ADJTIME_FIX 16
50
51#if defined(__BIG_ENDIAN)
52#define ENDIAN_FLAG 0
53#elif defined(__LITTLE_ENDIAN)
54#define ENDIAN_FLAG PSF_ENDIAN
55#endif
56
57#define SKB_PTP_TYPE(__skb) (*(unsigned int *)((__skb)->cb))
58
59struct phy_rxts {
60 u16 ns_lo; /* ns[15:0] */
61 u16 ns_hi; /* overflow[1:0], ns[29:16] */
62 u16 sec_lo; /* sec[15:0] */
63 u16 sec_hi; /* sec[31:16] */
64 u16 seqid; /* sequenceId[15:0] */
65 u16 msgtype; /* messageType[3:0], hash[11:0] */
66};
67
68struct phy_txts {
69 u16 ns_lo; /* ns[15:0] */
70 u16 ns_hi; /* overflow[1:0], ns[29:16] */
71 u16 sec_lo; /* sec[15:0] */
72 u16 sec_hi; /* sec[31:16] */
73};
74
75struct rxts {
76 struct list_head list;
77 unsigned long tmo;
78 u64 ns;
79 u16 seqid;
80 u8 msgtype;
81 u16 hash;
82};
83
84struct dp83640_clock;
85
86struct dp83640_private {
87 struct list_head list;
88 struct dp83640_clock *clock;
89 struct phy_device *phydev;
90 struct work_struct ts_work;
91 int hwts_tx_en;
92 int hwts_rx_en;
93 int layer;
94 int version;
95 /* remember state of cfg0 during calibration */
96 int cfg0;
97 /* remember the last event time stamp */
98 struct phy_txts edata;
99 /* list of rx timestamps */
100 struct list_head rxts;
101 struct list_head rxpool;
102 struct rxts rx_pool_data[MAX_RXTS];
103 /* protects above three fields from concurrent access */
104 spinlock_t rx_lock;
105 /* queues of incoming and outgoing packets */
106 struct sk_buff_head rx_queue;
107 struct sk_buff_head tx_queue;
108};
109
110struct dp83640_clock {
111 /* keeps the instance in the 'phyter_clocks' list */
112 struct list_head list;
113 /* we create one clock instance per MII bus */
114 struct mii_bus *bus;
115 /* protects extended registers from concurrent access */
116 struct mutex extreg_lock;
117 /* remembers which page was last selected */
118 int page;
119 /* our advertised capabilities */
120 struct ptp_clock_info caps;
121 /* protects the three fields below from concurrent access */
122 struct mutex clock_lock;
123 /* the one phyter from which we shall read */
124 struct dp83640_private *chosen;
125 /* list of the other attached phyters, not chosen */
126 struct list_head phylist;
127 /* reference to our PTP hardware clock */
128 struct ptp_clock *ptp_clock;
129};
130
131/* globals */
132
Richard Cochran49b3fd42011-09-20 01:43:14 +0000133enum {
134 CALIBRATE_GPIO,
135 PEROUT_GPIO,
136 EXTTS0_GPIO,
137 EXTTS1_GPIO,
138 EXTTS2_GPIO,
139 EXTTS3_GPIO,
140 EXTTS4_GPIO,
141 EXTTS5_GPIO,
142 GPIO_TABLE_SIZE
143};
144
Richard Cochrancb646e22011-04-22 12:04:55 +0200145static int chosen_phy = -1;
Richard Cochran49b3fd42011-09-20 01:43:14 +0000146static ushort gpio_tab[GPIO_TABLE_SIZE] = {
147 1, 2, 3, 4, 8, 9, 10, 11
148};
Richard Cochrancb646e22011-04-22 12:04:55 +0200149
150module_param(chosen_phy, int, 0444);
Richard Cochran49b3fd42011-09-20 01:43:14 +0000151module_param_array(gpio_tab, ushort, NULL, 0444);
Richard Cochrancb646e22011-04-22 12:04:55 +0200152
153MODULE_PARM_DESC(chosen_phy, \
154 "The address of the PHY to use for the ancillary clock features");
Richard Cochran49b3fd42011-09-20 01:43:14 +0000155MODULE_PARM_DESC(gpio_tab, \
156 "Which GPIO line to use for which purpose: cal,perout,extts1,...,extts6");
Richard Cochrancb646e22011-04-22 12:04:55 +0200157
158/* a list of clocks and a mutex to protect it */
159static LIST_HEAD(phyter_clocks);
160static DEFINE_MUTEX(phyter_clocks_lock);
161
162static void rx_timestamp_work(struct work_struct *work);
163
164/* extended register access functions */
165
166#define BROADCAST_ADDR 31
167
168static inline int broadcast_write(struct mii_bus *bus, u32 regnum, u16 val)
169{
170 return mdiobus_write(bus, BROADCAST_ADDR, regnum, val);
171}
172
173/* Caller must hold extreg_lock. */
174static int ext_read(struct phy_device *phydev, int page, u32 regnum)
175{
176 struct dp83640_private *dp83640 = phydev->priv;
177 int val;
178
179 if (dp83640->clock->page != page) {
180 broadcast_write(phydev->bus, PAGESEL, page);
181 dp83640->clock->page = page;
182 }
183 val = phy_read(phydev, regnum);
184
185 return val;
186}
187
188/* Caller must hold extreg_lock. */
189static void ext_write(int broadcast, struct phy_device *phydev,
190 int page, u32 regnum, u16 val)
191{
192 struct dp83640_private *dp83640 = phydev->priv;
193
194 if (dp83640->clock->page != page) {
195 broadcast_write(phydev->bus, PAGESEL, page);
196 dp83640->clock->page = page;
197 }
198 if (broadcast)
199 broadcast_write(phydev->bus, regnum, val);
200 else
201 phy_write(phydev, regnum, val);
202}
203
204/* Caller must hold extreg_lock. */
205static int tdr_write(int bc, struct phy_device *dev,
206 const struct timespec *ts, u16 cmd)
207{
208 ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_nsec & 0xffff);/* ns[15:0] */
209 ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_nsec >> 16); /* ns[31:16] */
210 ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_sec & 0xffff); /* sec[15:0] */
211 ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_sec >> 16); /* sec[31:16]*/
212
213 ext_write(bc, dev, PAGE4, PTP_CTL, cmd);
214
215 return 0;
216}
217
218/* convert phy timestamps into driver timestamps */
219
220static void phy2rxts(struct phy_rxts *p, struct rxts *rxts)
221{
222 u32 sec;
223
224 sec = p->sec_lo;
225 sec |= p->sec_hi << 16;
226
227 rxts->ns = p->ns_lo;
228 rxts->ns |= (p->ns_hi & 0x3fff) << 16;
229 rxts->ns += ((u64)sec) * 1000000000ULL;
230 rxts->seqid = p->seqid;
231 rxts->msgtype = (p->msgtype >> 12) & 0xf;
232 rxts->hash = p->msgtype & 0x0fff;
Richard Cochran80288372011-08-06 21:03:04 +0000233 rxts->tmo = jiffies + 2;
Richard Cochrancb646e22011-04-22 12:04:55 +0200234}
235
236static u64 phy2txts(struct phy_txts *p)
237{
238 u64 ns;
239 u32 sec;
240
241 sec = p->sec_lo;
242 sec |= p->sec_hi << 16;
243
244 ns = p->ns_lo;
245 ns |= (p->ns_hi & 0x3fff) << 16;
246 ns += ((u64)sec) * 1000000000ULL;
247
248 return ns;
249}
250
Richard Cochran49b3fd42011-09-20 01:43:14 +0000251static void periodic_output(struct dp83640_clock *clock,
252 struct ptp_clock_request *clkreq, bool on)
253{
254 struct dp83640_private *dp83640 = clock->chosen;
255 struct phy_device *phydev = dp83640->phydev;
256 u32 sec, nsec, period;
257 u16 gpio, ptp_trig, trigger, val;
258
259 gpio = on ? gpio_tab[PEROUT_GPIO] : 0;
260 trigger = PER_TRIGGER;
261
262 ptp_trig = TRIG_WR |
263 (trigger & TRIG_CSEL_MASK) << TRIG_CSEL_SHIFT |
264 (gpio & TRIG_GPIO_MASK) << TRIG_GPIO_SHIFT |
265 TRIG_PER |
266 TRIG_PULSE;
267
268 val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT;
269
270 if (!on) {
271 val |= TRIG_DIS;
272 mutex_lock(&clock->extreg_lock);
273 ext_write(0, phydev, PAGE5, PTP_TRIG, ptp_trig);
274 ext_write(0, phydev, PAGE4, PTP_CTL, val);
275 mutex_unlock(&clock->extreg_lock);
276 return;
277 }
278
279 sec = clkreq->perout.start.sec;
280 nsec = clkreq->perout.start.nsec;
281 period = clkreq->perout.period.sec * 1000000000UL;
282 period += clkreq->perout.period.nsec;
283
284 mutex_lock(&clock->extreg_lock);
285
286 ext_write(0, phydev, PAGE5, PTP_TRIG, ptp_trig);
287
288 /*load trigger*/
289 val |= TRIG_LOAD;
290 ext_write(0, phydev, PAGE4, PTP_CTL, val);
291 ext_write(0, phydev, PAGE4, PTP_TDR, nsec & 0xffff); /* ns[15:0] */
292 ext_write(0, phydev, PAGE4, PTP_TDR, nsec >> 16); /* ns[31:16] */
293 ext_write(0, phydev, PAGE4, PTP_TDR, sec & 0xffff); /* sec[15:0] */
294 ext_write(0, phydev, PAGE4, PTP_TDR, sec >> 16); /* sec[31:16] */
295 ext_write(0, phydev, PAGE4, PTP_TDR, period & 0xffff); /* ns[15:0] */
296 ext_write(0, phydev, PAGE4, PTP_TDR, period >> 16); /* ns[31:16] */
297
298 /*enable trigger*/
299 val &= ~TRIG_LOAD;
300 val |= TRIG_EN;
301 ext_write(0, phydev, PAGE4, PTP_CTL, val);
302
303 mutex_unlock(&clock->extreg_lock);
304}
305
Richard Cochrancb646e22011-04-22 12:04:55 +0200306/* ptp clock methods */
307
308static int ptp_dp83640_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
309{
310 struct dp83640_clock *clock =
311 container_of(ptp, struct dp83640_clock, caps);
312 struct phy_device *phydev = clock->chosen->phydev;
313 u64 rate;
314 int neg_adj = 0;
315 u16 hi, lo;
316
317 if (ppb < 0) {
318 neg_adj = 1;
319 ppb = -ppb;
320 }
321 rate = ppb;
322 rate <<= 26;
323 rate = div_u64(rate, 1953125);
324
325 hi = (rate >> 16) & PTP_RATE_HI_MASK;
326 if (neg_adj)
327 hi |= PTP_RATE_DIR;
328
329 lo = rate & 0xffff;
330
331 mutex_lock(&clock->extreg_lock);
332
333 ext_write(1, phydev, PAGE4, PTP_RATEH, hi);
334 ext_write(1, phydev, PAGE4, PTP_RATEL, lo);
335
336 mutex_unlock(&clock->extreg_lock);
337
338 return 0;
339}
340
341static int ptp_dp83640_adjtime(struct ptp_clock_info *ptp, s64 delta)
342{
343 struct dp83640_clock *clock =
344 container_of(ptp, struct dp83640_clock, caps);
345 struct phy_device *phydev = clock->chosen->phydev;
346 struct timespec ts;
347 int err;
348
349 delta += ADJTIME_FIX;
350
351 ts = ns_to_timespec(delta);
352
353 mutex_lock(&clock->extreg_lock);
354
355 err = tdr_write(1, phydev, &ts, PTP_STEP_CLK);
356
357 mutex_unlock(&clock->extreg_lock);
358
359 return err;
360}
361
362static int ptp_dp83640_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
363{
364 struct dp83640_clock *clock =
365 container_of(ptp, struct dp83640_clock, caps);
366 struct phy_device *phydev = clock->chosen->phydev;
367 unsigned int val[4];
368
369 mutex_lock(&clock->extreg_lock);
370
371 ext_write(0, phydev, PAGE4, PTP_CTL, PTP_RD_CLK);
372
373 val[0] = ext_read(phydev, PAGE4, PTP_TDR); /* ns[15:0] */
374 val[1] = ext_read(phydev, PAGE4, PTP_TDR); /* ns[31:16] */
375 val[2] = ext_read(phydev, PAGE4, PTP_TDR); /* sec[15:0] */
376 val[3] = ext_read(phydev, PAGE4, PTP_TDR); /* sec[31:16] */
377
378 mutex_unlock(&clock->extreg_lock);
379
380 ts->tv_nsec = val[0] | (val[1] << 16);
381 ts->tv_sec = val[2] | (val[3] << 16);
382
383 return 0;
384}
385
386static int ptp_dp83640_settime(struct ptp_clock_info *ptp,
387 const struct timespec *ts)
388{
389 struct dp83640_clock *clock =
390 container_of(ptp, struct dp83640_clock, caps);
391 struct phy_device *phydev = clock->chosen->phydev;
392 int err;
393
394 mutex_lock(&clock->extreg_lock);
395
396 err = tdr_write(1, phydev, ts, PTP_LOAD_CLK);
397
398 mutex_unlock(&clock->extreg_lock);
399
400 return err;
401}
402
403static int ptp_dp83640_enable(struct ptp_clock_info *ptp,
404 struct ptp_clock_request *rq, int on)
405{
406 struct dp83640_clock *clock =
407 container_of(ptp, struct dp83640_clock, caps);
408 struct phy_device *phydev = clock->chosen->phydev;
Richard Cochran49b3fd42011-09-20 01:43:14 +0000409 int index;
410 u16 evnt, event_num, gpio_num;
Richard Cochrancb646e22011-04-22 12:04:55 +0200411
412 switch (rq->type) {
413 case PTP_CLK_REQ_EXTTS:
Richard Cochran49b3fd42011-09-20 01:43:14 +0000414 index = rq->extts.index;
415 if (index < 0 || index >= N_EXT_TS)
Richard Cochrancb646e22011-04-22 12:04:55 +0200416 return -EINVAL;
Richard Cochran49b3fd42011-09-20 01:43:14 +0000417 event_num = EXT_EVENT + index;
418 evnt = EVNT_WR | (event_num & EVNT_SEL_MASK) << EVNT_SEL_SHIFT;
Richard Cochrancb646e22011-04-22 12:04:55 +0200419 if (on) {
Richard Cochran49b3fd42011-09-20 01:43:14 +0000420 gpio_num = gpio_tab[EXTTS0_GPIO + index];
421 evnt |= (gpio_num & EVNT_GPIO_MASK) << EVNT_GPIO_SHIFT;
Richard Cochrancb646e22011-04-22 12:04:55 +0200422 evnt |= EVNT_RISE;
423 }
424 ext_write(0, phydev, PAGE5, PTP_EVNT, evnt);
425 return 0;
Richard Cochran49b3fd42011-09-20 01:43:14 +0000426
427 case PTP_CLK_REQ_PEROUT:
428 if (rq->perout.index != 0)
429 return -EINVAL;
430 periodic_output(clock, rq, on);
431 return 0;
432
Richard Cochrancb646e22011-04-22 12:04:55 +0200433 default:
434 break;
435 }
436
437 return -EOPNOTSUPP;
438}
439
440static u8 status_frame_dst[6] = { 0x01, 0x1B, 0x19, 0x00, 0x00, 0x00 };
441static u8 status_frame_src[6] = { 0x08, 0x00, 0x17, 0x0B, 0x6B, 0x0F };
442
443static void enable_status_frames(struct phy_device *phydev, bool on)
444{
445 u16 cfg0 = 0, ver;
446
447 if (on)
448 cfg0 = PSF_EVNT_EN | PSF_RXTS_EN | PSF_TXTS_EN | ENDIAN_FLAG;
449
450 ver = (PSF_PTPVER & VERSIONPTP_MASK) << VERSIONPTP_SHIFT;
451
452 ext_write(0, phydev, PAGE5, PSF_CFG0, cfg0);
453 ext_write(0, phydev, PAGE6, PSF_CFG1, ver);
454
455 if (!phydev->attached_dev) {
456 pr_warning("dp83640: expected to find an attached netdevice\n");
457 return;
458 }
459
460 if (on) {
461 if (dev_mc_add(phydev->attached_dev, status_frame_dst))
462 pr_warning("dp83640: failed to add mc address\n");
463 } else {
464 if (dev_mc_del(phydev->attached_dev, status_frame_dst))
465 pr_warning("dp83640: failed to delete mc address\n");
466 }
467}
468
469static bool is_status_frame(struct sk_buff *skb, int type)
470{
471 struct ethhdr *h = eth_hdr(skb);
472
473 if (PTP_CLASS_V2_L2 == type &&
474 !memcmp(h->h_source, status_frame_src, sizeof(status_frame_src)))
475 return true;
476 else
477 return false;
478}
479
480static int expired(struct rxts *rxts)
481{
482 return time_after(jiffies, rxts->tmo);
483}
484
485/* Caller must hold rx_lock. */
486static void prune_rx_ts(struct dp83640_private *dp83640)
487{
488 struct list_head *this, *next;
489 struct rxts *rxts;
490
491 list_for_each_safe(this, next, &dp83640->rxts) {
492 rxts = list_entry(this, struct rxts, list);
493 if (expired(rxts)) {
494 list_del_init(&rxts->list);
495 list_add(&rxts->list, &dp83640->rxpool);
496 }
497 }
498}
499
500/* synchronize the phyters so they act as one clock */
501
502static void enable_broadcast(struct phy_device *phydev, int init_page, int on)
503{
504 int val;
505 phy_write(phydev, PAGESEL, 0);
506 val = phy_read(phydev, PHYCR2);
507 if (on)
508 val |= BC_WRITE;
509 else
510 val &= ~BC_WRITE;
511 phy_write(phydev, PHYCR2, val);
512 phy_write(phydev, PAGESEL, init_page);
513}
514
515static void recalibrate(struct dp83640_clock *clock)
516{
517 s64 now, diff;
518 struct phy_txts event_ts;
519 struct timespec ts;
520 struct list_head *this;
521 struct dp83640_private *tmp;
522 struct phy_device *master = clock->chosen->phydev;
Richard Cochran49b3fd42011-09-20 01:43:14 +0000523 u16 cal_gpio, cfg0, evnt, ptp_trig, trigger, val;
Richard Cochrancb646e22011-04-22 12:04:55 +0200524
525 trigger = CAL_TRIGGER;
Richard Cochran49b3fd42011-09-20 01:43:14 +0000526 cal_gpio = gpio_tab[CALIBRATE_GPIO];
Richard Cochrancb646e22011-04-22 12:04:55 +0200527
528 mutex_lock(&clock->extreg_lock);
529
530 /*
531 * enable broadcast, disable status frames, enable ptp clock
532 */
533 list_for_each(this, &clock->phylist) {
534 tmp = list_entry(this, struct dp83640_private, list);
535 enable_broadcast(tmp->phydev, clock->page, 1);
536 tmp->cfg0 = ext_read(tmp->phydev, PAGE5, PSF_CFG0);
537 ext_write(0, tmp->phydev, PAGE5, PSF_CFG0, 0);
538 ext_write(0, tmp->phydev, PAGE4, PTP_CTL, PTP_ENABLE);
539 }
540 enable_broadcast(master, clock->page, 1);
541 cfg0 = ext_read(master, PAGE5, PSF_CFG0);
542 ext_write(0, master, PAGE5, PSF_CFG0, 0);
543 ext_write(0, master, PAGE4, PTP_CTL, PTP_ENABLE);
544
545 /*
546 * enable an event timestamp
547 */
548 evnt = EVNT_WR | EVNT_RISE | EVNT_SINGLE;
549 evnt |= (CAL_EVENT & EVNT_SEL_MASK) << EVNT_SEL_SHIFT;
550 evnt |= (cal_gpio & EVNT_GPIO_MASK) << EVNT_GPIO_SHIFT;
551
552 list_for_each(this, &clock->phylist) {
553 tmp = list_entry(this, struct dp83640_private, list);
554 ext_write(0, tmp->phydev, PAGE5, PTP_EVNT, evnt);
555 }
556 ext_write(0, master, PAGE5, PTP_EVNT, evnt);
557
558 /*
559 * configure a trigger
560 */
561 ptp_trig = TRIG_WR | TRIG_IF_LATE | TRIG_PULSE;
562 ptp_trig |= (trigger & TRIG_CSEL_MASK) << TRIG_CSEL_SHIFT;
563 ptp_trig |= (cal_gpio & TRIG_GPIO_MASK) << TRIG_GPIO_SHIFT;
564 ext_write(0, master, PAGE5, PTP_TRIG, ptp_trig);
565
566 /* load trigger */
567 val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT;
568 val |= TRIG_LOAD;
569 ext_write(0, master, PAGE4, PTP_CTL, val);
570
571 /* enable trigger */
572 val &= ~TRIG_LOAD;
573 val |= TRIG_EN;
574 ext_write(0, master, PAGE4, PTP_CTL, val);
575
576 /* disable trigger */
577 val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT;
578 val |= TRIG_DIS;
579 ext_write(0, master, PAGE4, PTP_CTL, val);
580
581 /*
582 * read out and correct offsets
583 */
584 val = ext_read(master, PAGE4, PTP_STS);
585 pr_info("master PTP_STS 0x%04hx", val);
586 val = ext_read(master, PAGE4, PTP_ESTS);
587 pr_info("master PTP_ESTS 0x%04hx", val);
588 event_ts.ns_lo = ext_read(master, PAGE4, PTP_EDATA);
589 event_ts.ns_hi = ext_read(master, PAGE4, PTP_EDATA);
590 event_ts.sec_lo = ext_read(master, PAGE4, PTP_EDATA);
591 event_ts.sec_hi = ext_read(master, PAGE4, PTP_EDATA);
592 now = phy2txts(&event_ts);
593
594 list_for_each(this, &clock->phylist) {
595 tmp = list_entry(this, struct dp83640_private, list);
596 val = ext_read(tmp->phydev, PAGE4, PTP_STS);
597 pr_info("slave PTP_STS 0x%04hx", val);
598 val = ext_read(tmp->phydev, PAGE4, PTP_ESTS);
599 pr_info("slave PTP_ESTS 0x%04hx", val);
600 event_ts.ns_lo = ext_read(tmp->phydev, PAGE4, PTP_EDATA);
601 event_ts.ns_hi = ext_read(tmp->phydev, PAGE4, PTP_EDATA);
602 event_ts.sec_lo = ext_read(tmp->phydev, PAGE4, PTP_EDATA);
603 event_ts.sec_hi = ext_read(tmp->phydev, PAGE4, PTP_EDATA);
604 diff = now - (s64) phy2txts(&event_ts);
605 pr_info("slave offset %lld nanoseconds\n", diff);
606 diff += ADJTIME_FIX;
607 ts = ns_to_timespec(diff);
608 tdr_write(0, tmp->phydev, &ts, PTP_STEP_CLK);
609 }
610
611 /*
612 * restore status frames
613 */
614 list_for_each(this, &clock->phylist) {
615 tmp = list_entry(this, struct dp83640_private, list);
616 ext_write(0, tmp->phydev, PAGE5, PSF_CFG0, tmp->cfg0);
617 }
618 ext_write(0, master, PAGE5, PSF_CFG0, cfg0);
619
620 mutex_unlock(&clock->extreg_lock);
621}
622
623/* time stamping methods */
624
Richard Cochran49b3fd42011-09-20 01:43:14 +0000625static inline u16 exts_chan_to_edata(int ch)
626{
627 return 1 << ((ch + EXT_EVENT) * 2);
628}
629
Richard Cochran23310382011-06-14 23:55:19 +0000630static int decode_evnt(struct dp83640_private *dp83640,
631 void *data, u16 ests)
Richard Cochrancb646e22011-04-22 12:04:55 +0200632{
Richard Cochran23310382011-06-14 23:55:19 +0000633 struct phy_txts *phy_txts;
Richard Cochrancb646e22011-04-22 12:04:55 +0200634 struct ptp_clock_event event;
Richard Cochran49b3fd42011-09-20 01:43:14 +0000635 int i, parsed;
Richard Cochrancb646e22011-04-22 12:04:55 +0200636 int words = (ests >> EVNT_TS_LEN_SHIFT) & EVNT_TS_LEN_MASK;
Richard Cochran23310382011-06-14 23:55:19 +0000637 u16 ext_status = 0;
638
639 if (ests & MULT_EVNT) {
640 ext_status = *(u16 *) data;
641 data += sizeof(ext_status);
642 }
643
644 phy_txts = data;
Richard Cochrancb646e22011-04-22 12:04:55 +0200645
646 switch (words) { /* fall through in every case */
647 case 3:
648 dp83640->edata.sec_hi = phy_txts->sec_hi;
649 case 2:
650 dp83640->edata.sec_lo = phy_txts->sec_lo;
651 case 1:
652 dp83640->edata.ns_hi = phy_txts->ns_hi;
653 case 0:
654 dp83640->edata.ns_lo = phy_txts->ns_lo;
655 }
656
Richard Cochran49b3fd42011-09-20 01:43:14 +0000657 if (ext_status) {
658 parsed = words + 2;
659 } else {
660 parsed = words + 1;
661 i = ((ests >> EVNT_NUM_SHIFT) & EVNT_NUM_MASK) - EXT_EVENT;
662 ext_status = exts_chan_to_edata(i);
663 }
664
Richard Cochrancb646e22011-04-22 12:04:55 +0200665 event.type = PTP_CLOCK_EXTTS;
Richard Cochrancb646e22011-04-22 12:04:55 +0200666 event.timestamp = phy2txts(&dp83640->edata);
667
Richard Cochran49b3fd42011-09-20 01:43:14 +0000668 for (i = 0; i < N_EXT_TS; i++) {
669 if (ext_status & exts_chan_to_edata(i)) {
670 event.index = i;
671 ptp_clock_event(dp83640->clock->ptp_clock, &event);
672 }
673 }
Richard Cochran23310382011-06-14 23:55:19 +0000674
Richard Cochran49b3fd42011-09-20 01:43:14 +0000675 return parsed * sizeof(u16);
Richard Cochrancb646e22011-04-22 12:04:55 +0200676}
677
678static void decode_rxts(struct dp83640_private *dp83640,
679 struct phy_rxts *phy_rxts)
680{
681 struct rxts *rxts;
682 unsigned long flags;
683
684 spin_lock_irqsave(&dp83640->rx_lock, flags);
685
686 prune_rx_ts(dp83640);
687
688 if (list_empty(&dp83640->rxpool)) {
689 pr_warning("dp83640: rx timestamp pool is empty\n");
690 goto out;
691 }
692 rxts = list_first_entry(&dp83640->rxpool, struct rxts, list);
693 list_del_init(&rxts->list);
694 phy2rxts(phy_rxts, rxts);
695 list_add_tail(&rxts->list, &dp83640->rxts);
696out:
697 spin_unlock_irqrestore(&dp83640->rx_lock, flags);
698}
699
700static void decode_txts(struct dp83640_private *dp83640,
701 struct phy_txts *phy_txts)
702{
703 struct skb_shared_hwtstamps shhwtstamps;
704 struct sk_buff *skb;
705 u64 ns;
706
707 /* We must already have the skb that triggered this. */
708
709 skb = skb_dequeue(&dp83640->tx_queue);
710
711 if (!skb) {
712 pr_warning("dp83640: have timestamp but tx_queue empty\n");
713 return;
714 }
715 ns = phy2txts(phy_txts);
716 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
717 shhwtstamps.hwtstamp = ns_to_ktime(ns);
718 skb_complete_tx_timestamp(skb, &shhwtstamps);
719}
720
721static void decode_status_frame(struct dp83640_private *dp83640,
722 struct sk_buff *skb)
723{
724 struct phy_rxts *phy_rxts;
725 struct phy_txts *phy_txts;
726 u8 *ptr;
727 int len, size;
728 u16 ests, type;
729
730 ptr = skb->data + 2;
731
732 for (len = skb_headlen(skb) - 2; len > sizeof(type); len -= size) {
733
734 type = *(u16 *)ptr;
735 ests = type & 0x0fff;
736 type = type & 0xf000;
737 len -= sizeof(type);
738 ptr += sizeof(type);
739
740 if (PSF_RX == type && len >= sizeof(*phy_rxts)) {
741
742 phy_rxts = (struct phy_rxts *) ptr;
743 decode_rxts(dp83640, phy_rxts);
744 size = sizeof(*phy_rxts);
745
746 } else if (PSF_TX == type && len >= sizeof(*phy_txts)) {
747
748 phy_txts = (struct phy_txts *) ptr;
749 decode_txts(dp83640, phy_txts);
750 size = sizeof(*phy_txts);
751
752 } else if (PSF_EVNT == type && len >= sizeof(*phy_txts)) {
753
Richard Cochran23310382011-06-14 23:55:19 +0000754 size = decode_evnt(dp83640, ptr, ests);
Richard Cochrancb646e22011-04-22 12:04:55 +0200755
756 } else {
757 size = 0;
758 break;
759 }
760 ptr += size;
761 }
762}
763
764static int match(struct sk_buff *skb, unsigned int type, struct rxts *rxts)
765{
766 u16 *seqid;
767 unsigned int offset;
768 u8 *msgtype, *data = skb_mac_header(skb);
769
770 /* check sequenceID, messageType, 12 bit hash of offset 20-29 */
771
772 switch (type) {
773 case PTP_CLASS_V1_IPV4:
774 case PTP_CLASS_V2_IPV4:
775 offset = ETH_HLEN + IPV4_HLEN(data) + UDP_HLEN;
776 break;
777 case PTP_CLASS_V1_IPV6:
778 case PTP_CLASS_V2_IPV6:
779 offset = OFF_PTP6;
780 break;
781 case PTP_CLASS_V2_L2:
782 offset = ETH_HLEN;
783 break;
784 case PTP_CLASS_V2_VLAN:
785 offset = ETH_HLEN + VLAN_HLEN;
786 break;
787 default:
788 return 0;
789 }
790
791 if (skb->len + ETH_HLEN < offset + OFF_PTP_SEQUENCE_ID + sizeof(*seqid))
792 return 0;
793
794 if (unlikely(type & PTP_CLASS_V1))
795 msgtype = data + offset + OFF_PTP_CONTROL;
796 else
797 msgtype = data + offset;
798
799 seqid = (u16 *)(data + offset + OFF_PTP_SEQUENCE_ID);
800
801 return (rxts->msgtype == (*msgtype & 0xf) &&
802 rxts->seqid == ntohs(*seqid));
803}
804
805static void dp83640_free_clocks(void)
806{
807 struct dp83640_clock *clock;
808 struct list_head *this, *next;
809
810 mutex_lock(&phyter_clocks_lock);
811
812 list_for_each_safe(this, next, &phyter_clocks) {
813 clock = list_entry(this, struct dp83640_clock, list);
814 if (!list_empty(&clock->phylist)) {
815 pr_warning("phy list non-empty while unloading");
816 BUG();
817 }
818 list_del(&clock->list);
819 mutex_destroy(&clock->extreg_lock);
820 mutex_destroy(&clock->clock_lock);
821 put_device(&clock->bus->dev);
822 kfree(clock);
823 }
824
825 mutex_unlock(&phyter_clocks_lock);
826}
827
828static void dp83640_clock_init(struct dp83640_clock *clock, struct mii_bus *bus)
829{
830 INIT_LIST_HEAD(&clock->list);
831 clock->bus = bus;
832 mutex_init(&clock->extreg_lock);
833 mutex_init(&clock->clock_lock);
834 INIT_LIST_HEAD(&clock->phylist);
835 clock->caps.owner = THIS_MODULE;
836 sprintf(clock->caps.name, "dp83640 timer");
837 clock->caps.max_adj = 1953124;
838 clock->caps.n_alarm = 0;
839 clock->caps.n_ext_ts = N_EXT_TS;
Richard Cochran49b3fd42011-09-20 01:43:14 +0000840 clock->caps.n_per_out = 1;
Richard Cochrancb646e22011-04-22 12:04:55 +0200841 clock->caps.pps = 0;
842 clock->caps.adjfreq = ptp_dp83640_adjfreq;
843 clock->caps.adjtime = ptp_dp83640_adjtime;
844 clock->caps.gettime = ptp_dp83640_gettime;
845 clock->caps.settime = ptp_dp83640_settime;
846 clock->caps.enable = ptp_dp83640_enable;
847 /*
848 * Get a reference to this bus instance.
849 */
850 get_device(&bus->dev);
851}
852
853static int choose_this_phy(struct dp83640_clock *clock,
854 struct phy_device *phydev)
855{
856 if (chosen_phy == -1 && !clock->chosen)
857 return 1;
858
859 if (chosen_phy == phydev->addr)
860 return 1;
861
862 return 0;
863}
864
865static struct dp83640_clock *dp83640_clock_get(struct dp83640_clock *clock)
866{
867 if (clock)
868 mutex_lock(&clock->clock_lock);
869 return clock;
870}
871
872/*
873 * Look up and lock a clock by bus instance.
874 * If there is no clock for this bus, then create it first.
875 */
876static struct dp83640_clock *dp83640_clock_get_bus(struct mii_bus *bus)
877{
878 struct dp83640_clock *clock = NULL, *tmp;
879 struct list_head *this;
880
881 mutex_lock(&phyter_clocks_lock);
882
883 list_for_each(this, &phyter_clocks) {
884 tmp = list_entry(this, struct dp83640_clock, list);
885 if (tmp->bus == bus) {
886 clock = tmp;
887 break;
888 }
889 }
890 if (clock)
891 goto out;
892
893 clock = kzalloc(sizeof(struct dp83640_clock), GFP_KERNEL);
894 if (!clock)
895 goto out;
896
897 dp83640_clock_init(clock, bus);
898 list_add_tail(&phyter_clocks, &clock->list);
899out:
900 mutex_unlock(&phyter_clocks_lock);
901
902 return dp83640_clock_get(clock);
903}
904
905static void dp83640_clock_put(struct dp83640_clock *clock)
906{
907 mutex_unlock(&clock->clock_lock);
908}
909
910static int dp83640_probe(struct phy_device *phydev)
911{
912 struct dp83640_clock *clock;
913 struct dp83640_private *dp83640;
914 int err = -ENOMEM, i;
915
916 if (phydev->addr == BROADCAST_ADDR)
917 return 0;
918
919 clock = dp83640_clock_get_bus(phydev->bus);
920 if (!clock)
921 goto no_clock;
922
923 dp83640 = kzalloc(sizeof(struct dp83640_private), GFP_KERNEL);
924 if (!dp83640)
925 goto no_memory;
926
927 dp83640->phydev = phydev;
928 INIT_WORK(&dp83640->ts_work, rx_timestamp_work);
929
930 INIT_LIST_HEAD(&dp83640->rxts);
931 INIT_LIST_HEAD(&dp83640->rxpool);
932 for (i = 0; i < MAX_RXTS; i++)
933 list_add(&dp83640->rx_pool_data[i].list, &dp83640->rxpool);
934
935 phydev->priv = dp83640;
936
937 spin_lock_init(&dp83640->rx_lock);
938 skb_queue_head_init(&dp83640->rx_queue);
939 skb_queue_head_init(&dp83640->tx_queue);
940
941 dp83640->clock = clock;
942
943 if (choose_this_phy(clock, phydev)) {
944 clock->chosen = dp83640;
945 clock->ptp_clock = ptp_clock_register(&clock->caps);
946 if (IS_ERR(clock->ptp_clock)) {
947 err = PTR_ERR(clock->ptp_clock);
948 goto no_register;
949 }
950 } else
951 list_add_tail(&dp83640->list, &clock->phylist);
952
953 if (clock->chosen && !list_empty(&clock->phylist))
954 recalibrate(clock);
955 else
956 enable_broadcast(dp83640->phydev, clock->page, 1);
957
958 dp83640_clock_put(clock);
959 return 0;
960
961no_register:
962 clock->chosen = NULL;
963 kfree(dp83640);
964no_memory:
965 dp83640_clock_put(clock);
966no_clock:
967 return err;
968}
969
970static void dp83640_remove(struct phy_device *phydev)
971{
972 struct dp83640_clock *clock;
973 struct list_head *this, *next;
974 struct dp83640_private *tmp, *dp83640 = phydev->priv;
975
976 if (phydev->addr == BROADCAST_ADDR)
977 return;
978
979 enable_status_frames(phydev, false);
980 cancel_work_sync(&dp83640->ts_work);
981
982 clock = dp83640_clock_get(dp83640->clock);
983
984 if (dp83640 == clock->chosen) {
985 ptp_clock_unregister(clock->ptp_clock);
986 clock->chosen = NULL;
987 } else {
988 list_for_each_safe(this, next, &clock->phylist) {
989 tmp = list_entry(this, struct dp83640_private, list);
990 if (tmp == dp83640) {
991 list_del_init(&tmp->list);
992 break;
993 }
994 }
995 }
996
997 dp83640_clock_put(clock);
998 kfree(dp83640);
999}
1000
1001static int dp83640_hwtstamp(struct phy_device *phydev, struct ifreq *ifr)
1002{
1003 struct dp83640_private *dp83640 = phydev->priv;
1004 struct hwtstamp_config cfg;
1005 u16 txcfg0, rxcfg0;
1006
1007 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1008 return -EFAULT;
1009
1010 if (cfg.flags) /* reserved for future extensions */
1011 return -EINVAL;
1012
1013 switch (cfg.tx_type) {
1014 case HWTSTAMP_TX_OFF:
1015 dp83640->hwts_tx_en = 0;
1016 break;
1017 case HWTSTAMP_TX_ON:
1018 dp83640->hwts_tx_en = 1;
1019 break;
1020 default:
1021 return -ERANGE;
1022 }
1023
1024 switch (cfg.rx_filter) {
1025 case HWTSTAMP_FILTER_NONE:
1026 dp83640->hwts_rx_en = 0;
1027 dp83640->layer = 0;
1028 dp83640->version = 0;
1029 break;
1030 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1031 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1032 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1033 dp83640->hwts_rx_en = 1;
1034 dp83640->layer = LAYER4;
1035 dp83640->version = 1;
1036 break;
1037 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1038 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1039 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1040 dp83640->hwts_rx_en = 1;
1041 dp83640->layer = LAYER4;
1042 dp83640->version = 2;
1043 break;
1044 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1045 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1046 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1047 dp83640->hwts_rx_en = 1;
1048 dp83640->layer = LAYER2;
1049 dp83640->version = 2;
1050 break;
1051 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1052 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1053 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1054 dp83640->hwts_rx_en = 1;
1055 dp83640->layer = LAYER4|LAYER2;
1056 dp83640->version = 2;
1057 break;
1058 default:
1059 return -ERANGE;
1060 }
1061
1062 txcfg0 = (dp83640->version & TX_PTP_VER_MASK) << TX_PTP_VER_SHIFT;
1063 rxcfg0 = (dp83640->version & TX_PTP_VER_MASK) << TX_PTP_VER_SHIFT;
1064
1065 if (dp83640->layer & LAYER2) {
1066 txcfg0 |= TX_L2_EN;
1067 rxcfg0 |= RX_L2_EN;
1068 }
1069 if (dp83640->layer & LAYER4) {
1070 txcfg0 |= TX_IPV6_EN | TX_IPV4_EN;
1071 rxcfg0 |= RX_IPV6_EN | RX_IPV4_EN;
1072 }
1073
1074 if (dp83640->hwts_tx_en)
1075 txcfg0 |= TX_TS_EN;
1076
1077 if (dp83640->hwts_rx_en)
1078 rxcfg0 |= RX_TS_EN;
1079
1080 mutex_lock(&dp83640->clock->extreg_lock);
1081
1082 if (dp83640->hwts_tx_en || dp83640->hwts_rx_en) {
1083 enable_status_frames(phydev, true);
1084 ext_write(0, phydev, PAGE4, PTP_CTL, PTP_ENABLE);
1085 }
1086
1087 ext_write(0, phydev, PAGE5, PTP_TXCFG0, txcfg0);
1088 ext_write(0, phydev, PAGE5, PTP_RXCFG0, rxcfg0);
1089
1090 mutex_unlock(&dp83640->clock->extreg_lock);
1091
1092 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1093}
1094
1095static void rx_timestamp_work(struct work_struct *work)
1096{
1097 struct dp83640_private *dp83640 =
1098 container_of(work, struct dp83640_private, ts_work);
1099 struct list_head *this, *next;
1100 struct rxts *rxts;
1101 struct skb_shared_hwtstamps *shhwtstamps;
1102 struct sk_buff *skb;
1103 unsigned int type;
1104 unsigned long flags;
1105
1106 /* Deliver each deferred packet, with or without a time stamp. */
1107
1108 while ((skb = skb_dequeue(&dp83640->rx_queue)) != NULL) {
1109 type = SKB_PTP_TYPE(skb);
1110 spin_lock_irqsave(&dp83640->rx_lock, flags);
1111 list_for_each_safe(this, next, &dp83640->rxts) {
1112 rxts = list_entry(this, struct rxts, list);
1113 if (match(skb, type, rxts)) {
1114 shhwtstamps = skb_hwtstamps(skb);
1115 memset(shhwtstamps, 0, sizeof(*shhwtstamps));
1116 shhwtstamps->hwtstamp = ns_to_ktime(rxts->ns);
1117 list_del_init(&rxts->list);
1118 list_add(&rxts->list, &dp83640->rxpool);
1119 break;
1120 }
1121 }
1122 spin_unlock_irqrestore(&dp83640->rx_lock, flags);
1123 netif_rx(skb);
1124 }
1125
1126 /* Clear out expired time stamps. */
1127
1128 spin_lock_irqsave(&dp83640->rx_lock, flags);
1129 prune_rx_ts(dp83640);
1130 spin_unlock_irqrestore(&dp83640->rx_lock, flags);
1131}
1132
1133static bool dp83640_rxtstamp(struct phy_device *phydev,
1134 struct sk_buff *skb, int type)
1135{
1136 struct dp83640_private *dp83640 = phydev->priv;
1137
1138 if (!dp83640->hwts_rx_en)
1139 return false;
1140
1141 if (is_status_frame(skb, type)) {
1142 decode_status_frame(dp83640, skb);
Richard Cochranae6e86b2011-06-14 23:55:20 +00001143 kfree_skb(skb);
1144 return true;
Richard Cochrancb646e22011-04-22 12:04:55 +02001145 }
1146
1147 SKB_PTP_TYPE(skb) = type;
1148 skb_queue_tail(&dp83640->rx_queue, skb);
1149 schedule_work(&dp83640->ts_work);
1150
1151 return true;
1152}
1153
1154static void dp83640_txtstamp(struct phy_device *phydev,
1155 struct sk_buff *skb, int type)
1156{
1157 struct dp83640_private *dp83640 = phydev->priv;
1158
1159 if (!dp83640->hwts_tx_en) {
1160 kfree_skb(skb);
1161 return;
1162 }
1163 skb_queue_tail(&dp83640->tx_queue, skb);
1164 schedule_work(&dp83640->ts_work);
1165}
1166
1167static struct phy_driver dp83640_driver = {
1168 .phy_id = DP83640_PHY_ID,
1169 .phy_id_mask = 0xfffffff0,
1170 .name = "NatSemi DP83640",
1171 .features = PHY_BASIC_FEATURES,
1172 .flags = 0,
1173 .probe = dp83640_probe,
1174 .remove = dp83640_remove,
1175 .config_aneg = genphy_config_aneg,
1176 .read_status = genphy_read_status,
1177 .hwtstamp = dp83640_hwtstamp,
1178 .rxtstamp = dp83640_rxtstamp,
1179 .txtstamp = dp83640_txtstamp,
1180 .driver = {.owner = THIS_MODULE,}
1181};
1182
1183static int __init dp83640_init(void)
1184{
1185 return phy_driver_register(&dp83640_driver);
1186}
1187
1188static void __exit dp83640_exit(void)
1189{
1190 dp83640_free_clocks();
1191 phy_driver_unregister(&dp83640_driver);
1192}
1193
1194MODULE_DESCRIPTION("National Semiconductor DP83640 PHY driver");
1195MODULE_AUTHOR("Richard Cochran <richard.cochran@omicron.at>");
1196MODULE_LICENSE("GPL");
1197
1198module_init(dp83640_init);
1199module_exit(dp83640_exit);
1200
John Stultz86ff9baa2011-05-23 13:32:11 -07001201static struct mdio_device_id __maybe_unused dp83640_tbl[] = {
Richard Cochrancb646e22011-04-22 12:04:55 +02001202 { DP83640_PHY_ID, 0xfffffff0 },
1203 { }
1204};
1205
1206MODULE_DEVICE_TABLE(mdio, dp83640_tbl);