blob: 1a810e11346992cfaecfb9fafd5b2face93e6cea [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
Piyush Balwanif9d9d1e2018-11-30 19:13:42 +053012 AUDIO_BLD_DIR := $(shell pwd)/kernel/msm-4.9
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053013 AUDIO_ROOT := $(AUDIO_BLD_DIR)/techpack/audio
14endif
15
16ifeq ($(KERNEL_BUILD), 0)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053017 ifeq ($(CONFIG_ARCH_SDM845), y)
18 include $(AUDIO_ROOT)/config/sdm845auto.conf
19 export
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053020 INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053021 endif
22 ifeq ($(CONFIG_ARCH_SDM670), y)
Aditya Bavanari68d3ed82018-04-08 14:34:47 +053023 include $(AUDIO_ROOT)/config/sdm710auto.conf
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053024 export
Aditya Bavanari68d3ed82018-04-08 14:34:47 +053025 INCS += -include $(AUDIO_ROOT)/config/sdm710autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053026 endif
Laxminath Kasam942d1c62017-12-29 11:02:22 +053027 ifeq ($(CONFIG_ARCH_SDM450), y)
Soumya Managolieaff6622018-02-23 12:00:54 +053028 include $(AUDIO_ROOT)/config/sdm450auto.conf
Laxminath Kasam942d1c62017-12-29 11:02:22 +053029 export
Soumya Managolieaff6622018-02-23 12:00:54 +053030 INCS += -include $(AUDIO_ROOT)/config/sdm450autoconf.h
Laxminath Kasam942d1c62017-12-29 11:02:22 +053031 endif
Vaishnavi Kommaraju59562a12018-04-25 19:33:46 +053032 ifeq ($(CONFIG_ARCH_SDM439), y)
33 include $(AUDIO_ROOT)/config/sdm450auto.conf
34 export
35 INCS += -include $(AUDIO_ROOT)/config/sdm450autoconf.h
36 endif
Sundara Vinayagam39838332018-05-23 12:04:25 +053037 ifeq ($(CONFIG_ARCH_MSM8909), y)
38 include $(AUDIO_ROOT)/config/msm8909auto.conf
39 export
40 INCS += -include $(AUDIO_ROOT)/config/msm8909autoconf.h
41 endif
Soumya Managolid63fb8e2018-05-08 17:28:01 +053042 ifeq ($(CONFIG_ARCH_MSM8917), y)
43 include $(AUDIO_ROOT)/config/sdm450auto.conf
44 export
45 INCS += -include $(AUDIO_ROOT)/config/sdm450autoconf.h
46 endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053047endif
48
49
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053050
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053051# As per target team, build is done as follows:
52# Defconfig : build with default flags
53# Slub : defconfig + CONFIG_SLUB_DEBUG := y +
54# CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
55# Perf : Using appropriate msmXXXX-perf_defconfig
56#
57# Shipment builds (user variants) should not have any debug feature
58# enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
59# are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
60# there is no other way to identify defconfig builds, QTI internal
61# representation of perf builds (identified using the string 'perf'),
62# is used to identify if the build is a slub or defconfig one. This
63# way no critical debug feature will be enabled for perf and shipment
64# builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
65# config.
66
67############ UAPI ############
68UAPI_DIR := uapi
69UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
70
71############ COMMON ############
72COMMON_DIR := include
73COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
74
75############ QDSP6V2 ############
76
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053077ifdef CONFIG_SND_SOC_MSM_QDSP6V2_INTF
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053078 Q6_OBJS += audio_calibration.o
79 Q6_OBJS += audio_cal_utils.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053080 Q6_OBJS += q6adm.o
81 Q6_OBJS += q6afe.o
82 Q6_OBJS += q6asm.o
83 Q6_OBJS += q6audio-v2.o
84 Q6_OBJS += q6voice.o
85 Q6_OBJS += q6core.o
86 Q6_OBJS += rtac.o
87 Q6_OBJS += q6lsm.o
88 Q6_OBJS += audio_slimslave.o
89 Q6_OBJS += adsp_err.o
90 Q6_OBJS += msm_audio_ion.o
91 Q6_OBJS += avtimer.o
92 Q6_OBJS += q6_init.o
93endif
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053094ifdef CONFIG_DTS_SRS_TM
95 Q6_OBJS += msm-dts-srs-tm-config.o
96endif
97
98ifdef CONFIG_MSM_ADSP_LOADER
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053099ADSP_LOADER_OBJS += adsp-loader.o
100endif
101
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530102ifdef CONFIG_MSM_QDSP6_NOTIFIER
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530103QDSP6_NOTIFIER_OBJS += audio_notifier.o audio_ssr.o
104endif
105
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530106ifdef CONFIG_MSM_QDSP6_PDR
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530107QDSP6_PDR_OBJS += audio_pdr.o
108endif
109
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530110ifdef CONFIG_MSM_ULTRASOUND
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530111USF_OBJS += usf.o usfcdev.o q6usm.o
112endif
113
114LINUX_INC += -Iinclude/linux
115
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530116INCS += $(COMMON_INC) \
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530117 $(UAPI_INC)
118
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530119EXTRA_CFLAGS += $(INCS)
120
121
122CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
123 -DANI_LITTLE_BIT_ENDIAN \
124 -DDOT11F_LITTLE_ENDIAN_HOST \
125 -DANI_COMPILER_TYPE_GCC \
126 -DANI_OS_TYPE_ANDROID=6 \
127 -DPTT_SOCK_SVC_ENABLE \
128 -Wall\
129 -Werror\
130 -D__linux__
131
132KBUILD_CPPFLAGS += $(CDEFINES)
133
134# Currently, for versions of gcc which support it, the kernel Makefile
135# is disabling the maybe-uninitialized warning. Re-enable it for the
136# AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
137# will override the kernel settings.
138ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
139EXTRA_CFLAGS += -Wmaybe-uninitialized
140endif
141#EXTRA_CFLAGS += -Wmissing-prototypes
142
143ifeq ($(call cc-option-yn, -Wheader-guard),y)
144EXTRA_CFLAGS += -Wheader-guard
145endif
146
147# If the module name is not "wlan", then the define MULTI_IF_NAME to be the
148# same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
149# any string that must be unique for all instances of the driver on the system.
150# This allows multiple instances of the driver with different module names.
151# If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
152# treat the driver as the primary driver.
153ifneq ($(MODNAME), qdsp6v2)
154CHIP_NAME ?= $(MODNAME)
155CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
156endif
157
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530158ifeq ($(KERNEL_BUILD), 0)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530159KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/ipc/Module.symvers
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530160endif
161
162ifeq ($(KERNEL_BUILD), 1)
163 obj-y += codecs/
164endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530165
166obj-$(CONFIG_SND_SOC_MSM_QDSP6V2_INTF) += q6_dlkm.o
167q6_dlkm-y := $(Q6_OBJS)
168
169obj-$(CONFIG_MSM_ULTRASOUND) += usf_dlkm.o
170usf_dlkm-y := $(USF_OBJS)
171
172obj-$(CONFIG_MSM_ADSP_LOADER) += adsp_loader_dlkm.o
173adsp_loader_dlkm-y := $(ADSP_LOADER_OBJS)
174
175obj-$(CONFIG_MSM_QDSP6_NOTIFIER) += q6_notifier_dlkm.o
176q6_notifier_dlkm-y := $(QDSP6_NOTIFIER_OBJS)
177
178obj-$(CONFIG_MSM_QDSP6_PDR) += q6_pdr_dlkm.o
179q6_pdr_dlkm-y := $(QDSP6_PDR_OBJS)
180
181# inject some build related information
182DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"