blob: 0fdcdc9ea028426d781e0919ea440cfe45a08f54 [file] [log] [blame]
Frank Li6605b732012-10-30 18:25:31 +00001/*
2 * Fast Ethernet Controller (ENET) PTP driver for MX6x.
3 *
4 * Copyright (C) 2012 Freescale Semiconductor, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
Joe Perches31b77202013-04-13 19:03:17 +000020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Frank Li6605b732012-10-30 18:25:31 +000022#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/string.h>
25#include <linux/ptrace.h>
26#include <linux/errno.h>
27#include <linux/ioport.h>
28#include <linux/slab.h>
29#include <linux/interrupt.h>
30#include <linux/pci.h>
Frank Li6605b732012-10-30 18:25:31 +000031#include <linux/delay.h>
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/skbuff.h>
35#include <linux/spinlock.h>
36#include <linux/workqueue.h>
37#include <linux/bitops.h>
38#include <linux/io.h>
39#include <linux/irq.h>
40#include <linux/clk.h>
41#include <linux/platform_device.h>
42#include <linux/phy.h>
43#include <linux/fec.h>
44#include <linux/of.h>
45#include <linux/of_device.h>
46#include <linux/of_gpio.h>
47#include <linux/of_net.h>
48
49#include "fec.h"
50
51/* FEC 1588 register bits */
52#define FEC_T_CTRL_SLAVE 0x00002000
53#define FEC_T_CTRL_CAPTURE 0x00000800
54#define FEC_T_CTRL_RESTART 0x00000200
55#define FEC_T_CTRL_PERIOD_RST 0x00000030
56#define FEC_T_CTRL_PERIOD_EN 0x00000010
57#define FEC_T_CTRL_ENABLE 0x00000001
58
59#define FEC_T_INC_MASK 0x0000007f
60#define FEC_T_INC_OFFSET 0
61#define FEC_T_INC_CORR_MASK 0x00007f00
62#define FEC_T_INC_CORR_OFFSET 8
63
Luwei Zhou278d2402014-10-10 13:15:30 +080064#define FEC_T_CTRL_PINPER 0x00000080
65#define FEC_T_TF0_MASK 0x00000001
66#define FEC_T_TF0_OFFSET 0
67#define FEC_T_TF1_MASK 0x00000002
68#define FEC_T_TF1_OFFSET 1
69#define FEC_T_TF2_MASK 0x00000004
70#define FEC_T_TF2_OFFSET 2
71#define FEC_T_TF3_MASK 0x00000008
72#define FEC_T_TF3_OFFSET 3
73#define FEC_T_TDRE_MASK 0x00000001
74#define FEC_T_TDRE_OFFSET 0
75#define FEC_T_TMODE_MASK 0x0000003C
76#define FEC_T_TMODE_OFFSET 2
77#define FEC_T_TIE_MASK 0x00000040
78#define FEC_T_TIE_OFFSET 6
79#define FEC_T_TF_MASK 0x00000080
80#define FEC_T_TF_OFFSET 7
81
Frank Li6605b732012-10-30 18:25:31 +000082#define FEC_ATIME_CTRL 0x400
83#define FEC_ATIME 0x404
84#define FEC_ATIME_EVT_OFFSET 0x408
85#define FEC_ATIME_EVT_PERIOD 0x40c
86#define FEC_ATIME_CORR 0x410
87#define FEC_ATIME_INC 0x414
88#define FEC_TS_TIMESTAMP 0x418
89
Luwei Zhou278d2402014-10-10 13:15:30 +080090#define FEC_TGSR 0x604
91#define FEC_TCSR(n) (0x608 + n * 0x08)
92#define FEC_TCCR(n) (0x60C + n * 0x08)
93#define MAX_TIMER_CHANNEL 3
94#define FEC_TMODE_TOGGLE 0x05
95#define FEC_HIGH_PULSE 0x0F
96
Frank Li6605b732012-10-30 18:25:31 +000097#define FEC_CC_MULT (1 << 31)
Luwei Zhouf28460b22014-10-10 13:15:28 +080098#define FEC_COUNTER_PERIOD (1 << 31)
Luwei Zhou278d2402014-10-10 13:15:30 +080099#define PPS_OUPUT_RELOAD_PERIOD NSEC_PER_SEC
100#define FEC_CHANNLE_0 0
101#define DEFAULT_PPS_CHANNEL FEC_CHANNLE_0
102
103/**
104 * fec_ptp_enable_pps
105 * @fep: the fec_enet_private structure handle
106 * @enable: enable the channel pps output
107 *
108 * This function enble the PPS ouput on the timer channel.
109 */
110static int fec_ptp_enable_pps(struct fec_enet_private *fep, uint enable)
111{
112 unsigned long flags;
113 u32 val, tempval;
114 int inc;
115 struct timespec ts;
116 u64 ns;
117 u32 remainder;
118 val = 0;
119
120 if (!(fep->hwts_tx_en || fep->hwts_rx_en)) {
121 dev_err(&fep->pdev->dev, "No ptp stack is running\n");
122 return -EINVAL;
123 }
124
125 if (fep->pps_enable == enable)
126 return 0;
127
128 fep->pps_channel = DEFAULT_PPS_CHANNEL;
129 fep->reload_period = PPS_OUPUT_RELOAD_PERIOD;
130 inc = fep->ptp_inc;
131
132 spin_lock_irqsave(&fep->tmreg_lock, flags);
133
134 if (enable) {
135 /* clear capture or output compare interrupt status if have.
136 */
137 writel(FEC_T_TF_MASK, fep->hwp + FEC_TCSR(fep->pps_channel));
138
139 /* It is recommended to doulbe check the TMODE field in the
140 * TCSR register to be cleared before the first compare counter
141 * is written into TCCR register. Just add a double check.
142 */
143 val = readl(fep->hwp + FEC_TCSR(fep->pps_channel));
144 do {
145 val &= ~(FEC_T_TMODE_MASK);
146 writel(val, fep->hwp + FEC_TCSR(fep->pps_channel));
147 val = readl(fep->hwp + FEC_TCSR(fep->pps_channel));
148 } while (val & FEC_T_TMODE_MASK);
149
150 /* Dummy read counter to update the counter */
151 timecounter_read(&fep->tc);
152 /* We want to find the first compare event in the next
153 * second point. So we need to know what the ptp time
154 * is now and how many nanoseconds is ahead to get next second.
155 * The remaining nanosecond ahead before the next second would be
156 * NSEC_PER_SEC - ts.tv_nsec. Add the remaining nanoseconds
157 * to current timer would be next second.
158 */
159 tempval = readl(fep->hwp + FEC_ATIME_CTRL);
160 tempval |= FEC_T_CTRL_CAPTURE;
161 writel(tempval, fep->hwp + FEC_ATIME_CTRL);
162
163 tempval = readl(fep->hwp + FEC_ATIME);
164 /* Convert the ptp local counter to 1588 timestamp */
165 ns = timecounter_cyc2time(&fep->tc, tempval);
166 ts.tv_sec = div_u64_rem(ns, 1000000000ULL, &remainder);
167 ts.tv_nsec = remainder;
168
169 /* The tempval is less than 3 seconds, and so val is less than
170 * 4 seconds. No overflow for 32bit calculation.
171 */
172 val = NSEC_PER_SEC - (u32)ts.tv_nsec + tempval;
173
174 /* Need to consider the situation that the current time is
175 * very close to the second point, which means NSEC_PER_SEC
176 * - ts.tv_nsec is close to be zero(For example 20ns); Since the timer
177 * is still running when we calculate the first compare event, it is
178 * possible that the remaining nanoseonds run out before the compare
179 * counter is calculated and written into TCCR register. To avoid
180 * this possibility, we will set the compare event to be the next
181 * of next second. The current setting is 31-bit timer and wrap
182 * around over 2 seconds. So it is okay to set the next of next
183 * seond for the timer.
184 */
185 val += NSEC_PER_SEC;
186
187 /* We add (2 * NSEC_PER_SEC - (u32)ts.tv_nsec) to current
188 * ptp counter, which maybe cause 32-bit wrap. Since the
189 * (NSEC_PER_SEC - (u32)ts.tv_nsec) is less than 2 second.
190 * We can ensure the wrap will not cause issue. If the offset
191 * is bigger than fep->cc.mask would be a error.
192 */
193 val &= fep->cc.mask;
194 writel(val, fep->hwp + FEC_TCCR(fep->pps_channel));
195
196 /* Calculate the second the compare event timestamp */
197 fep->next_counter = (val + fep->reload_period) & fep->cc.mask;
198
199 /* * Enable compare event when overflow */
200 val = readl(fep->hwp + FEC_ATIME_CTRL);
201 val |= FEC_T_CTRL_PINPER;
202 writel(val, fep->hwp + FEC_ATIME_CTRL);
203
204 /* Compare channel setting. */
205 val = readl(fep->hwp + FEC_TCSR(fep->pps_channel));
206 val |= (1 << FEC_T_TF_OFFSET | 1 << FEC_T_TIE_OFFSET);
207 val &= ~(1 << FEC_T_TDRE_OFFSET);
208 val &= ~(FEC_T_TMODE_MASK);
209 val |= (FEC_HIGH_PULSE << FEC_T_TMODE_OFFSET);
210 writel(val, fep->hwp + FEC_TCSR(fep->pps_channel));
211
212 /* Write the second compare event timestamp and calculate
213 * the third timestamp. Refer the TCCR register detail in the spec.
214 */
215 writel(fep->next_counter, fep->hwp + FEC_TCCR(fep->pps_channel));
216 fep->next_counter = (fep->next_counter + fep->reload_period) & fep->cc.mask;
217 } else {
218 writel(0, fep->hwp + FEC_TCSR(fep->pps_channel));
219 }
220
221 fep->pps_enable = enable;
222 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
223
224 return 0;
225}
226
Frank Li6605b732012-10-30 18:25:31 +0000227/**
228 * fec_ptp_read - read raw cycle counter (to be used by time counter)
229 * @cc: the cyclecounter structure
230 *
231 * this function reads the cyclecounter registers and is called by the
232 * cyclecounter structure used to construct a ns counter from the
233 * arbitrary fixed point registers
234 */
235static cycle_t fec_ptp_read(const struct cyclecounter *cc)
236{
237 struct fec_enet_private *fep =
238 container_of(cc, struct fec_enet_private, cc);
239 u32 tempval;
240
241 tempval = readl(fep->hwp + FEC_ATIME_CTRL);
242 tempval |= FEC_T_CTRL_CAPTURE;
243 writel(tempval, fep->hwp + FEC_ATIME_CTRL);
244
245 return readl(fep->hwp + FEC_ATIME);
246}
247
248/**
249 * fec_ptp_start_cyclecounter - create the cycle counter from hw
250 * @ndev: network device
251 *
252 * this function initializes the timecounter and cyclecounter
253 * structures for use in generated a ns counter from the arbitrary
254 * fixed point cycles registers in the hardware.
255 */
256void fec_ptp_start_cyclecounter(struct net_device *ndev)
257{
258 struct fec_enet_private *fep = netdev_priv(ndev);
259 unsigned long flags;
260 int inc;
261
Frank Li85bd1792013-02-06 14:59:59 +0000262 inc = 1000000000 / fep->cycle_speed;
Frank Li6605b732012-10-30 18:25:31 +0000263
264 /* grab the ptp lock */
265 spin_lock_irqsave(&fep->tmreg_lock, flags);
266
267 /* 1ns counter */
268 writel(inc << FEC_T_INC_OFFSET, fep->hwp + FEC_ATIME_INC);
269
Luwei Zhouf28460b22014-10-10 13:15:28 +0800270 /* use 31-bit timer counter */
271 writel(FEC_COUNTER_PERIOD, fep->hwp + FEC_ATIME_EVT_PERIOD);
Frank Li6605b732012-10-30 18:25:31 +0000272
Luwei Zhouf28460b22014-10-10 13:15:28 +0800273 writel(FEC_T_CTRL_ENABLE | FEC_T_CTRL_PERIOD_RST,
274 fep->hwp + FEC_ATIME_CTRL);
Frank Li6605b732012-10-30 18:25:31 +0000275
276 memset(&fep->cc, 0, sizeof(fep->cc));
277 fep->cc.read = fec_ptp_read;
Luwei Zhouf28460b22014-10-10 13:15:28 +0800278 fep->cc.mask = CLOCKSOURCE_MASK(31);
Frank Li6605b732012-10-30 18:25:31 +0000279 fep->cc.shift = 31;
280 fep->cc.mult = FEC_CC_MULT;
281
282 /* reset the ns time counter */
283 timecounter_init(&fep->tc, &fep->cc, ktime_to_ns(ktime_get_real()));
284
285 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
286}
287
288/**
289 * fec_ptp_adjfreq - adjust ptp cycle frequency
290 * @ptp: the ptp clock structure
291 * @ppb: parts per billion adjustment from base
292 *
293 * Adjust the frequency of the ptp cycle counter by the
294 * indicated ppb from the base frequency.
295 *
296 * Because ENET hardware frequency adjust is complex,
297 * using software method to do that.
298 */
299static int fec_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
300{
Frank Li6605b732012-10-30 18:25:31 +0000301 unsigned long flags;
302 int neg_adj = 0;
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800303 u32 i, tmp;
304 u32 corr_inc, corr_period;
305 u32 corr_ns;
306 u64 lhs, rhs;
Frank Li6605b732012-10-30 18:25:31 +0000307
308 struct fec_enet_private *fep =
309 container_of(ptp, struct fec_enet_private, ptp_caps);
310
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800311 if (ppb == 0)
312 return 0;
313
Frank Li6605b732012-10-30 18:25:31 +0000314 if (ppb < 0) {
315 ppb = -ppb;
316 neg_adj = 1;
317 }
318
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800319 /* In theory, corr_inc/corr_period = ppb/NSEC_PER_SEC;
320 * Try to find the corr_inc between 1 to fep->ptp_inc to
321 * meet adjustment requirement.
322 */
323 lhs = NSEC_PER_SEC;
324 rhs = (u64)ppb * (u64)fep->ptp_inc;
325 for (i = 1; i <= fep->ptp_inc; i++) {
326 if (lhs >= rhs) {
327 corr_inc = i;
328 corr_period = div_u64(lhs, rhs);
329 break;
330 }
331 lhs += NSEC_PER_SEC;
332 }
333 /* Not found? Set it to high value - double speed
334 * correct in every clock step.
335 */
336 if (i > fep->ptp_inc) {
337 corr_inc = fep->ptp_inc;
338 corr_period = 1;
339 }
340
341 if (neg_adj)
342 corr_ns = fep->ptp_inc - corr_inc;
343 else
344 corr_ns = fep->ptp_inc + corr_inc;
Frank Li7da716a2012-11-06 20:14:49 +0000345
Frank Li6605b732012-10-30 18:25:31 +0000346 spin_lock_irqsave(&fep->tmreg_lock, flags);
Frank Li6605b732012-10-30 18:25:31 +0000347
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800348 tmp = readl(fep->hwp + FEC_ATIME_INC) & FEC_T_INC_MASK;
349 tmp |= corr_ns << FEC_T_INC_CORR_OFFSET;
350 writel(tmp, fep->hwp + FEC_ATIME_INC);
351 writel(corr_period, fep->hwp + FEC_ATIME_CORR);
352 /* dummy read to update the timer. */
353 timecounter_read(&fep->tc);
Frank Li6605b732012-10-30 18:25:31 +0000354
355 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
356
357 return 0;
358}
359
360/**
361 * fec_ptp_adjtime
362 * @ptp: the ptp clock structure
363 * @delta: offset to adjust the cycle counter by
364 *
365 * adjust the timer by resetting the timecounter structure.
366 */
367static int fec_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
368{
369 struct fec_enet_private *fep =
370 container_of(ptp, struct fec_enet_private, ptp_caps);
371 unsigned long flags;
372 u64 now;
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800373 u32 counter;
Frank Li6605b732012-10-30 18:25:31 +0000374
375 spin_lock_irqsave(&fep->tmreg_lock, flags);
376
377 now = timecounter_read(&fep->tc);
378 now += delta;
379
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800380 /* Get the timer value based on adjusted timestamp.
381 * Update the counter with the masked value.
382 */
383 counter = now & fep->cc.mask;
384 writel(counter, fep->hwp + FEC_ATIME);
385
Frank Li6605b732012-10-30 18:25:31 +0000386 /* reset the timecounter */
387 timecounter_init(&fep->tc, &fep->cc, now);
388
389 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
390
391 return 0;
392}
393
394/**
395 * fec_ptp_gettime
396 * @ptp: the ptp clock structure
397 * @ts: timespec structure to hold the current time value
398 *
399 * read the timecounter and return the correct value on ns,
400 * after converting it into a struct timespec.
401 */
402static int fec_ptp_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
403{
404 struct fec_enet_private *adapter =
405 container_of(ptp, struct fec_enet_private, ptp_caps);
406 u64 ns;
407 u32 remainder;
408 unsigned long flags;
409
410 spin_lock_irqsave(&adapter->tmreg_lock, flags);
411 ns = timecounter_read(&adapter->tc);
412 spin_unlock_irqrestore(&adapter->tmreg_lock, flags);
413
414 ts->tv_sec = div_u64_rem(ns, 1000000000ULL, &remainder);
415 ts->tv_nsec = remainder;
416
417 return 0;
418}
419
420/**
421 * fec_ptp_settime
422 * @ptp: the ptp clock structure
423 * @ts: the timespec containing the new time for the cycle counter
424 *
425 * reset the timecounter to use a new base value instead of the kernel
426 * wall timer value.
427 */
428static int fec_ptp_settime(struct ptp_clock_info *ptp,
429 const struct timespec *ts)
430{
431 struct fec_enet_private *fep =
432 container_of(ptp, struct fec_enet_private, ptp_caps);
433
434 u64 ns;
435 unsigned long flags;
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800436 u32 counter;
Frank Li6605b732012-10-30 18:25:31 +0000437
Nimrod Andy91c0d982014-08-21 17:09:38 +0800438 mutex_lock(&fep->ptp_clk_mutex);
439 /* Check the ptp clock */
440 if (!fep->ptp_clk_on) {
441 mutex_unlock(&fep->ptp_clk_mutex);
442 return -EINVAL;
443 }
444
Frank Li6605b732012-10-30 18:25:31 +0000445 ns = ts->tv_sec * 1000000000ULL;
446 ns += ts->tv_nsec;
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800447 /* Get the timer value based on timestamp.
448 * Update the counter with the masked value.
449 */
450 counter = ns & fep->cc.mask;
Frank Li6605b732012-10-30 18:25:31 +0000451
452 spin_lock_irqsave(&fep->tmreg_lock, flags);
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800453 writel(counter, fep->hwp + FEC_ATIME);
Frank Li6605b732012-10-30 18:25:31 +0000454 timecounter_init(&fep->tc, &fep->cc, ns);
455 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
Nimrod Andy91c0d982014-08-21 17:09:38 +0800456 mutex_unlock(&fep->ptp_clk_mutex);
Frank Li6605b732012-10-30 18:25:31 +0000457 return 0;
458}
459
460/**
461 * fec_ptp_enable
462 * @ptp: the ptp clock structure
463 * @rq: the requested feature to change
464 * @on: whether to enable or disable the feature
465 *
466 */
467static int fec_ptp_enable(struct ptp_clock_info *ptp,
468 struct ptp_clock_request *rq, int on)
469{
Luwei Zhou278d2402014-10-10 13:15:30 +0800470 struct fec_enet_private *fep =
471 container_of(ptp, struct fec_enet_private, ptp_caps);
472 int ret = 0;
473
474 if (rq->type == PTP_CLK_REQ_PPS) {
475 ret = fec_ptp_enable_pps(fep, on);
476
477 return ret;
478 }
Frank Li6605b732012-10-30 18:25:31 +0000479 return -EOPNOTSUPP;
480}
481
482/**
483 * fec_ptp_hwtstamp_ioctl - control hardware time stamping
484 * @ndev: pointer to net_device
485 * @ifreq: ioctl data
486 * @cmd: particular ioctl requested
487 */
Ben Hutchings1d5244d2013-11-18 23:02:44 +0000488int fec_ptp_set(struct net_device *ndev, struct ifreq *ifr)
Frank Li6605b732012-10-30 18:25:31 +0000489{
490 struct fec_enet_private *fep = netdev_priv(ndev);
491
492 struct hwtstamp_config config;
493
494 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
495 return -EFAULT;
496
497 /* reserved for future extensions */
498 if (config.flags)
499 return -EINVAL;
500
501 switch (config.tx_type) {
502 case HWTSTAMP_TX_OFF:
503 fep->hwts_tx_en = 0;
504 break;
505 case HWTSTAMP_TX_ON:
506 fep->hwts_tx_en = 1;
507 break;
508 default:
509 return -ERANGE;
510 }
511
512 switch (config.rx_filter) {
513 case HWTSTAMP_FILTER_NONE:
514 if (fep->hwts_rx_en)
515 fep->hwts_rx_en = 0;
516 config.rx_filter = HWTSTAMP_FILTER_NONE;
517 break;
518
519 default:
520 /*
521 * register RXMTRL must be set in order to do V1 packets,
522 * therefore it is not possible to time stamp both V1 Sync and
523 * Delay_Req messages and hardware does not support
524 * timestamping all packets => return error
525 */
526 fep->hwts_rx_en = 1;
527 config.rx_filter = HWTSTAMP_FILTER_ALL;
528 break;
529 }
530
531 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
532 -EFAULT : 0;
533}
534
Ben Hutchings1d5244d2013-11-18 23:02:44 +0000535int fec_ptp_get(struct net_device *ndev, struct ifreq *ifr)
536{
537 struct fec_enet_private *fep = netdev_priv(ndev);
538 struct hwtstamp_config config;
539
540 config.flags = 0;
541 config.tx_type = fep->hwts_tx_en ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
542 config.rx_filter = (fep->hwts_rx_en ?
543 HWTSTAMP_FILTER_ALL : HWTSTAMP_FILTER_NONE);
544
545 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
546 -EFAULT : 0;
547}
548
Frank Li6605b732012-10-30 18:25:31 +0000549/**
550 * fec_time_keep - call timecounter_read every second to avoid timer overrun
551 * because ENET just support 32bit counter, will timeout in 4s
552 */
Nimrod Andy91c0d982014-08-21 17:09:38 +0800553static void fec_time_keep(struct work_struct *work)
Frank Li6605b732012-10-30 18:25:31 +0000554{
Nimrod Andy91c0d982014-08-21 17:09:38 +0800555 struct delayed_work *dwork = to_delayed_work(work);
556 struct fec_enet_private *fep = container_of(dwork, struct fec_enet_private, time_keep);
Frank Li6605b732012-10-30 18:25:31 +0000557 u64 ns;
558 unsigned long flags;
559
Nimrod Andy91c0d982014-08-21 17:09:38 +0800560 mutex_lock(&fep->ptp_clk_mutex);
561 if (fep->ptp_clk_on) {
562 spin_lock_irqsave(&fep->tmreg_lock, flags);
563 ns = timecounter_read(&fep->tc);
564 spin_unlock_irqrestore(&fep->tmreg_lock, flags);
565 }
566 mutex_unlock(&fep->ptp_clk_mutex);
Frank Li6605b732012-10-30 18:25:31 +0000567
Nimrod Andy91c0d982014-08-21 17:09:38 +0800568 schedule_delayed_work(&fep->time_keep, HZ);
Frank Li6605b732012-10-30 18:25:31 +0000569}
570
571/**
572 * fec_ptp_init
573 * @ndev: The FEC network adapter
574 *
575 * This function performs the required steps for enabling ptp
576 * support. If ptp support has already been loaded it simply calls the
577 * cyclecounter init routine and exits.
578 */
579
Fabio Estevamca162a82013-06-07 10:48:00 +0000580void fec_ptp_init(struct platform_device *pdev)
Frank Li6605b732012-10-30 18:25:31 +0000581{
Fabio Estevamca162a82013-06-07 10:48:00 +0000582 struct net_device *ndev = platform_get_drvdata(pdev);
Frank Li6605b732012-10-30 18:25:31 +0000583 struct fec_enet_private *fep = netdev_priv(ndev);
584
585 fep->ptp_caps.owner = THIS_MODULE;
586 snprintf(fep->ptp_caps.name, 16, "fec ptp");
587
588 fep->ptp_caps.max_adj = 250000000;
589 fep->ptp_caps.n_alarm = 0;
590 fep->ptp_caps.n_ext_ts = 0;
591 fep->ptp_caps.n_per_out = 0;
Richard Cochran4986b4f02014-03-20 22:21:55 +0100592 fep->ptp_caps.n_pins = 0;
Luwei Zhou278d2402014-10-10 13:15:30 +0800593 fep->ptp_caps.pps = 1;
Frank Li6605b732012-10-30 18:25:31 +0000594 fep->ptp_caps.adjfreq = fec_ptp_adjfreq;
595 fep->ptp_caps.adjtime = fec_ptp_adjtime;
596 fep->ptp_caps.gettime = fec_ptp_gettime;
597 fep->ptp_caps.settime = fec_ptp_settime;
598 fep->ptp_caps.enable = fec_ptp_enable;
599
Frank Li85bd1792013-02-06 14:59:59 +0000600 fep->cycle_speed = clk_get_rate(fep->clk_ptp);
Luwei Zhou89bddcd2014-10-10 13:15:29 +0800601 fep->ptp_inc = NSEC_PER_SEC / fep->cycle_speed;
Frank Li85bd1792013-02-06 14:59:59 +0000602
Frank Li6605b732012-10-30 18:25:31 +0000603 spin_lock_init(&fep->tmreg_lock);
604
605 fec_ptp_start_cyclecounter(ndev);
606
Nimrod Andy91c0d982014-08-21 17:09:38 +0800607 INIT_DELAYED_WORK(&fep->time_keep, fec_time_keep);
Frank Li6605b732012-10-30 18:25:31 +0000608
609 fep->ptp_clock = ptp_clock_register(&fep->ptp_caps, &pdev->dev);
610 if (IS_ERR(fep->ptp_clock)) {
611 fep->ptp_clock = NULL;
612 pr_err("ptp_clock_register failed\n");
Frank Li6605b732012-10-30 18:25:31 +0000613 }
Nimrod Andy91c0d982014-08-21 17:09:38 +0800614
615 schedule_delayed_work(&fep->time_keep, HZ);
Frank Li6605b732012-10-30 18:25:31 +0000616}
Luwei Zhou278d2402014-10-10 13:15:30 +0800617
618/**
619 * fec_ptp_check_pps_event
620 * @fep: the fec_enet_private structure handle
621 *
622 * This function check the pps event and reload the timer compare counter.
623 */
624uint fec_ptp_check_pps_event(struct fec_enet_private *fep)
625{
626 u32 val;
627 u8 channel = fep->pps_channel;
628 struct ptp_clock_event event;
629
630 val = readl(fep->hwp + FEC_TCSR(channel));
631 if (val & FEC_T_TF_MASK) {
632 /* Write the next next compare(not the next according the spec)
633 * value to the register
634 */
635 writel(fep->next_counter, fep->hwp + FEC_TCCR(channel));
636 do {
637 writel(val, fep->hwp + FEC_TCSR(channel));
638 } while (readl(fep->hwp + FEC_TCSR(channel)) & FEC_T_TF_MASK);
639
640 /* Update the counter; */
641 fep->next_counter = (fep->next_counter + fep->reload_period) & fep->cc.mask;
642
643 event.type = PTP_CLOCK_PPS;
644 ptp_clock_event(fep->ptp_clock, &event);
645 return 1;
646 }
647
648 return 0;
649}