c05564c4d8
Android 13
45 lines
1.5 KiB
Makefile
Executable file
45 lines
1.5 KiB
Makefile
Executable file
#
|
|
# Copyright (C) 2019 MediaTek Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
|
|
# drivers/mdp
|
|
|
|
ccflags-y += -I$(srctree)/drivers/misc/mediatek/mdp \
|
|
-I$(srctree)/drivers/misc/mediatek/mmdvfs/ \
|
|
-I$(srctree)/drivers/misc/mediatek/smi/ \
|
|
-I$(srctree)/drivers/misc/mediatek/smi/$(MTK_PLATFORM)/ \
|
|
-I$(srctree)/drivers/misc/mediatek/m4u/$(MTK_PLATFORM) \
|
|
-I$(srctree)/drivers/iommu
|
|
|
|
ccflags-$(CONFIG_MTK_CMDQ_MBOX_EXT) += -I$(srctree)/drivers/misc/mediatek/cmdq/mailbox/
|
|
|
|
ifeq ($(strip $(CONFIG_MTK_PQ_COLOR_MODE)),"MDP")
|
|
ccflags-y += -DCMDQ_MDP_COLOR
|
|
endif
|
|
|
|
# Enable MET
|
|
ccflags-y += -DMET_USER_EVENT_SUPPORT
|
|
|
|
# Enable AEE
|
|
ccflags-y += -DCMDQ_AEE_READY
|
|
|
|
# secure path
|
|
ifeq ($(or $(strip $(CONFIG_TRUSTONIC_TEE_SUPPORT)), $(strip $(CONFIG_MICROTRUST_TEE_SUPPORT)), \
|
|
$(strip $(CONFIG_MTK_ENABLE_GENIEZONE))),y)
|
|
ifeq ($(or $(strip $(CONFIG_MTK_SEC_VIDEO_PATH_SUPPORT)), $(strip $(CONFIG_MTK_CAM_SECURITY_SUPPORT))),y)
|
|
ccflags-y += -DCMDQ_SECURE_PATH_SUPPORT
|
|
endif # end of CONFIG_MTK_SEC_VIDEO_PATH_SUPPORT or CONFIG_MTK_CAM_SECURITY_SUPPORT
|
|
endif # end of CONFIG_TRUSTONIC_TEE_SUPPORT or CONFIG_MICROTRUST_TEE_SUPPORT
|
|
|
|
obj-y += mdp.o
|
|
|