blob: 860119f383665fe3a62d0caad75be4782e85534f [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
Soumya Managolieaff6622018-02-23 12:00:54 +053019ifeq ($(CONFIG_ARCH_SDM450), y)
20 TARGET_KERNEL_VERSION := 4.9
21endif
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053022KDIR := $(TOP)/kernel/msm-$(TARGET_KERNEL_VERSION)
23
24ifeq ($(KERNEL_BUILD), 1)
25 AUDIO_ROOT := $(KDIR)/techpack/audio
26endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053027
28ifeq ($(KERNEL_BUILD), 0)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053029 ifeq ($(CONFIG_ARCH_SDM845), y)
30 include $(AUDIO_ROOT)/config/sdm845auto.conf
31 export
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053032 INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053033 endif
34 ifeq ($(CONFIG_ARCH_SDM670), y)
Aditya Bavanari68d3ed82018-04-08 14:34:47 +053035 include $(AUDIO_ROOT)/config/sdm710auto.conf
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053036 export
Aditya Bavanari68d3ed82018-04-08 14:34:47 +053037 INCS += -include $(AUDIO_ROOT)/config/sdm710autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053038 endif
Laxminath Kasam942d1c62017-12-29 11:02:22 +053039 ifeq ($(CONFIG_ARCH_SDM450), y)
Soumya Managolieaff6622018-02-23 12:00:54 +053040 include $(AUDIO_ROOT)/config/sdm450auto.conf
Laxminath Kasam942d1c62017-12-29 11:02:22 +053041 export
Soumya Managolieaff6622018-02-23 12:00:54 +053042 INCS += -include $(AUDIO_ROOT)/config/sdm450autoconf.h
Laxminath Kasam942d1c62017-12-29 11:02:22 +053043 endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053044endif
45
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053046# As per target team, build is done as follows:
47# Defconfig : build with default flags
48# Slub : defconfig + CONFIG_SLUB_DEBUG := y +
49# CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
50# Perf : Using appropriate msmXXXX-perf_defconfig
51#
52# Shipment builds (user variants) should not have any debug feature
53# enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
54# are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
55# there is no other way to identify defconfig builds, QTI internal
56# representation of perf builds (identified using the string 'perf'),
57# is used to identify if the build is a slub or defconfig one. This
58# way no critical debug feature will be enabled for perf and shipment
59# builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
60# config.
61
62############ UAPI ############
63UAPI_DIR := uapi
64UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
65
66############ COMMON ############
67COMMON_DIR := include
68COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
69
70############ IPC ############
Soumya Managolieaff6622018-02-23 12:00:54 +053071ifdef CONFIG_MSM_QDSP6_APRV2
72APRV_GLINK += apr.o
73APRV_GLINK += apr_v2.o
74APRV_GLINK += apr_tal.o
Soumya Managoli5beccb82018-03-02 19:31:23 +053075APRV_GLINK += apr_dummy.o
Soumya Managolieaff6622018-02-23 12:00:54 +053076endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053077
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
Laxminath Kasam31b26c52018-02-12 16:32:01 +053082APRV_GLINK += apr_dummy.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053083endif
84
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053085ifdef CONFIG_MSM_QDSP6_APRV3_GLINK
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053086APRV_GLINK += apr.o
87APRV_GLINK += apr_v3.o
88APRV_GLINK += apr_tal_glink.o
Laxminath Kasam31b26c52018-02-12 16:32:01 +053089APRV_GLINK += apr_dummy.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053090endif
91
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053092ifdef CONFIG_WCD_DSP_GLINK
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053093WDSP_GLINK += wcd-dsp-glink.o
94endif
95
96LINUX_INC += -Iinclude/linux
97
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053098INCS += $(COMMON_INC) \
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053099 $(UAPI_INC)
100
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530101EXTRA_CFLAGS += $(INCS)
102
103
104CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
105 -DANI_LITTLE_BIT_ENDIAN \
106 -DDOT11F_LITTLE_ENDIAN_HOST \
107 -DANI_COMPILER_TYPE_GCC \
108 -DANI_OS_TYPE_ANDROID=6 \
109 -DPTT_SOCK_SVC_ENABLE \
110 -Wall\
111 -Werror\
112 -D__linux__
113
114KBUILD_CPPFLAGS += $(CDEFINES)
115
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530116ifeq ($(KERNEL_BUILD), 0)
117
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530118HEADER_INSTALL_DIR := $(TOP)/kernel/msm-$(TARGET_KERNEL_VERSION)/scripts
119UAPI_OUT := $(OUT)/obj/vendor/qcom/opensource/audio-kernel/include
120$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ avtimer.h;)
121$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio.h;)
122$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_aac.h;)
123$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_ac3.h;)
124$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_alac.h;)
125$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrnb.h;)
126$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrwb.h;)
127$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_amrwbplus.h;)
128$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_ape.h;)
129$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_calibration.h;)
130$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_g711_dec.h;)
131$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_g711.h;)
132$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_mvs.h;)
133$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_qcp.h;)
134$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_sbc.h;)
135$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_voicememo.h;)
136$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_wma.h;)
137$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/linux/ $(AUDIO_ROOT)/include/uapi/linux/ msm_audio_wmapro.h;)
138
139$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ audio_effects.h;)
140$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ audio_slimslave.h;)
141$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ devdep_params.h;)
142$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ lsm_params.h;)
143$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ msmcal-hwdep.h;)
144$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ voice_params.h;)
145$(shell $(HEADER_INSTALL_DIR)/headers_install.sh $(UAPI_OUT)/sound/ $(AUDIO_ROOT)/include/uapi/sound/ wcd-dsp-glink.h;)
146
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530147KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
148
149endif
150
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530151# Currently, for versions of gcc which support it, the kernel Makefile
152# is disabling the maybe-uninitialized warning. Re-enable it for the
153# AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
154# will override the kernel settings.
155ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
156EXTRA_CFLAGS += -Wmaybe-uninitialized
157endif
158#EXTRA_CFLAGS += -Wmissing-prototypes
159
160ifeq ($(call cc-option-yn, -Wheader-guard),y)
161EXTRA_CFLAGS += -Wheader-guard
162endif
163# If the module name is not "wlan", then the define MULTI_IF_NAME to be the
164# same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
165# any string that must be unique for all instances of the driver on the system.
166# This allows multiple instances of the driver with different module names.
167# If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
168# treat the driver as the primary driver.
169ifneq ($(MODNAME), qdsp6v2)
170CHIP_NAME ?= $(MODNAME)
171CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
172endif
173
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530174# Module information used by KBuild framework
Soumya Managolieaff6622018-02-23 12:00:54 +0530175obj-$(CONFIG_MSM_QDSP6_APRV2) += apr_dlkm.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530176obj-$(CONFIG_MSM_QDSP6_APRV2_GLINK) += apr_dlkm.o
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530177obj-$(CONFIG_MSM_QDSP6_APRV3_GLINK) += apr_dlkm.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530178apr_dlkm-y := $(APRV_GLINK)
179
180obj-$(CONFIG_WCD_DSP_GLINK) += wglink_dlkm.o
181wglink_dlkm-y := $(WDSP_GLINK)
182
183# inject some build related information
184CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"