| 
									
										
										
										
											2017-12-01 02:15:50 +00: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 20:55:21 +00: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 11:32:41 +00:00
										 |  |  | FULL_AMD_PATH=$(srctree)/$(src)/.. | 
					
						
							| 
									
										
										
										
											2017-09-12 19:58:20 +00:00
										 |  |  | DISPLAY_FOLDER_NAME=display | 
					
						
							|  |  |  | FULL_AMD_DISPLAY_PATH = $(FULL_AMD_PATH)/$(DISPLAY_FOLDER_NAME) | 
					
						
							| 
									
										
										
										
											2015-11-24 08:55:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-24 04:50:21 +00:00
										 |  |  | ccflags-y := -I$(FULL_AMD_PATH)/include/asic_reg \
 | 
					
						
							| 
									
										
										
										
											2015-11-24 08:55:20 +00:00
										 |  |  | 	-I$(FULL_AMD_PATH)/include \
 | 
					
						
							|  |  |  | 	-I$(FULL_AMD_PATH)/amdgpu \
 | 
					
						
							| 
									
										
										
										
											2015-09-22 21:05:20 +00:00
										 |  |  | 	-I$(FULL_AMD_PATH)/powerplay/inc \
 | 
					
						
							| 
									
										
										
										
											2017-09-12 19:58:20 +00: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 20:48:50 +00:00
										 |  |  | 	-I$(FULL_AMD_DISPLAY_PATH)/amdgpu_dm \
 | 
					
						
							|  |  |  | 	-I$(FULL_AMD_PATH)/amdkfd | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00: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 03:05:21 +00:00
										 |  |  | 	atombios_encoders.o amdgpu_sa.o atombios_i2c.o \
 | 
					
						
							| 
									
										
										
										
											2019-05-06 11:22:06 +00:00
										 |  |  | 	amdgpu_dma_buf.o amdgpu_vm.o amdgpu_ib.o amdgpu_pll.o \
 | 
					
						
							| 
									
										
										
										
											2016-09-09 14:32:33 +00:00
										 |  |  | 	amdgpu_ucode.o amdgpu_bo_list.o amdgpu_ctx.o amdgpu_sync.o \
 | 
					
						
							| 
									
										
										
										
											2017-02-16 05:47:32 +00:00
										 |  |  | 	amdgpu_gtt_mgr.o amdgpu_vram_mgr.o amdgpu_virt.o amdgpu_atomfirmware.o \
 | 
					
						
							| 
									
										
										
										
											2018-08-22 10:22:14 +00:00
										 |  |  | 	amdgpu_vf_error.o amdgpu_sched.o amdgpu_debugfs.o amdgpu_ids.o \
 | 
					
						
							| 
									
										
										
										
											2019-03-18 12:16:03 +00:00
										 |  |  | 	amdgpu_gmc.o amdgpu_xgmi.o amdgpu_csa.o amdgpu_ras.o amdgpu_vm_cpu.o \
 | 
					
						
							| 
									
										
										
										
											2019-07-08 14:41:43 +00:00
										 |  |  | 	amdgpu_vm_sdma.o amdgpu_discovery.o | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | amdgpu-$(CONFIG_PERF_EVENTS) += amdgpu_pmu.o | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | # add asic specific block
 | 
					
						
							| 
									
										
										
										
											2016-02-02 15:59:53 +00:00
										 |  |  | amdgpu-$(CONFIG_DRM_AMDGPU_CIK)+= cik.o cik_ih.o kv_smc.o kv_dpm.o \
 | 
					
						
							| 
									
										
										
										
											2019-01-16 16:55:04 +00:00
										 |  |  | 	dce_v8_0.o gfx_v7_0.o cik_sdma.o uvd_v4_2.o vce_v2_0.o | 
					
						
							| 
									
										
										
										
											2015-04-20 21:09:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-26 15:05:36 +00: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 si_dpm.o si_smc.o | 
					
						
							| 
									
										
										
										
											2016-01-19 06:19:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2018-03-23 19:42:28 +00: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-12-17 10:24:03 +00:00
										 |  |  | 	vega20_reg_init.o nbio_v7_4.o nbio_v2_3.o nv.o navi10_reg_init.o navi14_reg_init.o | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 08:27:56 +00:00
										 |  |  | # add DF block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2018-04-04 06:30:28 +00:00
										 |  |  | 	df_v1_7.o \
 | 
					
						
							|  |  |  | 	df_v3_6.o | 
					
						
							| 
									
										
										
										
											2018-03-28 08:27:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | # add GMC block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2016-02-02 15:59:53 +00:00
										 |  |  | 	gmc_v7_0.o \
 | 
					
						
							| 
									
										
										
										
											2017-03-09 16:36:26 +00:00
										 |  |  | 	gmc_v8_0.o \
 | 
					
						
							| 
									
										
										
										
											2019-07-09 14:18:03 +00:00
										 |  |  | 	gfxhub_v1_0.o mmhub_v1_0.o gmc_v9_0.o gfxhub_v1_1.o mmhub_v9_4.o \
 | 
					
						
							| 
									
										
										
										
											2019-03-04 08:27:14 +00:00
										 |  |  | 	gfxhub_v2_0.o mmhub_v2_0.o gmc_v10_0.o | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | # add IH block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							|  |  |  | 	amdgpu_irq.o \
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 	amdgpu_ih.o \
 | 
					
						
							|  |  |  | 	iceland_ih.o \
 | 
					
						
							|  |  |  | 	tonga_ih.o \
 | 
					
						
							| 
									
										
										
										
											2017-03-03 23:06:01 +00:00
										 |  |  | 	cz_ih.o \
 | 
					
						
							| 
									
										
										
										
											2019-03-03 05:02:40 +00:00
										 |  |  | 	vega10_ih.o \
 | 
					
						
							|  |  |  | 	navi10_ih.o | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-03 23:37:23 +00:00
										 |  |  | # add PSP block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							|  |  |  | 	amdgpu_psp.o \
 | 
					
						
							| 
									
										
										
										
											2017-05-04 19:28:30 +00:00
										 |  |  | 	psp_v3_1.o \
 | 
					
						
							| 
									
										
										
										
											2018-05-11 06:54:50 +00:00
										 |  |  | 	psp_v10_0.o \
 | 
					
						
							|  |  |  | 	psp_v11_0.o | 
					
						
							| 
									
										
										
										
											2017-03-03 23:37:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | # add SMC block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2018-03-12 11:52:23 +00:00
										 |  |  | 	amdgpu_dpm.o | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # add DCE block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							|  |  |  | 	dce_v10_0.o \
 | 
					
						
							| 
									
										
										
										
											2016-08-08 03:30:50 +00:00
										 |  |  | 	dce_v11_0.o \
 | 
					
						
							|  |  |  | 	dce_virtual.o | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # add GFX block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 	amdgpu_gfx.o \
 | 
					
						
							| 
									
										
										
										
											2018-11-08 05:43:46 +00:00
										 |  |  | 	amdgpu_rlc.o \
 | 
					
						
							| 
									
										
										
										
											2017-03-03 22:59:39 +00:00
										 |  |  | 	gfx_v8_0.o \
 | 
					
						
							| 
									
										
										
										
											2019-03-04 06:41:42 +00:00
										 |  |  | 	gfx_v9_0.o \
 | 
					
						
							|  |  |  | 	gfx_v10_0.o | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # add async DMA block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2018-08-02 09:23:33 +00:00
										 |  |  | 	amdgpu_sdma.o \
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 	sdma_v2_4.o \
 | 
					
						
							| 
									
										
										
										
											2017-03-03 22:31:51 +00:00
										 |  |  | 	sdma_v3_0.o \
 | 
					
						
							| 
									
										
										
										
											2019-03-31 14:13:57 +00:00
										 |  |  | 	sdma_v4_0.o \
 | 
					
						
							|  |  |  | 	sdma_v5_0.o | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-25 07:25:15 +00:00
										 |  |  | # add MES block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							|  |  |  | 	mes_v10_1.o | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | # add UVD block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 	amdgpu_uvd.o \
 | 
					
						
							|  |  |  | 	uvd_v5_0.o \
 | 
					
						
							| 
									
										
										
										
											2017-03-03 23:13:26 +00:00
										 |  |  | 	uvd_v6_0.o \
 | 
					
						
							|  |  |  | 	uvd_v7_0.o | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # add VCE block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2015-04-20 21:31:14 +00:00
										 |  |  | 	amdgpu_vce.o \
 | 
					
						
							| 
									
										
										
										
											2017-03-03 23:27:49 +00:00
										 |  |  | 	vce_v3_0.o \
 | 
					
						
							|  |  |  | 	vce_v4_0.o | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-21 18:21:52 +00:00
										 |  |  | # add VCN block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2016-12-28 16:57:38 +00:00
										 |  |  | 	amdgpu_vcn.o \
 | 
					
						
							| 
									
										
										
										
											2018-10-15 15:38:59 +00:00
										 |  |  | 	vcn_v1_0.o \
 | 
					
						
							|  |  |  | 	vcn_v2_0.o | 
					
						
							| 
									
										
										
										
											2016-12-21 18:21:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-13 10:43:03 +00:00
										 |  |  | # add ATHUB block
 | 
					
						
							|  |  |  | amdgpu-y += \
 | 
					
						
							|  |  |  | 	athub_v2_0.o | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 18:35:14 +00:00
										 |  |  | # add amdkfd interfaces
 | 
					
						
							| 
									
										
										
										
											2018-05-18 19:18:16 +00:00
										 |  |  | amdgpu-y += amdgpu_amdkfd.o | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ifneq ($(CONFIG_HSA_AMD),) | 
					
						
							| 
									
										
										
										
											2018-08-22 20:48:50 +00:00
										 |  |  | AMDKFD_PATH := ../amdkfd | 
					
						
							|  |  |  | include $(FULL_AMD_PATH)/amdkfd/Makefile | 
					
						
							|  |  |  | amdgpu-y += $(AMDKFD_FILES) | 
					
						
							| 
									
										
										
										
											2015-06-12 18:35:14 +00:00
										 |  |  | amdgpu-y += \
 | 
					
						
							| 
									
										
										
										
											2018-02-07 01:32:35 +00:00
										 |  |  | 	 amdgpu_amdkfd_fence.o \
 | 
					
						
							| 
									
										
										
										
											2018-02-07 01:32:38 +00:00
										 |  |  | 	 amdgpu_amdkfd_gpuvm.o \
 | 
					
						
							| 
									
										
										
										
											2018-04-10 21:33:01 +00:00
										 |  |  | 	 amdgpu_amdkfd_gfx_v8.o \
 | 
					
						
							| 
									
										
										
										
											2019-03-05 11:59:30 +00:00
										 |  |  | 	 amdgpu_amdkfd_gfx_v9.o \
 | 
					
						
							|  |  |  | 	 amdgpu_amdkfd_gfx_v10.o | 
					
						
							| 
									
										
										
										
											2015-06-12 18:35:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-18 19:18:16 +00:00
										 |  |  | ifneq ($(CONFIG_DRM_AMDGPU_CIK),) | 
					
						
							|  |  |  | amdgpu-y += amdgpu_amdkfd_gfx_v7.o | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-28 18:20:03 +00:00
										 |  |  | # add cgs
 | 
					
						
							|  |  |  | amdgpu-y += amdgpu_cgs.o | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-17 02:55:02 +00:00
										 |  |  | # GPU scheduler
 | 
					
						
							| 
									
										
										
										
											2017-12-06 16:49:39 +00:00
										 |  |  | amdgpu-y += amdgpu_job.o | 
					
						
							| 
									
										
										
										
											2015-08-17 02:55:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 21:05:20 +00: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-20 20:55:21 +00:00
										 |  |  | amdgpu-$(CONFIG_COMPAT) += amdgpu_ioc32.o | 
					
						
							|  |  |  | amdgpu-$(CONFIG_VGA_SWITCHEROO) += amdgpu_atpx_handler.o | 
					
						
							|  |  |  | amdgpu-$(CONFIG_ACPI) += amdgpu_acpi.o | 
					
						
							| 
									
										
										
										
											2018-07-23 21:45:46 +00:00
										 |  |  | amdgpu-$(CONFIG_HMM_MIRROR) += amdgpu_mn.o | 
					
						
							| 
									
										
										
										
											2015-04-20 20:55:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-02 02:56:57 +00:00
										 |  |  | include $(FULL_AMD_PATH)/powerplay/Makefile | 
					
						
							| 
									
										
										
										
											2015-12-02 22:46:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | amdgpu-y += $(AMD_POWERPLAY_FILES) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-12 19:58:20 +00: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-20 20:55:21 +00:00
										 |  |  | obj-$(CONFIG_DRM_AMDGPU)+= amdgpu.o |