blob: 92760fb0cd2f46746b302b0d564357064aec62cc [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
19
20KDIR := $(TOP)/kernel/msm-$(TARGET_KERNEL_VERSION)
21
22ifeq ($(KERNEL_BUILD), 1)
23 AUDIO_ROOT := $(KDIR)/techpack/audio
24endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053025
26ifeq ($(KERNEL_BUILD), 0)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053027 ifeq ($(CONFIG_ARCH_SDM845), y)
28 include $(AUDIO_ROOT)/config/sdm845auto.conf
29 export
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053030 INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053031 endif
32 ifeq ($(CONFIG_ARCH_SDM670), y)
33 include $(AUDIO_ROOT)/config/sdm670auto.conf
34 export
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053035 INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053036 endif
37endif
38
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053039# As per target team, build is done as follows:
40# Defconfig : build with default flags
41# Slub : defconfig + CONFIG_SLUB_DEBUG := y +
42# CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
43# Perf : Using appropriate msmXXXX-perf_defconfig
44#
45# Shipment builds (user variants) should not have any debug feature
46# enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
47# are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
48# there is no other way to identify defconfig builds, QTI internal
49# representation of perf builds (identified using the string 'perf'),
50# is used to identify if the build is a slub or defconfig one. This
51# way no critical debug feature will be enabled for perf and shipment
52# builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
53# config.
54
55############ UAPI ############
56UAPI_DIR := uapi
57UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
58
59############ COMMON ############
60COMMON_DIR := include
61COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
62
63############ IPC ############
64
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053065ifdef CONFIG_MSM_QDSP6_APRV2_GLINK
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053066APRV_GLINK += apr.o
67APRV_GLINK += apr_v2.o
68APRV_GLINK += apr_tal_glink.o
69endif
70
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053071ifdef CONFIG_MSM_QDSP6_APRV3_GLINK
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053072APRV_GLINK += apr.o
73APRV_GLINK += apr_v3.o
74APRV_GLINK += apr_tal_glink.o
75endif
76
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053077ifdef CONFIG_WCD_DSP_GLINK
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053078WDSP_GLINK += wcd-dsp-glink.o
79endif
80
81LINUX_INC += -Iinclude/linux
82
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053083INCS += $(COMMON_INC) \
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053084 $(UAPI_INC)
85
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053086EXTRA_CFLAGS += $(INCS)
87
88
89CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
90 -DANI_LITTLE_BIT_ENDIAN \
91 -DDOT11F_LITTLE_ENDIAN_HOST \
92 -DANI_COMPILER_TYPE_GCC \
93 -DANI_OS_TYPE_ANDROID=6 \
94 -DPTT_SOCK_SVC_ENABLE \
95 -Wall\
96 -Werror\
97 -D__linux__
98
99KBUILD_CPPFLAGS += $(CDEFINES)
100
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530101ifeq ($(KERNEL_BUILD), 0)
102
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530103HEADER_INSTALL_DIR := $(TOP)/kernel/msm-$(TARGET_KERNEL_VERSION)/scripts
104UAPI_OUT := $(OUT)/obj/vendor/qcom/opensource/audio-kernel/include
105$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ avtimer.h;)
106$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio.h;)
107$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_aac.h;)
108$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_ac3.h;)
109$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_alac.h;)
110$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrnb.h;)
111$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrwb.h;)
112$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrwbplus.h;)
113$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_ape.h;)
114$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_calibration.h;)
115$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_g711_dec.h;)
116$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_g711.h;)
117$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_mvs.h;)
118$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_qcp.h;)
119$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_sbc.h;)
120$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_voicememo.h;)
121$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_wma.h;)
122$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_wmapro.h;)
123
124$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ audio_effects.h;)
125$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ audio_slimslave.h;)
126$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ devdep_params.h;)
127$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ lsm_params.h;)
128$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ msmcal-hwdep.h;)
129$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ voice_params.h;)
130$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ wcd-dsp-glink.h;)
131
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530132KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
133
134endif
135
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530136# Currently, for versions of gcc which support it, the kernel Makefile
137# is disabling the maybe-uninitialized warning. Re-enable it for the
138# AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
139# will override the kernel settings.
140ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
141EXTRA_CFLAGS += -Wmaybe-uninitialized
142endif
143#EXTRA_CFLAGS += -Wmissing-prototypes
144
145ifeq ($(call cc-option-yn, -Wheader-guard),y)
146EXTRA_CFLAGS += -Wheader-guard
147endif
148# If the module name is not "wlan", then the define MULTI_IF_NAME to be the
149# same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
150# any string that must be unique for all instances of the driver on the system.
151# This allows multiple instances of the driver with different module names.
152# If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
153# treat the driver as the primary driver.
154ifneq ($(MODNAME), qdsp6v2)
155CHIP_NAME ?= $(MODNAME)
156CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
157endif
158
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530159# Module information used by KBuild framework
160obj-$(CONFIG_MSM_QDSP6_APRV2_GLINK) += apr_dlkm.o
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530161obj-$(CONFIG_MSM_QDSP6_APRV3_GLINK) += apr_dlkm.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530162apr_dlkm-y := $(APRV_GLINK)
163
164obj-$(CONFIG_WCD_DSP_GLINK) += wglink_dlkm.o
165wglink_dlkm-y := $(WDSP_GLINK)
166
167# inject some build related information
168CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"