linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] igb: add conditions for I210 to generate periodic clock output
@ 2016-01-11  7:34 Roland Hii
  2016-01-14  3:22 ` Brown, Aaron F
  0 siblings, 1 reply; 2+ messages in thread
From: Roland Hii @ 2016-01-11  7:34 UTC (permalink / raw)
  To: Jeff Kirsher; +Cc: intel-wired-lan, netdev, linux-kernel

In general case the maximum supported half cycle time of the synchronized
output clock is 70msec. Slower half cycle time than 70msec can be
programmed also as long as the output clock is synchronized to whole
seconds, useful specifically for generating a 1Hz clock.

Permitted values for the clock half cycle time are: 125,000,000 decimal,
250,000,000 decimal and 500,000,000 decimal (equals to 125msec, 250msec
and 500msec respectively).

Before this patch, only the half cycle time of less than or equal to 70msec
uses the I210 clock output function. This patch adds additional conditions
when half cycle time is equal to 125msec or 250msec or 500msec to use
clock output function.

Under other conditions, interrupt driven target time output events method
is still used to generate the desired clock output.

Signed-off-by: Roland Hii <roland.king.guan.hii@intel.com>
---
 drivers/net/ethernet/intel/igb/igb_ptp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/intel/igb/igb_ptp.c b/drivers/net/ethernet/intel/igb/igb_ptp.c
index c44df87..22a8a29 100644
--- a/drivers/net/ethernet/intel/igb/igb_ptp.c
+++ b/drivers/net/ethernet/intel/igb/igb_ptp.c
@@ -525,7 +525,8 @@ static int igb_ptp_feature_enable_i210(struct ptp_clock_info *ptp,
 		ts.tv_nsec = rq->perout.period.nsec;
 		ns = timespec64_to_ns(&ts);
 		ns = ns >> 1;
-		if (on && ns <= 70000000LL) {
+		if (on && ((ns <= 70000000LL) || (ns == 125000000LL) ||
+			   (ns == 250000000LL) || (ns == 500000000LL))) {
 			if (ns < 8LL)
 				return -EINVAL;
 			use_freq = 1;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* RE: [PATCH] igb: add conditions for I210 to generate periodic clock output
  2016-01-11  7:34 [PATCH] igb: add conditions for I210 to generate periodic clock output Roland Hii
@ 2016-01-14  3:22 ` Brown, Aaron F
  0 siblings, 0 replies; 2+ messages in thread
From: Brown, Aaron F @ 2016-01-14  3:22 UTC (permalink / raw)
  To: Hii, Roland King Guan, Kirsher, Jeffrey T
  Cc: intel-wired-lan, netdev, linux-kernel

> From: netdev-owner@vger.kernel.org [netdev-owner@vger.kernel.org] on behalf of Roland Hii [roland.king.guan.hii@intel.com]
> Sent: Sunday, January 10, 2016 11:34 PM
> To: Kirsher, Jeffrey T
> Cc: intel-wired-lan@lists.osuosl.org; netdev@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH] igb: add conditions for I210 to generate periodic clock output
> 
> In general case the maximum supported half cycle time of the synchronized
> output clock is 70msec. Slower half cycle time than 70msec can be
> programmed also as long as the output clock is synchronized to whole
> seconds, useful specifically for generating a 1Hz clock.
> 
> Permitted values for the clock half cycle time are: 125,000,000 decimal,
> 250,000,000 decimal and 500,000,000 decimal (equals to 125msec, 250msec
> and 500msec respectively).
> 
> Before this patch, only the half cycle time of less than or equal to 70msec
> uses the I210 clock output function. This patch adds additional conditions
> when half cycle time is equal to 125msec or 250msec or 500msec to use
> clock output function.
> 
> Under other conditions, interrupt driven target time output events method
> is still used to generate the desired clock output.
> 
> Signed-off-by: Roland Hii <roland.king.guan.hii@intel.com>
> ---
>  drivers/net/ethernet/intel/igb/igb_ptp.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)

Tested-by: Aaron Brown <aaron.f.brown@intel.com>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-01-14  3:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-11  7:34 [PATCH] igb: add conditions for I210 to generate periodic clock output Roland Hii
2016-01-14  3:22 ` Brown, Aaron F

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).