Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig HTE
  3. bool "Hardware Timestamping Engine (HTE) Support"
  4. help
  5. Hardware Timestamping Engine (HTE) Support.
  6. Some devices provide a hardware timestamping engine which can
  7. timestamp certain device lines/signals in realtime. It comes with a
  8. benefit for the applications needing accurate timestamping event with
  9. less jitter. This framework provides a generic interface to such HTE
  10. providers and consumer devices.
  11. If unsure, say no.
  12. if HTE
  13. config HTE_TEGRA194
  14. tristate "NVIDIA Tegra194 HTE Support"
  15. depends on (ARCH_TEGRA_194_SOC || COMPILE_TEST)
  16. depends on GPIOLIB
  17. help
  18. Enable this option for integrated hardware timestamping engine also
  19. known as generic timestamping engine (GTE) support on NVIDIA Tegra194
  20. systems-on-chip. The driver supports 352 LIC IRQs and 39 AON GPIOs
  21. lines for timestamping in realtime.
  22. config HTE_TEGRA194_TEST
  23. tristate "NVIDIA Tegra194 HTE Test"
  24. depends on (HTE_TEGRA194 || COMPILE_TEST)
  25. help
  26. The NVIDIA Tegra194 GTE test driver demonstrates how to use HTE
  27. framework to timestamp GPIO and LIC IRQ lines.
  28. endif