mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

LPM means low power module, it will connect idle and SPM to achieve lower power consumption in some scenarios, and this patch is LPM second version Signed-off-by: Wenzhen Yu <wenzhen.yu@mediatek.corp-partner.google.com> Change-Id: I6ae5b5b4c2056d08c29efab5116be3a92351d8f1
19 lines
466 B
Makefile
19 lines
466 B
Makefile
#
|
|
# Copyright (c) 2025, MediaTek Inc. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
LOCAL_DIR := $(call GET_LOCAL_DIR)
|
|
|
|
MODULE := lpm_v2
|
|
|
|
LOCAL_SRCS-y += ${LOCAL_DIR}/mt_lp_api.c
|
|
LOCAL_SRCS-y += ${LOCAL_DIR}/mt_lp_rm.c
|
|
LOCAL_SRCS-y += ${LOCAL_DIR}/mt_lp_rq.c
|
|
LOCAL_SRCS-y += ${LOCAL_DIR}/mt_lp_mmap.c
|
|
LOCAL_SRCS-y += ${LOCAL_DIR}/mt_lpm_dispatch.c
|
|
|
|
PLAT_INCLUDES += -I${LOCAL_DIR}
|
|
|
|
$(eval $(call MAKE_MODULE,$(MODULE),$(LOCAL_SRCS-y),$(MTK_BL)))
|