public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* ptp device strangeness
@ 2017-09-01 15:28 Tim Sander
  0 siblings, 0 replies; only message in thread
From: Tim Sander @ 2017-09-01 15:28 UTC (permalink / raw)
  To: Richard Cochran, linux-kernel; +Cc: netdev

Hi

I am currently using ptp on a Altera/Intel SOC with a dp8640 PHY.
PTP functionality seems to be right. But i am doing timestamping
with gpio0 and sometimes i loose the sync of the stamping and
the events. So i would like to read out all messages. Reading O_NONBLOCK
does not work so i tried polling from usermode with the below code:

		np = poll(&ev, 1, 0);
		ev.fd=ptpDev;
		ev.events = POLLIN;
		if (np>0) {
			if (ev.revents>0) {
				std::cout<<"discarded ptp event"<<std::endl;
				read(ptpDev, &event, sizeof(event));
			}
But as confirmed in the debugger np=1 and read blocks forever.
I don't think that this is correct behavior?

For pinning down this misbehavior I would like to know it this is a local 
problem of my hardware or if this is a general problem with the ptp chardev 
interface? 

I am currently on 4.11.12. As this is the latest preempt rt release.

Best regards
Tim

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-09-01 15:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-01 15:28 ptp device strangeness Tim Sander

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox