blob: f6ff29c4a5e24e6c73130b7afca6e36e7fc5d3ad [file] [log] [blame]
Laxminath Kasam8b1366a2017-10-05 01:44:16 +05301# We can build either as part of a standalone Kernel build or as
2# an external module. Determine which mechanism is being used
Asish Bhattacharya5faacb32017-12-04 17:23:15 +05303ifeq ($(MODNAME), )
4 KERNEL_BUILD := 1
5else
6 KERNEL_BUILD := 0
7endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +05308
Asish Bhattacharya5faacb32017-12-04 17:23:15 +05309ifeq ($(KERNEL_BUILD), 1)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053010 # These are configurable via Kconfig for kernel-based builds
11 # Need to explicitly configure for Android-based builds
Meng Wang19fa6de2018-12-20 11:25:47 +080012 AUDIO_BLD_DIR := $(shell pwd)/kernel/msm-4.19
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053013 AUDIO_ROOT := $(AUDIO_BLD_DIR)/techpack/audio
14endif
15
16ifeq ($(KERNEL_BUILD), 0)
Salendarsingh Gaudad978892018-05-14 16:53:09 +053017 ifeq ($(CONFIG_ARCH_SM6150), y)
Rahul Sharmaf53de7f2019-03-03 22:30:47 +053018 ifdef CONFIG_SND_SOC_SA6155
19 include $(AUDIO_ROOT)/config/sa6155auto.conf
Rahul Sharmaf53de7f2019-03-03 22:30:47 +053020 INCS += -include $(AUDIO_ROOT)/config/sa6155autoconf.h
21 else
22 include $(AUDIO_ROOT)/config/sm6150auto.conf
Rahul Sharmaf53de7f2019-03-03 22:30:47 +053023 INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
24 endif
Abhishek Arpure6d74b702018-04-05 13:50:25 +053025 endif
Hari Veerubhotladcab67c2018-10-14 17:08:35 +053026 ifeq ($(CONFIG_ARCH_TRINKET), y)
27 include $(AUDIO_ROOT)/config/sm6150auto.conf
Hari Veerubhotladcab67c2018-10-14 17:08:35 +053028 INCS += -include $(AUDIO_ROOT)/config/sm6150autoconf.h
29 endif
Meng Wangb0e04792018-09-27 18:46:44 +080030 ifeq ($(CONFIG_ARCH_KONA), y)
31 include $(AUDIO_ROOT)/config/konaauto.conf
Meng Wangb0e04792018-09-27 18:46:44 +080032 INCS += -include $(AUDIO_ROOT)/config/konaautoconf.h
33 endif
Vatsal Buchad284ff12019-04-01 15:34:50 +053034 ifeq ($(CONFIG_ARCH_LITO), y)
35 include $(AUDIO_ROOT)/config/litoauto.conf
Vatsal Buchad284ff12019-04-01 15:34:50 +053036 INCS += -include $(AUDIO_ROOT)/config/litoautoconf.h
37 endif
Laxminath Kasamfdda2d82019-07-31 21:26:30 +053038 ifeq ($(CONFIG_ARCH_BENGAL), y)
Laxminath Kasam00f60ba2019-10-04 09:37:07 +053039 include $(AUDIO_ROOT)/config/bengalauto.conf
Laxminath Kasam00f60ba2019-10-04 09:37:07 +053040 INCS += -include $(AUDIO_ROOT)/config/bengalautoconf.h
Laxminath Kasamfdda2d82019-07-31 21:26:30 +053041 endif
Banajit Goswamif58e5fc2018-04-11 14:10:09 -070042 ifeq ($(CONFIG_ARCH_SM8150), y)
Cong Tang1fa4e042018-12-17 19:45:55 +080043 ifdef CONFIG_SND_SOC_SA8155
44 include $(AUDIO_ROOT)/config/sa8155auto.conf
Cong Tang1fa4e042018-12-17 19:45:55 +080045 INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
46 else
47 include $(AUDIO_ROOT)/config/sm8150auto.conf
Cong Tang1fa4e042018-12-17 19:45:55 +080048 INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
49 endif
Meng Wang5fddb8d2018-01-23 16:56:56 +080050 endif
Sudheer Papothie3842cf2018-03-31 02:27:42 +053051 ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
Derek Chen583e3bf2019-04-15 18:01:45 -070052 ifdef CONFIG_SND_SOC_SA8155
53 include $(AUDIO_ROOT)/config/sa8155auto.conf
Derek Chen583e3bf2019-04-15 18:01:45 -070054 INCS += -include $(AUDIO_ROOT)/config/sa8155autoconf.h
55 else
56 include $(AUDIO_ROOT)/config/sm8150auto.conf
Derek Chen583e3bf2019-04-15 18:01:45 -070057 INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
58 endif
Sudheer Papothie3842cf2018-03-31 02:27:42 +053059 endif
Mangesh Kunchamwar0bf1f572018-05-24 19:58:42 +053060 ifeq ($(CONFIG_ARCH_QCS405), y)
61 include $(AUDIO_ROOT)/config/qcs405auto.conf
Mangesh Kunchamwar0bf1f572018-05-24 19:58:42 +053062 INCS += -include $(AUDIO_ROOT)/config/qcs405autoconf.h
63 endif
Timothy Sham49cbca02019-02-16 02:33:47 -050064 ifeq ($(CONFIG_QTI_GVM), y)
65 include $(AUDIO_ROOT)/config/gvmauto.conf
Timothy Sham49cbca02019-02-16 02:33:47 -050066 INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
67 endif
Soumya Managolia620a952020-06-11 12:14:46 +053068 ifeq ($(CONFIG_ARCH_SDM660), y)
69 include $(AUDIO_ROOT)/config/sdm660auto.conf
Soumya Managolia620a952020-06-11 12:14:46 +053070 INCS += -include $(AUDIO_ROOT)/config/sdm660autoconf.h
71 endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053072endif
73
74
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053075
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053076# As per target team, build is done as follows:
77# Defconfig : build with default flags
78# Slub : defconfig + CONFIG_SLUB_DEBUG := y +
79# CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
80# Perf : Using appropriate msmXXXX-perf_defconfig
81#
82# Shipment builds (user variants) should not have any debug feature
83# enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
84# are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
85# there is no other way to identify defconfig builds, QTI internal
86# representation of perf builds (identified using the string 'perf'),
87# is used to identify if the build is a slub or defconfig one. This
88# way no critical debug feature will be enabled for perf and shipment
89# builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
90# config.
91
92############ UAPI ############
93UAPI_DIR := uapi
94UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
95
96############ COMMON ############
97COMMON_DIR := include
98COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
99
100############ QDSP6V2 ############
101
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530102ifdef CONFIG_SND_SOC_MSM_QDSP6V2_INTF
Vidyakumar Athotaf1cba4d2018-03-01 13:38:39 -0800103 Q6_OBJS += msm-audio-event-notify.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530104 Q6_OBJS += audio_calibration.o
105 Q6_OBJS += audio_cal_utils.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530106 Q6_OBJS += q6adm.o
107 Q6_OBJS += q6afe.o
108 Q6_OBJS += q6asm.o
109 Q6_OBJS += q6audio-v2.o
110 Q6_OBJS += q6voice.o
111 Q6_OBJS += q6core.o
Vignesh Kulothungan5c109922018-01-24 17:36:18 -0800112 Q6_OBJS += q6common.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530113 Q6_OBJS += rtac.o
114 Q6_OBJS += q6lsm.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530115 Q6_OBJS += adsp_err.o
116 Q6_OBJS += msm_audio_ion.o
117 Q6_OBJS += avtimer.o
118 Q6_OBJS += q6_init.o
119endif
Laxminath Kasam36384ec2019-02-18 21:57:19 +0530120
Timothy Sham49cbca02019-02-16 02:33:47 -0500121ifdef CONFIG_SND_SOC_MSM_QDSP6V2_VM
122 Q6_OBJS += msm-audio-event-notify.o
123 Q6_OBJS += audio_calibration.o
124 Q6_OBJS += audio_cal_utils.o
125 Q6_OBJS += q6adm.o
126 Q6_OBJS += q6afe.o
127 Q6_OBJS += q6asm.o
128 Q6_OBJS += q6audio-v2.o
129 Q6_OBJS += q6voice.o
130 Q6_OBJS += q6core.o
131 Q6_OBJS += q6common.o
132 Q6_OBJS += rtac.o
133 Q6_OBJS += q6lsm.o
134 Q6_OBJS += adsp_err.o
135 Q6_OBJS += msm_audio_ion_vm.o
136 Q6_OBJS += avtimer.o
137 Q6_OBJS += q6_init.o
138endif
139
Laxminath Kasam36384ec2019-02-18 21:57:19 +0530140ifdef CONFIG_XT_LOGGING
141 Q6_OBJS += sp_params.o
142endif
143
Meng Wangb0e04792018-09-27 18:46:44 +0800144ifdef CONFIG_WCD9XXX_CODEC_CORE
145 Q6_OBJS += audio_slimslave.o
146endif
Laxminath Kasam36384ec2019-02-18 21:57:19 +0530147
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530148ifdef CONFIG_DTS_SRS_TM
149 Q6_OBJS += msm-dts-srs-tm-config.o
150endif
151
Mangesh Kunchamwar4e1e7182018-04-26 17:58:58 +0530152ifdef CONFIG_AFE_HWDEP
153 Q6_OBJS += q6afecal-hwdep.o
154endif
155
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530156ifdef CONFIG_MSM_ADSP_LOADER
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530157ADSP_LOADER_OBJS += adsp-loader.o
158endif
159
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530160ifdef CONFIG_MSM_QDSP6_PDR
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530161QDSP6_PDR_OBJS += audio_pdr.o
162endif
163
Sudheer Papothi8d34b2e2018-05-23 06:34:36 +0530164ifdef CONFIG_MSM_QDSP6_NOTIFIER
165QDSP6_NOTIFIER_OBJS += audio_notifier.o audio_ssr.o
166endif
167
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530168ifdef CONFIG_MSM_ULTRASOUND
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530169USF_OBJS += usf.o usfcdev.o q6usm.o
170endif
171
Aditya Bavanari542582c2018-06-26 18:41:06 +0530172ifdef CONFIG_MSM_MDF
173 Q6_OBJS += msm_mdf.o
174endif
175
Vikram Pandurangae2db2052018-12-12 14:38:28 -0800176ifdef CONFIG_VOICE_MHI
177 Q6_OBJS += voice_mhi.o
178endif
179
Aditya Bavanaribb981b72020-03-19 18:30:10 +0530180ifdef CONFIG_DIGITAL_CDC_RSC_MGR
181 Q6_OBJS += digital-cdc-rsc-mgr.o
182endif
183
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530184LINUX_INC += -Iinclude/linux
185
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530186INCS += $(COMMON_INC) \
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530187 $(UAPI_INC)
188
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530189EXTRA_CFLAGS += $(INCS)
190
191
192CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
193 -DANI_LITTLE_BIT_ENDIAN \
194 -DDOT11F_LITTLE_ENDIAN_HOST \
195 -DANI_COMPILER_TYPE_GCC \
196 -DANI_OS_TYPE_ANDROID=6 \
197 -DPTT_SOCK_SVC_ENABLE \
198 -Wall\
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530199 -D__linux__
200
201KBUILD_CPPFLAGS += $(CDEFINES)
202
203# Currently, for versions of gcc which support it, the kernel Makefile
204# is disabling the maybe-uninitialized warning. Re-enable it for the
205# AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
206# will override the kernel settings.
207ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
208EXTRA_CFLAGS += -Wmaybe-uninitialized
209endif
210#EXTRA_CFLAGS += -Wmissing-prototypes
211
212ifeq ($(call cc-option-yn, -Wheader-guard),y)
213EXTRA_CFLAGS += -Wheader-guard
214endif
215
216# If the module name is not "wlan", then the define MULTI_IF_NAME to be the
217# same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
218# any string that must be unique for all instances of the driver on the system.
219# This allows multiple instances of the driver with different module names.
220# If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
221# treat the driver as the primary driver.
222ifneq ($(MODNAME), qdsp6v2)
223CHIP_NAME ?= $(MODNAME)
224CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
225endif
226
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530227ifeq ($(KERNEL_BUILD), 0)
Meng Wange61ddb02018-03-07 11:18:35 +0800228KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/ipc/Module.symvers
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530229endif
230
231ifeq ($(KERNEL_BUILD), 1)
232 obj-y += codecs/
233endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530234
235obj-$(CONFIG_SND_SOC_MSM_QDSP6V2_INTF) += q6_dlkm.o
236q6_dlkm-y := $(Q6_OBJS)
237
Timothy Sham49cbca02019-02-16 02:33:47 -0500238obj-$(CONFIG_SND_SOC_MSM_QDSP6V2_VM) += q6_dlkm.o
239q6_dlkm-y := $(Q6_OBJS)
240
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530241obj-$(CONFIG_MSM_ULTRASOUND) += usf_dlkm.o
242usf_dlkm-y := $(USF_OBJS)
243
244obj-$(CONFIG_MSM_ADSP_LOADER) += adsp_loader_dlkm.o
245adsp_loader_dlkm-y := $(ADSP_LOADER_OBJS)
246
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530247obj-$(CONFIG_MSM_QDSP6_PDR) += q6_pdr_dlkm.o
248q6_pdr_dlkm-y := $(QDSP6_PDR_OBJS)
249
Sudheer Papothi8d34b2e2018-05-23 06:34:36 +0530250obj-$(CONFIG_MSM_QDSP6_NOTIFIER) += q6_notifier_dlkm.o
251q6_notifier_dlkm-y := $(QDSP6_NOTIFIER_OBJS)