Kbuild 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. ############ Native Enc/Dec ############
  38. ifeq ($(CONFIG_MSM_QDSP6V2_CODECS), m)
  39. NATIVE_OBJS += q6audio_v2.o q6audio_v2_aio.o
  40. NATIVE_OBJS += audio_utils_aio.o
  41. NATIVE_OBJS += audio_utils.o
  42. NATIVE_OBJS += audio_native.o
  43. NATIVE_OBJS += aac_in.o
  44. NATIVE_OBJS += amrnb_in.o
  45. NATIVE_OBJS += amrwb_in.o
  46. NATIVE_OBJS += audio_aac.o
  47. NATIVE_OBJS += audio_alac.o
  48. NATIVE_OBJS += audio_amrnb.o
  49. NATIVE_OBJS += audio_amrwb.o
  50. NATIVE_OBJS += audio_amrwbplus.o
  51. NATIVE_OBJS += audio_ape.o
  52. NATIVE_OBJS += audio_evrc.o
  53. NATIVE_OBJS += audio_g711alaw.o
  54. NATIVE_OBJS += audio_g711mlaw.o
  55. NATIVE_OBJS += audio_hwacc_effects.o
  56. NATIVE_OBJS += audio_mp3.o
  57. NATIVE_OBJS += audio_multi_aac.o
  58. NATIVE_OBJS += audio_qcelp.o
  59. NATIVE_OBJS += audio_wma.o
  60. NATIVE_OBJS += audio_wmapro.o
  61. NATIVE_OBJS += evrc_in.o
  62. NATIVE_OBJS += g711alaw_in.o
  63. NATIVE_OBJS += g711mlaw_in.o
  64. NATIVE_OBJS += qcelp_in.o
  65. endif
  66. LINUX_INC += -Iinclude/linux
  67. INCS := $(COMMON_INC) \
  68. $(UAPI_INC)
  69. ifeq ($(CONFIG_ARCH_SDM845), y)
  70. INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
  71. endif
  72. ifeq ($(CONFIG_ARCH_SDM670), y)
  73. INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
  74. endif
  75. EXTRA_CFLAGS += $(INCS)
  76. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  77. -DANI_LITTLE_BIT_ENDIAN \
  78. -DDOT11F_LITTLE_ENDIAN_HOST \
  79. -DANI_COMPILER_TYPE_GCC \
  80. -DANI_OS_TYPE_ANDROID=6 \
  81. -DPTT_SOCK_SVC_ENABLE \
  82. -Wall\
  83. -Werror\
  84. -D__linux__
  85. KBUILD_CPPFLAGS += $(CDEFINES)
  86. # Currently, for versions of gcc which support it, the kernel Makefile
  87. # is disabling the maybe-uninitialized warning. Re-enable it for the
  88. # AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
  89. # will override the kernel settings.
  90. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  91. EXTRA_CFLAGS += -Wmaybe-uninitialized
  92. endif
  93. #EXTRA_CFLAGS += -Wmissing-prototypes
  94. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  95. EXTRA_CFLAGS += -Wheader-guard
  96. endif
  97. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
  98. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/asoc/Module.symvers
  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. # Module information used by KBuild framework
  110. obj-$(CONFIG_MSM_QDSP6V2_CODECS) += native_dlkm.o
  111. native_dlkm-y := $(NATIVE_OBJS)
  112. # inject some build related information
  113. DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"