Kconfig 1.3 KB

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