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 <drm/drm_drv.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/uaccess.h>
39 #include <linux/pci.h>
40 #include <linux/pm_runtime.h>
41 #include "amdgpu_amdkfd.h"
42 #include "amdgpu_gem.h"
43 #include "amdgpu_display.h"
44 #include "amdgpu_ras.h"
46 void amdgpu_unregister_gpu_instance(struct amdgpu_device *adev)
48 struct amdgpu_gpu_instance *gpu_instance;
51 mutex_lock(&mgpu_info.mutex);
53 for (i = 0; i < mgpu_info.num_gpu; i++) {
54 gpu_instance = &(mgpu_info.gpu_ins[i]);
55 if (gpu_instance->adev == adev) {
56 mgpu_info.gpu_ins[i] =
57 mgpu_info.gpu_ins[mgpu_info.num_gpu - 1];
59 if (adev->flags & AMD_IS_APU)
67 mutex_unlock(&mgpu_info.mutex);
71 * amdgpu_driver_unload_kms - Main unload function for KMS.
73 * @dev: drm dev pointer
75 * This is the main unload function for KMS (all asics).
76 * Returns 0 on success.
78 void amdgpu_driver_unload_kms(struct drm_device *dev)
80 struct amdgpu_device *adev = drm_to_adev(dev);
85 amdgpu_unregister_gpu_instance(adev);
87 if (adev->rmmio == NULL)
90 if (amdgpu_acpi_smart_shift_update(dev, AMDGPU_SS_DRV_UNLOAD))
91 DRM_WARN("smart shift update failed\n");
93 amdgpu_acpi_fini(adev);
94 amdgpu_device_fini_hw(adev);
97 void amdgpu_register_gpu_instance(struct amdgpu_device *adev)
99 struct amdgpu_gpu_instance *gpu_instance;
101 mutex_lock(&mgpu_info.mutex);
103 if (mgpu_info.num_gpu >= MAX_GPU_INSTANCE) {
104 DRM_ERROR("Cannot register more gpu instance\n");
105 mutex_unlock(&mgpu_info.mutex);
109 gpu_instance = &(mgpu_info.gpu_ins[mgpu_info.num_gpu]);
110 gpu_instance->adev = adev;
111 gpu_instance->mgpu_fan_enabled = 0;
114 if (adev->flags & AMD_IS_APU)
117 mgpu_info.num_dgpu++;
119 mutex_unlock(&mgpu_info.mutex);
123 * amdgpu_driver_load_kms - Main load function for KMS.
125 * @adev: pointer to struct amdgpu_device
126 * @flags: device flags
128 * This is the main load function for KMS (all asics).
129 * Returns 0 on success, error on failure.
131 int amdgpu_driver_load_kms(struct amdgpu_device *adev, unsigned long flags)
133 struct drm_device *dev;
136 dev = adev_to_drm(adev);
138 /* amdgpu_device_init should report only fatal error
139 * like memory allocation failure or iomapping failure,
140 * or memory manager initialization failure, it must
141 * properly initialize the GPU MC controller and permit
144 r = amdgpu_device_init(adev, flags);
146 dev_err(dev->dev, "Fatal error during GPU init\n");
150 adev->pm.rpm_mode = AMDGPU_RUNPM_NONE;
151 if (amdgpu_device_supports_px(dev) &&
152 (amdgpu_runtime_pm != 0)) { /* enable PX as runtime mode */
153 adev->pm.rpm_mode = AMDGPU_RUNPM_PX;
154 dev_info(adev->dev, "Using ATPX for runtime pm\n");
155 } else if (amdgpu_device_supports_boco(dev) &&
156 (amdgpu_runtime_pm != 0)) { /* enable boco as runtime mode */
157 adev->pm.rpm_mode = AMDGPU_RUNPM_BOCO;
158 dev_info(adev->dev, "Using BOCO for runtime pm\n");
159 } else if (amdgpu_device_supports_baco(dev) &&
160 (amdgpu_runtime_pm != 0)) {
161 switch (adev->asic_type) {
164 /* enable BACO as runpm mode if runpm=1 */
165 if (amdgpu_runtime_pm > 0)
166 adev->pm.rpm_mode = AMDGPU_RUNPM_BACO;
169 /* enable BACO as runpm mode if noretry=0 */
170 if (!adev->gmc.noretry)
171 adev->pm.rpm_mode = AMDGPU_RUNPM_BACO;
174 /* enable BACO as runpm mode on CI+ */
175 adev->pm.rpm_mode = AMDGPU_RUNPM_BACO;
179 if (adev->pm.rpm_mode == AMDGPU_RUNPM_BACO)
180 dev_info(adev->dev, "Using BACO for runtime pm\n");
183 /* Call ACPI methods: require modeset init
184 * but failure is not fatal
187 acpi_status = amdgpu_acpi_init(adev);
189 dev_dbg(dev->dev, "Error during ACPI methods call\n");
191 if (amdgpu_acpi_smart_shift_update(dev, AMDGPU_SS_DRV_LOAD))
192 DRM_WARN("smart shift update failed\n");
196 amdgpu_driver_unload_kms(dev);
201 static int amdgpu_firmware_info(struct drm_amdgpu_info_firmware *fw_info,
202 struct drm_amdgpu_query_fw *query_fw,
203 struct amdgpu_device *adev)
205 switch (query_fw->fw_type) {
206 case AMDGPU_INFO_FW_VCE:
207 fw_info->ver = adev->vce.fw_version;
208 fw_info->feature = adev->vce.fb_version;
210 case AMDGPU_INFO_FW_UVD:
211 fw_info->ver = adev->uvd.fw_version;
212 fw_info->feature = 0;
214 case AMDGPU_INFO_FW_VCN:
215 fw_info->ver = adev->vcn.fw_version;
216 fw_info->feature = 0;
218 case AMDGPU_INFO_FW_GMC:
219 fw_info->ver = adev->gmc.fw_version;
220 fw_info->feature = 0;
222 case AMDGPU_INFO_FW_GFX_ME:
223 fw_info->ver = adev->gfx.me_fw_version;
224 fw_info->feature = adev->gfx.me_feature_version;
226 case AMDGPU_INFO_FW_GFX_PFP:
227 fw_info->ver = adev->gfx.pfp_fw_version;
228 fw_info->feature = adev->gfx.pfp_feature_version;
230 case AMDGPU_INFO_FW_GFX_CE:
231 fw_info->ver = adev->gfx.ce_fw_version;
232 fw_info->feature = adev->gfx.ce_feature_version;
234 case AMDGPU_INFO_FW_GFX_RLC:
235 fw_info->ver = adev->gfx.rlc_fw_version;
236 fw_info->feature = adev->gfx.rlc_feature_version;
238 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_CNTL:
239 fw_info->ver = adev->gfx.rlc_srlc_fw_version;
240 fw_info->feature = adev->gfx.rlc_srlc_feature_version;
242 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_GPM_MEM:
243 fw_info->ver = adev->gfx.rlc_srlg_fw_version;
244 fw_info->feature = adev->gfx.rlc_srlg_feature_version;
246 case AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_SRM_MEM:
247 fw_info->ver = adev->gfx.rlc_srls_fw_version;
248 fw_info->feature = adev->gfx.rlc_srls_feature_version;
250 case AMDGPU_INFO_FW_GFX_MEC:
251 if (query_fw->index == 0) {
252 fw_info->ver = adev->gfx.mec_fw_version;
253 fw_info->feature = adev->gfx.mec_feature_version;
254 } else if (query_fw->index == 1) {
255 fw_info->ver = adev->gfx.mec2_fw_version;
256 fw_info->feature = adev->gfx.mec2_feature_version;
260 case AMDGPU_INFO_FW_SMC:
261 fw_info->ver = adev->pm.fw_version;
262 fw_info->feature = 0;
264 case AMDGPU_INFO_FW_TA:
265 switch (query_fw->index) {
266 case TA_FW_TYPE_PSP_XGMI:
267 fw_info->ver = adev->psp.xgmi_context.context.bin_desc.fw_version;
268 fw_info->feature = adev->psp.xgmi_context.context
269 .bin_desc.feature_version;
271 case TA_FW_TYPE_PSP_RAS:
272 fw_info->ver = adev->psp.ras_context.context.bin_desc.fw_version;
273 fw_info->feature = adev->psp.ras_context.context
274 .bin_desc.feature_version;
276 case TA_FW_TYPE_PSP_HDCP:
277 fw_info->ver = adev->psp.hdcp_context.context.bin_desc.fw_version;
278 fw_info->feature = adev->psp.hdcp_context.context
279 .bin_desc.feature_version;
281 case TA_FW_TYPE_PSP_DTM:
282 fw_info->ver = adev->psp.dtm_context.context.bin_desc.fw_version;
283 fw_info->feature = adev->psp.dtm_context.context
284 .bin_desc.feature_version;
286 case TA_FW_TYPE_PSP_RAP:
287 fw_info->ver = adev->psp.rap_context.context.bin_desc.fw_version;
288 fw_info->feature = adev->psp.rap_context.context
289 .bin_desc.feature_version;
291 case TA_FW_TYPE_PSP_SECUREDISPLAY:
292 fw_info->ver = adev->psp.securedisplay_context.context.bin_desc.fw_version;
294 adev->psp.securedisplay_context.context.bin_desc
301 case AMDGPU_INFO_FW_SDMA:
302 if (query_fw->index >= adev->sdma.num_instances)
304 fw_info->ver = adev->sdma.instance[query_fw->index].fw_version;
305 fw_info->feature = adev->sdma.instance[query_fw->index].feature_version;
307 case AMDGPU_INFO_FW_SOS:
308 fw_info->ver = adev->psp.sos.fw_version;
309 fw_info->feature = adev->psp.sos.feature_version;
311 case AMDGPU_INFO_FW_ASD:
312 fw_info->ver = adev->psp.asd_context.bin_desc.fw_version;
313 fw_info->feature = adev->psp.asd_context.bin_desc.feature_version;
315 case AMDGPU_INFO_FW_DMCU:
316 fw_info->ver = adev->dm.dmcu_fw_version;
317 fw_info->feature = 0;
319 case AMDGPU_INFO_FW_DMCUB:
320 fw_info->ver = adev->dm.dmcub_fw_version;
321 fw_info->feature = 0;
323 case AMDGPU_INFO_FW_TOC:
324 fw_info->ver = adev->psp.toc.fw_version;
325 fw_info->feature = adev->psp.toc.feature_version;
327 case AMDGPU_INFO_FW_CAP:
328 fw_info->ver = adev->psp.cap_fw_version;
329 fw_info->feature = adev->psp.cap_feature_version;
337 static int amdgpu_hw_ip_info(struct amdgpu_device *adev,
338 struct drm_amdgpu_info *info,
339 struct drm_amdgpu_info_hw_ip *result)
341 uint32_t ib_start_alignment = 0;
342 uint32_t ib_size_alignment = 0;
343 enum amd_ip_block_type type;
344 unsigned int num_rings = 0;
347 if (info->query_hw_ip.ip_instance >= AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
350 switch (info->query_hw_ip.type) {
351 case AMDGPU_HW_IP_GFX:
352 type = AMD_IP_BLOCK_TYPE_GFX;
353 for (i = 0; i < adev->gfx.num_gfx_rings; i++)
354 if (adev->gfx.gfx_ring[i].sched.ready)
356 ib_start_alignment = 32;
357 ib_size_alignment = 32;
359 case AMDGPU_HW_IP_COMPUTE:
360 type = AMD_IP_BLOCK_TYPE_GFX;
361 for (i = 0; i < adev->gfx.num_compute_rings; i++)
362 if (adev->gfx.compute_ring[i].sched.ready)
364 ib_start_alignment = 32;
365 ib_size_alignment = 32;
367 case AMDGPU_HW_IP_DMA:
368 type = AMD_IP_BLOCK_TYPE_SDMA;
369 for (i = 0; i < adev->sdma.num_instances; i++)
370 if (adev->sdma.instance[i].ring.sched.ready)
372 ib_start_alignment = 256;
373 ib_size_alignment = 4;
375 case AMDGPU_HW_IP_UVD:
376 type = AMD_IP_BLOCK_TYPE_UVD;
377 for (i = 0; i < adev->uvd.num_uvd_inst; i++) {
378 if (adev->uvd.harvest_config & (1 << i))
381 if (adev->uvd.inst[i].ring.sched.ready)
384 ib_start_alignment = 64;
385 ib_size_alignment = 64;
387 case AMDGPU_HW_IP_VCE:
388 type = AMD_IP_BLOCK_TYPE_VCE;
389 for (i = 0; i < adev->vce.num_rings; i++)
390 if (adev->vce.ring[i].sched.ready)
392 ib_start_alignment = 4;
393 ib_size_alignment = 1;
395 case AMDGPU_HW_IP_UVD_ENC:
396 type = AMD_IP_BLOCK_TYPE_UVD;
397 for (i = 0; i < adev->uvd.num_uvd_inst; i++) {
398 if (adev->uvd.harvest_config & (1 << i))
401 for (j = 0; j < adev->uvd.num_enc_rings; j++)
402 if (adev->uvd.inst[i].ring_enc[j].sched.ready)
405 ib_start_alignment = 64;
406 ib_size_alignment = 64;
408 case AMDGPU_HW_IP_VCN_DEC:
409 type = AMD_IP_BLOCK_TYPE_VCN;
410 for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
411 if (adev->uvd.harvest_config & (1 << i))
414 if (adev->vcn.inst[i].ring_dec.sched.ready)
417 ib_start_alignment = 16;
418 ib_size_alignment = 16;
420 case AMDGPU_HW_IP_VCN_ENC:
421 type = AMD_IP_BLOCK_TYPE_VCN;
422 for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
423 if (adev->uvd.harvest_config & (1 << i))
426 for (j = 0; j < adev->vcn.num_enc_rings; j++)
427 if (adev->vcn.inst[i].ring_enc[j].sched.ready)
430 ib_start_alignment = 64;
431 ib_size_alignment = 1;
433 case AMDGPU_HW_IP_VCN_JPEG:
434 type = (amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_JPEG)) ?
435 AMD_IP_BLOCK_TYPE_JPEG : AMD_IP_BLOCK_TYPE_VCN;
437 for (i = 0; i < adev->jpeg.num_jpeg_inst; i++) {
438 if (adev->jpeg.harvest_config & (1 << i))
441 if (adev->jpeg.inst[i].ring_dec.sched.ready)
444 ib_start_alignment = 16;
445 ib_size_alignment = 16;
451 for (i = 0; i < adev->num_ip_blocks; i++)
452 if (adev->ip_blocks[i].version->type == type &&
453 adev->ip_blocks[i].status.valid)
456 if (i == adev->num_ip_blocks)
459 num_rings = min(amdgpu_ctx_num_entities[info->query_hw_ip.type],
462 result->hw_ip_version_major = adev->ip_blocks[i].version->major;
463 result->hw_ip_version_minor = adev->ip_blocks[i].version->minor;
465 if (adev->asic_type >= CHIP_VEGA10) {
467 case AMD_IP_BLOCK_TYPE_GFX:
468 result->ip_discovery_version = adev->ip_versions[GC_HWIP][0];
470 case AMD_IP_BLOCK_TYPE_SDMA:
471 result->ip_discovery_version = adev->ip_versions[SDMA0_HWIP][0];
473 case AMD_IP_BLOCK_TYPE_UVD:
474 case AMD_IP_BLOCK_TYPE_VCN:
475 case AMD_IP_BLOCK_TYPE_JPEG:
476 result->ip_discovery_version = adev->ip_versions[UVD_HWIP][0];
478 case AMD_IP_BLOCK_TYPE_VCE:
479 result->ip_discovery_version = adev->ip_versions[VCE_HWIP][0];
482 result->ip_discovery_version = 0;
486 result->ip_discovery_version = 0;
488 result->capabilities_flags = 0;
489 result->available_rings = (1 << num_rings) - 1;
490 result->ib_start_alignment = ib_start_alignment;
491 result->ib_size_alignment = ib_size_alignment;
496 * Userspace get information ioctl
499 * amdgpu_info_ioctl - answer a device specific request.
501 * @dev: drm device pointer
502 * @data: request object
505 * This function is used to pass device specific parameters to the userspace
506 * drivers. Examples include: pci device id, pipeline parms, tiling params,
508 * Returns 0 on success, -EINVAL on failure.
510 int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
512 struct amdgpu_device *adev = drm_to_adev(dev);
513 struct drm_amdgpu_info *info = data;
514 struct amdgpu_mode_info *minfo = &adev->mode_info;
515 void __user *out = (void __user *)(uintptr_t)info->return_pointer;
516 uint32_t size = info->return_size;
517 struct drm_crtc *crtc;
521 int ui32_size = sizeof(ui32);
523 if (!info->return_size || !info->return_pointer)
526 switch (info->query) {
527 case AMDGPU_INFO_ACCEL_WORKING:
528 ui32 = adev->accel_working;
529 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
530 case AMDGPU_INFO_CRTC_FROM_ID:
531 for (i = 0, found = 0; i < adev->mode_info.num_crtc; i++) {
532 crtc = (struct drm_crtc *)minfo->crtcs[i];
533 if (crtc && crtc->base.id == info->mode_crtc.id) {
534 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
535 ui32 = amdgpu_crtc->crtc_id;
541 DRM_DEBUG_KMS("unknown crtc id %d\n", info->mode_crtc.id);
544 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
545 case AMDGPU_INFO_HW_IP_INFO: {
546 struct drm_amdgpu_info_hw_ip ip = {};
549 ret = amdgpu_hw_ip_info(adev, info, &ip);
553 ret = copy_to_user(out, &ip, min((size_t)size, sizeof(ip)));
554 return ret ? -EFAULT : 0;
556 case AMDGPU_INFO_HW_IP_COUNT: {
557 enum amd_ip_block_type type;
560 switch (info->query_hw_ip.type) {
561 case AMDGPU_HW_IP_GFX:
562 type = AMD_IP_BLOCK_TYPE_GFX;
564 case AMDGPU_HW_IP_COMPUTE:
565 type = AMD_IP_BLOCK_TYPE_GFX;
567 case AMDGPU_HW_IP_DMA:
568 type = AMD_IP_BLOCK_TYPE_SDMA;
570 case AMDGPU_HW_IP_UVD:
571 type = AMD_IP_BLOCK_TYPE_UVD;
573 case AMDGPU_HW_IP_VCE:
574 type = AMD_IP_BLOCK_TYPE_VCE;
576 case AMDGPU_HW_IP_UVD_ENC:
577 type = AMD_IP_BLOCK_TYPE_UVD;
579 case AMDGPU_HW_IP_VCN_DEC:
580 case AMDGPU_HW_IP_VCN_ENC:
581 type = AMD_IP_BLOCK_TYPE_VCN;
583 case AMDGPU_HW_IP_VCN_JPEG:
584 type = (amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_JPEG)) ?
585 AMD_IP_BLOCK_TYPE_JPEG : AMD_IP_BLOCK_TYPE_VCN;
591 for (i = 0; i < adev->num_ip_blocks; i++)
592 if (adev->ip_blocks[i].version->type == type &&
593 adev->ip_blocks[i].status.valid &&
594 count < AMDGPU_HW_IP_INSTANCE_MAX_COUNT)
597 return copy_to_user(out, &count, min(size, 4u)) ? -EFAULT : 0;
599 case AMDGPU_INFO_TIMESTAMP:
600 ui64 = amdgpu_gfx_get_gpu_clock_counter(adev);
601 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
602 case AMDGPU_INFO_FW_VERSION: {
603 struct drm_amdgpu_info_firmware fw_info;
606 /* We only support one instance of each IP block right now. */
607 if (info->query_fw.ip_instance != 0)
610 ret = amdgpu_firmware_info(&fw_info, &info->query_fw, adev);
614 return copy_to_user(out, &fw_info,
615 min((size_t)size, sizeof(fw_info))) ? -EFAULT : 0;
617 case AMDGPU_INFO_NUM_BYTES_MOVED:
618 ui64 = atomic64_read(&adev->num_bytes_moved);
619 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
620 case AMDGPU_INFO_NUM_EVICTIONS:
621 ui64 = atomic64_read(&adev->num_evictions);
622 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
623 case AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS:
624 ui64 = atomic64_read(&adev->num_vram_cpu_page_faults);
625 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
626 case AMDGPU_INFO_VRAM_USAGE:
627 ui64 = ttm_resource_manager_usage(&adev->mman.vram_mgr.manager);
628 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
629 case AMDGPU_INFO_VIS_VRAM_USAGE:
630 ui64 = amdgpu_vram_mgr_vis_usage(&adev->mman.vram_mgr);
631 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
632 case AMDGPU_INFO_GTT_USAGE:
633 ui64 = ttm_resource_manager_usage(&adev->mman.gtt_mgr.manager);
634 return copy_to_user(out, &ui64, min(size, 8u)) ? -EFAULT : 0;
635 case AMDGPU_INFO_GDS_CONFIG: {
636 struct drm_amdgpu_info_gds gds_info;
638 memset(&gds_info, 0, sizeof(gds_info));
639 gds_info.compute_partition_size = adev->gds.gds_size;
640 gds_info.gds_total_size = adev->gds.gds_size;
641 gds_info.gws_per_compute_partition = adev->gds.gws_size;
642 gds_info.oa_per_compute_partition = adev->gds.oa_size;
643 return copy_to_user(out, &gds_info,
644 min((size_t)size, sizeof(gds_info))) ? -EFAULT : 0;
646 case AMDGPU_INFO_VRAM_GTT: {
647 struct drm_amdgpu_info_vram_gtt vram_gtt;
649 vram_gtt.vram_size = adev->gmc.real_vram_size -
650 atomic64_read(&adev->vram_pin_size) -
651 AMDGPU_VM_RESERVED_VRAM;
652 vram_gtt.vram_cpu_accessible_size =
653 min(adev->gmc.visible_vram_size -
654 atomic64_read(&adev->visible_pin_size),
656 vram_gtt.gtt_size = ttm_manager_type(&adev->mman.bdev, TTM_PL_TT)->size;
657 vram_gtt.gtt_size -= atomic64_read(&adev->gart_pin_size);
658 return copy_to_user(out, &vram_gtt,
659 min((size_t)size, sizeof(vram_gtt))) ? -EFAULT : 0;
661 case AMDGPU_INFO_MEMORY: {
662 struct drm_amdgpu_memory_info mem;
663 struct ttm_resource_manager *gtt_man =
664 &adev->mman.gtt_mgr.manager;
665 struct ttm_resource_manager *vram_man =
666 &adev->mman.vram_mgr.manager;
668 memset(&mem, 0, sizeof(mem));
669 mem.vram.total_heap_size = adev->gmc.real_vram_size;
670 mem.vram.usable_heap_size = adev->gmc.real_vram_size -
671 atomic64_read(&adev->vram_pin_size) -
672 AMDGPU_VM_RESERVED_VRAM;
673 mem.vram.heap_usage =
674 ttm_resource_manager_usage(vram_man);
675 mem.vram.max_allocation = mem.vram.usable_heap_size * 3 / 4;
677 mem.cpu_accessible_vram.total_heap_size =
678 adev->gmc.visible_vram_size;
679 mem.cpu_accessible_vram.usable_heap_size =
680 min(adev->gmc.visible_vram_size -
681 atomic64_read(&adev->visible_pin_size),
682 mem.vram.usable_heap_size);
683 mem.cpu_accessible_vram.heap_usage =
684 amdgpu_vram_mgr_vis_usage(&adev->mman.vram_mgr);
685 mem.cpu_accessible_vram.max_allocation =
686 mem.cpu_accessible_vram.usable_heap_size * 3 / 4;
688 mem.gtt.total_heap_size = gtt_man->size;
689 mem.gtt.usable_heap_size = mem.gtt.total_heap_size -
690 atomic64_read(&adev->gart_pin_size);
691 mem.gtt.heap_usage = ttm_resource_manager_usage(gtt_man);
692 mem.gtt.max_allocation = mem.gtt.usable_heap_size * 3 / 4;
694 return copy_to_user(out, &mem,
695 min((size_t)size, sizeof(mem)))
698 case AMDGPU_INFO_READ_MMR_REG: {
699 unsigned n, alloc_size;
701 unsigned se_num = (info->read_mmr_reg.instance >>
702 AMDGPU_INFO_MMR_SE_INDEX_SHIFT) &
703 AMDGPU_INFO_MMR_SE_INDEX_MASK;
704 unsigned sh_num = (info->read_mmr_reg.instance >>
705 AMDGPU_INFO_MMR_SH_INDEX_SHIFT) &
706 AMDGPU_INFO_MMR_SH_INDEX_MASK;
708 /* set full masks if the userspace set all bits
709 * in the bitfields */
710 if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK)
712 else if (se_num >= AMDGPU_GFX_MAX_SE)
714 if (sh_num == AMDGPU_INFO_MMR_SH_INDEX_MASK)
716 else if (sh_num >= AMDGPU_GFX_MAX_SH_PER_SE)
719 if (info->read_mmr_reg.count > 128)
722 regs = kmalloc_array(info->read_mmr_reg.count, sizeof(*regs), GFP_KERNEL);
725 alloc_size = info->read_mmr_reg.count * sizeof(*regs);
727 amdgpu_gfx_off_ctrl(adev, false);
728 for (i = 0; i < info->read_mmr_reg.count; i++) {
729 if (amdgpu_asic_read_register(adev, se_num, sh_num,
730 info->read_mmr_reg.dword_offset + i,
732 DRM_DEBUG_KMS("unallowed offset %#x\n",
733 info->read_mmr_reg.dword_offset + i);
735 amdgpu_gfx_off_ctrl(adev, true);
739 amdgpu_gfx_off_ctrl(adev, true);
740 n = copy_to_user(out, regs, min(size, alloc_size));
742 return n ? -EFAULT : 0;
744 case AMDGPU_INFO_DEV_INFO: {
745 struct drm_amdgpu_info_device *dev_info;
749 dev_info = kzalloc(sizeof(*dev_info), GFP_KERNEL);
753 dev_info->device_id = adev->pdev->device;
754 dev_info->chip_rev = adev->rev_id;
755 dev_info->external_rev = adev->external_rev_id;
756 dev_info->pci_rev = adev->pdev->revision;
757 dev_info->family = adev->family;
758 dev_info->num_shader_engines = adev->gfx.config.max_shader_engines;
759 dev_info->num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
760 /* return all clocks in KHz */
761 dev_info->gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10;
762 if (adev->pm.dpm_enabled) {
763 dev_info->max_engine_clock = amdgpu_dpm_get_sclk(adev, false) * 10;
764 dev_info->max_memory_clock = amdgpu_dpm_get_mclk(adev, false) * 10;
766 dev_info->max_engine_clock = adev->clock.default_sclk * 10;
767 dev_info->max_memory_clock = adev->clock.default_mclk * 10;
769 dev_info->enabled_rb_pipes_mask = adev->gfx.config.backend_enable_mask;
770 dev_info->num_rb_pipes = adev->gfx.config.max_backends_per_se *
771 adev->gfx.config.max_shader_engines;
772 dev_info->num_hw_gfx_contexts = adev->gfx.config.max_hw_contexts;
774 dev_info->ids_flags = 0;
775 if (adev->flags & AMD_IS_APU)
776 dev_info->ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
777 if (amdgpu_mcbp || amdgpu_sriov_vf(adev))
778 dev_info->ids_flags |= AMDGPU_IDS_FLAGS_PREEMPTION;
779 if (amdgpu_is_tmz(adev))
780 dev_info->ids_flags |= AMDGPU_IDS_FLAGS_TMZ;
782 vm_size = adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
783 vm_size -= AMDGPU_VA_RESERVED_SIZE;
785 /* Older VCE FW versions are buggy and can handle only 40bits */
786 if (adev->vce.fw_version &&
787 adev->vce.fw_version < AMDGPU_VCE_FW_53_45)
788 vm_size = min(vm_size, 1ULL << 40);
790 dev_info->virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
791 dev_info->virtual_address_max =
792 min(vm_size, AMDGPU_GMC_HOLE_START);
794 if (vm_size > AMDGPU_GMC_HOLE_START) {
795 dev_info->high_va_offset = AMDGPU_GMC_HOLE_END;
796 dev_info->high_va_max = AMDGPU_GMC_HOLE_END | vm_size;
798 dev_info->virtual_address_alignment = max_t(u32, PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
799 dev_info->pte_fragment_size = (1 << adev->vm_manager.fragment_size) * AMDGPU_GPU_PAGE_SIZE;
800 dev_info->gart_page_size = max_t(u32, PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
801 dev_info->cu_active_number = adev->gfx.cu_info.number;
802 dev_info->cu_ao_mask = adev->gfx.cu_info.ao_cu_mask;
803 dev_info->ce_ram_size = adev->gfx.ce_ram_size;
804 memcpy(&dev_info->cu_ao_bitmap[0], &adev->gfx.cu_info.ao_cu_bitmap[0],
805 sizeof(adev->gfx.cu_info.ao_cu_bitmap));
806 memcpy(&dev_info->cu_bitmap[0], &adev->gfx.cu_info.bitmap[0],
807 sizeof(adev->gfx.cu_info.bitmap));
808 dev_info->vram_type = adev->gmc.vram_type;
809 dev_info->vram_bit_width = adev->gmc.vram_width;
810 dev_info->vce_harvest_config = adev->vce.harvest_config;
811 dev_info->gc_double_offchip_lds_buf =
812 adev->gfx.config.double_offchip_lds_buf;
813 dev_info->wave_front_size = adev->gfx.cu_info.wave_front_size;
814 dev_info->num_shader_visible_vgprs = adev->gfx.config.max_gprs;
815 dev_info->num_cu_per_sh = adev->gfx.config.max_cu_per_sh;
816 dev_info->num_tcc_blocks = adev->gfx.config.max_texture_channel_caches;
817 dev_info->gs_vgt_table_depth = adev->gfx.config.gs_vgt_table_depth;
818 dev_info->gs_prim_buffer_depth = adev->gfx.config.gs_prim_buffer_depth;
819 dev_info->max_gs_waves_per_vgt = adev->gfx.config.max_gs_threads;
821 if (adev->family >= AMDGPU_FAMILY_NV)
822 dev_info->pa_sc_tile_steering_override =
823 adev->gfx.config.pa_sc_tile_steering_override;
825 dev_info->tcc_disabled_mask = adev->gfx.config.tcc_disabled_mask;
827 ret = copy_to_user(out, dev_info,
828 min((size_t)size, sizeof(*dev_info))) ? -EFAULT : 0;
832 case AMDGPU_INFO_VCE_CLOCK_TABLE: {
834 struct drm_amdgpu_info_vce_clock_table vce_clk_table = {};
835 struct amd_vce_state *vce_state;
837 for (i = 0; i < AMDGPU_VCE_CLOCK_TABLE_ENTRIES; i++) {
838 vce_state = amdgpu_dpm_get_vce_clock_state(adev, i);
840 vce_clk_table.entries[i].sclk = vce_state->sclk;
841 vce_clk_table.entries[i].mclk = vce_state->mclk;
842 vce_clk_table.entries[i].eclk = vce_state->evclk;
843 vce_clk_table.num_valid_entries++;
847 return copy_to_user(out, &vce_clk_table,
848 min((size_t)size, sizeof(vce_clk_table))) ? -EFAULT : 0;
850 case AMDGPU_INFO_VBIOS: {
851 uint32_t bios_size = adev->bios_size;
853 switch (info->vbios_info.type) {
854 case AMDGPU_INFO_VBIOS_SIZE:
855 return copy_to_user(out, &bios_size,
856 min((size_t)size, sizeof(bios_size)))
858 case AMDGPU_INFO_VBIOS_IMAGE: {
860 uint32_t bios_offset = info->vbios_info.offset;
862 if (bios_offset >= bios_size)
865 bios = adev->bios + bios_offset;
866 return copy_to_user(out, bios,
867 min((size_t)size, (size_t)(bios_size - bios_offset)))
870 case AMDGPU_INFO_VBIOS_INFO: {
871 struct drm_amdgpu_info_vbios vbios_info = {};
872 struct atom_context *atom_context;
874 atom_context = adev->mode_info.atom_context;
875 memcpy(vbios_info.name, atom_context->name, sizeof(atom_context->name));
876 memcpy(vbios_info.vbios_pn, atom_context->vbios_pn, sizeof(atom_context->vbios_pn));
877 vbios_info.version = atom_context->version;
878 memcpy(vbios_info.vbios_ver_str, atom_context->vbios_ver_str,
879 sizeof(atom_context->vbios_ver_str));
880 memcpy(vbios_info.date, atom_context->date, sizeof(atom_context->date));
882 return copy_to_user(out, &vbios_info,
883 min((size_t)size, sizeof(vbios_info))) ? -EFAULT : 0;
886 DRM_DEBUG_KMS("Invalid request %d\n",
887 info->vbios_info.type);
891 case AMDGPU_INFO_NUM_HANDLES: {
892 struct drm_amdgpu_info_num_handles handle;
894 switch (info->query_hw_ip.type) {
895 case AMDGPU_HW_IP_UVD:
896 /* Starting Polaris, we support unlimited UVD handles */
897 if (adev->asic_type < CHIP_POLARIS10) {
898 handle.uvd_max_handles = adev->uvd.max_handles;
899 handle.uvd_used_handles = amdgpu_uvd_used_handles(adev);
901 return copy_to_user(out, &handle,
902 min((size_t)size, sizeof(handle))) ? -EFAULT : 0;
912 case AMDGPU_INFO_SENSOR: {
913 if (!adev->pm.dpm_enabled)
916 switch (info->sensor_info.type) {
917 case AMDGPU_INFO_SENSOR_GFX_SCLK:
918 /* get sclk in Mhz */
919 if (amdgpu_dpm_read_sensor(adev,
920 AMDGPU_PP_SENSOR_GFX_SCLK,
921 (void *)&ui32, &ui32_size)) {
926 case AMDGPU_INFO_SENSOR_GFX_MCLK:
927 /* get mclk in Mhz */
928 if (amdgpu_dpm_read_sensor(adev,
929 AMDGPU_PP_SENSOR_GFX_MCLK,
930 (void *)&ui32, &ui32_size)) {
935 case AMDGPU_INFO_SENSOR_GPU_TEMP:
936 /* get temperature in millidegrees C */
937 if (amdgpu_dpm_read_sensor(adev,
938 AMDGPU_PP_SENSOR_GPU_TEMP,
939 (void *)&ui32, &ui32_size)) {
943 case AMDGPU_INFO_SENSOR_GPU_LOAD:
945 if (amdgpu_dpm_read_sensor(adev,
946 AMDGPU_PP_SENSOR_GPU_LOAD,
947 (void *)&ui32, &ui32_size)) {
951 case AMDGPU_INFO_SENSOR_GPU_AVG_POWER:
952 /* get average GPU power */
953 if (amdgpu_dpm_read_sensor(adev,
954 AMDGPU_PP_SENSOR_GPU_POWER,
955 (void *)&ui32, &ui32_size)) {
960 case AMDGPU_INFO_SENSOR_VDDNB:
961 /* get VDDNB in millivolts */
962 if (amdgpu_dpm_read_sensor(adev,
963 AMDGPU_PP_SENSOR_VDDNB,
964 (void *)&ui32, &ui32_size)) {
968 case AMDGPU_INFO_SENSOR_VDDGFX:
969 /* get VDDGFX in millivolts */
970 if (amdgpu_dpm_read_sensor(adev,
971 AMDGPU_PP_SENSOR_VDDGFX,
972 (void *)&ui32, &ui32_size)) {
976 case AMDGPU_INFO_SENSOR_STABLE_PSTATE_GFX_SCLK:
977 /* get stable pstate sclk in Mhz */
978 if (amdgpu_dpm_read_sensor(adev,
979 AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK,
980 (void *)&ui32, &ui32_size)) {
985 case AMDGPU_INFO_SENSOR_STABLE_PSTATE_GFX_MCLK:
986 /* get stable pstate mclk in Mhz */
987 if (amdgpu_dpm_read_sensor(adev,
988 AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK,
989 (void *)&ui32, &ui32_size)) {
995 DRM_DEBUG_KMS("Invalid request %d\n",
996 info->sensor_info.type);
999 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
1001 case AMDGPU_INFO_VRAM_LOST_COUNTER:
1002 ui32 = atomic_read(&adev->vram_lost_counter);
1003 return copy_to_user(out, &ui32, min(size, 4u)) ? -EFAULT : 0;
1004 case AMDGPU_INFO_RAS_ENABLED_FEATURES: {
1005 struct amdgpu_ras *ras = amdgpu_ras_get_context(adev);
1010 ras_mask = (uint64_t)adev->ras_enabled << 32 | ras->features;
1012 return copy_to_user(out, &ras_mask,
1013 min_t(u64, size, sizeof(ras_mask))) ?
1016 case AMDGPU_INFO_VIDEO_CAPS: {
1017 const struct amdgpu_video_codecs *codecs;
1018 struct drm_amdgpu_info_video_caps *caps;
1021 switch (info->video_cap.type) {
1022 case AMDGPU_INFO_VIDEO_CAPS_DECODE:
1023 r = amdgpu_asic_query_video_codecs(adev, false, &codecs);
1027 case AMDGPU_INFO_VIDEO_CAPS_ENCODE:
1028 r = amdgpu_asic_query_video_codecs(adev, true, &codecs);
1033 DRM_DEBUG_KMS("Invalid request %d\n",
1034 info->video_cap.type);
1038 caps = kzalloc(sizeof(*caps), GFP_KERNEL);
1042 for (i = 0; i < codecs->codec_count; i++) {
1043 int idx = codecs->codec_array[i].codec_type;
1046 case AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_MPEG2:
1047 case AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_MPEG4:
1048 case AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_VC1:
1049 case AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_MPEG4_AVC:
1050 case AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_HEVC:
1051 case AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_JPEG:
1052 case AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_VP9:
1053 case AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_AV1:
1054 caps->codec_info[idx].valid = 1;
1055 caps->codec_info[idx].max_width =
1056 codecs->codec_array[i].max_width;
1057 caps->codec_info[idx].max_height =
1058 codecs->codec_array[i].max_height;
1059 caps->codec_info[idx].max_pixels_per_frame =
1060 codecs->codec_array[i].max_pixels_per_frame;
1061 caps->codec_info[idx].max_level =
1062 codecs->codec_array[i].max_level;
1068 r = copy_to_user(out, caps,
1069 min((size_t)size, sizeof(*caps))) ? -EFAULT : 0;
1074 DRM_DEBUG_KMS("Invalid request %d\n", info->query);
1082 * Outdated mess for old drm with Xorg being in charge (void function now).
1085 * amdgpu_driver_lastclose_kms - drm callback for last close
1087 * @dev: drm dev pointer
1089 * Switch vga_switcheroo state after last close (all asics).
1091 void amdgpu_driver_lastclose_kms(struct drm_device *dev)
1093 drm_fb_helper_lastclose(dev);
1094 vga_switcheroo_process_delayed_switch();
1098 * amdgpu_driver_open_kms - drm callback for open
1100 * @dev: drm dev pointer
1101 * @file_priv: drm file
1103 * On device open, init vm on cayman+ (all asics).
1104 * Returns 0 on success, error on failure.
1106 int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv)
1108 struct amdgpu_device *adev = drm_to_adev(dev);
1109 struct amdgpu_fpriv *fpriv;
1112 /* Ensure IB tests are run on ring */
1113 flush_delayed_work(&adev->delayed_init_work);
1116 if (amdgpu_ras_intr_triggered()) {
1117 DRM_ERROR("RAS Intr triggered, device disabled!!");
1121 file_priv->driver_priv = NULL;
1123 r = pm_runtime_get_sync(dev->dev);
1127 fpriv = kzalloc(sizeof(*fpriv), GFP_KERNEL);
1128 if (unlikely(!fpriv)) {
1133 pasid = amdgpu_pasid_alloc(16);
1135 dev_warn(adev->dev, "No more PASIDs available!");
1139 r = amdgpu_vm_init(adev, &fpriv->vm);
1143 r = amdgpu_vm_set_pasid(adev, &fpriv->vm, pasid);
1147 fpriv->prt_va = amdgpu_vm_bo_add(adev, &fpriv->vm, NULL);
1148 if (!fpriv->prt_va) {
1153 if (amdgpu_mcbp || amdgpu_sriov_vf(adev)) {
1154 uint64_t csa_addr = amdgpu_csa_vaddr(adev) & AMDGPU_GMC_HOLE_MASK;
1156 r = amdgpu_map_static_csa(adev, &fpriv->vm, adev->virt.csa_obj,
1157 &fpriv->csa_va, csa_addr, AMDGPU_CSA_SIZE);
1162 mutex_init(&fpriv->bo_list_lock);
1163 idr_init(&fpriv->bo_list_handles);
1165 amdgpu_ctx_mgr_init(&fpriv->ctx_mgr, adev);
1167 file_priv->driver_priv = fpriv;
1171 amdgpu_vm_fini(adev, &fpriv->vm);
1175 amdgpu_pasid_free(pasid);
1176 amdgpu_vm_set_pasid(adev, &fpriv->vm, 0);
1182 pm_runtime_mark_last_busy(dev->dev);
1184 pm_runtime_put_autosuspend(dev->dev);
1190 * amdgpu_driver_postclose_kms - drm callback for post close
1192 * @dev: drm dev pointer
1193 * @file_priv: drm file
1195 * On device post close, tear down vm on cayman+ (all asics).
1197 void amdgpu_driver_postclose_kms(struct drm_device *dev,
1198 struct drm_file *file_priv)
1200 struct amdgpu_device *adev = drm_to_adev(dev);
1201 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
1202 struct amdgpu_bo_list *list;
1203 struct amdgpu_bo *pd;
1210 pm_runtime_get_sync(dev->dev);
1212 if (amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_UVD) != NULL)
1213 amdgpu_uvd_free_handles(adev, file_priv);
1214 if (amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_VCE) != NULL)
1215 amdgpu_vce_free_handles(adev, file_priv);
1217 if (amdgpu_mcbp || amdgpu_sriov_vf(adev)) {
1218 /* TODO: how to handle reserve failure */
1219 BUG_ON(amdgpu_bo_reserve(adev->virt.csa_obj, true));
1220 amdgpu_vm_bo_del(adev, fpriv->csa_va);
1221 fpriv->csa_va = NULL;
1222 amdgpu_bo_unreserve(adev->virt.csa_obj);
1225 pasid = fpriv->vm.pasid;
1226 pd = amdgpu_bo_ref(fpriv->vm.root.bo);
1227 if (!WARN_ON(amdgpu_bo_reserve(pd, true))) {
1228 amdgpu_vm_bo_del(adev, fpriv->prt_va);
1229 amdgpu_bo_unreserve(pd);
1232 amdgpu_ctx_mgr_fini(&fpriv->ctx_mgr);
1233 amdgpu_vm_fini(adev, &fpriv->vm);
1236 amdgpu_pasid_free_delayed(pd->tbo.base.resv, pasid);
1237 amdgpu_bo_unref(&pd);
1239 idr_for_each_entry(&fpriv->bo_list_handles, list, handle)
1240 amdgpu_bo_list_put(list);
1242 idr_destroy(&fpriv->bo_list_handles);
1243 mutex_destroy(&fpriv->bo_list_lock);
1246 file_priv->driver_priv = NULL;
1248 pm_runtime_mark_last_busy(dev->dev);
1249 pm_runtime_put_autosuspend(dev->dev);
1253 void amdgpu_driver_release_kms(struct drm_device *dev)
1255 struct amdgpu_device *adev = drm_to_adev(dev);
1257 amdgpu_device_fini_sw(adev);
1258 pci_set_drvdata(adev->pdev, NULL);
1262 * VBlank related functions.
1265 * amdgpu_get_vblank_counter_kms - get frame count
1267 * @crtc: crtc to get the frame count from
1269 * Gets the frame count on the requested crtc (all asics).
1270 * Returns frame count on success, -EINVAL on failure.
1272 u32 amdgpu_get_vblank_counter_kms(struct drm_crtc *crtc)
1274 struct drm_device *dev = crtc->dev;
1275 unsigned int pipe = crtc->index;
1276 struct amdgpu_device *adev = drm_to_adev(dev);
1277 int vpos, hpos, stat;
1280 if (pipe >= adev->mode_info.num_crtc) {
1281 DRM_ERROR("Invalid crtc %u\n", pipe);
1285 /* The hw increments its frame counter at start of vsync, not at start
1286 * of vblank, as is required by DRM core vblank counter handling.
1287 * Cook the hw count here to make it appear to the caller as if it
1288 * incremented at start of vblank. We measure distance to start of
1289 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
1290 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
1291 * result by 1 to give the proper appearance to caller.
1293 if (adev->mode_info.crtcs[pipe]) {
1294 /* Repeat readout if needed to provide stable result if
1295 * we cross start of vsync during the queries.
1298 count = amdgpu_display_vblank_get_counter(adev, pipe);
1299 /* Ask amdgpu_display_get_crtc_scanoutpos to return
1300 * vpos as distance to start of vblank, instead of
1301 * regular vertical scanout pos.
1303 stat = amdgpu_display_get_crtc_scanoutpos(
1304 dev, pipe, GET_DISTANCE_TO_VBLANKSTART,
1305 &vpos, &hpos, NULL, NULL,
1306 &adev->mode_info.crtcs[pipe]->base.hwmode);
1307 } while (count != amdgpu_display_vblank_get_counter(adev, pipe));
1309 if (((stat & (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE)) !=
1310 (DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE))) {
1311 DRM_DEBUG_VBL("Query failed! stat %d\n", stat);
1313 DRM_DEBUG_VBL("crtc %d: dist from vblank start %d\n",
1316 /* Bump counter if we are at >= leading edge of vblank,
1317 * but before vsync where vpos would turn negative and
1318 * the hw counter really increments.
1324 /* Fallback to use value as is. */
1325 count = amdgpu_display_vblank_get_counter(adev, pipe);
1326 DRM_DEBUG_VBL("NULL mode info! Returned count may be wrong.\n");
1333 * amdgpu_enable_vblank_kms - enable vblank interrupt
1335 * @crtc: crtc to enable vblank interrupt for
1337 * Enable the interrupt on the requested crtc (all asics).
1338 * Returns 0 on success, -EINVAL on failure.
1340 int amdgpu_enable_vblank_kms(struct drm_crtc *crtc)
1342 struct drm_device *dev = crtc->dev;
1343 unsigned int pipe = crtc->index;
1344 struct amdgpu_device *adev = drm_to_adev(dev);
1345 int idx = amdgpu_display_crtc_idx_to_irq_type(adev, pipe);
1347 return amdgpu_irq_get(adev, &adev->crtc_irq, idx);
1351 * amdgpu_disable_vblank_kms - disable vblank interrupt
1353 * @crtc: crtc to disable vblank interrupt for
1355 * Disable the interrupt on the requested crtc (all asics).
1357 void amdgpu_disable_vblank_kms(struct drm_crtc *crtc)
1359 struct drm_device *dev = crtc->dev;
1360 unsigned int pipe = crtc->index;
1361 struct amdgpu_device *adev = drm_to_adev(dev);
1362 int idx = amdgpu_display_crtc_idx_to_irq_type(adev, pipe);
1364 amdgpu_irq_put(adev, &adev->crtc_irq, idx);
1370 #if defined(CONFIG_DEBUG_FS)
1372 static int amdgpu_debugfs_firmware_info_show(struct seq_file *m, void *unused)
1374 struct amdgpu_device *adev = (struct amdgpu_device *)m->private;
1375 struct drm_amdgpu_info_firmware fw_info;
1376 struct drm_amdgpu_query_fw query_fw;
1377 struct atom_context *ctx = adev->mode_info.atom_context;
1378 uint8_t smu_program, smu_major, smu_minor, smu_debug;
1381 static const char *ta_fw_name[TA_FW_TYPE_MAX_INDEX] = {
1382 #define TA_FW_NAME(type) [TA_FW_TYPE_PSP_##type] = #type
1388 TA_FW_NAME(SECUREDISPLAY),
1393 query_fw.fw_type = AMDGPU_INFO_FW_VCE;
1394 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1397 seq_printf(m, "VCE feature version: %u, firmware version: 0x%08x\n",
1398 fw_info.feature, fw_info.ver);
1401 query_fw.fw_type = AMDGPU_INFO_FW_UVD;
1402 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1405 seq_printf(m, "UVD feature version: %u, firmware version: 0x%08x\n",
1406 fw_info.feature, fw_info.ver);
1409 query_fw.fw_type = AMDGPU_INFO_FW_GMC;
1410 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1413 seq_printf(m, "MC feature version: %u, firmware version: 0x%08x\n",
1414 fw_info.feature, fw_info.ver);
1417 query_fw.fw_type = AMDGPU_INFO_FW_GFX_ME;
1418 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1421 seq_printf(m, "ME feature version: %u, firmware version: 0x%08x\n",
1422 fw_info.feature, fw_info.ver);
1425 query_fw.fw_type = AMDGPU_INFO_FW_GFX_PFP;
1426 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1429 seq_printf(m, "PFP feature version: %u, firmware version: 0x%08x\n",
1430 fw_info.feature, fw_info.ver);
1433 query_fw.fw_type = AMDGPU_INFO_FW_GFX_CE;
1434 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1437 seq_printf(m, "CE feature version: %u, firmware version: 0x%08x\n",
1438 fw_info.feature, fw_info.ver);
1441 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC;
1442 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1445 seq_printf(m, "RLC feature version: %u, firmware version: 0x%08x\n",
1446 fw_info.feature, fw_info.ver);
1448 /* RLC SAVE RESTORE LIST CNTL */
1449 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_CNTL;
1450 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1453 seq_printf(m, "RLC SRLC feature version: %u, firmware version: 0x%08x\n",
1454 fw_info.feature, fw_info.ver);
1456 /* RLC SAVE RESTORE LIST GPM MEM */
1457 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_GPM_MEM;
1458 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1461 seq_printf(m, "RLC SRLG feature version: %u, firmware version: 0x%08x\n",
1462 fw_info.feature, fw_info.ver);
1464 /* RLC SAVE RESTORE LIST SRM MEM */
1465 query_fw.fw_type = AMDGPU_INFO_FW_GFX_RLC_RESTORE_LIST_SRM_MEM;
1466 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1469 seq_printf(m, "RLC SRLS feature version: %u, firmware version: 0x%08x\n",
1470 fw_info.feature, fw_info.ver);
1473 query_fw.fw_type = AMDGPU_INFO_FW_GFX_MEC;
1475 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1478 seq_printf(m, "MEC feature version: %u, firmware version: 0x%08x\n",
1479 fw_info.feature, fw_info.ver);
1482 if (adev->gfx.mec2_fw) {
1484 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1487 seq_printf(m, "MEC2 feature version: %u, firmware version: 0x%08x\n",
1488 fw_info.feature, fw_info.ver);
1492 query_fw.fw_type = AMDGPU_INFO_FW_SOS;
1493 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1496 seq_printf(m, "SOS feature version: %u, firmware version: 0x%08x\n",
1497 fw_info.feature, fw_info.ver);
1501 query_fw.fw_type = AMDGPU_INFO_FW_ASD;
1502 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1505 seq_printf(m, "ASD feature version: %u, firmware version: 0x%08x\n",
1506 fw_info.feature, fw_info.ver);
1508 query_fw.fw_type = AMDGPU_INFO_FW_TA;
1509 for (i = TA_FW_TYPE_PSP_XGMI; i < TA_FW_TYPE_MAX_INDEX; i++) {
1511 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1515 seq_printf(m, "TA %s feature version: 0x%08x, firmware version: 0x%08x\n",
1516 ta_fw_name[i], fw_info.feature, fw_info.ver);
1520 query_fw.fw_type = AMDGPU_INFO_FW_SMC;
1521 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1524 smu_program = (fw_info.ver >> 24) & 0xff;
1525 smu_major = (fw_info.ver >> 16) & 0xff;
1526 smu_minor = (fw_info.ver >> 8) & 0xff;
1527 smu_debug = (fw_info.ver >> 0) & 0xff;
1528 seq_printf(m, "SMC feature version: %u, program: %d, firmware version: 0x%08x (%d.%d.%d)\n",
1529 fw_info.feature, smu_program, fw_info.ver, smu_major, smu_minor, smu_debug);
1532 query_fw.fw_type = AMDGPU_INFO_FW_SDMA;
1533 for (i = 0; i < adev->sdma.num_instances; i++) {
1535 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1538 seq_printf(m, "SDMA%d feature version: %u, firmware version: 0x%08x\n",
1539 i, fw_info.feature, fw_info.ver);
1543 query_fw.fw_type = AMDGPU_INFO_FW_VCN;
1544 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1547 seq_printf(m, "VCN feature version: %u, firmware version: 0x%08x\n",
1548 fw_info.feature, fw_info.ver);
1551 query_fw.fw_type = AMDGPU_INFO_FW_DMCU;
1552 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1555 seq_printf(m, "DMCU feature version: %u, firmware version: 0x%08x\n",
1556 fw_info.feature, fw_info.ver);
1559 query_fw.fw_type = AMDGPU_INFO_FW_DMCUB;
1560 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1563 seq_printf(m, "DMCUB feature version: %u, firmware version: 0x%08x\n",
1564 fw_info.feature, fw_info.ver);
1567 query_fw.fw_type = AMDGPU_INFO_FW_TOC;
1568 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1571 seq_printf(m, "TOC feature version: %u, firmware version: 0x%08x\n",
1572 fw_info.feature, fw_info.ver);
1575 if (adev->psp.cap_fw) {
1576 query_fw.fw_type = AMDGPU_INFO_FW_CAP;
1577 ret = amdgpu_firmware_info(&fw_info, &query_fw, adev);
1580 seq_printf(m, "CAP feature version: %u, firmware version: 0x%08x\n",
1581 fw_info.feature, fw_info.ver);
1584 seq_printf(m, "VBIOS version: %s\n", ctx->vbios_version);
1589 DEFINE_SHOW_ATTRIBUTE(amdgpu_debugfs_firmware_info);
1593 void amdgpu_debugfs_firmware_init(struct amdgpu_device *adev)
1595 #if defined(CONFIG_DEBUG_FS)
1596 struct drm_minor *minor = adev_to_drm(adev)->primary;
1597 struct dentry *root = minor->debugfs_root;
1599 debugfs_create_file("amdgpu_firmware_info", 0444, root,
1600 adev, &amdgpu_debugfs_firmware_info_fops);