[Linuxptp-devel] [PATCH v4] linuxptp: add phc_ctl program to help debug PHC devices

2014-07-10 Thread Jacob Keller
This is an updated version of a script I wrote a couple years ago for debugging the PHC when writing a new driver. I figured that it might be handy for the LinuxPTP project to include, as it can give some insight into the PHC directly. I have updated it to make use of the shared code here, in order

[Linuxptp-devel] [PATCH] gitignore: add .version as this is generated during a make

2014-07-10 Thread Jacob Keller
Signed-off-by: Jacob Keller --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e0710ad5b294..098dcdfe1ea7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /*.d /*.o +/.version /hwstamp_ctl /phc2sys /pmc -- 2.0.1.475.g9b8d714 --

Re: [Linuxptp-devel] [PATCH 3/5] Move signal handling to util.c.

2014-07-10 Thread Keller, Jacob E
On Thu, 2014-07-10 at 11:35 +0200, Miroslav Lichvar wrote: > On Wed, Jul 09, 2014 at 06:55:23PM +, Keller, Jacob E wrote: > > On Wed, 2014-07-09 at 10:21 +0200, Miroslav Lichvar wrote: > > > I'm not sure I understand your question. Would you prefer to export > > > the running variable and use i

[Linuxptp-devel] 1588 PTP implementation

2014-07-10 Thread Ronex Dicapriyo
Hello, I need to implement functionality of 1588 PTP standard in some harware IP model. For this I have few queries as below: 1) Linux ptp implementation -     How it uses/works for harware and software timestamping ? 2) If any application want to make use of it, which API's are useful to set/

Re: [Linuxptp-devel] Planning for a next release of linuxptp

2014-07-10 Thread Daniel Le
I'm hoping support for unicast will be added to the next release. Thanks, Daniel From: Ledda William EXT [mailto:william.le...@iter.org] Sent: Thursday, July 10, 2014 11:57 AM To: linuxptp-devel@lists.sourceforge.net Subject: [Linuxptp-devel] Planning for a next release of linuxptp Dear linuxptp

Re: [Linuxptp-devel] Planning for a next release of linuxptp

2014-07-10 Thread Richard Cochran
On Thu, Jul 10, 2014 at 03:57:13PM +, Ledda William EXT wrote: > Dear linuxptp developers, > Is there a plan for a new release of linuxptp? Currently I'm using 1.3, I > think to upgrade my application to 1.4 but if there is a short term plan (not > after September) I can wait for a new releas

[Linuxptp-devel] Planning for a next release of linuxptp

2014-07-10 Thread Ledda William EXT
Dear linuxptp developers, Is there a plan for a new release of linuxptp? Currently I'm using 1.3, I think to upgrade my application to 1.4 but if there is a short term plan (not after September) I can wait for a new release. Thanks and regards William [iterlogo] William L

Re: [Linuxptp-devel] [PATCH 3/5] Move signal handling to util.c.

2014-07-10 Thread Miroslav Lichvar
On Wed, Jul 09, 2014 at 06:55:23PM +, Keller, Jacob E wrote: > On Wed, 2014-07-09 at 10:21 +0200, Miroslav Lichvar wrote: > > I'm not sure I understand your question. Would you prefer to export > > the running variable and use it in other modules directly instead of > > the is_running fuction?