1# 2# Copyright 2017 Advanced Micro Devices, Inc. 3# 4# Permission is hereby granted, free of charge, to any person obtaining a 5# copy of this software and associated documentation files (the "Software"), 6# to deal in the Software without restriction, including without limitation 7# the rights to use, copy, modify, merge, publish, distribute, sublicense, 8# and/or sell copies of the Software, and to permit persons to whom the 9# Software is furnished to do so, subject to the following conditions: 10# 11# The above copyright notice and this permission notice shall be included in 12# all copies or substantial portions of the Software. 13# 14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20# OTHER DEALINGS IN THE SOFTWARE. 21# 22# 23# Makefile for the drm device driver. This driver provides support for the 24# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. 25 26FULL_AMD_PATH=$(srctree)/$(src)/.. 27DISPLAY_FOLDER_NAME=display 28FULL_AMD_DISPLAY_PATH = $(FULL_AMD_PATH)/$(DISPLAY_FOLDER_NAME) 29 30ccflags-y := -I$(FULL_AMD_PATH)/include/asic_reg \ 31 -I$(FULL_AMD_PATH)/include \ 32 -I$(FULL_AMD_PATH)/amdgpu \ 33 -I$(FULL_AMD_PATH)/powerplay/inc \ 34 -I$(FULL_AMD_PATH)/acp/include \ 35 -I$(FULL_AMD_DISPLAY_PATH) \ 36 -I$(FULL_AMD_DISPLAY_PATH)/include \ 37 -I$(FULL_AMD_DISPLAY_PATH)/dc \ 38 -I$(FULL_AMD_DISPLAY_PATH)/amdgpu_dm \ 39 -I$(FULL_AMD_PATH)/amdkfd 40 41amdgpu-y := amdgpu_drv.o 42 43# add KMS driver 44amdgpu-y += amdgpu_device.o amdgpu_kms.o \ 45 amdgpu_atombios.o atombios_crtc.o amdgpu_connectors.o \ 46 atom.o amdgpu_fence.o amdgpu_ttm.o amdgpu_object.o amdgpu_gart.o \ 47 amdgpu_encoders.o amdgpu_display.o amdgpu_i2c.o \ 48 amdgpu_fb.o amdgpu_gem.o amdgpu_ring.o \ 49 amdgpu_cs.o amdgpu_bios.o amdgpu_benchmark.o amdgpu_test.o \ 50 amdgpu_pm.o atombios_dp.o amdgpu_afmt.o amdgpu_trace_points.o \ 51 atombios_encoders.o amdgpu_sa.o atombios_i2c.o \ 52 amdgpu_prime.o amdgpu_vm.o amdgpu_ib.o amdgpu_pll.o \ 53 amdgpu_ucode.o amdgpu_bo_list.o amdgpu_ctx.o amdgpu_sync.o \ 54 amdgpu_gtt_mgr.o amdgpu_vram_mgr.o amdgpu_virt.o amdgpu_atomfirmware.o \ 55 amdgpu_vf_error.o amdgpu_sched.o amdgpu_debugfs.o amdgpu_ids.o \ 56 amdgpu_gmc.o amdgpu_xgmi.o amdgpu_csa.o amdgpu_ras.o amdgpu_vm_cpu.o \ 57 amdgpu_vm_sdma.o 58 59# add asic specific block 60amdgpu-$(CONFIG_DRM_AMDGPU_CIK)+= cik.o cik_ih.o kv_smc.o kv_dpm.o \ 61 dce_v8_0.o gfx_v7_0.o cik_sdma.o uvd_v4_2.o vce_v2_0.o 62 63amdgpu-$(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 64 65amdgpu-y += \ 66 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 \ 67 vega20_reg_init.o nbio_v7_4.o 68 69# add DF block 70amdgpu-y += \ 71 df_v1_7.o \ 72 df_v3_6.o 73 74# add GMC block 75amdgpu-y += \ 76 gmc_v7_0.o \ 77 gmc_v8_0.o \ 78 gfxhub_v1_0.o mmhub_v1_0.o gmc_v9_0.o gfxhub_v1_1.o 79 80# add IH block 81amdgpu-y += \ 82 amdgpu_irq.o \ 83 amdgpu_ih.o \ 84 iceland_ih.o \ 85 tonga_ih.o \ 86 cz_ih.o \ 87 vega10_ih.o 88 89# add PSP block 90amdgpu-y += \ 91 amdgpu_psp.o \ 92 psp_v3_1.o \ 93 psp_v10_0.o \ 94 psp_v11_0.o 95 96# add SMC block 97amdgpu-y += \ 98 amdgpu_dpm.o 99 100# add DCE block 101amdgpu-y += \ 102 dce_v10_0.o \ 103 dce_v11_0.o \ 104 dce_virtual.o 105 106# add GFX block 107amdgpu-y += \ 108 amdgpu_gfx.o \ 109 amdgpu_rlc.o \ 110 gfx_v8_0.o \ 111 gfx_v9_0.o 112 113# add async DMA block 114amdgpu-y += \ 115 amdgpu_sdma.o \ 116 sdma_v2_4.o \ 117 sdma_v3_0.o \ 118 sdma_v4_0.o 119 120# add UVD block 121amdgpu-y += \ 122 amdgpu_uvd.o \ 123 uvd_v5_0.o \ 124 uvd_v6_0.o \ 125 uvd_v7_0.o 126 127# add VCE block 128amdgpu-y += \ 129 amdgpu_vce.o \ 130 vce_v3_0.o \ 131 vce_v4_0.o 132 133# add VCN block 134amdgpu-y += \ 135 amdgpu_vcn.o \ 136 vcn_v1_0.o 137 138# add amdkfd interfaces 139amdgpu-y += amdgpu_amdkfd.o 140 141ifneq ($(CONFIG_HSA_AMD),) 142AMDKFD_PATH := ../amdkfd 143include $(FULL_AMD_PATH)/amdkfd/Makefile 144amdgpu-y += $(AMDKFD_FILES) 145amdgpu-y += \ 146 amdgpu_amdkfd_fence.o \ 147 amdgpu_amdkfd_gpuvm.o \ 148 amdgpu_amdkfd_gfx_v8.o \ 149 amdgpu_amdkfd_gfx_v9.o 150 151ifneq ($(CONFIG_DRM_AMDGPU_CIK),) 152amdgpu-y += amdgpu_amdkfd_gfx_v7.o 153endif 154 155endif 156 157# add cgs 158amdgpu-y += amdgpu_cgs.o 159 160# GPU scheduler 161amdgpu-y += amdgpu_job.o 162 163# ACP componet 164ifneq ($(CONFIG_DRM_AMD_ACP),) 165amdgpu-y += amdgpu_acp.o 166 167AMDACPPATH := ../acp 168include $(FULL_AMD_PATH)/acp/Makefile 169 170amdgpu-y += $(AMD_ACP_FILES) 171endif 172 173amdgpu-$(CONFIG_COMPAT) += amdgpu_ioc32.o 174amdgpu-$(CONFIG_VGA_SWITCHEROO) += amdgpu_atpx_handler.o 175amdgpu-$(CONFIG_ACPI) += amdgpu_acpi.o 176amdgpu-$(CONFIG_MMU_NOTIFIER) += amdgpu_mn.o 177 178include $(FULL_AMD_PATH)/powerplay/Makefile 179 180amdgpu-y += $(AMD_POWERPLAY_FILES) 181 182ifneq ($(CONFIG_DRM_AMD_DC),) 183 184RELATIVE_AMD_DISPLAY_PATH = ../$(DISPLAY_FOLDER_NAME) 185include $(FULL_AMD_DISPLAY_PATH)/Makefile 186 187amdgpu-y += $(AMD_DISPLAY_FILES) 188 189endif 190 191obj-$(CONFIG_DRM_AMDGPU)+= amdgpu.o 192