blob: 1aeb064ea28349820812d927dc7bd80a8322c018 [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)
Aditya Bavanari68d3ed82018-04-08 14:34:47 +053023 include $(AUDIO_ROOT)/config/sdm710auto.conf
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053024 export
Aditya Bavanari68d3ed82018-04-08 14:34:47 +053025 INCS += -include $(AUDIO_ROOT)/config/sdm710autoconf.h
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053026 endif
Laxminath Kasam942d1c62017-12-29 11:02:22 +053027 ifeq ($(CONFIG_ARCH_SDM450), y)
Soumya Managolieaff6622018-02-23 12:00:54 +053028 include $(AUDIO_ROOT)/config/sdm450auto.conf
Laxminath Kasam942d1c62017-12-29 11:02:22 +053029 export
Soumya Managolieaff6622018-02-23 12:00:54 +053030 INCS += -include $(AUDIO_ROOT)/config/sdm450autoconf.h
Laxminath Kasam942d1c62017-12-29 11:02:22 +053031 endif
Vaishnavi Kommaraju59562a12018-04-25 19:33:46 +053032 ifeq ($(CONFIG_ARCH_SDM439), y)
33 include $(AUDIO_ROOT)/config/sdm450auto.conf
34 export
35 INCS += -include $(AUDIO_ROOT)/config/sdm450autoconf.h
36 endif
Sundara Vinayagam39838332018-05-23 12:04:25 +053037 ifeq ($(CONFIG_ARCH_MSM8909), y)
38 include $(AUDIO_ROOT)/config/msm8909auto.conf
39 export
40 INCS += -include $(AUDIO_ROOT)/config/msm8909autoconf.h
41 endif
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053042endif
43
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053044# As per target team, build is done as follows:
45# Defconfig : build with default flags
46# Slub : defconfig + CONFIG_SLUB_DEBUG := y +
47# CONFIG_SLUB_DEBUG_ON := y + CONFIG_PAGE_POISONING := y
48# Perf : Using appropriate msmXXXX-perf_defconfig
49#
50# Shipment builds (user variants) should not have any debug feature
51# enabled. This is identified using 'TARGET_BUILD_VARIANT'. Slub builds
52# are identified using the CONFIG_SLUB_DEBUG_ON configuration. Since
53# there is no other way to identify defconfig builds, QTI internal
54# representation of perf builds (identified using the string 'perf'),
55# is used to identify if the build is a slub or defconfig one. This
56# way no critical debug feature will be enabled for perf and shipment
57# builds. Other OEMs are also protected using the TARGET_BUILD_VARIANT
58# config.
59
60############ UAPI ############
61UAPI_DIR := uapi
62UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR)
63
64############ COMMON ############
65COMMON_DIR := include
66COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR)
67
68############ SoC Modules ############
69
70# for pinctrl WCD driver
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053071ifdef CONFIG_PINCTRL_WCD
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053072 PINCTRL_WCD_OBJS += pinctrl-wcd.o
73endif
74
75# for pinctrl LPI driver
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053076ifdef CONFIG_PINCTRL_LPI
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053077 PINCTRL_LPI_OBJS += pinctrl-lpi.o
78endif
79
80# for soundwire driver
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053081ifdef CONFIG_SOUNDWIRE_WCD_CTRL
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053082 SWR_CTRL_OBJS += swr-wcd-ctrl.o
83endif
84
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053085ifdef CONFIG_SOUNDWIRE
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053086 SWR_OBJS += regmap-swr.o
87 SWR_OBJS += soundwire.o
88endif
89
90LINUX_INC += -Iinclude/linux
91
Asish Bhattacharya5faacb32017-12-04 17:23:15 +053092INCS += $(COMMON_INC) \
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053093 $(UAPI_INC)
94
Laxminath Kasam8b1366a2017-10-05 01:44:16 +053095EXTRA_CFLAGS += $(INCS)
96
97
98CDEFINES += -DANI_LITTLE_BYTE_ENDIAN \
99 -DANI_LITTLE_BIT_ENDIAN \
100 -DDOT11F_LITTLE_ENDIAN_HOST \
101 -DANI_COMPILER_TYPE_GCC \
102 -DANI_OS_TYPE_ANDROID=6 \
103 -DPTT_SOCK_SVC_ENABLE \
104 -Wall\
105 -Werror\
106 -D__linux__
107
108KBUILD_CPPFLAGS += $(CDEFINES)
109
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530110ifeq ($(KERNEL_BUILD), 0)
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530111KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers
Asish Bhattacharya5faacb32017-12-04 17:23:15 +0530112endif
113
Laxminath Kasam8b1366a2017-10-05 01:44:16 +0530114# 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# Module information used by KBuild framework
128obj-$(CONFIG_PINCTRL_WCD) += pinctrl_wcd_dlkm.o
129pinctrl_wcd_dlkm-y := $(PINCTRL_WCD_OBJS)
130
131obj-$(CONFIG_PINCTRL_LPI) += pinctrl_lpi_dlkm.o
132pinctrl_lpi_dlkm-y := $(PINCTRL_LPI_OBJS)
133
134obj-$(CONFIG_SOUNDWIRE) += swr_dlkm.o
135swr_dlkm-y := $(SWR_OBJS)
136
137obj-$(CONFIG_SOUNDWIRE_WCD_CTRL) += swr_ctrl_dlkm.o
138swr_ctrl_dlkm-y := $(SWR_CTRL_OBJS)
139
140# inject some build related information
141DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"