blob: 73ae3612e3e3a733c1620b4e00055c4b9363eaef [file] [log] [blame]
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001ifeq ($(strip $(BOARD_USES_ALSA_AUDIO)),true)
2
3LOCAL_PATH := $(call my-dir)
4
5include $(CLEAR_VARS)
6
7LOCAL_ARM_MODE := arm
8
Ajay Dudanibe3335a2013-08-19 18:47:21 -07009AUDIO_PLATFORM := $(TARGET_BOARD_PLATFORM)
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -070010
Mingming Yin0e1b2902014-05-19 18:20:59 -070011ifneq ($(filter msm8974 msm8226 msm8610 apq8084 msm8994,$(TARGET_BOARD_PLATFORM)),)
Ajay Dudanibe3335a2013-08-19 18:47:21 -070012 # B-family platform uses msm8974 code base
13 AUDIO_PLATFORM = msm8974
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -070014 MULTIPLE_HW_VARIANTS_ENABLED := true
Mingming Yin8e5a4f62013-10-07 15:23:41 -070015ifneq ($(filter msm8610,$(TARGET_BOARD_PLATFORM)),)
16 LOCAL_CFLAGS := -DPLATFORM_MSM8610
17endif
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -070018ifneq ($(filter msm8226,$(TARGET_BOARD_PLATFORM)),)
19 LOCAL_CFLAGS := -DPLATFORM_MSM8x26
20endif
Vidyakumar Athotad9d9ff32013-11-13 11:46:52 -080021ifneq ($(filter apq8084,$(TARGET_BOARD_PLATFORM)),)
22 LOCAL_CFLAGS := -DPLATFORM_APQ8084
23endif
Mingming Yin0e1b2902014-05-19 18:20:59 -070024ifneq ($(filter msm8994,$(TARGET_BOARD_PLATFORM)),)
25 LOCAL_CFLAGS := -DPLATFORM_MSM8994
26endif
Ajay Dudanibe3335a2013-08-19 18:47:21 -070027endif
28
Dhananjay Kumar2bb2fc12014-07-11 19:14:23 +053029ifneq ($(filter msm8916 ferrum,$(TARGET_BOARD_PLATFORM)),)
Naresh Tannirudb72d1e2014-03-05 17:33:47 +053030 AUDIO_PLATFORM = msm8916
31 MULTIPLE_HW_VARIANTS_ENABLED := true
32 LOCAL_CFLAGS := -DPLATFORM_MSM8916
Dhananjay Kumar2bb2fc12014-07-11 19:14:23 +053033ifneq ($(filter ferrum,$(TARGET_BOARD_PLATFORM)),)
34 LOCAL_CFLAGS := -DPLATFORM_MSM8909
35endif
Naresh Tannirudb72d1e2014-03-05 17:33:47 +053036endif
Naresh Tanniru8b919ac2014-01-30 19:12:53 +053037
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080038LOCAL_SRC_FILES := \
39 audio_hw.c \
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -070040 voice.c \
Ben Romberger61764e32014-01-10 13:49:02 -080041 platform_info.c \
Ajay Dudanibe3335a2013-08-19 18:47:21 -070042 $(AUDIO_PLATFORM)/platform.c
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080043
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070044LOCAL_SRC_FILES += audio_extn/audio_extn.c \
45 audio_extn/utils.c
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070046
Mingming Yina6dad602014-05-16 12:10:55 -070047ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PCM_OFFLOAD)),true)
Mingming Yin67e34512014-04-03 17:47:22 -070048 LOCAL_CFLAGS += -DPCM_OFFLOAD_ENABLED
49endif
50
Mingming Yina6dad602014-05-16 12:10:55 -070051ifeq ($(strip $(AUDIO_FEATURE_ENABLED_ANC_HEADSET)),true)
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070052 LOCAL_CFLAGS += -DANC_HEADSET_ENABLED
53endif
54
Mingming Yina6dad602014-05-16 12:10:55 -070055ifeq ($(strip $(AUDIO_FEATURE_ENABLED_FLUENCE)),true)
Venkata Narendra Kumar Gutta88fd0bc2014-03-27 19:47:56 +053056 LOCAL_CFLAGS += -DFLUENCE_ENABLED
57endif
58
Mingming Yina6dad602014-05-16 12:10:55 -070059ifeq ($(strip $(AUDIO_FEATURE_ENABLED_PROXY_DEVICE)),true)
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070060 LOCAL_CFLAGS += -DAFE_PROXY_ENABLED
61endif
62
Mingming Yina6dad602014-05-16 12:10:55 -070063ifeq ($(strip $(AUDIO_FEATURE_ENABLED_FM)),true)
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -070064 LOCAL_CFLAGS += -DFM_ENABLED
65 LOCAL_SRC_FILES += audio_extn/fm.c
66endif
67
Mingming Yina6dad602014-05-16 12:10:55 -070068ifeq ($(strip $(AUDIO_FEATURE_ENABLED_USBAUDIO)),true)
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -070069 LOCAL_CFLAGS += -DUSB_HEADSET_ENABLED
70 LOCAL_SRC_FILES += audio_extn/usb.c
71endif
Mingming Yina6dad602014-05-16 12:10:55 -070072
73ifeq ($(strip $(AUDIO_FEATURE_ENABLED_HFP)),true)
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -080074 LOCAL_CFLAGS += -DHFP_ENABLED
75 LOCAL_SRC_FILES += audio_extn/hfp.c
76endif
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -070077
Mingming Yina6dad602014-05-16 12:10:55 -070078ifeq ($(strip $(AUDIO_FEATURE_ENABLED_CUSTOMSTEREO)),true)
Jitendra Singh Naruka9a6a8d42014-02-10 20:07:12 -080079 LOCAL_CFLAGS += -DCUSTOM_STEREO_ENABLED
80endif
81
Mingming Yina6dad602014-05-16 12:10:55 -070082ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SSR)),true)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -070083 LOCAL_CFLAGS += -DSSR_ENABLED
84 LOCAL_SRC_FILES += audio_extn/ssr.c
85 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/surround_sound/
Nagender Telkarca2b4942014-03-24 12:25:42 -060086 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/common/inc/
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -070087endif
88
Mingming Yina6dad602014-05-16 12:10:55 -070089ifeq ($(strip $(AUDIO_FEATURE_ENABLED_MULTI_VOICE_SESSIONS)),true)
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -070090 LOCAL_CFLAGS += -DMULTI_VOICE_SESSION_ENABLED
91 LOCAL_SRC_FILES += voice_extn/voice_extn.c
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -070092 LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
Nagender44733a42013-12-08 00:05:20 -070093 LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
Mingming Yina6dad602014-05-16 12:10:55 -070094ifeq ($(strip $(AUDIO_FEATURE_ENABLED_INCALL_MUSIC)),true)
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -070095 LOCAL_CFLAGS += -DINCALL_MUSIC_ENABLED
96endif
Mingming Yina6dad602014-05-16 12:10:55 -070097ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_VOIP)),true)
Narsinga Rao Chella05573b72013-11-15 15:21:40 -080098 LOCAL_CFLAGS += -DCOMPRESS_VOIP_ENABLED
99 LOCAL_SRC_FILES += voice_extn/compress_voip.c
100endif
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700101
102endif
103
Mingming Yina6dad602014-05-16 12:10:55 -0700104ifeq ($(strip $(AUDIO_FEATURE_ENABLED_EXTN_FORMATS)),true)
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700105LOCAL_CFLAGS += -DFORMATS_ENABLED
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700106endif
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700107
Anish Kumard80a1392014-07-16 16:18:51 -0700108ifeq ($(strip $(AUDIO_FEATURE_ENABLED_SPKR_PROTECTION)),true)
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700109 LOCAL_CFLAGS += -DSPKR_PROT_ENABLED
110 LOCAL_SRC_FILES += audio_extn/spkr_protection.c
111 LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
Nagender44733a42013-12-08 00:05:20 -0700112 LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700113endif
Shiv Maliyappanahalli303f51d2013-10-25 16:24:27 -0700114
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700115ifdef MULTIPLE_HW_VARIANTS_ENABLED
116 LOCAL_CFLAGS += -DHW_VARIANTS_ENABLED
117 LOCAL_SRC_FILES += $(AUDIO_PLATFORM)/hw_info.c
118endif
119
Mingming Yina6dad602014-05-16 12:10:55 -0700120ifeq ($(strip $(AUDIO_FEATURE_ENABLED_COMPRESS_CAPTURE)),true)
Mingming Yine62d7842013-10-25 16:26:03 -0700121 LOCAL_CFLAGS += -DCOMPRESS_CAPTURE_ENABLED
122 LOCAL_SRC_FILES += audio_extn/compress_capture.c
123endif
124
Mingming Yina6dad602014-05-16 12:10:55 -0700125ifeq ($(strip $(DOLBY_DDP)),true)
Mingming Yin90310102013-11-13 16:57:00 -0800126 LOCAL_CFLAGS += -DDS1_DOLBY_DDP_ENABLED
127 LOCAL_C_INCLUDES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
Nagender44733a42013-12-08 00:05:20 -0700128 LOCAL_ADDITIONAL_DEPENDENCIES += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800129 LOCAL_SRC_FILES += audio_extn/dolby.c
Mingming Yin90310102013-11-13 16:57:00 -0800130endif
131
Mingming Yina6dad602014-05-16 12:10:55 -0700132ifeq ($(strip $(DOLBY_DAP)),true)
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800133 LOCAL_CFLAGS += -DDS1_DOLBY_DAP_ENABLED
Mingming Yina6dad602014-05-16 12:10:55 -0700134ifneq ($(strip $(DOLBY_DDP)),true)
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800135 LOCAL_SRC_FILES += audio_extn/dolby.c
136endif
137endif
138
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -0700139ifeq ($(strip $(AUDIO_FEATURE_ENABLED_MULTIPLE_TUNNEL)), true)
140 LOCAL_CFLAGS += -DMULTIPLE_OFFLOAD_ENABLED
141endif
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800142
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800143LOCAL_SHARED_LIBRARIES := \
144 liblog \
145 libcutils \
146 libtinyalsa \
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700147 libtinycompress \
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800148 libaudioroute \
Ben Romberger61764e32014-01-10 13:49:02 -0800149 libdl \
Helen Zeng008aebd2014-02-23 19:13:12 -0800150 libexpat \
151 libmdmdetect
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800152
153LOCAL_C_INCLUDES += \
154 external/tinyalsa/include \
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700155 external/tinycompress/include \
Ben Romberger61764e32014-01-10 13:49:02 -0800156 external/expat/lib \
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -0700157 $(call include-path-for, audio-route) \
Eric Laurentb23d5282013-05-14 15:27:20 -0700158 $(call include-path-for, audio-effects) \
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -0700159 $(LOCAL_PATH)/$(AUDIO_PLATFORM) \
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800160 $(LOCAL_PATH)/audio_extn \
Helen Zeng008aebd2014-02-23 19:13:12 -0800161 $(LOCAL_PATH)/voice_extn \
162 $(TARGET_OUT_HEADERS)/libmdmdetect/inc
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800163
Kiran Kandi910e1862013-10-29 13:29:42 -0700164ifeq ($(strip $(AUDIO_FEATURE_ENABLED_LISTEN)),true)
165 LOCAL_CFLAGS += -DAUDIO_LISTEN_ENABLED
166 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/audio-listen
167 LOCAL_SRC_FILES += audio_extn/listen.c
168endif
169
Damir Didjustof1d46c72013-11-06 17:59:04 -0800170ifeq ($(strip $(AUDIO_FEATURE_ENABLED_AUXPCM_BT)),true)
171 LOCAL_CFLAGS += -DAUXPCM_BT_ENABLED
172endif
173
Mingming Yin8e5a4f62013-10-07 15:23:41 -0700174LOCAL_MODULE := audio.primary.$(TARGET_BOARD_PLATFORM)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800175
Apoorv Raghuvanshi1b555f72014-05-29 12:48:15 -0700176LOCAL_MODULE_RELATIVE_PATH := hw
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800177
178LOCAL_MODULE_TAGS := optional
179
180include $(BUILD_SHARED_LIBRARY)
181
182endif