Kbuild 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. ############ SDM660_CDC ############
  38. # for SDM660_CDC Codec
  39. ifeq ($(CONFIG_SND_SOC_ANALOG_CDC), m)
  40. ANALOG_CDC_OBJS += msm-analog-cdc.o
  41. ANALOG_CDC_OBJS += sdm660-cdc-irq.o
  42. endif
  43. ifeq ($(CONFIG_SND_SOC_DIGITAL_CDC), m)
  44. DIGITAL_CDC_OBJS += msm-digital-cdc.o
  45. DIGITAL_CDC_OBJS += msm-digital-cdc-regmap.o
  46. endif
  47. LINUX_INC += -Iinclude/linux
  48. INCS := $(COMMON_INC) \
  49. $(UAPI_INC)
  50. ifeq ($(CONFIG_ARCH_SDM845), y)
  51. INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
  52. endif
  53. ifeq ($(CONFIG_ARCH_SDM670), y)
  54. INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
  55. endif
  56. EXTRA_CFLAGS += $(INCS)
  57. CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
  58. -DANI_LITTLE_BIT_ENDIAN \
  59. -DDOT11F_LITTLE_ENDIAN_HOST \
  60. -DANI_COMPILER_TYPE_GCC \
  61. -DANI_OS_TYPE_ANDROID=6 \
  62. -DPTT_SOCK_SVC_ENABLE \
  63. -Wall\
  64. -Werror\
  65. -D__linux__
  66. KBUILD_CPPFLAGS += $(CDEFINES)
  67. # Currently, for versions of gcc which support it, the kernel Makefile
  68. # is disabling the maybe-uninitialized warning. Re-enable it for the
  69. # AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
  70. # will override the kernel settings.
  71. ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
  72. EXTRA_CFLAGS += -Wmaybe-uninitialized
  73. endif
  74. #EXTRA_CFLAGS += -Wmissing-prototypes
  75. ifeq ($(call cc-option-yn, -Wheader-guard),y)
  76. EXTRA_CFLAGS += -Wheader-guard
  77. endif
  78. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/ipc/Module.symvers
  79. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
  80. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/asoc/Module.symvers
  81. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/asoc/codecs/Module.symvers
  82. KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/soc/Module.symvers
  83. # Module information used by KBuild framework
  84. obj-$(CONFIG_SND_SOC_ANALOG_CDC) += analog_cdc_dlkm.o
  85. analog_cdc_dlkm-y := $(ANALOG_CDC_OBJS)
  86. obj-$(CONFIG_SND_SOC_DIGITAL_CDC) += digital_cdc_dlkm.o
  87. digital_cdc_dlkm-y := $(DIGITAL_CDC_OBJS)
  88. # inject some build related information
  89. DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"