| # |
| # Copyright (C) 2015 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. |
| # |
| |
| # Connectivity combo driver |
| # If KERNELRELEASE is defined, we've been invoked from the |
| # kernel build system and can use its language. |
| ifneq ($(KERNELRELEASE),) |
| subdir-ccflags-y += -I$(srctree)/ |
| subdir-ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/misc/mediatek/base/power/include |
| subdir-ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/misc/mediatek/clkbuf/src |
| subdir-ccflags-y += -Werror -I$(DEVICE_MODULES_PATH)/drivers/misc/mediatek/include/mt-plat |
| subdir-ccflags-y += -I$(srctree)/drivers/mmc/core |
| subdir-ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/misc/mediatek/eccci/ |
| subdir-ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/clk/mediatek/ |
| subdir-ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/pinctrl/mediatek/ |
| subdir-ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/misc/mediatek/power_throttling/ |
| |
| # Do Nothing, move to standalone repo |
| MODULE_NAME := connadp |
| obj-$(CONFIG_MTK_COMBO) += $(MODULE_NAME).o |
| |
| $(MODULE_NAME)-objs += common/connectivity_build_in_adapter.o |
| $(MODULE_NAME)-objs += common/wmt_build_in_adapter.o |
| $(MODULE_NAME)-objs += power_throttling/adapter.o |
| $(MODULE_NAME)-objs += power_throttling/core.o |
| ifeq ($(CONFIG_CONN_PWR_DEBUG),y) |
| $(MODULE_NAME)-objs += power_throttling/test.o |
| endif |
| |
| |
| ifeq ($(CONFIG_MTK_COMBO), y) |
| ccflags-y += -D CFG_CONNADP_BUILD_IN |
| endif |
| # Do build-in for Makefile checking |
| # export CONFIG_WLAN_DRV_BUILD_IN=y |
| |
| ifeq ($(CONFIG_WLAN_DRV_BUILD_IN),y) |
| PATH_TO_WMT_DRV = vendor/mediatek/kernel_modules/connectivity/common |
| PATH_TO_WLAN_CHR_DRV = vendor/mediatek/kernel_modules/connectivity/wlan/adaptor |
| PATH_TO_WLAN_DRV = vendor/mediatek/kernel_modules/connectivity/wlan/core/gen4m |
| |
| ABS_PATH_TO_WMT_DRV = $(DEVICE_MODULES_PATH)/../$(PATH_TO_WMT_DRV) |
| ABS_PATH_TO_WLAN_CHR_DRV = $(DEVICE_MODULES_PATH)/../$(PATH_TO_WLAN_CHR_DRV) |
| ABS_PATH_TO_WLAN_DRV = $(DEVICE_MODULES_PATH)/../$(PATH_TO_WLAN_DRV) |
| |
| # check wlan driver folder |
| ifeq (,$(wildcard $(ABS_PATH_TO_WMT_DRV))) |
| $(error $(ABS_PATH_TO_WMT_DRV) is not existed) |
| endif |
| ifeq (,$(wildcard $(ABS_PATH_TO_WLAN_CHR_DRV))) |
| $(error $(ABS_PATH_TO_WLAN_CHR_DRV) is not existed) |
| endif |
| ifeq (,$(wildcard $(ABS_PATH_TO_WLAN_DRV))) |
| $(error $(ABS_PATH_TO_WLAN_DRV) is not existed) |
| endif |
| |
| $(warning symbolic link to $(PATH_TO_WMT_DRV)) |
| $(warning symbolic link to $(PATH_TO_WLAN_CHR_DRV)) |
| $(warning symbolic link to $(PATH_TO_WLAN_DRV)) |
| |
| $(shell unlink $(srctree)/$(src)/wmt_drv) |
| $(shell unlink $(srctree)/$(src)/wmt_chrdev_wifi) |
| $(shell unlink $(srctree)/$(src)/wlan_drv_gen4m) |
| |
| $(shell ln -s $(ABS_PATH_TO_WMT_DRV) $(srctree)/$(src)/wmt_drv) |
| $(shell ln -s $(ABS_PATH_TO_WLAN_CHR_DRV) $(srctree)/$(src)/wmt_chrdev_wifi) |
| $(shell ln -s $(ABS_PATH_TO_WLAN_DRV) $(srctree)/$(src)/wlan_drv_gen4m) |
| |
| # for gen4m options |
| export CONFIG_MTK_COMBO_WIFI_HIF=axi |
| export MTK_COMBO_CHIP=CONNAC |
| export WLAN_CHIP_ID=6765 |
| export MTK_ANDROID_WMT=y |
| |
| # Do build-in for xxx.c checking |
| subdir-ccflags-y += -D MTK_WCN_REMOVE_KERNEL_MODULE |
| subdir-ccflags-y += -D MTK_WCN_BUILT_IN_DRIVER |
| obj-y += wmt_drv/ |
| obj-y += wmt_chrdev_wifi/ |
| obj-y += wlan_drv_gen4m/ |
| endif |
| |
| # Otherwise we were called directly from the command line; |
| # invoke the kernel build system. |
| else |
| KERNELDIR ?= /lib/modules/$(shell uname -r)/build |
| PWD := $(shell pwd) |
| default: |
| $(MAKE) -C $(KERNELDIR) M=$(PWD) modules |
| endif |