Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | # |
| 2 | # Makefile for the drm device driver. This driver provides support for the |
| 3 | # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. |
| 4 | |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 5 | ccflags-y := -Iinclude/drm -Idrivers/gpu/drm/amd/include/asic_reg \ |
Alex Deucher | 8e9198d | 2015-08-16 22:51:50 -0400 | [diff] [blame] | 6 | -Idrivers/gpu/drm/amd/include \ |
Alex Deucher | b80d847 | 2015-08-16 22:55:02 -0400 | [diff] [blame] | 7 | -Idrivers/gpu/drm/amd/amdgpu \ |
| 8 | -Idrivers/gpu/drm/amd/scheduler |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 9 | |
| 10 | amdgpu-y := amdgpu_drv.o |
| 11 | |
| 12 | # add KMS driver |
| 13 | amdgpu-y += amdgpu_device.o amdgpu_kms.o \ |
| 14 | amdgpu_atombios.o atombios_crtc.o amdgpu_connectors.o \ |
| 15 | atom.o amdgpu_fence.o amdgpu_ttm.o amdgpu_object.o amdgpu_gart.o \ |
| 16 | amdgpu_encoders.o amdgpu_display.o amdgpu_i2c.o \ |
| 17 | amdgpu_fb.o amdgpu_gem.o amdgpu_ring.o \ |
| 18 | amdgpu_cs.o amdgpu_bios.o amdgpu_benchmark.o amdgpu_test.o \ |
| 19 | amdgpu_pm.o atombios_dp.o amdgpu_afmt.o amdgpu_trace_points.o \ |
| 20 | atombios_encoders.o amdgpu_semaphore.o amdgpu_sa.o atombios_i2c.o \ |
| 21 | amdgpu_prime.o amdgpu_vm.o amdgpu_ib.o amdgpu_pll.o \ |
| 22 | amdgpu_ucode.o amdgpu_bo_list.o amdgpu_ctx.o amdgpu_sync.o |
| 23 | |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 24 | # add asic specific block |
Alex Deucher | a2e73f5 | 2015-04-20 17:09:27 -0400 | [diff] [blame] | 25 | amdgpu-$(CONFIG_DRM_AMDGPU_CIK)+= cik.o gmc_v7_0.o cik_ih.o kv_smc.o kv_dpm.o \ |
Alex Deucher | 41548ef | 2015-07-31 17:20:14 -0400 | [diff] [blame] | 26 | 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 \ |
| 27 | amdgpu_amdkfd_gfx_v7.o |
Alex Deucher | a2e73f5 | 2015-04-20 17:09:27 -0400 | [diff] [blame] | 28 | |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 29 | amdgpu-y += \ |
| 30 | vi.o |
| 31 | |
| 32 | # add GMC block |
| 33 | amdgpu-y += \ |
| 34 | gmc_v8_0.o |
| 35 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 36 | # add IH block |
| 37 | amdgpu-y += \ |
| 38 | amdgpu_irq.o \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 39 | amdgpu_ih.o \ |
| 40 | iceland_ih.o \ |
| 41 | tonga_ih.o \ |
| 42 | cz_ih.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 43 | |
| 44 | # add SMC block |
| 45 | amdgpu-y += \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 46 | amdgpu_dpm.o \ |
| 47 | cz_smc.o cz_dpm.o \ |
| 48 | tonga_smc.o tonga_dpm.o \ |
David Zhang | 8e711e1a | 2015-07-08 01:23:25 +0800 | [diff] [blame] | 49 | fiji_smc.o fiji_dpm.o \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 50 | iceland_smc.o iceland_dpm.o |
| 51 | |
| 52 | # add DCE block |
| 53 | amdgpu-y += \ |
| 54 | dce_v10_0.o \ |
| 55 | dce_v11_0.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 56 | |
| 57 | # add GFX block |
| 58 | amdgpu-y += \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 59 | amdgpu_gfx.o \ |
| 60 | gfx_v8_0.o |
| 61 | |
| 62 | # add async DMA block |
| 63 | amdgpu-y += \ |
| 64 | sdma_v2_4.o \ |
| 65 | sdma_v3_0.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 66 | |
| 67 | # add UVD block |
| 68 | amdgpu-y += \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 69 | amdgpu_uvd.o \ |
| 70 | uvd_v5_0.o \ |
| 71 | uvd_v6_0.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 72 | |
| 73 | # add VCE block |
| 74 | amdgpu-y += \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 75 | amdgpu_vce.o \ |
| 76 | vce_v3_0.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 77 | |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 78 | # add amdkfd interfaces |
| 79 | amdgpu-y += \ |
Oded Gabbay | 32c22e9 | 2015-06-12 21:38:22 +0300 | [diff] [blame] | 80 | amdgpu_amdkfd.o \ |
Ben Goz | ff758a1 | 2014-10-07 14:43:07 +0300 | [diff] [blame] | 81 | amdgpu_amdkfd_gfx_v8.o |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 82 | |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 83 | # add cgs |
| 84 | amdgpu-y += amdgpu_cgs.o |
| 85 | |
Alex Deucher | b80d847 | 2015-08-16 22:55:02 -0400 | [diff] [blame] | 86 | # GPU scheduler |
| 87 | amdgpu-y += \ |
Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +0800 | [diff] [blame] | 88 | ../scheduler/gpu_scheduler.o \ |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 89 | ../scheduler/sched_fence.o \ |
Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +0800 | [diff] [blame] | 90 | amdgpu_sched.o |
Alex Deucher | b80d847 | 2015-08-16 22:55:02 -0400 | [diff] [blame] | 91 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 92 | amdgpu-$(CONFIG_COMPAT) += amdgpu_ioc32.o |
| 93 | amdgpu-$(CONFIG_VGA_SWITCHEROO) += amdgpu_atpx_handler.o |
| 94 | amdgpu-$(CONFIG_ACPI) += amdgpu_acpi.o |
| 95 | amdgpu-$(CONFIG_MMU_NOTIFIER) += amdgpu_mn.o |
| 96 | |
| 97 | obj-$(CONFIG_DRM_AMDGPU)+= amdgpu.o |
| 98 | |
| 99 | CFLAGS_amdgpu_trace_points.o := -I$(src) |