Android.mk 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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, msm8994 msm8996 msm8998 msmcobalt),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. # If TARGET_KERNEL_VERSION is not defined, using default kernel path,
  13. # otherwise kernel path should come from top level Android makefiles.
  14. ifeq ($(TARGET_KERNEL_VERSION),)
  15. $(info "WLAN: TARGET_KERNEL_VERSION not defined, assuming default")
  16. TARGET_KERNEL_SOURCE := kernel
  17. KERNEL_TO_BUILD_ROOT_OFFSET := ../
  18. endif
  19. LOCAL_PATH := $(call my-dir)
  20. # This makefile is only for DLKM
  21. ifneq ($(findstring vendor,$(LOCAL_PATH)),)
  22. ifneq ($(findstring opensource,$(LOCAL_PATH)),)
  23. WLAN_BLD_DIR := vendor/qcom/opensource/wlan
  24. endif # opensource
  25. # DLKM_DIR was moved for JELLY_BEAN (PLATFORM_SDK 16)
  26. ifeq ($(call is-platform-sdk-version-at-least,16),true)
  27. DLKM_DIR := $(TOP)/device/qcom/common/dlkm
  28. else
  29. DLKM_DIR := build/dlkm
  30. endif # platform-sdk-version
  31. # Build wlan.ko as $(WLAN_CHIPSET)_wlan.ko
  32. ###########################################################
  33. # This is set once per LOCAL_PATH, not per (kernel) module
  34. KBUILD_OPTIONS := WLAN_ROOT=$(KERNEL_TO_BUILD_ROOT_OFFSET)$(WLAN_BLD_DIR)/qcacld-3.0
  35. KBUILD_OPTIONS += WLAN_COMMON_ROOT=../../../opensource/wlan/qca-wifi-host-cmn
  36. KBUILD_OPTIONS += WLAN_COMMON_INC=../vendor/qcom/opensource/wlan/qca-wifi-host-cmn
  37. # We are actually building wlan.ko here, as per the
  38. # requirement we are specifying <chipset>_wlan.ko as LOCAL_MODULE.
  39. # This means we need to rename the module to <chipset>_wlan.ko
  40. # after wlan.ko is built.
  41. KBUILD_OPTIONS += MODNAME=wlan
  42. KBUILD_OPTIONS += BOARD_PLATFORM=$(TARGET_BOARD_PLATFORM)
  43. KBUILD_OPTIONS += $(WLAN_SELECT)
  44. include $(CLEAR_VARS)
  45. LOCAL_MODULE := $(WLAN_CHIPSET)_wlan.ko
  46. LOCAL_MODULE_KBUILD_NAME := wlan.ko
  47. LOCAL_MODULE_TAGS := debug
  48. LOCAL_MODULE_DEBUG_ENABLE := true
  49. LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/modules/$(WLAN_CHIPSET)
  50. include $(DLKM_DIR)/AndroidKernelModule.mk
  51. ###########################################################
  52. # Create Symbolic link
  53. $(shell ln -sf /persist/wlan_mac.bin $(TARGET_OUT_ETC)/firmware/wlan/qca_cld/wlan_mac.bin)
  54. endif # DLKM check
  55. endif # supported target check
  56. endif # WLAN enabled check