mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
34f79c11fb
Introduce tracepoints to allow tracing the GLINK packets being exchanged with other subsystems. This is useful for debugging both interaction with remote processors and client driver issues, as well as tracking latency through the communication stack. Channel events are traced with both local and remote channel ids, as well as the textual representation when possible. The channel ids are useful when matching traces with traces from the firmware side logs, while the textual representation is necessary to identify channels when we're starting to trace an already running system. Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com> Reviewed-by: Chris Lew <quic_clew@quicinc.com> Link: https://lore.kernel.org/r/20240805-glink-tracepoints-v1-3-a5f3293fb09e@quicinc.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>
14 lines
583 B
Makefile
14 lines
583 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_RPMSG) += rpmsg_core.o
|
|
obj-$(CONFIG_RPMSG_CHAR) += rpmsg_char.o
|
|
obj-$(CONFIG_RPMSG_CTRL) += rpmsg_ctrl.o
|
|
obj-$(CONFIG_RPMSG_NS) += rpmsg_ns.o
|
|
obj-$(CONFIG_RPMSG_MTK_SCP) += mtk_rpmsg.o
|
|
CFLAGS_qcom_glink_native.o := -I$(src)
|
|
qcom_glink-objs := qcom_glink_native.o qcom_glink_ssr.o
|
|
obj-$(CONFIG_RPMSG_QCOM_GLINK) += qcom_glink.o
|
|
obj-$(CONFIG_RPMSG_QCOM_GLINK_RPM) += qcom_glink_rpm.o
|
|
obj-$(CONFIG_RPMSG_QCOM_GLINK_SMEM) += qcom_glink_smem.o
|
|
obj-$(CONFIG_RPMSG_QCOM_SMD) += qcom_smd.o
|
|
obj-$(CONFIG_RPMSG_VIRTIO) += virtio_rpmsg_bus.o
|