blob: 306a25a126044d2559fa16f26bbd45b4a6f3108a [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)
23 include $(AUDIO_ROOT)/config/sdm670auto.conf
24 export
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053025 INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053026 endif
27endif
28
29
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053030
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053031# 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 ############
48UAPI_DIR := uapi
49UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
50
51############ COMMON ############
52COMMON_DIR := include
53COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
54
55############ QDSP6V2 ############
56
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053057ifdef CONFIG_SND_SOC_MSM_QDSP6V2_INTF
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053058 Q6_OBJS += audio_calibration.o
59 Q6_OBJS += audio_cal_utils.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053060 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
73endif
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053074ifdef CONFIG_DTS_SRS_TM
75 Q6_OBJS += msm-dts-srs-tm-config.o
76endif
77
78ifdef CONFIG_MSM_ADSP_LOADER
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053079ADSP_LOADER_OBJS += adsp-loader.o
80endif
81
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053082ifdef CONFIG_MSM_QDSP6_NOTIFIER
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053083QDSP6_NOTIFIER_OBJS += audio_notifier.o audio_ssr.o
84endif
85
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053086ifdef CONFIG_MSM_QDSP6_PDR
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053087QDSP6_PDR_OBJS += audio_pdr.o
88endif
89
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053090ifdef CONFIG_MSM_ULTRASOUND
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053091USF_OBJS += usf.o usfcdev.o q6usm.o
92endif
93
94LINUX_INC += -Iinclude/linux
95
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053096INCS += $(COMMON_INC) \
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053097 $(UAPI_INC)
98
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053099EXTRA_CFLAGS += $(INCS)
100
101
102CDEFINES += -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
112KBUILD_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.
118ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
119EXTRA_CFLAGS += -Wmaybe-uninitialized
120endif
121#EXTRA_CFLAGS += -Wmissing-prototypes
122
123ifeq ($(call cc-option-yn, -Wheader-guard),y)
124EXTRA_CFLAGS += -Wheader-guard
125endif
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.
133ifneq ($(MODNAME), qdsp6v2)
134CHIP_NAME ?= $(MODNAME)
135CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
136endif
137
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530138ifeq ($(KERNEL_BUILD), 0)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530139KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/ipc/Module.symvers
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530140endif
141
142ifeq ($(KERNEL_BUILD), 1)
143 obj-y += codecs/
144endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530145
146obj-$(CONFIG_SND_SOC_MSM_QDSP6V2_INTF) += q6_dlkm.o
147q6_dlkm-y := $(Q6_OBJS)
148
149obj-$(CONFIG_MSM_ULTRASOUND) += usf_dlkm.o
150usf_dlkm-y := $(USF_OBJS)
151
152obj-$(CONFIG_MSM_ADSP_LOADER) += adsp_loader_dlkm.o
153adsp_loader_dlkm-y := $(ADSP_LOADER_OBJS)
154
155obj-$(CONFIG_MSM_QDSP6_NOTIFIER) += q6_notifier_dlkm.o
156q6_notifier_dlkm-y := $(QDSP6_NOTIFIER_OBJS)
157
158obj-$(CONFIG_MSM_QDSP6_PDR) += q6_pdr_dlkm.o
159q6_pdr_dlkm-y := $(QDSP6_PDR_OBJS)
160
161# inject some build related information
162DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"