xref: /openbmc/linux/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c (revision e5f586c763a079349398e2b0c7c271386193ac34)
1 /*
2  * Copyright 2008 Advanced Micro Devices, Inc.
3  * Copyright 2008 Red Hat Inc.
4  * Copyright 2009 Jerome Glisse.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22  * OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors: Dave Airlie
25  *          Alex Deucher
26  *          Jerome Glisse
27  */
28 #include <drm/drmP.h>
29 #include "amdgpu.h"
30 #include <drm/amdgpu_drm.h>
31 #include "amdgpu_uvd.h"
32 #include "amdgpu_vce.h"
33 
34 #include <linux/vga_switcheroo.h>
35 #include <linux/slab.h>
36 #include <linux/pm_runtime.h>
37 #include "amdgpu_amdkfd.h"
38 
39 #if defined(CONFIG_VGA_SWITCHEROO)
40 bool amdgpu_has_atpx(void);
41 #else
42 static inline bool amdgpu_has_atpx(void) { return false; }
43 #endif
44 
45 /**
46  * amdgpu_driver_unload_kms - Main unload function for KMS.
47  *
48  * @dev: drm dev pointer
49  *
50  * This is the main unload function for KMS (all asics).
51  * Returns 0 on success.
52  */
53 void amdgpu_driver_unload_kms(struct drm_device *dev)
54 {
55 	struct amdgpu_device *adev = dev->dev_private;
56 
57 	if (adev == NULL)
58 		return;
59 
60 	if (adev->rmmio == NULL)
61 		goto done_free;
62 
63 	if (amdgpu_sriov_vf(adev))
64 		amdgpu_virt_request_full_gpu(adev, false);
65 
66 	if (amdgpu_device_is_px(dev)) {
67 		pm_runtime_get_sync(dev->dev);
68 		pm_runtime_forbid(dev->dev);
69 	}
70 
71 	amdgpu_amdkfd_device_fini(adev);
72 
73 	amdgpu_acpi_fini(adev);
74 
75 	amdgpu_device_fini(adev);
76 
77 done_free:
78 	kfree(adev);
79 	dev->dev_private = NULL;
80 }
81 
82 /**
83  * amdgpu_driver_load_kms - Main load function for KMS.
84  *
85  * @dev: drm dev pointer
86  * @flags: device flags
87  *
88  * This is the main load function for KMS (all asics).
89  * Returns 0 on success, error on failure.
90  */
91 int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
92 {
93 	struct amdgpu_device *adev;
94 	int r, acpi_status;
95 
96 	adev = kzalloc(sizeof(struct amdgpu_device), GFP_KERNEL);
97 	if (adev == NULL) {
98 		return -ENOMEM;
99 	}
100 	dev->dev_private = (void *)adev;
101 
102 	if ((amdgpu_runtime_pm != 0) &&
103 	    amdgpu_has_atpx() &&
104 	    (amdgpu_is_atpx_hybrid() ||
105 	     amdgpu_has_atpx_dgpu_power_cntl()) &&
106 	    ((flags & AMD_IS_APU) == 0))
107 		flags |= AMD_IS_PX;
108 
109 	/* amdgpu_device_init should report only fatal error
110 	 * like memory allocation failure or iomapping failure,
111 	 * or memory manager initialization failure, it must
112 	 * properly initialize the GPU MC controller and permit
113 	 * VRAM allocation
114 	 */
115 	r = amdgpu_device_init(adev, dev, dev->pdev, flags);
116 	if (r) {
117 		dev_err(&dev->pdev->dev, "Fatal error during GPU init\n");
118 		goto out;
119 	}
120 
121 	/* Call ACPI methods: require modeset init
122 	 * but failure is not fatal
123 	 */
124 	if (!r) {
125 		acpi_status = amdgpu_acpi_init(adev);
126 		if (acpi_status)
127 		dev_dbg(&dev->pdev->dev,
128 				"Error during ACPI methods call\n");
129 	}
130 
131 	amdgpu_amdkfd_load_interface(adev);
132 	amdgpu_amdkfd_device_probe(adev);
133 	amdgpu_amdkfd_device_init(adev);
134 
135 	if (amdgpu_device_is_px(dev)) {
136 		pm_runtime_use_autosuspend(dev->dev);
137 		pm_runtime_set_autosuspend_delay(dev->dev, 5000);
138 		pm_runtime_set_active(dev->dev);
139 		pm_runtime_allow(dev->dev);
140 		pm_runtime_mark_last_busy(dev->dev);
141 		pm_runtime_put_autosuspend(dev->dev);
142 	}
143 
144 	if (amdgpu_sriov_vf(adev))
145 		amdgpu_virt_release_full_gpu(adev, true);
146 
147 out:
148 	if (r) {
149 		/* balance pm_runtime_get_sync in amdgpu_driver_unload_kms */
150 		if (adev->rmmio && amdgpu_device_is_px(dev))
151 			pm_runtime_put_noidle(dev->dev);
152 		amdgpu_driver_unload_kms(dev);
153 	}
154 
155 	return r;
156 }
157 
158 static int amdgpu_firmware_info(struct drm_amdgpu_info_firmware *fw_info,
159 				struct drm_amdgpu_query_fw *query_fw,
160 				struct amdgpu_device *adev)
161 {
162 	switch (query_fw->fw_type) {
163 	case AMDGPU_INFO_FW_VCE:
164 		fw_info->ver = adev->vce.fw_version;
165 		fw_info->feature = adev->vce.fb_version;
166 		break;
167 	case AMDGPU_INFO_FW_UVD:
168 		fw_info->ver = adev->uvd.fw_version;
169 		fw_info->feature = 0;
170 		break;
171 	case AMDGPU_INFO_FW_GMC:
172 		fw_info->ver = adev->mc.fw_version;
173 		fw_info->feature = 0;
174 		break;
175 	case AMDGPU_INFO_FW_GFX_ME:
176 		fw_info->ver = adev->gfx.me_fw_version;
177 		fw_info->feature = adev->gfx.me_feature_version;
178 		break;
179 	case AMDGPU_INFO_FW_GFX_PFP:
180 		fw_info->ver = adev->gfx.pfp_fw_version;
181 		fw_info->feature = adev->gfx.pfp_feature_version;
182 		break;
183 	case AMDGPU_INFO_FW_GFX_CE:
184 		fw_info->ver = adev->gfx.ce_fw_version;
185 		fw_info->feature = adev->gfx.ce_feature_version;
186 		break;
187 	case AMDGPU_INFO_FW_GFX_RLC:
188 		fw_info->ver = adev->gfx.rlc_fw_version;
189 		fw_info->feature = adev->gfx.rlc_feature_version;
190 		break;
191 	case AMDGPU_INFO_FW_GFX_MEC:
192 		if (query_fw->index == 0) {
193 			fw_info->ver = adev->gfx.mec_fw_version;
194 			fw_info->feature = adev->gfx.mec_feature_version;
195 		} else if (query_fw->index == 1) {
196 			fw_info->ver = adev->gfx.mec2_fw_version;
197 			fw_info->feature = adev->gfx.mec2_feature_version;
198 		} else
199 			return -EINVAL;
200 		break;
201 	case AMDGPU_INFO_FW_SMC:
202 		fw_info->ver = adev->pm.fw_version;
203 		fw_info->feature = 0;
204 		break;
205 	case AMDGPU_INFO_FW_SDMA:
206 		if (query_fw->index >= adev->sdma.num_instances)
207 			return -EINVAL;
208 		fw_info->ver = adev->sdma.instance[query_fw->index].fw_version;
209 		fw_info->feature = adev->sdma.instance[query_fw->index].feature_version;
210 		break;
211 	case AMDGPU_INFO_FW_SOS:
212 		fw_info->ver = adev->psp.sos_fw_version;
213 		fw_info->feature = adev->psp.sos_feature_version;
214 		break;
215 	case AMDGPU_INFO_FW_ASD:
216 		fw_info->ver = adev->psp.asd_fw_version;
217 		fw_info->feature = adev->psp.asd_feature_version;
218 		break;
219 	default:
220 		return -EINVAL;
221 	}
222 	return 0;
223 }
224 
225 /*
226  * Userspace get information ioctl
227  */
228 /**
229  * amdgpu_info_ioctl - answer a device specific request.
230  *
231  * @adev: amdgpu device pointer
232  * @data: request object
233  * @filp: drm filp
234  *
235  * This function is used to pass device specific parameters to the userspace
236  * drivers.  Examples include: pci device id, pipeline parms, tiling params,
237  * etc. (all asics).
238  * Returns 0 on success, -EINVAL on failure.
239  */
240 static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
241 {
242 	struct amdgpu_device *adev = dev->dev_private;
243 	struct drm_amdgpu_info *info = data;
244 	struct amdgpu_mode_info *minfo = &adev->mode_info;
245 	void __user *out = (void __user *)(long)info->return_pointer;
246 	uint32_t size = info->return_size;
247 	struct drm_crtc *crtc;
248 	uint32_t ui32 = 0;
249 	uint64_t ui64 = 0;
250 	int i, found;
251 	int ui32_size = sizeof(ui32);
252 
253 	if (!info->return_size || !info->return_pointer)
254 		return -EINVAL;
255 
256 	switch (info->query) {
257 	case AMDGPU_INFO_ACCEL_WORKING:
258 		ui32 = adev->accel_working;
259 		return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
260 	case AMDGPU_INFO_CRTC_FROM_ID:
261 		for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
262 			crtc = (struct drm_crtc *)minfo->crtcs[i];
263 			if (crtc && crtc->base.id == info->mode_crtc.id) {
264 				struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
265 				ui32 = amdgpu_crtc->crtc_id;
266 				found = 1;
267 				break;
268 			}
269 		}
270 		if (!found) {
271 			DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
272 			return -EINVAL;
273 		}
274 		return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
275 	case AMDGPU_INFO_HW_IP_INFO: {
276 		struct drm_amdgpu_info_hw_ip ip = {};
277 		enum amd_ip_block_type type;
278 		uint32_t ring_mask = 0;
279 		uint32_t ib_start_alignment = 0;
280 		uint32_t ib_size_alignment = 0;
281 
282 		if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
283 			return -EINVAL;
284 
285 		switch (info->query_hw_ip.type) {
286 		case AMDGPU_HW_IP_GFX:
287 			type = AMD_IP_BLOCK_TYPE_GFX;
288 			for (i = 0; i < adev->gfx.num_gfx_rings; i++)
289 				ring_mask |= ((adev->gfx.gfx_ring[i].ready ? 1 : 0) << i);
290 			ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
291 			ib_size_alignment = 8;
292 			break;
293 		case AMDGPU_HW_IP_COMPUTE:
294 			type = AMD_IP_BLOCK_TYPE_GFX;
295 			for (i = 0; i < adev->gfx.num_compute_rings; i++)
296 				ring_mask |= ((adev->gfx.compute_ring[i].ready ? 1 : 0) << i);
297 			ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
298 			ib_size_alignment = 8;
299 			break;
300 		case AMDGPU_HW_IP_DMA:
301 			type = AMD_IP_BLOCK_TYPE_SDMA;
302 			for (i = 0; i < adev->sdma.num_instances; i++)
303 				ring_mask |= ((adev->sdma.instance[i].ring.ready ? 1 : 0) << i);
304 			ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
305 			ib_size_alignment = 1;
306 			break;
307 		case AMDGPU_HW_IP_UVD:
308 			type = AMD_IP_BLOCK_TYPE_UVD;
309 			ring_mask = adev->uvd.ring.ready ? 1 : 0;
310 			ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
311 			ib_size_alignment = 16;
312 			break;
313 		case AMDGPU_HW_IP_VCE:
314 			type = AMD_IP_BLOCK_TYPE_VCE;
315 			for (i = 0; i < adev->vce.num_rings; i++)
316 				ring_mask |= ((adev->vce.ring[i].ready ? 1 : 0) << i);
317 			ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
318 			ib_size_alignment = 1;
319 			break;
320 		case AMDGPU_HW_IP_UVD_ENC:
321 			type = AMD_IP_BLOCK_TYPE_UVD;
322 			for (i = 0; i < adev->uvd.num_enc_rings; i++)
323 				ring_mask |= ((adev->uvd.ring_enc[i].ready ? 1 : 0) << i);
324 			ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
325 			ib_size_alignment = 1;
326 			break;
327 		default:
328 			return -EINVAL;
329 		}
330 
331 		for (i = 0; i < adev->num_ip_blocks; i++) {
332 			if (adev->ip_blocks[i].version->type == type &&
333 			    adev->ip_blocks[i].status.valid) {
334 				ip.hw_ip_version_major = adev->ip_blocks[i].version->major;
335 				ip.hw_ip_version_minor = adev->ip_blocks[i].version->minor;
336 				ip.capabilities_flags = 0;
337 				ip.available_rings = ring_mask;
338 				ip.ib_start_alignment = ib_start_alignment;
339 				ip.ib_size_alignment = ib_size_alignment;
340 				break;
341 			}
342 		}
343 		return copy_to_user(out, &ip,
344 				    min((size_t)size, sizeof(ip))) ? -EFAULT : 0;
345 	}
346 	case AMDGPU_INFO_HW_IP_COUNT: {
347 		enum amd_ip_block_type type;
348 		uint32_t count = 0;
349 
350 		switch (info->query_hw_ip.type) {
351 		case AMDGPU_HW_IP_GFX:
352 			type = AMD_IP_BLOCK_TYPE_GFX;
353 			break;
354 		case AMDGPU_HW_IP_COMPUTE:
355 			type = AMD_IP_BLOCK_TYPE_GFX;
356 			break;
357 		case AMDGPU_HW_IP_DMA:
358 			type = AMD_IP_BLOCK_TYPE_SDMA;
359 			break;
360 		case AMDGPU_HW_IP_UVD:
361 			type = AMD_IP_BLOCK_TYPE_UVD;
362 			break;
363 		case AMDGPU_HW_IP_VCE:
364 			type = AMD_IP_BLOCK_TYPE_VCE;
365 			break;
366 		case AMDGPU_HW_IP_UVD_ENC:
367 			type = AMD_IP_BLOCK_TYPE_UVD;
368 			break;
369 		default:
370 			return -EINVAL;
371 		}
372 
373 		for (i = 0; i < adev->num_ip_blocks; i++)
374 			if (adev->ip_blocks[i].version->type == type &&
375 			    adev->ip_blocks[i].status.valid &&
376 			    count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
377 				count++;
378 
379 		return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
380 	}
381 	case AMDGPU_INFO_TIMESTAMP:
382 		ui64 = amdgpu_gfx_get_gpu_clock_counter(adev);
383 		return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
384 	case AMDGPU_INFO_FW_VERSION: {
385 		struct drm_amdgpu_info_firmware fw_info;
386 		int ret;
387 
388 		/* We only support one instance of each IP block right now. */
389 		if (info->query_fw.ip_instance != 0)
390 			return -EINVAL;
391 
392 		ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev);
393 		if (ret)
394 			return ret;
395 
396 		return copy_to_user(out, &fw_info,
397 				    min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
398 	}
399 	case AMDGPU_INFO_NUM_BYTES_MOVED:
400 		ui64 = atomic64_read(&adev->num_bytes_moved);
401 		return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
402 	case AMDGPU_INFO_NUM_EVICTIONS:
403 		ui64 = atomic64_read(&adev->num_evictions);
404 		return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
405 	case AMDGPU_INFO_VRAM_USAGE:
406 		ui64 = atomic64_read(&adev->vram_usage);
407 		return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
408 	case AMDGPU_INFO_VIS_VRAM_USAGE:
409 		ui64 = atomic64_read(&adev->vram_vis_usage);
410 		return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
411 	case AMDGPU_INFO_GTT_USAGE:
412 		ui64 = atomic64_read(&adev->gtt_usage);
413 		return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
414 	case AMDGPU_INFO_GDS_CONFIG: {
415 		struct drm_amdgpu_info_gds gds_info;
416 
417 		memset(&gds_info, 0, sizeof(gds_info));
418 		gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size >> AMDGPU_GDS_SHIFT;
419 		gds_info.compute_partition_size = adev->gds.mem.cs_partition_size >> AMDGPU_GDS_SHIFT;
420 		gds_info.gds_total_size = adev->gds.mem.total_size >> AMDGPU_GDS_SHIFT;
421 		gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size >> AMDGPU_GWS_SHIFT;
422 		gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size >> AMDGPU_GWS_SHIFT;
423 		gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size >> AMDGPU_OA_SHIFT;
424 		gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size >> AMDGPU_OA_SHIFT;
425 		return copy_to_user(out, &gds_info,
426 				    min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
427 	}
428 	case AMDGPU_INFO_VRAM_GTT: {
429 		struct drm_amdgpu_info_vram_gtt vram_gtt;
430 
431 		vram_gtt.vram_size = adev->mc.real_vram_size;
432 		vram_gtt.vram_size -= adev->vram_pin_size;
433 		vram_gtt.vram_cpu_accessible_size = adev->mc.visible_vram_size;
434 		vram_gtt.vram_cpu_accessible_size -= (adev->vram_pin_size - adev->invisible_pin_size);
435 		vram_gtt.gtt_size  = adev->mc.gtt_size;
436 		vram_gtt.gtt_size -= adev->gart_pin_size;
437 		return copy_to_user(out, &vram_gtt,
438 				    min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
439 	}
440 	case AMDGPU_INFO_MEMORY: {
441 		struct drm_amdgpu_memory_info mem;
442 
443 		memset(&mem, 0, sizeof(mem));
444 		mem.vram.total_heap_size = adev->mc.real_vram_size;
445 		mem.vram.usable_heap_size =
446 			adev->mc.real_vram_size - adev->vram_pin_size;
447 		mem.vram.heap_usage = atomic64_read(&adev->vram_usage);
448 		mem.vram.max_allocation = mem.vram.usable_heap_size * 3 / 4;
449 
450 		mem.cpu_accessible_vram.total_heap_size =
451 			adev->mc.visible_vram_size;
452 		mem.cpu_accessible_vram.usable_heap_size =
453 			adev->mc.visible_vram_size -
454 			(adev->vram_pin_size - adev->invisible_pin_size);
455 		mem.cpu_accessible_vram.heap_usage =
456 			atomic64_read(&adev->vram_vis_usage);
457 		mem.cpu_accessible_vram.max_allocation =
458 			mem.cpu_accessible_vram.usable_heap_size * 3 / 4;
459 
460 		mem.gtt.total_heap_size = adev->mc.gtt_size;
461 		mem.gtt.usable_heap_size =
462 			adev->mc.gtt_size - adev->gart_pin_size;
463 		mem.gtt.heap_usage = atomic64_read(&adev->gtt_usage);
464 		mem.gtt.max_allocation = mem.gtt.usable_heap_size * 3 / 4;
465 
466 		return copy_to_user(out, &mem,
467 				    min((size_t)size, sizeof(mem)))
468 				    ? -EFAULT : 0;
469 	}
470 	case AMDGPU_INFO_READ_MMR_REG: {
471 		unsigned n, alloc_size;
472 		uint32_t *regs;
473 		unsigned se_num = (info->read_mmr_reg.instance >>
474 				   AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
475 				  AMDGPU_INFO_MMR_SE_INDEX_MASK;
476 		unsigned sh_num = (info->read_mmr_reg.instance >>
477 				   AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
478 				  AMDGPU_INFO_MMR_SH_INDEX_MASK;
479 
480 		/* set full masks if the userspace set all bits
481 		 * in the bitfields */
482 		if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
483 			se_num = 0xffffffff;
484 		if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
485 			sh_num = 0xffffffff;
486 
487 		regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
488 		if (!regs)
489 			return -ENOMEM;
490 		alloc_size = info->read_mmr_reg.count * sizeof(*regs);
491 
492 		for (i = 0; i < info->read_mmr_reg.count; i++)
493 			if (amdgpu_asic_read_register(adev, se_num, sh_num,
494 						      info->read_mmr_reg.dword_offset + i,
495 						      &regs[i])) {
496 				DRM_DEBUG_KMS("unallowed offset %#x\n",
497 					      info->read_mmr_reg.dword_offset + i);
498 				kfree(regs);
499 				return -EFAULT;
500 			}
501 		n = copy_to_user(out, regs, min(size, alloc_size));
502 		kfree(regs);
503 		return n ? -EFAULT : 0;
504 	}
505 	case AMDGPU_INFO_DEV_INFO: {
506 		struct drm_amdgpu_info_device dev_info = {};
507 
508 		dev_info.device_id = dev->pdev->device;
509 		dev_info.chip_rev = adev->rev_id;
510 		dev_info.external_rev = adev->external_rev_id;
511 		dev_info.pci_rev = dev->pdev->revision;
512 		dev_info.family = adev->family;
513 		dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
514 		dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
515 		/* return all clocks in KHz */
516 		dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
517 		if (adev->pm.dpm_enabled) {
518 			dev_info.max_engine_clock = amdgpu_dpm_get_sclk(adev, false) * 10;
519 			dev_info.max_memory_clock = amdgpu_dpm_get_mclk(adev, false) * 10;
520 		} else {
521 			dev_info.max_engine_clock = adev->pm.default_sclk * 10;
522 			dev_info.max_memory_clock = adev->pm.default_mclk * 10;
523 		}
524 		dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
525 		dev_info.num_rb_pipes = adev->gfx.config.max_backends_per_se *
526 			adev->gfx.config.max_shader_engines;
527 		dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
528 		dev_info._pad = 0;
529 		dev_info.ids_flags = 0;
530 		if (adev->flags & AMD_IS_APU)
531 			dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
532 		if (amdgpu_sriov_vf(adev))
533 			dev_info.ids_flags |= AMDGPU_IDS_FLAGS_PREEMPTION;
534 		dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
535 		dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
536 		dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
537 		dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) *
538 					     AMDGPU_GPU_PAGE_SIZE;
539 		dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
540 
541 		dev_info.cu_active_number = adev->gfx.cu_info.number;
542 		dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
543 		dev_info.ce_ram_size = adev->gfx.ce_ram_size;
544 		memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
545 		       sizeof(adev->gfx.cu_info.bitmap));
546 		dev_info.vram_type = adev->mc.vram_type;
547 		dev_info.vram_bit_width = adev->mc.vram_width;
548 		dev_info.vce_harvest_config = adev->vce.harvest_config;
549 		dev_info.gc_double_offchip_lds_buf =
550 			adev->gfx.config.double_offchip_lds_buf;
551 
552 		if (amdgpu_ngg) {
553 			dev_info.prim_buf_gpu_addr = adev->gfx.ngg.buf[PRIM].gpu_addr;
554 			dev_info.pos_buf_gpu_addr = adev->gfx.ngg.buf[POS].gpu_addr;
555 			dev_info.cntl_sb_buf_gpu_addr = adev->gfx.ngg.buf[CNTL].gpu_addr;
556 			dev_info.param_buf_gpu_addr = adev->gfx.ngg.buf[PARAM].gpu_addr;
557 		}
558 
559 		return copy_to_user(out, &dev_info,
560 				    min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
561 	}
562 	case AMDGPU_INFO_VCE_CLOCK_TABLE: {
563 		unsigned i;
564 		struct drm_amdgpu_info_vce_clock_table vce_clk_table = {};
565 		struct amd_vce_state *vce_state;
566 
567 		for (i = 0; i < AMDGPU_VCE_CLOCK_TABLE_ENTRIES; i++) {
568 			vce_state = amdgpu_dpm_get_vce_clock_state(adev, i);
569 			if (vce_state) {
570 				vce_clk_table.entries[i].sclk = vce_state->sclk;
571 				vce_clk_table.entries[i].mclk = vce_state->mclk;
572 				vce_clk_table.entries[i].eclk = vce_state->evclk;
573 				vce_clk_table.num_valid_entries++;
574 			}
575 		}
576 
577 		return copy_to_user(out, &vce_clk_table,
578 				    min((size_t)size, sizeof(vce_clk_table))) ? -EFAULT : 0;
579 	}
580 	case AMDGPU_INFO_VBIOS: {
581 		uint32_t bios_size = adev->bios_size;
582 
583 		switch (info->vbios_info.type) {
584 		case AMDGPU_INFO_VBIOS_SIZE:
585 			return copy_to_user(out, &bios_size,
586 					min((size_t)size, sizeof(bios_size)))
587 					? -EFAULT : 0;
588 		case AMDGPU_INFO_VBIOS_IMAGE: {
589 			uint8_t *bios;
590 			uint32_t bios_offset = info->vbios_info.offset;
591 
592 			if (bios_offset >= bios_size)
593 				return -EINVAL;
594 
595 			bios = adev->bios + bios_offset;
596 			return copy_to_user(out, bios,
597 					    min((size_t)size, (size_t)(bios_size - bios_offset)))
598 					? -EFAULT : 0;
599 		}
600 		default:
601 			DRM_DEBUG_KMS("Invalid request %d\n",
602 					info->vbios_info.type);
603 			return -EINVAL;
604 		}
605 	}
606 	case AMDGPU_INFO_NUM_HANDLES: {
607 		struct drm_amdgpu_info_num_handles handle;
608 
609 		switch (info->query_hw_ip.type) {
610 		case AMDGPU_HW_IP_UVD:
611 			/* Starting Polaris, we support unlimited UVD handles */
612 			if (adev->asic_type < CHIP_POLARIS10) {
613 				handle.uvd_max_handles = adev->uvd.max_handles;
614 				handle.uvd_used_handles = amdgpu_uvd_used_handles(adev);
615 
616 				return copy_to_user(out, &handle,
617 					min((size_t)size, sizeof(handle))) ? -EFAULT : 0;
618 			} else {
619 				return -ENODATA;
620 			}
621 
622 			break;
623 		default:
624 			return -EINVAL;
625 		}
626 	}
627 	case AMDGPU_INFO_SENSOR: {
628 		struct pp_gpu_power query = {0};
629 		int query_size = sizeof(query);
630 
631 		if (amdgpu_dpm == 0)
632 			return -ENOENT;
633 
634 		switch (info->sensor_info.type) {
635 		case AMDGPU_INFO_SENSOR_GFX_SCLK:
636 			/* get sclk in Mhz */
637 			if (amdgpu_dpm_read_sensor(adev,
638 						   AMDGPU_PP_SENSOR_GFX_SCLK,
639 						   (void *)&ui32, &ui32_size)) {
640 				return -EINVAL;
641 			}
642 			ui32 /= 100;
643 			break;
644 		case AMDGPU_INFO_SENSOR_GFX_MCLK:
645 			/* get mclk in Mhz */
646 			if (amdgpu_dpm_read_sensor(adev,
647 						   AMDGPU_PP_SENSOR_GFX_MCLK,
648 						   (void *)&ui32, &ui32_size)) {
649 				return -EINVAL;
650 			}
651 			ui32 /= 100;
652 			break;
653 		case AMDGPU_INFO_SENSOR_GPU_TEMP:
654 			/* get temperature in millidegrees C */
655 			if (amdgpu_dpm_read_sensor(adev,
656 						   AMDGPU_PP_SENSOR_GPU_TEMP,
657 						   (void *)&ui32, &ui32_size)) {
658 				return -EINVAL;
659 			}
660 			break;
661 		case AMDGPU_INFO_SENSOR_GPU_LOAD:
662 			/* get GPU load */
663 			if (amdgpu_dpm_read_sensor(adev,
664 						   AMDGPU_PP_SENSOR_GPU_LOAD,
665 						   (void *)&ui32, &ui32_size)) {
666 				return -EINVAL;
667 			}
668 			break;
669 		case AMDGPU_INFO_SENSOR_GPU_AVG_POWER:
670 			/* get average GPU power */
671 			if (amdgpu_dpm_read_sensor(adev,
672 						   AMDGPU_PP_SENSOR_GPU_POWER,
673 						   (void *)&query, &query_size)) {
674 				return -EINVAL;
675 			}
676 			ui32 = query.average_gpu_power >> 8;
677 			break;
678 		case AMDGPU_INFO_SENSOR_VDDNB:
679 			/* get VDDNB in millivolts */
680 			if (amdgpu_dpm_read_sensor(adev,
681 						   AMDGPU_PP_SENSOR_VDDNB,
682 						   (void *)&ui32, &ui32_size)) {
683 				return -EINVAL;
684 			}
685 			break;
686 		case AMDGPU_INFO_SENSOR_VDDGFX:
687 			/* get VDDGFX in millivolts */
688 			if (amdgpu_dpm_read_sensor(adev,
689 						   AMDGPU_PP_SENSOR_VDDGFX,
690 						   (void *)&ui32, &ui32_size)) {
691 				return -EINVAL;
692 			}
693 			break;
694 		default:
695 			DRM_DEBUG_KMS("Invalid request %d\n",
696 				      info->sensor_info.type);
697 			return -EINVAL;
698 		}
699 		return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
700 	}
701 	default:
702 		DRM_DEBUG_KMS("Invalid request %d\n", info->query);
703 		return -EINVAL;
704 	}
705 	return 0;
706 }
707 
708 
709 /*
710  * Outdated mess for old drm with Xorg being in charge (void function now).
711  */
712 /**
713  * amdgpu_driver_lastclose_kms - drm callback for last close
714  *
715  * @dev: drm dev pointer
716  *
717  * Switch vga_switcheroo state after last close (all asics).
718  */
719 void amdgpu_driver_lastclose_kms(struct drm_device *dev)
720 {
721 	struct amdgpu_device *adev = dev->dev_private;
722 
723 	amdgpu_fbdev_restore_mode(adev);
724 	vga_switcheroo_process_delayed_switch();
725 }
726 
727 /**
728  * amdgpu_driver_open_kms - drm callback for open
729  *
730  * @dev: drm dev pointer
731  * @file_priv: drm file
732  *
733  * On device open, init vm on cayman+ (all asics).
734  * Returns 0 on success, error on failure.
735  */
736 int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
737 {
738 	struct amdgpu_device *adev = dev->dev_private;
739 	struct amdgpu_fpriv *fpriv;
740 	int r;
741 
742 	file_priv->driver_priv = NULL;
743 
744 	r = pm_runtime_get_sync(dev->dev);
745 	if (r < 0)
746 		return r;
747 
748 	fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
749 	if (unlikely(!fpriv)) {
750 		r = -ENOMEM;
751 		goto out_suspend;
752 	}
753 
754 	r = amdgpu_vm_init(adev, &fpriv->vm);
755 	if (r) {
756 		kfree(fpriv);
757 		goto out_suspend;
758 	}
759 
760 	fpriv->prt_va = amdgpu_vm_bo_add(adev, &fpriv->vm, NULL);
761 	if (!fpriv->prt_va) {
762 		r = -ENOMEM;
763 		amdgpu_vm_fini(adev, &fpriv->vm);
764 		kfree(fpriv);
765 		goto out_suspend;
766 	}
767 
768 	if (amdgpu_sriov_vf(adev)) {
769 		r = amdgpu_map_static_csa(adev, &fpriv->vm);
770 		if (r)
771 			goto out_suspend;
772 	}
773 
774 	mutex_init(&fpriv->bo_list_lock);
775 	idr_init(&fpriv->bo_list_handles);
776 
777 	amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
778 
779 	file_priv->driver_priv = fpriv;
780 
781 out_suspend:
782 	pm_runtime_mark_last_busy(dev->dev);
783 	pm_runtime_put_autosuspend(dev->dev);
784 
785 	return r;
786 }
787 
788 /**
789  * amdgpu_driver_postclose_kms - drm callback for post close
790  *
791  * @dev: drm dev pointer
792  * @file_priv: drm file
793  *
794  * On device post close, tear down vm on cayman+ (all asics).
795  */
796 void amdgpu_driver_postclose_kms(struct drm_device *dev,
797 				 struct drm_file *file_priv)
798 {
799 	struct amdgpu_device *adev = dev->dev_private;
800 	struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
801 	struct amdgpu_bo_list *list;
802 	int handle;
803 
804 	if (!fpriv)
805 		return;
806 
807 	pm_runtime_get_sync(dev->dev);
808 
809 	amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
810 
811 	amdgpu_uvd_free_handles(adev, file_priv);
812 	amdgpu_vce_free_handles(adev, file_priv);
813 
814 	amdgpu_vm_bo_rmv(adev, fpriv->prt_va);
815 
816 	if (amdgpu_sriov_vf(adev)) {
817 		/* TODO: how to handle reserve failure */
818 		BUG_ON(amdgpu_bo_reserve(adev->virt.csa_obj, false));
819 		amdgpu_vm_bo_rmv(adev, fpriv->vm.csa_bo_va);
820 		fpriv->vm.csa_bo_va = NULL;
821 		amdgpu_bo_unreserve(adev->virt.csa_obj);
822 	}
823 
824 	amdgpu_vm_fini(adev, &fpriv->vm);
825 
826 	idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
827 		amdgpu_bo_list_free(list);
828 
829 	idr_destroy(&fpriv->bo_list_handles);
830 	mutex_destroy(&fpriv->bo_list_lock);
831 
832 	kfree(fpriv);
833 	file_priv->driver_priv = NULL;
834 
835 	pm_runtime_mark_last_busy(dev->dev);
836 	pm_runtime_put_autosuspend(dev->dev);
837 }
838 
839 /*
840  * VBlank related functions.
841  */
842 /**
843  * amdgpu_get_vblank_counter_kms - get frame count
844  *
845  * @dev: drm dev pointer
846  * @pipe: crtc to get the frame count from
847  *
848  * Gets the frame count on the requested crtc (all asics).
849  * Returns frame count on success, -EINVAL on failure.
850  */
851 u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
852 {
853 	struct amdgpu_device *adev = dev->dev_private;
854 	int vpos, hpos, stat;
855 	u32 count;
856 
857 	if (pipe >= adev->mode_info.num_crtc) {
858 		DRM_ERROR("Invalid crtc %u\n", pipe);
859 		return -EINVAL;
860 	}
861 
862 	/* The hw increments its frame counter at start of vsync, not at start
863 	 * of vblank, as is required by DRM core vblank counter handling.
864 	 * Cook the hw count here to make it appear to the caller as if it
865 	 * incremented at start of vblank. We measure distance to start of
866 	 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
867 	 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
868 	 * result by 1 to give the proper appearance to caller.
869 	 */
870 	if (adev->mode_info.crtcs[pipe]) {
871 		/* Repeat readout if needed to provide stable result if
872 		 * we cross start of vsync during the queries.
873 		 */
874 		do {
875 			count = amdgpu_display_vblank_get_counter(adev, pipe);
876 			/* Ask amdgpu_get_crtc_scanoutpos to return vpos as
877 			 * distance to start of vblank, instead of regular
878 			 * vertical scanout pos.
879 			 */
880 			stat = amdgpu_get_crtc_scanoutpos(
881 				dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
882 				&vpos, &hpos, NULL, NULL,
883 				&adev->mode_info.crtcs[pipe]->base.hwmode);
884 		} while (count != amdgpu_display_vblank_get_counter(adev, pipe));
885 
886 		if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
887 		    (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
888 			DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
889 		} else {
890 			DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
891 				      pipe, vpos);
892 
893 			/* Bump counter if we are at >= leading edge of vblank,
894 			 * but before vsync where vpos would turn negative and
895 			 * the hw counter really increments.
896 			 */
897 			if (vpos >= 0)
898 				count++;
899 		}
900 	} else {
901 		/* Fallback to use value as is. */
902 		count = amdgpu_display_vblank_get_counter(adev, pipe);
903 		DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
904 	}
905 
906 	return count;
907 }
908 
909 /**
910  * amdgpu_enable_vblank_kms - enable vblank interrupt
911  *
912  * @dev: drm dev pointer
913  * @pipe: crtc to enable vblank interrupt for
914  *
915  * Enable the interrupt on the requested crtc (all asics).
916  * Returns 0 on success, -EINVAL on failure.
917  */
918 int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
919 {
920 	struct amdgpu_device *adev = dev->dev_private;
921 	int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
922 
923 	return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
924 }
925 
926 /**
927  * amdgpu_disable_vblank_kms - disable vblank interrupt
928  *
929  * @dev: drm dev pointer
930  * @pipe: crtc to disable vblank interrupt for
931  *
932  * Disable the interrupt on the requested crtc (all asics).
933  */
934 void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
935 {
936 	struct amdgpu_device *adev = dev->dev_private;
937 	int idx = amdgpu_crtc_idx_to_irq_type(adev, pipe);
938 
939 	amdgpu_irq_put(adev, &adev->crtc_irq, idx);
940 }
941 
942 /**
943  * amdgpu_get_vblank_timestamp_kms - get vblank timestamp
944  *
945  * @dev: drm dev pointer
946  * @crtc: crtc to get the timestamp for
947  * @max_error: max error
948  * @vblank_time: time value
949  * @flags: flags passed to the driver
950  *
951  * Gets the timestamp on the requested crtc based on the
952  * scanout position.  (all asics).
953  * Returns postive status flags on success, negative error on failure.
954  */
955 int amdgpu_get_vblank_timestamp_kms(struct drm_device *dev, unsigned int pipe,
956 				    int *max_error,
957 				    struct timeval *vblank_time,
958 				    unsigned flags)
959 {
960 	struct drm_crtc *crtc;
961 	struct amdgpu_device *adev = dev->dev_private;
962 
963 	if (pipe >= dev->num_crtcs) {
964 		DRM_ERROR("Invalid crtc %u\n", pipe);
965 		return -EINVAL;
966 	}
967 
968 	/* Get associated drm_crtc: */
969 	crtc = &adev->mode_info.crtcs[pipe]->base;
970 	if (!crtc) {
971 		/* This can occur on driver load if some component fails to
972 		 * initialize completely and driver is unloaded */
973 		DRM_ERROR("Uninitialized crtc %d\n", pipe);
974 		return -EINVAL;
975 	}
976 
977 	/* Helper routine in DRM core does all the work: */
978 	return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
979 						     vblank_time, flags,
980 						     &crtc->hwmode);
981 }
982 
983 const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
984 	DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
985 	DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
986 	DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
987 	/* KMS */
988 	DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
989 	DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
990 	DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
991 	DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
992 	DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
993 	DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_FENCES, amdgpu_cs_wait_fences_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
994 	DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
995 	DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
996 	DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
997 	DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
998 };
999 const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);
1000 
1001 /*
1002  * Debugfs info
1003  */
1004 #if defined(CONFIG_DEBUG_FS)
1005 
1006 static int amdgpu_debugfs_firmware_info(struct seq_file *m, void *data)
1007 {
1008 	struct drm_info_node *node = (struct drm_info_node *) m->private;
1009 	struct drm_device *dev = node->minor->dev;
1010 	struct amdgpu_device *adev = dev->dev_private;
1011 	struct drm_amdgpu_info_firmware fw_info;
1012 	struct drm_amdgpu_query_fw query_fw;
1013 	int ret, i;
1014 
1015 	/* VCE */
1016 	query_fw.fw_type = AMDGPU_INFO_FW_VCE;
1017 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1018 	if (ret)
1019 		return ret;
1020 	seq_printf(m, "VCE feature version: %u, firmware version: 0x%08x\n",
1021 		   fw_info.feature, fw_info.ver);
1022 
1023 	/* UVD */
1024 	query_fw.fw_type = AMDGPU_INFO_FW_UVD;
1025 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1026 	if (ret)
1027 		return ret;
1028 	seq_printf(m, "UVD feature version: %u, firmware version: 0x%08x\n",
1029 		   fw_info.feature, fw_info.ver);
1030 
1031 	/* GMC */
1032 	query_fw.fw_type = AMDGPU_INFO_FW_GMC;
1033 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1034 	if (ret)
1035 		return ret;
1036 	seq_printf(m, "MC feature version: %u, firmware version: 0x%08x\n",
1037 		   fw_info.feature, fw_info.ver);
1038 
1039 	/* ME */
1040 	query_fw.fw_type = AMDGPU_INFO_FW_GFX_ME;
1041 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1042 	if (ret)
1043 		return ret;
1044 	seq_printf(m, "ME feature version: %u, firmware version: 0x%08x\n",
1045 		   fw_info.feature, fw_info.ver);
1046 
1047 	/* PFP */
1048 	query_fw.fw_type = AMDGPU_INFO_FW_GFX_PFP;
1049 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1050 	if (ret)
1051 		return ret;
1052 	seq_printf(m, "PFP feature version: %u, firmware version: 0x%08x\n",
1053 		   fw_info.feature, fw_info.ver);
1054 
1055 	/* CE */
1056 	query_fw.fw_type = AMDGPU_INFO_FW_GFX_CE;
1057 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1058 	if (ret)
1059 		return ret;
1060 	seq_printf(m, "CE feature version: %u, firmware version: 0x%08x\n",
1061 		   fw_info.feature, fw_info.ver);
1062 
1063 	/* RLC */
1064 	query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC;
1065 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1066 	if (ret)
1067 		return ret;
1068 	seq_printf(m, "RLC feature version: %u, firmware version: 0x%08x\n",
1069 		   fw_info.feature, fw_info.ver);
1070 
1071 	/* MEC */
1072 	query_fw.fw_type = AMDGPU_INFO_FW_GFX_MEC;
1073 	query_fw.index = 0;
1074 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1075 	if (ret)
1076 		return ret;
1077 	seq_printf(m, "MEC feature version: %u, firmware version: 0x%08x\n",
1078 		   fw_info.feature, fw_info.ver);
1079 
1080 	/* MEC2 */
1081 	if (adev->asic_type == CHIP_KAVERI ||
1082 	    (adev->asic_type > CHIP_TOPAZ && adev->asic_type != CHIP_STONEY)) {
1083 		query_fw.index = 1;
1084 		ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1085 		if (ret)
1086 			return ret;
1087 		seq_printf(m, "MEC2 feature version: %u, firmware version: 0x%08x\n",
1088 			   fw_info.feature, fw_info.ver);
1089 	}
1090 
1091 	/* PSP SOS */
1092 	query_fw.fw_type = AMDGPU_INFO_FW_SOS;
1093 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1094 	if (ret)
1095 		return ret;
1096 	seq_printf(m, "SOS feature version: %u, firmware version: 0x%08x\n",
1097 		   fw_info.feature, fw_info.ver);
1098 
1099 
1100 	/* PSP ASD */
1101 	query_fw.fw_type = AMDGPU_INFO_FW_ASD;
1102 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1103 	if (ret)
1104 		return ret;
1105 	seq_printf(m, "ASD feature version: %u, firmware version: 0x%08x\n",
1106 		   fw_info.feature, fw_info.ver);
1107 
1108 	/* SMC */
1109 	query_fw.fw_type = AMDGPU_INFO_FW_SMC;
1110 	ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1111 	if (ret)
1112 		return ret;
1113 	seq_printf(m, "SMC feature version: %u, firmware version: 0x%08x\n",
1114 		   fw_info.feature, fw_info.ver);
1115 
1116 	/* SDMA */
1117 	query_fw.fw_type = AMDGPU_INFO_FW_SDMA;
1118 	for (i = 0; i < adev->sdma.num_instances; i++) {
1119 		query_fw.index = i;
1120 		ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1121 		if (ret)
1122 			return ret;
1123 		seq_printf(m, "SDMA%d feature version: %u, firmware version: 0x%08x\n",
1124 			   i, fw_info.feature, fw_info.ver);
1125 	}
1126 
1127 	return 0;
1128 }
1129 
1130 static const struct drm_info_list amdgpu_firmware_info_list[] = {
1131 	{"amdgpu_firmware_info", amdgpu_debugfs_firmware_info, 0, NULL},
1132 };
1133 #endif
1134 
1135 int amdgpu_debugfs_firmware_init(struct amdgpu_device *adev)
1136 {
1137 #if defined(CONFIG_DEBUG_FS)
1138 	return amdgpu_debugfs_add_files(adev, amdgpu_firmware_info_list,
1139 					ARRAY_SIZE(amdgpu_firmware_info_list));
1140 #else
1141 	return 0;
1142 #endif
1143 }
1144