public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation
@ 2023-10-06 12:15 lakshmi.sowjanya.d
  2023-10-06 12:38 ` Rodolfo Giometti
  2023-10-16  9:11 ` Andy Shevchenko
  0 siblings, 2 replies; 6+ messages in thread
From: lakshmi.sowjanya.d @ 2023-10-06 12:15 UTC (permalink / raw)
  To: linux-kernel, giometti; +Cc: andriy.shevchenko, pandith.n, lakshmi.sowjanya.d

From: Pandith N <pandith.n@intel.com>

PPS documentation has a generalized section for generators. Update the
section so any new generator documentation can be appended.

Signed-off-by: Pandith N <pandith.n@intel.com>
Signed-off-by: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
---
 Documentation/driver-api/pps.rst | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/Documentation/driver-api/pps.rst b/Documentation/driver-api/pps.rst
index 2d6b99766ee8..78dded03e5d8 100644
--- a/Documentation/driver-api/pps.rst
+++ b/Documentation/driver-api/pps.rst
@@ -200,11 +200,17 @@ Generators
 
 Sometimes one needs to be able not only to catch PPS signals but to produce
 them also. For example, running a distributed simulation, which requires
-computers' clock to be synchronized very tightly. One way to do this is to
-invent some complicated hardware solutions but it may be neither necessary
-nor affordable. The cheap way is to load a PPS generator on one of the
-computers (master) and PPS clients on others (slaves), and use very simple
-cables to deliver signals using parallel ports, for example.
+computers' clock to be synchronized very tightly.
+
+
+Parallel port generator
+------------------------
+
+One way to do this is to invent some complicated hardware solutions but it
+may be neither necessary nor affordable. The cheap way is to load a PPS
+generator on one of the computers (master) and PPS clients on others
+(slaves), and use very simple cables to deliver signals using parallel
+ports, for example.
 
 Parallel port cable pinout::
 
-- 
2.17.1


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

* Re: [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation
  2023-10-06 12:15 lakshmi.sowjanya.d
@ 2023-10-06 12:38 ` Rodolfo Giometti
  2023-10-16  9:11 ` Andy Shevchenko
  1 sibling, 0 replies; 6+ messages in thread
From: Rodolfo Giometti @ 2023-10-06 12:38 UTC (permalink / raw)
  To: lakshmi.sowjanya.d, linux-kernel
  Cc: andriy.shevchenko, pandith.n, Greg Kroah-Hartman

On 06/10/23 14:15, lakshmi.sowjanya.d@intel.com wrote:
> From: Pandith N <pandith.n@intel.com>
> 
> PPS documentation has a generalized section for generators. Update the
> section so any new generator documentation can be appended.
> 
> Signed-off-by: Pandith N <pandith.n@intel.com>
> Signed-off-by: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
> ---
>   Documentation/driver-api/pps.rst | 16 +++++++++++-----
>   1 file changed, 11 insertions(+), 5 deletions(-)
> 
> diff --git a/Documentation/driver-api/pps.rst b/Documentation/driver-api/pps.rst
> index 2d6b99766ee8..78dded03e5d8 100644
> --- a/Documentation/driver-api/pps.rst
> +++ b/Documentation/driver-api/pps.rst
> @@ -200,11 +200,17 @@ Generators
>   
>   Sometimes one needs to be able not only to catch PPS signals but to produce
>   them also. For example, running a distributed simulation, which requires
> -computers' clock to be synchronized very tightly. One way to do this is to
> -invent some complicated hardware solutions but it may be neither necessary
> -nor affordable. The cheap way is to load a PPS generator on one of the
> -computers (master) and PPS clients on others (slaves), and use very simple
> -cables to deliver signals using parallel ports, for example.
> +computers' clock to be synchronized very tightly.
> +
> +
> +Parallel port generator
> +------------------------
> +
> +One way to do this is to invent some complicated hardware solutions but it
> +may be neither necessary nor affordable. The cheap way is to load a PPS
> +generator on one of the computers (master) and PPS clients on others
> +(slaves), and use very simple cables to deliver signals using parallel
> +ports, for example.
>   
>   Parallel port cable pinout::
>   

Acked-by: Rodolfo Giometti <giometti@enneenne.com>

-- 
GNU/Linux Solutions                  e-mail: giometti@enneenne.com
Linux Device Driver                          giometti@linux.it
Embedded Systems                     phone:  +39 349 2432127
UNIX programming                     skype:  rodolfo.giometti


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

* Re: [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation
  2023-10-06 12:15 lakshmi.sowjanya.d
  2023-10-06 12:38 ` Rodolfo Giometti
@ 2023-10-16  9:11 ` Andy Shevchenko
  1 sibling, 0 replies; 6+ messages in thread
From: Andy Shevchenko @ 2023-10-16  9:11 UTC (permalink / raw)
  To: lakshmi.sowjanya.d; +Cc: linux-kernel, giometti, pandith.n

On Fri, Oct 06, 2023 at 05:45:31PM +0530, lakshmi.sowjanya.d@intel.com wrote:
> From: Pandith N <pandith.n@intel.com>
> 
> PPS documentation has a generalized section for generators. Update the
> section so any new generator documentation can be appended.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

You forgot to include the Documentation maintainer...

I suggest to try my "smart" script [1] that has a heuristics on whom
to send the changes.

[1]: https://github.com/andy-shev/home-bin-tools/blob/master/ge2maintainer.sh

-- 
With Best Regards,
Andy Shevchenko



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

* [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation
@ 2023-10-16 10:19 lakshmi.sowjanya.d
  2023-10-17 12:48 ` Andy Shevchenko
  2023-10-26 17:38 ` Jonathan Corbet
  0 siblings, 2 replies; 6+ messages in thread
From: lakshmi.sowjanya.d @ 2023-10-16 10:19 UTC (permalink / raw)
  To: linux-doc, linux-kernel
  Cc: giometti, corbet, gregkh, andriy.shevchenko, pandith.n,
	lakshmi.sowjanya.d

From: Pandith N <pandith.n@intel.com>

PPS documentation has a generalized section for generators. Update the
section so any new generator documentation can be appended.

Signed-off-by: Pandith N <pandith.n@intel.com>
Signed-off-by: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Rodolfo Giometti <giometti@enneenne.com>
---
 Documentation/driver-api/pps.rst | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/Documentation/driver-api/pps.rst b/Documentation/driver-api/pps.rst
index 2d6b99766ee8..78dded03e5d8 100644
--- a/Documentation/driver-api/pps.rst
+++ b/Documentation/driver-api/pps.rst
@@ -200,11 +200,17 @@ Generators
 
 Sometimes one needs to be able not only to catch PPS signals but to produce
 them also. For example, running a distributed simulation, which requires
-computers' clock to be synchronized very tightly. One way to do this is to
-invent some complicated hardware solutions but it may be neither necessary
-nor affordable. The cheap way is to load a PPS generator on one of the
-computers (master) and PPS clients on others (slaves), and use very simple
-cables to deliver signals using parallel ports, for example.
+computers' clock to be synchronized very tightly.
+
+
+Parallel port generator
+------------------------
+
+One way to do this is to invent some complicated hardware solutions but it
+may be neither necessary nor affordable. The cheap way is to load a PPS
+generator on one of the computers (master) and PPS clients on others
+(slaves), and use very simple cables to deliver signals using parallel
+ports, for example.
 
 Parallel port cable pinout::
 
-- 
2.17.1


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

* Re: [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation
  2023-10-16 10:19 [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation lakshmi.sowjanya.d
@ 2023-10-17 12:48 ` Andy Shevchenko
  2023-10-26 17:38 ` Jonathan Corbet
  1 sibling, 0 replies; 6+ messages in thread
From: Andy Shevchenko @ 2023-10-17 12:48 UTC (permalink / raw)
  To: lakshmi.sowjanya.d
  Cc: linux-doc, linux-kernel, giometti, corbet, gregkh, pandith.n

On Mon, Oct 16, 2023 at 03:49:53PM +0530, lakshmi.sowjanya.d@intel.com wrote:
> From: Pandith N <pandith.n@intel.com>
> 
> PPS documentation has a generalized section for generators. Update the
> section so any new generator documentation can be appended.

It should be v2 with a changelog.

-- 
With Best Regards,
Andy Shevchenko



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

* Re: [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation
  2023-10-16 10:19 [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation lakshmi.sowjanya.d
  2023-10-17 12:48 ` Andy Shevchenko
@ 2023-10-26 17:38 ` Jonathan Corbet
  1 sibling, 0 replies; 6+ messages in thread
From: Jonathan Corbet @ 2023-10-26 17:38 UTC (permalink / raw)
  To: lakshmi.sowjanya.d, linux-doc, linux-kernel
  Cc: giometti, gregkh, andriy.shevchenko, pandith.n,
	lakshmi.sowjanya.d

lakshmi.sowjanya.d@intel.com writes:

> From: Pandith N <pandith.n@intel.com>
>
> PPS documentation has a generalized section for generators. Update the
> section so any new generator documentation can be appended.
>
> Signed-off-by: Pandith N <pandith.n@intel.com>
> Signed-off-by: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Acked-by: Rodolfo Giometti <giometti@enneenne.com>
> ---
>  Documentation/driver-api/pps.rst | 16 +++++++++++-----
>  1 file changed, 11 insertions(+), 5 deletions(-)

Applied, thanks.

jon

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

end of thread, other threads:[~2023-10-26 17:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-16 10:19 [PATCH v1] Documentation: driver-api: pps: Update PPS generator documentation lakshmi.sowjanya.d
2023-10-17 12:48 ` Andy Shevchenko
2023-10-26 17:38 ` Jonathan Corbet
  -- strict thread matches above, loose matches on Subject: below --
2023-10-06 12:15 lakshmi.sowjanya.d
2023-10-06 12:38 ` Rodolfo Giometti
2023-10-16  9:11 ` Andy Shevchenko

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