Kbuild 3.9 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. 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. endif
  48. # As per target team, build is done as follows:
  49. # Defconfig : build with default flags
  50. # Slub : defconfig + CONFIG_SLUB_DEBUG := y +
  51. # CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
  52. # Perf : Using appropriate msmXXXX-perf_defconfig
  53. #
  54. # Shipment builds (user variants) should not have any debug feature
  55. # enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
  56. # are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
  57. # there is no other way to identify defconfig builds, QTI internal
  58. # representation of perf builds (identified using the string 'perf'),
  59. # is used to identify if the build is a slub or defconfig one. This
  60. # way no critical debug feature will be enabled for perf and shipment
  61. # builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
  62. # config.
  63. ############ UAPI ############
  64. UAPI_DIR := uapi/audio
  65. UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
  66. ############ COMMON ############
  67. COMMON_DIR := include
  68. COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
  69. ############ WCD937X ############
  70. # for WCD937X Codec
  71. ifdef CONFIG_SND_SOC_WCD937X
  72. WCD937X_OBJS += wcd937x.o
  73. WCD937X_OBJS += wcd937x-regmap.o
  74. WCD937X_OBJS += wcd937x-tables.o
  75. WCD937X_OBJS += wcd937x-mbhc.o
  76. endif
  77. ifdef CONFIG_SND_SOC_WCD937X_SLAVE
  78. WCD937X_SLAVE_OBJS += wcd937x_slave.o
  79. endif
  80. LINUX_INC += -Iinclude/linux
  81. INCS += $(COMMON_INC) \
  82. $(UAPI_INC)
  83. EXTRA_CFLAGS += $(INCS)
  84. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  85. -DANI_LITTLE_BIT_ENDIAN \
  86. -DDOT11F_LITTLE_ENDIAN_HOST \
  87. -DANI_COMPILER_TYPE_GCC \
  88. -DANI_OS_TYPE_ANDROID=6 \
  89. -DPTT_SOCK_SVC_ENABLE \
  90. -Wall\
  91. -Werror\
  92. -D__linux__
  93. KBUILD_CPPFLAGS += $(CDEFINES)
  94. # Currently, for versions of gcc which support it, the kernel Makefile
  95. # is disabling the maybe-uninitialized warning. Re-enable it for the
  96. # AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
  97. # will override the kernel settings.
  98. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  99. EXTRA_CFLAGS += -Wmaybe-uninitialized
  100. endif
  101. #EXTRA_CFLAGS += -Wmissing-prototypes
  102. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  103. EXTRA_CFLAGS += -Wheader-guard
  104. endif
  105. # Module information used by KBuild framework
  106. obj-$(CONFIG_SND_SOC_WCD937X) += wcd937x_dlkm.o
  107. wcd937x_dlkm-y := $(WCD937X_OBJS)
  108. obj-$(CONFIG_SND_SOC_WCD937X_SLAVE) += wcd937x_slave_dlkm.o
  109. wcd937x_slave_dlkm-y := $(WCD937X_SLAVE_OBJS)
  110. # inject some build related information
  111. DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"