Kbuild 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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. ifeq ($(KERNEL_BUILD), 1)
  9. # These are configurable via Kconfig for kernel-based builds
  10. # Need to explicitly configure for Android-based builds
  11. AUDIO_BLD_DIR := $(shell pwd)/kernel/msm-5.4
  12. AUDIO_ROOT := $(AUDIO_BLD_DIR)/techpack/audio
  13. endif
  14. ifeq ($(CONFIG_SND_SOC_AUTO), y)
  15. ifdef CONFIG_SND_SOC_SA8155
  16. include $(AUDIO_ROOT)/config/sa8155auto.conf
  17. export
  18. INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
  19. endif
  20. ifdef CONFIG_SND_SOC_SA6155
  21. include $(AUDIO_ROOT)/config/sa6155auto.conf
  22. export
  23. INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
  24. endif
  25. else
  26. ifeq ($(KERNEL_BUILD), 0)
  27. ifeq ($(CONFIG_ARCH_SM8150), y)
  28. ifdef CONFIG_SND_SOC_SA8155
  29. include $(AUDIO_ROOT)/config/sa8155auto.conf
  30. export
  31. INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
  32. else
  33. include $(AUDIO_ROOT)/config/sm8150auto.conf
  34. export
  35. INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
  36. endif
  37. endif
  38. ifeq ($(CONFIG_ARCH_SM6150), y)
  39. ifdef CONFIG_SND_SOC_SA6155
  40. include $(AUDIO_ROOT)/config/sa6155auto.conf
  41. export
  42. INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
  43. else
  44. include $(AUDIO_ROOT)/config/sm6150auto.conf
  45. export
  46. INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
  47. endif
  48. endif
  49. ifeq ($(CONFIG_ARCH_TRINKET), y)
  50. include $(AUDIO_ROOT)/config/sm6150auto.conf
  51. export
  52. INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
  53. endif
  54. ifeq ($(CONFIG_ARCH_KONA), y)
  55. include $(AUDIO_ROOT)/config/konaauto.conf
  56. INCS += -include $(AUDIO_ROOT)/config/konaautoconf.h
  57. endif
  58. ifeq ($(CONFIG_ARCH_LITO), y)
  59. include $(AUDIO_ROOT)/config/litoauto.conf
  60. export
  61. INCS += -include $(AUDIO_ROOT)/config/litoautoconf.h
  62. endif
  63. ifeq ($(CONFIG_ARCH_BENGAL), y)
  64. include $(AUDIO_ROOT)/config/bengalauto.conf
  65. export
  66. INCS += -include $(AUDIO_ROOT)/config/bengalautoconf.h
  67. endif
  68. ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
  69. ifdef CONFIG_SND_SOC_SA8155
  70. include $(AUDIO_ROOT)/config/sa8155auto.conf
  71. export
  72. INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
  73. else
  74. include $(AUDIO_ROOT)/config/sm8150auto.conf
  75. export
  76. INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
  77. endif
  78. endif
  79. ifeq ($(CONFIG_ARCH_QCS405), y)
  80. include $(AUDIO_ROOT)/config/qcs405auto.conf
  81. export
  82. INCS += -include $(AUDIO_ROOT)/config/qcs405autoconf.h
  83. endif
  84. ifeq ($(CONFIG_QTI_QUIN_GVM), y)
  85. include $(AUDIO_ROOT)/config/gvmauto.conf
  86. export
  87. INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
  88. endif
  89. endif
  90. endif
  91. # As per target team, build is done as follows:
  92. # Defconfig : build with default flags
  93. # Slub : defconfig + CONFIG_SLUB_DEBUG := y +
  94. # CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
  95. # Perf : Using appropriate msmXXXX-perf_defconfig
  96. #
  97. # Shipment builds (user variants) should not have any debug feature
  98. # enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
  99. # are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
  100. # there is no other way to identify defconfig builds, QTI internal
  101. # representation of perf builds (identified using the string 'perf'),
  102. # is used to identify if the build is a slub or defconfig one. This
  103. # way no critical debug feature will be enabled for perf and shipment
  104. # builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
  105. # config.
  106. ############ UAPI ############
  107. UAPI_DIR := uapi/audio
  108. UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
  109. ############ COMMON ############
  110. COMMON_DIR := include
  111. COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
  112. ############ ASoC Drivers ############
  113. MACHINE_OBJS += msm_common.o
  114. # for SM8150 sound card driver
  115. ifdef CONFIG_SND_SOC_SM8150
  116. MACHINE_OBJS += sm8150.o
  117. MACHINE_OBJS += machine_815x_init.o
  118. endif
  119. # for SM6150 sound card driver
  120. ifdef CONFIG_SND_SOC_SM6150
  121. MACHINE_OBJS += sm6150.o
  122. MACHINE_OBJS += machine_615x_init.o
  123. endif
  124. # For sa6155 sound card driver
  125. ifdef CONFIG_SND_SOC_SA6155
  126. MACHINE_OBJS += sa6155.o
  127. endif
  128. # for qcs405 sound card driver
  129. ifdef CONFIG_SND_SOC_QCS405
  130. MACHINE_OBJS += qcs405.o
  131. endif
  132. # for KONA sound card driver
  133. ifdef CONFIG_SND_SOC_KONA
  134. MACHINE_OBJS += kona.o
  135. endif
  136. # for LAHAINA sound card driver
  137. ifdef CONFIG_SND_SOC_LAHAINA
  138. MACHINE_OBJS += lahaina.o
  139. endif
  140. # for HOLI sound card driver
  141. ifdef CONFIG_SND_SOC_HOLI
  142. MACHINE_OBJS += holi.o
  143. endif
  144. ifdef CONFIG_SND_SOC_LITO
  145. MACHINE_OBJS += kona.o
  146. endif
  147. # for BENGAL sound card driver
  148. ifdef CONFIG_SND_SOC_BENGAL
  149. MACHINE_OBJS += bengal.o
  150. endif
  151. # for sa8155 sound card driver
  152. ifdef CONFIG_SND_SOC_SA8155
  153. MACHINE_OBJS += sa8155.o
  154. endif
  155. ifdef CONFIG_SND_SOC_QDSP6V2
  156. PLATFORM_OBJS += platform_init.o
  157. endif
  158. LINUX_INC += -Iinclude/linux
  159. INCS += $(COMMON_INC) \
  160. $(UAPI_INC)
  161. EXTRA_CFLAGS += $(INCS)
  162. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  163. -DANI_LITTLE_BIT_ENDIAN \
  164. -DDOT11F_LITTLE_ENDIAN_HOST \
  165. -DANI_COMPILER_TYPE_GCC \
  166. -DANI_OS_TYPE_ANDROID=6 \
  167. -DPTT_SOCK_SVC_ENABLE \
  168. -Wall\
  169. -Werror\
  170. -D__linux__
  171. KBUILD_CPPFLAGS += $(CDEFINES)
  172. # Currently, for versions of gcc which support it, the kernel Makefile
  173. # is disabling the maybe-uninitialized warning. Re-enable it for the
  174. # AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
  175. # will override the kernel settings.
  176. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  177. EXTRA_CFLAGS += -Wmaybe-uninitialized
  178. endif
  179. #EXTRA_CFLAGS += -Wmissing-prototypes
  180. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  181. EXTRA_CFLAGS += -Wheader-guard
  182. endif
  183. ifeq ($(KERNEL_BUILD), 0)
  184. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
  185. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/asoc/codecs/Module.symvers
  186. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/asoc/codecs/wcd934x/Module.symvers
  187. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/asoc/codecs/wcd937x/Module.symvers
  188. endif
  189. ifeq ($(KERNEL_BUILD), 1)
  190. obj-y += codecs/
  191. endif
  192. # Module information used by KBuild framework
  193. obj-$(CONFIG_SND_SOC_QDSP6V2) += platform_dlkm.o
  194. platform_dlkm-y := $(PLATFORM_OBJS)
  195. obj-$(CONFIG_SND_SOC_SM8150) += machine_dlkm.o
  196. machine_dlkm-y := $(MACHINE_OBJS)
  197. obj-$(CONFIG_SND_SOC_SM6150) += machine_dlkm.o
  198. machine_dlkm-y := $(MACHINE_OBJS)
  199. obj-$(CONFIG_SND_SOC_SA6155) += machine_dlkm.o
  200. machine_dlkm-y := $(MACHINE_OBJS)
  201. obj-$(CONFIG_SND_SOC_QCS405) += machine_dlkm.o
  202. machine_dlkm-y := $(MACHINE_OBJS)
  203. obj-$(CONFIG_SND_SOC_KONA) += machine_dlkm.o
  204. machine_dlkm-y := $(MACHINE_OBJS)
  205. obj-$(CONFIG_SND_SOC_LAHAINA) += machine_dlkm.o
  206. machine_dlkm-y := $(MACHINE_OBJS)
  207. obj-$(CONFIG_SND_SOC_HOLI) += machine_dlkm.o
  208. machine_dlkm-y := $(MACHINE_OBJS)
  209. obj-$(CONFIG_SND_SOC_LITO) += machine_dlkm.o
  210. machine_dlkm-y := $(MACHINE_OBJS)
  211. obj-$(CONFIG_SND_SOC_BENGAL) += machine_dlkm.o
  212. machine_dlkm-y := $(MACHINE_OBJS)
  213. obj-$(CONFIG_SND_SOC_SA8155) += machine_dlkm.o
  214. machine_dlkm-y := $(MACHINE_OBJS)
  215. # inject some build related information
  216. DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"