Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # PPS support configuration
  3. #
  4. menuconfig PPS
  5. tristate "PPS support"
  6. ---help---
  7. PPS (Pulse Per Second) is a special pulse provided by some GPS
  8. antennae. Userland can use it to get a high-precision time
  9. reference.
  10. Some antennae's PPS signals are connected with the CD (Carrier
  11. Detect) pin of the serial line they use to communicate with the
  12. host. In this case use the SERIAL_LINE client support.
  13. Some antennae's PPS signals are connected with some special host
  14. inputs so you have to enable the corresponding client support.
  15. To compile this driver as a module, choose M here: the module
  16. will be called pps_core.ko.
  17. if PPS
  18. config PPS_DEBUG
  19. bool "PPS debugging messages"
  20. help
  21. Say Y here if you want the PPS support to produce a bunch of debug
  22. messages to the system log. Select this if you are having a
  23. problem with PPS support and want to see more of what is going on.
  24. config NTP_PPS
  25. bool "PPS kernel consumer support"
  26. depends on !NO_HZ_COMMON
  27. help
  28. This option adds support for direct in-kernel time
  29. synchronization using an external PPS signal.
  30. It doesn't work on tickless systems at the moment.
  31. source drivers/pps/clients/Kconfig
  32. source drivers/pps/generators/Kconfig
  33. endif # PPS