2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Dave Airlie
30 #include <drm/drm_debugfs.h>
31 #include <drm/amdgpu_drm.h>
32 #include "amdgpu_sched.h"
33 #include "amdgpu_uvd.h"
34 #include "amdgpu_vce.h"
37 #include <linux/vga_switcheroo.h>
38 #include <linux/slab.h>
39 #include <linux/uaccess.h>
40 #include <linux/pci.h>
41 #include <linux/pm_runtime.h>
42 #include "amdgpu_amdkfd.h"
43 #include "amdgpu_gem.h"
44 #include "amdgpu_display.h"
45 #include "amdgpu_ras.h"
47 static void amdgpu_unregister_gpu_instance(struct amdgpu_device *adev)
49 struct amdgpu_gpu_instance *gpu_instance;
52 mutex_lock(&mgpu_info.mutex);
54 for (i = 0; i < mgpu_info.num_gpu; i++) {
55 gpu_instance = &(mgpu_info.gpu_ins[i]);
56 if (gpu_instance->adev == adev) {
57 mgpu_info.gpu_ins[i] =
58 mgpu_info.gpu_ins[mgpu_info.num_gpu - 1];
60 if (adev->flags & AMD_IS_APU)
68 mutex_unlock(&mgpu_info.mutex);
72 * amdgpu_driver_unload_kms - Main unload function for KMS.
74 * @dev: drm dev pointer
76 * This is the main unload function for KMS (all asics).
77 * Returns 0 on success.
79 void amdgpu_driver_unload_kms(struct drm_device *dev)
81 struct amdgpu_device *adev = dev->dev_private;
86 amdgpu_unregister_gpu_instance(adev);
88 if (adev->rmmio == NULL)
91 if (amdgpu_sriov_vf(adev))
92 amdgpu_virt_request_full_gpu(adev, false);
94 if (amdgpu_device_is_px(dev)) {
95 pm_runtime_get_sync(dev->dev);
96 pm_runtime_forbid(dev->dev);
99 amdgpu_acpi_fini(adev);
101 amdgpu_device_fini(adev);
105 dev->dev_private = NULL;
108 static void amdgpu_register_gpu_instance(struct amdgpu_device *adev)
110 struct amdgpu_gpu_instance *gpu_instance;
112 mutex_lock(&mgpu_info.mutex);
114 if (mgpu_info.num_gpu >= MAX_GPU_INSTANCE) {
115 DRM_ERROR("Cannot register more gpu instance\n");
116 mutex_unlock(&mgpu_info.mutex);
120 gpu_instance = &(mgpu_info.gpu_ins[mgpu_info.num_gpu]);
121 gpu_instance->adev = adev;
122 gpu_instance->mgpu_fan_enabled = 0;
125 if (adev->flags & AMD_IS_APU)
128 mgpu_info.num_dgpu++;
130 mutex_unlock(&mgpu_info.mutex);
134 * amdgpu_driver_load_kms - Main load function for KMS.
136 * @dev: drm dev pointer
137 * @flags: device flags
139 * This is the main load function for KMS (all asics).
140 * Returns 0 on success, error on failure.
142 int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
144 struct amdgpu_device *adev;
147 #ifdef CONFIG_DRM_AMDGPU_SI
148 if (!amdgpu_si_support) {
149 switch (flags & AMD_ASIC_MASK) {
156 "SI support provided by radeon.\n");
158 "Use radeon.si_support=0 amdgpu.si_support=1 to override.\n"
164 #ifdef CONFIG_DRM_AMDGPU_CIK
165 if (!amdgpu_cik_support) {
166 switch (flags & AMD_ASIC_MASK) {
173 "CIK support provided by radeon.\n");
175 "Use radeon.cik_support=0 amdgpu.cik_support=1 to override.\n"
182 adev = kzalloc(sizeof(struct amdgpu_device), GFP_KERNEL);
186 dev->dev_private = (void *)adev;
188 if ((amdgpu_runtime_pm != 0) &&
190 (amdgpu_is_atpx_hybrid() ||
191 amdgpu_has_atpx_dgpu_power_cntl()) &&
192 ((flags & AMD_IS_APU) == 0) &&
193 !pci_is_thunderbolt_attached(dev->pdev))
196 /* amdgpu_device_init should report only fatal error
197 * like memory allocation failure or iomapping failure,
198 * or memory manager initialization failure, it must
199 * properly initialize the GPU MC controller and permit
202 r = amdgpu_device_init(adev, dev, dev->pdev, flags);
204 dev_err(&dev->pdev->dev, "Fatal error during GPU init\n");
208 /* Call ACPI methods: require modeset init
209 * but failure is not fatal
212 acpi_status = amdgpu_acpi_init(adev);
214 dev_dbg(&dev->pdev->dev,
215 "Error during ACPI methods call\n");
218 if (amdgpu_device_is_px(dev)) {
219 dev_pm_set_driver_flags(dev->dev, DPM_FLAG_NEVER_SKIP);
220 pm_runtime_use_autosuspend(dev->dev);
221 pm_runtime_set_autosuspend_delay(dev->dev, 5000);
222 pm_runtime_set_active(dev->dev);
223 pm_runtime_allow(dev->dev);
224 pm_runtime_mark_last_busy(dev->dev);
225 pm_runtime_put_autosuspend(dev->dev);
228 amdgpu_register_gpu_instance(adev);
231 /* balance pm_runtime_get_sync in amdgpu_driver_unload_kms */
232 if (adev->rmmio && amdgpu_device_is_px(dev))
233 pm_runtime_put_noidle(dev->dev);
234 amdgpu_driver_unload_kms(dev);
240 static int amdgpu_firmware_info(struct drm_amdgpu_info_firmware *fw_info,
241 struct drm_amdgpu_query_fw *query_fw,
242 struct amdgpu_device *adev)
244 switch (query_fw->fw_type) {
245 case AMDGPU_INFO_FW_VCE:
246 fw_info->ver = adev->vce.fw_version;
247 fw_info->feature = adev->vce.fb_version;
249 case AMDGPU_INFO_FW_UVD:
250 fw_info->ver = adev->uvd.fw_version;
251 fw_info->feature = 0;
253 case AMDGPU_INFO_FW_VCN:
254 fw_info->ver = adev->vcn.fw_version;
255 fw_info->feature = 0;
257 case AMDGPU_INFO_FW_GMC:
258 fw_info->ver = adev->gmc.fw_version;
259 fw_info->feature = 0;
261 case AMDGPU_INFO_FW_GFX_ME:
262 fw_info->ver = adev->gfx.me_fw_version;
263 fw_info->feature = adev->gfx.me_feature_version;
265 case AMDGPU_INFO_FW_GFX_PFP:
266 fw_info->ver = adev->gfx.pfp_fw_version;
267 fw_info->feature = adev->gfx.pfp_feature_version;
269 case AMDGPU_INFO_FW_GFX_CE:
270 fw_info->ver = adev->gfx.ce_fw_version;
271 fw_info->feature = adev->gfx.ce_feature_version;
273 case AMDGPU_INFO_FW_GFX_RLC:
274 fw_info->ver = adev->gfx.rlc_fw_version;
275 fw_info->feature = adev->gfx.rlc_feature_version;
277 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_CNTL:
278 fw_info->ver = adev->gfx.rlc_srlc_fw_version;
279 fw_info->feature = adev->gfx.rlc_srlc_feature_version;
281 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_GPM_MEM:
282 fw_info->ver = adev->gfx.rlc_srlg_fw_version;
283 fw_info->feature = adev->gfx.rlc_srlg_feature_version;
285 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_SRM_MEM:
286 fw_info->ver = adev->gfx.rlc_srls_fw_version;
287 fw_info->feature = adev->gfx.rlc_srls_feature_version;
289 case AMDGPU_INFO_FW_GFX_MEC:
290 if (query_fw->index == 0) {
291 fw_info->ver = adev->gfx.mec_fw_version;
292 fw_info->feature = adev->gfx.mec_feature_version;
293 } else if (query_fw->index == 1) {
294 fw_info->ver = adev->gfx.mec2_fw_version;
295 fw_info->feature = adev->gfx.mec2_feature_version;
299 case AMDGPU_INFO_FW_SMC:
300 fw_info->ver = adev->pm.fw_version;
301 fw_info->feature = 0;
303 case AMDGPU_INFO_FW_TA:
304 if (query_fw->index > 1)
306 if (query_fw->index == 0) {
307 fw_info->ver = adev->psp.ta_fw_version;
308 fw_info->feature = adev->psp.ta_xgmi_ucode_version;
310 fw_info->ver = adev->psp.ta_fw_version;
311 fw_info->feature = adev->psp.ta_ras_ucode_version;
314 case AMDGPU_INFO_FW_SDMA:
315 if (query_fw->index >= adev->sdma.num_instances)
317 fw_info->ver = adev->sdma.instance[query_fw->index].fw_version;
318 fw_info->feature = adev->sdma.instance[query_fw->index].feature_version;
320 case AMDGPU_INFO_FW_SOS:
321 fw_info->ver = adev->psp.sos_fw_version;
322 fw_info->feature = adev->psp.sos_feature_version;
324 case AMDGPU_INFO_FW_ASD:
325 fw_info->ver = adev->psp.asd_fw_version;
326 fw_info->feature = adev->psp.asd_feature_version;
328 case AMDGPU_INFO_FW_DMCU:
329 fw_info->ver = adev->dm.dmcu_fw_version;
330 fw_info->feature = 0;
338 static int amdgpu_hw_ip_info(struct amdgpu_device *adev,
339 struct drm_amdgpu_info *info,
340 struct drm_amdgpu_info_hw_ip *result)
342 uint32_t ib_start_alignment = 0;
343 uint32_t ib_size_alignment = 0;
344 enum amd_ip_block_type type;
345 unsigned int num_rings = 0;
348 if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
351 switch (info->query_hw_ip.type) {
352 case AMDGPU_HW_IP_GFX:
353 type = AMD_IP_BLOCK_TYPE_GFX;
354 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
355 if (adev->gfx.gfx_ring[i].sched.ready)
357 ib_start_alignment = 32;
358 ib_size_alignment = 32;
360 case AMDGPU_HW_IP_COMPUTE:
361 type = AMD_IP_BLOCK_TYPE_GFX;
362 for (i = 0; i < adev->gfx.num_compute_rings; i++)
363 if (adev->gfx.compute_ring[i].sched.ready)
365 ib_start_alignment = 32;
366 ib_size_alignment = 32;
368 case AMDGPU_HW_IP_DMA:
369 type = AMD_IP_BLOCK_TYPE_SDMA;
370 for (i = 0; i < adev->sdma.num_instances; i++)
371 if (adev->sdma.instance[i].ring.sched.ready)
373 ib_start_alignment = 256;
374 ib_size_alignment = 4;
376 case AMDGPU_HW_IP_UVD:
377 type = AMD_IP_BLOCK_TYPE_UVD;
378 for (i = 0; i < adev->uvd.num_uvd_inst; i++) {
379 if (adev->uvd.harvest_config & (1 << i))
382 if (adev->uvd.inst[i].ring.sched.ready)
385 ib_start_alignment = 64;
386 ib_size_alignment = 64;
388 case AMDGPU_HW_IP_VCE:
389 type = AMD_IP_BLOCK_TYPE_VCE;
390 for (i = 0; i < adev->vce.num_rings; i++)
391 if (adev->vce.ring[i].sched.ready)
393 ib_start_alignment = 4;
394 ib_size_alignment = 1;
396 case AMDGPU_HW_IP_UVD_ENC:
397 type = AMD_IP_BLOCK_TYPE_UVD;
398 for (i = 0; i < adev->uvd.num_uvd_inst; i++) {
399 if (adev->uvd.harvest_config & (1 << i))
402 for (j = 0; j < adev->uvd.num_enc_rings; j++)
403 if (adev->uvd.inst[i].ring_enc[j].sched.ready)
406 ib_start_alignment = 64;
407 ib_size_alignment = 64;
409 case AMDGPU_HW_IP_VCN_DEC:
410 type = AMD_IP_BLOCK_TYPE_VCN;
411 if (adev->vcn.ring_dec.sched.ready)
413 ib_start_alignment = 16;
414 ib_size_alignment = 16;
416 case AMDGPU_HW_IP_VCN_ENC:
417 type = AMD_IP_BLOCK_TYPE_VCN;
418 for (i = 0; i < adev->vcn.num_enc_rings; i++)
419 if (adev->vcn.ring_enc[i].sched.ready)
421 ib_start_alignment = 64;
422 ib_size_alignment = 1;
424 case AMDGPU_HW_IP_VCN_JPEG:
425 type = AMD_IP_BLOCK_TYPE_VCN;
426 if (adev->vcn.ring_jpeg.sched.ready)
428 ib_start_alignment = 16;
429 ib_size_alignment = 16;
435 for (i = 0; i < adev->num_ip_blocks; i++)
436 if (adev->ip_blocks[i].version->type == type &&
437 adev->ip_blocks[i].status.valid)
440 if (i == adev->num_ip_blocks)
443 num_rings = min(amdgpu_ctx_num_entities[info->query_hw_ip.type],
446 result->hw_ip_version_major = adev->ip_blocks[i].version->major;
447 result->hw_ip_version_minor = adev->ip_blocks[i].version->minor;
448 result->capabilities_flags = 0;
449 result->available_rings = (1 << num_rings) - 1;
450 result->ib_start_alignment = ib_start_alignment;
451 result->ib_size_alignment = ib_size_alignment;
456 * Userspace get information ioctl
459 * amdgpu_info_ioctl - answer a device specific request.
461 * @adev: amdgpu device pointer
462 * @data: request object
465 * This function is used to pass device specific parameters to the userspace
466 * drivers. Examples include: pci device id, pipeline parms, tiling params,
468 * Returns 0 on success, -EINVAL on failure.
470 static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
472 struct amdgpu_device *adev = dev->dev_private;
473 struct drm_amdgpu_info *info = data;
474 struct amdgpu_mode_info *minfo = &adev->mode_info;
475 void __user *out = (void __user *)(uintptr_t)info->return_pointer;
476 uint32_t size = info->return_size;
477 struct drm_crtc *crtc;
481 int ui32_size = sizeof(ui32);
483 if (!info->return_size || !info->return_pointer)
486 switch (info->query) {
487 case AMDGPU_INFO_ACCEL_WORKING:
488 ui32 = adev->accel_working;
489 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
490 case AMDGPU_INFO_CRTC_FROM_ID:
491 for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
492 crtc = (struct drm_crtc *)minfo->crtcs[i];
493 if (crtc && crtc->base.id == info->mode_crtc.id) {
494 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
495 ui32 = amdgpu_crtc->crtc_id;
501 DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
504 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
505 case AMDGPU_INFO_HW_IP_INFO: {
506 struct drm_amdgpu_info_hw_ip ip = {};
509 ret = amdgpu_hw_ip_info(adev, info, &ip);
513 ret = copy_to_user(out, &ip, min((size_t)size, sizeof(ip)));
514 return ret ? -EFAULT : 0;
516 case AMDGPU_INFO_HW_IP_COUNT: {
517 enum amd_ip_block_type type;
520 switch (info->query_hw_ip.type) {
521 case AMDGPU_HW_IP_GFX:
522 type = AMD_IP_BLOCK_TYPE_GFX;
524 case AMDGPU_HW_IP_COMPUTE:
525 type = AMD_IP_BLOCK_TYPE_GFX;
527 case AMDGPU_HW_IP_DMA:
528 type = AMD_IP_BLOCK_TYPE_SDMA;
530 case AMDGPU_HW_IP_UVD:
531 type = AMD_IP_BLOCK_TYPE_UVD;
533 case AMDGPU_HW_IP_VCE:
534 type = AMD_IP_BLOCK_TYPE_VCE;
536 case AMDGPU_HW_IP_UVD_ENC:
537 type = AMD_IP_BLOCK_TYPE_UVD;
539 case AMDGPU_HW_IP_VCN_DEC:
540 case AMDGPU_HW_IP_VCN_ENC:
541 case AMDGPU_HW_IP_VCN_JPEG:
542 type = AMD_IP_BLOCK_TYPE_VCN;
548 for (i = 0; i < adev->num_ip_blocks; i++)
549 if (adev->ip_blocks[i].version->type == type &&
550 adev->ip_blocks[i].status.valid &&
551 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
554 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
556 case AMDGPU_INFO_TIMESTAMP:
557 ui64 = amdgpu_gfx_get_gpu_clock_counter(adev);
558 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
559 case AMDGPU_INFO_FW_VERSION: {
560 struct drm_amdgpu_info_firmware fw_info;
563 /* We only support one instance of each IP block right now. */
564 if (info->query_fw.ip_instance != 0)
567 ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev);
571 return copy_to_user(out, &fw_info,
572 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
574 case AMDGPU_INFO_NUM_BYTES_MOVED:
575 ui64 = atomic64_read(&adev->num_bytes_moved);
576 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
577 case AMDGPU_INFO_NUM_EVICTIONS:
578 ui64 = atomic64_read(&adev->num_evictions);
579 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
580 case AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS:
581 ui64 = atomic64_read(&adev->num_vram_cpu_page_faults);
582 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
583 case AMDGPU_INFO_VRAM_USAGE:
584 ui64 = amdgpu_vram_mgr_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
585 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
586 case AMDGPU_INFO_VIS_VRAM_USAGE:
587 ui64 = amdgpu_vram_mgr_vis_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
588 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
589 case AMDGPU_INFO_GTT_USAGE:
590 ui64 = amdgpu_gtt_mgr_usage(&adev->mman.bdev.man[TTM_PL_TT]);
591 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
592 case AMDGPU_INFO_GDS_CONFIG: {
593 struct drm_amdgpu_info_gds gds_info;
595 memset(&gds_info, 0, sizeof(gds_info));
596 gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size;
597 gds_info.compute_partition_size = adev->gds.mem.cs_partition_size;
598 gds_info.gds_total_size = adev->gds.mem.total_size;
599 gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size;
600 gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size;
601 gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size;
602 gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size;
603 return copy_to_user(out, &gds_info,
604 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
606 case AMDGPU_INFO_VRAM_GTT: {
607 struct drm_amdgpu_info_vram_gtt vram_gtt;
609 vram_gtt.vram_size = adev->gmc.real_vram_size -
610 atomic64_read(&adev->vram_pin_size);
611 vram_gtt.vram_cpu_accessible_size = adev->gmc.visible_vram_size -
612 atomic64_read(&adev->visible_pin_size);
613 vram_gtt.gtt_size = adev->mman.bdev.man[TTM_PL_TT].size;
614 vram_gtt.gtt_size *= PAGE_SIZE;
615 vram_gtt.gtt_size -= atomic64_read(&adev->gart_pin_size);
616 return copy_to_user(out, &vram_gtt,
617 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
619 case AMDGPU_INFO_MEMORY: {
620 struct drm_amdgpu_memory_info mem;
622 memset(&mem, 0, sizeof(mem));
623 mem.vram.total_heap_size = adev->gmc.real_vram_size;
624 mem.vram.usable_heap_size = adev->gmc.real_vram_size -
625 atomic64_read(&adev->vram_pin_size);
626 mem.vram.heap_usage =
627 amdgpu_vram_mgr_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
628 mem.vram.max_allocation = mem.vram.usable_heap_size * 3 / 4;
630 mem.cpu_accessible_vram.total_heap_size =
631 adev->gmc.visible_vram_size;
632 mem.cpu_accessible_vram.usable_heap_size = adev->gmc.visible_vram_size -
633 atomic64_read(&adev->visible_pin_size);
634 mem.cpu_accessible_vram.heap_usage =
635 amdgpu_vram_mgr_vis_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
636 mem.cpu_accessible_vram.max_allocation =
637 mem.cpu_accessible_vram.usable_heap_size * 3 / 4;
639 mem.gtt.total_heap_size = adev->mman.bdev.man[TTM_PL_TT].size;
640 mem.gtt.total_heap_size *= PAGE_SIZE;
641 mem.gtt.usable_heap_size = mem.gtt.total_heap_size -
642 atomic64_read(&adev->gart_pin_size);
644 amdgpu_gtt_mgr_usage(&adev->mman.bdev.man[TTM_PL_TT]);
645 mem.gtt.max_allocation = mem.gtt.usable_heap_size * 3 / 4;
647 return copy_to_user(out, &mem,
648 min((size_t)size, sizeof(mem)))
651 case AMDGPU_INFO_READ_MMR_REG: {
652 unsigned n, alloc_size;
654 unsigned se_num = (info->read_mmr_reg.instance >>
655 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
656 AMDGPU_INFO_MMR_SE_INDEX_MASK;
657 unsigned sh_num = (info->read_mmr_reg.instance >>
658 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
659 AMDGPU_INFO_MMR_SH_INDEX_MASK;
661 /* set full masks if the userspace set all bits
662 * in the bitfields */
663 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
665 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
668 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
671 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
673 for (i = 0; i < info->read_mmr_reg.count; i++)
674 if (amdgpu_asic_read_register(adev, se_num, sh_num,
675 info->read_mmr_reg.dword_offset + i,
677 DRM_DEBUG_KMS("unallowed offset %#x\n",
678 info->read_mmr_reg.dword_offset + i);
682 n = copy_to_user(out, regs, min(size, alloc_size));
684 return n ? -EFAULT : 0;
686 case AMDGPU_INFO_DEV_INFO: {
687 struct drm_amdgpu_info_device dev_info = {};
690 dev_info.device_id = dev->pdev->device;
691 dev_info.chip_rev = adev->rev_id;
692 dev_info.external_rev = adev->external_rev_id;
693 dev_info.pci_rev = dev->pdev->revision;
694 dev_info.family = adev->family;
695 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
696 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
697 /* return all clocks in KHz */
698 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
699 if (adev->pm.dpm_enabled) {
700 dev_info.max_engine_clock = amdgpu_dpm_get_sclk(adev, false) * 10;
701 dev_info.max_memory_clock = amdgpu_dpm_get_mclk(adev, false) * 10;
702 } else if (amdgpu_sriov_vf(adev) && amdgim_is_hwperf(adev) &&
703 adev->virt.ops->get_pp_clk) {
704 dev_info.max_engine_clock = amdgpu_virt_get_sclk(adev, false) * 10;
705 dev_info.max_memory_clock = amdgpu_virt_get_mclk(adev, false) * 10;
707 dev_info.max_engine_clock = adev->clock.default_sclk * 10;
708 dev_info.max_memory_clock = adev->clock.default_mclk * 10;
710 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
711 dev_info.num_rb_pipes = adev->gfx.config.max_backends_per_se *
712 adev->gfx.config.max_shader_engines;
713 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
715 dev_info.ids_flags = 0;
716 if (adev->flags & AMD_IS_APU)
717 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
718 if (amdgpu_sriov_vf(adev))
719 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_PREEMPTION;
721 vm_size = adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
722 vm_size -= AMDGPU_VA_RESERVED_SIZE;
724 /* Older VCE FW versions are buggy and can handle only 40bits */
725 if (adev->vce.fw_version &&
726 adev->vce.fw_version < AMDGPU_VCE_FW_53_45)
727 vm_size = min(vm_size, 1ULL << 40);
729 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
730 dev_info.virtual_address_max =
731 min(vm_size, AMDGPU_GMC_HOLE_START);
733 if (vm_size > AMDGPU_GMC_HOLE_START) {
734 dev_info.high_va_offset = AMDGPU_GMC_HOLE_END;
735 dev_info.high_va_max = AMDGPU_GMC_HOLE_END | vm_size;
737 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
738 dev_info.pte_fragment_size = (1 << adev->vm_manager.fragment_size) * AMDGPU_GPU_PAGE_SIZE;
739 dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
740 dev_info.cu_active_number = adev->gfx.cu_info.number;
741 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
742 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
743 memcpy(&dev_info.cu_ao_bitmap[0], &adev->gfx.cu_info.ao_cu_bitmap[0],
744 sizeof(adev->gfx.cu_info.ao_cu_bitmap));
745 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
746 sizeof(adev->gfx.cu_info.bitmap));
747 dev_info.vram_type = adev->gmc.vram_type;
748 dev_info.vram_bit_width = adev->gmc.vram_width;
749 dev_info.vce_harvest_config = adev->vce.harvest_config;
750 dev_info.gc_double_offchip_lds_buf =
751 adev->gfx.config.double_offchip_lds_buf;
754 dev_info.prim_buf_gpu_addr = adev->gfx.ngg.buf[NGG_PRIM].gpu_addr;
755 dev_info.prim_buf_size = adev->gfx.ngg.buf[NGG_PRIM].size;
756 dev_info.pos_buf_gpu_addr = adev->gfx.ngg.buf[NGG_POS].gpu_addr;
757 dev_info.pos_buf_size = adev->gfx.ngg.buf[NGG_POS].size;
758 dev_info.cntl_sb_buf_gpu_addr = adev->gfx.ngg.buf[NGG_CNTL].gpu_addr;
759 dev_info.cntl_sb_buf_size = adev->gfx.ngg.buf[NGG_CNTL].size;
760 dev_info.param_buf_gpu_addr = adev->gfx.ngg.buf[NGG_PARAM].gpu_addr;
761 dev_info.param_buf_size = adev->gfx.ngg.buf[NGG_PARAM].size;
763 dev_info.wave_front_size = adev->gfx.cu_info.wave_front_size;
764 dev_info.num_shader_visible_vgprs = adev->gfx.config.max_gprs;
765 dev_info.num_cu_per_sh = adev->gfx.config.max_cu_per_sh;
766 dev_info.num_tcc_blocks = adev->gfx.config.max_texture_channel_caches;
767 dev_info.gs_vgt_table_depth = adev->gfx.config.gs_vgt_table_depth;
768 dev_info.gs_prim_buffer_depth = adev->gfx.config.gs_prim_buffer_depth;
769 dev_info.max_gs_waves_per_vgt = adev->gfx.config.max_gs_threads;
771 return copy_to_user(out, &dev_info,
772 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
774 case AMDGPU_INFO_VCE_CLOCK_TABLE: {
776 struct drm_amdgpu_info_vce_clock_table vce_clk_table = {};
777 struct amd_vce_state *vce_state;
779 for (i = 0; i < AMDGPU_VCE_CLOCK_TABLE_ENTRIES; i++) {
780 vce_state = amdgpu_dpm_get_vce_clock_state(adev, i);
782 vce_clk_table.entries[i].sclk = vce_state->sclk;
783 vce_clk_table.entries[i].mclk = vce_state->mclk;
784 vce_clk_table.entries[i].eclk = vce_state->evclk;
785 vce_clk_table.num_valid_entries++;
789 return copy_to_user(out, &vce_clk_table,
790 min((size_t)size, sizeof(vce_clk_table))) ? -EFAULT : 0;
792 case AMDGPU_INFO_VBIOS: {
793 uint32_t bios_size = adev->bios_size;
795 switch (info->vbios_info.type) {
796 case AMDGPU_INFO_VBIOS_SIZE:
797 return copy_to_user(out, &bios_size,
798 min((size_t)size, sizeof(bios_size)))
800 case AMDGPU_INFO_VBIOS_IMAGE: {
802 uint32_t bios_offset = info->vbios_info.offset;
804 if (bios_offset >= bios_size)
807 bios = adev->bios + bios_offset;
808 return copy_to_user(out, bios,
809 min((size_t)size, (size_t)(bios_size - bios_offset)))
813 DRM_DEBUG_KMS("Invalid request %d\n",
814 info->vbios_info.type);
818 case AMDGPU_INFO_NUM_HANDLES: {
819 struct drm_amdgpu_info_num_handles handle;
821 switch (info->query_hw_ip.type) {
822 case AMDGPU_HW_IP_UVD:
823 /* Starting Polaris, we support unlimited UVD handles */
824 if (adev->asic_type < CHIP_POLARIS10) {
825 handle.uvd_max_handles = adev->uvd.max_handles;
826 handle.uvd_used_handles = amdgpu_uvd_used_handles(adev);
828 return copy_to_user(out, &handle,
829 min((size_t)size, sizeof(handle))) ? -EFAULT : 0;
839 case AMDGPU_INFO_SENSOR: {
840 if (!adev->pm.dpm_enabled)
843 switch (info->sensor_info.type) {
844 case AMDGPU_INFO_SENSOR_GFX_SCLK:
845 /* get sclk in Mhz */
846 if (amdgpu_dpm_read_sensor(adev,
847 AMDGPU_PP_SENSOR_GFX_SCLK,
848 (void *)&ui32, &ui32_size)) {
853 case AMDGPU_INFO_SENSOR_GFX_MCLK:
854 /* get mclk in Mhz */
855 if (amdgpu_dpm_read_sensor(adev,
856 AMDGPU_PP_SENSOR_GFX_MCLK,
857 (void *)&ui32, &ui32_size)) {
862 case AMDGPU_INFO_SENSOR_GPU_TEMP:
863 /* get temperature in millidegrees C */
864 if (amdgpu_dpm_read_sensor(adev,
865 AMDGPU_PP_SENSOR_GPU_TEMP,
866 (void *)&ui32, &ui32_size)) {
870 case AMDGPU_INFO_SENSOR_GPU_LOAD:
872 if (amdgpu_dpm_read_sensor(adev,
873 AMDGPU_PP_SENSOR_GPU_LOAD,
874 (void *)&ui32, &ui32_size)) {
878 case AMDGPU_INFO_SENSOR_GPU_AVG_POWER:
879 /* get average GPU power */
880 if (amdgpu_dpm_read_sensor(adev,
881 AMDGPU_PP_SENSOR_GPU_POWER,
882 (void *)&ui32, &ui32_size)) {
887 case AMDGPU_INFO_SENSOR_VDDNB:
888 /* get VDDNB in millivolts */
889 if (amdgpu_dpm_read_sensor(adev,
890 AMDGPU_PP_SENSOR_VDDNB,
891 (void *)&ui32, &ui32_size)) {
895 case AMDGPU_INFO_SENSOR_VDDGFX:
896 /* get VDDGFX in millivolts */
897 if (amdgpu_dpm_read_sensor(adev,
898 AMDGPU_PP_SENSOR_VDDGFX,
899 (void *)&ui32, &ui32_size)) {
903 case AMDGPU_INFO_SENSOR_STABLE_PSTATE_GFX_SCLK:
904 /* get stable pstate sclk in Mhz */
905 if (amdgpu_dpm_read_sensor(adev,
906 AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK,
907 (void *)&ui32, &ui32_size)) {
912 case AMDGPU_INFO_SENSOR_STABLE_PSTATE_GFX_MCLK:
913 /* get stable pstate mclk in Mhz */
914 if (amdgpu_dpm_read_sensor(adev,
915 AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK,
916 (void *)&ui32, &ui32_size)) {
922 DRM_DEBUG_KMS("Invalid request %d\n",
923 info->sensor_info.type);
926 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
928 case AMDGPU_INFO_VRAM_LOST_COUNTER:
929 ui32 = atomic_read(&adev->vram_lost_counter);
930 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
931 case AMDGPU_INFO_RAS_ENABLED_FEATURES: {
932 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
937 ras_mask = (uint64_t)ras->supported << 32 | ras->features;
939 return copy_to_user(out, &ras_mask,
940 min_t(u64, size, sizeof(ras_mask))) ?
944 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
952 * Outdated mess for old drm with Xorg being in charge (void function now).
955 * amdgpu_driver_lastclose_kms - drm callback for last close
957 * @dev: drm dev pointer
959 * Switch vga_switcheroo state after last close (all asics).
961 void amdgpu_driver_lastclose_kms(struct drm_device *dev)
963 drm_fb_helper_lastclose(dev);
964 vga_switcheroo_process_delayed_switch();
968 * amdgpu_driver_open_kms - drm callback for open
970 * @dev: drm dev pointer
971 * @file_priv: drm file
973 * On device open, init vm on cayman+ (all asics).
974 * Returns 0 on success, error on failure.
976 int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
978 struct amdgpu_device *adev = dev->dev_private;
979 struct amdgpu_fpriv *fpriv;
982 /* Ensure IB tests are run on ring */
983 flush_delayed_work(&adev->late_init_work);
985 file_priv->driver_priv = NULL;
987 r = pm_runtime_get_sync(dev->dev);
991 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
992 if (unlikely(!fpriv)) {
997 pasid = amdgpu_pasid_alloc(16);
999 dev_warn(adev->dev, "No more PASIDs available!");
1002 r = amdgpu_vm_init(adev, &fpriv->vm, AMDGPU_VM_CONTEXT_GFX, pasid);
1006 fpriv->prt_va = amdgpu_vm_bo_add(adev, &fpriv->vm, NULL);
1007 if (!fpriv->prt_va) {
1012 if (amdgpu_sriov_vf(adev)) {
1013 uint64_t csa_addr = amdgpu_csa_vaddr(adev) & AMDGPU_GMC_HOLE_MASK;
1015 r = amdgpu_map_static_csa(adev, &fpriv->vm, adev->virt.csa_obj,
1016 &fpriv->csa_va, csa_addr, AMDGPU_CSA_SIZE);
1021 mutex_init(&fpriv->bo_list_lock);
1022 idr_init(&fpriv->bo_list_handles);
1024 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
1026 file_priv->driver_priv = fpriv;
1030 amdgpu_vm_fini(adev, &fpriv->vm);
1034 amdgpu_pasid_free(pasid);
1039 pm_runtime_mark_last_busy(dev->dev);
1040 pm_runtime_put_autosuspend(dev->dev);
1046 * amdgpu_driver_postclose_kms - drm callback for post close
1048 * @dev: drm dev pointer
1049 * @file_priv: drm file
1051 * On device post close, tear down vm on cayman+ (all asics).
1053 void amdgpu_driver_postclose_kms(struct drm_device *dev,
1054 struct drm_file *file_priv)
1056 struct amdgpu_device *adev = dev->dev_private;
1057 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
1058 struct amdgpu_bo_list *list;
1059 struct amdgpu_bo *pd;
1066 pm_runtime_get_sync(dev->dev);
1068 if (amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_UVD) != NULL)
1069 amdgpu_uvd_free_handles(adev, file_priv);
1070 if (amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_VCE) != NULL)
1071 amdgpu_vce_free_handles(adev, file_priv);
1073 amdgpu_vm_bo_rmv(adev, fpriv->prt_va);
1075 if (amdgpu_sriov_vf(adev)) {
1076 /* TODO: how to handle reserve failure */
1077 BUG_ON(amdgpu_bo_reserve(adev->virt.csa_obj, true));
1078 amdgpu_vm_bo_rmv(adev, fpriv->csa_va);
1079 fpriv->csa_va = NULL;
1080 amdgpu_bo_unreserve(adev->virt.csa_obj);
1083 pasid = fpriv->vm.pasid;
1084 pd = amdgpu_bo_ref(fpriv->vm.root.base.bo);
1086 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
1087 amdgpu_vm_fini(adev, &fpriv->vm);
1090 amdgpu_pasid_free_delayed(pd->tbo.resv, pasid);
1091 amdgpu_bo_unref(&pd);
1093 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
1094 amdgpu_bo_list_put(list);
1096 idr_destroy(&fpriv->bo_list_handles);
1097 mutex_destroy(&fpriv->bo_list_lock);
1100 file_priv->driver_priv = NULL;
1102 pm_runtime_mark_last_busy(dev->dev);
1103 pm_runtime_put_autosuspend(dev->dev);
1107 * VBlank related functions.
1110 * amdgpu_get_vblank_counter_kms - get frame count
1112 * @dev: drm dev pointer
1113 * @pipe: crtc to get the frame count from
1115 * Gets the frame count on the requested crtc (all asics).
1116 * Returns frame count on success, -EINVAL on failure.
1118 u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
1120 struct amdgpu_device *adev = dev->dev_private;
1121 int vpos, hpos, stat;
1124 if (pipe >= adev->mode_info.num_crtc) {
1125 DRM_ERROR("Invalid crtc %u\n", pipe);
1129 /* The hw increments its frame counter at start of vsync, not at start
1130 * of vblank, as is required by DRM core vblank counter handling.
1131 * Cook the hw count here to make it appear to the caller as if it
1132 * incremented at start of vblank. We measure distance to start of
1133 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
1134 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
1135 * result by 1 to give the proper appearance to caller.
1137 if (adev->mode_info.crtcs[pipe]) {
1138 /* Repeat readout if needed to provide stable result if
1139 * we cross start of vsync during the queries.
1142 count = amdgpu_display_vblank_get_counter(adev, pipe);
1143 /* Ask amdgpu_display_get_crtc_scanoutpos to return
1144 * vpos as distance to start of vblank, instead of
1145 * regular vertical scanout pos.
1147 stat = amdgpu_display_get_crtc_scanoutpos(
1148 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
1149 &vpos, &hpos, NULL, NULL,
1150 &adev->mode_info.crtcs[pipe]->base.hwmode);
1151 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
1153 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
1154 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
1155 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
1157 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
1160 /* Bump counter if we are at >= leading edge of vblank,
1161 * but before vsync where vpos would turn negative and
1162 * the hw counter really increments.
1168 /* Fallback to use value as is. */
1169 count = amdgpu_display_vblank_get_counter(adev, pipe);
1170 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
1177 * amdgpu_enable_vblank_kms - enable vblank interrupt
1179 * @dev: drm dev pointer
1180 * @pipe: crtc to enable vblank interrupt for
1182 * Enable the interrupt on the requested crtc (all asics).
1183 * Returns 0 on success, -EINVAL on failure.
1185 int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
1187 struct amdgpu_device *adev = dev->dev_private;
1188 int idx = amdgpu_display_crtc_idx_to_irq_type(adev, pipe);
1190 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
1194 * amdgpu_disable_vblank_kms - disable vblank interrupt
1196 * @dev: drm dev pointer
1197 * @pipe: crtc to disable vblank interrupt for
1199 * Disable the interrupt on the requested crtc (all asics).
1201 void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
1203 struct amdgpu_device *adev = dev->dev_private;
1204 int idx = amdgpu_display_crtc_idx_to_irq_type(adev, pipe);
1206 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
1209 const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
1210 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1211 DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1212 DRM_IOCTL_DEF_DRV(AMDGPU_VM, amdgpu_vm_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1213 DRM_IOCTL_DEF_DRV(AMDGPU_SCHED, amdgpu_sched_ioctl, DRM_MASTER),
1214 DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1215 DRM_IOCTL_DEF_DRV(AMDGPU_FENCE_TO_HANDLE, amdgpu_cs_fence_to_handle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1217 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1218 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1219 DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1220 DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1221 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1222 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_FENCES, amdgpu_cs_wait_fences_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1223 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1224 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1225 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1226 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW)
1228 const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);
1233 #if defined(CONFIG_DEBUG_FS)
1235 static int amdgpu_debugfs_firmware_info(struct seq_file *m, void *data)
1237 struct drm_info_node *node = (struct drm_info_node *) m->private;
1238 struct drm_device *dev = node->minor->dev;
1239 struct amdgpu_device *adev = dev->dev_private;
1240 struct drm_amdgpu_info_firmware fw_info;
1241 struct drm_amdgpu_query_fw query_fw;
1242 struct atom_context *ctx = adev->mode_info.atom_context;
1246 query_fw.fw_type = AMDGPU_INFO_FW_VCE;
1247 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1250 seq_printf(m, "VCE feature version: %u, firmware version: 0x%08x\n",
1251 fw_info.feature, fw_info.ver);
1254 query_fw.fw_type = AMDGPU_INFO_FW_UVD;
1255 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1258 seq_printf(m, "UVD feature version: %u, firmware version: 0x%08x\n",
1259 fw_info.feature, fw_info.ver);
1262 query_fw.fw_type = AMDGPU_INFO_FW_GMC;
1263 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1266 seq_printf(m, "MC feature version: %u, firmware version: 0x%08x\n",
1267 fw_info.feature, fw_info.ver);
1270 query_fw.fw_type = AMDGPU_INFO_FW_GFX_ME;
1271 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1274 seq_printf(m, "ME feature version: %u, firmware version: 0x%08x\n",
1275 fw_info.feature, fw_info.ver);
1278 query_fw.fw_type = AMDGPU_INFO_FW_GFX_PFP;
1279 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1282 seq_printf(m, "PFP feature version: %u, firmware version: 0x%08x\n",
1283 fw_info.feature, fw_info.ver);
1286 query_fw.fw_type = AMDGPU_INFO_FW_GFX_CE;
1287 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1290 seq_printf(m, "CE feature version: %u, firmware version: 0x%08x\n",
1291 fw_info.feature, fw_info.ver);
1294 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC;
1295 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1298 seq_printf(m, "RLC feature version: %u, firmware version: 0x%08x\n",
1299 fw_info.feature, fw_info.ver);
1301 /* RLC SAVE RESTORE LIST CNTL */
1302 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_CNTL;
1303 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1306 seq_printf(m, "RLC SRLC feature version: %u, firmware version: 0x%08x\n",
1307 fw_info.feature, fw_info.ver);
1309 /* RLC SAVE RESTORE LIST GPM MEM */
1310 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_GPM_MEM;
1311 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1314 seq_printf(m, "RLC SRLG feature version: %u, firmware version: 0x%08x\n",
1315 fw_info.feature, fw_info.ver);
1317 /* RLC SAVE RESTORE LIST SRM MEM */
1318 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_SRM_MEM;
1319 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1322 seq_printf(m, "RLC SRLS feature version: %u, firmware version: 0x%08x\n",
1323 fw_info.feature, fw_info.ver);
1326 query_fw.fw_type = AMDGPU_INFO_FW_GFX_MEC;
1328 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1331 seq_printf(m, "MEC feature version: %u, firmware version: 0x%08x\n",
1332 fw_info.feature, fw_info.ver);
1335 if (adev->asic_type == CHIP_KAVERI ||
1336 (adev->asic_type > CHIP_TOPAZ && adev->asic_type != CHIP_STONEY)) {
1338 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1341 seq_printf(m, "MEC2 feature version: %u, firmware version: 0x%08x\n",
1342 fw_info.feature, fw_info.ver);
1346 query_fw.fw_type = AMDGPU_INFO_FW_SOS;
1347 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1350 seq_printf(m, "SOS feature version: %u, firmware version: 0x%08x\n",
1351 fw_info.feature, fw_info.ver);
1355 query_fw.fw_type = AMDGPU_INFO_FW_ASD;
1356 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1359 seq_printf(m, "ASD feature version: %u, firmware version: 0x%08x\n",
1360 fw_info.feature, fw_info.ver);
1362 query_fw.fw_type = AMDGPU_INFO_FW_TA;
1363 for (i = 0; i < 2; i++) {
1365 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1368 seq_printf(m, "TA %s feature version: %u, firmware version: 0x%08x\n",
1369 i ? "RAS" : "XGMI", fw_info.feature, fw_info.ver);
1373 query_fw.fw_type = AMDGPU_INFO_FW_SMC;
1374 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1377 seq_printf(m, "SMC feature version: %u, firmware version: 0x%08x\n",
1378 fw_info.feature, fw_info.ver);
1381 query_fw.fw_type = AMDGPU_INFO_FW_SDMA;
1382 for (i = 0; i < adev->sdma.num_instances; i++) {
1384 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1387 seq_printf(m, "SDMA%d feature version: %u, firmware version: 0x%08x\n",
1388 i, fw_info.feature, fw_info.ver);
1392 query_fw.fw_type = AMDGPU_INFO_FW_VCN;
1393 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1396 seq_printf(m, "VCN feature version: %u, firmware version: 0x%08x\n",
1397 fw_info.feature, fw_info.ver);
1400 query_fw.fw_type = AMDGPU_INFO_FW_DMCU;
1401 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1404 seq_printf(m, "DMCU feature version: %u, firmware version: 0x%08x\n",
1405 fw_info.feature, fw_info.ver);
1408 seq_printf(m, "VBIOS version: %s\n", ctx->vbios_version);
1413 static const struct drm_info_list amdgpu_firmware_info_list[] = {
1414 {"amdgpu_firmware_info", amdgpu_debugfs_firmware_info, 0, NULL},
1418 int amdgpu_debugfs_firmware_init(struct amdgpu_device *adev)
1420 #if defined(CONFIG_DEBUG_FS)
1421 return amdgpu_debugfs_add_files(adev, amdgpu_firmware_info_list,
1422 ARRAY_SIZE(amdgpu_firmware_info_list));