MALI: midgard: RK: add separate src dir of Midgard driver for RK Linux device
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / arm / midgard_for_linux / Kbuild
1 #
2 # (C) COPYRIGHT 2012,2014 ARM Limited. All rights reserved.
3 #
4 # This program is free software and is provided to you under the terms of the
5 # GNU General Public License version 2 as published by the Free Software
6 # Foundation, and any use by you of this program is subject to the terms
7 # of such GNU licence.
8 #
9 # A copy of the licence is included with the program, and can also be obtained
10 # from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
11 # Boston, MA  02110-1301, USA.
12 #
13 #
14
15 # add default config for RK Linux device for absence of Kconfig.
16 include drivers/gpu/arm/midgard_for_linux/default_config.mk
17
18 # Driver version string which is returned to userspace via an ioctl
19 MALI_RELEASE_NAME ?= "r9p0-05rel0"
20
21 # Paths required for build
22 KBASE_PATH = $(src)
23 KBASE_PLATFORM_PATH = $(KBASE_PATH)/platform_dummy
24 UMP_PATH = $(src)/../../../base
25
26 ifeq ($(CONFIG_MALI_ERROR_INJECTION),y)
27 MALI_ERROR_INJECT_ON = 1
28 endif
29
30 # Set up defaults if not defined by build system
31 MALI_CUSTOMER_RELEASE ?= 1
32 MALI_UNIT_TEST ?= 0
33 MALI_KERNEL_TEST_API ?= 0
34 MALI_ERROR_INJECT_ON ?= 0
35 MALI_MOCK_TEST ?= 0
36 MALI_COVERAGE ?= 0
37 MALI_INSTRUMENTATION_LEVEL ?= 0
38 # This workaround is for what seems to be a compiler bug we observed in
39 # GCC 4.7 on AOSP 4.3.  The bug caused an intermittent failure compiling
40 # the "_Pragma" syntax, where an error message is returned:
41 #
42 # "internal compiler error: unspellable token PRAGMA"
43 #
44 # This regression has thus far only been seen on the GCC 4.7 compiler bundled
45 # with AOSP 4.3.0.  So this makefile, intended for in-tree kernel builds
46 # which are not known to be used with AOSP, is hardcoded to disable the
47 # workaround, i.e. set the define to 0.
48 MALI_GCC_WORKAROUND_MIDCOM_4598 ?= 0
49
50 # Set up our defines, which will be passed to gcc
51 DEFINES = \
52         -DMALI_CUSTOMER_RELEASE=$(MALI_CUSTOMER_RELEASE) \
53         -DMALI_KERNEL_TEST_API=$(MALI_KERNEL_TEST_API) \
54         -DMALI_UNIT_TEST=$(MALI_UNIT_TEST) \
55         -DMALI_ERROR_INJECT_ON=$(MALI_ERROR_INJECT_ON) \
56         -DMALI_MOCK_TEST=$(MALI_MOCK_TEST) \
57         -DMALI_COVERAGE=$(MALI_COVERAGE) \
58         -DMALI_INSTRUMENTATION_LEVEL=$(MALI_INSTRUMENTATION_LEVEL) \
59         -DMALI_RELEASE_NAME=\"$(MALI_RELEASE_NAME)\" \
60         -DMALI_GCC_WORKAROUND_MIDCOM_4598=$(MALI_GCC_WORKAROUND_MIDCOM_4598)
61
62 ifeq ($(KBUILD_EXTMOD),)
63 # in-tree
64 DEFINES +=-DMALI_KBASE_THIRDPARTY_PATH=../../$(src)/platform/$(CONFIG_MALI_PLATFORM_THIRDPARTY_NAME)
65 else
66 # out-of-tree
67 DEFINES +=-DMALI_KBASE_THIRDPARTY_PATH=$(src)/platform/$(CONFIG_MALI_PLATFORM_THIRDPARTY_NAME)
68 endif
69
70 DEFINES += -I$(srctree)/drivers/staging/android
71
72 # Use our defines when compiling
73 ccflags-y += $(DEFINES) -I$(KBASE_PATH)   -I$(KBASE_PLATFORM_PATH) -I$(UMP_PATH) -I$(srctree)/include/linux
74 subdir-ccflags-y += $(DEFINES) -I$(KBASE_PATH)   -I$(KBASE_PLATFORM_PATH) -I$(OSK_PATH) -I$(UMP_PATH) -I$(srctree)/include/linux
75
76 SRC := \
77         mali_kbase_device.c \
78         mali_kbase_cache_policy.c \
79         mali_kbase_mem.c \
80         mali_kbase_mmu.c \
81         mali_kbase_ipa.c \
82         mali_kbase_jd.c \
83         mali_kbase_jd_debugfs.c \
84         mali_kbase_jm.c \
85         mali_kbase_gpuprops.c \
86         mali_kbase_js.c \
87         mali_kbase_js_ctx_attr.c \
88         mali_kbase_event.c \
89         mali_kbase_context.c \
90         mali_kbase_pm.c \
91         mali_kbase_config.c \
92         mali_kbase_instr.c \
93         mali_kbase_vinstr.c \
94         mali_kbase_softjobs.c \
95         mali_kbase_10969_workaround.c \
96         mali_kbase_hw.c \
97         mali_kbase_utility.c \
98         mali_kbase_debug.c \
99         mali_kbase_trace_timeline.c \
100         mali_kbase_gpu_memory_debugfs.c \
101         mali_kbase_mem_linux.c \
102         mali_kbase_core_linux.c \
103         mali_kbase_sync.c \
104         mali_kbase_sync_user.c \
105         mali_kbase_replay.c \
106         mali_kbase_mem_profile_debugfs.c \
107         mali_kbase_mmu_mode_lpae.c \
108         mali_kbase_disjoint_events.c \
109         mali_kbase_gator_api.c \
110         mali_kbase_debug_mem_view.c \
111         mali_kbase_debug_job_fault.c \
112         mali_kbase_smc.c \
113         mali_kbase_mem_pool.c \
114         mali_kbase_mem_pool_debugfs.c
115
116 ifeq ($(CONFIG_MALI_MIPE_ENABLED),y)
117         SRC += mali_kbase_tlstream.c
118         ifeq ($(MALI_UNIT_TEST),1)
119                 SRC += mali_kbase_tlstream_test.c
120         endif
121 endif
122
123 ifeq ($(MALI_CUSTOMER_RELEASE),0)
124         SRC += mali_kbase_regs_dump_debugfs.c
125 endif
126
127 # Job Scheduler Policy: Completely Fair Scheduler
128 SRC += mali_kbase_js_policy_cfs.c
129
130 ccflags-y += -I$(KBASE_PATH)
131
132 ifeq ($(CONFIG_MALI_PLATFORM_FAKE),y)
133         SRC += mali_kbase_platform_fake.c
134
135         ifeq ($(CONFIG_MALI_PLATFORM_VEXPRESS),y)
136                 SRC += platform/vexpress/mali_kbase_config_vexpress.c \
137                 platform/vexpress/mali_kbase_cpu_vexpress.c
138                 ccflags-y += -I$(src)/platform/vexpress
139         endif
140
141         ifeq ($(CONFIG_MALI_PLATFORM_RTSM_VE),y)
142                 SRC += platform/rtsm_ve/mali_kbase_config_vexpress.c
143                 ccflags-y += -I$(src)/platform/rtsm_ve
144         endif
145
146         ifeq ($(CONFIG_MALI_PLATFORM_JUNO),y)
147                 SRC += platform/juno/mali_kbase_config_vexpress.c
148                 ccflags-y += -I$(src)/platform/juno
149         endif
150
151         ifeq ($(CONFIG_MALI_PLATFORM_JUNO_SOC),y)
152                 SRC += platform/juno_soc/mali_kbase_config_juno_soc.c
153                 ccflags-y += -I$(src)/platform/juno_soc
154         endif
155
156         ifeq ($(CONFIG_MALI_PLATFORM_VEXPRESS_1XV7_A57),y)
157                 SRC += platform/vexpress_1xv7_a57/mali_kbase_config_vexpress.c
158                 ccflags-y += -I$(src)/platform/vexpress_1xv7_a57
159         endif
160
161         ifeq ($(CONFIG_MALI_PLATFORM_VEXPRESS_6XVIRTEX7_10MHZ),y)
162                 SRC += platform/vexpress_6xvirtex7_10mhz/mali_kbase_config_vexpress.c \
163                 platform/vexpress_6xvirtex7_10mhz/mali_kbase_cpu_vexpress.c
164                 ccflags-y += -I$(src)/platform/vexpress_6xvirtex7_10mhz
165         endif
166
167         ifeq ($(CONFIG_MALI_PLATFORM_A7_KIPLING),y)
168                 SRC += platform/a7_kipling/mali_kbase_config_a7_kipling.c \
169                 platform/a7_kipling/mali_kbase_cpu_a7_kipling.c
170                 ccflags-y += -I$(src)/platform/a7_kipling
171         endif
172
173         ifeq ($(CONFIG_MALI_PLATFORM_THIRDPARTY),y)
174         # remove begin and end quotes from the Kconfig string type
175         platform_name := $(shell echo $(CONFIG_MALI_PLATFORM_THIRDPARTY_NAME))
176         MALI_PLATFORM_THIRDPARTY_DIR := platform/$(platform_name)
177         ccflags-y += -I$(src)/$(MALI_PLATFORM_THIRDPARTY_DIR)
178         ifeq ($(CONFIG_MALI_MIDGARD),m)
179         include  $(src)/platform/$(platform_name)/Kbuild
180         else ifeq ($(CONFIG_MALI_MIDGARD),y)
181         obj-$(CONFIG_MALI_MIDGARD) += platform/
182         endif
183         endif
184 endif # CONFIG_MALI_PLATFORM_FAKE=y
185
186 ifeq ($(CONFIG_MALI_PLATFORM_THIRDPARTY),y)
187 # remove begin and end quotes from the Kconfig string type
188 platform_name := $(shell echo $(CONFIG_MALI_PLATFORM_THIRDPARTY_NAME))
189 MALI_PLATFORM_THIRDPARTY_DIR := platform/$(platform_name)
190 ccflags-y += -I$(src)/$(MALI_PLATFORM_THIRDPARTY_DIR)
191 ifeq ($(CONFIG_MALI_MIDGARD),m)
192 include  $(src)/platform/$(platform_name)/Kbuild
193 else ifeq ($(CONFIG_MALI_MIDGARD),y)
194 obj-$(CONFIG_MALI_MIDGARD) += platform/
195 endif
196 endif
197
198 # Tell the Linux build system from which .o file to create the kernel module
199 obj-$(CONFIG_MALI_MIDGARD) += mali_kbase.o
200
201 # Tell the Linux build system to enable building of our .c files
202 mali_kbase-y := $(SRC:.c=.o)
203
204 ifneq ($(wildcard $(src)/internal/Kbuild),)
205 ifeq ($(MALI_CUSTOMER_RELEASE),0)
206 # This include may set MALI_BACKEND_PATH and CONFIG_MALI_BACKEND_REAL
207 include  $(src)/internal/Kbuild
208 mali_kbase-y += $(INTERNAL:.c=.o)
209 endif
210 endif
211
212 MALI_BACKEND_PATH ?= backend
213 CONFIG_MALI_BACKEND ?= gpu
214 CONFIG_MALI_BACKEND_REAL ?= $(CONFIG_MALI_BACKEND)
215
216 ifeq ($(MALI_MOCK_TEST),1)
217 ifeq ($(CONFIG_MALI_BACKEND_REAL),gpu)
218 # Test functionality
219 mali_kbase-y += tests/internal/src/mock/mali_kbase_pm_driver_mock.o
220 endif
221 endif
222
223 include  $(src)/$(MALI_BACKEND_PATH)/$(CONFIG_MALI_BACKEND_REAL)/Kbuild
224 mali_kbase-y += $(BACKEND:.c=.o)
225
226 ccflags-y += -I$(src)/$(MALI_BACKEND_PATH)/$(CONFIG_MALI_BACKEND_REAL)
227 subdir-ccflags-y += -I$(src)/$(MALI_BACKEND_PATH)/$(CONFIG_MALI_BACKEND_REAL)
228
229 # Default to devicetree platform if neither a fake platform or a thirdparty
230 # platform is configured.
231 ifeq ($(CONFIG_MALI_PLATFORM_THIRDPARTY)$(CONFIG_MALI_PLATFORM_FAKE),)
232 CONFIG_MALI_PLATFORM_DEVICETREE := y
233 endif
234
235 mali_kbase-$(CONFIG_MALI_PLATFORM_DEVICETREE) += \
236         platform/devicetree/mali_kbase_runtime_pm.o \
237         platform/devicetree/mali_kbase_config_devicetree.o
238 ccflags-$(CONFIG_MALI_PLATFORM_DEVICETREE) += -I$(src)/platform/devicetree