Android.mk 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # Android makefile for audio kernel modules
  2. # Assume no targets will be supported
  3. # Check if this driver needs be built for current target
  4. ifeq ($(call is-board-platform-in-list,msmnile sdmshrike),true)
  5. AUDIO_SELECT := CONFIG_SND_SOC_SM8150=m
  6. endif
  7. ifeq ($(call is-board-platform,$(MSMSTEPPE) $(TRINKET)),true)
  8. AUDIO_SELECT := CONFIG_SND_SOC_SM6150=m
  9. endif
  10. ifeq ($(call is-board-platform,kona),true)
  11. AUDIO_SELECT := CONFIG_SND_SOC_KONA=m
  12. endif
  13. ifeq ($(call is-board-platform,lito),true)
  14. AUDIO_SELECT := CONFIG_SND_SOC_LITO=m
  15. endif
  16. ifeq ($(call is-board-platform,bengal),true)
  17. AUDIO_SELECT := CONFIG_SND_SOC_BENGAL=m
  18. endif
  19. AUDIO_CHIPSET := audio
  20. # Build/Package only in case of supported target
  21. ifeq ($(call is-board-platform-in-list,msmnile $(MSMSTEPPE) $(TRINKET) kona lito bengal sdmshrike),true)
  22. LOCAL_PATH := $(call my-dir)
  23. # This makefile is only for DLKM
  24. ifneq ($(findstring vendor,$(LOCAL_PATH)),)
  25. ifneq ($(findstring opensource,$(LOCAL_PATH)),)
  26. AUDIO_BLD_DIR := $(shell pwd)/vendor/qcom/opensource/audio-kernel
  27. endif # opensource
  28. DLKM_DIR := $(TOP)/device/qcom/common/dlkm
  29. # Build audio.ko as $(AUDIO_CHIPSET)_audio.ko
  30. ###########################################################
  31. # This is set once per LOCAL_PATH, not per (kernel) module
  32. KBUILD_OPTIONS := AUDIO_ROOT=$(AUDIO_BLD_DIR)
  33. # We are actually building audio.ko here, as per the
  34. # requirement we are specifying <chipset>_audio.ko as LOCAL_MODULE.
  35. # This means we need to rename the module to <chipset>_audio.ko
  36. # after audio.ko is built.
  37. KBUILD_OPTIONS += MODNAME=native_dlkm
  38. KBUILD_OPTIONS += BOARD_PLATFORM=$(TARGET_BOARD_PLATFORM)
  39. KBUILD_OPTIONS += $(AUDIO_SELECT)
  40. ###########################################################
  41. include $(CLEAR_VARS)
  42. LOCAL_MODULE := $(AUDIO_CHIPSET)_native.ko
  43. LOCAL_MODULE_KBUILD_NAME := native_dlkm.ko
  44. LOCAL_MODULE_TAGS := optional
  45. LOCAL_MODULE_DEBUG_ENABLE := true
  46. LOCAL_MODULE_PATH := $(KERNEL_MODULES_OUT)
  47. include $(DLKM_DIR)/AndroidKernelModule.mk
  48. ###########################################################
  49. ###########################################################
  50. endif # DLKM check
  51. endif # supported target check