blob: fe3c6d04fce8b5506966cc96a2f4ad532a764086 [file] [log] [blame]
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01002 * Driver for Solarflare network controllers and boards
3 * Copyright 2011-2013 Solarflare Communications Inc.
Stuart Hodgson7c236c42012-09-03 11:09:36 +01004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation, incorporated herein by reference.
8 */
9
10/* Theory of operation:
11 *
12 * PTP support is assisted by firmware running on the MC, which provides
13 * the hardware timestamping capabilities. Both transmitted and received
14 * PTP event packets are queued onto internal queues for subsequent processing;
15 * this is because the MC operations are relatively long and would block
16 * block NAPI/interrupt operation.
17 *
18 * Receive event processing:
19 * The event contains the packet's UUID and sequence number, together
20 * with the hardware timestamp. The PTP receive packet queue is searched
21 * for this UUID/sequence number and, if found, put on a pending queue.
22 * Packets not matching are delivered without timestamps (MCDI events will
23 * always arrive after the actual packet).
24 * It is important for the operation of the PTP protocol that the ordering
25 * of packets between the event and general port is maintained.
26 *
27 * Work queue processing:
28 * If work waiting, synchronise host/hardware time
29 *
30 * Transmit: send packet through MC, which returns the transmission time
31 * that is converted to an appropriate timestamp.
32 *
33 * Receive: the packet's reception time is converted to an appropriate
34 * timestamp.
35 */
36#include <linux/ip.h>
37#include <linux/udp.h>
38#include <linux/time.h>
39#include <linux/ktime.h>
40#include <linux/module.h>
41#include <linux/net_tstamp.h>
42#include <linux/pps_kernel.h>
43#include <linux/ptp_clock_kernel.h>
44#include "net_driver.h"
45#include "efx.h"
46#include "mcdi.h"
47#include "mcdi_pcol.h"
48#include "io.h"
Ben Hutchings8b8a95a2012-09-18 01:57:07 +010049#include "farch_regs.h"
Stuart Hodgson7c236c42012-09-03 11:09:36 +010050#include "nic.h"
51
52/* Maximum number of events expected to make up a PTP event */
53#define MAX_EVENT_FRAGS 3
54
55/* Maximum delay, ms, to begin synchronisation */
56#define MAX_SYNCHRONISE_WAIT_MS 2
57
58/* How long, at most, to spend synchronising */
59#define SYNCHRONISE_PERIOD_NS 250000
60
61/* How often to update the shared memory time */
62#define SYNCHRONISATION_GRANULARITY_NS 200
63
64/* Minimum permitted length of a (corrected) synchronisation time */
Laurence Evansa6f73462013-12-04 23:47:56 +000065#define DEFAULT_MIN_SYNCHRONISATION_NS 120
Stuart Hodgson7c236c42012-09-03 11:09:36 +010066
67/* Maximum permitted length of a (corrected) synchronisation time */
68#define MAX_SYNCHRONISATION_NS 1000
69
70/* How many (MC) receive events that can be queued */
71#define MAX_RECEIVE_EVENTS 8
72
73/* Length of (modified) moving average. */
74#define AVERAGE_LENGTH 16
75
76/* How long an unmatched event or packet can be held */
77#define PKT_EVENT_LIFETIME_MS 10
78
79/* Offsets into PTP packet for identification. These offsets are from the
80 * start of the IP header, not the MAC header. Note that neither PTP V1 nor
81 * PTP V2 permit the use of IPV4 options.
82 */
83#define PTP_DPORT_OFFSET 22
84
85#define PTP_V1_VERSION_LENGTH 2
86#define PTP_V1_VERSION_OFFSET 28
87
88#define PTP_V1_UUID_LENGTH 6
89#define PTP_V1_UUID_OFFSET 50
90
91#define PTP_V1_SEQUENCE_LENGTH 2
92#define PTP_V1_SEQUENCE_OFFSET 58
93
94/* The minimum length of a PTP V1 packet for offsets, etc. to be valid:
95 * includes IP header.
96 */
97#define PTP_V1_MIN_LENGTH 64
98
99#define PTP_V2_VERSION_LENGTH 1
100#define PTP_V2_VERSION_OFFSET 29
101
Laurence Evansc939a312012-11-15 10:56:07 +0000102#define PTP_V2_UUID_LENGTH 8
103#define PTP_V2_UUID_OFFSET 48
104
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100105/* Although PTP V2 UUIDs are comprised a ClockIdentity (8) and PortNumber (2),
106 * the MC only captures the last six bytes of the clock identity. These values
107 * reflect those, not the ones used in the standard. The standard permits
108 * mapping of V1 UUIDs to V2 UUIDs with these same values.
109 */
110#define PTP_V2_MC_UUID_LENGTH 6
111#define PTP_V2_MC_UUID_OFFSET 50
112
113#define PTP_V2_SEQUENCE_LENGTH 2
114#define PTP_V2_SEQUENCE_OFFSET 58
115
116/* The minimum length of a PTP V2 packet for offsets, etc. to be valid:
117 * includes IP header.
118 */
119#define PTP_V2_MIN_LENGTH 63
120
121#define PTP_MIN_LENGTH 63
122
123#define PTP_ADDRESS 0xe0000181 /* 224.0.1.129 */
124#define PTP_EVENT_PORT 319
125#define PTP_GENERAL_PORT 320
126
127/* Annoyingly the format of the version numbers are different between
128 * versions 1 and 2 so it isn't possible to simply look for 1 or 2.
129 */
130#define PTP_VERSION_V1 1
131
132#define PTP_VERSION_V2 2
133#define PTP_VERSION_V2_MASK 0x0f
134
135enum ptp_packet_state {
136 PTP_PACKET_STATE_UNMATCHED = 0,
137 PTP_PACKET_STATE_MATCHED,
138 PTP_PACKET_STATE_TIMED_OUT,
139 PTP_PACKET_STATE_MATCH_UNWANTED
140};
141
142/* NIC synchronised with single word of time only comprising
143 * partial seconds and full nanoseconds: 10^9 ~ 2^30 so 2 bits for seconds.
144 */
145#define MC_NANOSECOND_BITS 30
146#define MC_NANOSECOND_MASK ((1 << MC_NANOSECOND_BITS) - 1)
147#define MC_SECOND_MASK ((1 << (32 - MC_NANOSECOND_BITS)) - 1)
148
149/* Maximum parts-per-billion adjustment that is acceptable */
150#define MAX_PPB 1000000
151
152/* Number of bits required to hold the above */
153#define MAX_PPB_BITS 20
154
155/* Number of extra bits allowed when calculating fractional ns.
156 * EXTRA_BITS + MC_CMD_PTP_IN_ADJUST_BITS + MAX_PPB_BITS should
157 * be less than 63.
158 */
159#define PPB_EXTRA_BITS 2
160
161/* Precalculate scale word to avoid long long division at runtime */
162#define PPB_SCALE_WORD ((1LL << (PPB_EXTRA_BITS + MC_CMD_PTP_IN_ADJUST_BITS +\
163 MAX_PPB_BITS)) / 1000000000LL)
164
165#define PTP_SYNC_ATTEMPTS 4
166
167/**
168 * struct efx_ptp_match - Matching structure, stored in sk_buff's cb area.
169 * @words: UUID and (partial) sequence number
170 * @expiry: Time after which the packet should be delivered irrespective of
171 * event arrival.
172 * @state: The state of the packet - whether it is ready for processing or
173 * whether that is of no interest.
174 */
175struct efx_ptp_match {
176 u32 words[DIV_ROUND_UP(PTP_V1_UUID_LENGTH, 4)];
177 unsigned long expiry;
178 enum ptp_packet_state state;
179};
180
181/**
182 * struct efx_ptp_event_rx - A PTP receive event (from MC)
183 * @seq0: First part of (PTP) UUID
184 * @seq1: Second part of (PTP) UUID and sequence number
185 * @hwtimestamp: Event timestamp
186 */
187struct efx_ptp_event_rx {
188 struct list_head link;
189 u32 seq0;
190 u32 seq1;
191 ktime_t hwtimestamp;
192 unsigned long expiry;
193};
194
195/**
196 * struct efx_ptp_timeset - Synchronisation between host and MC
197 * @host_start: Host time immediately before hardware timestamp taken
Laurence Evansa6f73462013-12-04 23:47:56 +0000198 * @major: Hardware timestamp, major
199 * @minor: Hardware timestamp, minor
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100200 * @host_end: Host time immediately after hardware timestamp taken
Laurence Evansa6f73462013-12-04 23:47:56 +0000201 * @wait: Number of NIC clock ticks between hardware timestamp being read and
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100202 * host end time being seen
203 * @window: Difference of host_end and host_start
204 * @valid: Whether this timeset is valid
205 */
206struct efx_ptp_timeset {
207 u32 host_start;
Laurence Evansa6f73462013-12-04 23:47:56 +0000208 u32 major;
209 u32 minor;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100210 u32 host_end;
Laurence Evansa6f73462013-12-04 23:47:56 +0000211 u32 wait;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100212 u32 window; /* Derived: end - start, allowing for wrap */
213};
214
215/**
216 * struct efx_ptp_data - Precision Time Protocol (PTP) state
Ben Hutchingsac36baf2013-10-15 17:54:56 +0100217 * @efx: The NIC context
218 * @channel: The PTP channel (Siena only)
Jon Cooperbd9a2652013-11-18 12:54:41 +0000219 * @rx_ts_inline: Flag for whether RX timestamps are inline (else they are
220 * separate events)
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100221 * @rxq: Receive queue (awaiting timestamps)
222 * @txq: Transmit queue
223 * @evt_list: List of MC receive events awaiting packets
224 * @evt_free_list: List of free events
225 * @evt_lock: Lock for manipulating evt_list and evt_free_list
Laurence Evansf3211602013-01-28 14:51:17 +0000226 * @evt_overflow: Boolean indicating that event list has overflowed
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100227 * @rx_evts: Instantiated events (on evt_list and evt_free_list)
228 * @workwq: Work queue for processing pending PTP operations
229 * @work: Work task
230 * @reset_required: A serious error has occurred and the PTP task needs to be
231 * reset (disable, enable).
232 * @rxfilter_event: Receive filter when operating
233 * @rxfilter_general: Receive filter when operating
234 * @config: Current timestamp configuration
235 * @enabled: PTP operation enabled
236 * @mode: Mode in which PTP operating (PTP version)
Laurence Evansa6f73462013-12-04 23:47:56 +0000237 * @time_format: Time format supported by this NIC
238 * @ns_to_nic_time: Function to convert from scalar nanoseconds to NIC time
239 * @nic_to_kernel_time: Function to convert from NIC to kernel time
240 * @min_synchronisation_ns: Minimum acceptable corrected sync window
241 * @ts_corrections.tx: Required driver correction of transmit timestamps
242 * @ts_corrections.rx: Required driver correction of receive timestamps
243 * @ts_corrections.pps_out: PPS output error (information only)
244 * @ts_corrections.pps_in: Required driver correction of PPS input timestamps
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100245 * @evt_frags: Partly assembled PTP events
246 * @evt_frag_idx: Current fragment number
247 * @evt_code: Last event code
248 * @start: Address at which MC indicates ready for synchronisation
249 * @host_time_pps: Host time at last PPS
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100250 * @current_adjfreq: Current ppb adjustment.
Ben Hutchings9aecda92013-12-05 21:28:42 +0000251 * @phc_clock: Pointer to registered phc device (if primary function)
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100252 * @phc_clock_info: Registration structure for phc device
253 * @pps_work: pps work task for handling pps events
254 * @pps_workwq: pps work queue
255 * @nic_ts_enabled: Flag indicating if NIC generated TS events are handled
256 * @txbuf: Buffer for use when transmitting (PTP) packets to MC (avoids
257 * allocations in main data path).
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100258 * @timeset: Last set of synchronisation statistics.
259 */
260struct efx_ptp_data {
Ben Hutchingsac36baf2013-10-15 17:54:56 +0100261 struct efx_nic *efx;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100262 struct efx_channel *channel;
Jon Cooperbd9a2652013-11-18 12:54:41 +0000263 bool rx_ts_inline;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100264 struct sk_buff_head rxq;
265 struct sk_buff_head txq;
266 struct list_head evt_list;
267 struct list_head evt_free_list;
268 spinlock_t evt_lock;
Laurence Evansf3211602013-01-28 14:51:17 +0000269 bool evt_overflow;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100270 struct efx_ptp_event_rx rx_evts[MAX_RECEIVE_EVENTS];
271 struct workqueue_struct *workwq;
272 struct work_struct work;
273 bool reset_required;
274 u32 rxfilter_event;
275 u32 rxfilter_general;
276 bool rxfilter_installed;
277 struct hwtstamp_config config;
278 bool enabled;
279 unsigned int mode;
Laurence Evansa6f73462013-12-04 23:47:56 +0000280 unsigned int time_format;
281 void (*ns_to_nic_time)(s64 ns, u32 *nic_major, u32 *nic_minor);
282 ktime_t (*nic_to_kernel_time)(u32 nic_major, u32 nic_minor,
283 s32 correction);
284 unsigned int min_synchronisation_ns;
285 struct {
286 s32 tx;
287 s32 rx;
288 s32 pps_out;
289 s32 pps_in;
290 } ts_corrections;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100291 efx_qword_t evt_frags[MAX_EVENT_FRAGS];
292 int evt_frag_idx;
293 int evt_code;
294 struct efx_buffer start;
295 struct pps_event_time host_time_pps;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100296 s64 current_adjfreq;
297 struct ptp_clock *phc_clock;
298 struct ptp_clock_info phc_clock_info;
299 struct work_struct pps_work;
300 struct workqueue_struct *pps_workwq;
301 bool nic_ts_enabled;
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100302 MCDI_DECLARE_BUF(txbuf, MC_CMD_PTP_IN_TRANSMIT_LENMAX);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100303 struct efx_ptp_timeset
304 timeset[MC_CMD_PTP_OUT_SYNCHRONIZE_TIMESET_MAXNUM];
305};
306
307static int efx_phc_adjfreq(struct ptp_clock_info *ptp, s32 delta);
308static int efx_phc_adjtime(struct ptp_clock_info *ptp, s64 delta);
309static int efx_phc_gettime(struct ptp_clock_info *ptp, struct timespec *ts);
310static int efx_phc_settime(struct ptp_clock_info *ptp,
311 const struct timespec *e_ts);
312static int efx_phc_enable(struct ptp_clock_info *ptp,
313 struct ptp_clock_request *request, int on);
314
Laurence Evansa6f73462013-12-04 23:47:56 +0000315/* For Siena platforms NIC time is s and ns */
316static void efx_ptp_ns_to_s_ns(s64 ns, u32 *nic_major, u32 *nic_minor)
317{
318 struct timespec ts = ns_to_timespec(ns);
319 *nic_major = ts.tv_sec;
320 *nic_minor = ts.tv_nsec;
321}
322
Jon Cooperbd9a2652013-11-18 12:54:41 +0000323static ktime_t efx_ptp_s_ns_to_ktime_correction(u32 nic_major, u32 nic_minor,
324 s32 correction)
Laurence Evansa6f73462013-12-04 23:47:56 +0000325{
326 ktime_t kt = ktime_set(nic_major, nic_minor);
327 if (correction >= 0)
328 kt = ktime_add_ns(kt, (u64)correction);
329 else
330 kt = ktime_sub_ns(kt, (u64)-correction);
331 return kt;
332}
333
334/* To convert from s27 format to ns we multiply then divide by a power of 2.
335 * For the conversion from ns to s27, the operation is also converted to a
336 * multiply and shift.
337 */
338#define S27_TO_NS_SHIFT (27)
339#define NS_TO_S27_MULT (((1ULL << 63) + NSEC_PER_SEC / 2) / NSEC_PER_SEC)
340#define NS_TO_S27_SHIFT (63 - S27_TO_NS_SHIFT)
341#define S27_MINOR_MAX (1 << S27_TO_NS_SHIFT)
342
343/* For Huntington platforms NIC time is in seconds and fractions of a second
344 * where the minor register only uses 27 bits in units of 2^-27s.
345 */
346static void efx_ptp_ns_to_s27(s64 ns, u32 *nic_major, u32 *nic_minor)
347{
348 struct timespec ts = ns_to_timespec(ns);
349 u32 maj = ts.tv_sec;
350 u32 min = (u32)(((u64)ts.tv_nsec * NS_TO_S27_MULT +
351 (1ULL << (NS_TO_S27_SHIFT - 1))) >> NS_TO_S27_SHIFT);
352
353 /* The conversion can result in the minor value exceeding the maximum.
354 * In this case, round up to the next second.
355 */
356 if (min >= S27_MINOR_MAX) {
357 min -= S27_MINOR_MAX;
358 maj++;
359 }
360
361 *nic_major = maj;
362 *nic_minor = min;
363}
364
Jon Cooperbd9a2652013-11-18 12:54:41 +0000365static inline ktime_t efx_ptp_s27_to_ktime(u32 nic_major, u32 nic_minor)
Laurence Evansa6f73462013-12-04 23:47:56 +0000366{
Jon Cooperbd9a2652013-11-18 12:54:41 +0000367 u32 ns = (u32)(((u64)nic_minor * NSEC_PER_SEC +
368 (1ULL << (S27_TO_NS_SHIFT - 1))) >> S27_TO_NS_SHIFT);
369 return ktime_set(nic_major, ns);
370}
Laurence Evansa6f73462013-12-04 23:47:56 +0000371
Jon Cooperbd9a2652013-11-18 12:54:41 +0000372static ktime_t efx_ptp_s27_to_ktime_correction(u32 nic_major, u32 nic_minor,
373 s32 correction)
374{
Laurence Evansa6f73462013-12-04 23:47:56 +0000375 /* Apply the correction and deal with carry */
376 nic_minor += correction;
377 if ((s32)nic_minor < 0) {
378 nic_minor += S27_MINOR_MAX;
379 nic_major--;
380 } else if (nic_minor >= S27_MINOR_MAX) {
381 nic_minor -= S27_MINOR_MAX;
382 nic_major++;
383 }
384
Jon Cooperbd9a2652013-11-18 12:54:41 +0000385 return efx_ptp_s27_to_ktime(nic_major, nic_minor);
Laurence Evansa6f73462013-12-04 23:47:56 +0000386}
387
388/* Get PTP attributes and set up time conversions */
389static int efx_ptp_get_attributes(struct efx_nic *efx)
390{
391 MCDI_DECLARE_BUF(inbuf, MC_CMD_PTP_IN_GET_ATTRIBUTES_LEN);
392 MCDI_DECLARE_BUF(outbuf, MC_CMD_PTP_OUT_GET_ATTRIBUTES_LEN);
393 struct efx_ptp_data *ptp = efx->ptp_data;
394 int rc;
395 u32 fmt;
396 size_t out_len;
397
398 /* Get the PTP attributes. If the NIC doesn't support the operation we
399 * use the default format for compatibility with older NICs i.e.
400 * seconds and nanoseconds.
401 */
402 MCDI_SET_DWORD(inbuf, PTP_IN_OP, MC_CMD_PTP_OP_GET_ATTRIBUTES);
403 MCDI_SET_DWORD(inbuf, PTP_IN_PERIPH_ID, 0);
404 rc = efx_mcdi_rpc(efx, MC_CMD_PTP, inbuf, sizeof(inbuf),
405 outbuf, sizeof(outbuf), &out_len);
406 if (rc == 0)
407 fmt = MCDI_DWORD(outbuf, PTP_OUT_GET_ATTRIBUTES_TIME_FORMAT);
408 else if (rc == -EINVAL)
409 fmt = MC_CMD_PTP_OUT_GET_ATTRIBUTES_SECONDS_NANOSECONDS;
410 else
411 return rc;
412
413 if (fmt == MC_CMD_PTP_OUT_GET_ATTRIBUTES_SECONDS_27FRACTION) {
414 ptp->ns_to_nic_time = efx_ptp_ns_to_s27;
Jon Cooperbd9a2652013-11-18 12:54:41 +0000415 ptp->nic_to_kernel_time = efx_ptp_s27_to_ktime_correction;
Laurence Evansa6f73462013-12-04 23:47:56 +0000416 } else if (fmt == MC_CMD_PTP_OUT_GET_ATTRIBUTES_SECONDS_NANOSECONDS) {
417 ptp->ns_to_nic_time = efx_ptp_ns_to_s_ns;
Jon Cooperbd9a2652013-11-18 12:54:41 +0000418 ptp->nic_to_kernel_time = efx_ptp_s_ns_to_ktime_correction;
Laurence Evansa6f73462013-12-04 23:47:56 +0000419 } else {
420 return -ERANGE;
421 }
422
423 ptp->time_format = fmt;
424
425 /* MC_CMD_PTP_OP_GET_ATTRIBUTES is an extended version of an older
426 * operation MC_CMD_PTP_OP_GET_TIME_FORMAT that also returns a value
427 * to use for the minimum acceptable corrected synchronization window.
428 * If we have the extra information store it. For older firmware that
429 * does not implement the extended command use the default value.
430 */
431 if (rc == 0 && out_len >= MC_CMD_PTP_OUT_GET_ATTRIBUTES_LEN)
432 ptp->min_synchronisation_ns =
433 MCDI_DWORD(outbuf,
434 PTP_OUT_GET_ATTRIBUTES_SYNC_WINDOW_MIN);
435 else
436 ptp->min_synchronisation_ns = DEFAULT_MIN_SYNCHRONISATION_NS;
437
438 return 0;
439}
440
441/* Get PTP timestamp corrections */
442static int efx_ptp_get_timestamp_corrections(struct efx_nic *efx)
443{
444 MCDI_DECLARE_BUF(inbuf, MC_CMD_PTP_IN_GET_TIMESTAMP_CORRECTIONS_LEN);
445 MCDI_DECLARE_BUF(outbuf, MC_CMD_PTP_OUT_GET_TIMESTAMP_CORRECTIONS_LEN);
446 int rc;
447
448 /* Get the timestamp corrections from the NIC. If this operation is
449 * not supported (older NICs) then no correction is required.
450 */
451 MCDI_SET_DWORD(inbuf, PTP_IN_OP,
452 MC_CMD_PTP_OP_GET_TIMESTAMP_CORRECTIONS);
453 MCDI_SET_DWORD(inbuf, PTP_IN_PERIPH_ID, 0);
454
455 rc = efx_mcdi_rpc(efx, MC_CMD_PTP, inbuf, sizeof(inbuf),
456 outbuf, sizeof(outbuf), NULL);
457 if (rc == 0) {
458 efx->ptp_data->ts_corrections.tx = MCDI_DWORD(outbuf,
459 PTP_OUT_GET_TIMESTAMP_CORRECTIONS_TRANSMIT);
460 efx->ptp_data->ts_corrections.rx = MCDI_DWORD(outbuf,
461 PTP_OUT_GET_TIMESTAMP_CORRECTIONS_RECEIVE);
462 efx->ptp_data->ts_corrections.pps_out = MCDI_DWORD(outbuf,
463 PTP_OUT_GET_TIMESTAMP_CORRECTIONS_PPS_OUT);
464 efx->ptp_data->ts_corrections.pps_in = MCDI_DWORD(outbuf,
465 PTP_OUT_GET_TIMESTAMP_CORRECTIONS_PPS_IN);
466 } else if (rc == -EINVAL) {
467 efx->ptp_data->ts_corrections.tx = 0;
468 efx->ptp_data->ts_corrections.rx = 0;
469 efx->ptp_data->ts_corrections.pps_out = 0;
470 efx->ptp_data->ts_corrections.pps_in = 0;
471 } else {
472 return rc;
473 }
474
475 return 0;
476}
477
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100478/* Enable MCDI PTP support. */
479static int efx_ptp_enable(struct efx_nic *efx)
480{
Ben Hutchings59cfc472012-09-14 17:30:10 +0100481 MCDI_DECLARE_BUF(inbuf, MC_CMD_PTP_IN_ENABLE_LEN);
Edward Cree1e0b8122013-05-31 18:36:12 +0100482 MCDI_DECLARE_BUF_OUT_OR_ERR(outbuf, 0);
483 int rc;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100484
485 MCDI_SET_DWORD(inbuf, PTP_IN_OP, MC_CMD_PTP_OP_ENABLE);
Laurence Evansc1d828b2013-03-06 15:33:17 +0000486 MCDI_SET_DWORD(inbuf, PTP_IN_PERIPH_ID, 0);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100487 MCDI_SET_DWORD(inbuf, PTP_IN_ENABLE_QUEUE,
Ben Hutchingsac36baf2013-10-15 17:54:56 +0100488 efx->ptp_data->channel ?
489 efx->ptp_data->channel->channel : 0);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100490 MCDI_SET_DWORD(inbuf, PTP_IN_ENABLE_MODE, efx->ptp_data->mode);
491
Edward Cree1e0b8122013-05-31 18:36:12 +0100492 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_PTP, inbuf, sizeof(inbuf),
493 outbuf, sizeof(outbuf), NULL);
494 rc = (rc == -EALREADY) ? 0 : rc;
495 if (rc)
496 efx_mcdi_display_error(efx, MC_CMD_PTP,
497 MC_CMD_PTP_IN_ENABLE_LEN,
498 outbuf, sizeof(outbuf), rc);
499 return rc;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100500}
501
502/* Disable MCDI PTP support.
503 *
504 * Note that this function should never rely on the presence of ptp_data -
505 * may be called before that exists.
506 */
507static int efx_ptp_disable(struct efx_nic *efx)
508{
Ben Hutchings59cfc472012-09-14 17:30:10 +0100509 MCDI_DECLARE_BUF(inbuf, MC_CMD_PTP_IN_DISABLE_LEN);
Edward Cree1e0b8122013-05-31 18:36:12 +0100510 MCDI_DECLARE_BUF_OUT_OR_ERR(outbuf, 0);
511 int rc;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100512
513 MCDI_SET_DWORD(inbuf, PTP_IN_OP, MC_CMD_PTP_OP_DISABLE);
Laurence Evansc1d828b2013-03-06 15:33:17 +0000514 MCDI_SET_DWORD(inbuf, PTP_IN_PERIPH_ID, 0);
Edward Cree1e0b8122013-05-31 18:36:12 +0100515 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_PTP, inbuf, sizeof(inbuf),
516 outbuf, sizeof(outbuf), NULL);
517 rc = (rc == -EALREADY) ? 0 : rc;
518 if (rc)
519 efx_mcdi_display_error(efx, MC_CMD_PTP,
520 MC_CMD_PTP_IN_DISABLE_LEN,
521 outbuf, sizeof(outbuf), rc);
522 return rc;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100523}
524
525static void efx_ptp_deliver_rx_queue(struct sk_buff_head *q)
526{
527 struct sk_buff *skb;
528
529 while ((skb = skb_dequeue(q))) {
530 local_bh_disable();
531 netif_receive_skb(skb);
532 local_bh_enable();
533 }
534}
535
536static void efx_ptp_handle_no_channel(struct efx_nic *efx)
537{
538 netif_err(efx, drv, efx->net_dev,
539 "ERROR: PTP requires MSI-X and 1 additional interrupt"
540 "vector. PTP disabled\n");
541}
542
543/* Repeatedly send the host time to the MC which will capture the hardware
544 * time.
545 */
546static void efx_ptp_send_times(struct efx_nic *efx,
547 struct pps_event_time *last_time)
548{
549 struct pps_event_time now;
550 struct timespec limit;
551 struct efx_ptp_data *ptp = efx->ptp_data;
552 struct timespec start;
553 int *mc_running = ptp->start.addr;
554
555 pps_get_ts(&now);
556 start = now.ts_real;
557 limit = now.ts_real;
558 timespec_add_ns(&limit, SYNCHRONISE_PERIOD_NS);
559
560 /* Write host time for specified period or until MC is done */
561 while ((timespec_compare(&now.ts_real, &limit) < 0) &&
562 ACCESS_ONCE(*mc_running)) {
563 struct timespec update_time;
564 unsigned int host_time;
565
566 /* Don't update continuously to avoid saturating the PCIe bus */
567 update_time = now.ts_real;
568 timespec_add_ns(&update_time, SYNCHRONISATION_GRANULARITY_NS);
569 do {
570 pps_get_ts(&now);
571 } while ((timespec_compare(&now.ts_real, &update_time) < 0) &&
572 ACCESS_ONCE(*mc_running));
573
574 /* Synchronise NIC with single word of time only */
575 host_time = (now.ts_real.tv_sec << MC_NANOSECOND_BITS |
576 now.ts_real.tv_nsec);
577 /* Update host time in NIC memory */
Laurence Evans977a5d52013-03-07 11:46:58 +0000578 efx->type->ptp_write_host_time(efx, host_time);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100579 }
580 *last_time = now;
581}
582
583/* Read a timeset from the MC's results and partial process. */
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100584static void efx_ptp_read_timeset(MCDI_DECLARE_STRUCT_PTR(data),
585 struct efx_ptp_timeset *timeset)
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100586{
587 unsigned start_ns, end_ns;
588
589 timeset->host_start = MCDI_DWORD(data, PTP_OUT_SYNCHRONIZE_HOSTSTART);
Laurence Evansa6f73462013-12-04 23:47:56 +0000590 timeset->major = MCDI_DWORD(data, PTP_OUT_SYNCHRONIZE_MAJOR);
591 timeset->minor = MCDI_DWORD(data, PTP_OUT_SYNCHRONIZE_MINOR);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100592 timeset->host_end = MCDI_DWORD(data, PTP_OUT_SYNCHRONIZE_HOSTEND),
Laurence Evansa6f73462013-12-04 23:47:56 +0000593 timeset->wait = MCDI_DWORD(data, PTP_OUT_SYNCHRONIZE_WAITNS);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100594
595 /* Ignore seconds */
596 start_ns = timeset->host_start & MC_NANOSECOND_MASK;
597 end_ns = timeset->host_end & MC_NANOSECOND_MASK;
598 /* Allow for rollover */
599 if (end_ns < start_ns)
600 end_ns += NSEC_PER_SEC;
601 /* Determine duration of operation */
602 timeset->window = end_ns - start_ns;
603}
604
605/* Process times received from MC.
606 *
607 * Extract times from returned results, and establish the minimum value
608 * seen. The minimum value represents the "best" possible time and events
609 * too much greater than this are rejected - the machine is, perhaps, too
610 * busy. A number of readings are taken so that, hopefully, at least one good
611 * synchronisation will be seen in the results.
612 */
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100613static int
614efx_ptp_process_times(struct efx_nic *efx, MCDI_DECLARE_STRUCT_PTR(synch_buf),
615 size_t response_length,
616 const struct pps_event_time *last_time)
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100617{
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100618 unsigned number_readings =
619 MCDI_VAR_ARRAY_LEN(response_length,
620 PTP_OUT_SYNCHRONIZE_TIMESET);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100621 unsigned i;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100622 unsigned ngood = 0;
623 unsigned last_good = 0;
624 struct efx_ptp_data *ptp = efx->ptp_data;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100625 u32 last_sec;
626 u32 start_sec;
627 struct timespec delta;
Laurence Evansa6f73462013-12-04 23:47:56 +0000628 ktime_t mc_time;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100629
630 if (number_readings == 0)
631 return -EAGAIN;
632
Laurence Evansdfd8d582013-11-21 10:38:24 +0000633 /* Read the set of results and find the last good host-MC
634 * synchronization result. The MC times when it finishes reading the
635 * host time so the corrected window time should be fairly constant
636 * for a given platform.
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100637 */
638 for (i = 0; i < number_readings; i++) {
Laurence Evansdfd8d582013-11-21 10:38:24 +0000639 s32 window, corrected;
Laurence Evansa6f73462013-12-04 23:47:56 +0000640 struct timespec wait;
Laurence Evansdfd8d582013-11-21 10:38:24 +0000641
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100642 efx_ptp_read_timeset(
643 MCDI_ARRAY_STRUCT_PTR(synch_buf,
644 PTP_OUT_SYNCHRONIZE_TIMESET, i),
645 &ptp->timeset[i]);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100646
Laurence Evansa6f73462013-12-04 23:47:56 +0000647 wait = ktime_to_timespec(
648 ptp->nic_to_kernel_time(0, ptp->timeset[i].wait, 0));
Laurence Evansdfd8d582013-11-21 10:38:24 +0000649 window = ptp->timeset[i].window;
Laurence Evansa6f73462013-12-04 23:47:56 +0000650 corrected = window - wait.tv_nsec;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100651
Laurence Evansdfd8d582013-11-21 10:38:24 +0000652 /* We expect the uncorrected synchronization window to be at
653 * least as large as the interval between host start and end
654 * times. If it is smaller than this then this is mostly likely
655 * to be a consequence of the host's time being adjusted.
656 * Check that the corrected sync window is in a reasonable
657 * range. If it is out of range it is likely to be because an
658 * interrupt or other delay occurred between reading the system
659 * time and writing it to MC memory.
660 */
661 if (window >= SYNCHRONISATION_GRANULARITY_NS &&
662 corrected < MAX_SYNCHRONISATION_NS &&
Laurence Evansa6f73462013-12-04 23:47:56 +0000663 corrected >= ptp->min_synchronisation_ns) {
Laurence Evansdfd8d582013-11-21 10:38:24 +0000664 ngood++;
665 last_good = i;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100666 }
Laurence Evansdfd8d582013-11-21 10:38:24 +0000667 }
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100668
669 if (ngood == 0) {
670 netif_warn(efx, drv, efx->net_dev,
Laurence Evans94cd60d2013-11-21 10:38:24 +0000671 "PTP no suitable synchronisations\n");
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100672 return -EAGAIN;
673 }
674
Laurence Evansa6f73462013-12-04 23:47:56 +0000675 /* Convert the NIC time into kernel time. No correction is required-
676 * this time is the output of a firmware process.
677 */
678 mc_time = ptp->nic_to_kernel_time(ptp->timeset[last_good].major,
679 ptp->timeset[last_good].minor, 0);
680
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100681 /* Calculate delay from actual PPS to last_time */
Laurence Evansa6f73462013-12-04 23:47:56 +0000682 delta = ktime_to_timespec(mc_time);
683 delta.tv_nsec +=
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100684 last_time->ts_real.tv_nsec -
685 (ptp->timeset[last_good].host_start & MC_NANOSECOND_MASK);
686
687 /* It is possible that the seconds rolled over between taking
688 * the start reading and the last value written by the host. The
689 * timescales are such that a gap of more than one second is never
690 * expected.
691 */
692 start_sec = ptp->timeset[last_good].host_start >> MC_NANOSECOND_BITS;
693 last_sec = last_time->ts_real.tv_sec & MC_SECOND_MASK;
694 if (start_sec != last_sec) {
695 if (((start_sec + 1) & MC_SECOND_MASK) != last_sec) {
696 netif_warn(efx, hw, efx->net_dev,
697 "PTP bad synchronisation seconds\n");
698 return -EAGAIN;
699 } else {
700 delta.tv_sec = 1;
701 }
702 } else {
703 delta.tv_sec = 0;
704 }
705
706 ptp->host_time_pps = *last_time;
707 pps_sub_ts(&ptp->host_time_pps, delta);
708
709 return 0;
710}
711
712/* Synchronize times between the host and the MC */
713static int efx_ptp_synchronize(struct efx_nic *efx, unsigned int num_readings)
714{
715 struct efx_ptp_data *ptp = efx->ptp_data;
Ben Hutchings59cfc472012-09-14 17:30:10 +0100716 MCDI_DECLARE_BUF(synch_buf, MC_CMD_PTP_OUT_SYNCHRONIZE_LENMAX);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100717 size_t response_length;
718 int rc;
719 unsigned long timeout;
720 struct pps_event_time last_time = {};
721 unsigned int loops = 0;
722 int *start = ptp->start.addr;
723
724 MCDI_SET_DWORD(synch_buf, PTP_IN_OP, MC_CMD_PTP_OP_SYNCHRONIZE);
Laurence Evansc1d828b2013-03-06 15:33:17 +0000725 MCDI_SET_DWORD(synch_buf, PTP_IN_PERIPH_ID, 0);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100726 MCDI_SET_DWORD(synch_buf, PTP_IN_SYNCHRONIZE_NUMTIMESETS,
727 num_readings);
Ben Hutchings338f74d2012-10-10 23:20:17 +0100728 MCDI_SET_QWORD(synch_buf, PTP_IN_SYNCHRONIZE_START_ADDR,
729 ptp->start.dma_addr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100730
731 /* Clear flag that signals MC ready */
732 ACCESS_ONCE(*start) = 0;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100733 rc = efx_mcdi_rpc_start(efx, MC_CMD_PTP, synch_buf,
734 MC_CMD_PTP_IN_SYNCHRONIZE_LEN);
735 EFX_BUG_ON_PARANOID(rc);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100736
737 /* Wait for start from MCDI (or timeout) */
738 timeout = jiffies + msecs_to_jiffies(MAX_SYNCHRONISE_WAIT_MS);
739 while (!ACCESS_ONCE(*start) && (time_before(jiffies, timeout))) {
740 udelay(20); /* Usually start MCDI execution quickly */
741 loops++;
742 }
743
744 if (ACCESS_ONCE(*start))
745 efx_ptp_send_times(efx, &last_time);
746
747 /* Collect results */
748 rc = efx_mcdi_rpc_finish(efx, MC_CMD_PTP,
749 MC_CMD_PTP_IN_SYNCHRONIZE_LEN,
750 synch_buf, sizeof(synch_buf),
751 &response_length);
752 if (rc == 0)
753 rc = efx_ptp_process_times(efx, synch_buf, response_length,
754 &last_time);
755
756 return rc;
757}
758
759/* Transmit a PTP packet, via the MCDI interface, to the wire. */
760static int efx_ptp_xmit_skb(struct efx_nic *efx, struct sk_buff *skb)
761{
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100762 struct efx_ptp_data *ptp_data = efx->ptp_data;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100763 struct skb_shared_hwtstamps timestamps;
764 int rc = -EIO;
Ben Hutchings59cfc472012-09-14 17:30:10 +0100765 MCDI_DECLARE_BUF(txtime, MC_CMD_PTP_OUT_TRANSMIT_LEN);
Ben Hutchings9528b922012-09-14 17:31:41 +0100766 size_t len;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100767
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100768 MCDI_SET_DWORD(ptp_data->txbuf, PTP_IN_OP, MC_CMD_PTP_OP_TRANSMIT);
Laurence Evansc1d828b2013-03-06 15:33:17 +0000769 MCDI_SET_DWORD(ptp_data->txbuf, PTP_IN_PERIPH_ID, 0);
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100770 MCDI_SET_DWORD(ptp_data->txbuf, PTP_IN_TRANSMIT_LENGTH, skb->len);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100771 if (skb_shinfo(skb)->nr_frags != 0) {
772 rc = skb_linearize(skb);
773 if (rc != 0)
774 goto fail;
775 }
776
777 if (skb->ip_summed == CHECKSUM_PARTIAL) {
778 rc = skb_checksum_help(skb);
779 if (rc != 0)
780 goto fail;
781 }
782 skb_copy_from_linear_data(skb,
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +0100783 MCDI_PTR(ptp_data->txbuf,
784 PTP_IN_TRANSMIT_PACKET),
Ben Hutchings9528b922012-09-14 17:31:41 +0100785 skb->len);
786 rc = efx_mcdi_rpc(efx, MC_CMD_PTP,
787 ptp_data->txbuf, MC_CMD_PTP_IN_TRANSMIT_LEN(skb->len),
788 txtime, sizeof(txtime), &len);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100789 if (rc != 0)
790 goto fail;
791
792 memset(&timestamps, 0, sizeof(timestamps));
Laurence Evansa6f73462013-12-04 23:47:56 +0000793 timestamps.hwtstamp = ptp_data->nic_to_kernel_time(
794 MCDI_DWORD(txtime, PTP_OUT_TRANSMIT_MAJOR),
795 MCDI_DWORD(txtime, PTP_OUT_TRANSMIT_MINOR),
796 ptp_data->ts_corrections.tx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100797
798 skb_tstamp_tx(skb, &timestamps);
799
800 rc = 0;
801
802fail:
803 dev_kfree_skb(skb);
804
805 return rc;
806}
807
808static void efx_ptp_drop_time_expired_events(struct efx_nic *efx)
809{
810 struct efx_ptp_data *ptp = efx->ptp_data;
811 struct list_head *cursor;
812 struct list_head *next;
813
Jon Cooperbd9a2652013-11-18 12:54:41 +0000814 if (ptp->rx_ts_inline)
815 return;
816
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100817 /* Drop time-expired events */
818 spin_lock_bh(&ptp->evt_lock);
819 if (!list_empty(&ptp->evt_list)) {
820 list_for_each_safe(cursor, next, &ptp->evt_list) {
821 struct efx_ptp_event_rx *evt;
822
823 evt = list_entry(cursor, struct efx_ptp_event_rx,
824 link);
825 if (time_after(jiffies, evt->expiry)) {
Wei Yongjun9545f4e2012-10-07 03:41:50 +0000826 list_move(&evt->link, &ptp->evt_free_list);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100827 netif_warn(efx, hw, efx->net_dev,
828 "PTP rx event dropped\n");
829 }
830 }
831 }
Laurence Evansf3211602013-01-28 14:51:17 +0000832 /* If the event overflow flag is set and the event list is now empty
833 * clear the flag to re-enable the overflow warning message.
834 */
835 if (ptp->evt_overflow && list_empty(&ptp->evt_list))
836 ptp->evt_overflow = false;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100837 spin_unlock_bh(&ptp->evt_lock);
838}
839
840static enum ptp_packet_state efx_ptp_match_rx(struct efx_nic *efx,
841 struct sk_buff *skb)
842{
843 struct efx_ptp_data *ptp = efx->ptp_data;
844 bool evts_waiting;
845 struct list_head *cursor;
846 struct list_head *next;
847 struct efx_ptp_match *match;
848 enum ptp_packet_state rc = PTP_PACKET_STATE_UNMATCHED;
849
Jon Cooperbd9a2652013-11-18 12:54:41 +0000850 WARN_ON_ONCE(ptp->rx_ts_inline);
851
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100852 spin_lock_bh(&ptp->evt_lock);
853 evts_waiting = !list_empty(&ptp->evt_list);
854 spin_unlock_bh(&ptp->evt_lock);
855
856 if (!evts_waiting)
857 return PTP_PACKET_STATE_UNMATCHED;
858
859 match = (struct efx_ptp_match *)skb->cb;
860 /* Look for a matching timestamp in the event queue */
861 spin_lock_bh(&ptp->evt_lock);
862 list_for_each_safe(cursor, next, &ptp->evt_list) {
863 struct efx_ptp_event_rx *evt;
864
865 evt = list_entry(cursor, struct efx_ptp_event_rx, link);
866 if ((evt->seq0 == match->words[0]) &&
867 (evt->seq1 == match->words[1])) {
868 struct skb_shared_hwtstamps *timestamps;
869
870 /* Match - add in hardware timestamp */
871 timestamps = skb_hwtstamps(skb);
872 timestamps->hwtstamp = evt->hwtimestamp;
873
874 match->state = PTP_PACKET_STATE_MATCHED;
875 rc = PTP_PACKET_STATE_MATCHED;
Wei Yongjun9545f4e2012-10-07 03:41:50 +0000876 list_move(&evt->link, &ptp->evt_free_list);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100877 break;
878 }
879 }
Laurence Evansf3211602013-01-28 14:51:17 +0000880 /* If the event overflow flag is set and the event list is now empty
881 * clear the flag to re-enable the overflow warning message.
882 */
883 if (ptp->evt_overflow && list_empty(&ptp->evt_list))
884 ptp->evt_overflow = false;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100885 spin_unlock_bh(&ptp->evt_lock);
886
887 return rc;
888}
889
890/* Process any queued receive events and corresponding packets
891 *
892 * q is returned with all the packets that are ready for delivery.
893 * true is returned if at least one of those packets requires
894 * synchronisation.
895 */
896static bool efx_ptp_process_events(struct efx_nic *efx, struct sk_buff_head *q)
897{
898 struct efx_ptp_data *ptp = efx->ptp_data;
899 bool rc = false;
900 struct sk_buff *skb;
901
902 while ((skb = skb_dequeue(&ptp->rxq))) {
903 struct efx_ptp_match *match;
904
905 match = (struct efx_ptp_match *)skb->cb;
906 if (match->state == PTP_PACKET_STATE_MATCH_UNWANTED) {
907 __skb_queue_tail(q, skb);
908 } else if (efx_ptp_match_rx(efx, skb) ==
909 PTP_PACKET_STATE_MATCHED) {
910 rc = true;
911 __skb_queue_tail(q, skb);
912 } else if (time_after(jiffies, match->expiry)) {
913 match->state = PTP_PACKET_STATE_TIMED_OUT;
Ben Hutchings35f9a7a2013-12-06 22:10:46 +0000914 if (net_ratelimit())
915 netif_warn(efx, rx_err, efx->net_dev,
916 "PTP packet - no timestamp seen\n");
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100917 __skb_queue_tail(q, skb);
918 } else {
919 /* Replace unprocessed entry and stop */
920 skb_queue_head(&ptp->rxq, skb);
921 break;
922 }
923 }
924
925 return rc;
926}
927
928/* Complete processing of a received packet */
929static inline void efx_ptp_process_rx(struct efx_nic *efx, struct sk_buff *skb)
930{
931 local_bh_disable();
932 netif_receive_skb(skb);
933 local_bh_enable();
934}
935
Ben Hutchings62a1c702013-10-15 17:54:56 +0100936static void efx_ptp_remove_multicast_filters(struct efx_nic *efx)
937{
938 struct efx_ptp_data *ptp = efx->ptp_data;
939
940 if (ptp->rxfilter_installed) {
941 efx_filter_remove_id_safe(efx, EFX_FILTER_PRI_REQUIRED,
942 ptp->rxfilter_general);
943 efx_filter_remove_id_safe(efx, EFX_FILTER_PRI_REQUIRED,
944 ptp->rxfilter_event);
945 ptp->rxfilter_installed = false;
946 }
947}
948
949static int efx_ptp_insert_multicast_filters(struct efx_nic *efx)
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100950{
951 struct efx_ptp_data *ptp = efx->ptp_data;
952 struct efx_filter_spec rxfilter;
953 int rc;
954
Ben Hutchingsac36baf2013-10-15 17:54:56 +0100955 if (!ptp->channel || ptp->rxfilter_installed)
Ben Hutchings62a1c702013-10-15 17:54:56 +0100956 return 0;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100957
958 /* Must filter on both event and general ports to ensure
959 * that there is no packet re-ordering.
960 */
961 efx_filter_init_rx(&rxfilter, EFX_FILTER_PRI_REQUIRED, 0,
962 efx_rx_queue_index(
963 efx_channel_get_rx_queue(ptp->channel)));
964 rc = efx_filter_set_ipv4_local(&rxfilter, IPPROTO_UDP,
965 htonl(PTP_ADDRESS),
966 htons(PTP_EVENT_PORT));
967 if (rc != 0)
968 return rc;
969
970 rc = efx_filter_insert_filter(efx, &rxfilter, true);
971 if (rc < 0)
972 return rc;
973 ptp->rxfilter_event = rc;
974
975 efx_filter_init_rx(&rxfilter, EFX_FILTER_PRI_REQUIRED, 0,
976 efx_rx_queue_index(
977 efx_channel_get_rx_queue(ptp->channel)));
978 rc = efx_filter_set_ipv4_local(&rxfilter, IPPROTO_UDP,
979 htonl(PTP_ADDRESS),
980 htons(PTP_GENERAL_PORT));
981 if (rc != 0)
982 goto fail;
983
984 rc = efx_filter_insert_filter(efx, &rxfilter, true);
985 if (rc < 0)
986 goto fail;
987 ptp->rxfilter_general = rc;
988
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100989 ptp->rxfilter_installed = true;
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100990 return 0;
991
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100992fail:
993 efx_filter_remove_id_safe(efx, EFX_FILTER_PRI_REQUIRED,
994 ptp->rxfilter_event);
Ben Hutchings62a1c702013-10-15 17:54:56 +0100995 return rc;
996}
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100997
Ben Hutchings62a1c702013-10-15 17:54:56 +0100998static int efx_ptp_start(struct efx_nic *efx)
999{
1000 struct efx_ptp_data *ptp = efx->ptp_data;
1001 int rc;
1002
1003 ptp->reset_required = false;
1004
1005 rc = efx_ptp_insert_multicast_filters(efx);
1006 if (rc)
1007 return rc;
1008
1009 rc = efx_ptp_enable(efx);
1010 if (rc != 0)
1011 goto fail;
1012
1013 ptp->evt_frag_idx = 0;
1014 ptp->current_adjfreq = 0;
1015
1016 return 0;
1017
1018fail:
1019 efx_ptp_remove_multicast_filters(efx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001020 return rc;
1021}
1022
1023static int efx_ptp_stop(struct efx_nic *efx)
1024{
1025 struct efx_ptp_data *ptp = efx->ptp_data;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001026 struct list_head *cursor;
1027 struct list_head *next;
Alexandre Rames2ea4dc22013-11-08 10:20:31 +00001028 int rc;
1029
1030 if (ptp == NULL)
1031 return 0;
1032
1033 rc = efx_ptp_disable(efx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001034
Ben Hutchings62a1c702013-10-15 17:54:56 +01001035 efx_ptp_remove_multicast_filters(efx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001036
1037 /* Make sure RX packets are really delivered */
1038 efx_ptp_deliver_rx_queue(&efx->ptp_data->rxq);
1039 skb_queue_purge(&efx->ptp_data->txq);
1040
1041 /* Drop any pending receive events */
1042 spin_lock_bh(&efx->ptp_data->evt_lock);
1043 list_for_each_safe(cursor, next, &efx->ptp_data->evt_list) {
Wei Yongjun9545f4e2012-10-07 03:41:50 +00001044 list_move(cursor, &efx->ptp_data->evt_free_list);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001045 }
Laurence Evansf3211602013-01-28 14:51:17 +00001046 ptp->evt_overflow = false;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001047 spin_unlock_bh(&efx->ptp_data->evt_lock);
1048
1049 return rc;
1050}
1051
Alexandre Rames2ea4dc22013-11-08 10:20:31 +00001052static int efx_ptp_restart(struct efx_nic *efx)
1053{
1054 if (efx->ptp_data && efx->ptp_data->enabled)
1055 return efx_ptp_start(efx);
1056 return 0;
1057}
1058
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001059static void efx_ptp_pps_worker(struct work_struct *work)
1060{
1061 struct efx_ptp_data *ptp =
1062 container_of(work, struct efx_ptp_data, pps_work);
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001063 struct efx_nic *efx = ptp->efx;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001064 struct ptp_clock_event ptp_evt;
1065
1066 if (efx_ptp_synchronize(efx, PTP_SYNC_ATTEMPTS))
1067 return;
1068
1069 ptp_evt.type = PTP_CLOCK_PPSUSR;
1070 ptp_evt.pps_times = ptp->host_time_pps;
1071 ptp_clock_event(ptp->phc_clock, &ptp_evt);
1072}
1073
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001074static void efx_ptp_worker(struct work_struct *work)
1075{
1076 struct efx_ptp_data *ptp_data =
1077 container_of(work, struct efx_ptp_data, work);
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001078 struct efx_nic *efx = ptp_data->efx;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001079 struct sk_buff *skb;
1080 struct sk_buff_head tempq;
1081
1082 if (ptp_data->reset_required) {
1083 efx_ptp_stop(efx);
1084 efx_ptp_start(efx);
1085 return;
1086 }
1087
1088 efx_ptp_drop_time_expired_events(efx);
1089
1090 __skb_queue_head_init(&tempq);
1091 if (efx_ptp_process_events(efx, &tempq) ||
1092 !skb_queue_empty(&ptp_data->txq)) {
1093
1094 while ((skb = skb_dequeue(&ptp_data->txq)))
1095 efx_ptp_xmit_skb(efx, skb);
1096 }
1097
1098 while ((skb = __skb_dequeue(&tempq)))
1099 efx_ptp_process_rx(efx, skb);
1100}
1101
Ben Hutchings5d0dab02013-10-16 18:32:41 +01001102static const struct ptp_clock_info efx_phc_clock_info = {
1103 .owner = THIS_MODULE,
1104 .name = "sfc",
1105 .max_adj = MAX_PPB,
1106 .n_alarm = 0,
1107 .n_ext_ts = 0,
1108 .n_per_out = 0,
1109 .pps = 1,
1110 .adjfreq = efx_phc_adjfreq,
1111 .adjtime = efx_phc_adjtime,
1112 .gettime = efx_phc_gettime,
1113 .settime = efx_phc_settime,
1114 .enable = efx_phc_enable,
1115};
1116
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001117/* Initialise PTP state. */
1118int efx_ptp_probe(struct efx_nic *efx, struct efx_channel *channel)
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001119{
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001120 struct efx_ptp_data *ptp;
1121 int rc = 0;
1122 unsigned int pos;
1123
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001124 ptp = kzalloc(sizeof(struct efx_ptp_data), GFP_KERNEL);
1125 efx->ptp_data = ptp;
1126 if (!efx->ptp_data)
1127 return -ENOMEM;
1128
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001129 ptp->efx = efx;
1130 ptp->channel = channel;
Jon Cooperbd9a2652013-11-18 12:54:41 +00001131 ptp->rx_ts_inline = efx_nic_rev(efx) >= EFX_REV_HUNT_A0;
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001132
Ben Hutchings0d19a542012-09-18 21:59:52 +01001133 rc = efx_nic_alloc_buffer(efx, &ptp->start, sizeof(int), GFP_KERNEL);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001134 if (rc != 0)
1135 goto fail1;
1136
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001137 skb_queue_head_init(&ptp->rxq);
1138 skb_queue_head_init(&ptp->txq);
1139 ptp->workwq = create_singlethread_workqueue("sfc_ptp");
1140 if (!ptp->workwq) {
1141 rc = -ENOMEM;
1142 goto fail2;
1143 }
1144
1145 INIT_WORK(&ptp->work, efx_ptp_worker);
1146 ptp->config.flags = 0;
1147 ptp->config.tx_type = HWTSTAMP_TX_OFF;
1148 ptp->config.rx_filter = HWTSTAMP_FILTER_NONE;
1149 INIT_LIST_HEAD(&ptp->evt_list);
1150 INIT_LIST_HEAD(&ptp->evt_free_list);
1151 spin_lock_init(&ptp->evt_lock);
1152 for (pos = 0; pos < MAX_RECEIVE_EVENTS; pos++)
1153 list_add(&ptp->rx_evts[pos].link, &ptp->evt_free_list);
Laurence Evansf3211602013-01-28 14:51:17 +00001154 ptp->evt_overflow = false;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001155
Laurence Evansa6f73462013-12-04 23:47:56 +00001156 /* Get the NIC PTP attributes and set up time conversions */
1157 rc = efx_ptp_get_attributes(efx);
1158 if (rc < 0)
1159 goto fail3;
1160
1161 /* Get the timestamp corrections */
1162 rc = efx_ptp_get_timestamp_corrections(efx);
1163 if (rc < 0)
1164 goto fail3;
1165
Ben Hutchings9aecda92013-12-05 21:28:42 +00001166 if (efx->mcdi->fn_flags &
1167 (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY)) {
1168 ptp->phc_clock_info = efx_phc_clock_info;
1169 ptp->phc_clock = ptp_clock_register(&ptp->phc_clock_info,
1170 &efx->pci_dev->dev);
1171 if (IS_ERR(ptp->phc_clock)) {
1172 rc = PTR_ERR(ptp->phc_clock);
1173 goto fail3;
1174 }
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001175
Ben Hutchings9aecda92013-12-05 21:28:42 +00001176 INIT_WORK(&ptp->pps_work, efx_ptp_pps_worker);
1177 ptp->pps_workwq = create_singlethread_workqueue("sfc_pps");
1178 if (!ptp->pps_workwq) {
1179 rc = -ENOMEM;
1180 goto fail4;
1181 }
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001182 }
1183 ptp->nic_ts_enabled = false;
1184
1185 return 0;
1186fail4:
1187 ptp_clock_unregister(efx->ptp_data->phc_clock);
1188
1189fail3:
1190 destroy_workqueue(efx->ptp_data->workwq);
1191
1192fail2:
1193 efx_nic_free_buffer(efx, &ptp->start);
1194
1195fail1:
1196 kfree(efx->ptp_data);
1197 efx->ptp_data = NULL;
1198
1199 return rc;
1200}
1201
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001202/* Initialise PTP channel.
1203 *
1204 * Setting core_index to zero causes the queue to be initialised and doesn't
1205 * overlap with 'rxq0' because ptp.c doesn't use skb_record_rx_queue.
1206 */
1207static int efx_ptp_probe_channel(struct efx_channel *channel)
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001208{
1209 struct efx_nic *efx = channel->efx;
1210
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001211 channel->irq_moderation = 0;
1212 channel->rx_queue.core_index = 0;
1213
1214 return efx_ptp_probe(efx, channel);
1215}
1216
1217void efx_ptp_remove(struct efx_nic *efx)
1218{
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001219 if (!efx->ptp_data)
1220 return;
1221
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001222 (void)efx_ptp_disable(efx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001223
1224 cancel_work_sync(&efx->ptp_data->work);
1225 cancel_work_sync(&efx->ptp_data->pps_work);
1226
1227 skb_queue_purge(&efx->ptp_data->rxq);
1228 skb_queue_purge(&efx->ptp_data->txq);
1229
Ben Hutchings9aecda92013-12-05 21:28:42 +00001230 if (efx->ptp_data->phc_clock) {
1231 destroy_workqueue(efx->ptp_data->pps_workwq);
1232 ptp_clock_unregister(efx->ptp_data->phc_clock);
1233 }
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001234
1235 destroy_workqueue(efx->ptp_data->workwq);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001236
1237 efx_nic_free_buffer(efx, &efx->ptp_data->start);
1238 kfree(efx->ptp_data);
1239}
1240
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001241static void efx_ptp_remove_channel(struct efx_channel *channel)
1242{
1243 efx_ptp_remove(channel->efx);
1244}
1245
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001246static void efx_ptp_get_channel_name(struct efx_channel *channel,
1247 char *buf, size_t len)
1248{
1249 snprintf(buf, len, "%s-ptp", channel->efx->name);
1250}
1251
1252/* Determine whether this packet should be processed by the PTP module
1253 * or transmitted conventionally.
1254 */
1255bool efx_ptp_is_ptp_tx(struct efx_nic *efx, struct sk_buff *skb)
1256{
1257 return efx->ptp_data &&
1258 efx->ptp_data->enabled &&
1259 skb->len >= PTP_MIN_LENGTH &&
1260 skb->len <= MC_CMD_PTP_IN_TRANSMIT_PACKET_MAXNUM &&
1261 likely(skb->protocol == htons(ETH_P_IP)) &&
Ben Hutchingse5a498e2013-12-06 19:26:40 +00001262 skb_transport_header_was_set(skb) &&
1263 skb_network_header_len(skb) >= sizeof(struct iphdr) &&
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001264 ip_hdr(skb)->protocol == IPPROTO_UDP &&
Ben Hutchingse5a498e2013-12-06 19:26:40 +00001265 skb_headlen(skb) >=
1266 skb_transport_offset(skb) + sizeof(struct udphdr) &&
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001267 udp_hdr(skb)->dest == htons(PTP_EVENT_PORT);
1268}
1269
1270/* Receive a PTP packet. Packets are queued until the arrival of
1271 * the receive timestamp from the MC - this will probably occur after the
1272 * packet arrival because of the processing in the MC.
1273 */
Ben Hutchings4a74dc62013-03-05 20:13:54 +00001274static bool efx_ptp_rx(struct efx_channel *channel, struct sk_buff *skb)
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001275{
1276 struct efx_nic *efx = channel->efx;
1277 struct efx_ptp_data *ptp = efx->ptp_data;
1278 struct efx_ptp_match *match = (struct efx_ptp_match *)skb->cb;
Laurence Evansc939a312012-11-15 10:56:07 +00001279 u8 *match_data_012, *match_data_345;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001280 unsigned int version;
1281
1282 match->expiry = jiffies + msecs_to_jiffies(PKT_EVENT_LIFETIME_MS);
1283
1284 /* Correct version? */
1285 if (ptp->mode == MC_CMD_PTP_MODE_V1) {
Alexandre Rames97d48a12013-01-11 12:26:21 +00001286 if (!pskb_may_pull(skb, PTP_V1_MIN_LENGTH)) {
Ben Hutchings4a74dc62013-03-05 20:13:54 +00001287 return false;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001288 }
1289 version = ntohs(*(__be16 *)&skb->data[PTP_V1_VERSION_OFFSET]);
1290 if (version != PTP_VERSION_V1) {
Ben Hutchings4a74dc62013-03-05 20:13:54 +00001291 return false;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001292 }
Laurence Evansc939a312012-11-15 10:56:07 +00001293
1294 /* PTP V1 uses all six bytes of the UUID to match the packet
1295 * to the timestamp
1296 */
1297 match_data_012 = skb->data + PTP_V1_UUID_OFFSET;
1298 match_data_345 = skb->data + PTP_V1_UUID_OFFSET + 3;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001299 } else {
Alexandre Rames97d48a12013-01-11 12:26:21 +00001300 if (!pskb_may_pull(skb, PTP_V2_MIN_LENGTH)) {
Ben Hutchings4a74dc62013-03-05 20:13:54 +00001301 return false;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001302 }
1303 version = skb->data[PTP_V2_VERSION_OFFSET];
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001304 if ((version & PTP_VERSION_V2_MASK) != PTP_VERSION_V2) {
Ben Hutchings4a74dc62013-03-05 20:13:54 +00001305 return false;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001306 }
Laurence Evansc939a312012-11-15 10:56:07 +00001307
1308 /* The original V2 implementation uses bytes 2-7 of
1309 * the UUID to match the packet to the timestamp. This
1310 * discards two of the bytes of the MAC address used
1311 * to create the UUID (SF bug 33070). The PTP V2
1312 * enhanced mode fixes this issue and uses bytes 0-2
1313 * and byte 5-7 of the UUID.
1314 */
1315 match_data_345 = skb->data + PTP_V2_UUID_OFFSET + 5;
1316 if (ptp->mode == MC_CMD_PTP_MODE_V2) {
1317 match_data_012 = skb->data + PTP_V2_UUID_OFFSET + 2;
1318 } else {
1319 match_data_012 = skb->data + PTP_V2_UUID_OFFSET + 0;
1320 BUG_ON(ptp->mode != MC_CMD_PTP_MODE_V2_ENHANCED);
1321 }
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001322 }
1323
1324 /* Does this packet require timestamping? */
1325 if (ntohs(*(__be16 *)&skb->data[PTP_DPORT_OFFSET]) == PTP_EVENT_PORT) {
1326 struct skb_shared_hwtstamps *timestamps;
1327
1328 match->state = PTP_PACKET_STATE_UNMATCHED;
1329
1330 /* Clear all timestamps held: filled in later */
1331 timestamps = skb_hwtstamps(skb);
1332 memset(timestamps, 0, sizeof(*timestamps));
1333
Laurence Evansc939a312012-11-15 10:56:07 +00001334 /* We expect the sequence number to be in the same position in
1335 * the packet for PTP V1 and V2
1336 */
1337 BUILD_BUG_ON(PTP_V1_SEQUENCE_OFFSET != PTP_V2_SEQUENCE_OFFSET);
1338 BUILD_BUG_ON(PTP_V1_SEQUENCE_LENGTH != PTP_V2_SEQUENCE_LENGTH);
1339
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001340 /* Extract UUID/Sequence information */
Laurence Evansc939a312012-11-15 10:56:07 +00001341 match->words[0] = (match_data_012[0] |
1342 (match_data_012[1] << 8) |
1343 (match_data_012[2] << 16) |
1344 (match_data_345[0] << 24));
1345 match->words[1] = (match_data_345[1] |
1346 (match_data_345[2] << 8) |
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001347 (skb->data[PTP_V1_SEQUENCE_OFFSET +
1348 PTP_V1_SEQUENCE_LENGTH - 1] <<
1349 16));
1350 } else {
1351 match->state = PTP_PACKET_STATE_MATCH_UNWANTED;
1352 }
1353
1354 skb_queue_tail(&ptp->rxq, skb);
1355 queue_work(ptp->workwq, &ptp->work);
Ben Hutchings4a74dc62013-03-05 20:13:54 +00001356
1357 return true;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001358}
1359
1360/* Transmit a PTP packet. This has to be transmitted by the MC
1361 * itself, through an MCDI call. MCDI calls aren't permitted
1362 * in the transmit path so defer the actual transmission to a suitable worker.
1363 */
1364int efx_ptp_tx(struct efx_nic *efx, struct sk_buff *skb)
1365{
1366 struct efx_ptp_data *ptp = efx->ptp_data;
1367
1368 skb_queue_tail(&ptp->txq, skb);
1369
1370 if ((udp_hdr(skb)->dest == htons(PTP_EVENT_PORT)) &&
1371 (skb->len <= MC_CMD_PTP_IN_TRANSMIT_PACKET_MAXNUM))
1372 efx_xmit_hwtstamp_pending(skb);
1373 queue_work(ptp->workwq, &ptp->work);
1374
1375 return NETDEV_TX_OK;
1376}
1377
Daniel Pieczko9ec06592013-11-21 17:11:25 +00001378int efx_ptp_get_mode(struct efx_nic *efx)
1379{
1380 return efx->ptp_data->mode;
1381}
1382
1383int efx_ptp_change_mode(struct efx_nic *efx, bool enable_wanted,
1384 unsigned int new_mode)
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001385{
1386 if ((enable_wanted != efx->ptp_data->enabled) ||
1387 (enable_wanted && (efx->ptp_data->mode != new_mode))) {
Alexandre Rames2ea4dc22013-11-08 10:20:31 +00001388 int rc = 0;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001389
1390 if (enable_wanted) {
1391 /* Change of mode requires disable */
1392 if (efx->ptp_data->enabled &&
1393 (efx->ptp_data->mode != new_mode)) {
1394 efx->ptp_data->enabled = false;
1395 rc = efx_ptp_stop(efx);
1396 if (rc != 0)
1397 return rc;
1398 }
1399
1400 /* Set new operating mode and establish
1401 * baseline synchronisation, which must
1402 * succeed.
1403 */
1404 efx->ptp_data->mode = new_mode;
Alexandre Rames2ea4dc22013-11-08 10:20:31 +00001405 if (netif_running(efx->net_dev))
1406 rc = efx_ptp_start(efx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001407 if (rc == 0) {
1408 rc = efx_ptp_synchronize(efx,
1409 PTP_SYNC_ATTEMPTS * 2);
1410 if (rc != 0)
1411 efx_ptp_stop(efx);
1412 }
1413 } else {
1414 rc = efx_ptp_stop(efx);
1415 }
1416
1417 if (rc != 0)
1418 return rc;
1419
1420 efx->ptp_data->enabled = enable_wanted;
1421 }
1422
1423 return 0;
1424}
1425
1426static int efx_ptp_ts_init(struct efx_nic *efx, struct hwtstamp_config *init)
1427{
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001428 int rc;
1429
1430 if (init->flags)
1431 return -EINVAL;
1432
1433 if ((init->tx_type != HWTSTAMP_TX_OFF) &&
1434 (init->tx_type != HWTSTAMP_TX_ON))
1435 return -ERANGE;
1436
Daniel Pieczko9ec06592013-11-21 17:11:25 +00001437 rc = efx->type->ptp_set_ts_config(efx, init);
1438 if (rc)
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001439 return rc;
1440
1441 efx->ptp_data->config = *init;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001442 return 0;
1443}
1444
Ben Hutchings62ebac92013-04-08 17:34:58 +01001445void efx_ptp_get_ts_info(struct efx_nic *efx, struct ethtool_ts_info *ts_info)
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001446{
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001447 struct efx_ptp_data *ptp = efx->ptp_data;
Ben Hutchings9aecda92013-12-05 21:28:42 +00001448 struct efx_nic *primary = efx->primary;
1449
1450 ASSERT_RTNL();
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001451
1452 if (!ptp)
Ben Hutchings62ebac92013-04-08 17:34:58 +01001453 return;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001454
Ben Hutchings62ebac92013-04-08 17:34:58 +01001455 ts_info->so_timestamping |= (SOF_TIMESTAMPING_TX_HARDWARE |
1456 SOF_TIMESTAMPING_RX_HARDWARE |
1457 SOF_TIMESTAMPING_RAW_HARDWARE);
Ben Hutchings9aecda92013-12-05 21:28:42 +00001458 if (primary && primary->ptp_data && primary->ptp_data->phc_clock)
1459 ts_info->phc_index =
1460 ptp_clock_index(primary->ptp_data->phc_clock);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001461 ts_info->tx_types = 1 << HWTSTAMP_TX_OFF | 1 << HWTSTAMP_TX_ON;
Daniel Pieczko9ec06592013-11-21 17:11:25 +00001462 ts_info->rx_filters = ptp->efx->type->hwtstamp_filters;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001463}
1464
Ben Hutchings433dc9b2013-11-14 01:26:21 +00001465int efx_ptp_set_ts_config(struct efx_nic *efx, struct ifreq *ifr)
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001466{
1467 struct hwtstamp_config config;
1468 int rc;
1469
1470 /* Not a PTP enabled port */
1471 if (!efx->ptp_data)
1472 return -EOPNOTSUPP;
1473
1474 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
1475 return -EFAULT;
1476
1477 rc = efx_ptp_ts_init(efx, &config);
1478 if (rc != 0)
1479 return rc;
1480
1481 return copy_to_user(ifr->ifr_data, &config, sizeof(config))
1482 ? -EFAULT : 0;
1483}
1484
Ben Hutchings433dc9b2013-11-14 01:26:21 +00001485int efx_ptp_get_ts_config(struct efx_nic *efx, struct ifreq *ifr)
1486{
1487 if (!efx->ptp_data)
1488 return -EOPNOTSUPP;
1489
1490 return copy_to_user(ifr->ifr_data, &efx->ptp_data->config,
1491 sizeof(efx->ptp_data->config)) ? -EFAULT : 0;
1492}
1493
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001494static void ptp_event_failure(struct efx_nic *efx, int expected_frag_len)
1495{
1496 struct efx_ptp_data *ptp = efx->ptp_data;
1497
1498 netif_err(efx, hw, efx->net_dev,
1499 "PTP unexpected event length: got %d expected %d\n",
1500 ptp->evt_frag_idx, expected_frag_len);
1501 ptp->reset_required = true;
1502 queue_work(ptp->workwq, &ptp->work);
1503}
1504
1505/* Process a completed receive event. Put it on the event queue and
1506 * start worker thread. This is required because event and their
1507 * correspoding packets may come in either order.
1508 */
1509static void ptp_event_rx(struct efx_nic *efx, struct efx_ptp_data *ptp)
1510{
1511 struct efx_ptp_event_rx *evt = NULL;
1512
Jon Cooperbd9a2652013-11-18 12:54:41 +00001513 if (WARN_ON_ONCE(ptp->rx_ts_inline))
1514 return;
1515
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001516 if (ptp->evt_frag_idx != 3) {
1517 ptp_event_failure(efx, 3);
1518 return;
1519 }
1520
1521 spin_lock_bh(&ptp->evt_lock);
1522 if (!list_empty(&ptp->evt_free_list)) {
1523 evt = list_first_entry(&ptp->evt_free_list,
1524 struct efx_ptp_event_rx, link);
1525 list_del(&evt->link);
1526
1527 evt->seq0 = EFX_QWORD_FIELD(ptp->evt_frags[2], MCDI_EVENT_DATA);
1528 evt->seq1 = (EFX_QWORD_FIELD(ptp->evt_frags[2],
1529 MCDI_EVENT_SRC) |
1530 (EFX_QWORD_FIELD(ptp->evt_frags[1],
1531 MCDI_EVENT_SRC) << 8) |
1532 (EFX_QWORD_FIELD(ptp->evt_frags[0],
1533 MCDI_EVENT_SRC) << 16));
Laurence Evansa6f73462013-12-04 23:47:56 +00001534 evt->hwtimestamp = efx->ptp_data->nic_to_kernel_time(
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001535 EFX_QWORD_FIELD(ptp->evt_frags[0], MCDI_EVENT_DATA),
Laurence Evansa6f73462013-12-04 23:47:56 +00001536 EFX_QWORD_FIELD(ptp->evt_frags[1], MCDI_EVENT_DATA),
1537 ptp->ts_corrections.rx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001538 evt->expiry = jiffies + msecs_to_jiffies(PKT_EVENT_LIFETIME_MS);
1539 list_add_tail(&evt->link, &ptp->evt_list);
1540
1541 queue_work(ptp->workwq, &ptp->work);
Laurence Evansf3211602013-01-28 14:51:17 +00001542 } else if (!ptp->evt_overflow) {
1543 /* Log a warning message and set the event overflow flag.
1544 * The message won't be logged again until the event queue
1545 * becomes empty.
1546 */
1547 netif_err(efx, rx_err, efx->net_dev, "PTP event queue overflow\n");
1548 ptp->evt_overflow = true;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001549 }
1550 spin_unlock_bh(&ptp->evt_lock);
1551}
1552
1553static void ptp_event_fault(struct efx_nic *efx, struct efx_ptp_data *ptp)
1554{
1555 int code = EFX_QWORD_FIELD(ptp->evt_frags[0], MCDI_EVENT_DATA);
1556 if (ptp->evt_frag_idx != 1) {
1557 ptp_event_failure(efx, 1);
1558 return;
1559 }
1560
1561 netif_err(efx, hw, efx->net_dev, "PTP error %d\n", code);
1562}
1563
1564static void ptp_event_pps(struct efx_nic *efx, struct efx_ptp_data *ptp)
1565{
1566 if (ptp->nic_ts_enabled)
1567 queue_work(ptp->pps_workwq, &ptp->pps_work);
1568}
1569
1570void efx_ptp_event(struct efx_nic *efx, efx_qword_t *ev)
1571{
1572 struct efx_ptp_data *ptp = efx->ptp_data;
1573 int code = EFX_QWORD_FIELD(*ev, MCDI_EVENT_CODE);
1574
1575 if (!ptp->enabled)
1576 return;
1577
1578 if (ptp->evt_frag_idx == 0) {
1579 ptp->evt_code = code;
1580 } else if (ptp->evt_code != code) {
1581 netif_err(efx, hw, efx->net_dev,
1582 "PTP out of sequence event %d\n", code);
1583 ptp->evt_frag_idx = 0;
1584 }
1585
1586 ptp->evt_frags[ptp->evt_frag_idx++] = *ev;
1587 if (!MCDI_EVENT_FIELD(*ev, CONT)) {
1588 /* Process resulting event */
1589 switch (code) {
1590 case MCDI_EVENT_CODE_PTP_RX:
1591 ptp_event_rx(efx, ptp);
1592 break;
1593 case MCDI_EVENT_CODE_PTP_FAULT:
1594 ptp_event_fault(efx, ptp);
1595 break;
1596 case MCDI_EVENT_CODE_PTP_PPS:
1597 ptp_event_pps(efx, ptp);
1598 break;
1599 default:
1600 netif_err(efx, hw, efx->net_dev,
1601 "PTP unknown event %d\n", code);
1602 break;
1603 }
1604 ptp->evt_frag_idx = 0;
1605 } else if (MAX_EVENT_FRAGS == ptp->evt_frag_idx) {
1606 netif_err(efx, hw, efx->net_dev,
1607 "PTP too many event fragments\n");
1608 ptp->evt_frag_idx = 0;
1609 }
1610}
1611
Jon Cooperbd9a2652013-11-18 12:54:41 +00001612void efx_time_sync_event(struct efx_channel *channel, efx_qword_t *ev)
1613{
1614 channel->sync_timestamp_major = MCDI_EVENT_FIELD(*ev, PTP_TIME_MAJOR);
1615 channel->sync_timestamp_minor =
1616 MCDI_EVENT_FIELD(*ev, PTP_TIME_MINOR_26_19) << 19;
1617 /* if sync events have been disabled then we want to silently ignore
1618 * this event, so throw away result.
1619 */
1620 (void) cmpxchg(&channel->sync_events_state, SYNC_EVENTS_REQUESTED,
1621 SYNC_EVENTS_VALID);
1622}
1623
1624/* make some assumptions about the time representation rather than abstract it,
1625 * since we currently only support one type of inline timestamping and only on
1626 * EF10.
1627 */
1628#define MINOR_TICKS_PER_SECOND 0x8000000
1629/* Fuzz factor for sync events to be out of order with RX events */
1630#define FUZZ (MINOR_TICKS_PER_SECOND / 10)
1631#define EXPECTED_SYNC_EVENTS_PER_SECOND 4
1632
1633static inline u32 efx_rx_buf_timestamp_minor(struct efx_nic *efx, const u8 *eh)
1634{
1635#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
1636 return __le32_to_cpup((const __le32 *)(eh + efx->rx_packet_ts_offset));
1637#else
1638 const u8 *data = eh + efx->rx_packet_ts_offset;
1639 return (u32)data[0] |
1640 (u32)data[1] << 8 |
1641 (u32)data[2] << 16 |
1642 (u32)data[3] << 24;
1643#endif
1644}
1645
1646void __efx_rx_skb_attach_timestamp(struct efx_channel *channel,
1647 struct sk_buff *skb)
1648{
1649 struct efx_nic *efx = channel->efx;
1650 u32 pkt_timestamp_major, pkt_timestamp_minor;
1651 u32 diff, carry;
1652 struct skb_shared_hwtstamps *timestamps;
1653
1654 pkt_timestamp_minor = (efx_rx_buf_timestamp_minor(efx,
1655 skb_mac_header(skb)) +
1656 (u32) efx->ptp_data->ts_corrections.rx) &
1657 (MINOR_TICKS_PER_SECOND - 1);
1658
1659 /* get the difference between the packet and sync timestamps,
1660 * modulo one second
1661 */
1662 diff = (pkt_timestamp_minor - channel->sync_timestamp_minor) &
1663 (MINOR_TICKS_PER_SECOND - 1);
1664 /* do we roll over a second boundary and need to carry the one? */
1665 carry = channel->sync_timestamp_minor + diff > MINOR_TICKS_PER_SECOND ?
1666 1 : 0;
1667
1668 if (diff <= MINOR_TICKS_PER_SECOND / EXPECTED_SYNC_EVENTS_PER_SECOND +
1669 FUZZ) {
1670 /* packet is ahead of the sync event by a quarter of a second or
1671 * less (allowing for fuzz)
1672 */
1673 pkt_timestamp_major = channel->sync_timestamp_major + carry;
1674 } else if (diff >= MINOR_TICKS_PER_SECOND - FUZZ) {
1675 /* packet is behind the sync event but within the fuzz factor.
1676 * This means the RX packet and sync event crossed as they were
1677 * placed on the event queue, which can sometimes happen.
1678 */
1679 pkt_timestamp_major = channel->sync_timestamp_major - 1 + carry;
1680 } else {
1681 /* it's outside tolerance in both directions. this might be
1682 * indicative of us missing sync events for some reason, so
1683 * we'll call it an error rather than risk giving a bogus
1684 * timestamp.
1685 */
1686 netif_vdbg(efx, drv, efx->net_dev,
1687 "packet timestamp %x too far from sync event %x:%x\n",
1688 pkt_timestamp_minor, channel->sync_timestamp_major,
1689 channel->sync_timestamp_minor);
1690 return;
1691 }
1692
1693 /* attach the timestamps to the skb */
1694 timestamps = skb_hwtstamps(skb);
1695 timestamps->hwtstamp =
1696 efx_ptp_s27_to_ktime(pkt_timestamp_major, pkt_timestamp_minor);
1697}
1698
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001699static int efx_phc_adjfreq(struct ptp_clock_info *ptp, s32 delta)
1700{
1701 struct efx_ptp_data *ptp_data = container_of(ptp,
1702 struct efx_ptp_data,
1703 phc_clock_info);
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001704 struct efx_nic *efx = ptp_data->efx;
Ben Hutchings59cfc472012-09-14 17:30:10 +01001705 MCDI_DECLARE_BUF(inadj, MC_CMD_PTP_IN_ADJUST_LEN);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001706 s64 adjustment_ns;
1707 int rc;
1708
1709 if (delta > MAX_PPB)
1710 delta = MAX_PPB;
1711 else if (delta < -MAX_PPB)
1712 delta = -MAX_PPB;
1713
1714 /* Convert ppb to fixed point ns. */
1715 adjustment_ns = (((s64)delta * PPB_SCALE_WORD) >>
1716 (PPB_EXTRA_BITS + MAX_PPB_BITS));
1717
1718 MCDI_SET_DWORD(inadj, PTP_IN_OP, MC_CMD_PTP_OP_ADJUST);
Laurence Evansc1d828b2013-03-06 15:33:17 +00001719 MCDI_SET_DWORD(inadj, PTP_IN_PERIPH_ID, 0);
Ben Hutchings338f74d2012-10-10 23:20:17 +01001720 MCDI_SET_QWORD(inadj, PTP_IN_ADJUST_FREQ, adjustment_ns);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001721 MCDI_SET_DWORD(inadj, PTP_IN_ADJUST_SECONDS, 0);
1722 MCDI_SET_DWORD(inadj, PTP_IN_ADJUST_NANOSECONDS, 0);
1723 rc = efx_mcdi_rpc(efx, MC_CMD_PTP, inadj, sizeof(inadj),
1724 NULL, 0, NULL);
1725 if (rc != 0)
1726 return rc;
1727
Ben Hutchingscd6fe652013-12-05 17:24:06 +00001728 ptp_data->current_adjfreq = adjustment_ns;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001729 return 0;
1730}
1731
1732static int efx_phc_adjtime(struct ptp_clock_info *ptp, s64 delta)
1733{
Laurence Evansa6f73462013-12-04 23:47:56 +00001734 u32 nic_major, nic_minor;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001735 struct efx_ptp_data *ptp_data = container_of(ptp,
1736 struct efx_ptp_data,
1737 phc_clock_info);
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001738 struct efx_nic *efx = ptp_data->efx;
Ben Hutchings59cfc472012-09-14 17:30:10 +01001739 MCDI_DECLARE_BUF(inbuf, MC_CMD_PTP_IN_ADJUST_LEN);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001740
Laurence Evansa6f73462013-12-04 23:47:56 +00001741 efx->ptp_data->ns_to_nic_time(delta, &nic_major, &nic_minor);
1742
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001743 MCDI_SET_DWORD(inbuf, PTP_IN_OP, MC_CMD_PTP_OP_ADJUST);
Laurence Evansc1d828b2013-03-06 15:33:17 +00001744 MCDI_SET_DWORD(inbuf, PTP_IN_PERIPH_ID, 0);
Ben Hutchingscd6fe652013-12-05 17:24:06 +00001745 MCDI_SET_QWORD(inbuf, PTP_IN_ADJUST_FREQ, ptp_data->current_adjfreq);
Laurence Evansa6f73462013-12-04 23:47:56 +00001746 MCDI_SET_DWORD(inbuf, PTP_IN_ADJUST_MAJOR, nic_major);
1747 MCDI_SET_DWORD(inbuf, PTP_IN_ADJUST_MINOR, nic_minor);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001748 return efx_mcdi_rpc(efx, MC_CMD_PTP, inbuf, sizeof(inbuf),
1749 NULL, 0, NULL);
1750}
1751
1752static int efx_phc_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
1753{
1754 struct efx_ptp_data *ptp_data = container_of(ptp,
1755 struct efx_ptp_data,
1756 phc_clock_info);
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001757 struct efx_nic *efx = ptp_data->efx;
Ben Hutchings59cfc472012-09-14 17:30:10 +01001758 MCDI_DECLARE_BUF(inbuf, MC_CMD_PTP_IN_READ_NIC_TIME_LEN);
1759 MCDI_DECLARE_BUF(outbuf, MC_CMD_PTP_OUT_READ_NIC_TIME_LEN);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001760 int rc;
Laurence Evansa6f73462013-12-04 23:47:56 +00001761 ktime_t kt;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001762
1763 MCDI_SET_DWORD(inbuf, PTP_IN_OP, MC_CMD_PTP_OP_READ_NIC_TIME);
Laurence Evansc1d828b2013-03-06 15:33:17 +00001764 MCDI_SET_DWORD(inbuf, PTP_IN_PERIPH_ID, 0);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001765
1766 rc = efx_mcdi_rpc(efx, MC_CMD_PTP, inbuf, sizeof(inbuf),
1767 outbuf, sizeof(outbuf), NULL);
1768 if (rc != 0)
1769 return rc;
1770
Laurence Evansa6f73462013-12-04 23:47:56 +00001771 kt = ptp_data->nic_to_kernel_time(
1772 MCDI_DWORD(outbuf, PTP_OUT_READ_NIC_TIME_MAJOR),
1773 MCDI_DWORD(outbuf, PTP_OUT_READ_NIC_TIME_MINOR), 0);
1774 *ts = ktime_to_timespec(kt);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001775 return 0;
1776}
1777
1778static int efx_phc_settime(struct ptp_clock_info *ptp,
1779 const struct timespec *e_ts)
1780{
1781 /* Get the current NIC time, efx_phc_gettime.
1782 * Subtract from the desired time to get the offset
1783 * call efx_phc_adjtime with the offset
1784 */
1785 int rc;
1786 struct timespec time_now;
1787 struct timespec delta;
1788
1789 rc = efx_phc_gettime(ptp, &time_now);
1790 if (rc != 0)
1791 return rc;
1792
1793 delta = timespec_sub(*e_ts, time_now);
1794
Julia Lawall56567c62013-01-21 03:02:48 +00001795 rc = efx_phc_adjtime(ptp, timespec_to_ns(&delta));
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001796 if (rc != 0)
1797 return rc;
1798
1799 return 0;
1800}
1801
1802static int efx_phc_enable(struct ptp_clock_info *ptp,
1803 struct ptp_clock_request *request,
1804 int enable)
1805{
1806 struct efx_ptp_data *ptp_data = container_of(ptp,
1807 struct efx_ptp_data,
1808 phc_clock_info);
1809 if (request->type != PTP_CLK_REQ_PPS)
1810 return -EOPNOTSUPP;
1811
1812 ptp_data->nic_ts_enabled = !!enable;
1813 return 0;
1814}
1815
1816static const struct efx_channel_type efx_ptp_channel_type = {
1817 .handle_no_channel = efx_ptp_handle_no_channel,
1818 .pre_probe = efx_ptp_probe_channel,
1819 .post_remove = efx_ptp_remove_channel,
1820 .get_name = efx_ptp_get_channel_name,
1821 /* no copy operation; there is no need to reallocate this channel */
1822 .receive_skb = efx_ptp_rx,
1823 .keep_eventq = false,
1824};
1825
Ben Hutchingsac36baf2013-10-15 17:54:56 +01001826void efx_ptp_defer_probe_with_channel(struct efx_nic *efx)
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001827{
1828 /* Check whether PTP is implemented on this NIC. The DISABLE
1829 * operation will succeed if and only if it is implemented.
1830 */
1831 if (efx_ptp_disable(efx) == 0)
1832 efx->extra_channel_type[EFX_EXTRA_CHANNEL_PTP] =
1833 &efx_ptp_channel_type;
1834}
Alexandre Rames2ea4dc22013-11-08 10:20:31 +00001835
1836void efx_ptp_start_datapath(struct efx_nic *efx)
1837{
1838 if (efx_ptp_restart(efx))
1839 netif_err(efx, drv, efx->net_dev, "Failed to restart PTP.\n");
Jon Cooperbd9a2652013-11-18 12:54:41 +00001840 /* re-enable timestamping if it was previously enabled */
1841 if (efx->type->ptp_set_ts_sync_events)
1842 efx->type->ptp_set_ts_sync_events(efx, true, true);
Alexandre Rames2ea4dc22013-11-08 10:20:31 +00001843}
1844
1845void efx_ptp_stop_datapath(struct efx_nic *efx)
1846{
Jon Cooperbd9a2652013-11-18 12:54:41 +00001847 /* temporarily disable timestamping */
1848 if (efx->type->ptp_set_ts_sync_events)
1849 efx->type->ptp_set_ts_sync_events(efx, false, true);
Alexandre Rames2ea4dc22013-11-08 10:20:31 +00001850 efx_ptp_stop(efx);
1851}