RK3368 GPU version Rogue M 1.28
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / rogue_m / build / linux / generic_arm_android / Makefile
1 ########################################################################### ###
2 #@Copyright     Copyright (c) Imagination Technologies Ltd. All Rights Reserved
3 #@License       Dual MIT/GPLv2
4
5 # The contents of this file are subject to the MIT license as set out below.
6
7 # Permission is hereby granted, free of charge, to any person obtaining a copy
8 # of this software and associated documentation files (the "Software"), to deal
9 # in the Software without restriction, including without limitation the rights
10 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 # copies of the Software, and to permit persons to whom the Software is
12 # furnished to do so, subject to the following conditions:
13
14 # The above copyright notice and this permission notice shall be included in
15 # all copies or substantial portions of the Software.
16
17 # Alternatively, the contents of this file may be used under the terms of
18 # the GNU General Public License Version 2 ("GPL") in which case the provisions
19 # of GPL are applicable instead of those above.
20
21 # If you wish to allow use of your version of this file only under the terms of
22 # GPL, and not to allow others to use your version of this file under the terms
23 # of the MIT license, indicate your decision by deleting the provisions above
24 # and replace them with the notice and other provisions required by GPL as set
25 # out in the file called "GPL-COPYING" included in this distribution. If you do
26 # not delete the provisions above, a recipient may use your version of this file
27 # under the terms of either the MIT license or GPL.
28
29 # This License is also included in this distribution in the file called
30 # "MIT-COPYING".
31
32 # EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
33 # PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
34 # BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
35 # PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
36 # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
37 # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
38 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
39 ### ###########################################################################
40
41 include ../config/preconfig.mk
42
43 # If a TARGET_PRODUCT is specified but not a TARGET_DEVICE, try to
44 # derive the TARGET_DEVICE from TARGET_PRODUCT.
45 #
46 ifeq ($(TARGET_DEVICE),)
47 override TARGET_DEVICE := \
48  $(patsubst mini_%,%,$(patsubst full_%,%,$(TARGET_PRODUCT)))
49 ifeq ($(TARGET_DEVICE),arm64_img)
50 override TARGET_DEVICE := arm64
51 endif
52 ifeq ($(TARGET_DEVICE),armv7a_neon_img)
53 override TARGET_DEVICE := armv7-a-neon
54 endif
55 endif
56
57 ifeq ($(TARGET_DEVICE),)
58 # Prefer arm64 now for MULTIARCH=1 builds.
59 # Use TARGET_DEVICE=armv7-a-neon for 32-bit only builds.
60 override TARGET_DEVICE := arm64
61 endif
62
63 ifeq ($(TARGET_DEVICE),armv7-a-neon)
64 # The 32-bit only Android build is still using separate toolchains for
65 # kernel and userspace, force this on the DDK side when it's detected.
66 KERNEL_CROSS_COMPILE ?= arm-eabi-
67 endif
68
69 ifeq ($(MULTIARCH),1)
70 override TARGET_DEVICE := rk3368
71 else
72 override TARGET_DEVICE := rk3368_32
73 endif
74 HAL_VARIANT ?= rk3368
75 PVR_SYSTEM := rk3368
76 NO_HARDWARE := 0
77 LDM_PLATFORM := 1
78 #RGX_BVNC ?= 1.75.2.30
79 #rockchip G6110
80 RGX_BVNC ?= 5.9.1.46
81
82 include ../common/android/paths.mk
83 include ../common/android/arch.mk
84 include ../common/android/features.mk
85
86 ifeq ($(SUPPORT_ADF),1)
87 ifneq ($(is_at_least_lollipop),1)
88 SYS_INCLUDES += \
89  -isystem $(ANDROID_ROOT)/device/img/generic/adf/libadf/include \
90  -isystem $(ANDROID_ROOT)/device/img/generic/adf/libadfhwc/include
91 endif
92 endif
93
94 PVR_LDM_PLATFORM_PRE_REGISTERED := 1
95
96 #zxl: build adf_fbdev.ko
97 ifeq ($(SUPPORT_ADF),1)
98 ADF_FBDEV ?= adf_fbdev
99 KERNEL_COMPONENTS += $(ADF_FBDEV)
100 endif
101
102 ifneq ($(SUPPORT_ADF),1)
103 ifeq ($(SUPPORT_DC),1)
104 DISPLAY_CONTROLLER ?= dc_fbdev
105 KERNEL_COMPONENTS += $(DISPLAY_CONTROLLER)
106 ifeq ($(DISPLAY_CONTROLLER),dc_example)
107 DC_EXAMPLE_WIDTH ?= 640
108 DC_EXAMPLE_HEIGHT ?= 480
109 DC_EXAMPLE_BIT_DEPTH ?= 32
110 DC_EXAMPLE_DPI ?= 160
111 endif
112 endif
113 endif
114
115 #zxl: 3 fb buffer
116 DC_FBDEV_NUM_PREFERRED_BUFFERS := 3
117
118 CACHEFLUSH_TYPE ?= CACHEFLUSH_GENERIC
119
120 include ../config/core.mk
121 include ../common/3rdparty.mk
122 include ../common/android/extra_config.mk