ab2a41ebda8a9c681e91d8c8143f2f3b7b69f80d
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / drivers / gpu / arm / mali400 / r5p2_rel0 / Kbuild
1 #
2 # Copyright (C) 2010-2011 ARM Limited. All rights reserved.
3
4 # This program is free software and is provided to you under the terms of the GNU General Public License version 2
5 # as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
6
7 # A copy of the licence is included with the program, and can also be obtained from Free Software
8 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
9 #
10
11 # This file is called by the Linux build system.
12
13 # set up defaults if not defined by the user
14 TIMESTAMP ?= default
15 OS_MEMORY_KERNEL_BUFFER_SIZE_IN_MB ?= 16
16 USING_GPU_UTILIZATION ?= 1
17 PROFILING_SKIP_PP_JOBS ?= 0
18 PROFILING_SKIP_PP_AND_GP_JOBS ?= 0
19 MALI_PP_SCHEDULER_FORCE_NO_JOB_OVERLAP ?= 0
20 MALI_PP_SCHEDULER_KEEP_SUB_JOB_STARTS_ALIGNED ?= 0
21 MALI_PP_SCHEDULER_FORCE_NO_JOB_OVERLAP_BETWEEN_APPS ?= 0
22 MALI_UPPER_HALF_SCHEDULING ?= 1
23 MALI_ENABLE_CPU_CYCLES ?= 0
24
25 # For customer releases the Linux Device Drivers will be provided as ARM proprietary and GPL releases:
26 # The ARM proprietary product will only include the license/proprietary directory
27 # The GPL product will only include the license/gpl directory
28 ifeq ($(wildcard $(src)/linux/license/gpl/*),)
29     ccflags-y += -I$(src)/linux/license/proprietary
30     ifeq ($(CONFIG_MALI400_PROFILING),y)
31         $(error Profiling is incompatible with non-GPL license)
32     endif
33     ifeq ($(CONFIG_PM_RUNTIME),y)
34         $(error Runtime PM is incompatible with non-GPL license)
35     endif
36     ifeq ($(CONFIG_DMA_SHARED_BUFFER),y)
37         $(error DMA-BUF is incompatible with non-GPL license)
38     endif
39     $(error Linux Device integration is incompatible with non-GPL license)
40 else
41     ccflags-y += -I$(src)/linux/license/gpl
42 endif
43
44 ifeq ($(USING_GPU_UTILIZATION), 1)
45     ifeq ($(USING_DVFS), 1)
46         $(error USING_GPU_UTILIZATION conflict with USING_DVFS you can read the Integration Guide to choose which one do you need)
47     endif
48 endif
49
50 mali-y += \
51         linux/mali_osk_atomics.o \
52         linux/mali_osk_irq.o \
53         linux/mali_osk_wq.o \
54         linux/mali_osk_locks.o \
55         linux/mali_osk_wait_queue.o \
56         linux/mali_osk_low_level_mem.o \
57         linux/mali_osk_math.o \
58         linux/mali_osk_memory.o \
59         linux/mali_osk_misc.o \
60         linux/mali_osk_mali.o \
61         linux/mali_osk_notification.o \
62         linux/mali_osk_time.o \
63         linux/mali_osk_timers.o
64
65 mali-y += linux/mali_memory.o linux/mali_memory_os_alloc.o
66 mali-y += linux/mali_memory_external.o
67 mali-y += linux/mali_memory_block_alloc.o
68
69 mali-y += \
70         linux/mali_memory_manager.o \
71         linux/mali_memory_virtual.o \
72         linux/mali_memory_util.o \
73         linux/mali_memory_cow.o
74
75 mali-y += \
76         linux/mali_ukk_mem.o \
77         linux/mali_ukk_gp.o \
78         linux/mali_ukk_pp.o \
79         linux/mali_ukk_core.o \
80         linux/mali_ukk_soft_job.o \
81         linux/mali_ukk_timeline.o
82
83 # Source files which always are included in a build
84 mali-y += \
85         common/mali_kernel_core.o \
86         linux/mali_kernel_linux.o \
87         common/mali_session.o \
88         linux/mali_device_pause_resume.o \
89         common/mali_kernel_vsync.o \
90         linux/mali_ukk_vsync.o \
91         linux/mali_kernel_sysfs.o \
92         common/mali_mmu.o \
93         common/mali_mmu_page_directory.o \
94         common/mali_mem_validation.o \
95         common/mali_hw_core.o \
96         common/mali_gp.o \
97         common/mali_pp.o \
98         common/mali_pp_job.o \
99         common/mali_gp_job.o \
100         common/mali_soft_job.o \
101         common/mali_scheduler.o \
102         common/mali_executor.o \
103         common/mali_group.o \
104         common/mali_dlbu.o \
105         common/mali_broadcast.o \
106         common/mali_pm.o \
107         common/mali_pmu.o \
108         common/mali_user_settings_db.o \
109         common/mali_kernel_utilization.o \
110         common/mali_control_timer.o \
111         common/mali_l2_cache.o \
112         common/mali_timeline.o \
113         common/mali_timeline_fence_wait.o \
114         common/mali_timeline_sync_fence.o \
115         common/mali_spinlock_reentrant.o \
116         common/mali_pm_domain.o \
117         linux/mali_osk_pm.o \
118         linux/mali_pmu_power_up_down.o \
119         __malidrv_build_info.o
120
121 ifneq ($(MALI_PLATFORM_FILES),)
122         mali-y += $(MALI_PLATFORM_FILES:.c=.o)
123 endif
124
125 mali-$(CONFIG_MALI400_PROFILING) += linux/mali_ukk_profiling.o
126 mali-$(CONFIG_MALI400_PROFILING) += linux/mali_osk_profiling.o
127
128 mali-$(CONFIG_MALI400_INTERNAL_PROFILING) += linux/mali_profiling_internal.o timestamp-$(TIMESTAMP)/mali_timestamp.o
129 ccflags-$(CONFIG_MALI400_INTERNAL_PROFILING) += -I$(src)/timestamp-$(TIMESTAMP)
130
131 mali-$(CONFIG_DMA_SHARED_BUFFER) += linux/mali_memory_dma_buf.o
132 mali-$(CONFIG_SYNC) += linux/mali_sync.o
133 ccflags-$(CONFIG_SYNC) += -Idrivers/staging/android
134
135 mali-$(CONFIG_MALI400_UMP) += linux/mali_memory_ump.o
136
137 mali-$(CONFIG_MALI_DVFS) += common/mali_dvfs_policy.o
138
139 # Tell the Linux build system from which .o file to create the kernel module
140 obj-$(CONFIG_MALI400) := mali.o
141
142 ccflags-y += $(EXTRA_DEFINES)
143
144 # Set up our defines, which will be passed to gcc
145 ccflags-y += -DSPRD_GPU_BOOST
146
147 ccflags-y += -DMALI_PP_SCHEDULER_FORCE_NO_JOB_OVERLAP=$(MALI_PP_SCHEDULER_FORCE_NO_JOB_OVERLAP)
148 ccflags-y += -DMALI_PP_SCHEDULER_KEEP_SUB_JOB_STARTS_ALIGNED=$(MALI_PP_SCHEDULER_KEEP_SUB_JOB_STARTS_ALIGNED)
149 ccflags-y += -DMALI_PP_SCHEDULER_FORCE_NO_JOB_OVERLAP_BETWEEN_APPS=$(MALI_PP_SCHEDULER_FORCE_NO_JOB_OVERLAP_BETWEEN_APPS)
150 ccflags-y += -DMALI_STATE_TRACKING=1
151 ccflags-y += -DMALI_OS_MEMORY_KERNEL_BUFFER_SIZE_IN_MB=$(OS_MEMORY_KERNEL_BUFFER_SIZE_IN_MB)
152 ccflags-y += -DUSING_GPU_UTILIZATION=$(USING_GPU_UTILIZATION)
153 ccflags-y += -DMALI_ENABLE_CPU_CYCLES=$(MALI_ENABLE_CPU_CYCLES)
154
155 ifeq ($(MALI_UPPER_HALF_SCHEDULING),1)
156         ccflags-y += -DMALI_UPPER_HALF_SCHEDULING
157 endif
158
159 ccflags-$(CONFIG_MALI400_UMP) += -I$(src)/../ump/include/ump
160 ccflags-$(CONFIG_MALI400_DEBUG) += -DDEBUG
161
162 # Use our defines when compiling
163 ccflags-y += -I$(src) -I$(src)/include -I$(src)/common -I$(src)/linux -I$(src)/platform -I$(src)/platform/$(MALI_PLATFORM)
164
165 # Get subversion revision number, fall back to only ${MALI_RELEASE_NAME} if no svn info is available
166 MALI_RELEASE_NAME=$(shell cat $(src)/.version 2> /dev/null)
167
168 #SVN_INFO = (cd $(src); svn info 2>/dev/null)
169
170 ifneq ($(shell $(SVN_INFO) 2>/dev/null),)
171 # SVN detected
172 SVN_REV := $(shell $(SVN_INFO) | grep '^Revision: '| sed -e 's/^Revision: //' 2>/dev/null)
173 DRIVER_REV := $(MALI_RELEASE_NAME)-r$(SVN_REV)
174 CHANGE_DATE := $(shell $(SVN_INFO) | grep '^Last Changed Date: ' | cut -d: -f2- | cut -b2-)
175 CHANGED_REVISION := $(shell $(SVN_INFO) | grep '^Last Changed Rev: ' | cut -d: -f2- | cut -b2-)
176 REPO_URL := $(shell $(SVN_INFO) | grep '^URL: ' | cut -d: -f2- | cut -b2-)
177
178 else # SVN
179 #GIT_REV := $(shell cd $(src); git describe --always 2>/dev/null)
180 ifneq ($(GIT_REV),)
181 # Git detected
182 DRIVER_REV := $(MALI_RELEASE_NAME)-$(GIT_REV)
183 CHANGE_DATE := $(shell cd $(src); git log -1 --format="%ci")
184 CHANGED_REVISION := $(GIT_REV)
185 REPO_URL := $(shell cd $(src); git describe --all --always 2>/dev/null)
186
187 else # Git
188 # No Git or SVN detected
189 DRIVER_REV := $(MALI_RELEASE_NAME)
190 CHANGE_DATE := $(MALI_RELEASE_NAME)
191 CHANGED_REVISION := $(MALI_RELEASE_NAME)
192 endif
193 endif
194
195 ccflags-y += -DSVN_REV_STRING=\"$(DRIVER_REV)\"
196 ccflags-y += -fno-PIC
197
198 VERSION_STRINGS :=
199 VERSION_STRINGS += API_VERSION=$(shell cd $(src); grep "\#define _MALI_API_VERSION" $(FILES_PREFIX)include/linux/mali/mali_utgard_uk_types.h | cut -d' ' -f 3 )
200 VERSION_STRINGS += REPO_URL=$(REPO_URL)
201 VERSION_STRINGS += REVISION=$(DRIVER_REV)
202 VERSION_STRINGS += CHANGED_REVISION=$(CHANGED_REVISION)
203 VERSION_STRINGS += CHANGE_DATE=$(CHANGE_DATE)
204 #VERSION_STRINGS += BUILD_DATE=$(shell date)
205 ifdef CONFIG_MALI400_DEBUG
206 VERSION_STRINGS += BUILD=debug
207 else
208 VERSION_STRINGS += BUILD=release
209 endif
210 VERSION_STRINGS += TARGET_PLATFORM=$(TARGET_PLATFORM)
211 VERSION_STRINGS += MALI_PLATFORM=$(MALI_PLATFORM)
212 VERSION_STRINGS += KDIR=$(KDIR)
213 VERSION_STRINGS += OS_MEMORY_KERNEL_BUFFER_SIZE_IN_MB=$(OS_MEMORY_KERNEL_BUFFER_SIZE_IN_MB)
214 VERSION_STRINGS += USING_UMP=$(CONFIG_MALI400_UMP)
215 VERSION_STRINGS += USING_PROFILING=$(CONFIG_MALI400_PROFILING)
216 VERSION_STRINGS += USING_INTERNAL_PROFILING=$(CONFIG_MALI400_INTERNAL_PROFILING)
217 VERSION_STRINGS += USING_GPU_UTILIZATION=$(USING_GPU_UTILIZATION)
218 VERSION_STRINGS += USING_DVFS=$(CONFIG_MALI_DVFS)
219 VERSION_STRINGS += MALI_UPPER_HALF_SCHEDULING=$(MALI_UPPER_HALF_SCHEDULING)
220
221 # Create file with Mali driver configuration
222 $(src)/__malidrv_build_info.c:
223         @echo 'const char *__malidrv_build_info(void) { return "malidrv: $(VERSION_STRINGS)";}' > $(src)/__malidrv_build_info.c