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/amdgpu_drm.h>
31 #include "amdgpu_sched.h"
32 #include "amdgpu_uvd.h"
33 #include "amdgpu_vce.h"
36 #include <linux/vga_switcheroo.h>
37 #include <linux/slab.h>
38 #include <linux/pm_runtime.h>
39 #include "amdgpu_amdkfd.h"
40 #include "amdgpu_gem.h"
41 #include "amdgpu_display.h"
43 static void amdgpu_unregister_gpu_instance(struct amdgpu_device *adev)
45 struct amdgpu_gpu_instance *gpu_instance;
48 mutex_lock(&mgpu_info.mutex);
50 for (i = 0; i < mgpu_info.num_gpu; i++) {
51 gpu_instance = &(mgpu_info.gpu_ins[i]);
52 if (gpu_instance->adev == adev) {
53 mgpu_info.gpu_ins[i] =
54 mgpu_info.gpu_ins[mgpu_info.num_gpu - 1];
56 if (adev->flags & AMD_IS_APU)
64 mutex_unlock(&mgpu_info.mutex);
68 * amdgpu_driver_unload_kms - Main unload function for KMS.
70 * @dev: drm dev pointer
72 * This is the main unload function for KMS (all asics).
73 * Returns 0 on success.
75 void amdgpu_driver_unload_kms(struct drm_device *dev)
77 struct amdgpu_device *adev = dev->dev_private;
82 amdgpu_unregister_gpu_instance(adev);
84 if (adev->rmmio == NULL)
87 if (amdgpu_sriov_vf(adev))
88 amdgpu_virt_request_full_gpu(adev, false);
90 if (amdgpu_device_is_px(dev)) {
91 pm_runtime_get_sync(dev->dev);
92 pm_runtime_forbid(dev->dev);
95 amdgpu_acpi_fini(adev);
97 amdgpu_device_fini(adev);
101 dev->dev_private = NULL;
104 static void amdgpu_register_gpu_instance(struct amdgpu_device *adev)
106 struct amdgpu_gpu_instance *gpu_instance;
108 mutex_lock(&mgpu_info.mutex);
110 if (mgpu_info.num_gpu >= MAX_GPU_INSTANCE) {
111 DRM_ERROR("Cannot register more gpu instance\n");
112 mutex_unlock(&mgpu_info.mutex);
116 gpu_instance = &(mgpu_info.gpu_ins[mgpu_info.num_gpu]);
117 gpu_instance->adev = adev;
118 gpu_instance->mgpu_fan_enabled = 0;
121 if (adev->flags & AMD_IS_APU)
124 mgpu_info.num_dgpu++;
126 mutex_unlock(&mgpu_info.mutex);
130 * amdgpu_driver_load_kms - Main load function for KMS.
132 * @dev: drm dev pointer
133 * @flags: device flags
135 * This is the main load function for KMS (all asics).
136 * Returns 0 on success, error on failure.
138 int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
140 struct amdgpu_device *adev;
143 #ifdef CONFIG_DRM_AMDGPU_SI
144 if (!amdgpu_si_support) {
145 switch (flags & AMD_ASIC_MASK) {
152 "SI support provided by radeon.\n");
154 "Use radeon.si_support=0 amdgpu.si_support=1 to override.\n"
160 #ifdef CONFIG_DRM_AMDGPU_CIK
161 if (!amdgpu_cik_support) {
162 switch (flags & AMD_ASIC_MASK) {
169 "CIK support provided by radeon.\n");
171 "Use radeon.cik_support=0 amdgpu.cik_support=1 to override.\n"
178 adev = kzalloc(sizeof(struct amdgpu_device), GFP_KERNEL);
182 dev->dev_private = (void *)adev;
184 if ((amdgpu_runtime_pm != 0) &&
186 (amdgpu_is_atpx_hybrid() ||
187 amdgpu_has_atpx_dgpu_power_cntl()) &&
188 ((flags & AMD_IS_APU) == 0) &&
189 !pci_is_thunderbolt_attached(dev->pdev))
192 /* amdgpu_device_init should report only fatal error
193 * like memory allocation failure or iomapping failure,
194 * or memory manager initialization failure, it must
195 * properly initialize the GPU MC controller and permit
198 r = amdgpu_device_init(adev, dev, dev->pdev, flags);
200 dev_err(&dev->pdev->dev, "Fatal error during GPU init\n");
204 /* Call ACPI methods: require modeset init
205 * but failure is not fatal
208 acpi_status = amdgpu_acpi_init(adev);
210 dev_dbg(&dev->pdev->dev,
211 "Error during ACPI methods call\n");
214 if (amdgpu_device_is_px(dev)) {
215 pm_runtime_use_autosuspend(dev->dev);
216 pm_runtime_set_autosuspend_delay(dev->dev, 5000);
217 pm_runtime_set_active(dev->dev);
218 pm_runtime_allow(dev->dev);
219 pm_runtime_mark_last_busy(dev->dev);
220 pm_runtime_put_autosuspend(dev->dev);
223 amdgpu_register_gpu_instance(adev);
226 /* balance pm_runtime_get_sync in amdgpu_driver_unload_kms */
227 if (adev->rmmio && amdgpu_device_is_px(dev))
228 pm_runtime_put_noidle(dev->dev);
229 amdgpu_driver_unload_kms(dev);
235 static int amdgpu_firmware_info(struct drm_amdgpu_info_firmware *fw_info,
236 struct drm_amdgpu_query_fw *query_fw,
237 struct amdgpu_device *adev)
239 switch (query_fw->fw_type) {
240 case AMDGPU_INFO_FW_VCE:
241 fw_info->ver = adev->vce.fw_version;
242 fw_info->feature = adev->vce.fb_version;
244 case AMDGPU_INFO_FW_UVD:
245 fw_info->ver = adev->uvd.fw_version;
246 fw_info->feature = 0;
248 case AMDGPU_INFO_FW_VCN:
249 fw_info->ver = adev->vcn.fw_version;
250 fw_info->feature = 0;
252 case AMDGPU_INFO_FW_GMC:
253 fw_info->ver = adev->gmc.fw_version;
254 fw_info->feature = 0;
256 case AMDGPU_INFO_FW_GFX_ME:
257 fw_info->ver = adev->gfx.me_fw_version;
258 fw_info->feature = adev->gfx.me_feature_version;
260 case AMDGPU_INFO_FW_GFX_PFP:
261 fw_info->ver = adev->gfx.pfp_fw_version;
262 fw_info->feature = adev->gfx.pfp_feature_version;
264 case AMDGPU_INFO_FW_GFX_CE:
265 fw_info->ver = adev->gfx.ce_fw_version;
266 fw_info->feature = adev->gfx.ce_feature_version;
268 case AMDGPU_INFO_FW_GFX_RLC:
269 fw_info->ver = adev->gfx.rlc_fw_version;
270 fw_info->feature = adev->gfx.rlc_feature_version;
272 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_CNTL:
273 fw_info->ver = adev->gfx.rlc_srlc_fw_version;
274 fw_info->feature = adev->gfx.rlc_srlc_feature_version;
276 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_GPM_MEM:
277 fw_info->ver = adev->gfx.rlc_srlg_fw_version;
278 fw_info->feature = adev->gfx.rlc_srlg_feature_version;
280 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_SRM_MEM:
281 fw_info->ver = adev->gfx.rlc_srls_fw_version;
282 fw_info->feature = adev->gfx.rlc_srls_feature_version;
284 case AMDGPU_INFO_FW_GFX_MEC:
285 if (query_fw->index == 0) {
286 fw_info->ver = adev->gfx.mec_fw_version;
287 fw_info->feature = adev->gfx.mec_feature_version;
288 } else if (query_fw->index == 1) {
289 fw_info->ver = adev->gfx.mec2_fw_version;
290 fw_info->feature = adev->gfx.mec2_feature_version;
294 case AMDGPU_INFO_FW_SMC:
295 fw_info->ver = adev->pm.fw_version;
296 fw_info->feature = 0;
298 case AMDGPU_INFO_FW_SDMA:
299 if (query_fw->index >= adev->sdma.num_instances)
301 fw_info->ver = adev->sdma.instance[query_fw->index].fw_version;
302 fw_info->feature = adev->sdma.instance[query_fw->index].feature_version;
304 case AMDGPU_INFO_FW_SOS:
305 fw_info->ver = adev->psp.sos_fw_version;
306 fw_info->feature = adev->psp.sos_feature_version;
308 case AMDGPU_INFO_FW_ASD:
309 fw_info->ver = adev->psp.asd_fw_version;
310 fw_info->feature = adev->psp.asd_feature_version;
312 case AMDGPU_INFO_FW_DMCU:
313 fw_info->ver = adev->dm.dmcu_fw_version;
314 fw_info->feature = 0;
322 static int amdgpu_hw_ip_info(struct amdgpu_device *adev,
323 struct drm_amdgpu_info *info,
324 struct drm_amdgpu_info_hw_ip *result)
326 uint32_t ib_start_alignment = 0;
327 uint32_t ib_size_alignment = 0;
328 enum amd_ip_block_type type;
329 unsigned int num_rings = 0;
332 if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
335 switch (info->query_hw_ip.type) {
336 case AMDGPU_HW_IP_GFX:
337 type = AMD_IP_BLOCK_TYPE_GFX;
338 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
339 if (adev->gfx.gfx_ring[i].sched.ready)
341 ib_start_alignment = 32;
342 ib_size_alignment = 32;
344 case AMDGPU_HW_IP_COMPUTE:
345 type = AMD_IP_BLOCK_TYPE_GFX;
346 for (i = 0; i < adev->gfx.num_compute_rings; i++)
347 if (adev->gfx.compute_ring[i].sched.ready)
349 ib_start_alignment = 32;
350 ib_size_alignment = 32;
352 case AMDGPU_HW_IP_DMA:
353 type = AMD_IP_BLOCK_TYPE_SDMA;
354 for (i = 0; i < adev->sdma.num_instances; i++)
355 if (adev->sdma.instance[i].ring.sched.ready)
357 ib_start_alignment = 256;
358 ib_size_alignment = 4;
360 case AMDGPU_HW_IP_UVD:
361 type = AMD_IP_BLOCK_TYPE_UVD;
362 for (i = 0; i < adev->uvd.num_uvd_inst; i++) {
363 if (adev->uvd.harvest_config & (1 << i))
366 if (adev->uvd.inst[i].ring.sched.ready)
369 ib_start_alignment = 64;
370 ib_size_alignment = 64;
372 case AMDGPU_HW_IP_VCE:
373 type = AMD_IP_BLOCK_TYPE_VCE;
374 for (i = 0; i < adev->vce.num_rings; i++)
375 if (adev->vce.ring[i].sched.ready)
377 ib_start_alignment = 4;
378 ib_size_alignment = 1;
380 case AMDGPU_HW_IP_UVD_ENC:
381 type = AMD_IP_BLOCK_TYPE_UVD;
382 for (i = 0; i < adev->uvd.num_uvd_inst; i++) {
383 if (adev->uvd.harvest_config & (1 << i))
386 for (j = 0; j < adev->uvd.num_enc_rings; j++)
387 if (adev->uvd.inst[i].ring_enc[j].sched.ready)
390 ib_start_alignment = 64;
391 ib_size_alignment = 64;
393 case AMDGPU_HW_IP_VCN_DEC:
394 type = AMD_IP_BLOCK_TYPE_VCN;
395 if (adev->vcn.ring_dec.sched.ready)
397 ib_start_alignment = 16;
398 ib_size_alignment = 16;
400 case AMDGPU_HW_IP_VCN_ENC:
401 type = AMD_IP_BLOCK_TYPE_VCN;
402 for (i = 0; i < adev->vcn.num_enc_rings; i++)
403 if (adev->vcn.ring_enc[i].sched.ready)
405 ib_start_alignment = 64;
406 ib_size_alignment = 1;
408 case AMDGPU_HW_IP_VCN_JPEG:
409 type = AMD_IP_BLOCK_TYPE_VCN;
410 if (adev->vcn.ring_jpeg.sched.ready)
412 ib_start_alignment = 16;
413 ib_size_alignment = 16;
419 for (i = 0; i < adev->num_ip_blocks; i++)
420 if (adev->ip_blocks[i].version->type == type &&
421 adev->ip_blocks[i].status.valid)
424 if (i == adev->num_ip_blocks)
427 num_rings = min(amdgpu_ctx_num_entities[info->query_hw_ip.type],
430 result->hw_ip_version_major = adev->ip_blocks[i].version->major;
431 result->hw_ip_version_minor = adev->ip_blocks[i].version->minor;
432 result->capabilities_flags = 0;
433 result->available_rings = (1 << num_rings) - 1;
434 result->ib_start_alignment = ib_start_alignment;
435 result->ib_size_alignment = ib_size_alignment;
440 * Userspace get information ioctl
443 * amdgpu_info_ioctl - answer a device specific request.
445 * @adev: amdgpu device pointer
446 * @data: request object
449 * This function is used to pass device specific parameters to the userspace
450 * drivers. Examples include: pci device id, pipeline parms, tiling params,
452 * Returns 0 on success, -EINVAL on failure.
454 static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
456 struct amdgpu_device *adev = dev->dev_private;
457 struct drm_amdgpu_info *info = data;
458 struct amdgpu_mode_info *minfo = &adev->mode_info;
459 void __user *out = (void __user *)(uintptr_t)info->return_pointer;
460 uint32_t size = info->return_size;
461 struct drm_crtc *crtc;
465 int ui32_size = sizeof(ui32);
467 if (!info->return_size || !info->return_pointer)
470 /* Ensure IB tests are run on ring */
471 flush_delayed_work(&adev->late_init_work);
473 switch (info->query) {
474 case AMDGPU_INFO_ACCEL_WORKING:
475 ui32 = adev->accel_working;
476 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
477 case AMDGPU_INFO_CRTC_FROM_ID:
478 for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
479 crtc = (struct drm_crtc *)minfo->crtcs[i];
480 if (crtc && crtc->base.id == info->mode_crtc.id) {
481 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
482 ui32 = amdgpu_crtc->crtc_id;
488 DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
491 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
492 case AMDGPU_INFO_HW_IP_INFO: {
493 struct drm_amdgpu_info_hw_ip ip = {};
496 ret = amdgpu_hw_ip_info(adev, info, &ip);
500 ret = copy_to_user(out, &ip, min((size_t)size, sizeof(ip)));
501 return ret ? -EFAULT : 0;
503 case AMDGPU_INFO_HW_IP_COUNT: {
504 enum amd_ip_block_type type;
507 switch (info->query_hw_ip.type) {
508 case AMDGPU_HW_IP_GFX:
509 type = AMD_IP_BLOCK_TYPE_GFX;
511 case AMDGPU_HW_IP_COMPUTE:
512 type = AMD_IP_BLOCK_TYPE_GFX;
514 case AMDGPU_HW_IP_DMA:
515 type = AMD_IP_BLOCK_TYPE_SDMA;
517 case AMDGPU_HW_IP_UVD:
518 type = AMD_IP_BLOCK_TYPE_UVD;
520 case AMDGPU_HW_IP_VCE:
521 type = AMD_IP_BLOCK_TYPE_VCE;
523 case AMDGPU_HW_IP_UVD_ENC:
524 type = AMD_IP_BLOCK_TYPE_UVD;
526 case AMDGPU_HW_IP_VCN_DEC:
527 case AMDGPU_HW_IP_VCN_ENC:
528 case AMDGPU_HW_IP_VCN_JPEG:
529 type = AMD_IP_BLOCK_TYPE_VCN;
535 for (i = 0; i < adev->num_ip_blocks; i++)
536 if (adev->ip_blocks[i].version->type == type &&
537 adev->ip_blocks[i].status.valid &&
538 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
541 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
543 case AMDGPU_INFO_TIMESTAMP:
544 ui64 = amdgpu_gfx_get_gpu_clock_counter(adev);
545 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
546 case AMDGPU_INFO_FW_VERSION: {
547 struct drm_amdgpu_info_firmware fw_info;
550 /* We only support one instance of each IP block right now. */
551 if (info->query_fw.ip_instance != 0)
554 ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev);
558 return copy_to_user(out, &fw_info,
559 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
561 case AMDGPU_INFO_NUM_BYTES_MOVED:
562 ui64 = atomic64_read(&adev->num_bytes_moved);
563 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
564 case AMDGPU_INFO_NUM_EVICTIONS:
565 ui64 = atomic64_read(&adev->num_evictions);
566 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
567 case AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS:
568 ui64 = atomic64_read(&adev->num_vram_cpu_page_faults);
569 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
570 case AMDGPU_INFO_VRAM_USAGE:
571 ui64 = amdgpu_vram_mgr_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
572 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
573 case AMDGPU_INFO_VIS_VRAM_USAGE:
574 ui64 = amdgpu_vram_mgr_vis_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
575 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
576 case AMDGPU_INFO_GTT_USAGE:
577 ui64 = amdgpu_gtt_mgr_usage(&adev->mman.bdev.man[TTM_PL_TT]);
578 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
579 case AMDGPU_INFO_GDS_CONFIG: {
580 struct drm_amdgpu_info_gds gds_info;
582 memset(&gds_info, 0, sizeof(gds_info));
583 gds_info.gds_gfx_partition_size = adev->gds.mem.gfx_partition_size;
584 gds_info.compute_partition_size = adev->gds.mem.cs_partition_size;
585 gds_info.gds_total_size = adev->gds.mem.total_size;
586 gds_info.gws_per_gfx_partition = adev->gds.gws.gfx_partition_size;
587 gds_info.gws_per_compute_partition = adev->gds.gws.cs_partition_size;
588 gds_info.oa_per_gfx_partition = adev->gds.oa.gfx_partition_size;
589 gds_info.oa_per_compute_partition = adev->gds.oa.cs_partition_size;
590 return copy_to_user(out, &gds_info,
591 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
593 case AMDGPU_INFO_VRAM_GTT: {
594 struct drm_amdgpu_info_vram_gtt vram_gtt;
596 vram_gtt.vram_size = adev->gmc.real_vram_size -
597 atomic64_read(&adev->vram_pin_size);
598 vram_gtt.vram_cpu_accessible_size = adev->gmc.visible_vram_size -
599 atomic64_read(&adev->visible_pin_size);
600 vram_gtt.gtt_size = adev->mman.bdev.man[TTM_PL_TT].size;
601 vram_gtt.gtt_size *= PAGE_SIZE;
602 vram_gtt.gtt_size -= atomic64_read(&adev->gart_pin_size);
603 return copy_to_user(out, &vram_gtt,
604 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
606 case AMDGPU_INFO_MEMORY: {
607 struct drm_amdgpu_memory_info mem;
609 memset(&mem, 0, sizeof(mem));
610 mem.vram.total_heap_size = adev->gmc.real_vram_size;
611 mem.vram.usable_heap_size = adev->gmc.real_vram_size -
612 atomic64_read(&adev->vram_pin_size);
613 mem.vram.heap_usage =
614 amdgpu_vram_mgr_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
615 mem.vram.max_allocation = mem.vram.usable_heap_size * 3 / 4;
617 mem.cpu_accessible_vram.total_heap_size =
618 adev->gmc.visible_vram_size;
619 mem.cpu_accessible_vram.usable_heap_size = adev->gmc.visible_vram_size -
620 atomic64_read(&adev->visible_pin_size);
621 mem.cpu_accessible_vram.heap_usage =
622 amdgpu_vram_mgr_vis_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
623 mem.cpu_accessible_vram.max_allocation =
624 mem.cpu_accessible_vram.usable_heap_size * 3 / 4;
626 mem.gtt.total_heap_size = adev->mman.bdev.man[TTM_PL_TT].size;
627 mem.gtt.total_heap_size *= PAGE_SIZE;
628 mem.gtt.usable_heap_size = mem.gtt.total_heap_size -
629 atomic64_read(&adev->gart_pin_size);
631 amdgpu_gtt_mgr_usage(&adev->mman.bdev.man[TTM_PL_TT]);
632 mem.gtt.max_allocation = mem.gtt.usable_heap_size * 3 / 4;
634 return copy_to_user(out, &mem,
635 min((size_t)size, sizeof(mem)))
638 case AMDGPU_INFO_READ_MMR_REG: {
639 unsigned n, alloc_size;
641 unsigned se_num = (info->read_mmr_reg.instance >>
642 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
643 AMDGPU_INFO_MMR_SE_INDEX_MASK;
644 unsigned sh_num = (info->read_mmr_reg.instance >>
645 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
646 AMDGPU_INFO_MMR_SH_INDEX_MASK;
648 /* set full masks if the userspace set all bits
649 * in the bitfields */
650 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
652 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
655 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
658 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
660 for (i = 0; i < info->read_mmr_reg.count; i++)
661 if (amdgpu_asic_read_register(adev, se_num, sh_num,
662 info->read_mmr_reg.dword_offset + i,
664 DRM_DEBUG_KMS("unallowed offset %#x\n",
665 info->read_mmr_reg.dword_offset + i);
669 n = copy_to_user(out, regs, min(size, alloc_size));
671 return n ? -EFAULT : 0;
673 case AMDGPU_INFO_DEV_INFO: {
674 struct drm_amdgpu_info_device dev_info = {};
677 dev_info.device_id = dev->pdev->device;
678 dev_info.chip_rev = adev->rev_id;
679 dev_info.external_rev = adev->external_rev_id;
680 dev_info.pci_rev = dev->pdev->revision;
681 dev_info.family = adev->family;
682 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines;
683 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
684 /* return all clocks in KHz */
685 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
686 if (adev->pm.dpm_enabled) {
687 dev_info.max_engine_clock = amdgpu_dpm_get_sclk(adev, false) * 10;
688 dev_info.max_memory_clock = amdgpu_dpm_get_mclk(adev, false) * 10;
690 dev_info.max_engine_clock = adev->clock.default_sclk * 10;
691 dev_info.max_memory_clock = adev->clock.default_mclk * 10;
693 dev_info.enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
694 dev_info.num_rb_pipes = adev->gfx.config.max_backends_per_se *
695 adev->gfx.config.max_shader_engines;
696 dev_info.num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
698 dev_info.ids_flags = 0;
699 if (adev->flags & AMD_IS_APU)
700 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
701 if (amdgpu_sriov_vf(adev))
702 dev_info.ids_flags |= AMDGPU_IDS_FLAGS_PREEMPTION;
704 vm_size = adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
705 vm_size -= AMDGPU_VA_RESERVED_SIZE;
707 /* Older VCE FW versions are buggy and can handle only 40bits */
708 if (adev->vce.fw_version &&
709 adev->vce.fw_version < AMDGPU_VCE_FW_53_45)
710 vm_size = min(vm_size, 1ULL << 40);
712 dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
713 dev_info.virtual_address_max =
714 min(vm_size, AMDGPU_GMC_HOLE_START);
716 if (vm_size > AMDGPU_GMC_HOLE_START) {
717 dev_info.high_va_offset = AMDGPU_GMC_HOLE_END;
718 dev_info.high_va_max = AMDGPU_GMC_HOLE_END | vm_size;
720 dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
721 dev_info.pte_fragment_size = (1 << adev->vm_manager.fragment_size) * AMDGPU_GPU_PAGE_SIZE;
722 dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
723 dev_info.cu_active_number = adev->gfx.cu_info.number;
724 dev_info.cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
725 dev_info.ce_ram_size = adev->gfx.ce_ram_size;
726 memcpy(&dev_info.cu_ao_bitmap[0], &adev->gfx.cu_info.ao_cu_bitmap[0],
727 sizeof(adev->gfx.cu_info.ao_cu_bitmap));
728 memcpy(&dev_info.cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
729 sizeof(adev->gfx.cu_info.bitmap));
730 dev_info.vram_type = adev->gmc.vram_type;
731 dev_info.vram_bit_width = adev->gmc.vram_width;
732 dev_info.vce_harvest_config = adev->vce.harvest_config;
733 dev_info.gc_double_offchip_lds_buf =
734 adev->gfx.config.double_offchip_lds_buf;
737 dev_info.prim_buf_gpu_addr = adev->gfx.ngg.buf[NGG_PRIM].gpu_addr;
738 dev_info.prim_buf_size = adev->gfx.ngg.buf[NGG_PRIM].size;
739 dev_info.pos_buf_gpu_addr = adev->gfx.ngg.buf[NGG_POS].gpu_addr;
740 dev_info.pos_buf_size = adev->gfx.ngg.buf[NGG_POS].size;
741 dev_info.cntl_sb_buf_gpu_addr = adev->gfx.ngg.buf[NGG_CNTL].gpu_addr;
742 dev_info.cntl_sb_buf_size = adev->gfx.ngg.buf[NGG_CNTL].size;
743 dev_info.param_buf_gpu_addr = adev->gfx.ngg.buf[NGG_PARAM].gpu_addr;
744 dev_info.param_buf_size = adev->gfx.ngg.buf[NGG_PARAM].size;
746 dev_info.wave_front_size = adev->gfx.cu_info.wave_front_size;
747 dev_info.num_shader_visible_vgprs = adev->gfx.config.max_gprs;
748 dev_info.num_cu_per_sh = adev->gfx.config.max_cu_per_sh;
749 dev_info.num_tcc_blocks = adev->gfx.config.max_texture_channel_caches;
750 dev_info.gs_vgt_table_depth = adev->gfx.config.gs_vgt_table_depth;
751 dev_info.gs_prim_buffer_depth = adev->gfx.config.gs_prim_buffer_depth;
752 dev_info.max_gs_waves_per_vgt = adev->gfx.config.max_gs_threads;
754 return copy_to_user(out, &dev_info,
755 min((size_t)size, sizeof(dev_info))) ? -EFAULT : 0;
757 case AMDGPU_INFO_VCE_CLOCK_TABLE: {
759 struct drm_amdgpu_info_vce_clock_table vce_clk_table = {};
760 struct amd_vce_state *vce_state;
762 for (i = 0; i < AMDGPU_VCE_CLOCK_TABLE_ENTRIES; i++) {
763 vce_state = amdgpu_dpm_get_vce_clock_state(adev, i);
765 vce_clk_table.entries[i].sclk = vce_state->sclk;
766 vce_clk_table.entries[i].mclk = vce_state->mclk;
767 vce_clk_table.entries[i].eclk = vce_state->evclk;
768 vce_clk_table.num_valid_entries++;
772 return copy_to_user(out, &vce_clk_table,
773 min((size_t)size, sizeof(vce_clk_table))) ? -EFAULT : 0;
775 case AMDGPU_INFO_VBIOS: {
776 uint32_t bios_size = adev->bios_size;
778 switch (info->vbios_info.type) {
779 case AMDGPU_INFO_VBIOS_SIZE:
780 return copy_to_user(out, &bios_size,
781 min((size_t)size, sizeof(bios_size)))
783 case AMDGPU_INFO_VBIOS_IMAGE: {
785 uint32_t bios_offset = info->vbios_info.offset;
787 if (bios_offset >= bios_size)
790 bios = adev->bios + bios_offset;
791 return copy_to_user(out, bios,
792 min((size_t)size, (size_t)(bios_size - bios_offset)))
796 DRM_DEBUG_KMS("Invalid request %d\n",
797 info->vbios_info.type);
801 case AMDGPU_INFO_NUM_HANDLES: {
802 struct drm_amdgpu_info_num_handles handle;
804 switch (info->query_hw_ip.type) {
805 case AMDGPU_HW_IP_UVD:
806 /* Starting Polaris, we support unlimited UVD handles */
807 if (adev->asic_type < CHIP_POLARIS10) {
808 handle.uvd_max_handles = adev->uvd.max_handles;
809 handle.uvd_used_handles = amdgpu_uvd_used_handles(adev);
811 return copy_to_user(out, &handle,
812 min((size_t)size, sizeof(handle))) ? -EFAULT : 0;
822 case AMDGPU_INFO_SENSOR: {
823 if (!adev->pm.dpm_enabled)
826 switch (info->sensor_info.type) {
827 case AMDGPU_INFO_SENSOR_GFX_SCLK:
828 /* get sclk in Mhz */
829 if (amdgpu_dpm_read_sensor(adev,
830 AMDGPU_PP_SENSOR_GFX_SCLK,
831 (void *)&ui32, &ui32_size)) {
836 case AMDGPU_INFO_SENSOR_GFX_MCLK:
837 /* get mclk in Mhz */
838 if (amdgpu_dpm_read_sensor(adev,
839 AMDGPU_PP_SENSOR_GFX_MCLK,
840 (void *)&ui32, &ui32_size)) {
845 case AMDGPU_INFO_SENSOR_GPU_TEMP:
846 /* get temperature in millidegrees C */
847 if (amdgpu_dpm_read_sensor(adev,
848 AMDGPU_PP_SENSOR_GPU_TEMP,
849 (void *)&ui32, &ui32_size)) {
853 case AMDGPU_INFO_SENSOR_GPU_LOAD:
855 if (amdgpu_dpm_read_sensor(adev,
856 AMDGPU_PP_SENSOR_GPU_LOAD,
857 (void *)&ui32, &ui32_size)) {
861 case AMDGPU_INFO_SENSOR_GPU_AVG_POWER:
862 /* get average GPU power */
863 if (amdgpu_dpm_read_sensor(adev,
864 AMDGPU_PP_SENSOR_GPU_POWER,
865 (void *)&ui32, &ui32_size)) {
870 case AMDGPU_INFO_SENSOR_VDDNB:
871 /* get VDDNB in millivolts */
872 if (amdgpu_dpm_read_sensor(adev,
873 AMDGPU_PP_SENSOR_VDDNB,
874 (void *)&ui32, &ui32_size)) {
878 case AMDGPU_INFO_SENSOR_VDDGFX:
879 /* get VDDGFX in millivolts */
880 if (amdgpu_dpm_read_sensor(adev,
881 AMDGPU_PP_SENSOR_VDDGFX,
882 (void *)&ui32, &ui32_size)) {
886 case AMDGPU_INFO_SENSOR_STABLE_PSTATE_GFX_SCLK:
887 /* get stable pstate sclk in Mhz */
888 if (amdgpu_dpm_read_sensor(adev,
889 AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK,
890 (void *)&ui32, &ui32_size)) {
895 case AMDGPU_INFO_SENSOR_STABLE_PSTATE_GFX_MCLK:
896 /* get stable pstate mclk in Mhz */
897 if (amdgpu_dpm_read_sensor(adev,
898 AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK,
899 (void *)&ui32, &ui32_size)) {
905 DRM_DEBUG_KMS("Invalid request %d\n",
906 info->sensor_info.type);
909 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
911 case AMDGPU_INFO_VRAM_LOST_COUNTER:
912 ui32 = atomic_read(&adev->vram_lost_counter);
913 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
915 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
923 * Outdated mess for old drm with Xorg being in charge (void function now).
926 * amdgpu_driver_lastclose_kms - drm callback for last close
928 * @dev: drm dev pointer
930 * Switch vga_switcheroo state after last close (all asics).
932 void amdgpu_driver_lastclose_kms(struct drm_device *dev)
934 drm_fb_helper_lastclose(dev);
935 vga_switcheroo_process_delayed_switch();
939 * amdgpu_driver_open_kms - drm callback for open
941 * @dev: drm dev pointer
942 * @file_priv: drm file
944 * On device open, init vm on cayman+ (all asics).
945 * Returns 0 on success, error on failure.
947 int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
949 struct amdgpu_device *adev = dev->dev_private;
950 struct amdgpu_fpriv *fpriv;
953 file_priv->driver_priv = NULL;
955 r = pm_runtime_get_sync(dev->dev);
959 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
960 if (unlikely(!fpriv)) {
965 pasid = amdgpu_pasid_alloc(16);
967 dev_warn(adev->dev, "No more PASIDs available!");
970 r = amdgpu_vm_init(adev, &fpriv->vm, AMDGPU_VM_CONTEXT_GFX, pasid);
974 fpriv->prt_va = amdgpu_vm_bo_add(adev, &fpriv->vm, NULL);
975 if (!fpriv->prt_va) {
980 if (amdgpu_sriov_vf(adev)) {
981 uint64_t csa_addr = amdgpu_csa_vaddr(adev) & AMDGPU_GMC_HOLE_MASK;
983 r = amdgpu_map_static_csa(adev, &fpriv->vm, adev->virt.csa_obj,
984 &fpriv->csa_va, csa_addr, AMDGPU_CSA_SIZE);
989 mutex_init(&fpriv->bo_list_lock);
990 idr_init(&fpriv->bo_list_handles);
992 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr);
994 file_priv->driver_priv = fpriv;
998 amdgpu_vm_fini(adev, &fpriv->vm);
1002 amdgpu_pasid_free(pasid);
1007 pm_runtime_mark_last_busy(dev->dev);
1008 pm_runtime_put_autosuspend(dev->dev);
1014 * amdgpu_driver_postclose_kms - drm callback for post close
1016 * @dev: drm dev pointer
1017 * @file_priv: drm file
1019 * On device post close, tear down vm on cayman+ (all asics).
1021 void amdgpu_driver_postclose_kms(struct drm_device *dev,
1022 struct drm_file *file_priv)
1024 struct amdgpu_device *adev = dev->dev_private;
1025 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
1026 struct amdgpu_bo_list *list;
1027 struct amdgpu_bo *pd;
1034 pm_runtime_get_sync(dev->dev);
1036 if (amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_UVD) != NULL)
1037 amdgpu_uvd_free_handles(adev, file_priv);
1038 if (amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_VCE) != NULL)
1039 amdgpu_vce_free_handles(adev, file_priv);
1041 amdgpu_vm_bo_rmv(adev, fpriv->prt_va);
1043 if (amdgpu_sriov_vf(adev)) {
1044 /* TODO: how to handle reserve failure */
1045 BUG_ON(amdgpu_bo_reserve(adev->virt.csa_obj, true));
1046 amdgpu_vm_bo_rmv(adev, fpriv->csa_va);
1047 fpriv->csa_va = NULL;
1048 amdgpu_bo_unreserve(adev->virt.csa_obj);
1051 pasid = fpriv->vm.pasid;
1052 pd = amdgpu_bo_ref(fpriv->vm.root.base.bo);
1054 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
1055 amdgpu_vm_fini(adev, &fpriv->vm);
1058 amdgpu_pasid_free_delayed(pd->tbo.resv, pasid);
1059 amdgpu_bo_unref(&pd);
1061 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
1062 amdgpu_bo_list_put(list);
1064 idr_destroy(&fpriv->bo_list_handles);
1065 mutex_destroy(&fpriv->bo_list_lock);
1068 file_priv->driver_priv = NULL;
1070 pm_runtime_mark_last_busy(dev->dev);
1071 pm_runtime_put_autosuspend(dev->dev);
1075 * VBlank related functions.
1078 * amdgpu_get_vblank_counter_kms - get frame count
1080 * @dev: drm dev pointer
1081 * @pipe: crtc to get the frame count from
1083 * Gets the frame count on the requested crtc (all asics).
1084 * Returns frame count on success, -EINVAL on failure.
1086 u32 amdgpu_get_vblank_counter_kms(struct drm_device *dev, unsigned int pipe)
1088 struct amdgpu_device *adev = dev->dev_private;
1089 int vpos, hpos, stat;
1092 if (pipe >= adev->mode_info.num_crtc) {
1093 DRM_ERROR("Invalid crtc %u\n", pipe);
1097 /* The hw increments its frame counter at start of vsync, not at start
1098 * of vblank, as is required by DRM core vblank counter handling.
1099 * Cook the hw count here to make it appear to the caller as if it
1100 * incremented at start of vblank. We measure distance to start of
1101 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
1102 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
1103 * result by 1 to give the proper appearance to caller.
1105 if (adev->mode_info.crtcs[pipe]) {
1106 /* Repeat readout if needed to provide stable result if
1107 * we cross start of vsync during the queries.
1110 count = amdgpu_display_vblank_get_counter(adev, pipe);
1111 /* Ask amdgpu_display_get_crtc_scanoutpos to return
1112 * vpos as distance to start of vblank, instead of
1113 * regular vertical scanout pos.
1115 stat = amdgpu_display_get_crtc_scanoutpos(
1116 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
1117 &vpos, &hpos, NULL, NULL,
1118 &adev->mode_info.crtcs[pipe]->base.hwmode);
1119 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
1121 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
1122 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
1123 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
1125 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
1128 /* Bump counter if we are at >= leading edge of vblank,
1129 * but before vsync where vpos would turn negative and
1130 * the hw counter really increments.
1136 /* Fallback to use value as is. */
1137 count = amdgpu_display_vblank_get_counter(adev, pipe);
1138 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
1145 * amdgpu_enable_vblank_kms - enable vblank interrupt
1147 * @dev: drm dev pointer
1148 * @pipe: crtc to enable vblank interrupt for
1150 * Enable the interrupt on the requested crtc (all asics).
1151 * Returns 0 on success, -EINVAL on failure.
1153 int amdgpu_enable_vblank_kms(struct drm_device *dev, unsigned int pipe)
1155 struct amdgpu_device *adev = dev->dev_private;
1156 int idx = amdgpu_display_crtc_idx_to_irq_type(adev, pipe);
1158 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
1162 * amdgpu_disable_vblank_kms - disable vblank interrupt
1164 * @dev: drm dev pointer
1165 * @pipe: crtc to disable vblank interrupt for
1167 * Disable the interrupt on the requested crtc (all asics).
1169 void amdgpu_disable_vblank_kms(struct drm_device *dev, unsigned int pipe)
1171 struct amdgpu_device *adev = dev->dev_private;
1172 int idx = amdgpu_display_crtc_idx_to_irq_type(adev, pipe);
1174 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
1177 const struct drm_ioctl_desc amdgpu_ioctls_kms[] = {
1178 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_CREATE, amdgpu_gem_create_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1179 DRM_IOCTL_DEF_DRV(AMDGPU_CTX, amdgpu_ctx_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1180 DRM_IOCTL_DEF_DRV(AMDGPU_VM, amdgpu_vm_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1181 DRM_IOCTL_DEF_DRV(AMDGPU_SCHED, amdgpu_sched_ioctl, DRM_MASTER),
1182 DRM_IOCTL_DEF_DRV(AMDGPU_BO_LIST, amdgpu_bo_list_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1183 DRM_IOCTL_DEF_DRV(AMDGPU_FENCE_TO_HANDLE, amdgpu_cs_fence_to_handle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1185 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_MMAP, amdgpu_gem_mmap_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1186 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_WAIT_IDLE, amdgpu_gem_wait_idle_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1187 DRM_IOCTL_DEF_DRV(AMDGPU_CS, amdgpu_cs_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1188 DRM_IOCTL_DEF_DRV(AMDGPU_INFO, amdgpu_info_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1189 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_CS, amdgpu_cs_wait_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1190 DRM_IOCTL_DEF_DRV(AMDGPU_WAIT_FENCES, amdgpu_cs_wait_fences_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1191 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_METADATA, amdgpu_gem_metadata_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1192 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_VA, amdgpu_gem_va_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1193 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_OP, amdgpu_gem_op_ioctl, DRM_AUTH|DRM_RENDER_ALLOW),
1194 DRM_IOCTL_DEF_DRV(AMDGPU_GEM_USERPTR, amdgpu_gem_userptr_ioctl, DRM_AUTH|DRM_RENDER_ALLOW)
1196 const int amdgpu_max_kms_ioctl = ARRAY_SIZE(amdgpu_ioctls_kms);
1201 #if defined(CONFIG_DEBUG_FS)
1203 static int amdgpu_debugfs_firmware_info(struct seq_file *m, void *data)
1205 struct drm_info_node *node = (struct drm_info_node *) m->private;
1206 struct drm_device *dev = node->minor->dev;
1207 struct amdgpu_device *adev = dev->dev_private;
1208 struct drm_amdgpu_info_firmware fw_info;
1209 struct drm_amdgpu_query_fw query_fw;
1210 struct atom_context *ctx = adev->mode_info.atom_context;
1214 query_fw.fw_type = AMDGPU_INFO_FW_VCE;
1215 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1218 seq_printf(m, "VCE feature version: %u, firmware version: 0x%08x\n",
1219 fw_info.feature, fw_info.ver);
1222 query_fw.fw_type = AMDGPU_INFO_FW_UVD;
1223 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1226 seq_printf(m, "UVD feature version: %u, firmware version: 0x%08x\n",
1227 fw_info.feature, fw_info.ver);
1230 query_fw.fw_type = AMDGPU_INFO_FW_GMC;
1231 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1234 seq_printf(m, "MC feature version: %u, firmware version: 0x%08x\n",
1235 fw_info.feature, fw_info.ver);
1238 query_fw.fw_type = AMDGPU_INFO_FW_GFX_ME;
1239 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1242 seq_printf(m, "ME feature version: %u, firmware version: 0x%08x\n",
1243 fw_info.feature, fw_info.ver);
1246 query_fw.fw_type = AMDGPU_INFO_FW_GFX_PFP;
1247 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1250 seq_printf(m, "PFP feature version: %u, firmware version: 0x%08x\n",
1251 fw_info.feature, fw_info.ver);
1254 query_fw.fw_type = AMDGPU_INFO_FW_GFX_CE;
1255 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1258 seq_printf(m, "CE feature version: %u, firmware version: 0x%08x\n",
1259 fw_info.feature, fw_info.ver);
1262 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC;
1263 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1266 seq_printf(m, "RLC feature version: %u, firmware version: 0x%08x\n",
1267 fw_info.feature, fw_info.ver);
1269 /* RLC SAVE RESTORE LIST CNTL */
1270 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_CNTL;
1271 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1274 seq_printf(m, "RLC SRLC feature version: %u, firmware version: 0x%08x\n",
1275 fw_info.feature, fw_info.ver);
1277 /* RLC SAVE RESTORE LIST GPM MEM */
1278 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_GPM_MEM;
1279 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1282 seq_printf(m, "RLC SRLG feature version: %u, firmware version: 0x%08x\n",
1283 fw_info.feature, fw_info.ver);
1285 /* RLC SAVE RESTORE LIST SRM MEM */
1286 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_SRM_MEM;
1287 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1290 seq_printf(m, "RLC SRLS feature version: %u, firmware version: 0x%08x\n",
1291 fw_info.feature, fw_info.ver);
1294 query_fw.fw_type = AMDGPU_INFO_FW_GFX_MEC;
1296 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1299 seq_printf(m, "MEC feature version: %u, firmware version: 0x%08x\n",
1300 fw_info.feature, fw_info.ver);
1303 if (adev->asic_type == CHIP_KAVERI ||
1304 (adev->asic_type > CHIP_TOPAZ && adev->asic_type != CHIP_STONEY)) {
1306 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1309 seq_printf(m, "MEC2 feature version: %u, firmware version: 0x%08x\n",
1310 fw_info.feature, fw_info.ver);
1314 query_fw.fw_type = AMDGPU_INFO_FW_SOS;
1315 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1318 seq_printf(m, "SOS feature version: %u, firmware version: 0x%08x\n",
1319 fw_info.feature, fw_info.ver);
1323 query_fw.fw_type = AMDGPU_INFO_FW_ASD;
1324 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1327 seq_printf(m, "ASD feature version: %u, firmware version: 0x%08x\n",
1328 fw_info.feature, fw_info.ver);
1331 query_fw.fw_type = AMDGPU_INFO_FW_SMC;
1332 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1335 seq_printf(m, "SMC feature version: %u, firmware version: 0x%08x\n",
1336 fw_info.feature, fw_info.ver);
1339 query_fw.fw_type = AMDGPU_INFO_FW_SDMA;
1340 for (i = 0; i < adev->sdma.num_instances; i++) {
1342 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1345 seq_printf(m, "SDMA%d feature version: %u, firmware version: 0x%08x\n",
1346 i, fw_info.feature, fw_info.ver);
1350 query_fw.fw_type = AMDGPU_INFO_FW_VCN;
1351 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1354 seq_printf(m, "VCN feature version: %u, firmware version: 0x%08x\n",
1355 fw_info.feature, fw_info.ver);
1358 query_fw.fw_type = AMDGPU_INFO_FW_DMCU;
1359 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1362 seq_printf(m, "DMCU feature version: %u, firmware version: 0x%08x\n",
1363 fw_info.feature, fw_info.ver);
1366 seq_printf(m, "VBIOS version: %s\n", ctx->vbios_version);
1371 static const struct drm_info_list amdgpu_firmware_info_list[] = {
1372 {"amdgpu_firmware_info", amdgpu_debugfs_firmware_info, 0, NULL},
1376 int amdgpu_debugfs_firmware_init(struct amdgpu_device *adev)
1378 #if defined(CONFIG_DEBUG_FS)
1379 return amdgpu_debugfs_add_files(adev, amdgpu_firmware_info_list,
1380 ARRAY_SIZE(amdgpu_firmware_info_list));