diff options
author | Dipen Patel <dipenp@nvidia.com> | 2022-04-22 13:52:13 -0700 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2022-05-04 11:05:54 +0200 |
commit | 31ab09b4218879bc394c9faa6da983a82a694600 (patch) | |
tree | 381a0c953e6f6838be2989319b3752263f2a2c11 /drivers/hte/Kconfig | |
parent | 6406ac633d8096d5a05e4a82499a4efac2dd18d5 (diff) | |
download | linux-31ab09b4218879bc394c9faa6da983a82a694600.tar.gz |
drivers: Add hardware timestamp engine (HTE) subsystem
Some devices can timestamp system lines/signals/Buses in real-time
using the hardware counter or other hardware means which can give
finer granularity and help avoid jitter introduced by software
timestamping. To utilize such functionality, this patchset creates
HTE subsystem where devices can register themselves as providers so
that the consumers devices can request specific line from the
providers. The patch also adds compilation support in Makefile and
menu options in Kconfig.
The provider does following:
- Registers chip with the framework.
- Provides translation hook to convert logical line id.
- Provides enable/disable, request/release callbacks.
- Pushes timestamp data to HTE subsystem.
The consumer does following:
- Initializes line attribute.
- Gets HTE timestamp descriptor.
- Requests timestamp functionality.
- Puts HTE timestamp descriptor.
Signed-off-by: Dipen Patel <dipenp@nvidia.com>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/hte/Kconfig')
-rw-r--r-- | drivers/hte/Kconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/hte/Kconfig b/drivers/hte/Kconfig new file mode 100644 index 000000000000..478a80a2f384 --- /dev/null +++ b/drivers/hte/Kconfig @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: GPL-2.0-only +menuconfig HTE + bool "Hardware Timestamping Engine (HTE) Support" + help + Hardware Timestamping Engine (HTE) Support. + + Some devices provide a hardware timestamping engine which can + timestamp certain device lines/signals in realtime. It comes with a + benefit for the applications needing accurate timestamping event with + less jitter. This framework provides a generic interface to such HTE + providers and consumer devices. + + If unsure, say no. + |