qcom: Add UM 4.14 platforms
* Note: msmnile is treated like msmnile because unlike other Qualcomm codenames msmnile does not expand to 8150. Change-Id: If246c0ec06de22097d369c17ce48aa1270bab19c
This commit is contained in:
committed by
Rashed Abdel-Tawab
parent
6047f5a0c5
commit
05aded86f3
9
build/core/vendor/qcom_boards.mk
vendored
9
build/core/vendor/qcom_boards.mk
vendored
@@ -1,6 +1,11 @@
|
||||
# Board platforms lists to be used for
|
||||
# TARGET_BOARD_PLATFORM specific featurization
|
||||
|
||||
# Platform name variables - used in makefiles everywhere
|
||||
MSMNILE := msmnile #SM8150
|
||||
MSMSTEPPE := sm6150
|
||||
TRINKET := trinket #SM6125
|
||||
|
||||
# A Family
|
||||
QCOM_BOARD_PLATFORMS += msm7x27a
|
||||
QCOM_BOARD_PLATFORMS += msm7x30
|
||||
@@ -36,6 +41,10 @@ QCOM_BOARD_PLATFORMS += sdm660
|
||||
QCOM_BOARD_PLATFORMS += sdm710
|
||||
QCOM_BOARD_PLATFORMS += sdm845
|
||||
|
||||
QCOM_BOARD_PLATFORMS += $(TRINKET)
|
||||
QCOM_BOARD_PLATFORMS += $(MSMSTEPPE)
|
||||
QCOM_BOARD_PLATFORMS += $(MSMNILE)
|
||||
|
||||
# MSM7000 Family
|
||||
MSM7K_BOARD_PLATFORMS := msm7x30
|
||||
MSM7K_BOARD_PLATFORMS += msm7x27
|
||||
|
@@ -1,10 +1,16 @@
|
||||
# Platform names
|
||||
MSMNILE := msmnile #SM8150
|
||||
MSMSTEPPE := sm6150
|
||||
TRINKET := trinket #SM6125
|
||||
|
||||
B_FAMILY := msm8226 msm8610 msm8974
|
||||
B64_FAMILY := msm8992 msm8994
|
||||
BR_FAMILY := msm8909 msm8916
|
||||
UM_3_18_FAMILY := msm8937 msm8953 msm8996
|
||||
UM_4_4_FAMILY := msm8998 sdm660
|
||||
UM_4_9_FAMILY := sdm845 sdm710
|
||||
UM_PLATFORMS := $(UM_3_18_FAMILY) $(UM_4_4_FAMILY) $(UM_4_9_FAMILY)
|
||||
UM_4_14_FAMILY := $(MSMNILE) $(MSMSTEPPE) $(TRINKET)
|
||||
UM_PLATFORMS := $(UM_3_18_FAMILY) $(UM_4_4_FAMILY) $(UM_4_9_FAMILY) $(UM_4_14_FAMILY)
|
||||
|
||||
BOARD_USES_ADRENO := true
|
||||
|
||||
@@ -36,7 +42,7 @@ ifneq ($(filter $(UM_PLATFORMS),$(TARGET_BOARD_PLATFORM)),)
|
||||
endif
|
||||
|
||||
# Enable DRM PP driver on UM platforms that support it
|
||||
ifeq ($(call is-board-platform-in-list, $(UM_4_9_FAMILY)),true)
|
||||
ifeq ($(call is-board-platform-in-list, $(UM_4_9_FAMILY) $(UM_4_14_FAMILY)),true)
|
||||
TARGET_USES_DRM_PP := true
|
||||
endif
|
||||
|
||||
@@ -45,12 +51,12 @@ TARGET_ADDITIONAL_GRALLOC_10_USAGE_BITS ?= 0
|
||||
TARGET_ADDITIONAL_GRALLOC_10_USAGE_BITS += | (1 << 21)
|
||||
|
||||
# Mark GRALLOC_USAGE_PRIVATE_10BIT_TP as valid gralloc bits on UM platforms that support it
|
||||
ifeq ($(call is-board-platform-in-list, $(UM_4_9_FAMILY)),true)
|
||||
ifeq ($(call is-board-platform-in-list, $(UM_4_9_FAMILY) $(UM_4_14_FAMILY)),true)
|
||||
TARGET_ADDITIONAL_GRALLOC_10_USAGE_BITS += | (1 << 27)
|
||||
endif
|
||||
|
||||
# List of targets that use master side content protection
|
||||
MASTER_SIDE_CP_TARGET_LIST := msm8996 msm8998 sdm660 sdm845
|
||||
MASTER_SIDE_CP_TARGET_LIST := msm8996 $(UM_4_4_FAMILY) $(UM_4_9_FAMILY) $(UM_4_14_FAMILY)
|
||||
|
||||
ifneq ($(filter $(B_FAMILY),$(TARGET_BOARD_PLATFORM)),)
|
||||
MSM_VIDC_TARGET_LIST := $(B_FAMILY)
|
||||
@@ -70,6 +76,9 @@ else ifneq ($(filter $(UM_4_4_FAMILY),$(TARGET_BOARD_PLATFORM)),)
|
||||
else ifneq ($(filter $(UM_4_9_FAMILY),$(TARGET_BOARD_PLATFORM)),)
|
||||
MSM_VIDC_TARGET_LIST := $(UM_4_9_FAMILY)
|
||||
QCOM_HARDWARE_VARIANT := sdm845
|
||||
else ifneq ($(filter $(UM_4_14_FAMILY),$(TARGET_BOARD_PLATFORM)),)
|
||||
MSM_VIDC_TARGET_LIST := $(UM_4_14_FAMILY)
|
||||
QCOM_HARDWARE_VARIANT := sm8150
|
||||
else
|
||||
MSM_VIDC_TARGET_LIST := $(TARGET_BOARD_PLATFORM)
|
||||
QCOM_HARDWARE_VARIANT := $(TARGET_BOARD_PLATFORM)
|
||||
|
Reference in New Issue
Block a user