Alex Deucher | 1a09120 | 2017-11-30 21:15:50 -0500 | [diff] [blame] | 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 | # |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 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 | |
Jammy Zhou | 288912c | 2015-11-24 16:55:20 +0800 | [diff] [blame] | 26 | FULL_AMD_PATH=$(src)/.. |
Harry Wentland | 4562236 | 2017-09-12 15:58:20 -0400 | [diff] [blame] | 27 | DISPLAY_FOLDER_NAME=display |
| 28 | FULL_AMD_DISPLAY_PATH = $(FULL_AMD_PATH)/$(DISPLAY_FOLDER_NAME) |
Jammy Zhou | 288912c | 2015-11-24 16:55:20 +0800 | [diff] [blame] | 29 | |
Masahiro Yamada | 248a1d6 | 2017-04-24 13:50:21 +0900 | [diff] [blame] | 30 | ccflags-y := -I$(FULL_AMD_PATH)/include/asic_reg \ |
Jammy Zhou | 288912c | 2015-11-24 16:55:20 +0800 | [diff] [blame] | 31 | -I$(FULL_AMD_PATH)/include \ |
| 32 | -I$(FULL_AMD_PATH)/amdgpu \ |
Maruthi Bayyavarapu | a8fe58c | 2015-09-22 17:05:20 -0400 | [diff] [blame] | 33 | -I$(FULL_AMD_PATH)/powerplay/inc \ |
Harry Wentland | 4562236 | 2017-09-12 15:58:20 -0400 | [diff] [blame] | 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 |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 39 | |
| 40 | amdgpu-y := amdgpu_drv.o |
| 41 | |
| 42 | # add KMS driver |
| 43 | amdgpu-y += amdgpu_device.o amdgpu_kms.o \ |
| 44 | amdgpu_atombios.o atombios_crtc.o amdgpu_connectors.o \ |
| 45 | atom.o amdgpu_fence.o amdgpu_ttm.o amdgpu_object.o amdgpu_gart.o \ |
| 46 | amdgpu_encoders.o amdgpu_display.o amdgpu_i2c.o \ |
| 47 | amdgpu_fb.o amdgpu_gem.o amdgpu_ring.o \ |
| 48 | amdgpu_cs.o amdgpu_bios.o amdgpu_benchmark.o amdgpu_test.o \ |
| 49 | amdgpu_pm.o atombios_dp.o amdgpu_afmt.o amdgpu_trace_points.o \ |
Chunming Zhou | 2f4b940 | 2016-01-15 11:05:21 +0800 | [diff] [blame] | 50 | atombios_encoders.o amdgpu_sa.o atombios_i2c.o \ |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 51 | amdgpu_prime.o amdgpu_vm.o amdgpu_ib.o amdgpu_pll.o \ |
Christian König | bb990bb | 2016-09-09 16:32:33 +0200 | [diff] [blame] | 52 | amdgpu_ucode.o amdgpu_bo_list.o amdgpu_ctx.o amdgpu_sync.o \ |
Andres Rodriguez | effd924 | 2017-02-16 00:47:32 -0500 | [diff] [blame] | 53 | amdgpu_gtt_mgr.o amdgpu_vram_mgr.o amdgpu_virt.o amdgpu_atomfirmware.o \ |
Christian König | 620f774 | 2017-12-18 16:53:03 +0100 | [diff] [blame] | 54 | amdgpu_queue_mgr.o amdgpu_vf_error.o amdgpu_sched.o amdgpu_debugfs.o \ |
| 55 | amdgpu_ids.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 56 | |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 57 | # add asic specific block |
Alex Deucher | e42d852 | 2016-02-02 10:59:53 -0500 | [diff] [blame] | 58 | amdgpu-$(CONFIG_DRM_AMDGPU_CIK)+= cik.o cik_ih.o kv_smc.o kv_dpm.o \ |
Oded Gabbay | fcdfa43 | 2018-05-18 22:18:16 +0300 | [diff] [blame] | 59 | 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 |
Alex Deucher | a2e73f5 | 2015-04-20 17:09:27 -0400 | [diff] [blame] | 60 | |
Maruthi Srinivas Bayyavarapu | 1919696 | 2016-04-26 20:35:36 +0530 | [diff] [blame] | 61 | 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 |
Ken Wang | a036db1 | 2016-01-19 14:19:53 +0800 | [diff] [blame] | 62 | |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 63 | amdgpu-y += \ |
Feifei Xu | 8ee273e | 2018-03-23 14:42:28 -0500 | [diff] [blame] | 64 | 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 \ |
| 65 | vega20_reg_init.o |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 66 | |
Hawking Zhang | d99605e | 2018-03-28 16:27:56 +0800 | [diff] [blame] | 67 | # add DF block |
| 68 | amdgpu-y += \ |
Feifei Xu | 13b5815 | 2018-04-04 14:30:28 +0800 | [diff] [blame] | 69 | df_v1_7.o \ |
| 70 | df_v3_6.o |
Hawking Zhang | d99605e | 2018-03-28 16:27:56 +0800 | [diff] [blame] | 71 | |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 72 | # add GMC block |
| 73 | amdgpu-y += \ |
Alex Deucher | e42d852 | 2016-02-02 10:59:53 -0500 | [diff] [blame] | 74 | gmc_v7_0.o \ |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 75 | gmc_v8_0.o \ |
| 76 | gfxhub_v1_0.o mmhub_v1_0.o gmc_v9_0.o |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 77 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 78 | # add IH block |
| 79 | amdgpu-y += \ |
| 80 | amdgpu_irq.o \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 81 | amdgpu_ih.o \ |
| 82 | iceland_ih.o \ |
| 83 | tonga_ih.o \ |
Ken Wang | 282aae5 | 2017-03-03 18:06:01 -0500 | [diff] [blame] | 84 | cz_ih.o \ |
| 85 | vega10_ih.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 86 | |
Huang Rui | 0e5ca0d | 2017-03-03 18:37:23 -0500 | [diff] [blame] | 87 | # add PSP block |
| 88 | amdgpu-y += \ |
| 89 | amdgpu_psp.o \ |
Huang Rui | fd341dc | 2017-05-04 15:28:30 -0400 | [diff] [blame] | 90 | psp_v3_1.o \ |
| 91 | psp_v10_0.o |
Huang Rui | 0e5ca0d | 2017-03-03 18:37:23 -0500 | [diff] [blame] | 92 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 93 | # add SMC block |
| 94 | amdgpu-y += \ |
Rex Zhu | b905090 | 2018-03-12 19:52:23 +0800 | [diff] [blame] | 95 | amdgpu_dpm.o |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 96 | |
| 97 | # add DCE block |
| 98 | amdgpu-y += \ |
| 99 | dce_v10_0.o \ |
Emily Deng | c6e14f4 | 2016-08-08 11:30:50 +0800 | [diff] [blame] | 100 | dce_v11_0.o \ |
| 101 | dce_virtual.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 102 | |
| 103 | # add GFX block |
| 104 | amdgpu-y += \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 105 | amdgpu_gfx.o \ |
Ken Wang | b102357 | 2017-03-03 17:59:39 -0500 | [diff] [blame] | 106 | gfx_v8_0.o \ |
| 107 | gfx_v9_0.o |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 108 | |
| 109 | # add async DMA block |
| 110 | amdgpu-y += \ |
| 111 | sdma_v2_4.o \ |
Ken Wang | 2130f89 | 2017-03-03 17:31:51 -0500 | [diff] [blame] | 112 | sdma_v3_0.o \ |
| 113 | sdma_v4_0.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 114 | |
| 115 | # add UVD block |
| 116 | amdgpu-y += \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 117 | amdgpu_uvd.o \ |
| 118 | uvd_v5_0.o \ |
Leo Liu | 09bfb89 | 2017-03-03 18:13:26 -0500 | [diff] [blame] | 119 | uvd_v6_0.o \ |
| 120 | uvd_v7_0.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 121 | |
| 122 | # add VCE block |
| 123 | amdgpu-y += \ |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 124 | amdgpu_vce.o \ |
Leo Liu | c1dc356 | 2017-03-03 18:27:49 -0500 | [diff] [blame] | 125 | vce_v3_0.o \ |
| 126 | vce_v4_0.o |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 127 | |
Leo Liu | 95d0906 | 2016-12-21 13:21:52 -0500 | [diff] [blame] | 128 | # add VCN block |
| 129 | amdgpu-y += \ |
Leo Liu | 88b5af7 | 2016-12-28 11:57:38 -0500 | [diff] [blame] | 130 | amdgpu_vcn.o \ |
| 131 | vcn_v1_0.o |
Leo Liu | 95d0906 | 2016-12-21 13:21:52 -0500 | [diff] [blame] | 132 | |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 133 | # add amdkfd interfaces |
Oded Gabbay | fcdfa43 | 2018-05-18 22:18:16 +0300 | [diff] [blame] | 134 | amdgpu-y += amdgpu_amdkfd.o |
| 135 | |
| 136 | ifneq ($(CONFIG_HSA_AMD),) |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 137 | amdgpu-y += \ |
Felix Kuehling | d8d019c | 2018-02-06 20:32:35 -0500 | [diff] [blame] | 138 | amdgpu_amdkfd_fence.o \ |
Felix Kuehling | a46a2cd | 2018-02-06 20:32:38 -0500 | [diff] [blame] | 139 | amdgpu_amdkfd_gpuvm.o \ |
Felix Kuehling | d5a114a | 2018-04-10 17:33:01 -0400 | [diff] [blame] | 140 | amdgpu_amdkfd_gfx_v8.o \ |
| 141 | amdgpu_amdkfd_gfx_v9.o |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 142 | |
Oded Gabbay | fcdfa43 | 2018-05-18 22:18:16 +0300 | [diff] [blame] | 143 | ifneq ($(CONFIG_DRM_AMDGPU_CIK),) |
| 144 | amdgpu-y += amdgpu_amdkfd_gfx_v7.o |
| 145 | endif |
| 146 | |
| 147 | endif |
| 148 | |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 149 | # add cgs |
| 150 | amdgpu-y += amdgpu_cgs.o |
| 151 | |
Alex Deucher | b80d847 | 2015-08-16 22:55:02 -0400 | [diff] [blame] | 152 | # GPU scheduler |
Lucas Stach | 1b1f42d | 2017-12-06 17:49:39 +0100 | [diff] [blame] | 153 | amdgpu-y += amdgpu_job.o |
Alex Deucher | b80d847 | 2015-08-16 22:55:02 -0400 | [diff] [blame] | 154 | |
Maruthi Bayyavarapu | a8fe58c | 2015-09-22 17:05:20 -0400 | [diff] [blame] | 155 | # ACP componet |
| 156 | ifneq ($(CONFIG_DRM_AMD_ACP),) |
| 157 | amdgpu-y += amdgpu_acp.o |
| 158 | |
| 159 | AMDACPPATH := ../acp |
| 160 | include $(FULL_AMD_PATH)/acp/Makefile |
| 161 | |
| 162 | amdgpu-y += $(AMD_ACP_FILES) |
| 163 | endif |
| 164 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 165 | amdgpu-$(CONFIG_COMPAT) += amdgpu_ioc32.o |
| 166 | amdgpu-$(CONFIG_VGA_SWITCHEROO) += amdgpu_atpx_handler.o |
| 167 | amdgpu-$(CONFIG_ACPI) += amdgpu_acpi.o |
| 168 | amdgpu-$(CONFIG_MMU_NOTIFIER) += amdgpu_mn.o |
| 169 | |
Qiang Yu | bd90dd8 | 2015-12-02 10:56:57 +0800 | [diff] [blame] | 170 | include $(FULL_AMD_PATH)/powerplay/Makefile |
Alex Deucher | 1f7371b | 2015-12-02 17:46:21 -0500 | [diff] [blame] | 171 | |
| 172 | amdgpu-y += $(AMD_POWERPLAY_FILES) |
| 173 | |
Harry Wentland | 4562236 | 2017-09-12 15:58:20 -0400 | [diff] [blame] | 174 | ifneq ($(CONFIG_DRM_AMD_DC),) |
| 175 | |
| 176 | RELATIVE_AMD_DISPLAY_PATH = ../$(DISPLAY_FOLDER_NAME) |
| 177 | include $(FULL_AMD_DISPLAY_PATH)/Makefile |
| 178 | |
| 179 | amdgpu-y += $(AMD_DISPLAY_FILES) |
| 180 | |
| 181 | endif |
| 182 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 183 | obj-$(CONFIG_DRM_AMDGPU)+= amdgpu.o |