Add qcom epm hardware device driver. It enables to measure different pmic regulator power consumption data and pmic temperature data. It exposes these data to userspace clients via powercap sysfs interface and thermal zone sysfs interface respectively. Change-Id: Ic6c190a85ca2425afd68db7662e94b7aa92be4ef Signed-off-by: Priyansh Jain <quic_priyjain@quicinc.com>
11 lines
433 B
Makefile
11 lines
433 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_DTPM) += dtpm.o
|
|
obj-$(CONFIG_DTPM_CPU) += dtpm_cpu.o
|
|
obj-$(CONFIG_DTPM_DEVFREQ) += dtpm_devfreq.o
|
|
obj-$(CONFIG_POWERCAP) += powercap_sys.o
|
|
obj-$(CONFIG_INTEL_RAPL_CORE) += intel_rapl_common.o
|
|
obj-$(CONFIG_INTEL_RAPL) += intel_rapl_msr.o
|
|
obj-$(CONFIG_IDLE_INJECT) += idle_inject.o
|
|
obj-$(CONFIG_QCOM_EPM) += qti_epm_hardware.o
|
|
qti_epm_hardware-y += qti_epm_hw.o qti_epm_interface.o
|