2017-12-01 10:15:50 +08: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-21 04:55:21 +08:00
|
|
|
#
|
|
|
|
# Makefile for the drm device driver. This driver provides support for the
|
|
|
|
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
|
|
|
|
|
2019-03-29 19:32:41 +08:00
|
|
|
FULL_AMD_PATH=$(srctree)/$(src)/..
|
2017-09-13 03:58:20 +08: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 12:50:21 +08: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 \
|
2020-08-13 16:39:25 +08:00
|
|
|
-I$(FULL_AMD_PATH)/pm/inc \
|
2017-09-13 03:58:20 +08: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-23 04:48:50 +08:00
|
|
|
-I$(FULL_AMD_DISPLAY_PATH)/amdgpu_dm \
|
|
|
|
-I$(FULL_AMD_PATH)/amdkfd
|
2015-04-21 04:55:21 +08: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 \
|
2020-08-13 16:39:25 +08:00
|
|
|
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 \
|
2019-05-06 19:22:06 +08:00
|
|
|
amdgpu_dma_buf.o amdgpu_vm.o amdgpu_ib.o amdgpu_pll.o \
|
2016-09-09 22:32:33 +08:00
|
|
|
amdgpu_ucode.o amdgpu_bo_list.o amdgpu_ctx.o amdgpu_sync.o \
|
2017-02-16 13:47:32 +08:00
|
|
|
amdgpu_gtt_mgr.o amdgpu_vram_mgr.o amdgpu_virt.o amdgpu_atomfirmware.o \
|
2018-08-22 18:22:14 +08:00
|
|
|
amdgpu_vf_error.o amdgpu_sched.o amdgpu_debugfs.o amdgpu_ids.o \
|
2019-09-03 06:23:12 +08:00
|
|
|
amdgpu_gmc.o amdgpu_mmhub.o amdgpu_xgmi.o amdgpu_csa.o amdgpu_ras.o amdgpu_vm_cpu.o \
|
2019-10-02 20:01:22 +08:00
|
|
|
amdgpu_vm_sdma.o amdgpu_discovery.o amdgpu_ras_eeprom.o amdgpu_nbio.o \
|
2020-10-26 14:57:13 +08:00
|
|
|
amdgpu_umc.o smu_v11_0_i2c.o amdgpu_fru_eeprom.o amdgpu_rap.o \
|
2020-12-09 10:57:05 +08:00
|
|
|
amdgpu_fw_attestation.o amdgpu_securedisplay.o
|
2019-07-08 22:41:43 +08:00
|
|
|
|
|
|
|
amdgpu-$(CONFIG_PERF_EVENTS) += amdgpu_pmu.o
|
2015-04-21 04:55:21 +08:00
|
|
|
|
2015-04-21 05:31:14 +08:00
|
|
|
# add asic specific block
|
2020-08-13 16:39:25 +08:00
|
|
|
amdgpu-$(CONFIG_DRM_AMDGPU_CIK)+= cik.o cik_ih.o \
|
2019-01-17 00:55:04 +08:00
|
|
|
dce_v8_0.o gfx_v7_0.o cik_sdma.o uvd_v4_2.o vce_v2_0.o
|
2015-04-21 05:09:27 +08:00
|
|
|
|
2020-08-13 16:39:25 +08:00
|
|
|
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 \
|
2020-06-11 04:19:19 +08:00
|
|
|
uvd_v3_1.o
|
2016-01-19 14:19:53 +08:00
|
|
|
|
2015-04-21 05:31:14 +08:00
|
|
|
amdgpu-y += \
|
2018-03-24 03:42:28 +08: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 \
|
2019-07-09 22:21:53 +08:00
|
|
|
vega20_reg_init.o nbio_v7_4.o nbio_v2_3.o nv.o navi10_reg_init.o navi14_reg_init.o \
|
2020-08-28 00:02:37 +08:00
|
|
|
arct_reg_init.o navi12_reg_init.o mxgpu_nv.o sienna_cichlid_reg_init.o vangogh_reg_init.o \
|
2021-03-16 21:36:28 +08:00
|
|
|
nbio_v7_2.o dimgrey_cavefish_reg_init.o hdp_v4_0.o hdp_v5_0.o aldebaran_reg_init.o aldebaran.o
|
2015-04-21 05:31:14 +08: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-21 05:31:14 +08:00
|
|
|
# add GMC block
|
|
|
|
amdgpu-y += \
|
2016-02-02 23:59:53 +08:00
|
|
|
gmc_v7_0.o \
|
2017-03-10 00:36:26 +08:00
|
|
|
gmc_v8_0.o \
|
2019-07-09 22:18:03 +08:00
|
|
|
gfxhub_v1_0.o mmhub_v1_0.o gmc_v9_0.o gfxhub_v1_1.o mmhub_v9_4.o \
|
2020-09-05 23:15:48 +08:00
|
|
|
gfxhub_v2_0.o mmhub_v2_0.o gmc_v10_0.o gfxhub_v2_1.o mmhub_v2_3.o \
|
|
|
|
mmhub_v1_7.o
|
2015-04-21 05:31:14 +08:00
|
|
|
|
2019-07-31 20:23:01 +08:00
|
|
|
# add UMC block
|
|
|
|
amdgpu-y += \
|
2021-03-08 16:56:31 +08:00
|
|
|
umc_v6_0.o umc_v6_1.o umc_v6_7.o umc_v8_7.o
|
2019-07-31 20:23:01 +08:00
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
# add IH block
|
|
|
|
amdgpu-y += \
|
|
|
|
amdgpu_irq.o \
|
2015-04-21 05:31:14 +08:00
|
|
|
amdgpu_ih.o \
|
|
|
|
iceland_ih.o \
|
|
|
|
tonga_ih.o \
|
2017-03-04 07:06:01 +08:00
|
|
|
cz_ih.o \
|
2019-03-03 13:02:40 +08:00
|
|
|
vega10_ih.o \
|
2020-12-18 21:48:59 +08:00
|
|
|
vega20_ih.o \
|
2019-03-03 13:02:40 +08:00
|
|
|
navi10_ih.o
|
2015-04-21 04:55:21 +08:00
|
|
|
|
2017-03-04 07:37:23 +08:00
|
|
|
# add PSP block
|
|
|
|
amdgpu-y += \
|
|
|
|
amdgpu_psp.o \
|
2017-05-05 03:28:30 +08:00
|
|
|
psp_v3_1.o \
|
2018-05-11 14:54:50 +08:00
|
|
|
psp_v10_0.o \
|
2019-08-09 23:32:15 +08:00
|
|
|
psp_v11_0.o \
|
2020-04-26 22:24:20 +08:00
|
|
|
psp_v12_0.o \
|
|
|
|
psp_v13_0.o
|
2017-03-04 07:37:23 +08:00
|
|
|
|
2015-04-21 05:31:14 +08: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-21 04:55:21 +08:00
|
|
|
|
|
|
|
# add GFX block
|
|
|
|
amdgpu-y += \
|
2015-04-21 05:31:14 +08:00
|
|
|
amdgpu_gfx.o \
|
2018-11-08 13:43:46 +08:00
|
|
|
amdgpu_rlc.o \
|
2017-03-04 06:59:39 +08:00
|
|
|
gfx_v8_0.o \
|
2019-03-04 14:41:42 +08:00
|
|
|
gfx_v9_0.o \
|
2020-01-16 13:40:52 +08:00
|
|
|
gfx_v9_4.o \
|
2020-08-21 15:02:49 +08:00
|
|
|
gfx_v9_4_2.o \
|
2019-03-04 14:41:42 +08:00
|
|
|
gfx_v10_0.o
|
2015-04-21 05:31:14 +08:00
|
|
|
|
|
|
|
# add async DMA block
|
|
|
|
amdgpu-y += \
|
2018-08-02 17:23:33 +08:00
|
|
|
amdgpu_sdma.o \
|
2015-04-21 05:31:14 +08:00
|
|
|
sdma_v2_4.o \
|
2017-03-04 06:31:51 +08:00
|
|
|
sdma_v3_0.o \
|
2019-03-31 22:13:57 +08:00
|
|
|
sdma_v4_0.o \
|
2020-11-18 21:14:59 +08:00
|
|
|
sdma_v4_4.o \
|
2019-06-17 13:38:29 +08:00
|
|
|
sdma_v5_0.o \
|
|
|
|
sdma_v5_2.o
|
2015-04-21 04:55:21 +08:00
|
|
|
|
2019-01-25 15:25:15 +08:00
|
|
|
# add MES block
|
|
|
|
amdgpu-y += \
|
|
|
|
mes_v10_1.o
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
# add UVD block
|
|
|
|
amdgpu-y += \
|
2015-04-21 05:31:14 +08:00
|
|
|
amdgpu_uvd.o \
|
|
|
|
uvd_v5_0.o \
|
2017-03-04 07:13:26 +08:00
|
|
|
uvd_v6_0.o \
|
|
|
|
uvd_v7_0.o
|
2015-04-21 04:55:21 +08:00
|
|
|
|
|
|
|
# add VCE block
|
|
|
|
amdgpu-y += \
|
2015-04-21 05:31:14 +08:00
|
|
|
amdgpu_vce.o \
|
2017-03-04 07:27:49 +08:00
|
|
|
vce_v3_0.o \
|
|
|
|
vce_v4_0.o
|
2015-04-21 04:55:21 +08:00
|
|
|
|
2019-11-08 23:07:56 +08:00
|
|
|
# add VCN and JPEG block
|
2016-12-22 02:21:52 +08:00
|
|
|
amdgpu-y += \
|
2016-12-29 00:57:38 +08:00
|
|
|
amdgpu_vcn.o \
|
2018-10-15 23:38:59 +08:00
|
|
|
vcn_v1_0.o \
|
2019-04-16 00:21:42 +08:00
|
|
|
vcn_v2_0.o \
|
2019-11-08 23:07:56 +08:00
|
|
|
vcn_v2_5.o \
|
2019-11-16 01:45:55 +08:00
|
|
|
vcn_v3_0.o \
|
2019-11-08 23:17:06 +08:00
|
|
|
amdgpu_jpeg.o \
|
2019-11-09 02:26:46 +08:00
|
|
|
jpeg_v1_0.o \
|
2019-11-11 22:56:32 +08:00
|
|
|
jpeg_v2_0.o \
|
2019-11-16 02:23:10 +08:00
|
|
|
jpeg_v2_5.o \
|
|
|
|
jpeg_v3_0.o
|
2016-12-22 02:21:52 +08:00
|
|
|
|
2019-02-13 18:43:03 +08:00
|
|
|
# add ATHUB block
|
|
|
|
amdgpu-y += \
|
2019-08-08 14:54:12 +08:00
|
|
|
athub_v1_0.o \
|
2019-09-25 16:44:46 +08:00
|
|
|
athub_v2_0.o \
|
|
|
|
athub_v2_1.o
|
2019-02-13 18:43:03 +08:00
|
|
|
|
2020-10-20 23:59:12 +08:00
|
|
|
# add SMUIO block
|
|
|
|
amdgpu-y += \
|
2020-10-21 00:00:19 +08:00
|
|
|
smuio_v9_0.o \
|
2021-02-03 18:16:34 +08:00
|
|
|
smuio_v11_0.o \
|
2020-10-23 21:46:20 +08:00
|
|
|
smuio_v11_0_6.o \
|
|
|
|
smuio_v13_0.o
|
2020-10-20 23:59:12 +08:00
|
|
|
|
2021-03-16 20:19:06 +08:00
|
|
|
# add reset block
|
|
|
|
amdgpu-y += \
|
|
|
|
amdgpu_reset.o
|
|
|
|
|
2015-06-13 02:35:14 +08:00
|
|
|
# add amdkfd interfaces
|
2018-05-19 03:18:16 +08:00
|
|
|
amdgpu-y += amdgpu_amdkfd.o
|
|
|
|
|
2021-03-16 20:19:06 +08:00
|
|
|
|
2018-05-19 03:18:16 +08:00
|
|
|
ifneq ($(CONFIG_HSA_AMD),)
|
2018-08-23 04:48:50 +08:00
|
|
|
AMDKFD_PATH := ../amdkfd
|
|
|
|
include $(FULL_AMD_PATH)/amdkfd/Makefile
|
|
|
|
amdgpu-y += $(AMDKFD_FILES)
|
2015-06-13 02:35:14 +08:00
|
|
|
amdgpu-y += \
|
2019-10-02 05:42:20 +08:00
|
|
|
amdgpu_amdkfd_fence.o \
|
|
|
|
amdgpu_amdkfd_gpuvm.o \
|
|
|
|
amdgpu_amdkfd_gfx_v8.o \
|
|
|
|
amdgpu_amdkfd_gfx_v9.o \
|
|
|
|
amdgpu_amdkfd_arcturus.o \
|
2020-09-05 23:32:59 +08:00
|
|
|
amdgpu_amdkfd_aldebaran.o \
|
2019-10-02 05:42:20 +08:00
|
|
|
amdgpu_amdkfd_gfx_v10.o \
|
|
|
|
amdgpu_amdkfd_gfx_v10_3.o
|
2015-06-13 02:35:14 +08:00
|
|
|
|
2018-05-19 03:18:16 +08:00
|
|
|
ifneq ($(CONFIG_DRM_AMDGPU_CIK),)
|
|
|
|
amdgpu-y += amdgpu_amdkfd_gfx_v7.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2015-07-29 02:20:03 +08:00
|
|
|
# add cgs
|
|
|
|
amdgpu-y += amdgpu_cgs.o
|
|
|
|
|
2015-08-17 10:55:02 +08:00
|
|
|
# GPU scheduler
|
2017-12-07 00:49:39 +08:00
|
|
|
amdgpu-y += amdgpu_job.o
|
2015-08-17 10:55:02 +08:00
|
|
|
|
2015-09-23 05:05:20 +08:00
|
|
|
# ACP componet
|
|
|
|
ifneq ($(CONFIG_DRM_AMD_ACP),)
|
|
|
|
amdgpu-y += amdgpu_acp.o
|
|
|
|
|
|
|
|
AMDACPPATH := ../acp
|
|
|
|
include $(FULL_AMD_PATH)/acp/Makefile
|
|
|
|
|
|
|
|
amdgpu-y += $(AMD_ACP_FILES)
|
|
|
|
endif
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
amdgpu-$(CONFIG_COMPAT) += amdgpu_ioc32.o
|
|
|
|
amdgpu-$(CONFIG_VGA_SWITCHEROO) += amdgpu_atpx_handler.o
|
|
|
|
amdgpu-$(CONFIG_ACPI) += amdgpu_acpi.o
|
2018-07-24 05:45:46 +08:00
|
|
|
amdgpu-$(CONFIG_HMM_MIRROR) += amdgpu_mn.o
|
2015-04-21 04:55:21 +08:00
|
|
|
|
2020-08-13 16:39:25 +08:00
|
|
|
include $(FULL_AMD_PATH)/pm/Makefile
|
2015-12-03 06:46:21 +08:00
|
|
|
|
|
|
|
amdgpu-y += $(AMD_POWERPLAY_FILES)
|
|
|
|
|
2017-09-13 03:58:20 +08:00
|
|
|
ifneq ($(CONFIG_DRM_AMD_DC),)
|
|
|
|
|
|
|
|
RELATIVE_AMD_DISPLAY_PATH = ../$(DISPLAY_FOLDER_NAME)
|
|
|
|
include $(FULL_AMD_DISPLAY_PATH)/Makefile
|
|
|
|
|
|
|
|
amdgpu-y += $(AMD_DISPLAY_FILES)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2015-04-21 04:55:21 +08:00
|
|
|
obj-$(CONFIG_DRM_AMDGPU)+= amdgpu.o
|