mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
c528943593
The changes for the hte/timestamp subsystem include the following: - Improve comments in the translate function - Reflect the GPIOLIB API changes during calculation of the GPIO base - Improve error handling in Tegra test and provider drivers - Improve code to set the line name -----BEGIN PGP SIGNATURE----- iIgEABYIADAWIQT4slW2T0Q/rXAa29f4pUxhzZTZKAUCZTwqPxIcZGlwZW5wQG52 aWRpYS5jb20ACgkQ+KVMYc2U2SjMGgD/R7vxDtV3Ik+YyYnjGmMPOoB1foNy+XKr dJUY/SWKoHwBAOUuDPrj/Mg6aaIst5nZcEOyveWmKck0wb0LRsC9TcsL =/8rI -----END PGP SIGNATURE----- Merge tag 'for-6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/pateldipen1984/linux Pull hte/timestamp updates from Dipen Patel: - Improve comments in the translate function - Reflect the GPIOLIB API changes during calculation of the GPIO base - Improve error handling in Tegra test and provider drivers - Improve code to set the line name * tag 'for-6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/pateldipen1984/linux: hte: Use kasprintf() instead of fixed buffer formatting hte: tegra: Fix missing error code in tegra_hte_test_probe() hte: tegra194: Switch to LATE_SIMPLE_DEV_PM_OPS() hte: tegra194: Remove redundant dev_err() hte: tegra194: improve the GPIO-related comment hte: allow building modules with COMPILE_TEST enabled hte: Annotate struct hte_device with __counted_by
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
# 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.
|
|
|
|
if HTE
|
|
|
|
config HTE_TEGRA194
|
|
tristate "NVIDIA Tegra194 HTE Support"
|
|
depends on (ARCH_TEGRA_194_SOC || COMPILE_TEST)
|
|
depends on GPIOLIB
|
|
help
|
|
Enable this option for integrated hardware timestamping engine also
|
|
known as generic timestamping engine (GTE) support on NVIDIA Tegra194
|
|
systems-on-chip. The driver supports 352 LIC IRQs and 39 AON GPIOs
|
|
lines for timestamping in realtime.
|
|
|
|
config HTE_TEGRA194_TEST
|
|
tristate "NVIDIA Tegra194 HTE Test"
|
|
depends on (HTE_TEGRA194 || COMPILE_TEST)
|
|
help
|
|
The NVIDIA Tegra194 GTE test driver demonstrates how to use HTE
|
|
framework to timestamp GPIO and LIC IRQ lines.
|
|
|
|
endif
|