Kbuild 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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 := $(ANDROID_BUILD_TOP)/kernel/msm-5.4
  12. AUDIO_ROOT := $(AUDIO_BLD_DIR)/techpack/audio
  13. endif
  14. ifeq ($(KERNEL_BUILD), 0)
  15. ifeq ($(CONFIG_ARCH_SM6150), y)
  16. include $(AUDIO_ROOT)/config/sm6150auto.conf
  17. export
  18. INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
  19. endif
  20. ifeq ($(CONFIG_ARCH_TRINKET), y)
  21. include $(AUDIO_ROOT)/config/sm6150auto.conf
  22. export
  23. INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
  24. endif
  25. ifeq ($(CONFIG_ARCH_KHAJE), y)
  26. include $(AUDIO_ROOT)/config/bengalauto.conf
  27. export
  28. INCS += -include $(AUDIO_ROOT)/config/bengalautoconf.h
  29. endif
  30. ifeq ($(CONFIG_ARCH_LITO), y)
  31. include $(AUDIO_ROOT)/config/litoauto.conf
  32. export
  33. INCS += -include $(AUDIO_ROOT)/config/litoautoconf.h
  34. endif
  35. ifeq ($(CONFIG_ARCH_WAIPIO), y)
  36. include $(AUDIO_ROOT)/config/waipioauto.conf
  37. INCS += -include $(AUDIO_ROOT)/config/waipioautoconf.h
  38. endif
  39. ifeq ($(CONFIG_ARCH_HOLI), y)
  40. include $(AUDIO_ROOT)/config/holiauto.conf
  41. INCS += -include $(AUDIO_ROOT)/config/holiautoconf.h
  42. endif
  43. ifeq ($(CONFIG_ARCH_BLAIR), y)
  44. include $(AUDIO_ROOT)/config/holiauto.conf
  45. INCS += -include $(AUDIO_ROOT)/config/holiautoconf.h
  46. endif
  47. ifeq ($(CONFIG_ARCH_CLIFFS), y)
  48. include $(AUDIO_ROOT)/config/pineappleauto.conf
  49. INCS += -include $(AUDIO_ROOT)/config/pineappleautoconf.h
  50. endif
  51. endif
  52. # As per target team, build is done as follows:
  53. # Defconfig : build with default flags
  54. # Slub : defconfig + CONFIG_SLUB_DEBUG := y +
  55. # CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
  56. # Perf : Using appropriate msmXXXX-perf_defconfig
  57. #
  58. # Shipment builds (user variants) should not have any debug feature
  59. # enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
  60. # are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
  61. # there is no other way to identify defconfig builds, QTI internal
  62. # representation of perf builds (identified using the string 'perf'),
  63. # is used to identify if the build is a slub or defconfig one. This
  64. # way no critical debug feature will be enabled for perf and shipment
  65. # builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
  66. # config.
  67. ############ UAPI ############
  68. UAPI_DIR := uapi/audio
  69. UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
  70. ############ COMMON ############
  71. COMMON_DIR := include
  72. COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
  73. ############ WCD937X ############
  74. # for WCD937X Codec
  75. ifdef CONFIG_SND_SOC_WCD937X
  76. WCD937X_OBJS += wcd937x.o
  77. WCD937X_OBJS += wcd937x-regmap.o
  78. WCD937X_OBJS += wcd937x-tables.o
  79. WCD937X_OBJS += wcd937x-mbhc.o
  80. endif
  81. ifdef CONFIG_SND_SOC_WCD937X_SLAVE
  82. WCD937X_SLAVE_OBJS += wcd937x_slave.o
  83. endif
  84. LINUX_INC += -Iinclude/linux
  85. INCS += $(COMMON_INC) \
  86. $(UAPI_INC)
  87. EXTRA_CFLAGS += $(INCS)
  88. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  89. -DANI_LITTLE_BIT_ENDIAN \
  90. -DDOT11F_LITTLE_ENDIAN_HOST \
  91. -DANI_COMPILER_TYPE_GCC \
  92. -DANI_OS_TYPE_ANDROID=6 \
  93. -DPTT_SOCK_SVC_ENABLE \
  94. -Wall\
  95. -Werror\
  96. -D__linux__
  97. KBUILD_CPPFLAGS += $(CDEFINES)
  98. # Currently, for versions of gcc which support it, the kernel Makefile
  99. # is disabling the maybe-uninitialized warning. Re-enable it for the
  100. # AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
  101. # will override the kernel settings.
  102. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  103. EXTRA_CFLAGS += -Wmaybe-uninitialized
  104. endif
  105. #EXTRA_CFLAGS += -Wmissing-prototypes
  106. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  107. EXTRA_CFLAGS += -Wheader-guard
  108. endif
  109. # Module information used by KBuild framework
  110. obj-$(CONFIG_SND_SOC_WCD937X) += wcd937x_dlkm.o
  111. wcd937x_dlkm-y := $(WCD937X_OBJS)
  112. obj-$(CONFIG_SND_SOC_WCD937X_SLAVE) += wcd937x_slave_dlkm.o
  113. wcd937x_slave_dlkm-y := $(WCD937X_SLAVE_OBJS)