blob: d20fc8ed11f1574a2ae0fa4649be23fe204e1308 [file] [log] [blame]
Jeff Kirsherb980ac12013-02-23 07:29:56 +00001/* PTP Hardware Clock (PHC) driver for the Intel 82576 and 82580
Richard Cochrand339b132012-03-16 10:55:32 +00002 *
3 * Copyright (C) 2011 Richard Cochran <richardcochran@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
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 *
Carolyn Wyborny74cfb2e2014-02-25 17:58:57 -080015 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, see <http://www.gnu.org/licenses/>.
Richard Cochrand339b132012-03-16 10:55:32 +000017 */
18#include <linux/module.h>
19#include <linux/device.h>
20#include <linux/pci.h>
Matthew Vickba598142012-12-13 07:20:36 +000021#include <linux/ptp_classify.h>
Richard Cochrand339b132012-03-16 10:55:32 +000022
23#include "igb.h"
24
25#define INCVALUE_MASK 0x7fffffff
26#define ISGN 0x80000000
27
Jeff Kirsherb980ac12013-02-23 07:29:56 +000028/* The 82580 timesync updates the system timer every 8ns by 8ns,
Richard Cochran7ebae812012-03-16 10:55:37 +000029 * and this update value cannot be reprogrammed.
30 *
Richard Cochrand339b132012-03-16 10:55:32 +000031 * Neither the 82576 nor the 82580 offer registers wide enough to hold
32 * nanoseconds time values for very long. For the 82580, SYSTIM always
33 * counts nanoseconds, but the upper 24 bits are not availible. The
34 * frequency is adjusted by changing the 32 bit fractional nanoseconds
35 * register, TIMINCA.
36 *
37 * For the 82576, the SYSTIM register time unit is affect by the
38 * choice of the 24 bit TININCA:IV (incvalue) field. Five bits of this
39 * field are needed to provide the nominal 16 nanosecond period,
40 * leaving 19 bits for fractional nanoseconds.
41 *
Richard Cochran7ebae812012-03-16 10:55:37 +000042 * We scale the NIC clock cycle by a large factor so that relatively
43 * small clock corrections can be added or subtracted at each clock
44 * tick. The drawbacks of a large factor are a) that the clock
45 * register overflows more quickly (not such a big deal) and b) that
46 * the increment per tick has to fit into 24 bits. As a result we
47 * need to use a shift of 19 so we can fit a value of 16 into the
48 * TIMINCA register.
49 *
Richard Cochrand339b132012-03-16 10:55:32 +000050 *
51 * SYSTIMH SYSTIML
52 * +--------------+ +---+---+------+
53 * 82576 | 32 | | 8 | 5 | 19 |
54 * +--------------+ +---+---+------+
55 * \________ 45 bits _______/ fract
56 *
57 * +----------+---+ +--------------+
58 * 82580 | 24 | 8 | | 32 |
59 * +----------+---+ +--------------+
60 * reserved \______ 40 bits _____/
61 *
62 *
63 * The 45 bit 82576 SYSTIM overflows every
64 * 2^45 * 10^-9 / 3600 = 9.77 hours.
65 *
66 * The 40 bit 82580 SYSTIM overflows every
67 * 2^40 * 10^-9 / 60 = 18.3 minutes.
68 */
69
Matthew Vicka79f4f82012-08-10 05:40:44 +000070#define IGB_SYSTIM_OVERFLOW_PERIOD (HZ * 60 * 9)
Matthew Vick428f1f72012-12-13 07:20:34 +000071#define IGB_PTP_TX_TIMEOUT (HZ * 15)
Matthew Vicka79f4f82012-08-10 05:40:44 +000072#define INCPERIOD_82576 (1 << E1000_TIMINCA_16NS_SHIFT)
73#define INCVALUE_82576_MASK ((1 << E1000_TIMINCA_16NS_SHIFT) - 1)
74#define INCVALUE_82576 (16 << IGB_82576_TSYNC_SHIFT)
75#define IGB_NBITS_82580 40
Richard Cochrand339b132012-03-16 10:55:32 +000076
Jeff Kirsher167f3f72014-02-25 17:58:56 -080077static void igb_ptp_tx_hwtstamp(struct igb_adapter *adapter);
78
Jeff Kirsherb980ac12013-02-23 07:29:56 +000079/* SYSTIM read access for the 82576 */
Matthew Vicka79f4f82012-08-10 05:40:44 +000080static cycle_t igb_ptp_read_82576(const struct cyclecounter *cc)
Richard Cochrand339b132012-03-16 10:55:32 +000081{
Richard Cochrand339b132012-03-16 10:55:32 +000082 struct igb_adapter *igb = container_of(cc, struct igb_adapter, cc);
83 struct e1000_hw *hw = &igb->hw;
Matthew Vicka79f4f82012-08-10 05:40:44 +000084 u64 val;
85 u32 lo, hi;
Richard Cochrand339b132012-03-16 10:55:32 +000086
87 lo = rd32(E1000_SYSTIML);
88 hi = rd32(E1000_SYSTIMH);
89
90 val = ((u64) hi) << 32;
91 val |= lo;
92
93 return val;
94}
95
Jeff Kirsherb980ac12013-02-23 07:29:56 +000096/* SYSTIM read access for the 82580 */
Matthew Vicka79f4f82012-08-10 05:40:44 +000097static cycle_t igb_ptp_read_82580(const struct cyclecounter *cc)
Richard Cochrand339b132012-03-16 10:55:32 +000098{
Richard Cochrand339b132012-03-16 10:55:32 +000099 struct igb_adapter *igb = container_of(cc, struct igb_adapter, cc);
100 struct e1000_hw *hw = &igb->hw;
Akeem G Abodunrine5c33702013-06-06 01:31:09 +0000101 u32 lo, hi;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000102 u64 val;
Richard Cochrand339b132012-03-16 10:55:32 +0000103
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000104 /* The timestamp latches on lowest register read. For the 82580
Richard Cochran7ebae812012-03-16 10:55:37 +0000105 * the lowest register is SYSTIMR instead of SYSTIML. However we only
106 * need to provide nanosecond resolution, so we just ignore it.
107 */
Akeem G Abodunrine5c33702013-06-06 01:31:09 +0000108 rd32(E1000_SYSTIMR);
Richard Cochrand339b132012-03-16 10:55:32 +0000109 lo = rd32(E1000_SYSTIML);
110 hi = rd32(E1000_SYSTIMH);
111
112 val = ((u64) hi) << 32;
113 val |= lo;
114
115 return val;
116}
117
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000118/* SYSTIM read access for I210/I211 */
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000119static void igb_ptp_read_i210(struct igb_adapter *adapter, struct timespec *ts)
120{
121 struct e1000_hw *hw = &adapter->hw;
Akeem G Abodunrine5c33702013-06-06 01:31:09 +0000122 u32 sec, nsec;
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000123
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000124 /* The timestamp latches on lowest register read. For I210/I211, the
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000125 * lowest register is SYSTIMR. Since we only need to provide nanosecond
126 * resolution, we can ignore it.
127 */
Akeem G Abodunrine5c33702013-06-06 01:31:09 +0000128 rd32(E1000_SYSTIMR);
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000129 nsec = rd32(E1000_SYSTIML);
130 sec = rd32(E1000_SYSTIMH);
131
132 ts->tv_sec = sec;
133 ts->tv_nsec = nsec;
134}
135
136static void igb_ptp_write_i210(struct igb_adapter *adapter,
137 const struct timespec *ts)
138{
139 struct e1000_hw *hw = &adapter->hw;
140
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000141 /* Writing the SYSTIMR register is not necessary as it only provides
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000142 * sub-nanosecond resolution.
143 */
144 wr32(E1000_SYSTIML, ts->tv_nsec);
145 wr32(E1000_SYSTIMH, ts->tv_sec);
146}
147
Matthew Vicka79f4f82012-08-10 05:40:44 +0000148/**
149 * igb_ptp_systim_to_hwtstamp - convert system time value to hw timestamp
150 * @adapter: board private structure
151 * @hwtstamps: timestamp structure to update
152 * @systim: unsigned 64bit system time value.
153 *
154 * We need to convert the system time value stored in the RX/TXSTMP registers
155 * into a hwtstamp which can be used by the upper level timestamping functions.
156 *
157 * The 'tmreg_lock' spinlock is used to protect the consistency of the
158 * system time value. This is needed because reading the 64 bit time
159 * value involves reading two (or three) 32 bit registers. The first
160 * read latches the value. Ditto for writing.
161 *
162 * In addition, here have extended the system time with an overflow
163 * counter in software.
164 **/
165static void igb_ptp_systim_to_hwtstamp(struct igb_adapter *adapter,
166 struct skb_shared_hwtstamps *hwtstamps,
167 u64 systim)
168{
169 unsigned long flags;
170 u64 ns;
171
172 switch (adapter->hw.mac.type) {
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000173 case e1000_82576:
174 case e1000_82580:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +0000175 case e1000_i354:
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000176 case e1000_i350:
177 spin_lock_irqsave(&adapter->tmreg_lock, flags);
178
179 ns = timecounter_cyc2time(&adapter->tc, systim);
180
181 spin_unlock_irqrestore(&adapter->tmreg_lock, flags);
182
183 memset(hwtstamps, 0, sizeof(*hwtstamps));
184 hwtstamps->hwtstamp = ns_to_ktime(ns);
185 break;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000186 case e1000_i210:
187 case e1000_i211:
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000188 memset(hwtstamps, 0, sizeof(*hwtstamps));
189 /* Upper 32 bits contain s, lower 32 bits contain ns. */
190 hwtstamps->hwtstamp = ktime_set(systim >> 32,
191 systim & 0xFFFFFFFF);
Matthew Vicka79f4f82012-08-10 05:40:44 +0000192 break;
193 default:
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000194 break;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000195 }
Matthew Vicka79f4f82012-08-10 05:40:44 +0000196}
197
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000198/* PTP clock operations */
Matthew Vicka79f4f82012-08-10 05:40:44 +0000199static int igb_ptp_adjfreq_82576(struct ptp_clock_info *ptp, s32 ppb)
Richard Cochrand339b132012-03-16 10:55:32 +0000200{
Matthew Vicka79f4f82012-08-10 05:40:44 +0000201 struct igb_adapter *igb = container_of(ptp, struct igb_adapter,
202 ptp_caps);
203 struct e1000_hw *hw = &igb->hw;
204 int neg_adj = 0;
Richard Cochrand339b132012-03-16 10:55:32 +0000205 u64 rate;
206 u32 incvalue;
Richard Cochrand339b132012-03-16 10:55:32 +0000207
208 if (ppb < 0) {
209 neg_adj = 1;
210 ppb = -ppb;
211 }
212 rate = ppb;
213 rate <<= 14;
214 rate = div_u64(rate, 1953125);
215
216 incvalue = 16 << IGB_82576_TSYNC_SHIFT;
217
218 if (neg_adj)
219 incvalue -= rate;
220 else
221 incvalue += rate;
222
223 wr32(E1000_TIMINCA, INCPERIOD_82576 | (incvalue & INCVALUE_82576_MASK));
224
225 return 0;
226}
227
Matthew Vicka79f4f82012-08-10 05:40:44 +0000228static int igb_ptp_adjfreq_82580(struct ptp_clock_info *ptp, s32 ppb)
Richard Cochrand339b132012-03-16 10:55:32 +0000229{
Matthew Vicka79f4f82012-08-10 05:40:44 +0000230 struct igb_adapter *igb = container_of(ptp, struct igb_adapter,
231 ptp_caps);
232 struct e1000_hw *hw = &igb->hw;
233 int neg_adj = 0;
Richard Cochrand339b132012-03-16 10:55:32 +0000234 u64 rate;
235 u32 inca;
Richard Cochrand339b132012-03-16 10:55:32 +0000236
237 if (ppb < 0) {
238 neg_adj = 1;
239 ppb = -ppb;
240 }
241 rate = ppb;
242 rate <<= 26;
243 rate = div_u64(rate, 1953125);
244
245 inca = rate & INCVALUE_MASK;
246 if (neg_adj)
247 inca |= ISGN;
248
249 wr32(E1000_TIMINCA, inca);
250
251 return 0;
252}
253
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000254static int igb_ptp_adjtime_82576(struct ptp_clock_info *ptp, s64 delta)
Richard Cochrand339b132012-03-16 10:55:32 +0000255{
Matthew Vicka79f4f82012-08-10 05:40:44 +0000256 struct igb_adapter *igb = container_of(ptp, struct igb_adapter,
257 ptp_caps);
Richard Cochrand339b132012-03-16 10:55:32 +0000258 unsigned long flags;
Richard Cochrand339b132012-03-16 10:55:32 +0000259
260 spin_lock_irqsave(&igb->tmreg_lock, flags);
Richard Cochran5ee698e2014-12-21 19:47:02 +0100261 timecounter_adjtime(&igb->tc, delta);
Richard Cochrand339b132012-03-16 10:55:32 +0000262 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
263
264 return 0;
265}
266
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000267static int igb_ptp_adjtime_i210(struct ptp_clock_info *ptp, s64 delta)
268{
269 struct igb_adapter *igb = container_of(ptp, struct igb_adapter,
270 ptp_caps);
271 unsigned long flags;
272 struct timespec now, then = ns_to_timespec(delta);
273
274 spin_lock_irqsave(&igb->tmreg_lock, flags);
275
276 igb_ptp_read_i210(igb, &now);
277 now = timespec_add(now, then);
278 igb_ptp_write_i210(igb, (const struct timespec *)&now);
279
280 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
281
282 return 0;
283}
284
285static int igb_ptp_gettime_82576(struct ptp_clock_info *ptp,
286 struct timespec *ts)
Richard Cochrand339b132012-03-16 10:55:32 +0000287{
Matthew Vicka79f4f82012-08-10 05:40:44 +0000288 struct igb_adapter *igb = container_of(ptp, struct igb_adapter,
289 ptp_caps);
290 unsigned long flags;
Richard Cochrand339b132012-03-16 10:55:32 +0000291 u64 ns;
292 u32 remainder;
Richard Cochrand339b132012-03-16 10:55:32 +0000293
294 spin_lock_irqsave(&igb->tmreg_lock, flags);
295
296 ns = timecounter_read(&igb->tc);
297
298 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
299
300 ts->tv_sec = div_u64_rem(ns, 1000000000, &remainder);
301 ts->tv_nsec = remainder;
302
303 return 0;
304}
305
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000306static int igb_ptp_gettime_i210(struct ptp_clock_info *ptp,
307 struct timespec *ts)
308{
309 struct igb_adapter *igb = container_of(ptp, struct igb_adapter,
310 ptp_caps);
311 unsigned long flags;
312
313 spin_lock_irqsave(&igb->tmreg_lock, flags);
314
315 igb_ptp_read_i210(igb, ts);
316
317 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
318
319 return 0;
320}
321
322static int igb_ptp_settime_82576(struct ptp_clock_info *ptp,
323 const struct timespec *ts)
Richard Cochrand339b132012-03-16 10:55:32 +0000324{
Matthew Vicka79f4f82012-08-10 05:40:44 +0000325 struct igb_adapter *igb = container_of(ptp, struct igb_adapter,
326 ptp_caps);
Richard Cochrand339b132012-03-16 10:55:32 +0000327 unsigned long flags;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000328 u64 ns;
Richard Cochrand339b132012-03-16 10:55:32 +0000329
330 ns = ts->tv_sec * 1000000000ULL;
331 ns += ts->tv_nsec;
332
333 spin_lock_irqsave(&igb->tmreg_lock, flags);
334
335 timecounter_init(&igb->tc, &igb->cc, ns);
336
337 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
338
339 return 0;
340}
341
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000342static int igb_ptp_settime_i210(struct ptp_clock_info *ptp,
343 const struct timespec *ts)
344{
345 struct igb_adapter *igb = container_of(ptp, struct igb_adapter,
346 ptp_caps);
347 unsigned long flags;
348
349 spin_lock_irqsave(&igb->tmreg_lock, flags);
350
351 igb_ptp_write_i210(igb, ts);
352
353 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
354
355 return 0;
356}
357
Richard Cochran720db4f2014-11-21 20:51:26 +0000358static void igb_pin_direction(int pin, int input, u32 *ctrl, u32 *ctrl_ext)
359{
360 u32 *ptr = pin < 2 ? ctrl : ctrl_ext;
361 u32 mask[IGB_N_SDP] = {
362 E1000_CTRL_SDP0_DIR,
363 E1000_CTRL_SDP1_DIR,
364 E1000_CTRL_EXT_SDP2_DIR,
365 E1000_CTRL_EXT_SDP3_DIR,
366 };
367
368 if (input)
369 *ptr &= ~mask[pin];
370 else
371 *ptr |= mask[pin];
372}
373
374static void igb_pin_extts(struct igb_adapter *igb, int chan, int pin)
375{
376 struct e1000_hw *hw = &igb->hw;
377 u32 aux0_sel_sdp[IGB_N_SDP] = {
378 AUX0_SEL_SDP0, AUX0_SEL_SDP1, AUX0_SEL_SDP2, AUX0_SEL_SDP3,
379 };
380 u32 aux1_sel_sdp[IGB_N_SDP] = {
381 AUX1_SEL_SDP0, AUX1_SEL_SDP1, AUX1_SEL_SDP2, AUX1_SEL_SDP3,
382 };
383 u32 ts_sdp_en[IGB_N_SDP] = {
384 TS_SDP0_EN, TS_SDP1_EN, TS_SDP2_EN, TS_SDP3_EN,
385 };
386 u32 ctrl, ctrl_ext, tssdp = 0;
387
388 ctrl = rd32(E1000_CTRL);
389 ctrl_ext = rd32(E1000_CTRL_EXT);
390 tssdp = rd32(E1000_TSSDP);
391
392 igb_pin_direction(pin, 1, &ctrl, &ctrl_ext);
393
394 /* Make sure this pin is not enabled as an output. */
395 tssdp &= ~ts_sdp_en[pin];
396
397 if (chan == 1) {
398 tssdp &= ~AUX1_SEL_SDP3;
399 tssdp |= aux1_sel_sdp[pin] | AUX1_TS_SDP_EN;
400 } else {
401 tssdp &= ~AUX0_SEL_SDP3;
402 tssdp |= aux0_sel_sdp[pin] | AUX0_TS_SDP_EN;
403 }
404
405 wr32(E1000_TSSDP, tssdp);
406 wr32(E1000_CTRL, ctrl);
407 wr32(E1000_CTRL_EXT, ctrl_ext);
408}
409
410static void igb_pin_perout(struct igb_adapter *igb, int chan, int pin)
411{
412 struct e1000_hw *hw = &igb->hw;
413 u32 aux0_sel_sdp[IGB_N_SDP] = {
414 AUX0_SEL_SDP0, AUX0_SEL_SDP1, AUX0_SEL_SDP2, AUX0_SEL_SDP3,
415 };
416 u32 aux1_sel_sdp[IGB_N_SDP] = {
417 AUX1_SEL_SDP0, AUX1_SEL_SDP1, AUX1_SEL_SDP2, AUX1_SEL_SDP3,
418 };
419 u32 ts_sdp_en[IGB_N_SDP] = {
420 TS_SDP0_EN, TS_SDP1_EN, TS_SDP2_EN, TS_SDP3_EN,
421 };
422 u32 ts_sdp_sel_tt0[IGB_N_SDP] = {
423 TS_SDP0_SEL_TT0, TS_SDP1_SEL_TT0,
424 TS_SDP2_SEL_TT0, TS_SDP3_SEL_TT0,
425 };
426 u32 ts_sdp_sel_tt1[IGB_N_SDP] = {
427 TS_SDP0_SEL_TT1, TS_SDP1_SEL_TT1,
428 TS_SDP2_SEL_TT1, TS_SDP3_SEL_TT1,
429 };
430 u32 ts_sdp_sel_clr[IGB_N_SDP] = {
431 TS_SDP0_SEL_FC1, TS_SDP1_SEL_FC1,
432 TS_SDP2_SEL_FC1, TS_SDP3_SEL_FC1,
433 };
434 u32 ctrl, ctrl_ext, tssdp = 0;
435
436 ctrl = rd32(E1000_CTRL);
437 ctrl_ext = rd32(E1000_CTRL_EXT);
438 tssdp = rd32(E1000_TSSDP);
439
440 igb_pin_direction(pin, 0, &ctrl, &ctrl_ext);
441
442 /* Make sure this pin is not enabled as an input. */
443 if ((tssdp & AUX0_SEL_SDP3) == aux0_sel_sdp[pin])
444 tssdp &= ~AUX0_TS_SDP_EN;
445
446 if ((tssdp & AUX1_SEL_SDP3) == aux1_sel_sdp[pin])
447 tssdp &= ~AUX1_TS_SDP_EN;
448
449 tssdp &= ~ts_sdp_sel_clr[pin];
450 if (chan == 1)
451 tssdp |= ts_sdp_sel_tt1[pin];
452 else
453 tssdp |= ts_sdp_sel_tt0[pin];
454
455 tssdp |= ts_sdp_en[pin];
456
457 wr32(E1000_TSSDP, tssdp);
458 wr32(E1000_CTRL, ctrl);
459 wr32(E1000_CTRL_EXT, ctrl_ext);
460}
461
Richard Cochran00c65572014-11-21 20:51:20 +0000462static int igb_ptp_feature_enable_i210(struct ptp_clock_info *ptp,
463 struct ptp_clock_request *rq, int on)
464{
465 struct igb_adapter *igb =
466 container_of(ptp, struct igb_adapter, ptp_caps);
467 struct e1000_hw *hw = &igb->hw;
Richard Cochran720db4f2014-11-21 20:51:26 +0000468 u32 tsauxc, tsim, tsauxc_mask, tsim_mask, trgttiml, trgttimh;
Richard Cochran00c65572014-11-21 20:51:20 +0000469 unsigned long flags;
Richard Cochran720db4f2014-11-21 20:51:26 +0000470 struct timespec ts;
471 int pin;
472 s64 ns;
Richard Cochran00c65572014-11-21 20:51:20 +0000473
474 switch (rq->type) {
Richard Cochran720db4f2014-11-21 20:51:26 +0000475 case PTP_CLK_REQ_EXTTS:
476 if (on) {
477 pin = ptp_find_pin(igb->ptp_clock, PTP_PF_EXTTS,
478 rq->extts.index);
479 if (pin < 0)
480 return -EBUSY;
481 }
482 if (rq->extts.index == 1) {
483 tsauxc_mask = TSAUXC_EN_TS1;
484 tsim_mask = TSINTR_AUTT1;
485 } else {
486 tsauxc_mask = TSAUXC_EN_TS0;
487 tsim_mask = TSINTR_AUTT0;
488 }
489 spin_lock_irqsave(&igb->tmreg_lock, flags);
490 tsauxc = rd32(E1000_TSAUXC);
491 tsim = rd32(E1000_TSIM);
492 if (on) {
493 igb_pin_extts(igb, rq->extts.index, pin);
494 tsauxc |= tsauxc_mask;
495 tsim |= tsim_mask;
496 } else {
497 tsauxc &= ~tsauxc_mask;
498 tsim &= ~tsim_mask;
499 }
500 wr32(E1000_TSAUXC, tsauxc);
501 wr32(E1000_TSIM, tsim);
502 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
503 return 0;
504
505 case PTP_CLK_REQ_PEROUT:
506 if (on) {
507 pin = ptp_find_pin(igb->ptp_clock, PTP_PF_PEROUT,
508 rq->perout.index);
509 if (pin < 0)
510 return -EBUSY;
511 }
512 ts.tv_sec = rq->perout.period.sec;
513 ts.tv_nsec = rq->perout.period.nsec;
514 ns = timespec_to_ns(&ts);
515 ns = ns >> 1;
516 if (on && ns < 500000LL) {
517 /* 2k interrupts per second is an awful lot. */
518 return -EINVAL;
519 }
520 ts = ns_to_timespec(ns);
521 if (rq->perout.index == 1) {
522 tsauxc_mask = TSAUXC_EN_TT1;
523 tsim_mask = TSINTR_TT1;
524 trgttiml = E1000_TRGTTIML1;
525 trgttimh = E1000_TRGTTIMH1;
526 } else {
527 tsauxc_mask = TSAUXC_EN_TT0;
528 tsim_mask = TSINTR_TT0;
529 trgttiml = E1000_TRGTTIML0;
530 trgttimh = E1000_TRGTTIMH0;
531 }
532 spin_lock_irqsave(&igb->tmreg_lock, flags);
533 tsauxc = rd32(E1000_TSAUXC);
534 tsim = rd32(E1000_TSIM);
535 if (on) {
536 int i = rq->perout.index;
537
538 igb_pin_perout(igb, i, pin);
539 igb->perout[i].start.tv_sec = rq->perout.start.sec;
540 igb->perout[i].start.tv_nsec = rq->perout.start.nsec;
541 igb->perout[i].period.tv_sec = ts.tv_sec;
542 igb->perout[i].period.tv_nsec = ts.tv_nsec;
543 wr32(trgttiml, rq->perout.start.sec);
544 wr32(trgttimh, rq->perout.start.nsec);
545 tsauxc |= tsauxc_mask;
546 tsim |= tsim_mask;
547 } else {
548 tsauxc &= ~tsauxc_mask;
549 tsim &= ~tsim_mask;
550 }
551 wr32(E1000_TSAUXC, tsauxc);
552 wr32(E1000_TSIM, tsim);
553 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
554 return 0;
555
Richard Cochran00c65572014-11-21 20:51:20 +0000556 case PTP_CLK_REQ_PPS:
557 spin_lock_irqsave(&igb->tmreg_lock, flags);
558 tsim = rd32(E1000_TSIM);
559 if (on)
560 tsim |= TSINTR_SYS_WRAP;
561 else
562 tsim &= ~TSINTR_SYS_WRAP;
563 wr32(E1000_TSIM, tsim);
564 spin_unlock_irqrestore(&igb->tmreg_lock, flags);
565 return 0;
Richard Cochran00c65572014-11-21 20:51:20 +0000566 }
567
568 return -EOPNOTSUPP;
569}
570
Jacob Keller102be522014-05-16 07:21:13 +0000571static int igb_ptp_feature_enable(struct ptp_clock_info *ptp,
572 struct ptp_clock_request *rq, int on)
Richard Cochrand339b132012-03-16 10:55:32 +0000573{
574 return -EOPNOTSUPP;
575}
576
Richard Cochran720db4f2014-11-21 20:51:26 +0000577static int igb_ptp_verify_pin(struct ptp_clock_info *ptp, unsigned int pin,
578 enum ptp_pin_function func, unsigned int chan)
579{
580 switch (func) {
581 case PTP_PF_NONE:
582 case PTP_PF_EXTTS:
583 case PTP_PF_PEROUT:
584 break;
585 case PTP_PF_PHYSYNC:
586 return -1;
587 }
588 return 0;
589}
590
Matthew Vick1f6e8172012-08-18 07:26:33 +0000591/**
592 * igb_ptp_tx_work
593 * @work: pointer to work struct
594 *
595 * This work function polls the TSYNCTXCTL valid bit to determine when a
596 * timestamp has been taken for the current stored skb.
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000597 **/
Jeff Kirsher167f3f72014-02-25 17:58:56 -0800598static void igb_ptp_tx_work(struct work_struct *work)
Matthew Vick1f6e8172012-08-18 07:26:33 +0000599{
600 struct igb_adapter *adapter = container_of(work, struct igb_adapter,
601 ptp_tx_work);
602 struct e1000_hw *hw = &adapter->hw;
603 u32 tsynctxctl;
604
605 if (!adapter->ptp_tx_skb)
606 return;
607
Matthew Vick428f1f72012-12-13 07:20:34 +0000608 if (time_is_before_jiffies(adapter->ptp_tx_start +
609 IGB_PTP_TX_TIMEOUT)) {
610 dev_kfree_skb_any(adapter->ptp_tx_skb);
611 adapter->ptp_tx_skb = NULL;
Jakub Kicinskied4420a2014-03-15 14:55:32 +0000612 clear_bit_unlock(__IGB_PTP_TX_IN_PROGRESS, &adapter->state);
Matthew Vick428f1f72012-12-13 07:20:34 +0000613 adapter->tx_hwtstamp_timeouts++;
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +0000614 dev_warn(&adapter->pdev->dev, "clearing Tx timestamp hang\n");
Matthew Vick428f1f72012-12-13 07:20:34 +0000615 return;
616 }
617
Matthew Vick1f6e8172012-08-18 07:26:33 +0000618 tsynctxctl = rd32(E1000_TSYNCTXCTL);
619 if (tsynctxctl & E1000_TSYNCTXCTL_VALID)
620 igb_ptp_tx_hwtstamp(adapter);
621 else
622 /* reschedule to check later */
623 schedule_work(&adapter->ptp_tx_work);
624}
625
Matthew Vicka79f4f82012-08-10 05:40:44 +0000626static void igb_ptp_overflow_check(struct work_struct *work)
Richard Cochrand339b132012-03-16 10:55:32 +0000627{
Richard Cochrand339b132012-03-16 10:55:32 +0000628 struct igb_adapter *igb =
Matthew Vicka79f4f82012-08-10 05:40:44 +0000629 container_of(work, struct igb_adapter, ptp_overflow_work.work);
630 struct timespec ts;
Richard Cochrand339b132012-03-16 10:55:32 +0000631
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000632 igb->ptp_caps.gettime(&igb->ptp_caps, &ts);
Richard Cochrand339b132012-03-16 10:55:32 +0000633
634 pr_debug("igb overflow check at %ld.%09lu\n", ts.tv_sec, ts.tv_nsec);
635
Matthew Vicka79f4f82012-08-10 05:40:44 +0000636 schedule_delayed_work(&igb->ptp_overflow_work,
637 IGB_SYSTIM_OVERFLOW_PERIOD);
638}
639
640/**
Matthew Vickfc580752012-12-13 07:20:35 +0000641 * igb_ptp_rx_hang - detect error case when Rx timestamp registers latched
642 * @adapter: private network adapter structure
643 *
644 * This watchdog task is scheduled to detect error case where hardware has
645 * dropped an Rx packet that was timestamped when the ring is full. The
646 * particular error is rare but leaves the device in a state unable to timestamp
647 * any future packets.
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000648 **/
Matthew Vickfc580752012-12-13 07:20:35 +0000649void igb_ptp_rx_hang(struct igb_adapter *adapter)
650{
651 struct e1000_hw *hw = &adapter->hw;
Matthew Vickfc580752012-12-13 07:20:35 +0000652 u32 tsyncrxctl = rd32(E1000_TSYNCRXCTL);
653 unsigned long rx_event;
Matthew Vickfc580752012-12-13 07:20:35 +0000654
655 if (hw->mac.type != e1000_82576)
656 return;
657
658 /* If we don't have a valid timestamp in the registers, just update the
659 * timeout counter and exit
660 */
661 if (!(tsyncrxctl & E1000_TSYNCRXCTL_VALID)) {
662 adapter->last_rx_ptp_check = jiffies;
663 return;
664 }
665
666 /* Determine the most recent watchdog or rx_timestamp event */
667 rx_event = adapter->last_rx_ptp_check;
Jakub Kicinski5499a962014-04-02 10:33:33 +0000668 if (time_after(adapter->last_rx_timestamp, rx_event))
669 rx_event = adapter->last_rx_timestamp;
Matthew Vickfc580752012-12-13 07:20:35 +0000670
671 /* Only need to read the high RXSTMP register to clear the lock */
672 if (time_is_before_jiffies(rx_event + 5 * HZ)) {
673 rd32(E1000_RXSTMPH);
674 adapter->last_rx_ptp_check = jiffies;
675 adapter->rx_hwtstamp_cleared++;
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +0000676 dev_warn(&adapter->pdev->dev, "clearing Rx timestamp hang\n");
Matthew Vickfc580752012-12-13 07:20:35 +0000677 }
678}
679
680/**
Matthew Vicka79f4f82012-08-10 05:40:44 +0000681 * igb_ptp_tx_hwtstamp - utility function which checks for TX time stamp
Matthew Vick1f6e8172012-08-18 07:26:33 +0000682 * @adapter: Board private structure.
Matthew Vicka79f4f82012-08-10 05:40:44 +0000683 *
684 * If we were asked to do hardware stamping and such a time stamp is
685 * available, then it must have been for this skb here because we only
686 * allow only one such packet into the queue.
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000687 **/
Jeff Kirsher167f3f72014-02-25 17:58:56 -0800688static void igb_ptp_tx_hwtstamp(struct igb_adapter *adapter)
Matthew Vicka79f4f82012-08-10 05:40:44 +0000689{
Matthew Vicka79f4f82012-08-10 05:40:44 +0000690 struct e1000_hw *hw = &adapter->hw;
691 struct skb_shared_hwtstamps shhwtstamps;
692 u64 regval;
693
Matthew Vicka79f4f82012-08-10 05:40:44 +0000694 regval = rd32(E1000_TXSTMPL);
695 regval |= (u64)rd32(E1000_TXSTMPH) << 32;
696
697 igb_ptp_systim_to_hwtstamp(adapter, &shhwtstamps, regval);
Matthew Vick1f6e8172012-08-18 07:26:33 +0000698 skb_tstamp_tx(adapter->ptp_tx_skb, &shhwtstamps);
699 dev_kfree_skb_any(adapter->ptp_tx_skb);
700 adapter->ptp_tx_skb = NULL;
Jakub Kicinskied4420a2014-03-15 14:55:32 +0000701 clear_bit_unlock(__IGB_PTP_TX_IN_PROGRESS, &adapter->state);
Matthew Vicka79f4f82012-08-10 05:40:44 +0000702}
703
Alexander Duyckb5345502012-09-25 05:14:55 +0000704/**
705 * igb_ptp_rx_pktstamp - retrieve Rx per packet timestamp
706 * @q_vector: Pointer to interrupt specific structure
707 * @va: Pointer to address containing Rx buffer
708 * @skb: Buffer containing timestamp and packet
709 *
710 * This function is meant to retrieve a timestamp from the first buffer of an
711 * incoming frame. The value is stored in little endian format starting on
712 * byte 8.
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000713 **/
Alexander Duyckb5345502012-09-25 05:14:55 +0000714void igb_ptp_rx_pktstamp(struct igb_q_vector *q_vector,
715 unsigned char *va,
716 struct sk_buff *skb)
717{
Alexander Duyckac61d512012-10-23 00:01:04 +0000718 __le64 *regval = (__le64 *)va;
Alexander Duyckb5345502012-09-25 05:14:55 +0000719
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000720 /* The timestamp is recorded in little endian format.
Alexander Duyckb5345502012-09-25 05:14:55 +0000721 * DWORD: 0 1 2 3
722 * Field: Reserved Reserved SYSTIML SYSTIMH
723 */
724 igb_ptp_systim_to_hwtstamp(q_vector->adapter, skb_hwtstamps(skb),
725 le64_to_cpu(regval[1]));
726}
727
728/**
729 * igb_ptp_rx_rgtstamp - retrieve Rx timestamp stored in register
730 * @q_vector: Pointer to interrupt specific structure
731 * @skb: Buffer containing timestamp and packet
732 *
733 * This function is meant to retrieve a timestamp from the internal registers
734 * of the adapter and store it in the skb.
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000735 **/
Alexander Duyckb5345502012-09-25 05:14:55 +0000736void igb_ptp_rx_rgtstamp(struct igb_q_vector *q_vector,
Matthew Vicka79f4f82012-08-10 05:40:44 +0000737 struct sk_buff *skb)
738{
739 struct igb_adapter *adapter = q_vector->adapter;
740 struct e1000_hw *hw = &adapter->hw;
741 u64 regval;
742
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000743 /* If this bit is set, then the RX registers contain the time stamp. No
Matthew Vicka79f4f82012-08-10 05:40:44 +0000744 * other packet will be time stamped until we read these registers, so
745 * read the registers to make them available again. Because only one
746 * packet can be time stamped at a time, we know that the register
747 * values must belong to this one here and therefore we don't need to
748 * compare any of the additional attributes stored for it.
749 *
750 * If nothing went wrong, then it should have a shared tx_flags that we
751 * can turn into a skb_shared_hwtstamps.
752 */
Alexander Duyckb5345502012-09-25 05:14:55 +0000753 if (!(rd32(E1000_TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID))
754 return;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000755
Alexander Duyckb5345502012-09-25 05:14:55 +0000756 regval = rd32(E1000_RXSTMPL);
757 regval |= (u64)rd32(E1000_RXSTMPH) << 32;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000758
759 igb_ptp_systim_to_hwtstamp(adapter, skb_hwtstamps(skb), regval);
Jakub Kicinski5499a962014-04-02 10:33:33 +0000760
761 /* Update the last_rx_timestamp timer in order to enable watchdog check
762 * for error case of latched timestamp on a dropped packet.
763 */
764 adapter->last_rx_timestamp = jiffies;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000765}
766
767/**
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000768 * igb_ptp_get_ts_config - get hardware time stamping config
Matthew Vicka79f4f82012-08-10 05:40:44 +0000769 * @netdev:
770 * @ifreq:
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000771 *
772 * Get the hwtstamp_config settings to return to the user. Rather than attempt
773 * to deconstruct the settings from the registers, just return a shadow copy
774 * of the last known settings.
775 **/
776int igb_ptp_get_ts_config(struct net_device *netdev, struct ifreq *ifr)
777{
778 struct igb_adapter *adapter = netdev_priv(netdev);
779 struct hwtstamp_config *config = &adapter->tstamp_config;
780
781 return copy_to_user(ifr->ifr_data, config, sizeof(*config)) ?
782 -EFAULT : 0;
783}
Jacob Keller9f62ecf2014-06-05 07:25:10 +0000784
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000785/**
Jacob Keller9f62ecf2014-06-05 07:25:10 +0000786 * igb_ptp_set_timestamp_mode - setup hardware for timestamping
787 * @adapter: networking device structure
788 * @config: hwtstamp configuration
Matthew Vicka79f4f82012-08-10 05:40:44 +0000789 *
790 * Outgoing time stamping can be enabled and disabled. Play nice and
791 * disable it when requested, although it shouldn't case any overhead
792 * when no packet needs it. At most one packet in the queue may be
793 * marked for time stamping, otherwise it would be impossible to tell
794 * for sure to which packet the hardware time stamp belongs.
795 *
796 * Incoming time stamping has to be configured via the hardware
797 * filters. Not all combinations are supported, in particular event
798 * type has to be specified. Matching the kind of event packet is
799 * not supported, with the exception of "all V2 events regardless of
800 * level 2 or 4".
Jacob Keller9f62ecf2014-06-05 07:25:10 +0000801 */
802static int igb_ptp_set_timestamp_mode(struct igb_adapter *adapter,
803 struct hwtstamp_config *config)
Matthew Vicka79f4f82012-08-10 05:40:44 +0000804{
Matthew Vicka79f4f82012-08-10 05:40:44 +0000805 struct e1000_hw *hw = &adapter->hw;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000806 u32 tsync_tx_ctl = E1000_TSYNCTXCTL_ENABLED;
807 u32 tsync_rx_ctl = E1000_TSYNCRXCTL_ENABLED;
808 u32 tsync_rx_cfg = 0;
809 bool is_l4 = false;
810 bool is_l2 = false;
811 u32 regval;
812
Matthew Vicka79f4f82012-08-10 05:40:44 +0000813 /* reserved for future extensions */
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000814 if (config->flags)
Matthew Vicka79f4f82012-08-10 05:40:44 +0000815 return -EINVAL;
816
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000817 switch (config->tx_type) {
Matthew Vicka79f4f82012-08-10 05:40:44 +0000818 case HWTSTAMP_TX_OFF:
819 tsync_tx_ctl = 0;
820 case HWTSTAMP_TX_ON:
821 break;
822 default:
823 return -ERANGE;
824 }
825
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000826 switch (config->rx_filter) {
Matthew Vicka79f4f82012-08-10 05:40:44 +0000827 case HWTSTAMP_FILTER_NONE:
828 tsync_rx_ctl = 0;
829 break;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000830 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
831 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
832 tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V1_SYNC_MESSAGE;
833 is_l4 = true;
834 break;
835 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
836 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
837 tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V1_DELAY_REQ_MESSAGE;
838 is_l4 = true;
839 break;
Matthew Vick3e961a02012-11-08 08:38:57 +0000840 case HWTSTAMP_FILTER_PTP_V2_EVENT:
841 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
842 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
843 case HWTSTAMP_FILTER_PTP_V2_SYNC:
Matthew Vicka79f4f82012-08-10 05:40:44 +0000844 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
845 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
Matthew Vick3e961a02012-11-08 08:38:57 +0000846 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Matthew Vicka79f4f82012-08-10 05:40:44 +0000847 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
848 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
Matthew Vicka79f4f82012-08-10 05:40:44 +0000849 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_EVENT_V2;
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000850 config->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000851 is_l2 = true;
852 is_l4 = true;
853 break;
Matthew Vick3e961a02012-11-08 08:38:57 +0000854 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
855 case HWTSTAMP_FILTER_ALL:
856 /* 82576 cannot timestamp all packets, which it needs to do to
857 * support both V1 Sync and Delay_Req messages
858 */
859 if (hw->mac.type != e1000_82576) {
860 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_ALL;
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000861 config->rx_filter = HWTSTAMP_FILTER_ALL;
Matthew Vick3e961a02012-11-08 08:38:57 +0000862 break;
863 }
864 /* fall through */
Matthew Vicka79f4f82012-08-10 05:40:44 +0000865 default:
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000866 config->rx_filter = HWTSTAMP_FILTER_NONE;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000867 return -ERANGE;
868 }
869
870 if (hw->mac.type == e1000_82575) {
871 if (tsync_rx_ctl | tsync_tx_ctl)
872 return -EINVAL;
873 return 0;
874 }
875
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000876 /* Per-packet timestamping only works if all packets are
Matthew Vicka79f4f82012-08-10 05:40:44 +0000877 * timestamped, so enable timestamping in all packets as
Jeff Kirsherb980ac12013-02-23 07:29:56 +0000878 * long as one Rx filter was configured.
Matthew Vicka79f4f82012-08-10 05:40:44 +0000879 */
880 if ((hw->mac.type >= e1000_82580) && tsync_rx_ctl) {
881 tsync_rx_ctl = E1000_TSYNCRXCTL_ENABLED;
882 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_ALL;
Jacob Keller6ab5f7b2014-01-11 07:20:06 +0000883 config->rx_filter = HWTSTAMP_FILTER_ALL;
Matthew Vick3e961a02012-11-08 08:38:57 +0000884 is_l2 = true;
885 is_l4 = true;
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000886
887 if ((hw->mac.type == e1000_i210) ||
888 (hw->mac.type == e1000_i211)) {
889 regval = rd32(E1000_RXPBS);
890 regval |= E1000_RXPBS_CFG_TS_EN;
891 wr32(E1000_RXPBS, regval);
892 }
Matthew Vicka79f4f82012-08-10 05:40:44 +0000893 }
894
895 /* enable/disable TX */
896 regval = rd32(E1000_TSYNCTXCTL);
897 regval &= ~E1000_TSYNCTXCTL_ENABLED;
898 regval |= tsync_tx_ctl;
899 wr32(E1000_TSYNCTXCTL, regval);
900
901 /* enable/disable RX */
902 regval = rd32(E1000_TSYNCRXCTL);
903 regval &= ~(E1000_TSYNCRXCTL_ENABLED | E1000_TSYNCRXCTL_TYPE_MASK);
904 regval |= tsync_rx_ctl;
905 wr32(E1000_TSYNCRXCTL, regval);
906
907 /* define which PTP packets are time stamped */
908 wr32(E1000_TSYNCRXCFG, tsync_rx_cfg);
909
910 /* define ethertype filter for timestamped packets */
911 if (is_l2)
912 wr32(E1000_ETQF(3),
913 (E1000_ETQF_FILTER_ENABLE | /* enable filter */
914 E1000_ETQF_1588 | /* enable timestamping */
915 ETH_P_1588)); /* 1588 eth protocol type */
916 else
917 wr32(E1000_ETQF(3), 0);
918
Matthew Vicka79f4f82012-08-10 05:40:44 +0000919 /* L4 Queue Filter[3]: filter by destination port and protocol */
920 if (is_l4) {
921 u32 ftqf = (IPPROTO_UDP /* UDP */
922 | E1000_FTQF_VF_BP /* VF not compared */
923 | E1000_FTQF_1588_TIME_STAMP /* Enable Timestamping */
924 | E1000_FTQF_MASK); /* mask all inputs */
925 ftqf &= ~E1000_FTQF_MASK_PROTO_BP; /* enable protocol check */
926
Matthew Vickba598142012-12-13 07:20:36 +0000927 wr32(E1000_IMIR(3), htons(PTP_EV_PORT));
Matthew Vicka79f4f82012-08-10 05:40:44 +0000928 wr32(E1000_IMIREXT(3),
929 (E1000_IMIREXT_SIZE_BP | E1000_IMIREXT_CTRL_BP));
930 if (hw->mac.type == e1000_82576) {
931 /* enable source port check */
Matthew Vickba598142012-12-13 07:20:36 +0000932 wr32(E1000_SPQF(3), htons(PTP_EV_PORT));
Matthew Vicka79f4f82012-08-10 05:40:44 +0000933 ftqf &= ~E1000_FTQF_MASK_SOURCE_PORT_BP;
934 }
935 wr32(E1000_FTQF(3), ftqf);
936 } else {
937 wr32(E1000_FTQF(3), E1000_FTQF_MASK);
938 }
939 wrfl();
940
941 /* clear TX/RX time stamp registers, just to be sure */
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000942 regval = rd32(E1000_TXSTMPL);
Matthew Vicka79f4f82012-08-10 05:40:44 +0000943 regval = rd32(E1000_TXSTMPH);
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000944 regval = rd32(E1000_RXSTMPL);
Matthew Vicka79f4f82012-08-10 05:40:44 +0000945 regval = rd32(E1000_RXSTMPH);
946
Jacob Keller9f62ecf2014-06-05 07:25:10 +0000947 return 0;
948}
949
950/**
951 * igb_ptp_set_ts_config - set hardware time stamping config
952 * @netdev:
953 * @ifreq:
954 *
955 **/
956int igb_ptp_set_ts_config(struct net_device *netdev, struct ifreq *ifr)
957{
958 struct igb_adapter *adapter = netdev_priv(netdev);
959 struct hwtstamp_config config;
960 int err;
961
962 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
963 return -EFAULT;
964
965 err = igb_ptp_set_timestamp_mode(adapter, &config);
966 if (err)
967 return err;
968
969 /* save these settings for future reference */
970 memcpy(&adapter->tstamp_config, &config,
971 sizeof(adapter->tstamp_config));
972
973 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
Matthew Vicka79f4f82012-08-10 05:40:44 +0000974 -EFAULT : 0;
Richard Cochrand339b132012-03-16 10:55:32 +0000975}
976
977void igb_ptp_init(struct igb_adapter *adapter)
978{
979 struct e1000_hw *hw = &adapter->hw;
Matthew Vick201987e2012-08-10 05:40:46 +0000980 struct net_device *netdev = adapter->netdev;
Richard Cochran720db4f2014-11-21 20:51:26 +0000981 int i;
Richard Cochrand339b132012-03-16 10:55:32 +0000982
983 switch (hw->mac.type) {
Richard Cochrand339b132012-03-16 10:55:32 +0000984 case e1000_82576:
Matthew Vick201987e2012-08-10 05:40:46 +0000985 snprintf(adapter->ptp_caps.name, 16, "%pm", netdev->dev_addr);
Matthew Vicka79f4f82012-08-10 05:40:44 +0000986 adapter->ptp_caps.owner = THIS_MODULE;
Jiri Benc75517d92013-03-20 09:06:34 +0000987 adapter->ptp_caps.max_adj = 999999881;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000988 adapter->ptp_caps.n_ext_ts = 0;
989 adapter->ptp_caps.pps = 0;
990 adapter->ptp_caps.adjfreq = igb_ptp_adjfreq_82576;
Matthew Vicke57b8bd2012-08-17 01:30:37 +0000991 adapter->ptp_caps.adjtime = igb_ptp_adjtime_82576;
992 adapter->ptp_caps.gettime = igb_ptp_gettime_82576;
993 adapter->ptp_caps.settime = igb_ptp_settime_82576;
Jacob Keller102be522014-05-16 07:21:13 +0000994 adapter->ptp_caps.enable = igb_ptp_feature_enable;
Matthew Vicka79f4f82012-08-10 05:40:44 +0000995 adapter->cc.read = igb_ptp_read_82576;
Richard Cochranb57c8942015-01-02 20:22:06 +0100996 adapter->cc.mask = CYCLECOUNTER_MASK(64);
Matthew Vicka79f4f82012-08-10 05:40:44 +0000997 adapter->cc.mult = 1;
998 adapter->cc.shift = IGB_82576_TSYNC_SHIFT;
Richard Cochrand339b132012-03-16 10:55:32 +0000999 /* Dial the nominal frequency. */
1000 wr32(E1000_TIMINCA, INCPERIOD_82576 | INCVALUE_82576);
1001 break;
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001002 case e1000_82580:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00001003 case e1000_i354:
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001004 case e1000_i350:
1005 snprintf(adapter->ptp_caps.name, 16, "%pm", netdev->dev_addr);
1006 adapter->ptp_caps.owner = THIS_MODULE;
1007 adapter->ptp_caps.max_adj = 62499999;
1008 adapter->ptp_caps.n_ext_ts = 0;
1009 adapter->ptp_caps.pps = 0;
1010 adapter->ptp_caps.adjfreq = igb_ptp_adjfreq_82580;
1011 adapter->ptp_caps.adjtime = igb_ptp_adjtime_82576;
1012 adapter->ptp_caps.gettime = igb_ptp_gettime_82576;
1013 adapter->ptp_caps.settime = igb_ptp_settime_82576;
Jacob Keller102be522014-05-16 07:21:13 +00001014 adapter->ptp_caps.enable = igb_ptp_feature_enable;
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001015 adapter->cc.read = igb_ptp_read_82580;
Richard Cochranb57c8942015-01-02 20:22:06 +01001016 adapter->cc.mask = CYCLECOUNTER_MASK(IGB_NBITS_82580);
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001017 adapter->cc.mult = 1;
1018 adapter->cc.shift = 0;
1019 /* Enable the timer functions by clearing bit 31. */
1020 wr32(E1000_TSAUXC, 0x0);
1021 break;
1022 case e1000_i210:
1023 case e1000_i211:
Richard Cochran720db4f2014-11-21 20:51:26 +00001024 for (i = 0; i < IGB_N_SDP; i++) {
1025 struct ptp_pin_desc *ppd = &adapter->sdp_config[i];
1026
1027 snprintf(ppd->name, sizeof(ppd->name), "SDP%d", i);
1028 ppd->index = i;
1029 ppd->func = PTP_PF_NONE;
1030 }
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001031 snprintf(adapter->ptp_caps.name, 16, "%pm", netdev->dev_addr);
1032 adapter->ptp_caps.owner = THIS_MODULE;
1033 adapter->ptp_caps.max_adj = 62499999;
Richard Cochran720db4f2014-11-21 20:51:26 +00001034 adapter->ptp_caps.n_ext_ts = IGB_N_EXTTS;
1035 adapter->ptp_caps.n_per_out = IGB_N_PEROUT;
1036 adapter->ptp_caps.n_pins = IGB_N_SDP;
Richard Cochran00c65572014-11-21 20:51:20 +00001037 adapter->ptp_caps.pps = 1;
Richard Cochran720db4f2014-11-21 20:51:26 +00001038 adapter->ptp_caps.pin_config = adapter->sdp_config;
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001039 adapter->ptp_caps.adjfreq = igb_ptp_adjfreq_82580;
1040 adapter->ptp_caps.adjtime = igb_ptp_adjtime_i210;
1041 adapter->ptp_caps.gettime = igb_ptp_gettime_i210;
1042 adapter->ptp_caps.settime = igb_ptp_settime_i210;
Richard Cochran00c65572014-11-21 20:51:20 +00001043 adapter->ptp_caps.enable = igb_ptp_feature_enable_i210;
Richard Cochran720db4f2014-11-21 20:51:26 +00001044 adapter->ptp_caps.verify = igb_ptp_verify_pin;
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001045 /* Enable the timer functions by clearing bit 31. */
1046 wr32(E1000_TSAUXC, 0x0);
1047 break;
Richard Cochrand339b132012-03-16 10:55:32 +00001048 default:
1049 adapter->ptp_clock = NULL;
1050 return;
1051 }
1052
1053 wrfl();
1054
Richard Cochrand339b132012-03-16 10:55:32 +00001055 spin_lock_init(&adapter->tmreg_lock);
Matthew Vick1f6e8172012-08-18 07:26:33 +00001056 INIT_WORK(&adapter->ptp_tx_work, igb_ptp_tx_work);
1057
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001058 /* Initialize the clock and overflow work for devices that need it. */
1059 if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211)) {
1060 struct timespec ts = ktime_to_timespec(ktime_get_real());
1061
1062 igb_ptp_settime_i210(&adapter->ptp_caps, &ts);
1063 } else {
1064 timecounter_init(&adapter->tc, &adapter->cc,
1065 ktime_to_ns(ktime_get_real()));
1066
1067 INIT_DELAYED_WORK(&adapter->ptp_overflow_work,
1068 igb_ptp_overflow_check);
1069
1070 schedule_delayed_work(&adapter->ptp_overflow_work,
1071 IGB_SYSTIM_OVERFLOW_PERIOD);
1072 }
Richard Cochrand339b132012-03-16 10:55:32 +00001073
Matthew Vick1f6e8172012-08-18 07:26:33 +00001074 /* Initialize the time sync interrupts for devices that support it. */
1075 if (hw->mac.type >= e1000_82580) {
Carolyn Wyborny0c375ac2014-03-11 06:15:37 +00001076 wr32(E1000_TSIM, TSYNC_INTERRUPTS);
Matthew Vick1f6e8172012-08-18 07:26:33 +00001077 wr32(E1000_IMS, E1000_IMS_TS);
1078 }
1079
Jacob Keller9f62ecf2014-06-05 07:25:10 +00001080 adapter->tstamp_config.rx_filter = HWTSTAMP_FILTER_NONE;
1081 adapter->tstamp_config.tx_type = HWTSTAMP_TX_OFF;
1082
Richard Cochran1ef76152012-09-22 07:02:03 +00001083 adapter->ptp_clock = ptp_clock_register(&adapter->ptp_caps,
1084 &adapter->pdev->dev);
Richard Cochrand339b132012-03-16 10:55:32 +00001085 if (IS_ERR(adapter->ptp_clock)) {
1086 adapter->ptp_clock = NULL;
1087 dev_err(&adapter->pdev->dev, "ptp_clock_register failed\n");
Matthew Vick1f6e8172012-08-18 07:26:33 +00001088 } else {
Richard Cochrand339b132012-03-16 10:55:32 +00001089 dev_info(&adapter->pdev->dev, "added PHC on %s\n",
1090 adapter->netdev->name);
Matthew Vick1f6e8172012-08-18 07:26:33 +00001091 adapter->flags |= IGB_FLAG_PTP;
1092 }
Richard Cochrand339b132012-03-16 10:55:32 +00001093}
1094
Matthew Vicka79f4f82012-08-10 05:40:44 +00001095/**
1096 * igb_ptp_stop - Disable PTP device and stop the overflow check.
1097 * @adapter: Board private structure.
1098 *
1099 * This function stops the PTP support and cancels the delayed work.
1100 **/
1101void igb_ptp_stop(struct igb_adapter *adapter)
Richard Cochrand339b132012-03-16 10:55:32 +00001102{
Carolyn Wybornyd3eef8c2012-05-16 01:46:00 +00001103 switch (adapter->hw.mac.type) {
Carolyn Wybornyd3eef8c2012-05-16 01:46:00 +00001104 case e1000_82576:
Matthew Vick1f6e8172012-08-18 07:26:33 +00001105 case e1000_82580:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00001106 case e1000_i354:
Matthew Vick1f6e8172012-08-18 07:26:33 +00001107 case e1000_i350:
Matthew Vicka79f4f82012-08-10 05:40:44 +00001108 cancel_delayed_work_sync(&adapter->ptp_overflow_work);
Carolyn Wybornyd3eef8c2012-05-16 01:46:00 +00001109 break;
Matthew Vick1f6e8172012-08-18 07:26:33 +00001110 case e1000_i210:
1111 case e1000_i211:
1112 /* No delayed work to cancel. */
1113 break;
Carolyn Wybornyd3eef8c2012-05-16 01:46:00 +00001114 default:
1115 return;
1116 }
Richard Cochrand339b132012-03-16 10:55:32 +00001117
Matthew Vick1f6e8172012-08-18 07:26:33 +00001118 cancel_work_sync(&adapter->ptp_tx_work);
Matthew Vickbadc26d2012-12-13 07:20:37 +00001119 if (adapter->ptp_tx_skb) {
1120 dev_kfree_skb_any(adapter->ptp_tx_skb);
1121 adapter->ptp_tx_skb = NULL;
Jakub Kicinskied4420a2014-03-15 14:55:32 +00001122 clear_bit_unlock(__IGB_PTP_TX_IN_PROGRESS, &adapter->state);
Matthew Vickbadc26d2012-12-13 07:20:37 +00001123 }
Matthew Vick1f6e8172012-08-18 07:26:33 +00001124
Richard Cochrand339b132012-03-16 10:55:32 +00001125 if (adapter->ptp_clock) {
1126 ptp_clock_unregister(adapter->ptp_clock);
1127 dev_info(&adapter->pdev->dev, "removed PHC on %s\n",
1128 adapter->netdev->name);
Matthew Vick1f6e8172012-08-18 07:26:33 +00001129 adapter->flags &= ~IGB_FLAG_PTP;
Richard Cochrand339b132012-03-16 10:55:32 +00001130 }
1131}
Matthew Vick1f6e8172012-08-18 07:26:33 +00001132
1133/**
1134 * igb_ptp_reset - Re-enable the adapter for PTP following a reset.
1135 * @adapter: Board private structure.
1136 *
1137 * This function handles the reset work required to re-enable the PTP device.
1138 **/
1139void igb_ptp_reset(struct igb_adapter *adapter)
1140{
1141 struct e1000_hw *hw = &adapter->hw;
Richard Cochran8298c1e2014-11-21 20:51:15 +00001142 unsigned long flags;
Matthew Vick1f6e8172012-08-18 07:26:33 +00001143
1144 if (!(adapter->flags & IGB_FLAG_PTP))
1145 return;
1146
Jacob Keller6ab5f7b2014-01-11 07:20:06 +00001147 /* reset the tstamp_config */
Jacob Keller9f62ecf2014-06-05 07:25:10 +00001148 igb_ptp_set_timestamp_mode(adapter, &adapter->tstamp_config);
Jacob Keller6ab5f7b2014-01-11 07:20:06 +00001149
Richard Cochran8298c1e2014-11-21 20:51:15 +00001150 spin_lock_irqsave(&adapter->tmreg_lock, flags);
1151
Matthew Vick1f6e8172012-08-18 07:26:33 +00001152 switch (adapter->hw.mac.type) {
1153 case e1000_82576:
1154 /* Dial the nominal frequency. */
1155 wr32(E1000_TIMINCA, INCPERIOD_82576 | INCVALUE_82576);
1156 break;
1157 case e1000_82580:
Carolyn Wybornyceb5f132013-04-18 22:21:30 +00001158 case e1000_i354:
Matthew Vick1f6e8172012-08-18 07:26:33 +00001159 case e1000_i350:
1160 case e1000_i210:
1161 case e1000_i211:
Matthew Vick1f6e8172012-08-18 07:26:33 +00001162 wr32(E1000_TSAUXC, 0x0);
Richard Cochran720db4f2014-11-21 20:51:26 +00001163 wr32(E1000_TSSDP, 0x0);
Carolyn Wyborny0c375ac2014-03-11 06:15:37 +00001164 wr32(E1000_TSIM, TSYNC_INTERRUPTS);
Matthew Vick1f6e8172012-08-18 07:26:33 +00001165 wr32(E1000_IMS, E1000_IMS_TS);
1166 break;
1167 default:
1168 /* No work to do. */
Richard Cochran8298c1e2014-11-21 20:51:15 +00001169 goto out;
Matthew Vick1f6e8172012-08-18 07:26:33 +00001170 }
1171
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001172 /* Re-initialize the timer. */
1173 if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211)) {
1174 struct timespec ts = ktime_to_timespec(ktime_get_real());
1175
Richard Cochran8298c1e2014-11-21 20:51:15 +00001176 igb_ptp_write_i210(adapter, &ts);
Matthew Vicke57b8bd2012-08-17 01:30:37 +00001177 } else {
1178 timecounter_init(&adapter->tc, &adapter->cc,
1179 ktime_to_ns(ktime_get_real()));
1180 }
Richard Cochran8298c1e2014-11-21 20:51:15 +00001181out:
1182 spin_unlock_irqrestore(&adapter->tmreg_lock, flags);
Matthew Vick1f6e8172012-08-18 07:26:33 +00001183}