mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
b84b311ffd
Currently the remote processors do not have access to CoreSight debug and trace framework. Add support for configuring the required CoreSight components to enable ETM tracing on these processors. Change-Id: I1a2aa6567f26124124cf1c570575836e62519052 Signed-off-by: Aparna Das <adas@codeaurora.org>
20 lines
926 B
Makefile
20 lines
926 B
Makefile
#
|
|
# Makefile for CoreSight drivers.
|
|
#
|
|
obj-$(CONFIG_CORESIGHT) += coresight.o
|
|
obj-$(CONFIG_CORESIGHT_FUSE) += coresight-fuse.o
|
|
obj-$(CONFIG_CORESIGHT_CTI) += coresight-cti.o
|
|
obj-$(CONFIG_CORESIGHT_CSR) += coresight-csr.o
|
|
obj-$(CONFIG_CORESIGHT_TMC) += coresight-tmc.o
|
|
obj-$(CONFIG_CORESIGHT_TPIU) += coresight-tpiu.o
|
|
obj-$(CONFIG_CORESIGHT_ETB) += coresight-etb.o
|
|
obj-$(CONFIG_CORESIGHT_FUNNEL) += coresight-funnel.o
|
|
obj-$(CONFIG_CORESIGHT_REPLICATOR) += coresight-replicator.o
|
|
obj-$(CONFIG_CORESIGHT_STM) += coresight-stm.o
|
|
obj-$(CONFIG_CORESIGHT_HWEVENT) += coresight-hwevent.o
|
|
obj-$(CONFIG_CORESIGHT_ETM) += coresight-etm.o coresight-etm-cp14.o
|
|
obj-$(CONFIG_CORESIGHT_AUDIO_ETM) += coresight-audio-etm.o
|
|
obj-$(CONFIG_CORESIGHT_MODEM_ETM) += coresight-modem-etm.o
|
|
obj-$(CONFIG_CORESIGHT_WCN_ETM) += coresight-wcn-etm.o
|
|
obj-$(CONFIG_CORESIGHT_RPM_ETM) += coresight-rpm-etm.o
|
|
obj-$(CONFIG_CORESIGHT_EVENT) += coresight-event.o
|