2019-04-22 16:49:11 -03:00
|
|
|
.. SPDX-License-Identifier: GPL-2.0
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2019-06-12 14:52:56 -03:00
|
|
|
======================
|
|
|
|
PPS - Pulse Per Second
|
|
|
|
======================
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2019-06-12 14:52:56 -03:00
|
|
|
Copyright (C) 2007 Rodolfo Giometti <giometti@enneenne.com>
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Overview
|
|
|
|
--------
|
|
|
|
|
|
|
|
LinuxPPS provides a programming interface (API) to define in the
|
|
|
|
system several PPS sources.
|
|
|
|
|
|
|
|
PPS means "pulse per second" and a PPS source is just a device which
|
|
|
|
provides a high precision signal each second so that an application
|
|
|
|
can use it to adjust system clock time.
|
|
|
|
|
|
|
|
A PPS source can be connected to a serial port (usually to the Data
|
|
|
|
Carrier Detect pin) or to a parallel port (ACK-pin) or to a special
|
|
|
|
CPU's GPIOs (this is the common case in embedded systems) but in each
|
|
|
|
case when a new pulse arrives the system must apply to it a timestamp
|
|
|
|
and record it for userland.
|
|
|
|
|
|
|
|
Common use is the combination of the NTPD as userland program, with a
|
|
|
|
GPS receiver as PPS source, to obtain a wallclock-time with
|
|
|
|
sub-millisecond synchronisation to UTC.
|
|
|
|
|
|
|
|
|
|
|
|
RFC considerations
|
|
|
|
------------------
|
|
|
|
|
|
|
|
While implementing a PPS API as RFC 2783 defines and using an embedded
|
|
|
|
CPU GPIO-Pin as physical link to the signal, I encountered a deeper
|
|
|
|
problem:
|
|
|
|
|
|
|
|
At startup it needs a file descriptor as argument for the function
|
|
|
|
time_pps_create().
|
|
|
|
|
|
|
|
This implies that the source has a /dev/... entry. This assumption is
|
2017-09-08 16:17:19 -07:00
|
|
|
OK for the serial and parallel port, where you can do something
|
2009-06-17 16:28:37 -07:00
|
|
|
useful besides(!) the gathering of timestamps as it is the central
|
2017-09-08 16:17:19 -07:00
|
|
|
task for a PPS API. But this assumption does not work for a single
|
2009-06-17 16:28:37 -07:00
|
|
|
purpose GPIO line. In this case even basic file-related functionality
|
|
|
|
(like read() and write()) makes no sense at all and should not be a
|
2017-09-08 16:17:19 -07:00
|
|
|
precondition for the use of a PPS API.
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
The problem can be simply solved if you consider that a PPS source is
|
|
|
|
not always connected with a GPS data source.
|
|
|
|
|
|
|
|
So your programs should check if the GPS data source (the serial port
|
|
|
|
for instance) is a PPS source too, and if not they should provide the
|
|
|
|
possibility to open another device as PPS source.
|
|
|
|
|
|
|
|
In LinuxPPS the PPS sources are simply char devices usually mapped
|
2016-12-24 16:27:30 +08:00
|
|
|
into files /dev/pps0, /dev/pps1, etc.
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
|
2013-09-16 08:41:00 +02:00
|
|
|
PPS with USB to serial devices
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
It is possible to grab the PPS from an USB to serial device. However,
|
|
|
|
you should take into account the latencies and jitter introduced by
|
2016-12-24 16:27:30 +08:00
|
|
|
the USB stack. Users have reported clock instability around +-1ms when
|
2016-12-24 16:27:31 +08:00
|
|
|
synchronized with PPS through USB. With USB 2.0, jitter may decrease
|
|
|
|
down to the order of 125 microseconds.
|
|
|
|
|
|
|
|
This may be suitable for time server synchronization with NTP because
|
|
|
|
of its undersampling and algorithms.
|
2013-09-16 08:41:00 +02:00
|
|
|
|
|
|
|
If your device doesn't report PPS, you can check that the feature is
|
|
|
|
supported by its driver. Most of the time, you only need to add a call
|
|
|
|
to usb_serial_handle_dcd_change after checking the DCD status (see
|
|
|
|
ch341 and pl2303 examples).
|
|
|
|
|
|
|
|
|
2009-06-17 16:28:37 -07:00
|
|
|
Coding example
|
|
|
|
--------------
|
|
|
|
|
|
|
|
To register a PPS source into the kernel you should define a struct
|
2019-06-12 14:52:56 -03:00
|
|
|
pps_source_info as follows::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
static struct pps_source_info pps_ktimer_info = {
|
|
|
|
.name = "ktimer",
|
|
|
|
.path = "",
|
2017-09-08 16:17:19 -07:00
|
|
|
.mode = PPS_CAPTUREASSERT | PPS_OFFSETASSERT |
|
|
|
|
PPS_ECHOASSERT |
|
2009-06-17 16:28:37 -07:00
|
|
|
PPS_CANWAIT | PPS_TSFMT_TSPEC,
|
|
|
|
.echo = pps_ktimer_echo,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
};
|
|
|
|
|
|
|
|
and then calling the function pps_register_source() in your
|
2019-06-12 14:52:56 -03:00
|
|
|
initialization routine as follows::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
source = pps_register_source(&pps_ktimer_info,
|
|
|
|
PPS_CAPTUREASSERT | PPS_OFFSETASSERT);
|
|
|
|
|
2019-06-12 14:52:56 -03:00
|
|
|
The pps_register_source() prototype is::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
int pps_register_source(struct pps_source_info *info, int default_params)
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
where "info" is a pointer to a structure that describes a particular
|
|
|
|
PPS source, "default_params" tells the system what the initial default
|
|
|
|
parameters for the device should be (it is obvious that these parameters
|
|
|
|
must be a subset of ones defined in the struct
|
2017-09-08 16:17:19 -07:00
|
|
|
pps_source_info which describe the capabilities of the driver).
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
Once you have registered a new PPS source into the system you can
|
|
|
|
signal an assert event (for example in the interrupt handler routine)
|
2019-06-12 14:52:56 -03:00
|
|
|
just using::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
pps_event(source, &ts, PPS_CAPTUREASSERT, ptr)
|
|
|
|
|
|
|
|
where "ts" is the event's timestamp.
|
|
|
|
|
|
|
|
The same function may also run the defined echo function
|
|
|
|
(pps_ktimer_echo(), passing to it the "ptr" pointer) if the user
|
|
|
|
asked for that... etc..
|
|
|
|
|
2015-07-13 12:29:11 +09:00
|
|
|
Please see the file drivers/pps/clients/pps-ktimer.c for example code.
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
|
|
|
|
SYSFS support
|
|
|
|
-------------
|
|
|
|
|
2019-06-12 14:52:56 -03:00
|
|
|
If the SYSFS filesystem is enabled in the kernel it provides a new class::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
$ ls /sys/class/pps/
|
|
|
|
pps0/ pps1/ pps2/
|
|
|
|
|
|
|
|
Every directory is the ID of a PPS sources defined in the system and
|
2019-06-12 14:52:56 -03:00
|
|
|
inside you find several files::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
$ ls -F /sys/class/pps/pps0/
|
|
|
|
assert dev mode path subsystem@
|
|
|
|
clear echo name power/ uevent
|
|
|
|
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
Inside each "assert" and "clear" file you can find the timestamp and a
|
2019-06-12 14:52:56 -03:00
|
|
|
sequence number::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
$ cat /sys/class/pps/pps0/assert
|
|
|
|
1170026870.983207967#8
|
|
|
|
|
|
|
|
Where before the "#" is the timestamp in seconds; after it is the
|
|
|
|
sequence number. Other files are:
|
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
* echo: reports if the PPS source has an echo function or not;
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
* mode: reports available PPS functioning modes;
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
* name: reports the PPS source's name;
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
* path: reports the PPS source's device path, that is the device the
|
|
|
|
PPS source is connected to (if it exists).
|
2009-06-17 16:28:37 -07:00
|
|
|
|
|
|
|
|
|
|
|
Testing the PPS support
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
In order to test the PPS support even without specific hardware you can use
|
2017-09-08 16:17:19 -07:00
|
|
|
the pps-ktimer driver (see the client subsection in the PPS configuration menu)
|
2016-12-24 16:27:29 +08:00
|
|
|
and the userland tools available in your distribution's pps-tools package,
|
2017-09-08 16:17:19 -07:00
|
|
|
http://linuxpps.org , or https://github.com/redlab-i/pps-tools.
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
Once you have enabled the compilation of pps-ktimer just modprobe it (if
|
2019-06-12 14:52:56 -03:00
|
|
|
not statically compiled)::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
# modprobe pps-ktimer
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2019-06-12 14:52:56 -03:00
|
|
|
and the run ppstest as follow::
|
2009-06-17 16:28:37 -07:00
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
$ ./ppstest /dev/pps1
|
2009-06-17 16:28:37 -07:00
|
|
|
trying PPS source "/dev/pps1"
|
|
|
|
found PPS source "/dev/pps1"
|
|
|
|
ok, found 1 source(s), now start fetching data...
|
|
|
|
source 0 - assert 1186592699.388832443, sequence: 364 - clear 0.000000000, sequence: 0
|
|
|
|
source 0 - assert 1186592700.388931295, sequence: 365 - clear 0.000000000, sequence: 0
|
|
|
|
source 0 - assert 1186592701.389032765, sequence: 366 - clear 0.000000000, sequence: 0
|
|
|
|
|
2017-09-08 16:17:19 -07:00
|
|
|
Please note that to compile userland programs, you need the file timepps.h.
|
2016-12-24 16:27:29 +08:00
|
|
|
This is available in the pps-tools repository mentioned above.
|
2011-01-12 17:00:59 -08:00
|
|
|
|
|
|
|
|
|
|
|
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
|
2023-10-16 15:49:53 +05:30
|
|
|
computers' clock to be synchronized very tightly.
|
|
|
|
|
2024-11-08 08:31:14 +01:00
|
|
|
To do so the class pps-gen has been added. PPS generators can be
|
|
|
|
registered in the kernel by defining a struct pps_gen_source_info as
|
|
|
|
follows::
|
|
|
|
|
pps: generators: replace copy of pps-gen info struct with const pointer
Some PPS generator drivers may need to retrieve a pointer to their
internal data while executing the PPS generator enable() method.
During the driver registration the pps_gen_device pointer is returned
from the framework, and for that reason, there is difficulty in
getting generator driver data back in the enable function. We won't be
able to use container_of macro as it results in static assert, and we
might end up in using static pointer.
To solve the issue and to get back the generator driver data back, we
should not copy the struct pps_gen_source_info within the struct
pps_gen_device during the registration stage, but simply save the
pointer of the driver one. In this manner, driver may get a pointer
to their internal data as shown below:
struct pps_gen_foo_data_s {
...
struct pps_gen_source_info gen_info;
struct pps_gen_device *pps_gen;
...
};
static int __init pps_gen_foo_init(void)
{
struct pps_gen_foo_data_s *foo;
...
foo->pps_gen = pps_gen_register_source(&foo->gen_info);
...
}
Then, in the enable() method, we can retrieve the pointer to the main
struct by using the code below:
static int pps_gen_foo_enable(struct pps_gen_device *pps_gen, bool enable)
{
struct pps_gen_foo_data_s *foo = container_of(pps_gen->info,
struct pps_gen_foo_data_s, gen_info);
...
}
Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
Tested-by: Subramanian Mohan <subramanian.mohan@intel.com>
Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Subramanian Mohan <subramanian.mohan@intel.com>
Link: https://lore.kernel.org/r/20250219040618.70962-2-subramanian.mohan@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2025-02-19 09:36:15 +05:30
|
|
|
static const struct pps_gen_source_info pps_gen_dummy_info = {
|
2024-11-08 08:31:14 +01:00
|
|
|
.use_system_clock = true,
|
|
|
|
.get_time = pps_gen_dummy_get_time,
|
|
|
|
.enable = pps_gen_dummy_enable,
|
|
|
|
};
|
|
|
|
|
|
|
|
Where the use_system_clock states if the generator uses the system
|
|
|
|
clock to generate its pulses, or they are from a peripheral device
|
|
|
|
clock. Method get_time() is used to query the time stored into the
|
|
|
|
generator clock, while the method enable() is used to enable or
|
|
|
|
disable the PPS pulse generation.
|
|
|
|
|
|
|
|
Then calling the function pps_gen_register_source() in your
|
|
|
|
initialization routine as follows creates a new generator in the
|
|
|
|
system::
|
|
|
|
|
|
|
|
pps_gen = pps_gen_register_source(&pps_gen_dummy_info);
|
|
|
|
|
|
|
|
Generators SYSFS support
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
If the SYSFS filesystem is enabled in the kernel it provides a new class::
|
|
|
|
|
|
|
|
$ ls /sys/class/pps-gen/
|
|
|
|
pps-gen0/ pps-gen1/ pps-gen2/
|
|
|
|
|
|
|
|
Every directory is the ID of a PPS generator defined in the system and
|
|
|
|
inside of it you find several files::
|
|
|
|
|
|
|
|
$ ls -F /sys/class/pps-gen/pps-gen0/
|
|
|
|
dev enable name power/ subsystem@ system time uevent
|
|
|
|
|
|
|
|
To enable the PPS signal generation you can use the command below::
|
|
|
|
|
|
|
|
$ echo 1 > /sys/class/pps-gen/pps-gen0/enable
|
2023-10-16 15:49:53 +05:30
|
|
|
|
|
|
|
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.
|
2011-01-12 17:00:59 -08:00
|
|
|
|
2019-06-12 14:52:56 -03:00
|
|
|
Parallel port cable pinout::
|
|
|
|
|
|
|
|
pin name master slave
|
|
|
|
1 STROBE *------ *
|
|
|
|
2 D0 * | *
|
|
|
|
3 D1 * | *
|
|
|
|
4 D2 * | *
|
|
|
|
5 D3 * | *
|
|
|
|
6 D4 * | *
|
|
|
|
7 D5 * | *
|
|
|
|
8 D6 * | *
|
|
|
|
9 D7 * | *
|
|
|
|
10 ACK * ------*
|
|
|
|
11 BUSY * *
|
|
|
|
12 PE * *
|
|
|
|
13 SEL * *
|
|
|
|
14 AUTOFD * *
|
|
|
|
15 ERROR * *
|
|
|
|
16 INIT * *
|
|
|
|
17 SELIN * *
|
|
|
|
18-25 GND *-----------*
|
2011-01-12 17:00:59 -08:00
|
|
|
|
|
|
|
Please note that parallel port interrupt occurs only on high->low transition,
|
|
|
|
so it is used for PPS assert edge. PPS clear edge can be determined only
|
|
|
|
using polling in the interrupt handler which actually can be done way more
|
|
|
|
precisely because interrupt handling delays can be quite big and random. So
|
|
|
|
current parport PPS generator implementation (pps_gen_parport module) is
|
|
|
|
geared towards using the clear edge for time synchronization.
|
|
|
|
|
|
|
|
Clear edge polling is done with disabled interrupts so it's better to select
|
|
|
|
delay between assert and clear edge as small as possible to reduce system
|
|
|
|
latencies. But if it is too small slave won't be able to capture clear edge
|
|
|
|
transition. The default of 30us should be good enough in most situations.
|
|
|
|
The delay can be selected using 'delay' pps_gen_parport module parameter.
|
2025-02-19 09:36:17 +05:30
|
|
|
|
|
|
|
|
|
|
|
Intel Timed I/O PPS signal generator
|
|
|
|
------------------------------------
|
|
|
|
|
|
|
|
Intel Timed I/O is a high precision device, present on 2019 and newer Intel
|
|
|
|
CPUs, that can generate PPS signals.
|
|
|
|
|
|
|
|
Timed I/O and system time are both driven by same hardware clock. The signal
|
|
|
|
is generated with a precision of ~20 nanoseconds. The generated PPS signal
|
|
|
|
is used to synchronize an external device with system clock. For example,
|
|
|
|
it can be used to share your clock with a device that receives PPS signal,
|
|
|
|
generated by Timed I/O device. There are dedicated Timed I/O pins to deliver
|
|
|
|
the PPS signal to an external device.
|
|
|
|
|
|
|
|
Usage of Intel Timed I/O as PPS generator:
|
|
|
|
|
|
|
|
Start generating PPS signal::
|
|
|
|
|
|
|
|
$echo 1 > /sys/class/pps-gen/pps-genx/enable
|
|
|
|
|
|
|
|
Stop generating PPS signal::
|
|
|
|
|
|
|
|
$echo 0 > /sys/class/pps-gen/pps-genx/enable
|