| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 1 | # We can build either as part of a standalone Kernel build or as | 
 | 2 | # an external module.  Determine which mechanism is being used | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 3 | ifeq ($(MODNAME), ) | 
 | 4 | 	KERNEL_BUILD := 1 | 
 | 5 | else | 
 | 6 | 	KERNEL_BUILD := 0 | 
 | 7 | endif | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 8 |  | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 9 | ifeq ($(KERNEL_BUILD), 1) | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 10 | 	# These are configurable via Kconfig for kernel-based builds | 
 | 11 | 	# Need to explicitly configure for Android-based builds | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 12 | 	AUDIO_BLD_DIR := $(ANDROID_BUILD_TOP)/kernel/msm-4.9 | 
 | 13 | 	AUDIO_ROOT := $(AUDIO_BLD_DIR)/techpack/audio | 
 | 14 | endif | 
 | 15 |  | 
 | 16 | ifeq ($(KERNEL_BUILD), 0) | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 17 | 	ifeq ($(CONFIG_ARCH_SDM845), y) | 
 | 18 | 		include $(AUDIO_ROOT)/config/sdm845auto.conf | 
 | 19 | 		export | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 20 | 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm845autoconf.h | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 21 | 	endif | 
 | 22 | 	ifeq ($(CONFIG_ARCH_SDM670), y) | 
 | 23 | 		include $(AUDIO_ROOT)/config/sdm670auto.conf | 
 | 24 | 		export | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 25 | 		INCS    +=  -include $(AUDIO_ROOT)/config/sdm670autoconf.h | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 26 | 	endif | 
 | 27 | endif | 
 | 28 |  | 
 | 29 |  | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 30 |  | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 31 | # As per target team, build is done as follows: | 
 | 32 | # Defconfig : build with default flags | 
 | 33 | # Slub      : defconfig  + CONFIG_SLUB_DEBUG := y + | 
 | 34 | #	      CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y | 
 | 35 | # Perf      : Using appropriate msmXXXX-perf_defconfig | 
 | 36 | # | 
 | 37 | # Shipment builds (user variants) should not have any debug feature | 
 | 38 | # enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds | 
 | 39 | # are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since | 
 | 40 | # there is no other way to identify defconfig builds, QTI internal | 
 | 41 | # representation of perf builds (identified using the string 'perf'), | 
 | 42 | # is used to identify if the build is a slub or defconfig one. This | 
 | 43 | # way no critical debug feature will be enabled for perf and shipment | 
 | 44 | # builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT | 
 | 45 | # config. | 
 | 46 |  | 
 | 47 | ############ UAPI ############ | 
 | 48 | UAPI_DIR :=	uapi | 
 | 49 | UAPI_INC :=	-I$(AUDIO_ROOT)/include/$(UAPI_DIR) | 
 | 50 |  | 
 | 51 | ############ COMMON ############ | 
 | 52 | COMMON_DIR :=	include | 
 | 53 | COMMON_INC :=	-I$(AUDIO_ROOT)/$(COMMON_DIR) | 
 | 54 |  | 
 | 55 | ############ QDSP6V2 ############ | 
 | 56 |  | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 57 | ifdef CONFIG_SND_SOC_MSM_QDSP6V2_INTF | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 58 | 	Q6_OBJS += audio_calibration.o | 
 | 59 | 	Q6_OBJS += audio_cal_utils.o | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 60 | 	Q6_OBJS += q6adm.o | 
 | 61 | 	Q6_OBJS += q6afe.o | 
 | 62 | 	Q6_OBJS += q6asm.o | 
 | 63 | 	Q6_OBJS += q6audio-v2.o | 
 | 64 | 	Q6_OBJS += q6voice.o | 
 | 65 | 	Q6_OBJS += q6core.o | 
 | 66 | 	Q6_OBJS += rtac.o | 
 | 67 | 	Q6_OBJS += q6lsm.o | 
 | 68 | 	Q6_OBJS += audio_slimslave.o | 
 | 69 | 	Q6_OBJS += adsp_err.o | 
 | 70 | 	Q6_OBJS += msm_audio_ion.o | 
 | 71 | 	Q6_OBJS += avtimer.o | 
 | 72 | 	Q6_OBJS += q6_init.o | 
 | 73 | endif | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 74 | ifdef CONFIG_DTS_SRS_TM | 
 | 75 | 	Q6_OBJS += msm-dts-srs-tm-config.o | 
 | 76 | endif | 
 | 77 |  | 
 | 78 | ifdef CONFIG_MSM_ADSP_LOADER | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 79 | ADSP_LOADER_OBJS += adsp-loader.o | 
 | 80 | endif | 
 | 81 |  | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 82 | ifdef CONFIG_MSM_QDSP6_NOTIFIER | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 83 | QDSP6_NOTIFIER_OBJS += audio_notifier.o audio_ssr.o | 
 | 84 | endif | 
 | 85 |  | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 86 | ifdef CONFIG_MSM_QDSP6_PDR | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 87 | QDSP6_PDR_OBJS += audio_pdr.o | 
 | 88 | endif | 
 | 89 |  | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 90 | ifdef CONFIG_MSM_ULTRASOUND | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 91 | USF_OBJS += usf.o usfcdev.o q6usm.o | 
 | 92 | endif | 
 | 93 |  | 
 | 94 | LINUX_INC +=	-Iinclude/linux | 
 | 95 |  | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 96 | INCS +=		$(COMMON_INC) \ | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 97 | 		$(UAPI_INC) | 
 | 98 |  | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 99 | EXTRA_CFLAGS += $(INCS) | 
 | 100 |  | 
 | 101 |  | 
 | 102 | CDEFINES +=	-DANI_LITTLE_BYTE_ENDIAN \ | 
 | 103 | 		-DANI_LITTLE_BIT_ENDIAN \ | 
 | 104 | 		-DDOT11F_LITTLE_ENDIAN_HOST \ | 
 | 105 | 		-DANI_COMPILER_TYPE_GCC \ | 
 | 106 | 		-DANI_OS_TYPE_ANDROID=6 \ | 
 | 107 | 		-DPTT_SOCK_SVC_ENABLE \ | 
 | 108 | 		-Wall\ | 
 | 109 | 		-Werror\ | 
 | 110 | 		-D__linux__ | 
 | 111 |  | 
 | 112 | KBUILD_CPPFLAGS += $(CDEFINES) | 
 | 113 |  | 
 | 114 | # Currently, for versions of gcc which support it, the kernel Makefile | 
 | 115 | # is disabling the maybe-uninitialized warning.  Re-enable it for the | 
 | 116 | # AUDIO driver.  Note that we must use EXTRA_CFLAGS here so that it | 
 | 117 | # will override the kernel settings. | 
 | 118 | ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y) | 
 | 119 | EXTRA_CFLAGS += -Wmaybe-uninitialized | 
 | 120 | endif | 
 | 121 | #EXTRA_CFLAGS += -Wmissing-prototypes | 
 | 122 |  | 
 | 123 | ifeq ($(call cc-option-yn, -Wheader-guard),y) | 
 | 124 | EXTRA_CFLAGS += -Wheader-guard | 
 | 125 | endif | 
 | 126 |  | 
 | 127 | # If the module name is not "wlan", then the define MULTI_IF_NAME to be the | 
 | 128 | # same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to | 
 | 129 | # any string that must be unique for all instances of the driver on the system. | 
 | 130 | # This allows multiple instances of the driver with different module names. | 
 | 131 | # If the module name is wlan, leave MULTI_IF_NAME undefined and the code will | 
 | 132 | # treat the driver as the primary driver. | 
 | 133 | ifneq ($(MODNAME), qdsp6v2) | 
 | 134 | CHIP_NAME ?= $(MODNAME) | 
 | 135 | CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\" | 
 | 136 | endif | 
 | 137 |  | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 138 | ifeq ($(KERNEL_BUILD), 0) | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 139 | KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/ipc/Module.symvers | 
| Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame^] | 140 | endif | 
 | 141 |  | 
 | 142 | ifeq ($(KERNEL_BUILD), 1) | 
 | 143 | 	obj-y += codecs/ | 
 | 144 | endif | 
| Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 145 |  | 
 | 146 | obj-$(CONFIG_SND_SOC_MSM_QDSP6V2_INTF) += q6_dlkm.o | 
 | 147 | q6_dlkm-y := $(Q6_OBJS) | 
 | 148 |  | 
 | 149 | obj-$(CONFIG_MSM_ULTRASOUND) += usf_dlkm.o | 
 | 150 | usf_dlkm-y := $(USF_OBJS) | 
 | 151 |  | 
 | 152 | obj-$(CONFIG_MSM_ADSP_LOADER) += adsp_loader_dlkm.o | 
 | 153 | adsp_loader_dlkm-y := $(ADSP_LOADER_OBJS) | 
 | 154 |  | 
 | 155 | obj-$(CONFIG_MSM_QDSP6_NOTIFIER) += q6_notifier_dlkm.o | 
 | 156 | q6_notifier_dlkm-y := $(QDSP6_NOTIFIER_OBJS) | 
 | 157 |  | 
 | 158 | obj-$(CONFIG_MSM_QDSP6_PDR) += q6_pdr_dlkm.o | 
 | 159 | q6_pdr_dlkm-y := $(QDSP6_PDR_OBJS) | 
 | 160 |  | 
 | 161 | # inject some build related information | 
 | 162 | DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\" |