Kbuild 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. # Driver version string which is returned to userspace via an ioctl
  15. MALI_RELEASE_NAME ?= "r12p0-04rel0"
  16. # Paths required for build
  17. KBASE_PATH = $(src)
  18. KBASE_PLATFORM_PATH = $(KBASE_PATH)/platform_dummy
  19. UMP_PATH = $(src)/../../../base
  20. # Set up our defines, which will be passed to gcc
  21. DEFINES = -DMALI_RELEASE_NAME=\"$(MALI_RELEASE_NAME)\"
  22. ifeq ($(KBUILD_EXTMOD),)
  23. # in-tree
  24. DEFINES +=-DMALI_KBASE_THIRDPARTY_PATH=../../$(src)/platform/$(CONFIG_MALI_PLATFORM_THIRDPARTY_NAME)
  25. else
  26. # out-of-tree
  27. DEFINES +=-DMALI_KBASE_THIRDPARTY_PATH=$(src)/platform/$(CONFIG_MALI_PLATFORM_THIRDPARTY_NAME)
  28. endif
  29. DEFINES += -I$(srctree)/drivers/staging/android
  30. # Use our defines when compiling
  31. ccflags-y += $(DEFINES) -I$(KBASE_PATH) -I$(KBASE_PLATFORM_PATH) -I$(UMP_PATH) -I$(srctree)/include/linux
  32. subdir-ccflags-y += $(DEFINES) -I$(KBASE_PATH) -I$(KBASE_PLATFORM_PATH) -I$(OSK_PATH) -I$(UMP_PATH) -I$(srctree)/include/linux
  33. SRC := \
  34. mali_kbase_device.c \
  35. mali_kbase_cache_policy.c \
  36. mali_kbase_mem.c \
  37. mali_kbase_mmu.c \
  38. mali_kbase_ipa.c \
  39. mali_kbase_jd.c \
  40. mali_kbase_jm.c \
  41. mali_kbase_gpuprops.c \
  42. mali_kbase_js.c \
  43. mali_kbase_js_ctx_attr.c \
  44. mali_kbase_event.c \
  45. mali_kbase_context.c \
  46. mali_kbase_pm.c \
  47. mali_kbase_config.c \
  48. mali_kbase_instr.c \
  49. mali_kbase_vinstr.c \
  50. mali_kbase_softjobs.c \
  51. mali_kbase_10969_workaround.c \
  52. mali_kbase_hw.c \
  53. mali_kbase_utility.c \
  54. mali_kbase_debug.c \
  55. mali_kbase_trace_timeline.c \
  56. mali_kbase_mem_linux.c \
  57. mali_kbase_core_linux.c \
  58. mali_kbase_sync.c \
  59. mali_kbase_sync_user.c \
  60. mali_kbase_replay.c \
  61. mali_kbase_mmu_mode_lpae.c \
  62. mali_kbase_disjoint_events.c \
  63. mali_kbase_smc.c \
  64. mali_kbase_mem_pool.c \
  65. mali_kbase_tlstream.c
  66. # Job Scheduler Policy: Completely Fair Scheduler
  67. SRC += mali_kbase_js_policy_cfs.c
  68. ccflags-y += -I$(KBASE_PATH)
  69. ifeq ($(CONFIG_MALI_PLATFORM_THIRDPARTY),y)
  70. # remove begin and end quotes from the Kconfig string type
  71. platform_name := $(shell echo $(CONFIG_MALI_PLATFORM_THIRDPARTY_NAME))
  72. MALI_PLATFORM_THIRDPARTY_DIR := platform/$(platform_name)
  73. ccflags-y += -I$(src)/$(MALI_PLATFORM_THIRDPARTY_DIR)
  74. ifeq ($(CONFIG_MALI_MIDGARD),m)
  75. include $(src)/platform/$(platform_name)/Kbuild
  76. else ifeq ($(CONFIG_MALI_MIDGARD),y)
  77. obj-$(CONFIG_MALI_MIDGARD) += platform/
  78. endif
  79. endif
  80. # Tell the Linux build system from which .o file to create the kernel module
  81. obj-$(CONFIG_MALI_MIDGARD) += mali_kbase.o
  82. # Tell the Linux build system to enable building of our .c files
  83. mali_kbase-y := $(SRC:.c=.o)
  84. mali_kbase-$(CONFIG_MALI_DMA_FENCE) += mali_kbase_dma_fence.o
  85. MALI_BACKEND_PATH ?= backend
  86. CONFIG_MALI_BACKEND ?= gpu
  87. CONFIG_MALI_BACKEND_REAL ?= $(CONFIG_MALI_BACKEND)
  88. include $(src)/$(MALI_BACKEND_PATH)/$(CONFIG_MALI_BACKEND_REAL)/Kbuild
  89. mali_kbase-y += $(BACKEND:.c=.o)
  90. ccflags-y += -I$(src)/$(MALI_BACKEND_PATH)/$(CONFIG_MALI_BACKEND_REAL)
  91. subdir-ccflags-y += -I$(src)/$(MALI_BACKEND_PATH)/$(CONFIG_MALI_BACKEND_REAL)
  92. # Default to devicetree platform if a thirdparty platform is not configured.
  93. ifeq ($(CONFIG_MALI_PLATFORM_THIRDPARTY),)
  94. CONFIG_MALI_PLATFORM_DEVICETREE := y
  95. endif
  96. mali_kbase-$(CONFIG_MALI_PLATFORM_DEVICETREE) += \
  97. platform/devicetree/mali_kbase_runtime_pm.o \
  98. platform/devicetree/mali_kbase_config_devicetree.o
  99. ccflags-$(CONFIG_MALI_PLATFORM_DEVICETREE) += -I$(src)/platform/devicetree