blob: 1fd41f78918a01c438988ca3a67398f96721f422 [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 +05309TARGET_KERNEL_VERSION := 4.9
10
11# These are configurable via Kconfig for kernel-based builds
12# Need to explicitly configure for Android-based builds
13ifeq ($(CONFIG_ARCH_SDM845), y)
14 TARGET_KERNEL_VERSION := 4.9
15endif
16ifeq ($(CONFIG_ARCH_SDM670), y)
17 TARGET_KERNEL_VERSION := 4.9
18endif
Meng Wang5fddb8d2018-01-23 16:56:56 +080019ifeq ($(CONFIG_ARCH_SDM855), y)
20 TARGET_KERNEL_VERSION := 4.14
21endif
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053022
23KDIR := $(TOP)/kernel/msm-$(TARGET_KERNEL_VERSION)
24
25ifeq ($(KERNEL_BUILD), 1)
26 AUDIO_ROOT := $(KDIR)/techpack/audio
27endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053028
29ifeq ($(KERNEL_BUILD), 0)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053030 ifeq ($(CONFIG_ARCH_SDM845), y)
31 include $(AUDIO_ROOT)/config/sdm845auto.conf
32 export
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053033 INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053034 endif
35 ifeq ($(CONFIG_ARCH_SDM670), y)
36 include $(AUDIO_ROOT)/config/sdm670auto.conf
37 export
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053038 INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053039 endif
Laxminath Kasam942d1c62017-12-29 11:02:22 +053040 ifeq ($(CONFIG_ARCH_SDM450), y)
41 include $(AUDIO_ROOT)/config/sdm670auto.conf
42 export
43 INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
44 endif
Meng Wang5fddb8d2018-01-23 16:56:56 +080045 ifeq ($(CONFIG_ARCH_SDM855), y)
46 include $(AUDIO_ROOT)/config/sdm855auto.conf
47 export
48 INCS += -include $(AUDIO_ROOT)/config/sdm855autoconf.h
49 endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053050endif
51
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053052# As per target team, build is done as follows:
53# Defconfig : build with default flags
54# Slub : defconfig + CONFIG_SLUB_DEBUG := y +
55# CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
56# Perf : Using appropriate msmXXXX-perf_defconfig
57#
58# Shipment builds (user variants) should not have any debug feature
59# enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
60# are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
61# there is no other way to identify defconfig builds, QTI internal
62# representation of perf builds (identified using the string 'perf'),
63# is used to identify if the build is a slub or defconfig one. This
64# way no critical debug feature will be enabled for perf and shipment
65# builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
66# config.
67
68############ UAPI ############
69UAPI_DIR := uapi
70UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
71
72############ COMMON ############
73COMMON_DIR := include
74COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
75
76############ IPC ############
77
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053078ifdef CONFIG_MSM_QDSP6_APRV2_GLINK
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053079APRV_GLINK += apr.o
80APRV_GLINK += apr_v2.o
81APRV_GLINK += apr_tal_glink.o
82endif
83
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053084ifdef CONFIG_MSM_QDSP6_APRV3_GLINK
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053085APRV_GLINK += apr.o
86APRV_GLINK += apr_v3.o
87APRV_GLINK += apr_tal_glink.o
88endif
89
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053090ifdef CONFIG_WCD_DSP_GLINK
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053091WDSP_GLINK += wcd-dsp-glink.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
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530114ifeq ($(KERNEL_BUILD), 0)
115
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530116HEADER_INSTALL_DIR := $(TOP)/kernel/msm-$(TARGET_KERNEL_VERSION)/scripts
Meng Wang5fddb8d2018-01-23 16:56:56 +0800117UAPI_OUT := $(PRODUCT_OUT)/obj/vendor/qcom/opensource/audio-kernel/include
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530118$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ avtimer.h;)
119$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio.h;)
120$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_aac.h;)
121$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_ac3.h;)
122$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_alac.h;)
123$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrnb.h;)
124$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrwb.h;)
125$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrwbplus.h;)
126$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_ape.h;)
127$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_calibration.h;)
128$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_g711_dec.h;)
129$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_g711.h;)
130$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_mvs.h;)
131$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_qcp.h;)
132$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_sbc.h;)
133$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_voicememo.h;)
134$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_wma.h;)
135$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_wmapro.h;)
136
137$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ audio_effects.h;)
138$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ audio_slimslave.h;)
139$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ devdep_params.h;)
140$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ lsm_params.h;)
141$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ msmcal-hwdep.h;)
142$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ voice_params.h;)
143$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ wcd-dsp-glink.h;)
144
Meng Wang5fddb8d2018-01-23 16:56:56 +0800145KBUILD_EXTRA_SYMBOLS +=$(PRODUCT_OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530146
147endif
148
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530149# Currently, for versions of gcc which support it, the kernel Makefile
150# is disabling the maybe-uninitialized warning. Re-enable it for the
151# AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
152# will override the kernel settings.
153ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
154EXTRA_CFLAGS += -Wmaybe-uninitialized
155endif
156#EXTRA_CFLAGS += -Wmissing-prototypes
157
158ifeq ($(call cc-option-yn, -Wheader-guard),y)
159EXTRA_CFLAGS += -Wheader-guard
160endif
161# If the module name is not "wlan", then the define MULTI_IF_NAME to be the
162# same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
163# any string that must be unique for all instances of the driver on the system.
164# This allows multiple instances of the driver with different module names.
165# If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
166# treat the driver as the primary driver.
167ifneq ($(MODNAME), qdsp6v2)
168CHIP_NAME ?= $(MODNAME)
169CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
170endif
171
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530172# Module information used by KBuild framework
173obj-$(CONFIG_MSM_QDSP6_APRV2_GLINK) += apr_dlkm.o
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530174obj-$(CONFIG_MSM_QDSP6_APRV3_GLINK) += apr_dlkm.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530175apr_dlkm-y := $(APRV_GLINK)
176
177obj-$(CONFIG_WCD_DSP_GLINK) += wglink_dlkm.o
178wglink_dlkm-y := $(WDSP_GLINK)
179
180# inject some build related information
181CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"