Kbuild 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. ############ SoC Modules ############
  38. # for pinctrl WCD driver
  39. ifeq ($(CONFIG_PINCTRL_WCD), m)
  40. PINCTRL_WCD_OBJS += pinctrl-wcd.o
  41. endif
  42. # for pinctrl LPI driver
  43. ifeq ($(CONFIG_PINCTRL_LPI), m)
  44. PINCTRL_LPI_OBJS += pinctrl-lpi.o
  45. endif
  46. # for soundwire driver
  47. ifeq ($(CONFIG_SOUNDWIRE_WCD_CTRL), m)
  48. SWR_CTRL_OBJS += swr-wcd-ctrl.o
  49. endif
  50. ifeq ($(CONFIG_SOUNDWIRE), m)
  51. SWR_OBJS += regmap-swr.o
  52. SWR_OBJS += soundwire.o
  53. endif
  54. LINUX_INC += -Iinclude/linux
  55. INCS := $(COMMON_INC) \
  56. $(UAPI_INC)
  57. ifeq ($(CONFIG_ARCH_SDM845), y)
  58. INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
  59. endif
  60. ifeq ($(CONFIG_ARCH_SDM670), y)
  61. INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
  62. endif
  63. EXTRA_CFLAGS += $(INCS)
  64. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  65. -DANI_LITTLE_BIT_ENDIAN \
  66. -DDOT11F_LITTLE_ENDIAN_HOST \
  67. -DANI_COMPILER_TYPE_GCC \
  68. -DANI_OS_TYPE_ANDROID=6 \
  69. -DPTT_SOCK_SVC_ENABLE \
  70. -Wall\
  71. -Werror\
  72. -D__linux__
  73. KBUILD_CPPFLAGS += $(CDEFINES)
  74. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
  75. # Currently, for versions of gcc which support it, the kernel Makefile
  76. # is disabling the maybe-uninitialized warning. Re-enable it for the
  77. # AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
  78. # will override the kernel settings.
  79. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  80. EXTRA_CFLAGS += -Wmaybe-uninitialized
  81. endif
  82. #EXTRA_CFLAGS += -Wmissing-prototypes
  83. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  84. EXTRA_CFLAGS += -Wheader-guard
  85. endif
  86. # Module information used by KBuild framework
  87. obj-$(CONFIG_PINCTRL_WCD) += pinctrl_wcd_dlkm.o
  88. pinctrl_wcd_dlkm-y := $(PINCTRL_WCD_OBJS)
  89. obj-$(CONFIG_PINCTRL_LPI) += pinctrl_lpi_dlkm.o
  90. pinctrl_lpi_dlkm-y := $(PINCTRL_LPI_OBJS)
  91. obj-$(CONFIG_SOUNDWIRE) += swr_dlkm.o
  92. swr_dlkm-y := $(SWR_OBJS)
  93. obj-$(CONFIG_SOUNDWIRE_WCD_CTRL) += swr_ctrl_dlkm.o
  94. swr_ctrl_dlkm-y := $(SWR_CTRL_OBJS)
  95. # inject some build related information
  96. DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"