netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v1] ptp: document struct ptp_clock_request members
@ 2020-11-17 21:38 Ahmad Fatoum
  2020-11-18 13:05 ` Richard Cochran
  2020-11-18 21:35 ` Jacob Keller
  0 siblings, 2 replies; 4+ messages in thread
From: Ahmad Fatoum @ 2020-11-17 21:38 UTC (permalink / raw)
  To: Richard Cochran; +Cc: kernel, Ahmad Fatoum, netdev, linux-kernel

It's arguable most people interested in configuring a PPS signal
want it as external output, not as kernel input. PTP_CLK_REQ_PPS
is for input though. Add documentation to nudge readers into
the correct direction.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
Prompted by Richard's comment here:
https://lore.kernel.org/netdev/20180525170247.r4gn323udrucmyv6@localhost/
---
 include/linux/ptp_clock_kernel.h | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/include/linux/ptp_clock_kernel.h b/include/linux/ptp_clock_kernel.h
index d3e8ba5c7125..0d47fd33b228 100644
--- a/include/linux/ptp_clock_kernel.h
+++ b/include/linux/ptp_clock_kernel.h
@@ -12,6 +12,19 @@
 #include <linux/pps_kernel.h>
 #include <linux/ptp_clock.h>
 
+/**
+ * struct ptp_clock_request - request PTP clock event
+ *
+ * @type:   The type of the request.
+ *	    EXTTS:  Configure external trigger timestamping
+ *	    PEROUT: Configure periodic output signal (e.g. PPS)
+ *	    PPS:    trigger internal PPS event for input
+ *	            into kernel PPS subsystem
+ * @extts:  describes configuration for external trigger timestamping.
+ *          This is only valid when event == PTP_CLK_REQ_EXTTS.
+ * @perout: describes configuration for periodic output.
+ *	    This is only valid when event == PTP_CLK_REQ_PEROUT.
+ */
 
 struct ptp_clock_request {
 	enum {
-- 
2.29.2


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

* Re: [PATCH net-next v1] ptp: document struct ptp_clock_request members
  2020-11-17 21:38 [PATCH net-next v1] ptp: document struct ptp_clock_request members Ahmad Fatoum
@ 2020-11-18 13:05 ` Richard Cochran
  2020-11-18 18:51   ` Jakub Kicinski
  2020-11-18 21:35 ` Jacob Keller
  1 sibling, 1 reply; 4+ messages in thread
From: Richard Cochran @ 2020-11-18 13:05 UTC (permalink / raw)
  To: Ahmad Fatoum; +Cc: kernel, netdev, linux-kernel

On Tue, Nov 17, 2020 at 10:38:26PM +0100, Ahmad Fatoum wrote:
> It's arguable most people interested in configuring a PPS signal
> want it as external output, not as kernel input. PTP_CLK_REQ_PPS
> is for input though. Add documentation to nudge readers into
> the correct direction.
> 
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>

Thanks!

Acked-by: Richard Cochran <richardcochran@gmail.com>

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

* Re: [PATCH net-next v1] ptp: document struct ptp_clock_request members
  2020-11-18 13:05 ` Richard Cochran
@ 2020-11-18 18:51   ` Jakub Kicinski
  0 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2020-11-18 18:51 UTC (permalink / raw)
  To: Richard Cochran; +Cc: Ahmad Fatoum, kernel, netdev, linux-kernel

On Wed, 18 Nov 2020 05:05:41 -0800 Richard Cochran wrote:
> On Tue, Nov 17, 2020 at 10:38:26PM +0100, Ahmad Fatoum wrote:
> > It's arguable most people interested in configuring a PPS signal
> > want it as external output, not as kernel input. PTP_CLK_REQ_PPS
> > is for input though. Add documentation to nudge readers into
> > the correct direction.
> > 
> > Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>  
> 
> Acked-by: Richard Cochran <richardcochran@gmail.com>

Applied, thanks!

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

* Re: [PATCH net-next v1] ptp: document struct ptp_clock_request members
  2020-11-17 21:38 [PATCH net-next v1] ptp: document struct ptp_clock_request members Ahmad Fatoum
  2020-11-18 13:05 ` Richard Cochran
@ 2020-11-18 21:35 ` Jacob Keller
  1 sibling, 0 replies; 4+ messages in thread
From: Jacob Keller @ 2020-11-18 21:35 UTC (permalink / raw)
  To: Ahmad Fatoum, Richard Cochran; +Cc: kernel, netdev, linux-kernel



On 11/17/2020 1:38 PM, Ahmad Fatoum wrote:
> It's arguable most people interested in configuring a PPS signal
> want it as external output, not as kernel input. PTP_CLK_REQ_PPS
> is for input though. Add documentation to nudge readers into
> the correct direction.

Agreed. I think at least one driver has abused the PPS in the past as a
way to request that we enable the PPS hardware, resulting in effectively
using it as a limited form of the EXTTS interface. Hopefully this helps
reduce the confusion here!

Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>

> 
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> Prompted by Richard's comment here:
> https://lore.kernel.org/netdev/20180525170247.r4gn323udrucmyv6@localhost/
> ---
>  include/linux/ptp_clock_kernel.h | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/include/linux/ptp_clock_kernel.h b/include/linux/ptp_clock_kernel.h
> index d3e8ba5c7125..0d47fd33b228 100644
> --- a/include/linux/ptp_clock_kernel.h
> +++ b/include/linux/ptp_clock_kernel.h
> @@ -12,6 +12,19 @@
>  #include <linux/pps_kernel.h>
>  #include <linux/ptp_clock.h>
>  
> +/**
> + * struct ptp_clock_request - request PTP clock event
> + *
> + * @type:   The type of the request.
> + *	    EXTTS:  Configure external trigger timestamping
> + *	    PEROUT: Configure periodic output signal (e.g. PPS)
> + *	    PPS:    trigger internal PPS event for input
> + *	            into kernel PPS subsystem
> + * @extts:  describes configuration for external trigger timestamping.
> + *          This is only valid when event == PTP_CLK_REQ_EXTTS.
> + * @perout: describes configuration for periodic output.
> + *	    This is only valid when event == PTP_CLK_REQ_PEROUT.
> + */
>  
>  struct ptp_clock_request {
>  	enum {
> 

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

end of thread, other threads:[~2020-11-18 21:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-17 21:38 [PATCH net-next v1] ptp: document struct ptp_clock_request members Ahmad Fatoum
2020-11-18 13:05 ` Richard Cochran
2020-11-18 18:51   ` Jakub Kicinski
2020-11-18 21:35 ` Jacob Keller

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).