blob: d57c728f05d1beac108069e10c69f8f51791b447 [file] [log] [blame]
John Stultz16100f62017-05-03 11:12:18 -07001#
2# Copyright (C) 2016 ARM Limited. All rights reserved.
3#
4# Copyright (C) 2008 The Android Open Source Project
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18LOCAL_PATH := $(call my-dir)
19
20# Include platform specific makefiles
21include $(if $(wildcard $(LOCAL_PATH)/Android.$(TARGET_BOARD_PLATFORM).mk), $(LOCAL_PATH)/Android.$(TARGET_BOARD_PLATFORM).mk,)
22
23#
24# Static hardware defines
25#
26# These defines are used in case runtime detection does not find the
27# user-space driver to read out hardware capabilities
28
29# GPU support for AFBC 1.0
30MALI_GPU_SUPPORT_AFBC_BASIC?=0
31# GPU support for AFBC 1.1 block split
32MALI_GPU_SUPPORT_AFBC_SPLITBLK?=0
33# GPU support for AFBC 1.1 wide block
34MALI_GPU_SUPPORT_AFBC_WIDEBLK?=0
35# GPU support for AFBC 1.2 tiled headers
36MALI_GPU_SUPPORT_AFBC_TILED_HEADERS?=0
37# GPU support YUV AFBC formats in wide block
38MALI_GPU_USE_YUV_AFBC_WIDEBLK?=0
39
40# VPU version we support
41MALI_VIDEO_VERSION?=0
42# DPU version we support
43MALI_DISPLAY_VERSION?=0
44
45#
46# Software behaviour defines
47#
48
49# Use ION DMA heap for all allocations. Default is system heap.
50GRALLOC_USE_ION_DMA_HEAP?=0
51# Use ION Compound heap for all allocations. Default is system heap.
52GRALLOC_USE_ION_COMPOUND_PAGE_HEAP?=0
53# Properly initializes an empty AFBC buffer
54GRALLOC_INIT_AFBC?=0
55# fbdev bitdepth to use
56GRALLOC_DEPTH?=GRALLOC_32_BITS
57# When enabled, forces display framebuffer format to BGRA_8888
58GRALLOC_FB_SWAP_RED_BLUE?=1
59# Disables the framebuffer HAL device. When a hwc impl is available.
60GRALLOC_DISABLE_FRAMEBUFFER_HAL?=0
61# When enabled, buffers will never be allocated with AFBC
62GRALLOC_ARM_NO_EXTERNAL_AFBC?=0
63# Minimum buffer dimensions in pixels when buffer will use AFBC
64GRALLOC_DISP_W?=0
65GRALLOC_DISP_H?=0
66# Vsync backend(not used)
67GRALLOC_VSYNC_BACKEND?=default
68
69# HAL module implemenation, not prelinked and stored in
70# hw/<OVERLAY_HARDWARE_MODULE_ID>.<ro.product.board>.so
71include $(CLEAR_VARS)
72include $(BUILD_SYSTEM)/version_defaults.mk
73
74ifeq ($(TARGET_BOARD_PLATFORM), juno)
75ifeq ($(MALI_MMSS), 1)
76
77# Use latest default MMSS build configuration if not already defined
78ifeq ($(MALI_DISPLAY_VERSION), 0)
79MALI_DISPLAY_VERSION = 650
80endif
81ifeq ($(MALI_VIDEO_VERSION), 0)
82MALI_VIDEO_VERSION = 550
83endif
84
85GRALLOC_FB_SWAP_RED_BLUE = 0
86GRALLOC_USE_ION_DMA_HEAP = 1
87endif
88endif
89
90ifeq ($(TARGET_BOARD_PLATFORM), armboard_v7a)
91ifeq ($(GRALLOC_MALI_DP),true)
92 GRALLOC_FB_SWAP_RED_BLUE = 0
93 GRALLOC_DISABLE_FRAMEBUFFER_HAL=1
94 MALI_DISPLAY_VERSION = 550
95 GRALLOC_USE_ION_DMA_HEAP=1
96endif
97endif
98
99ifneq ($(MALI_DISPLAY_VERSION), 0)
100#if Mali display is available, should disable framebuffer HAL
101GRALLOC_DISABLE_FRAMEBUFFER_HAL := 1
102#if Mali display is available, AFBC buffers should be initialised after allocation
103GRALLOC_INIT_AFBC := 1
104endif
105
106ifeq ($(GRALLOC_USE_ION_DMA_HEAP), 1)
107ifeq ($(GRALLOC_USE_ION_COMPOUND_PAGE_HEAP), 1)
108$(error GRALLOC_USE_ION_DMA_HEAP and GRALLOC_USE_ION_COMPOUND_PAGE_HEAP can't be enabled at the same time)
109endif
110endif
111
112LOCAL_C_INCLUDES := $(MALI_LOCAL_PATH) $(MALI_DDK_INCLUDES)
113
114# General compilation flags
115LOCAL_CFLAGS := -Werror -DLOG_TAG=\"gralloc\" -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION)
116
117# Static hw flags
118LOCAL_CFLAGS += -DMALI_GPU_SUPPORT_AFBC_BASIC=$(MALI_GPU_SUPPORT_AFBC_BASIC)
119LOCAL_CFLAGS += -DMALI_GPU_SUPPORT_AFBC_SPLITBLK=$(MALI_GPU_SUPPORT_AFBC_SPLITBLK)
120LOCAL_CFLAGS += -DMALI_GPU_SUPPORT_AFBC_WIDEBLK=$(MALI_GPU_SUPPORT_AFBC_WIDEBLK)
121LOCAL_CFLAGS += -DMALI_GPU_USE_YUV_AFBC_WIDEBLK=$(MALI_GPU_USE_YUV_AFBC_WIDEBLK)
122LOCAL_CFLAGS += -DMALI_GPU_SUPPORT_AFBC_TILED_HEADERS=$(MALI_GPU_SUPPORT_AFBC_TILED_HEADERS)
123
124LOCAL_CFLAGS += -DMALI_DISPLAY_VERSION=$(MALI_DISPLAY_VERSION)
125LOCAL_CFLAGS += -DMALI_VIDEO_VERSION=$(MALI_VIDEO_VERSION)
126
127# Software behaviour flags
128LOCAL_CFLAGS += -DGRALLOC_DISP_W=$(GRALLOC_DISP_W)
129LOCAL_CFLAGS += -DGRALLOC_DISP_H=$(GRALLOC_DISP_H)
130LOCAL_CFLAGS += -DDISABLE_FRAMEBUFFER_HAL=$(GRALLOC_DISABLE_FRAMEBUFFER_HAL)
131LOCAL_CFLAGS += -DGRALLOC_USE_ION_DMA_HEAP=$(GRALLOC_USE_ION_DMA_HEAP)
132LOCAL_CFLAGS += -DGRALLOC_USE_ION_COMPOUND_PAGE_HEAP=$(GRALLOC_USE_ION_COMPOUND_PAGE_HEAP)
133LOCAL_CFLAGS += -DGRALLOC_INIT_AFBC=$(GRALLOC_INIT_AFBC)
134LOCAL_CFLAGS += -D$(GRALLOC_DEPTH)
135LOCAL_CFLAGS += -DGRALLOC_FB_SWAP_RED_BLUE=$(GRALLOC_FB_SWAP_RED_BLUE)
136LOCAL_CFLAGS += -DGRALLOC_ARM_NO_EXTERNAL_AFBC=$(GRALLOC_ARM_NO_EXTERNAL_AFBC)
137
138LOCAL_SHARED_LIBRARIES := libhardware liblog libcutils libGLESv1_CM libion
139
140LOCAL_PRELINK_MODULE := false
141LOCAL_MODULE_RELATIVE_PATH := hw
142LOCAL_MODULE_PATH_32 := $(TARGET_OUT_VENDOR)/lib
143LOCAL_MODULE_PATH_64 := $(TARGET_OUT_VENDOR)/lib64
144ifeq ($(TARGET_BOARD_PLATFORM),)
145LOCAL_MODULE := gralloc.default
146else
147LOCAL_MODULE := gralloc.$(TARGET_BOARD_PLATFORM)
148endif
149
150LOCAL_MODULE_TAGS := optional
151LOCAL_MULTILIB := both
152
153LOCAL_SRC_FILES := \
154 gralloc_module.cpp \
155 alloc_device.cpp \
156 alloc_ion.cpp \
157 gralloc_module_ion.cpp \
158 framebuffer_device.cpp \
159 gralloc_buffer_priv.cpp \
160 gralloc_vsync_${GRALLOC_VSYNC_BACKEND}.cpp \
161 mali_gralloc_formats.cpp
162
163LOCAL_MODULE_OWNER := arm
164
165include $(BUILD_SHARED_LIBRARY)