pps.txt 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. PPS - Pulse Per Second
  2. ----------------------
  3. (C) Copyright 2007 Rodolfo Giometti <giometti@enneenne.com>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. Overview
  13. --------
  14. LinuxPPS provides a programming interface (API) to define in the
  15. system several PPS sources.
  16. PPS means "pulse per second" and a PPS source is just a device which
  17. provides a high precision signal each second so that an application
  18. can use it to adjust system clock time.
  19. A PPS source can be connected to a serial port (usually to the Data
  20. Carrier Detect pin) or to a parallel port (ACK-pin) or to a special
  21. CPU's GPIOs (this is the common case in embedded systems) but in each
  22. case when a new pulse arrives the system must apply to it a timestamp
  23. and record it for userland.
  24. Common use is the combination of the NTPD as userland program, with a
  25. GPS receiver as PPS source, to obtain a wallclock-time with
  26. sub-millisecond synchronisation to UTC.
  27. RFC considerations
  28. ------------------
  29. While implementing a PPS API as RFC 2783 defines and using an embedded
  30. CPU GPIO-Pin as physical link to the signal, I encountered a deeper
  31. problem:
  32. At startup it needs a file descriptor as argument for the function
  33. time_pps_create().
  34. This implies that the source has a /dev/... entry. This assumption is
  35. ok for the serial and parallel port, where you can do something
  36. useful besides(!) the gathering of timestamps as it is the central
  37. task for a PPS-API. But this assumption does not work for a single
  38. purpose GPIO line. In this case even basic file-related functionality
  39. (like read() and write()) makes no sense at all and should not be a
  40. precondition for the use of a PPS-API.
  41. The problem can be simply solved if you consider that a PPS source is
  42. not always connected with a GPS data source.
  43. So your programs should check if the GPS data source (the serial port
  44. for instance) is a PPS source too, and if not they should provide the
  45. possibility to open another device as PPS source.
  46. In LinuxPPS the PPS sources are simply char devices usually mapped
  47. into files /dev/pps0, /dev/pps1, etc..
  48. Coding example
  49. --------------
  50. To register a PPS source into the kernel you should define a struct
  51. pps_source_info_s as follows:
  52. static struct pps_source_info pps_ktimer_info = {
  53. .name = "ktimer",
  54. .path = "",
  55. .mode = PPS_CAPTUREASSERT | PPS_OFFSETASSERT | \
  56. PPS_ECHOASSERT | \
  57. PPS_CANWAIT | PPS_TSFMT_TSPEC,
  58. .echo = pps_ktimer_echo,
  59. .owner = THIS_MODULE,
  60. };
  61. and then calling the function pps_register_source() in your
  62. intialization routine as follows:
  63. source = pps_register_source(&pps_ktimer_info,
  64. PPS_CAPTUREASSERT | PPS_OFFSETASSERT);
  65. The pps_register_source() prototype is:
  66. int pps_register_source(struct pps_source_info_s *info, int default_params)
  67. where "info" is a pointer to a structure that describes a particular
  68. PPS source, "default_params" tells the system what the initial default
  69. parameters for the device should be (it is obvious that these parameters
  70. must be a subset of ones defined in the struct
  71. pps_source_info_s which describe the capabilities of the driver).
  72. Once you have registered a new PPS source into the system you can
  73. signal an assert event (for example in the interrupt handler routine)
  74. just using:
  75. pps_event(source, &ts, PPS_CAPTUREASSERT, ptr)
  76. where "ts" is the event's timestamp.
  77. The same function may also run the defined echo function
  78. (pps_ktimer_echo(), passing to it the "ptr" pointer) if the user
  79. asked for that... etc..
  80. Please see the file drivers/pps/clients/ktimer.c for example code.
  81. SYSFS support
  82. -------------
  83. If the SYSFS filesystem is enabled in the kernel it provides a new class:
  84. $ ls /sys/class/pps/
  85. pps0/ pps1/ pps2/
  86. Every directory is the ID of a PPS sources defined in the system and
  87. inside you find several files:
  88. $ ls /sys/class/pps/pps0/
  89. assert clear echo mode name path subsystem@ uevent
  90. Inside each "assert" and "clear" file you can find the timestamp and a
  91. sequence number:
  92. $ cat /sys/class/pps/pps0/assert
  93. 1170026870.983207967#8
  94. Where before the "#" is the timestamp in seconds; after it is the
  95. sequence number. Other files are:
  96. * echo: reports if the PPS source has an echo function or not;
  97. * mode: reports available PPS functioning modes;
  98. * name: reports the PPS source's name;
  99. * path: reports the PPS source's device path, that is the device the
  100. PPS source is connected to (if it exists).
  101. Testing the PPS support
  102. -----------------------
  103. In order to test the PPS support even without specific hardware you can use
  104. the ktimer driver (see the client subsection in the PPS configuration menu)
  105. and the userland tools provided into Documentaion/pps/ directory.
  106. Once you have enabled the compilation of ktimer just modprobe it (if
  107. not statically compiled):
  108. # modprobe ktimer
  109. and the run ppstest as follow:
  110. $ ./ppstest /dev/pps0
  111. trying PPS source "/dev/pps1"
  112. found PPS source "/dev/pps1"
  113. ok, found 1 source(s), now start fetching data...
  114. source 0 - assert 1186592699.388832443, sequence: 364 - clear 0.000000000, sequence: 0
  115. source 0 - assert 1186592700.388931295, sequence: 365 - clear 0.000000000, sequence: 0
  116. source 0 - assert 1186592701.389032765, sequence: 366 - clear 0.000000000, sequence: 0
  117. Please, note that to compile userland programs you need the file timepps.h
  118. (see Documentation/pps/).
  119. Generators
  120. ----------
  121. Sometimes one needs to be able not only to catch PPS signals but to produce
  122. them also. For example, running a distributed simulation, which requires
  123. computers' clock to be synchronized very tightly. One way to do this is to
  124. invent some complicated hardware solutions but it may be neither necessary
  125. nor affordable. The cheap way is to load a PPS generator on one of the
  126. computers (master) and PPS clients on others (slaves), and use very simple
  127. cables to deliver signals using parallel ports, for example.
  128. Parallel port cable pinout:
  129. pin name master slave
  130. 1 STROBE *------ *
  131. 2 D0 * | *
  132. 3 D1 * | *
  133. 4 D2 * | *
  134. 5 D3 * | *
  135. 6 D4 * | *
  136. 7 D5 * | *
  137. 8 D6 * | *
  138. 9 D7 * | *
  139. 10 ACK * ------*
  140. 11 BUSY * *
  141. 12 PE * *
  142. 13 SEL * *
  143. 14 AUTOFD * *
  144. 15 ERROR * *
  145. 16 INIT * *
  146. 17 SELIN * *
  147. 18-25 GND *-----------*
  148. Please note that parallel port interrupt occurs only on high->low transition,
  149. so it is used for PPS assert edge. PPS clear edge can be determined only
  150. using polling in the interrupt handler which actually can be done way more
  151. precisely because interrupt handling delays can be quite big and random. So
  152. current parport PPS generator implementation (pps_gen_parport module) is
  153. geared towards using the clear edge for time synchronization.
  154. Clear edge polling is done with disabled interrupts so it's better to select
  155. delay between assert and clear edge as small as possible to reduce system
  156. latencies. But if it is too small slave won't be able to capture clear edge
  157. transition. The default of 30us should be good enough in most situations.
  158. The delay can be selected using 'delay' pps_gen_parport module parameter.