2 * Copyright 2016 Advanced Micro Devices, Inc.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
27 #include <linux/firmware.h>
28 #include <linux/module.h>
29 #include <linux/dmi.h>
30 #include <linux/pci.h>
31 #include <linux/debugfs.h>
32 #include <drm/drm_drv.h>
35 #include "amdgpu_pm.h"
36 #include "amdgpu_vcn.h"
40 #define FIRMWARE_RAVEN "amdgpu/raven_vcn.bin"
41 #define FIRMWARE_PICASSO "amdgpu/picasso_vcn.bin"
42 #define FIRMWARE_RAVEN2 "amdgpu/raven2_vcn.bin"
43 #define FIRMWARE_ARCTURUS "amdgpu/arcturus_vcn.bin"
44 #define FIRMWARE_RENOIR "amdgpu/renoir_vcn.bin"
45 #define FIRMWARE_GREEN_SARDINE "amdgpu/green_sardine_vcn.bin"
46 #define FIRMWARE_NAVI10 "amdgpu/navi10_vcn.bin"
47 #define FIRMWARE_NAVI14 "amdgpu/navi14_vcn.bin"
48 #define FIRMWARE_NAVI12 "amdgpu/navi12_vcn.bin"
49 #define FIRMWARE_SIENNA_CICHLID "amdgpu/sienna_cichlid_vcn.bin"
50 #define FIRMWARE_NAVY_FLOUNDER "amdgpu/navy_flounder_vcn.bin"
51 #define FIRMWARE_VANGOGH "amdgpu/vangogh_vcn.bin"
52 #define FIRMWARE_DIMGREY_CAVEFISH "amdgpu/dimgrey_cavefish_vcn.bin"
53 #define FIRMWARE_ALDEBARAN "amdgpu/aldebaran_vcn.bin"
54 #define FIRMWARE_BEIGE_GOBY "amdgpu/beige_goby_vcn.bin"
55 #define FIRMWARE_YELLOW_CARP "amdgpu/yellow_carp_vcn.bin"
56 #define FIRMWARE_VCN_3_1_2 "amdgpu/vcn_3_1_2.bin"
57 #define FIRMWARE_VCN4_0_0 "amdgpu/vcn_4_0_0.bin"
58 #define FIRMWARE_VCN4_0_2 "amdgpu/vcn_4_0_2.bin"
59 #define FIRMWARE_VCN4_0_3 "amdgpu/vcn_4_0_3.bin"
60 #define FIRMWARE_VCN4_0_4 "amdgpu/vcn_4_0_4.bin"
62 MODULE_FIRMWARE(FIRMWARE_RAVEN);
63 MODULE_FIRMWARE(FIRMWARE_PICASSO);
64 MODULE_FIRMWARE(FIRMWARE_RAVEN2);
65 MODULE_FIRMWARE(FIRMWARE_ARCTURUS);
66 MODULE_FIRMWARE(FIRMWARE_RENOIR);
67 MODULE_FIRMWARE(FIRMWARE_GREEN_SARDINE);
68 MODULE_FIRMWARE(FIRMWARE_ALDEBARAN);
69 MODULE_FIRMWARE(FIRMWARE_NAVI10);
70 MODULE_FIRMWARE(FIRMWARE_NAVI14);
71 MODULE_FIRMWARE(FIRMWARE_NAVI12);
72 MODULE_FIRMWARE(FIRMWARE_SIENNA_CICHLID);
73 MODULE_FIRMWARE(FIRMWARE_NAVY_FLOUNDER);
74 MODULE_FIRMWARE(FIRMWARE_VANGOGH);
75 MODULE_FIRMWARE(FIRMWARE_DIMGREY_CAVEFISH);
76 MODULE_FIRMWARE(FIRMWARE_BEIGE_GOBY);
77 MODULE_FIRMWARE(FIRMWARE_YELLOW_CARP);
78 MODULE_FIRMWARE(FIRMWARE_VCN_3_1_2);
79 MODULE_FIRMWARE(FIRMWARE_VCN4_0_0);
80 MODULE_FIRMWARE(FIRMWARE_VCN4_0_2);
81 MODULE_FIRMWARE(FIRMWARE_VCN4_0_3);
82 MODULE_FIRMWARE(FIRMWARE_VCN4_0_4);
84 static void amdgpu_vcn_idle_work_handler(struct work_struct *work);
86 int amdgpu_vcn_early_init(struct amdgpu_device *adev)
88 char ucode_prefix[30];
92 amdgpu_ucode_ip_version_decode(adev, UVD_HWIP, ucode_prefix, sizeof(ucode_prefix));
93 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s.bin", ucode_prefix);
94 r = amdgpu_ucode_request(adev, &adev->vcn.fw, fw_name);
96 amdgpu_ucode_release(&adev->vcn.fw);
101 int amdgpu_vcn_sw_init(struct amdgpu_device *adev)
103 unsigned long bo_size;
104 const struct common_firmware_header *hdr;
105 unsigned char fw_check;
106 unsigned int fw_shared_size, log_offset;
109 INIT_DELAYED_WORK(&adev->vcn.idle_work, amdgpu_vcn_idle_work_handler);
110 mutex_init(&adev->vcn.vcn_pg_lock);
111 mutex_init(&adev->vcn.vcn1_jpeg1_workaround);
112 atomic_set(&adev->vcn.total_submission_cnt, 0);
113 for (i = 0; i < adev->vcn.num_vcn_inst; i++)
114 atomic_set(&adev->vcn.inst[i].dpg_enc_submission_cnt, 0);
116 if ((adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) &&
117 (adev->pg_flags & AMD_PG_SUPPORT_VCN_DPG))
118 adev->vcn.indirect_sram = true;
121 * Some Steam Deck's BIOS versions are incompatible with the
122 * indirect SRAM mode, leading to amdgpu being unable to get
123 * properly probed (and even potentially crashing the kernel).
124 * Hence, check for these versions here - notice this is
125 * restricted to Vangogh (Deck's APU).
127 if (adev->ip_versions[UVD_HWIP][0] == IP_VERSION(3, 0, 2)) {
128 const char *bios_ver = dmi_get_system_info(DMI_BIOS_VERSION);
130 if (bios_ver && (!strncmp("F7A0113", bios_ver, 7) ||
131 !strncmp("F7A0114", bios_ver, 7))) {
132 adev->vcn.indirect_sram = false;
134 "Steam Deck quirk: indirect SRAM disabled on BIOS %s\n", bios_ver);
138 hdr = (const struct common_firmware_header *)adev->vcn.fw->data;
139 adev->vcn.fw_version = le32_to_cpu(hdr->ucode_version);
141 /* Bit 20-23, it is encode major and non-zero for new naming convention.
142 * This field is part of version minor and DRM_DISABLED_FLAG in old naming
143 * convention. Since the l:wq!atest version minor is 0x5B and DRM_DISABLED_FLAG
144 * is zero in old naming convention, this field is always zero so far.
145 * These four bits are used to tell which naming convention is present.
147 fw_check = (le32_to_cpu(hdr->ucode_version) >> 20) & 0xf;
149 unsigned int dec_ver, enc_major, enc_minor, vep, fw_rev;
151 fw_rev = le32_to_cpu(hdr->ucode_version) & 0xfff;
152 enc_minor = (le32_to_cpu(hdr->ucode_version) >> 12) & 0xff;
153 enc_major = fw_check;
154 dec_ver = (le32_to_cpu(hdr->ucode_version) >> 24) & 0xf;
155 vep = (le32_to_cpu(hdr->ucode_version) >> 28) & 0xf;
156 DRM_INFO("Found VCN firmware Version ENC: %u.%u DEC: %u VEP: %u Revision: %u\n",
157 enc_major, enc_minor, dec_ver, vep, fw_rev);
159 unsigned int version_major, version_minor, family_id;
161 family_id = le32_to_cpu(hdr->ucode_version) & 0xff;
162 version_major = (le32_to_cpu(hdr->ucode_version) >> 24) & 0xff;
163 version_minor = (le32_to_cpu(hdr->ucode_version) >> 8) & 0xff;
164 DRM_INFO("Found VCN firmware Version: %u.%u Family ID: %u\n",
165 version_major, version_minor, family_id);
168 bo_size = AMDGPU_VCN_STACK_SIZE + AMDGPU_VCN_CONTEXT_SIZE;
169 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
170 bo_size += AMDGPU_GPU_PAGE_ALIGN(le32_to_cpu(hdr->ucode_size_bytes) + 8);
172 if (adev->ip_versions[UVD_HWIP][0] >= IP_VERSION(4, 0, 0)) {
173 fw_shared_size = AMDGPU_GPU_PAGE_ALIGN(sizeof(struct amdgpu_vcn4_fw_shared));
174 log_offset = offsetof(struct amdgpu_vcn4_fw_shared, fw_log);
176 fw_shared_size = AMDGPU_GPU_PAGE_ALIGN(sizeof(struct amdgpu_fw_shared));
177 log_offset = offsetof(struct amdgpu_fw_shared, fw_log);
180 bo_size += fw_shared_size;
182 if (amdgpu_vcnfw_log)
183 bo_size += AMDGPU_VCNFW_LOG_SIZE;
185 for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
186 if (adev->vcn.harvest_config & (1 << i))
189 r = amdgpu_bo_create_kernel(adev, bo_size, PAGE_SIZE,
190 AMDGPU_GEM_DOMAIN_VRAM |
191 AMDGPU_GEM_DOMAIN_GTT,
192 &adev->vcn.inst[i].vcpu_bo,
193 &adev->vcn.inst[i].gpu_addr,
194 &adev->vcn.inst[i].cpu_addr);
196 dev_err(adev->dev, "(%d) failed to allocate vcn bo\n", r);
200 adev->vcn.inst[i].fw_shared.cpu_addr = adev->vcn.inst[i].cpu_addr +
201 bo_size - fw_shared_size;
202 adev->vcn.inst[i].fw_shared.gpu_addr = adev->vcn.inst[i].gpu_addr +
203 bo_size - fw_shared_size;
205 adev->vcn.inst[i].fw_shared.mem_size = fw_shared_size;
207 if (amdgpu_vcnfw_log) {
208 adev->vcn.inst[i].fw_shared.cpu_addr -= AMDGPU_VCNFW_LOG_SIZE;
209 adev->vcn.inst[i].fw_shared.gpu_addr -= AMDGPU_VCNFW_LOG_SIZE;
210 adev->vcn.inst[i].fw_shared.log_offset = log_offset;
213 if (adev->vcn.indirect_sram) {
214 r = amdgpu_bo_create_kernel(adev, 64 * 2 * 4, PAGE_SIZE,
215 AMDGPU_GEM_DOMAIN_VRAM |
216 AMDGPU_GEM_DOMAIN_GTT,
217 &adev->vcn.inst[i].dpg_sram_bo,
218 &adev->vcn.inst[i].dpg_sram_gpu_addr,
219 &adev->vcn.inst[i].dpg_sram_cpu_addr);
221 dev_err(adev->dev, "VCN %d (%d) failed to allocate DPG bo\n", i, r);
230 int amdgpu_vcn_sw_fini(struct amdgpu_device *adev)
234 for (j = 0; j < adev->vcn.num_vcn_inst; ++j) {
235 if (adev->vcn.harvest_config & (1 << j))
238 amdgpu_bo_free_kernel(
239 &adev->vcn.inst[j].dpg_sram_bo,
240 &adev->vcn.inst[j].dpg_sram_gpu_addr,
241 (void **)&adev->vcn.inst[j].dpg_sram_cpu_addr);
243 kvfree(adev->vcn.inst[j].saved_bo);
245 amdgpu_bo_free_kernel(&adev->vcn.inst[j].vcpu_bo,
246 &adev->vcn.inst[j].gpu_addr,
247 (void **)&adev->vcn.inst[j].cpu_addr);
249 amdgpu_ring_fini(&adev->vcn.inst[j].ring_dec);
251 for (i = 0; i < adev->vcn.num_enc_rings; ++i)
252 amdgpu_ring_fini(&adev->vcn.inst[j].ring_enc[i]);
255 amdgpu_ucode_release(&adev->vcn.fw);
256 mutex_destroy(&adev->vcn.vcn1_jpeg1_workaround);
257 mutex_destroy(&adev->vcn.vcn_pg_lock);
262 /* from vcn4 and above, only unified queue is used */
263 static bool amdgpu_vcn_using_unified_queue(struct amdgpu_ring *ring)
265 struct amdgpu_device *adev = ring->adev;
268 if (adev->ip_versions[UVD_HWIP][0] >= IP_VERSION(4, 0, 0))
274 bool amdgpu_vcn_is_disabled_vcn(struct amdgpu_device *adev, enum vcn_ring_type type, uint32_t vcn_instance)
277 int vcn_config = adev->vcn.vcn_config[vcn_instance];
279 if ((type == VCN_ENCODE_RING) && (vcn_config & VCN_BLOCK_ENCODE_DISABLE_MASK))
281 else if ((type == VCN_DECODE_RING) && (vcn_config & VCN_BLOCK_DECODE_DISABLE_MASK))
283 else if ((type == VCN_UNIFIED_RING) && (vcn_config & VCN_BLOCK_QUEUE_DISABLE_MASK))
289 int amdgpu_vcn_suspend(struct amdgpu_device *adev)
295 cancel_delayed_work_sync(&adev->vcn.idle_work);
297 for (i = 0; i < adev->vcn.num_vcn_inst; ++i) {
298 if (adev->vcn.harvest_config & (1 << i))
300 if (adev->vcn.inst[i].vcpu_bo == NULL)
303 size = amdgpu_bo_size(adev->vcn.inst[i].vcpu_bo);
304 ptr = adev->vcn.inst[i].cpu_addr;
306 adev->vcn.inst[i].saved_bo = kvmalloc(size, GFP_KERNEL);
307 if (!adev->vcn.inst[i].saved_bo)
310 if (drm_dev_enter(adev_to_drm(adev), &idx)) {
311 memcpy_fromio(adev->vcn.inst[i].saved_bo, ptr, size);
318 int amdgpu_vcn_resume(struct amdgpu_device *adev)
324 for (i = 0; i < adev->vcn.num_vcn_inst; ++i) {
325 if (adev->vcn.harvest_config & (1 << i))
327 if (adev->vcn.inst[i].vcpu_bo == NULL)
330 size = amdgpu_bo_size(adev->vcn.inst[i].vcpu_bo);
331 ptr = adev->vcn.inst[i].cpu_addr;
333 if (adev->vcn.inst[i].saved_bo != NULL) {
334 if (drm_dev_enter(adev_to_drm(adev), &idx)) {
335 memcpy_toio(ptr, adev->vcn.inst[i].saved_bo, size);
338 kvfree(adev->vcn.inst[i].saved_bo);
339 adev->vcn.inst[i].saved_bo = NULL;
341 const struct common_firmware_header *hdr;
344 hdr = (const struct common_firmware_header *)adev->vcn.fw->data;
345 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
346 offset = le32_to_cpu(hdr->ucode_array_offset_bytes);
347 if (drm_dev_enter(adev_to_drm(adev), &idx)) {
348 memcpy_toio(adev->vcn.inst[i].cpu_addr, adev->vcn.fw->data + offset,
349 le32_to_cpu(hdr->ucode_size_bytes));
352 size -= le32_to_cpu(hdr->ucode_size_bytes);
353 ptr += le32_to_cpu(hdr->ucode_size_bytes);
355 memset_io(ptr, 0, size);
361 static void amdgpu_vcn_idle_work_handler(struct work_struct *work)
363 struct amdgpu_device *adev =
364 container_of(work, struct amdgpu_device, vcn.idle_work.work);
365 unsigned int fences = 0, fence[AMDGPU_MAX_VCN_INSTANCES] = {0};
369 for (j = 0; j < adev->vcn.num_vcn_inst; ++j) {
370 if (adev->vcn.harvest_config & (1 << j))
373 for (i = 0; i < adev->vcn.num_enc_rings; ++i)
374 fence[j] += amdgpu_fence_count_emitted(&adev->vcn.inst[j].ring_enc[i]);
376 if (adev->pg_flags & AMD_PG_SUPPORT_VCN_DPG) {
377 struct dpg_pause_state new_state;
380 unlikely(atomic_read(&adev->vcn.inst[j].dpg_enc_submission_cnt)))
381 new_state.fw_based = VCN_DPG_STATE__PAUSE;
383 new_state.fw_based = VCN_DPG_STATE__UNPAUSE;
385 adev->vcn.pause_dpg_mode(adev, j, &new_state);
388 fence[j] += amdgpu_fence_count_emitted(&adev->vcn.inst[j].ring_dec);
392 if (!fences && !atomic_read(&adev->vcn.total_submission_cnt)) {
393 amdgpu_device_ip_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCN,
395 r = amdgpu_dpm_switch_power_profile(adev, PP_SMC_POWER_PROFILE_VIDEO,
398 dev_warn(adev->dev, "(%d) failed to disable video power profile mode\n", r);
400 schedule_delayed_work(&adev->vcn.idle_work, VCN_IDLE_TIMEOUT);
404 void amdgpu_vcn_ring_begin_use(struct amdgpu_ring *ring)
406 struct amdgpu_device *adev = ring->adev;
409 atomic_inc(&adev->vcn.total_submission_cnt);
411 if (!cancel_delayed_work_sync(&adev->vcn.idle_work)) {
412 r = amdgpu_dpm_switch_power_profile(adev, PP_SMC_POWER_PROFILE_VIDEO,
415 dev_warn(adev->dev, "(%d) failed to switch to video power profile mode\n", r);
418 mutex_lock(&adev->vcn.vcn_pg_lock);
419 amdgpu_device_ip_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCN,
420 AMD_PG_STATE_UNGATE);
422 if (adev->pg_flags & AMD_PG_SUPPORT_VCN_DPG) {
423 struct dpg_pause_state new_state;
425 if (ring->funcs->type == AMDGPU_RING_TYPE_VCN_ENC) {
426 atomic_inc(&adev->vcn.inst[ring->me].dpg_enc_submission_cnt);
427 new_state.fw_based = VCN_DPG_STATE__PAUSE;
429 unsigned int fences = 0;
432 for (i = 0; i < adev->vcn.num_enc_rings; ++i)
433 fences += amdgpu_fence_count_emitted(&adev->vcn.inst[ring->me].ring_enc[i]);
435 if (fences || atomic_read(&adev->vcn.inst[ring->me].dpg_enc_submission_cnt))
436 new_state.fw_based = VCN_DPG_STATE__PAUSE;
438 new_state.fw_based = VCN_DPG_STATE__UNPAUSE;
441 adev->vcn.pause_dpg_mode(adev, ring->me, &new_state);
443 mutex_unlock(&adev->vcn.vcn_pg_lock);
446 void amdgpu_vcn_ring_end_use(struct amdgpu_ring *ring)
448 if (ring->adev->pg_flags & AMD_PG_SUPPORT_VCN_DPG &&
449 ring->funcs->type == AMDGPU_RING_TYPE_VCN_ENC)
450 atomic_dec(&ring->adev->vcn.inst[ring->me].dpg_enc_submission_cnt);
452 atomic_dec(&ring->adev->vcn.total_submission_cnt);
454 schedule_delayed_work(&ring->adev->vcn.idle_work, VCN_IDLE_TIMEOUT);
457 int amdgpu_vcn_dec_ring_test_ring(struct amdgpu_ring *ring)
459 struct amdgpu_device *adev = ring->adev;
464 /* VCN in SRIOV does not support direct register read/write */
465 if (amdgpu_sriov_vf(adev))
468 WREG32(adev->vcn.inst[ring->me].external.scratch9, 0xCAFEDEAD);
469 r = amdgpu_ring_alloc(ring, 3);
472 amdgpu_ring_write(ring, PACKET0(adev->vcn.internal.scratch9, 0));
473 amdgpu_ring_write(ring, 0xDEADBEEF);
474 amdgpu_ring_commit(ring);
475 for (i = 0; i < adev->usec_timeout; i++) {
476 tmp = RREG32(adev->vcn.inst[ring->me].external.scratch9);
477 if (tmp == 0xDEADBEEF)
482 if (i >= adev->usec_timeout)
488 int amdgpu_vcn_dec_sw_ring_test_ring(struct amdgpu_ring *ring)
490 struct amdgpu_device *adev = ring->adev;
495 if (amdgpu_sriov_vf(adev))
498 r = amdgpu_ring_alloc(ring, 16);
502 rptr = amdgpu_ring_get_rptr(ring);
504 amdgpu_ring_write(ring, VCN_DEC_SW_CMD_END);
505 amdgpu_ring_commit(ring);
507 for (i = 0; i < adev->usec_timeout; i++) {
508 if (amdgpu_ring_get_rptr(ring) != rptr)
513 if (i >= adev->usec_timeout)
519 static int amdgpu_vcn_dec_send_msg(struct amdgpu_ring *ring,
520 struct amdgpu_ib *ib_msg,
521 struct dma_fence **fence)
523 u64 addr = AMDGPU_GPU_PAGE_ALIGN(ib_msg->gpu_addr);
524 struct amdgpu_device *adev = ring->adev;
525 struct dma_fence *f = NULL;
526 struct amdgpu_job *job;
527 struct amdgpu_ib *ib;
530 r = amdgpu_job_alloc_with_ib(ring->adev, NULL, NULL,
531 64, AMDGPU_IB_POOL_DIRECT,
537 ib->ptr[0] = PACKET0(adev->vcn.internal.data0, 0);
539 ib->ptr[2] = PACKET0(adev->vcn.internal.data1, 0);
540 ib->ptr[3] = addr >> 32;
541 ib->ptr[4] = PACKET0(adev->vcn.internal.cmd, 0);
543 for (i = 6; i < 16; i += 2) {
544 ib->ptr[i] = PACKET0(adev->vcn.internal.nop, 0);
549 r = amdgpu_job_submit_direct(job, ring, &f);
553 amdgpu_ib_free(adev, ib_msg, f);
556 *fence = dma_fence_get(f);
562 amdgpu_job_free(job);
564 amdgpu_ib_free(adev, ib_msg, f);
568 static int amdgpu_vcn_dec_get_create_msg(struct amdgpu_ring *ring, uint32_t handle,
569 struct amdgpu_ib *ib)
571 struct amdgpu_device *adev = ring->adev;
575 memset(ib, 0, sizeof(*ib));
576 r = amdgpu_ib_get(adev, NULL, AMDGPU_GPU_PAGE_SIZE * 2,
577 AMDGPU_IB_POOL_DIRECT,
582 msg = (uint32_t *)AMDGPU_GPU_PAGE_ALIGN((unsigned long)ib->ptr);
583 msg[0] = cpu_to_le32(0x00000028);
584 msg[1] = cpu_to_le32(0x00000038);
585 msg[2] = cpu_to_le32(0x00000001);
586 msg[3] = cpu_to_le32(0x00000000);
587 msg[4] = cpu_to_le32(handle);
588 msg[5] = cpu_to_le32(0x00000000);
589 msg[6] = cpu_to_le32(0x00000001);
590 msg[7] = cpu_to_le32(0x00000028);
591 msg[8] = cpu_to_le32(0x00000010);
592 msg[9] = cpu_to_le32(0x00000000);
593 msg[10] = cpu_to_le32(0x00000007);
594 msg[11] = cpu_to_le32(0x00000000);
595 msg[12] = cpu_to_le32(0x00000780);
596 msg[13] = cpu_to_le32(0x00000440);
597 for (i = 14; i < 1024; ++i)
598 msg[i] = cpu_to_le32(0x0);
603 static int amdgpu_vcn_dec_get_destroy_msg(struct amdgpu_ring *ring, uint32_t handle,
604 struct amdgpu_ib *ib)
606 struct amdgpu_device *adev = ring->adev;
610 memset(ib, 0, sizeof(*ib));
611 r = amdgpu_ib_get(adev, NULL, AMDGPU_GPU_PAGE_SIZE * 2,
612 AMDGPU_IB_POOL_DIRECT,
617 msg = (uint32_t *)AMDGPU_GPU_PAGE_ALIGN((unsigned long)ib->ptr);
618 msg[0] = cpu_to_le32(0x00000028);
619 msg[1] = cpu_to_le32(0x00000018);
620 msg[2] = cpu_to_le32(0x00000000);
621 msg[3] = cpu_to_le32(0x00000002);
622 msg[4] = cpu_to_le32(handle);
623 msg[5] = cpu_to_le32(0x00000000);
624 for (i = 6; i < 1024; ++i)
625 msg[i] = cpu_to_le32(0x0);
630 int amdgpu_vcn_dec_ring_test_ib(struct amdgpu_ring *ring, long timeout)
632 struct dma_fence *fence = NULL;
636 r = amdgpu_vcn_dec_get_create_msg(ring, 1, &ib);
640 r = amdgpu_vcn_dec_send_msg(ring, &ib, NULL);
643 r = amdgpu_vcn_dec_get_destroy_msg(ring, 1, &ib);
647 r = amdgpu_vcn_dec_send_msg(ring, &ib, &fence);
651 r = dma_fence_wait_timeout(fence, false, timeout);
657 dma_fence_put(fence);
662 static uint32_t *amdgpu_vcn_unified_ring_ib_header(struct amdgpu_ib *ib,
663 uint32_t ib_pack_in_dw, bool enc)
665 uint32_t *ib_checksum;
667 ib->ptr[ib->length_dw++] = 0x00000010; /* single queue checksum */
668 ib->ptr[ib->length_dw++] = 0x30000002;
669 ib_checksum = &ib->ptr[ib->length_dw++];
670 ib->ptr[ib->length_dw++] = ib_pack_in_dw;
672 ib->ptr[ib->length_dw++] = 0x00000010; /* engine info */
673 ib->ptr[ib->length_dw++] = 0x30000001;
674 ib->ptr[ib->length_dw++] = enc ? 0x2 : 0x3;
675 ib->ptr[ib->length_dw++] = ib_pack_in_dw * sizeof(uint32_t);
680 static void amdgpu_vcn_unified_ring_ib_checksum(uint32_t **ib_checksum,
681 uint32_t ib_pack_in_dw)
684 uint32_t checksum = 0;
686 for (i = 0; i < ib_pack_in_dw; i++)
687 checksum += *(*ib_checksum + 2 + i);
689 **ib_checksum = checksum;
692 static int amdgpu_vcn_dec_sw_send_msg(struct amdgpu_ring *ring,
693 struct amdgpu_ib *ib_msg,
694 struct dma_fence **fence)
696 struct amdgpu_vcn_decode_buffer *decode_buffer = NULL;
697 unsigned int ib_size_dw = 64;
698 struct amdgpu_device *adev = ring->adev;
699 struct dma_fence *f = NULL;
700 struct amdgpu_job *job;
701 struct amdgpu_ib *ib;
702 uint64_t addr = AMDGPU_GPU_PAGE_ALIGN(ib_msg->gpu_addr);
703 bool sq = amdgpu_vcn_using_unified_queue(ring);
704 uint32_t *ib_checksum;
705 uint32_t ib_pack_in_dw;
711 r = amdgpu_job_alloc_with_ib(ring->adev, NULL, NULL,
712 ib_size_dw * 4, AMDGPU_IB_POOL_DIRECT,
720 /* single queue headers */
722 ib_pack_in_dw = sizeof(struct amdgpu_vcn_decode_buffer) / sizeof(uint32_t)
723 + 4 + 2; /* engine info + decoding ib in dw */
724 ib_checksum = amdgpu_vcn_unified_ring_ib_header(ib, ib_pack_in_dw, false);
727 ib->ptr[ib->length_dw++] = sizeof(struct amdgpu_vcn_decode_buffer) + 8;
728 ib->ptr[ib->length_dw++] = cpu_to_le32(AMDGPU_VCN_IB_FLAG_DECODE_BUFFER);
729 decode_buffer = (struct amdgpu_vcn_decode_buffer *)&(ib->ptr[ib->length_dw]);
730 ib->length_dw += sizeof(struct amdgpu_vcn_decode_buffer) / 4;
731 memset(decode_buffer, 0, sizeof(struct amdgpu_vcn_decode_buffer));
733 decode_buffer->valid_buf_flag |= cpu_to_le32(AMDGPU_VCN_CMD_FLAG_MSG_BUFFER);
734 decode_buffer->msg_buffer_address_hi = cpu_to_le32(addr >> 32);
735 decode_buffer->msg_buffer_address_lo = cpu_to_le32(addr);
737 for (i = ib->length_dw; i < ib_size_dw; ++i)
741 amdgpu_vcn_unified_ring_ib_checksum(&ib_checksum, ib_pack_in_dw);
743 r = amdgpu_job_submit_direct(job, ring, &f);
747 amdgpu_ib_free(adev, ib_msg, f);
750 *fence = dma_fence_get(f);
756 amdgpu_job_free(job);
758 amdgpu_ib_free(adev, ib_msg, f);
762 int amdgpu_vcn_dec_sw_ring_test_ib(struct amdgpu_ring *ring, long timeout)
764 struct dma_fence *fence = NULL;
768 r = amdgpu_vcn_dec_get_create_msg(ring, 1, &ib);
772 r = amdgpu_vcn_dec_sw_send_msg(ring, &ib, NULL);
775 r = amdgpu_vcn_dec_get_destroy_msg(ring, 1, &ib);
779 r = amdgpu_vcn_dec_sw_send_msg(ring, &ib, &fence);
783 r = dma_fence_wait_timeout(fence, false, timeout);
789 dma_fence_put(fence);
794 int amdgpu_vcn_enc_ring_test_ring(struct amdgpu_ring *ring)
796 struct amdgpu_device *adev = ring->adev;
801 if (amdgpu_sriov_vf(adev))
804 r = amdgpu_ring_alloc(ring, 16);
808 rptr = amdgpu_ring_get_rptr(ring);
810 amdgpu_ring_write(ring, VCN_ENC_CMD_END);
811 amdgpu_ring_commit(ring);
813 for (i = 0; i < adev->usec_timeout; i++) {
814 if (amdgpu_ring_get_rptr(ring) != rptr)
819 if (i >= adev->usec_timeout)
825 static int amdgpu_vcn_enc_get_create_msg(struct amdgpu_ring *ring, uint32_t handle,
826 struct amdgpu_ib *ib_msg,
827 struct dma_fence **fence)
829 unsigned int ib_size_dw = 16;
830 struct amdgpu_job *job;
831 struct amdgpu_ib *ib;
832 struct dma_fence *f = NULL;
833 uint32_t *ib_checksum = NULL;
835 bool sq = amdgpu_vcn_using_unified_queue(ring);
841 r = amdgpu_job_alloc_with_ib(ring->adev, NULL, NULL,
842 ib_size_dw * 4, AMDGPU_IB_POOL_DIRECT,
848 addr = AMDGPU_GPU_PAGE_ALIGN(ib_msg->gpu_addr);
853 ib_checksum = amdgpu_vcn_unified_ring_ib_header(ib, 0x11, true);
855 ib->ptr[ib->length_dw++] = 0x00000018;
856 ib->ptr[ib->length_dw++] = 0x00000001; /* session info */
857 ib->ptr[ib->length_dw++] = handle;
858 ib->ptr[ib->length_dw++] = upper_32_bits(addr);
859 ib->ptr[ib->length_dw++] = addr;
860 ib->ptr[ib->length_dw++] = 0x0000000b;
862 ib->ptr[ib->length_dw++] = 0x00000014;
863 ib->ptr[ib->length_dw++] = 0x00000002; /* task info */
864 ib->ptr[ib->length_dw++] = 0x0000001c;
865 ib->ptr[ib->length_dw++] = 0x00000000;
866 ib->ptr[ib->length_dw++] = 0x00000000;
868 ib->ptr[ib->length_dw++] = 0x00000008;
869 ib->ptr[ib->length_dw++] = 0x08000001; /* op initialize */
871 for (i = ib->length_dw; i < ib_size_dw; ++i)
875 amdgpu_vcn_unified_ring_ib_checksum(&ib_checksum, 0x11);
877 r = amdgpu_job_submit_direct(job, ring, &f);
882 *fence = dma_fence_get(f);
888 amdgpu_job_free(job);
892 static int amdgpu_vcn_enc_get_destroy_msg(struct amdgpu_ring *ring, uint32_t handle,
893 struct amdgpu_ib *ib_msg,
894 struct dma_fence **fence)
896 unsigned int ib_size_dw = 16;
897 struct amdgpu_job *job;
898 struct amdgpu_ib *ib;
899 struct dma_fence *f = NULL;
900 uint32_t *ib_checksum = NULL;
902 bool sq = amdgpu_vcn_using_unified_queue(ring);
908 r = amdgpu_job_alloc_with_ib(ring->adev, NULL, NULL,
909 ib_size_dw * 4, AMDGPU_IB_POOL_DIRECT,
915 addr = AMDGPU_GPU_PAGE_ALIGN(ib_msg->gpu_addr);
920 ib_checksum = amdgpu_vcn_unified_ring_ib_header(ib, 0x11, true);
922 ib->ptr[ib->length_dw++] = 0x00000018;
923 ib->ptr[ib->length_dw++] = 0x00000001;
924 ib->ptr[ib->length_dw++] = handle;
925 ib->ptr[ib->length_dw++] = upper_32_bits(addr);
926 ib->ptr[ib->length_dw++] = addr;
927 ib->ptr[ib->length_dw++] = 0x0000000b;
929 ib->ptr[ib->length_dw++] = 0x00000014;
930 ib->ptr[ib->length_dw++] = 0x00000002;
931 ib->ptr[ib->length_dw++] = 0x0000001c;
932 ib->ptr[ib->length_dw++] = 0x00000000;
933 ib->ptr[ib->length_dw++] = 0x00000000;
935 ib->ptr[ib->length_dw++] = 0x00000008;
936 ib->ptr[ib->length_dw++] = 0x08000002; /* op close session */
938 for (i = ib->length_dw; i < ib_size_dw; ++i)
942 amdgpu_vcn_unified_ring_ib_checksum(&ib_checksum, 0x11);
944 r = amdgpu_job_submit_direct(job, ring, &f);
949 *fence = dma_fence_get(f);
955 amdgpu_job_free(job);
959 int amdgpu_vcn_enc_ring_test_ib(struct amdgpu_ring *ring, long timeout)
961 struct amdgpu_device *adev = ring->adev;
962 struct dma_fence *fence = NULL;
966 memset(&ib, 0, sizeof(ib));
967 r = amdgpu_ib_get(adev, NULL, (128 << 10) + AMDGPU_GPU_PAGE_SIZE,
968 AMDGPU_IB_POOL_DIRECT,
973 r = amdgpu_vcn_enc_get_create_msg(ring, 1, &ib, NULL);
977 r = amdgpu_vcn_enc_get_destroy_msg(ring, 1, &ib, &fence);
981 r = dma_fence_wait_timeout(fence, false, timeout);
988 amdgpu_ib_free(adev, &ib, fence);
989 dma_fence_put(fence);
994 int amdgpu_vcn_unified_ring_test_ib(struct amdgpu_ring *ring, long timeout)
996 struct amdgpu_device *adev = ring->adev;
999 if (adev->ip_versions[UVD_HWIP][0] != IP_VERSION(4, 0, 3)) {
1000 r = amdgpu_vcn_enc_ring_test_ib(ring, timeout);
1005 r = amdgpu_vcn_dec_sw_ring_test_ib(ring, timeout);
1011 enum amdgpu_ring_priority_level amdgpu_vcn_get_enc_ring_prio(int ring)
1015 return AMDGPU_RING_PRIO_0;
1017 return AMDGPU_RING_PRIO_1;
1019 return AMDGPU_RING_PRIO_2;
1021 return AMDGPU_RING_PRIO_0;
1025 void amdgpu_vcn_setup_ucode(struct amdgpu_device *adev)
1030 if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) {
1031 const struct common_firmware_header *hdr;
1033 hdr = (const struct common_firmware_header *)adev->vcn.fw->data;
1035 for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
1036 if (adev->vcn.harvest_config & (1 << i))
1038 /* currently only support 2 FW instances */
1040 dev_info(adev->dev, "More then 2 VCN FW instances!\n");
1043 idx = AMDGPU_UCODE_ID_VCN + i;
1044 adev->firmware.ucode[idx].ucode_id = idx;
1045 adev->firmware.ucode[idx].fw = adev->vcn.fw;
1046 adev->firmware.fw_size +=
1047 ALIGN(le32_to_cpu(hdr->ucode_size_bytes), PAGE_SIZE);
1049 if (adev->ip_versions[UVD_HWIP][0] == IP_VERSION(4, 0, 3))
1052 dev_info(adev->dev, "Will use PSP to load VCN firmware\n");
1057 * debugfs for mapping vcn firmware log buffer.
1059 #if defined(CONFIG_DEBUG_FS)
1060 static ssize_t amdgpu_debugfs_vcn_fwlog_read(struct file *f, char __user *buf,
1061 size_t size, loff_t *pos)
1063 struct amdgpu_vcn_inst *vcn;
1065 volatile struct amdgpu_vcn_fwlog *plog;
1066 unsigned int read_pos, write_pos, available, i, read_bytes = 0;
1067 unsigned int read_num[2] = {0};
1069 vcn = file_inode(f)->i_private;
1073 if (!vcn->fw_shared.cpu_addr || !amdgpu_vcnfw_log)
1076 log_buf = vcn->fw_shared.cpu_addr + vcn->fw_shared.mem_size;
1078 plog = (volatile struct amdgpu_vcn_fwlog *)log_buf;
1079 read_pos = plog->rptr;
1080 write_pos = plog->wptr;
1082 if (read_pos > AMDGPU_VCNFW_LOG_SIZE || write_pos > AMDGPU_VCNFW_LOG_SIZE)
1085 if (!size || (read_pos == write_pos))
1088 if (write_pos > read_pos) {
1089 available = write_pos - read_pos;
1090 read_num[0] = min(size, (size_t)available);
1092 read_num[0] = AMDGPU_VCNFW_LOG_SIZE - read_pos;
1093 available = read_num[0] + write_pos - plog->header_size;
1094 if (size > available)
1095 read_num[1] = write_pos - plog->header_size;
1096 else if (size > read_num[0])
1097 read_num[1] = size - read_num[0];
1102 for (i = 0; i < 2; i++) {
1104 if (read_pos == AMDGPU_VCNFW_LOG_SIZE)
1105 read_pos = plog->header_size;
1106 if (read_num[i] == copy_to_user((buf + read_bytes),
1107 (log_buf + read_pos), read_num[i]))
1110 read_bytes += read_num[i];
1111 read_pos += read_num[i];
1115 plog->rptr = read_pos;
1120 static const struct file_operations amdgpu_debugfs_vcnfwlog_fops = {
1121 .owner = THIS_MODULE,
1122 .read = amdgpu_debugfs_vcn_fwlog_read,
1123 .llseek = default_llseek
1127 void amdgpu_debugfs_vcn_fwlog_init(struct amdgpu_device *adev, uint8_t i,
1128 struct amdgpu_vcn_inst *vcn)
1130 #if defined(CONFIG_DEBUG_FS)
1131 struct drm_minor *minor = adev_to_drm(adev)->primary;
1132 struct dentry *root = minor->debugfs_root;
1135 sprintf(name, "amdgpu_vcn_%d_fwlog", i);
1136 debugfs_create_file_size(name, S_IFREG | 0444, root, vcn,
1137 &amdgpu_debugfs_vcnfwlog_fops,
1138 AMDGPU_VCNFW_LOG_SIZE);
1142 void amdgpu_vcn_fwlog_init(struct amdgpu_vcn_inst *vcn)
1144 #if defined(CONFIG_DEBUG_FS)
1145 volatile uint32_t *flag = vcn->fw_shared.cpu_addr;
1146 void *fw_log_cpu_addr = vcn->fw_shared.cpu_addr + vcn->fw_shared.mem_size;
1147 uint64_t fw_log_gpu_addr = vcn->fw_shared.gpu_addr + vcn->fw_shared.mem_size;
1148 volatile struct amdgpu_vcn_fwlog *log_buf = fw_log_cpu_addr;
1149 volatile struct amdgpu_fw_shared_fw_logging *fw_log = vcn->fw_shared.cpu_addr
1150 + vcn->fw_shared.log_offset;
1151 *flag |= cpu_to_le32(AMDGPU_VCN_FW_LOGGING_FLAG);
1152 fw_log->is_enabled = 1;
1153 fw_log->addr_lo = cpu_to_le32(fw_log_gpu_addr & 0xFFFFFFFF);
1154 fw_log->addr_hi = cpu_to_le32(fw_log_gpu_addr >> 32);
1155 fw_log->size = cpu_to_le32(AMDGPU_VCNFW_LOG_SIZE);
1157 log_buf->header_size = sizeof(struct amdgpu_vcn_fwlog);
1158 log_buf->buffer_size = AMDGPU_VCNFW_LOG_SIZE;
1159 log_buf->rptr = log_buf->header_size;
1160 log_buf->wptr = log_buf->header_size;
1161 log_buf->wrapped = 0;
1165 int amdgpu_vcn_process_poison_irq(struct amdgpu_device *adev,
1166 struct amdgpu_irq_src *source,
1167 struct amdgpu_iv_entry *entry)
1169 struct ras_common_if *ras_if = adev->vcn.ras_if;
1170 struct ras_dispatch_if ih_data = {
1177 if (!amdgpu_sriov_vf(adev)) {
1178 ih_data.head = *ras_if;
1179 amdgpu_ras_interrupt_dispatch(adev, &ih_data);
1181 if (adev->virt.ops && adev->virt.ops->ras_poison_handler)
1182 adev->virt.ops->ras_poison_handler(adev);
1185 "No ras_poison_handler interface in SRIOV for VCN!\n");
1191 int amdgpu_vcn_ras_late_init(struct amdgpu_device *adev, struct ras_common_if *ras_block)
1195 r = amdgpu_ras_block_late_init(adev, ras_block);
1199 if (amdgpu_ras_is_supported(adev, ras_block->block)) {
1200 for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
1201 if (adev->vcn.harvest_config & (1 << i))
1204 r = amdgpu_irq_get(adev, &adev->vcn.inst[i].ras_poison_irq, 0);
1212 amdgpu_ras_block_late_fini(adev, ras_block);
1216 int amdgpu_vcn_ras_sw_init(struct amdgpu_device *adev)
1219 struct amdgpu_vcn_ras *ras;
1224 ras = adev->vcn.ras;
1225 err = amdgpu_ras_register_ras_block(adev, &ras->ras_block);
1227 dev_err(adev->dev, "Failed to register vcn ras block!\n");
1231 strcpy(ras->ras_block.ras_comm.name, "vcn");
1232 ras->ras_block.ras_comm.block = AMDGPU_RAS_BLOCK__VCN;
1233 ras->ras_block.ras_comm.type = AMDGPU_RAS_ERROR__POISON;
1234 adev->vcn.ras_if = &ras->ras_block.ras_comm;
1236 if (!ras->ras_block.ras_late_init)
1237 ras->ras_block.ras_late_init = amdgpu_vcn_ras_late_init;