Kbuild 4.9 KB

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