Android.mk 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # Android makefile for the WLAN Module
  2. # Assume no targets will be supported
  3. WLAN_CHIPSET :=
  4. ifeq ($(BOARD_HAS_QCOM_WLAN), true)
  5. # Check if this driver needs be built for current target
  6. ifneq ($(findstring qca_cld3,$(WIFI_DRIVER_BUILT)),)
  7. WLAN_CHIPSET := qca_cld3
  8. WLAN_SELECT := CONFIG_QCA_CLD_WLAN=m
  9. endif
  10. # Build/Package only in case of supported target
  11. ifneq ($(WLAN_CHIPSET),)
  12. # If kernel version is not defined, using default kernel path, otherwise
  13. # kernel path offset should come from top level Android makefiles.
  14. ifeq ($(TARGET_KERNEL_VERSION),)
  15. $(info "$(WLAN_CHIPSET): TARGET_KERNEL_VERSION not defined, assuming default")
  16. TARGET_KERNEL_SOURCE := kernel
  17. KERNEL_TO_BUILD_ROOT_OFFSET := ../
  18. endif
  19. # If kernel path offset is not defined, assume old kernel structure
  20. ifeq ($(KERNEL_TO_BUILD_ROOT_OFFSET),)
  21. $(info "$(WLAN_CHIPSET): KERNEL_TO_BUILD_ROOT_OFFSET not defined, assuming default")
  22. KERNEL_TO_BUILD_ROOT_OFFSET := ../
  23. endif
  24. LOCAL_PATH := $(call my-dir)
  25. # This makefile is only for DLKM
  26. ifneq ($(findstring vendor,$(LOCAL_PATH)),)
  27. ifneq ($(findstring opensource,$(LOCAL_PATH)),)
  28. WLAN_BLD_DIR := vendor/qcom/opensource/wlan
  29. endif # opensource
  30. # DLKM_DIR was moved for JELLY_BEAN (PLATFORM_SDK 16)
  31. ifeq ($(call is-platform-sdk-version-at-least,16),true)
  32. DLKM_DIR := $(TOP)/device/qcom/common/dlkm
  33. else
  34. DLKM_DIR := build/dlkm
  35. endif # platform-sdk-version
  36. # Build wlan.ko as $(WLAN_CHIPSET)_wlan.ko
  37. ###########################################################
  38. # This is set once per LOCAL_PATH, not per (kernel) module
  39. KBUILD_OPTIONS := WLAN_ROOT=$(KERNEL_TO_BUILD_ROOT_OFFSET)$(WLAN_BLD_DIR)/qcacld-3.0
  40. KBUILD_OPTIONS += WLAN_COMMON_ROOT=../qca-wifi-host-cmn
  41. KBUILD_OPTIONS += WLAN_COMMON_INC=$(KERNEL_TO_BUILD_ROOT_OFFSET)$(WLAN_BLD_DIR)/qca-wifi-host-cmn
  42. # We are actually building wlan.ko here, as per the
  43. # requirement we are specifying <chipset>_wlan.ko as LOCAL_MODULE.
  44. # This means we need to rename the module to <chipset>_wlan.ko
  45. # after wlan.ko is built.
  46. KBUILD_OPTIONS += MODNAME=wlan
  47. KBUILD_OPTIONS += BOARD_PLATFORM=$(TARGET_BOARD_PLATFORM)
  48. KBUILD_OPTIONS += $(WLAN_SELECT)
  49. include $(CLEAR_VARS)
  50. LOCAL_MODULE := $(WLAN_CHIPSET)_wlan.ko
  51. LOCAL_MODULE_KBUILD_NAME := wlan.ko
  52. LOCAL_MODULE_TAGS := debug
  53. LOCAL_MODULE_DEBUG_ENABLE := true
  54. LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/modules/$(WLAN_CHIPSET)
  55. include $(DLKM_DIR)/AndroidKernelModule.mk
  56. ###########################################################
  57. # Create Symbolic link
  58. ifneq ($(findstring $(WLAN_CHIPSET),$(WIFI_DRIVER_DEFAULT)),)
  59. $(shell mkdir -p $(TARGET_OUT)/lib/modules; \
  60. ln -sf /system/lib/modules/$(WLAN_CHIPSET)/$(LOCAL_MODULE) $(TARGET_OUT)/lib/modules/wlan.ko)
  61. endif
  62. $(shell ln -sf /persist/wlan_mac.bin $(TARGET_OUT_ETC)/firmware/wlan/qca_cld/wlan_mac.bin)
  63. endif # DLKM check
  64. endif # supported target check
  65. endif # WLAN enabled check