Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 1 | #Common headers |
Naseer Ahmed | d68b47d | 2016-04-05 17:40:02 -0400 | [diff] [blame] | 2 | display_top := $(call my-dir) |
Naseer Ahmed | a699e79 | 2017-11-09 15:08:31 -0500 | [diff] [blame] | 3 | display_config_version := $(shell \ |
| 4 | if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.1" ];\ |
| 5 | then echo DISPLAY_CONFIG_1_1; fi) |
Dileep Marchya | f3ce11f | 2018-04-30 23:35:46 +0530 | [diff] [blame] | 6 | display_config_version := $(shell \ |
| 7 | if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.2" ];\ |
| 8 | then echo DISPLAY_CONFIG_1_2; fi) |
Ramkumar Radhakrishnan | f985d48 | 2018-07-23 18:10:41 -0700 | [diff] [blame] | 9 | display_config_version := $(shell \ |
| 10 | if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.3" ];\ |
| 11 | then echo DISPLAY_CONFIG_1_3; fi) |
Ramakant Singh | dbe738a | 2018-08-23 23:57:07 +0530 | [diff] [blame] | 12 | display_config_version := $(shell \ |
| 13 | if [ -d "$(TOP)/vendor/qcom/opensource/interfaces/display/config/1.4" ];\ |
| 14 | then echo DISPLAY_CONFIG_1_4; fi) |
Naseer Ahmed | b6b936d | 2016-08-05 16:23:32 -0400 | [diff] [blame] | 15 | #Common C flags |
Saurabh Shah | 546f77b | 2017-12-13 14:10:39 -0800 | [diff] [blame] | 16 | common_flags := -Wno-missing-field-initializers |
Dileep Marchya | 6860b2b | 2017-04-07 15:56:47 +0530 | [diff] [blame] | 17 | common_flags += -Wconversion -Wall -Werror -std=c++14 |
Naseer Ahmed | 8502008 | 2017-05-17 14:36:46 -0400 | [diff] [blame] | 18 | common_flags += -DUSE_GRALLOC1 |
Saurabh Shah | f84c412 | 2017-04-07 10:34:40 -0700 | [diff] [blame] | 19 | ifeq ($(TARGET_IS_HEADLESS), true) |
Naseer Ahmed | 4d78d03 | 2017-03-22 12:47:30 -0400 | [diff] [blame] | 20 | common_flags += -DTARGET_HEADLESS |
| 21 | LOCAL_CLANG := false |
Saurabh Shah | 7d476ed | 2016-06-27 16:40:58 -0700 | [diff] [blame] | 22 | endif |
Naseer Ahmed | b6b936d | 2016-08-05 16:23:32 -0400 | [diff] [blame] | 23 | |
Naseer Ahmed | a699e79 | 2017-11-09 15:08:31 -0500 | [diff] [blame] | 24 | ifeq ($(display_config_version), DISPLAY_CONFIG_1_1) |
| 25 | common_flags += -DDISPLAY_CONFIG_1_1 |
| 26 | endif |
Dileep Marchya | f3ce11f | 2018-04-30 23:35:46 +0530 | [diff] [blame] | 27 | ifeq ($(display_config_version), DISPLAY_CONFIG_1_2) |
| 28 | common_flags += -DDISPLAY_CONFIG_1_2 -DDISPLAY_CONFIG_1_1 |
| 29 | endif |
Ramkumar Radhakrishnan | f985d48 | 2018-07-23 18:10:41 -0700 | [diff] [blame] | 30 | ifeq ($(display_config_version), DISPLAY_CONFIG_1_3) |
| 31 | common_flags += -DDISPLAY_CONFIG_1_1 -DDISPLAY_CONFIG_1_2 -DDISPLAY_CONFIG_1_3 |
| 32 | endif |
Ramakant Singh | dbe738a | 2018-08-23 23:57:07 +0530 | [diff] [blame] | 33 | ifeq ($(display_config_version), DISPLAY_CONFIG_1_4) |
| 34 | common_flags += -DDISPLAY_CONFIG_1_1 -DDISPLAY_CONFIG_1_2 |
| 35 | common_flags += -DDISPLAY_CONFIG_1_3 -DDISPLAY_CONFIG_1_4 |
| 36 | endif |
Naseer Ahmed | a699e79 | 2017-11-09 15:08:31 -0500 | [diff] [blame] | 37 | |
Arun Kumar K.R | ca196fc | 2016-12-07 19:28:30 -0800 | [diff] [blame] | 38 | ifeq ($(TARGET_USES_COLOR_METADATA), true) |
Naseer Ahmed | 4d78d03 | 2017-03-22 12:47:30 -0400 | [diff] [blame] | 39 | common_flags += -DUSE_COLOR_METADATA |
Arun Kumar K.R | b2771bf | 2016-10-03 21:38:23 -0700 | [diff] [blame] | 40 | endif |
| 41 | |
Naseer Ahmed | 4d78d03 | 2017-03-22 12:47:30 -0400 | [diff] [blame] | 42 | ifeq ($(TARGET_USES_QCOM_BSP),true) |
| 43 | common_flags += -DQTI_BSP |
Praveena Pachipulusu | 734118a | 2014-12-04 14:53:12 +0530 | [diff] [blame] | 44 | endif |
| 45 | |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 46 | ifeq ($(ARCH_ARM_HAVE_NEON),true) |
| 47 | common_flags += -D__ARM_HAVE_NEON |
| 48 | endif |
| 49 | |
Shalaj Jain | 3c49041 | 2015-04-22 16:52:03 -0700 | [diff] [blame] | 50 | ifeq ($(call is-board-platform-in-list, $(MASTER_SIDE_CP_TARGET_LIST)), true) |
| 51 | common_flags += -DMASTER_SIDE_CP |
| 52 | endif |
| 53 | |
Naseer Ahmed | 4d78d03 | 2017-03-22 12:47:30 -0400 | [diff] [blame] | 54 | use_hwc2 := false |
| 55 | ifeq ($(TARGET_USES_HWC2), true) |
| 56 | use_hwc2 := true |
| 57 | common_flags += -DVIDEO_MODE_DEFER_RETIRE_FENCE |
| 58 | endif |
| 59 | |
Naseer Ahmed | 8789593 | 2017-05-30 17:01:44 -0400 | [diff] [blame] | 60 | ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) |
| 61 | common_flags += -DUSER_DEBUG |
| 62 | endif |
| 63 | |
Ramakant Singh | 80a15d7 | 2017-07-14 13:52:15 +0530 | [diff] [blame] | 64 | ifeq ($(LLVM_SA), true) |
| 65 | common_flags += --compile-and-analyze --analyzer-perf --analyzer-Werror |
| 66 | endif |
| 67 | |
Naseer Ahmed | 4d78d03 | 2017-03-22 12:47:30 -0400 | [diff] [blame] | 68 | common_includes := system/core/base/include |
| 69 | CHECK_VERSION_LE = $(shell if [ $(1) -le $(2) ] ; then echo true ; else echo false ; fi) |
| 70 | PLATFORM_SDK_NOUGAT = 25 |
| 71 | ifeq "REL" "$(PLATFORM_VERSION_CODENAME)" |
| 72 | ifeq ($(call CHECK_VERSION_LE, $(PLATFORM_SDK_VERSION), $(PLATFORM_SDK_NOUGAT)), true) |
| 73 | version_flag := -D__NOUGAT__ |
| 74 | |
| 75 | # These include paths are deprecated post N |
| 76 | common_includes += $(display_top)/libqdutils |
| 77 | common_includes += $(display_top)/libqservice |
| 78 | common_includes += $(display_top)/gpu_tonemapper |
| 79 | ifneq ($(TARGET_IS_HEADLESS), true) |
| 80 | common_includes += $(display_top)/libcopybit |
Naseer Ahmed | 4d78d03 | 2017-03-22 12:47:30 -0400 | [diff] [blame] | 81 | endif |
| 82 | |
| 83 | common_includes += $(display_top)/include |
| 84 | common_includes += $(display_top)/sdm/include |
| 85 | common_flags += -isystem $(TARGET_OUT_HEADERS)/qcom/display |
| 86 | endif |
| 87 | endif |
| 88 | |
| 89 | common_header_export_path := qcom/display |
| 90 | |
| 91 | #Common libraries external to display HAL |
| 92 | common_libs := liblog libutils libcutils libhardware |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 93 | common_deps := |
| 94 | kernel_includes := |
Saurabh Shah | 56f610d | 2012-08-07 15:27:06 -0700 | [diff] [blame] | 95 | |
Naseer Ahmed | d68b47d | 2016-04-05 17:40:02 -0400 | [diff] [blame] | 96 | ifeq ($(TARGET_COMPILE_WITH_MSM_KERNEL),true) |
Naseer Ahmed | e7ff13f | 2013-04-15 20:42:08 -0400 | [diff] [blame] | 97 | # This check is to pick the kernel headers from the right location. |
| 98 | # If the macro above is defined, we make the assumption that we have the kernel |
| 99 | # available in the build tree. |
| 100 | # If the macro is not present, the headers are picked from hardware/qcom/msmXXXX |
| 101 | # failing which, they are picked from bionic. |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 102 | common_deps += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 103 | kernel_includes += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include |
| 104 | endif |