mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 09:21:35 +00:00
51 lines
1.8 KiB
Diff
51 lines
1.8 KiB
Diff
From f53af3fb77abb7dd06829a315b67736000091a05 Mon Sep 17 00:00:00 2001
|
|
From: Devi Priya <quic_devipriy@quicinc.com>
|
|
Date: Wed, 11 Oct 2023 20:43:04 +0530
|
|
Subject: [PATCH] drivers: soc: qcom: Add support for LLCC Perfmon driver
|
|
|
|
Add build support for LLCC perfmon driver.
|
|
|
|
Change-Id: I5e436e83462f6620ee5aa3d3ee39cbaddf969883
|
|
Signed-off-by: Devi Priya <quic_devipriy@quicinc.com>
|
|
---
|
|
drivers/soc/qcom/Kconfig | 10 ++++++++++
|
|
drivers/soc/qcom/Makefile | 1 +
|
|
2 files changed, 11 insertions(+)
|
|
|
|
diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig
|
|
index 4b9c6c2e44b2..0fba72407d10 100644
|
|
--- a/drivers/soc/qcom/Kconfig
|
|
+++ b/drivers/soc/qcom/Kconfig
|
|
@@ -74,6 +74,16 @@ config QCOM_KRYO_L2_ACCESSORS
|
|
bool
|
|
depends on ARCH_QCOM && ARM64 || COMPILE_TEST
|
|
|
|
+config QCOM_LLCC_PERFMON
|
|
+ tristate "Qualcomm Technologies, Inc. LLCC Perfmon driver"
|
|
+ depends on QCOM_LLCC
|
|
+ help
|
|
+ This option enables driver for LLCC Performance monitor block. Using
|
|
+ this various events in different LLCC sub ports can be monitored.
|
|
+ This is used for performance and debug activity and exports sysfs
|
|
+ interface. sysfs interface is used to configure and dump the LLCC
|
|
+ performance events.
|
|
+
|
|
config QCOM_MDT_LOADER
|
|
tristate
|
|
select QCOM_SCM
|
|
diff --git a/drivers/soc/qcom/Makefile b/drivers/soc/qcom/Makefile
|
|
index c6a6c3234f0b..7af19fda22e6 100644
|
|
--- a/drivers/soc/qcom/Makefile
|
|
+++ b/drivers/soc/qcom/Makefile
|
|
@@ -25,6 +25,7 @@ obj-$(CONFIG_QCOM_STATS) += qcom_stats.o
|
|
obj-$(CONFIG_QCOM_WCNSS_CTRL) += wcnss_ctrl.o
|
|
obj-$(CONFIG_QCOM_APR) += apr.o
|
|
obj-$(CONFIG_QCOM_LLCC) += llcc-qcom.o
|
|
+obj-$(CONFIG_QCOM_LLCC_PERFMON) += llcc_perfmon.o
|
|
obj-$(CONFIG_QCOM_RPMHPD) += rpmhpd.o
|
|
obj-$(CONFIG_QCOM_RPMPD) += rpmpd.o
|
|
obj-$(CONFIG_QCOM_KRYO_L2_ACCESSORS) += kryo-l2-accessors.o
|
|
--
|
|
2.34.1
|
|
|