Android.mk 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. # Build/Package options for 8084/8092/8960/8992/8994 target
  6. ifeq ($(call is-board-platform-in-list, apq8084 mpq8092 msm8960 msm8992 msm8994 msm8996 msm8998),true)
  7. WLAN_CHIPSET := qca_cld3
  8. WLAN_SELECT := CONFIG_QCA_CLD_WLAN=m
  9. endif # platform
  10. # Build/Package only in case of supported target
  11. ifneq ($(WLAN_CHIPSET),)
  12. LOCAL_PATH := $(call my-dir)
  13. # This makefile is only for DLKM
  14. ifneq ($(findstring vendor,$(LOCAL_PATH)),)
  15. ifneq ($(findstring opensource,$(LOCAL_PATH)),)
  16. WLAN_PROPRIETARY := 0
  17. WLAN_BLD_DIR := vendor/qcom/opensource/wlan
  18. else
  19. WLAN_PROPRIETARY := 1
  20. WLAN_BLD_DIR := vendor/qcom/proprietary/wlan-noship
  21. endif # opensource
  22. # DLKM_DIR was moved for JELLY_BEAN (PLATFORM_SDK 16)
  23. ifeq ($(call is-platform-sdk-version-at-least,16),true)
  24. DLKM_DIR := $(TOP)/device/qcom/common/dlkm
  25. else
  26. DLKM_DIR := build/dlkm
  27. endif # platform-sdk-version
  28. # Copy WCNSS_qcom_cfg.ini file from firmware_bin/ folder to target out directory.
  29. ifeq ($(call is-board-platform-in-list, msm8960),true)
  30. $(shell rm -f $(TARGET_OUT_ETC)/firmware/wlan/qca_cld/WCNSS_qcom_cfg.ini)
  31. $(shell cp $(LOCAL_PATH)/firmware_bin/WCNSS_qcom_cfg.ini $(TARGET_OUT_ETC)/firmware/wlan/qca_cld)
  32. endif
  33. # Build wlan.ko as $(WLAN_CHIPSET)_wlan.ko
  34. ###########################################################
  35. # This is set once per LOCAL_PATH, not per (kernel) module
  36. ifeq ($(WLAN_PROPRIETARY),1)
  37. KBUILD_OPTIONS := WLAN_ROOT=../$(WLAN_BLD_DIR)/qcacld-new
  38. KBUILD_OPTIONS += WLAN_COMMON_ROOT=../../../opensource/wlan/qca-wifi-host-cmn
  39. else
  40. KBUILD_OPTIONS := WLAN_ROOT=../$(WLAN_BLD_DIR)/qcacld-3.0
  41. KBUILD_OPTIONS += WLAN_COMMON_ROOT=../../opensource/wlan/qca-wifi-host-cmn
  42. endif # WLAN_PROPRIETARY
  43. KBUILD_OPTIONS += WLAN_COMMON_INC=../vendor/qcom/opensource/wlan/qca-wifi-host-cmn
  44. # We are actually building wlan.ko here, as per the
  45. # requirement we are specifying <chipset>_wlan.ko as LOCAL_MODULE.
  46. # This means we need to rename the module to <chipset>_wlan.ko
  47. # after wlan.ko is built.
  48. KBUILD_OPTIONS += MODNAME=wlan
  49. KBUILD_OPTIONS += BOARD_PLATFORM=$(TARGET_BOARD_PLATFORM)
  50. KBUILD_OPTIONS += $(WLAN_SELECT)
  51. include $(CLEAR_VARS)
  52. ifeq ($(WLAN_PROPRIETARY),1)
  53. LOCAL_MODULE := proprietary_$(WLAN_CHIPSET)_wlan.ko
  54. else
  55. LOCAL_MODULE := $(WLAN_CHIPSET)_wlan.ko
  56. endif # WLAN_PROPRIETARY
  57. LOCAL_MODULE_KBUILD_NAME := wlan.ko
  58. LOCAL_MODULE_TAGS := debug
  59. LOCAL_MODULE_DEBUG_ENABLE := true
  60. LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/modules/$(WLAN_CHIPSET)
  61. include $(DLKM_DIR)/AndroidKernelModule.mk
  62. ###########################################################
  63. # Create Symbolic link
  64. ifeq ($(WLAN_PROPRIETARY),1)
  65. $(shell mkdir -p $(TARGET_OUT)/lib/modules; \
  66. ln -sf /system/lib/modules/$(WLAN_CHIPSET)/$(LOCAL_MODULE) \
  67. $(TARGET_OUT)/lib/modules/wlan.ko)
  68. endif
  69. $(shell ln -sf /persist/wlan_mac.bin $(TARGET_OUT_ETC)/firmware/wlan/qca_cld/wlan_mac.bin)
  70. ifeq ($(call is-board-platform-in-list, msm8960),true)
  71. $(shell ln -sf /firmware/image/bdwlan20.bin $(TARGET_OUT_ETC)/firmware/fakeboar.bin)
  72. $(shell ln -sf /firmware/image/otp20.bin $(TARGET_OUT_ETC)/firmware/otp.bin)
  73. $(shell ln -sf /firmware/image/utf20.bin $(TARGET_OUT_ETC)/firmware/utf.bin)
  74. $(shell ln -sf /firmware/image/qwlan20.bin $(TARGET_OUT_ETC)/firmware/athwlan.bin)
  75. $(shell ln -sf /firmware/image/bdwlan20.bin $(TARGET_OUT_ETC)/firmware/bdwlan20.bin)
  76. $(shell ln -sf /firmware/image/otp20.bin $(TARGET_OUT_ETC)/firmware/otp20.bin)
  77. $(shell ln -sf /firmware/image/utf20.bin $(TARGET_OUT_ETC)/firmware/utf20.bin)
  78. $(shell ln -sf /firmware/image/qwlan20.bin $(TARGET_OUT_ETC)/firmware/qwlan20.bin)
  79. $(shell ln -sf /firmware/image/bdwlan30.bin $(TARGET_OUT_ETC)/firmware/bdwlan30.bin)
  80. $(shell ln -sf /firmware/image/otp30.bin $(TARGET_OUT_ETC)/firmware/otp30.bin)
  81. $(shell ln -sf /firmware/image/utf30.bin $(TARGET_OUT_ETC)/firmware/utf30.bin)
  82. $(shell ln -sf /firmware/image/qwlan30.bin $(TARGET_OUT_ETC)/firmware/qwlan30.bin)
  83. endif
  84. # Copy config ini files to target
  85. #ifeq ($(call is-board-platform-in-list, msm8992 msm8994),false)
  86. ifeq ($(WLAN_PROPRIETARY),1)
  87. $(shell mkdir -p $(TARGET_OUT)/etc/firmware/wlan/$(WLAN_CHIPSET))
  88. $(shell mkdir -p $(TARGET_OUT)/etc/wifi)
  89. $(shell rm -f $(TARGET_OUT)/etc/wifi/WCNSS_qcom_cfg.ini)
  90. $(shell cp $(LOCAL_PATH)/config/WCNSS_qcom_cfg.ini $(TARGET_OUT)/etc/wifi)
  91. endif
  92. #endif
  93. endif # DLKM check
  94. endif # supported target check
  95. endif # WLAN enabled check