[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20131211185438.GC4371@netboy>
Date: Wed, 11 Dec 2013 19:54:39 +0100
From: Richard Cochran <richardcochran@...il.com>
To: Shawn Bohrer <shawn.bohrer@...il.com>
Cc: Or Gerlitz <ogerlitz@...lanox.com>,
Amir Vadai <amirv@...lanox.com>, netdev@...r.kernel.org,
tomk@...advisors.com, Shawn Bohrer <sbohrer@...advisors.com>
Subject: Re: [PATCH RFC] mlx4_en: Add PTP hardware clock
On Wed, Dec 11, 2013 at 12:24:25PM -0600, Shawn Bohrer wrote:
> From: Shawn Bohrer <sbohrer@...advisors.com>
>
> This adds a PHC to the mlx4_en driver. This is largely based off of the
> e1000e driver (drivers/net/ethernet/intel/e1000e/ptp.c) which seemed
> very similar. One thing I am unsure about is that in the e1000e driver
> they protect the timecounter code with a spinlock because the hardware
> reports the time in two 32bit registers. The Mellanox code looks
> similar however the existing timecounter code in the mlx4_en driver
> wasn't protected with a lock so I left the lock out here as well.
Before, there were only three call sites,
grep -nH -e timecounter_ *
en_clock.c:108: nsec = timecounter_cyc2time(&mdev->clock, timestamp);
en_clock.c:131: timecounter_init(&mdev->clock, &mdev->cycles,
en_clock.c:148: timecounter_read(&mdev->clock);
and so perhaps the locking was unnecessary (but maybe not).
In any case, the code that you added definitely needs locks.
> Additionally here the mlx4_en_phc_adjfreq() method simply returns
> -EOPNOTSUPP because I don't have the relevant hardware documentation on
> how to do this. I'm hoping one of the Mellanox developers can either
> provide this documentation or provide a patch to implement that
> function.
Since the code already uses timecounter_read to convert clock ticks
into nanoseconds, why not simply adjust the 'mult' as other drivers
do?
[ If the clock is easily adjustable in hardware, then, by all means,
do it that way. ]
> This is minimally tested at this point but Documentation/ptp/testptp
> appears to work on a Mellanox ConnectX-3 card.
Once you have the adjustment in place, then you can try it with
linuxptp.
Thanks,
Richard
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists