blob: 3cc021c457bdddf5055dec342dc34ee8ff96df7e [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
Shiv Maliyappanahalli72354822017-11-17 16:07:27 -080078ifdef CONFIG_MSM_QDSP6_APRV2_RPMSG
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053079APRV_GLINK += apr.o
80APRV_GLINK += apr_v2.o
Shiv Maliyappanahalli72354822017-11-17 16:07:27 -080081APRV_GLINK += apr_tal_rpmsg.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053082endif
83
Shiv Maliyappanahalli72354822017-11-17 16:07:27 -080084ifdef CONFIG_MSM_QDSP6_APRV3_RPMSG
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053085APRV_GLINK += apr.o
86APRV_GLINK += apr_v3.o
Shiv Maliyappanahalli72354822017-11-17 16:07:27 -080087APRV_GLINK += apr_tal_rpmsg.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053088endif
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)
Meng Wange61ddb02018-03-07 11:18:35 +0800115KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530116endif
117
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530118# Currently, for versions of gcc which support it, the kernel Makefile
119# is disabling the maybe-uninitialized warning. Re-enable it for the
120# AUDIO driver. Note that we must use EXTRA_CFLAGS here so that it
121# will override the kernel settings.
122ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y)
123EXTRA_CFLAGS += -Wmaybe-uninitialized
124endif
125#EXTRA_CFLAGS += -Wmissing-prototypes
126
127ifeq ($(call cc-option-yn, -Wheader-guard),y)
128EXTRA_CFLAGS += -Wheader-guard
129endif
130# If the module name is not "wlan", then the define MULTI_IF_NAME to be the
131# same a the QCA CHIP name. The host driver will then append MULTI_IF_NAME to
132# any string that must be unique for all instances of the driver on the system.
133# This allows multiple instances of the driver with different module names.
134# If the module name is wlan, leave MULTI_IF_NAME undefined and the code will
135# treat the driver as the primary driver.
136ifneq ($(MODNAME), qdsp6v2)
137CHIP_NAME ?= $(MODNAME)
138CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\"
139endif
140
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530141# Module information used by KBuild framework
Shiv Maliyappanahalli72354822017-11-17 16:07:27 -0800142obj-$(CONFIG_MSM_QDSP6_APRV2_RPMSG) += apr_dlkm.o
143obj-$(CONFIG_MSM_QDSP6_APRV3_RPMSG) += apr_dlkm.o
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530144apr_dlkm-y := $(APRV_GLINK)
145
146obj-$(CONFIG_WCD_DSP_GLINK) += wglink_dlkm.o
147wglink_dlkm-y := $(WDSP_GLINK)
148
149# inject some build related information
150CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"