Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 1 | # We can build either as part of a standalone Kernel build or as |
| 2 | # an external module. Determine which mechanism is being used |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 3 | ifeq ($(MODNAME),) |
| 4 | KERNEL_BUILD := 1 |
| 5 | else |
| 6 | KERNEL_BUILD := 0 |
| 7 | endif |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 8 | |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 9 | TARGET_KERNEL_VERSION := 4.9 |
| 10 | |
| 11 | # These are configurable via Kconfig for kernel-based builds |
| 12 | # Need to explicitly configure for Android-based builds |
| 13 | ifeq ($(CONFIG_ARCH_SDM845), y) |
| 14 | TARGET_KERNEL_VERSION := 4.9 |
| 15 | endif |
| 16 | ifeq ($(CONFIG_ARCH_SDM670), y) |
| 17 | TARGET_KERNEL_VERSION := 4.9 |
| 18 | endif |
Meng Wang | 5fddb8d | 2018-01-23 16:56:56 +0800 | [diff] [blame] | 19 | ifeq ($(CONFIG_ARCH_SDM855), y) |
| 20 | TARGET_KERNEL_VERSION := 4.14 |
| 21 | endif |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 22 | |
| 23 | KDIR := $(TOP)/kernel/msm-$(TARGET_KERNEL_VERSION) |
| 24 | |
| 25 | ifeq ($(KERNEL_BUILD), 1) |
| 26 | AUDIO_ROOT := $(KDIR)/techpack/audio |
| 27 | endif |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 28 | |
| 29 | ifeq ($(KERNEL_BUILD), 0) |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 30 | ifeq ($(CONFIG_ARCH_SDM845), y) |
| 31 | include $(AUDIO_ROOT)/config/sdm845auto.conf |
| 32 | export |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 33 | INCS += -include $(AUDIO_ROOT)/config/sdm845autoconf.h |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 34 | endif |
| 35 | ifeq ($(CONFIG_ARCH_SDM670), y) |
| 36 | include $(AUDIO_ROOT)/config/sdm670auto.conf |
| 37 | export |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 38 | INCS += -include $(AUDIO_ROOT)/config/sdm670autoconf.h |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 39 | endif |
Laxminath Kasam | 942d1c6 | 2017-12-29 11:02:22 +0530 | [diff] [blame] | 40 | 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 Wang | 5fddb8d | 2018-01-23 16:56:56 +0800 | [diff] [blame] | 45 | 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 Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 50 | endif |
| 51 | |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 52 | # 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 ############ |
| 69 | UAPI_DIR := uapi |
| 70 | UAPI_INC := -I$(AUDIO_ROOT)/include/$(UAPI_DIR) |
| 71 | |
| 72 | ############ COMMON ############ |
| 73 | COMMON_DIR := include |
| 74 | COMMON_INC := -I$(AUDIO_ROOT)/$(COMMON_DIR) |
| 75 | |
| 76 | ############ IPC ############ |
| 77 | |
Shiv Maliyappanahalli | 7235482 | 2017-11-17 16:07:27 -0800 | [diff] [blame] | 78 | ifdef CONFIG_MSM_QDSP6_APRV2_RPMSG |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 79 | APRV_GLINK += apr.o |
| 80 | APRV_GLINK += apr_v2.o |
Shiv Maliyappanahalli | 7235482 | 2017-11-17 16:07:27 -0800 | [diff] [blame] | 81 | APRV_GLINK += apr_tal_rpmsg.o |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 82 | endif |
| 83 | |
Shiv Maliyappanahalli | 7235482 | 2017-11-17 16:07:27 -0800 | [diff] [blame] | 84 | ifdef CONFIG_MSM_QDSP6_APRV3_RPMSG |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 85 | APRV_GLINK += apr.o |
| 86 | APRV_GLINK += apr_v3.o |
Shiv Maliyappanahalli | 7235482 | 2017-11-17 16:07:27 -0800 | [diff] [blame] | 87 | APRV_GLINK += apr_tal_rpmsg.o |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 88 | endif |
| 89 | |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 90 | ifdef CONFIG_WCD_DSP_GLINK |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 91 | WDSP_GLINK += wcd-dsp-glink.o |
| 92 | endif |
| 93 | |
| 94 | LINUX_INC += -Iinclude/linux |
| 95 | |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 96 | INCS += $(COMMON_INC) \ |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 97 | $(UAPI_INC) |
| 98 | |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 99 | EXTRA_CFLAGS += $(INCS) |
| 100 | |
| 101 | |
| 102 | CDEFINES += -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 | |
| 112 | KBUILD_CPPFLAGS += $(CDEFINES) |
| 113 | |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 114 | ifeq ($(KERNEL_BUILD), 0) |
Meng Wang | e61ddb0 | 2018-03-07 11:18:35 +0800 | [diff] [blame] | 115 | KBUILD_EXTRA_SYMBOLS +=$(OUT)/obj/vendor/qcom/opensource/audio-kernel/dsp/Module.symvers |
Asish Bhattacharya | 5faacb3 | 2017-12-04 17:23:15 +0530 | [diff] [blame] | 116 | endif |
| 117 | |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 118 | # 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. |
| 122 | ifeq ($(call cc-option-yn, -Wmaybe-uninitialized),y) |
| 123 | EXTRA_CFLAGS += -Wmaybe-uninitialized |
| 124 | endif |
| 125 | #EXTRA_CFLAGS += -Wmissing-prototypes |
| 126 | |
| 127 | ifeq ($(call cc-option-yn, -Wheader-guard),y) |
| 128 | EXTRA_CFLAGS += -Wheader-guard |
| 129 | endif |
| 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. |
| 136 | ifneq ($(MODNAME), qdsp6v2) |
| 137 | CHIP_NAME ?= $(MODNAME) |
| 138 | CDEFINES += -DMULTI_IF_NAME=\"$(CHIP_NAME)\" |
| 139 | endif |
| 140 | |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 141 | # Module information used by KBuild framework |
Shiv Maliyappanahalli | 7235482 | 2017-11-17 16:07:27 -0800 | [diff] [blame] | 142 | obj-$(CONFIG_MSM_QDSP6_APRV2_RPMSG) += apr_dlkm.o |
| 143 | obj-$(CONFIG_MSM_QDSP6_APRV3_RPMSG) += apr_dlkm.o |
Laxminath Kasam | 8b1366a | 2017-10-05 01:44:16 +0530 | [diff] [blame] | 144 | apr_dlkm-y := $(APRV_GLINK) |
| 145 | |
| 146 | obj-$(CONFIG_WCD_DSP_GLINK) += wglink_dlkm.o |
| 147 | wglink_dlkm-y := $(WDSP_GLINK) |
| 148 | |
| 149 | # inject some build related information |
| 150 | CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\" |