Kbuild 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. ifeq ($(KERNEL_BUILD), 0)
  5. # These are configurable via Kconfig for kernel-based builds
  6. # Need to explicitly configure for Android-based builds
  7. ifeq ($(CONFIG_ARCH_SDM845), y)
  8. include $(AUDIO_ROOT)/config/sdm845auto.conf
  9. export
  10. endif
  11. ifeq ($(CONFIG_ARCH_SDM670), y)
  12. include $(AUDIO_ROOT)/config/sdm670auto.conf
  13. export
  14. endif
  15. endif
  16. # As per target team, build is done as follows:
  17. # Defconfig : build with default flags
  18. # Slub : defconfig + CONFIG_SLUB_DEBUG := y +
  19. # CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
  20. # Perf : Using appropriate msmXXXX-perf_defconfig
  21. #
  22. # Shipment builds (user variants) should not have any debug feature
  23. # enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
  24. # are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
  25. # there is no other way to identify defconfig builds, QTI internal
  26. # representation of perf builds (identified using the string 'perf'),
  27. # is used to identify if the build is a slub or defconfig one. This
  28. # way no critical debug feature will be enabled for perf and shipment
  29. # builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
  30. # config.
  31. ############ UAPI ############
  32. UAPI_DIR := uapi
  33. UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
  34. ############ COMMON ############
  35. COMMON_DIR := include
  36. COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
  37. ############ QDSP6V2 ############
  38. ifeq ($(CONFIG_SND_SOC_MSM_QDSP6V2_INTF), m)
  39. Q6_OBJS += audio_calibration.o
  40. Q6_OBJS += audio_cal_utils.o
  41. Q6_OBJS += msm-dts-srs-tm-config.o
  42. Q6_OBJS += q6adm.o
  43. Q6_OBJS += q6afe.o
  44. Q6_OBJS += q6asm.o
  45. Q6_OBJS += q6audio-v2.o
  46. Q6_OBJS += q6voice.o
  47. Q6_OBJS += q6core.o
  48. Q6_OBJS += rtac.o
  49. Q6_OBJS += q6lsm.o
  50. Q6_OBJS += audio_slimslave.o
  51. Q6_OBJS += adsp_err.o
  52. Q6_OBJS += msm_audio_ion.o
  53. Q6_OBJS += avtimer.o
  54. Q6_OBJS += q6_init.o
  55. endif
  56. ifeq ($(CONFIG_MSM_ADSP_LOADER), m)
  57. ADSP_LOADER_OBJS += adsp-loader.o
  58. endif
  59. ifeq ($(CONFIG_MSM_QDSP6_NOTIFIER), m)
  60. QDSP6_NOTIFIER_OBJS += audio_notifier.o audio_ssr.o
  61. endif
  62. ifeq ($(CONFIG_MSM_QDSP6_PDR), m)
  63. QDSP6_PDR_OBJS += audio_pdr.o
  64. endif
  65. ifeq ($(CONFIG_MSM_ULTRASOUND), m)
  66. USF_OBJS += usf.o usfcdev.o q6usm.o
  67. endif
  68. LINUX_INC += -Iinclude/linux
  69. INCS := $(COMMON_INC) \
  70. $(UAPI_INC)
  71. ifeq ($(CONFIG_ARCH_SDM845), y)
  72. INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
  73. endif
  74. ifeq ($(CONFIG_ARCH_SDM670), y)
  75. INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
  76. endif
  77. EXTRA_CFLAGS += $(INCS)
  78. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  79. -DANI_LITTLE_BIT_ENDIAN \
  80. -DDOT11F_LITTLE_ENDIAN_HOST \
  81. -DANI_COMPILER_TYPE_GCC \
  82. -DANI_OS_TYPE_ANDROID=6 \
  83. -DPTT_SOCK_SVC_ENABLE \
  84. -Wall\
  85. -Werror\
  86. -D__linux__
  87. KBUILD_CPPFLAGS += $(CDEFINES)
  88. # Currently, for versions of gcc which support it, the kernel Makefile
  89. # is disabling the maybe-uninitialized warning. Re-enable it for the
  90. # AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
  91. # will override the kernel settings.
  92. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  93. EXTRA_CFLAGS += -Wmaybe-uninitialized
  94. endif
  95. #EXTRA_CFLAGS += -Wmissing-prototypes
  96. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  97. EXTRA_CFLAGS += -Wheader-guard
  98. endif
  99. # If the module name is not "wlan", then the define MULTI_IF_NAME to be the
  100. # same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
  101. # any string that must be unique for all instances of the driver on the system.
  102. # This allows multiple instances of the driver with different module names.
  103. # If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
  104. # treat the driver as the primary driver.
  105. ifneq ($(MODNAME), qdsp6v2)
  106. CHIP_NAME ?= $(MODNAME)
  107. CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
  108. endif
  109. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/ipc/Module.symvers
  110. obj-$(CONFIG_SND_SOC_MSM_QDSP6V2_INTF) += q6_dlkm.o
  111. q6_dlkm-y := $(Q6_OBJS)
  112. obj-$(CONFIG_MSM_ULTRASOUND) += usf_dlkm.o
  113. usf_dlkm-y := $(USF_OBJS)
  114. obj-$(CONFIG_MSM_ADSP_LOADER) += adsp_loader_dlkm.o
  115. adsp_loader_dlkm-y := $(ADSP_LOADER_OBJS)
  116. obj-$(CONFIG_MSM_QDSP6_NOTIFIER) += q6_notifier_dlkm.o
  117. q6_notifier_dlkm-y := $(QDSP6_NOTIFIER_OBJS)
  118. obj-$(CONFIG_MSM_QDSP6_PDR) += q6_pdr_dlkm.o
  119. q6_pdr_dlkm-y := $(QDSP6_PDR_OBJS)
  120. # inject some build related information
  121. DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"