#
# Copyright (C) 2017 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.
#

#
# for USB OTG silicon based on Mentor Graphics INVENTRA designs
#

ifeq ($(MTK_ALPS_BOX_SUPPORT),yes)
ccflags-y += -DMTK_ALPS_BOX_SUPPORT
endif

ccflags-y += -I$(srctree)/drivers/misc/mediatek/include/mt-plat

# for SPM control usage
ccflags-y += -I$(srctree)/drivers/misc/mediatek/base/power/include

# for phy and vbus settings
ccflags-y += -I$(srctree)/drivers/misc/mediatek/usb20/mt6765

ifeq ($(CONFIG_TCPC_CLASS),y)
	ccflags-y += -I$(srctree)/drivers/misc/mediatek/typec/tcpc/inc
endif

# Driver
obj-$(CONFIG_USB_MTK_HDRC)		:= musb_hdrc.o
musb_hdrc-$(CONFIG_USB_MTK_HDRC)	+= musb_core.o
musb_hdrc-$(CONFIG_USB_MTK_HDRC)	+= musb_virthub.o musb_host.o
musb_hdrc-$(CONFIG_USB_MTK_HDRC)	+= musb_gadget_ep0.o musb_gadget.o
musb_hdrc-$(CONFIG_PROC_FS)		+= musb_debugfs.o
musb_hdrc-$(CONFIG_MTK_MUSB_DUAL_ROLE)	+= musb_dr.o

# obj-$(CONFIG_MTK_MUSB_PLAT)		+= mtk_musb.o
obj-$(CONFIG_USB_MTK_HDRC)		+= musbhsdma.o
obj-$(CONFIG_USB_MTK_HDRC)		+= mt6765/usb20.o
obj-$(CONFIG_USB_MTK_HDRC)		+= mt6765/usb20_host.o
obj-$(CONFIG_USBIF_COMPLIANCE)		+= mt6765/usb20_otg_if.o

# QMU Realted
musb_hdrc-$(CONFIG_MTK_MUSB_QMU_SUPPORT)+= mtk_qmu.o musb_qmu.o
ifeq ($(CONFIG_MTK_MUSB_QMU_SUPPORT),y)
subdir-ccflags-$(CONFIG_MACH_MT8163) += -DMUSB_QMU_LIMIT_SUPPORT -DMUSB_QMU_LIMIT_RXQ_NUM=4 -DMUSB_QMU_LIMIT_TXQ_NUM=4
endif
ifeq ($(CONFIG_MTK_MUSB_QMU_SUPPORT),y)
subdir-ccflags-$(CONFIG_MACH_MT8167) += -DMUSB_QMU_LIMIT_SUPPORT -DMUSB_QMU_LIMIT_RXQ_NUM=4 -DMUSB_QMU_LIMIT_TXQ_NUM=4
endif

