blob: 663aff5f33c18aaf94bbc459f84aaaa2f58833ba [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
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053012 AUDIO_BLD_DIR := $(ANDROID_BUILD_TOP)/kernel/msm-4.9
13 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
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053037endif
38
39
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053040
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053041# As per target team, build is done as follows:
42# Defconfig : build with default flags
43# Slub : defconfig + CONFIG_SLUB_DEBUG := y +
44# CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
45# Perf : Using appropriate msmXXXX-perf_defconfig
46#
47# Shipment builds (user variants) should not have any debug feature
48# enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
49# are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
50# there is no other way to identify defconfig builds, QTI internal
51# representation of perf builds (identified using the string 'perf'),
52# is used to identify if the build is a slub or defconfig one. This
53# way no critical debug feature will be enabled for perf and shipment
54# builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
55# config.
56
57############ UAPI ############
58UAPI_DIR := uapi
59UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
60
61############ COMMON ############
62COMMON_DIR := include
63COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
64
65############ QDSP6V2 ############
66
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053067ifdef CONFIG_SND_SOC_MSM_QDSP6V2_INTF
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053068 Q6_OBJS += audio_calibration.o
69 Q6_OBJS += audio_cal_utils.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053070 Q6_OBJS += q6adm.o
71 Q6_OBJS += q6afe.o
72 Q6_OBJS += q6asm.o
73 Q6_OBJS += q6audio-v2.o
74 Q6_OBJS += q6voice.o
75 Q6_OBJS += q6core.o
76 Q6_OBJS += rtac.o
77 Q6_OBJS += q6lsm.o
78 Q6_OBJS += audio_slimslave.o
79 Q6_OBJS += adsp_err.o
80 Q6_OBJS += msm_audio_ion.o
81 Q6_OBJS += avtimer.o
82 Q6_OBJS += q6_init.o
83endif
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053084ifdef CONFIG_DTS_SRS_TM
85 Q6_OBJS += msm-dts-srs-tm-config.o
86endif
87
88ifdef CONFIG_MSM_ADSP_LOADER
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053089ADSP_LOADER_OBJS += adsp-loader.o
90endif
91
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053092ifdef CONFIG_MSM_QDSP6_NOTIFIER
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053093QDSP6_NOTIFIER_OBJS += audio_notifier.o audio_ssr.o
94endif
95
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053096ifdef CONFIG_MSM_QDSP6_PDR
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053097QDSP6_PDR_OBJS += audio_pdr.o
98endif
99
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530100ifdef CONFIG_MSM_ULTRASOUND
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530101USF_OBJS += usf.o usfcdev.o q6usm.o
102endif
103
104LINUX_INC += -Iinclude/linux
105
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530106INCS += $(COMMON_INC) \
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530107 $(UAPI_INC)
108
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530109EXTRA_CFLAGS += $(INCS)
110
111
112CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
113 -DANI_LITTLE_BIT_ENDIAN \
114 -DDOT11F_LITTLE_ENDIAN_HOST \
115 -DANI_COMPILER_TYPE_GCC \
116 -DANI_OS_TYPE_ANDROID=6 \
117 -DPTT_SOCK_SVC_ENABLE \
118 -Wall\
119 -Werror\
120 -D__linux__
121
122KBUILD_CPPFLAGS += $(CDEFINES)
123
124# Currently, for versions of gcc which support it, the kernel Makefile
125# is disabling the maybe-uninitialized warning. Re-enable it for the
126# AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
127# will override the kernel settings.
128ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
129EXTRA_CFLAGS += -Wmaybe-uninitialized
130endif
131#EXTRA_CFLAGS += -Wmissing-prototypes
132
133ifeq ($(call cc-option-yn, -Wheader-guard),y)
134EXTRA_CFLAGS += -Wheader-guard
135endif
136
137# If the module name is not "wlan", then the define MULTI_IF_NAME to be the
138# same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
139# any string that must be unique for all instances of the driver on the system.
140# This allows multiple instances of the driver with different module names.
141# If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
142# treat the driver as the primary driver.
143ifneq ($(MODNAME), qdsp6v2)
144CHIP_NAME ?= $(MODNAME)
145CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
146endif
147
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530148ifeq ($(KERNEL_BUILD), 0)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530149KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/ipc/Module.symvers
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530150endif
151
152ifeq ($(KERNEL_BUILD), 1)
153 obj-y += codecs/
154endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530155
156obj-$(CONFIG_SND_SOC_MSM_QDSP6V2_INTF) += q6_dlkm.o
157q6_dlkm-y := $(Q6_OBJS)
158
159obj-$(CONFIG_MSM_ULTRASOUND) += usf_dlkm.o
160usf_dlkm-y := $(USF_OBJS)
161
162obj-$(CONFIG_MSM_ADSP_LOADER) += adsp_loader_dlkm.o
163adsp_loader_dlkm-y := $(ADSP_LOADER_OBJS)
164
165obj-$(CONFIG_MSM_QDSP6_NOTIFIER) += q6_notifier_dlkm.o
166q6_notifier_dlkm-y := $(QDSP6_NOTIFIER_OBJS)
167
168obj-$(CONFIG_MSM_QDSP6_PDR) += q6_pdr_dlkm.o
169q6_pdr_dlkm-y := $(QDSP6_PDR_OBJS)
170
171# inject some build related information
172DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"