]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/amd/amdgpu/Makefile
drm/amdgpu: add psp_v12_0 for renoir (v2)
[linux.git] / drivers / gpu / drm / amd / amdgpu / Makefile
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
26 FULL_AMD_PATH=$(srctree)/$(src)/..
27 DISPLAY_FOLDER_NAME=display
28 FULL_AMD_DISPLAY_PATH = $(FULL_AMD_PATH)/$(DISPLAY_FOLDER_NAME)
29
30 ccflags-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
41 amdgpu-y := amdgpu_drv.o
42
43 # add KMS driver
44 amdgpu-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_dma_buf.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 amdgpu_discovery.o
58
59 amdgpu-$(CONFIG_PERF_EVENTS) += amdgpu_pmu.o
60
61 # add asic specific block
62 amdgpu-$(CONFIG_DRM_AMDGPU_CIK)+= cik.o cik_ih.o kv_smc.o kv_dpm.o \
63         dce_v8_0.o gfx_v7_0.o cik_sdma.o uvd_v4_2.o vce_v2_0.o
64
65 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
66
67 amdgpu-y += \
68         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 \
69         vega20_reg_init.o nbio_v7_4.o nbio_v2_3.o nv.o navi10_reg_init.o navi14_reg_init.o \
70         arct_reg_init.o navi12_reg_init.o
71
72 # add DF block
73 amdgpu-y += \
74         df_v1_7.o \
75         df_v3_6.o
76
77 # add GMC block
78 amdgpu-y += \
79         gmc_v7_0.o \
80         gmc_v8_0.o \
81         gfxhub_v1_0.o mmhub_v1_0.o gmc_v9_0.o gfxhub_v1_1.o mmhub_v9_4.o \
82         gfxhub_v2_0.o mmhub_v2_0.o gmc_v10_0.o
83
84 # add UMC block
85 amdgpu-y += \
86         umc_v6_1.o
87
88 # add IH block
89 amdgpu-y += \
90         amdgpu_irq.o \
91         amdgpu_ih.o \
92         iceland_ih.o \
93         tonga_ih.o \
94         cz_ih.o \
95         vega10_ih.o \
96         navi10_ih.o
97
98 # add PSP block
99 amdgpu-y += \
100         amdgpu_psp.o \
101         psp_v3_1.o \
102         psp_v10_0.o \
103         psp_v11_0.o \
104         psp_v12_0.o
105
106 # add SMC block
107 amdgpu-y += \
108         amdgpu_dpm.o
109
110 # add DCE block
111 amdgpu-y += \
112         dce_v10_0.o \
113         dce_v11_0.o \
114         dce_virtual.o
115
116 # add GFX block
117 amdgpu-y += \
118         amdgpu_gfx.o \
119         amdgpu_rlc.o \
120         gfx_v8_0.o \
121         gfx_v9_0.o \
122         gfx_v10_0.o
123
124 # add async DMA block
125 amdgpu-y += \
126         amdgpu_sdma.o \
127         sdma_v2_4.o \
128         sdma_v3_0.o \
129         sdma_v4_0.o \
130         sdma_v5_0.o
131
132 # add MES block
133 amdgpu-y += \
134         mes_v10_1.o
135
136 # add UVD block
137 amdgpu-y += \
138         amdgpu_uvd.o \
139         uvd_v5_0.o \
140         uvd_v6_0.o \
141         uvd_v7_0.o
142
143 # add VCE block
144 amdgpu-y += \
145         amdgpu_vce.o \
146         vce_v3_0.o \
147         vce_v4_0.o
148
149 # add VCN block
150 amdgpu-y += \
151         amdgpu_vcn.o \
152         vcn_v1_0.o \
153         vcn_v2_0.o \
154         vcn_v2_5.o
155
156 # add ATHUB block
157 amdgpu-y += \
158         athub_v1_0.o \
159         athub_v2_0.o
160
161 # add amdkfd interfaces
162 amdgpu-y += amdgpu_amdkfd.o
163
164 ifneq ($(CONFIG_HSA_AMD),)
165 AMDKFD_PATH := ../amdkfd
166 include $(FULL_AMD_PATH)/amdkfd/Makefile
167 amdgpu-y += $(AMDKFD_FILES)
168 amdgpu-y += \
169          amdgpu_amdkfd_fence.o \
170          amdgpu_amdkfd_gpuvm.o \
171          amdgpu_amdkfd_gfx_v8.o \
172          amdgpu_amdkfd_gfx_v9.o \
173          amdgpu_amdkfd_arcturus.o \
174          amdgpu_amdkfd_gfx_v10.o
175
176 ifneq ($(CONFIG_DRM_AMDGPU_CIK),)
177 amdgpu-y += amdgpu_amdkfd_gfx_v7.o
178 endif
179
180 endif
181
182 # add cgs
183 amdgpu-y += amdgpu_cgs.o
184
185 # GPU scheduler
186 amdgpu-y += amdgpu_job.o
187
188 # ACP componet
189 ifneq ($(CONFIG_DRM_AMD_ACP),)
190 amdgpu-y += amdgpu_acp.o
191
192 AMDACPPATH := ../acp
193 include $(FULL_AMD_PATH)/acp/Makefile
194
195 amdgpu-y += $(AMD_ACP_FILES)
196 endif
197
198 amdgpu-$(CONFIG_COMPAT) += amdgpu_ioc32.o
199 amdgpu-$(CONFIG_VGA_SWITCHEROO) += amdgpu_atpx_handler.o
200 amdgpu-$(CONFIG_ACPI) += amdgpu_acpi.o
201 amdgpu-$(CONFIG_HMM_MIRROR) += amdgpu_mn.o
202
203 include $(FULL_AMD_PATH)/powerplay/Makefile
204
205 amdgpu-y += $(AMD_POWERPLAY_FILES)
206
207 ifneq ($(CONFIG_DRM_AMD_DC),)
208
209 RELATIVE_AMD_DISPLAY_PATH = ../$(DISPLAY_FOLDER_NAME)
210 include $(FULL_AMD_DISPLAY_PATH)/Makefile
211
212 amdgpu-y += $(AMD_DISPLAY_FILES)
213
214 endif
215
216 obj-$(CONFIG_DRM_AMDGPU)+= amdgpu.o