TSC module is a timestamp generator, which runs a 64 bit counter for system timekeeping. ETU is event timestamp module, which captures the timestamp from TSC and global counter bus for a given event. The event is selected from a set of GPIOs and SW triggered events. The design is parameterized to detect multiple events, using different “slices”. One slice is used for every event. Snapshot for addition of ptp_qcom_tsc driver from msm-5.15 branch commit adb8d7421963 ("ptp: qcom: Add support for Time Stamp Counter(TSC) driver"). Change-Id: I3c4ee7664ecc63a456d4848a02fe7d705230fbf3 Signed-off-by: Taniya Das <quic_tdas@quicinc.com> Signed-off-by: Shubham Diwane <quic_sanantad@quicinc.com>
22 lines
888 B
Makefile
22 lines
888 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for PTP 1588 clock support.
|
|
#
|
|
|
|
ptp-y := ptp_clock.o ptp_chardev.o ptp_sysfs.o ptp_vclock.o
|
|
ptp_kvm-$(CONFIG_X86) := ptp_kvm_x86.o ptp_kvm_common.o
|
|
ptp_kvm-$(CONFIG_HAVE_ARM_SMCCC) := ptp_kvm_arm.o ptp_kvm_common.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK) += ptp.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_DTE) += ptp_dte.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_INES) += ptp_ines.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_PCH) += ptp_pch.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_KVM) += ptp_kvm.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_QORIQ) += ptp-qoriq.o
|
|
ptp-qoriq-y += ptp_qoriq.o
|
|
ptp-qoriq-$(CONFIG_DEBUG_FS) += ptp_qoriq_debugfs.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_IDTCM) += ptp_clockmatrix.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_IDT82P33) += ptp_idt82p33.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_VMW) += ptp_vmw.o
|
|
obj-$(CONFIG_PTP_1588_CLOCK_OCP) += ptp_ocp.o
|
|
obj-$(CONFIG_PTP_QCOM_CLOCK_TSC) += ptp_qcom_tsc.o
|