Kconfig 1.3 KB

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