2012-09-05 04:46:24 +00:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
2012-12-11 20:09:28 +00:00
|
|
|
ifeq ($(call is-vendor-board-platform,QCOM),true)
|
2012-11-14 12:20:15 +00:00
|
|
|
|
2012-09-05 04:46:24 +00:00
|
|
|
# HAL module implemenation stored in
|
|
|
|
# hw/<POWERS_HARDWARE_MODULE_ID>.<ro.hardware>.so
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2014-05-20 01:03:21 +00:00
|
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
2017-03-24 23:30:12 +00:00
|
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libdl libxml2
|
|
|
|
LOCAL_SRC_FILES := power.c metadata-parser.c utils.c list.c hint-data.c powerhintparser.c
|
|
|
|
LOCAL_C_INCLUDES := external/libxml2/include \
|
|
|
|
external/icu/icu4c/source/common
|
2013-04-16 23:53:45 +00:00
|
|
|
|
|
|
|
# Include target-specific files.
|
|
|
|
ifeq ($(call is-board-platform-in-list, msm8974), true)
|
|
|
|
LOCAL_SRC_FILES += power-8974.c
|
|
|
|
endif
|
|
|
|
|
2013-08-15 00:40:36 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list, msm8226), true)
|
|
|
|
LOCAL_SRC_FILES += power-8226.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(call is-board-platform-in-list, msm8610), true)
|
|
|
|
LOCAL_SRC_FILES += power-8610.c
|
|
|
|
endif
|
|
|
|
|
2014-01-15 22:24:45 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list, apq8084), true)
|
|
|
|
LOCAL_SRC_FILES += power-8084.c
|
|
|
|
endif
|
|
|
|
|
2014-11-03 01:25:52 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list, msm8994), true)
|
|
|
|
LOCAL_SRC_FILES += power-8994.c
|
|
|
|
endif
|
|
|
|
|
2015-07-01 21:13:43 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list, msm8996), true)
|
|
|
|
LOCAL_SRC_FILES += power-8996.c
|
|
|
|
endif
|
|
|
|
|
2016-01-07 09:17:37 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list,msm8937), true)
|
|
|
|
LOCAL_SRC_FILES += power-8952.c
|
|
|
|
endif
|
|
|
|
|
2015-05-05 10:40:43 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list,msm8952), true)
|
|
|
|
LOCAL_SRC_FILES += power-8952.c
|
|
|
|
endif
|
|
|
|
|
2016-03-10 19:56:25 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list,msm8953), true)
|
|
|
|
LOCAL_SRC_FILES += power-8953.c
|
2016-02-28 09:39:37 +00:00
|
|
|
endif
|
|
|
|
|
2017-05-04 05:32:14 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list,msm8998 apq8098_latv), true)
|
2017-03-24 23:30:12 +00:00
|
|
|
LOCAL_SRC_FILES += power-8998.c
|
|
|
|
endif
|
|
|
|
|
2017-04-07 12:02:37 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list,sdm660), true)
|
|
|
|
LOCAL_SRC_FILES += power-660.c
|
|
|
|
endif
|
|
|
|
|
2017-05-19 03:46:03 +00:00
|
|
|
ifeq ($(call is-board-platform-in-list,sdm845), true)
|
|
|
|
LOCAL_SRC_FILES += power-845.c
|
|
|
|
endif
|
|
|
|
|
2013-07-16 23:47:00 +00:00
|
|
|
ifeq ($(TARGET_USES_INTERACTION_BOOST),true)
|
|
|
|
LOCAL_CFLAGS += -DINTERACTION_BOOST
|
|
|
|
endif
|
|
|
|
|
2012-09-05 04:46:24 +00:00
|
|
|
LOCAL_MODULE := power.qcom
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
2017-03-24 23:30:12 +00:00
|
|
|
LOCAL_CFLAGS := -Wno-unused-parameter -Wno-unused-variable
|
2017-06-11 00:43:17 +00:00
|
|
|
LOCAL_VENDOR_MODULE := true
|
2012-09-05 04:46:24 +00:00
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
2012-12-11 20:09:28 +00:00
|
|
|
|
2012-11-14 12:20:15 +00:00
|
|
|
endif
|