2017-11-30 21:15:50 -05:00
#
# Copyright 2017 Advanced Micro Devices, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
2015-04-20 16:55:21 -04:00
#
# Makefile for the drm device driver. This driver provides support for the
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
2015-11-24 16:55:20 +08:00
FULL_AMD_PATH = $( src) /..
2017-09-12 15:58:20 -04:00
DISPLAY_FOLDER_NAME = display
FULL_AMD_DISPLAY_PATH = $( FULL_AMD_PATH) /$( DISPLAY_FOLDER_NAME)
2015-11-24 16:55:20 +08:00
2017-04-24 13:50:21 +09:00
ccflags-y := -I$( FULL_AMD_PATH) /include/asic_reg \
2015-11-24 16:55:20 +08:00
-I$( FULL_AMD_PATH) /include \
-I$( FULL_AMD_PATH) /amdgpu \
2015-09-22 17:05:20 -04:00
-I$( FULL_AMD_PATH) /powerplay/inc \
2017-09-12 15:58:20 -04:00
-I$( FULL_AMD_PATH) /acp/include \
-I$( FULL_AMD_DISPLAY_PATH) \
-I$( FULL_AMD_DISPLAY_PATH) /include \
-I$( FULL_AMD_DISPLAY_PATH) /dc \
2018-08-22 16:48:50 -04:00
-I$( FULL_AMD_DISPLAY_PATH) /amdgpu_dm \
-I$( FULL_AMD_PATH) /amdkfd
2015-04-20 16:55:21 -04:00
amdgpu-y := amdgpu_drv.o
# add KMS driver
amdgpu-y += amdgpu_device.o amdgpu_kms.o \
amdgpu_atombios.o atombios_crtc.o amdgpu_connectors.o \
atom.o amdgpu_fence.o amdgpu_ttm.o amdgpu_object.o amdgpu_gart.o \
amdgpu_encoders.o amdgpu_display.o amdgpu_i2c.o \
amdgpu_fb.o amdgpu_gem.o amdgpu_ring.o \
amdgpu_cs.o amdgpu_bios.o amdgpu_benchmark.o amdgpu_test.o \
amdgpu_pm.o atombios_dp.o amdgpu_afmt.o amdgpu_trace_points.o \
2016-01-15 11:05:21 +08:00
atombios_encoders.o amdgpu_sa.o atombios_i2c.o \
2015-04-20 16:55:21 -04:00
amdgpu_prime.o amdgpu_vm.o amdgpu_ib.o amdgpu_pll.o \
2016-09-09 16:32:33 +02:00
amdgpu_ucode.o amdgpu_bo_list.o amdgpu_ctx.o amdgpu_sync.o \
2017-02-16 00:47:32 -05:00
amdgpu_gtt_mgr.o amdgpu_vram_mgr.o amdgpu_virt.o amdgpu_atomfirmware.o \
2018-08-22 12:22:14 +02:00
amdgpu_vf_error.o amdgpu_sched.o amdgpu_debugfs.o amdgpu_ids.o \
2018-06-27 17:25:53 -04:00
amdgpu_gmc.o amdgpu_xgmi.o
2015-04-20 16:55:21 -04:00
2015-04-20 17:31:14 -04:00
# add asic specific block
2016-02-02 10:59:53 -05:00
amdgpu-$(CONFIG_DRM_AMDGPU_CIK) += cik.o cik_ih.o kv_smc.o kv_dpm.o \
2018-05-18 22:18:16 +03:00
ci_smc.o ci_dpm.o dce_v8_0.o gfx_v7_0.o cik_sdma.o uvd_v4_2.o vce_v2_0.o
2015-04-20 17:09:27 -04:00
2016-04-26 20:35:36 +05:30
amdgpu-$(CONFIG_DRM_AMDGPU_SI) += si.o gmc_v6_0.o gfx_v6_0.o si_ih.o si_dma.o dce_v6_0.o si_dpm.o si_smc.o
2016-01-19 14:19:53 +08:00
2015-04-20 17:31:14 -04:00
amdgpu-y += \
2018-03-23 14:42:28 -05:00
vi.o mxgpu_vi.o nbio_v6_1.o soc15.o emu_soc.o mxgpu_ai.o nbio_v7_0.o vega10_reg_init.o \
2018-03-23 14:44:28 -05:00
vega20_reg_init.o nbio_v7_4.o
2015-04-20 17:31:14 -04:00
2018-03-28 16:27:56 +08:00
# add DF block
amdgpu-y += \
2018-04-04 14:30:28 +08:00
df_v1_7.o \
df_v3_6.o
2018-03-28 16:27:56 +08:00
2015-04-20 17:31:14 -04:00
# add GMC block
amdgpu-y += \
2016-02-02 10:59:53 -05:00
gmc_v7_0.o \
2017-03-09 11:36:26 -05:00
gmc_v8_0.o \
2018-06-19 17:03:27 -05:00
gfxhub_v1_0.o mmhub_v1_0.o gmc_v9_0.o gfxhub_v1_1.o
2015-04-20 17:31:14 -04:00
2015-04-20 16:55:21 -04:00
# add IH block
amdgpu-y += \
amdgpu_irq.o \
2015-04-20 17:31:14 -04:00
amdgpu_ih.o \
iceland_ih.o \
tonga_ih.o \
2017-03-03 18:06:01 -05:00
cz_ih.o \
vega10_ih.o
2015-04-20 16:55:21 -04:00
2017-03-03 18:37:23 -05:00
# add PSP block
amdgpu-y += \
amdgpu_psp.o \
2017-05-04 15:28:30 -04:00
psp_v3_1.o \
2018-05-11 14:54:50 +08:00
psp_v10_0.o \
psp_v11_0.o
2017-03-03 18:37:23 -05:00
2015-04-20 16:55:21 -04:00
# add SMC block
amdgpu-y += \
2018-03-12 19:52:23 +08:00
amdgpu_dpm.o
2015-04-20 17:31:14 -04:00
# add DCE block
amdgpu-y += \
dce_v10_0.o \
2016-08-08 11:30:50 +08:00
dce_v11_0.o \
dce_virtual.o
2015-04-20 16:55:21 -04:00
# add GFX block
amdgpu-y += \
2015-04-20 17:31:14 -04:00
amdgpu_gfx.o \
2017-03-03 17:59:39 -05:00
gfx_v8_0.o \
gfx_v9_0.o
2015-04-20 17:31:14 -04:00
# add async DMA block
amdgpu-y += \
2018-08-02 17:23:33 +08:00
amdgpu_sdma.o \
2015-04-20 17:31:14 -04:00
sdma_v2_4.o \
2017-03-03 17:31:51 -05:00
sdma_v3_0.o \
sdma_v4_0.o
2015-04-20 16:55:21 -04:00
# add UVD block
amdgpu-y += \
2015-04-20 17:31:14 -04:00
amdgpu_uvd.o \
uvd_v5_0.o \
2017-03-03 18:13:26 -05:00
uvd_v6_0.o \
uvd_v7_0.o
2015-04-20 16:55:21 -04:00
# add VCE block
amdgpu-y += \
2015-04-20 17:31:14 -04:00
amdgpu_vce.o \
2017-03-03 18:27:49 -05:00
vce_v3_0.o \
vce_v4_0.o
2015-04-20 16:55:21 -04:00
2016-12-21 13:21:52 -05:00
# add VCN block
amdgpu-y += \
2016-12-28 11:57:38 -05:00
amdgpu_vcn.o \
vcn_v1_0.o
2016-12-21 13:21:52 -05:00
2015-06-12 21:35:14 +03:00
# add amdkfd interfaces
2018-05-18 22:18:16 +03:00
amdgpu-y += amdgpu_amdkfd.o
i f n e q ( $( CONFIG_HSA_AMD ) , )
2018-08-22 16:48:50 -04:00
AMDKFD_PATH := ../amdkfd
i n c l u d e $( FULL_AMD_PATH ) / a m d k f d / M a k e f i l e
amdgpu-y += $( AMDKFD_FILES)
2015-06-12 21:35:14 +03:00
amdgpu-y += \
2018-02-06 20:32:35 -05:00
amdgpu_amdkfd_fence.o \
2018-02-06 20:32:38 -05:00
amdgpu_amdkfd_gpuvm.o \
2018-04-10 17:33:01 -04:00
amdgpu_amdkfd_gfx_v8.o \
amdgpu_amdkfd_gfx_v9.o
2015-06-12 21:35:14 +03:00
2018-05-18 22:18:16 +03:00
i f n e q ( $( CONFIG_DRM_AMDGPU_CIK ) , )
amdgpu-y += amdgpu_amdkfd_gfx_v7.o
e n d i f
e n d i f
2015-07-28 14:20:03 -04:00
# add cgs
amdgpu-y += amdgpu_cgs.o
2015-08-16 22:55:02 -04:00
# GPU scheduler
2017-12-06 17:49:39 +01:00
amdgpu-y += amdgpu_job.o
2015-08-16 22:55:02 -04:00
2015-09-22 17:05:20 -04:00
# ACP componet
i f n e q ( $( CONFIG_DRM_AMD_ACP ) , )
amdgpu-y += amdgpu_acp.o
AMDACPPATH := ../acp
i n c l u d e $( FULL_AMD_PATH ) / a c p / M a k e f i l e
amdgpu-y += $( AMD_ACP_FILES)
e n d i f
2015-04-20 16:55:21 -04:00
amdgpu-$(CONFIG_COMPAT) += amdgpu_ioc32.o
amdgpu-$(CONFIG_VGA_SWITCHEROO) += amdgpu_atpx_handler.o
amdgpu-$(CONFIG_ACPI) += amdgpu_acpi.o
amdgpu-$(CONFIG_MMU_NOTIFIER) += amdgpu_mn.o
2015-12-02 10:56:57 +08:00
i n c l u d e $( FULL_AMD_PATH ) / p o w e r p l a y / M a k e f i l e
2015-12-02 17:46:21 -05:00
amdgpu-y += $( AMD_POWERPLAY_FILES)
2017-09-12 15:58:20 -04:00
i f n e q ( $( CONFIG_DRM_AMD_DC ) , )
RELATIVE_AMD_DISPLAY_PATH = ../$( DISPLAY_FOLDER_NAME)
i n c l u d e $( FULL_AMD_DISPLAY_PATH ) / M a k e f i l e
amdgpu-y += $( AMD_DISPLAY_FILES)
e n d i f
2015-04-20 16:55:21 -04:00
obj-$(CONFIG_DRM_AMDGPU) += amdgpu.o