Kbuild 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. # We can build either as part of a standalone Kernel build or as
  2. # an external module. Determine which mechanism is being used
  3. KERNEL_BUILD := 0
  4. TARGET_KERNEL_VERSION := 4.4
  5. ifeq ($(KERNEL_BUILD), 0)
  6. # These are configurable via Kconfig for kernel-based builds
  7. # Need to explicitly configure for Android-based builds
  8. ifeq ($(CONFIG_ARCH_SDM845), y)
  9. include $(AUDIO_ROOT)/config/sdm845auto.conf
  10. export
  11. TARGET_KERNEL_VERSION := 4.9
  12. endif
  13. ifeq ($(CONFIG_ARCH_SDM670), y)
  14. include $(AUDIO_ROOT)/config/sdm670auto.conf
  15. export
  16. TARGET_KERNEL_VERSION := 4.9
  17. endif
  18. endif
  19. # As per target team, build is done as follows:
  20. # Defconfig : build with default flags
  21. # Slub : defconfig + CONFIG_SLUB_DEBUG := y +
  22. # CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
  23. # Perf : Using appropriate msmXXXX-perf_defconfig
  24. #
  25. # Shipment builds (user variants) should not have any debug feature
  26. # enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
  27. # are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
  28. # there is no other way to identify defconfig builds, QTI internal
  29. # representation of perf builds (identified using the string 'perf'),
  30. # is used to identify if the build is a slub or defconfig one. This
  31. # way no critical debug feature will be enabled for perf and shipment
  32. # builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
  33. # config.
  34. ############ UAPI ############
  35. UAPI_DIR := uapi
  36. UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
  37. ############ COMMON ############
  38. COMMON_DIR := include
  39. COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
  40. ############ IPC ############
  41. ifeq ($(CONFIG_MSM_QDSP6_APRV2_GLINK), m)
  42. APRV_GLINK += apr.o
  43. APRV_GLINK += apr_v2.o
  44. APRV_GLINK += apr_tal_glink.o
  45. endif
  46. ifeq ($(CONFIG_MSM_QDSP6_APRV3_GLINK), m)
  47. APRV_GLINK += apr.o
  48. APRV_GLINK += apr_v3.o
  49. APRV_GLINK += apr_tal_glink.o
  50. endif
  51. ifeq ($(CONFIG_WCD_DSP_GLINK), m)
  52. WDSP_GLINK += wcd-dsp-glink.o
  53. endif
  54. LINUX_INC += -Iinclude/linux
  55. INCS := $(COMMON_INC) \
  56. $(UAPI_INC)
  57. ifeq ($(CONFIG_ARCH_SDM845), y)
  58. INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
  59. endif
  60. ifeq ($(CONFIG_ARCH_SDM670), y)
  61. INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
  62. endif
  63. EXTRA_CFLAGS += $(INCS)
  64. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  65. -DANI_LITTLE_BIT_ENDIAN \
  66. -DDOT11F_LITTLE_ENDIAN_HOST \
  67. -DANI_COMPILER_TYPE_GCC \
  68. -DANI_OS_TYPE_ANDROID=6 \
  69. -DPTT_SOCK_SVC_ENABLE \
  70. -Wall\
  71. -Werror\
  72. -D__linux__
  73. KBUILD_CPPFLAGS += $(CDEFINES)
  74. HEADER_INSTALL_DIR := $(TOP)/kernel/msm-$(TARGET_KERNEL_VERSION)/scripts
  75. UAPI_OUT := $(OUT)/obj/vendor/qcom/opensource/audio-kernel/include
  76. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ avtimer.h;)
  77. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio.h;)
  78. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_aac.h;)
  79. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_ac3.h;)
  80. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_alac.h;)
  81. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrnb.h;)
  82. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrwb.h;)
  83. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrwbplus.h;)
  84. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_ape.h;)
  85. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_calibration.h;)
  86. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_g711_dec.h;)
  87. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_g711.h;)
  88. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_mvs.h;)
  89. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_qcp.h;)
  90. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_sbc.h;)
  91. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_voicememo.h;)
  92. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_wma.h;)
  93. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_wmapro.h;)
  94. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ audio_effects.h;)
  95. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ audio_slimslave.h;)
  96. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ devdep_params.h;)
  97. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ lsm_params.h;)
  98. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ msmcal-hwdep.h;)
  99. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ voice_params.h;)
  100. $(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ wcd-dsp-glink.h;)
  101. # Currently, for versions of gcc which support it, the kernel Makefile
  102. # is disabling the maybe-uninitialized warning. Re-enable it for the
  103. # AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
  104. # will override the kernel settings.
  105. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  106. EXTRA_CFLAGS += -Wmaybe-uninitialized
  107. endif
  108. #EXTRA_CFLAGS += -Wmissing-prototypes
  109. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  110. EXTRA_CFLAGS += -Wheader-guard
  111. endif
  112. # If the module name is not "wlan", then the define MULTI_IF_NAME to be the
  113. # same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
  114. # any string that must be unique for all instances of the driver on the system.
  115. # This allows multiple instances of the driver with different module names.
  116. # If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
  117. # treat the driver as the primary driver.
  118. ifneq ($(MODNAME), qdsp6v2)
  119. CHIP_NAME ?= $(MODNAME)
  120. CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
  121. endif
  122. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
  123. # Module information used by KBuild framework
  124. obj-$(CONFIG_MSM_QDSP6_APRV2_GLINK) += apr_dlkm.o
  125. apr_dlkm-y := $(APRV_GLINK)
  126. obj-$(CONFIG_WCD_DSP_GLINK) += wglink_dlkm.o
  127. wglink_dlkm-y := $(WDSP_GLINK)
  128. # inject some build related information
  129. CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"