2 * Copyright 2013 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
25 #include <linux/firmware.h>
28 #include "amdgpu_uvd.h"
31 #include "uvd/uvd_4_2_d.h"
32 #include "uvd/uvd_4_2_sh_mask.h"
34 #include "oss/oss_2_0_d.h"
35 #include "oss/oss_2_0_sh_mask.h"
37 #include "bif/bif_4_1_d.h"
39 #include "smu/smu_7_0_1_d.h"
40 #include "smu/smu_7_0_1_sh_mask.h"
42 static void uvd_v4_2_mc_resume(struct amdgpu_device *adev);
43 static void uvd_v4_2_set_ring_funcs(struct amdgpu_device *adev);
44 static void uvd_v4_2_set_irq_funcs(struct amdgpu_device *adev);
45 static int uvd_v4_2_start(struct amdgpu_device *adev);
46 static void uvd_v4_2_stop(struct amdgpu_device *adev);
47 static int uvd_v4_2_set_clockgating_state(void *handle,
48 enum amd_clockgating_state state);
49 static void uvd_v4_2_set_dcm(struct amdgpu_device *adev,
52 * uvd_v4_2_ring_get_rptr - get read pointer
54 * @ring: amdgpu_ring pointer
56 * Returns the current hardware read pointer
58 static uint64_t uvd_v4_2_ring_get_rptr(struct amdgpu_ring *ring)
60 struct amdgpu_device *adev = ring->adev;
62 return RREG32(mmUVD_RBC_RB_RPTR);
66 * uvd_v4_2_ring_get_wptr - get write pointer
68 * @ring: amdgpu_ring pointer
70 * Returns the current hardware write pointer
72 static uint64_t uvd_v4_2_ring_get_wptr(struct amdgpu_ring *ring)
74 struct amdgpu_device *adev = ring->adev;
76 return RREG32(mmUVD_RBC_RB_WPTR);
80 * uvd_v4_2_ring_set_wptr - set write pointer
82 * @ring: amdgpu_ring pointer
84 * Commits the write pointer to the hardware
86 static void uvd_v4_2_ring_set_wptr(struct amdgpu_ring *ring)
88 struct amdgpu_device *adev = ring->adev;
90 WREG32(mmUVD_RBC_RB_WPTR, lower_32_bits(ring->wptr));
93 static int uvd_v4_2_early_init(void *handle)
95 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
96 adev->uvd.num_uvd_inst = 1;
98 uvd_v4_2_set_ring_funcs(adev);
99 uvd_v4_2_set_irq_funcs(adev);
104 static int uvd_v4_2_sw_init(void *handle)
106 struct amdgpu_ring *ring;
107 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
111 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, 124, &adev->uvd.inst->irq);
115 r = amdgpu_uvd_sw_init(adev);
119 ring = &adev->uvd.inst->ring;
120 sprintf(ring->name, "uvd");
121 r = amdgpu_ring_init(adev, ring, 512, &adev->uvd.inst->irq, 0,
122 AMDGPU_RING_PRIO_DEFAULT, NULL);
126 r = amdgpu_uvd_resume(adev);
130 r = amdgpu_uvd_entity_init(adev);
135 static int uvd_v4_2_sw_fini(void *handle)
138 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
140 r = amdgpu_uvd_suspend(adev);
144 return amdgpu_uvd_sw_fini(adev);
147 static void uvd_v4_2_enable_mgcg(struct amdgpu_device *adev,
150 * uvd_v4_2_hw_init - start and test UVD block
152 * @handle: handle used to pass amdgpu_device pointer
154 * Initialize the hardware, boot up the VCPU and do some testing
156 static int uvd_v4_2_hw_init(void *handle)
158 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
159 struct amdgpu_ring *ring = &adev->uvd.inst->ring;
163 uvd_v4_2_enable_mgcg(adev, true);
164 amdgpu_asic_set_uvd_clocks(adev, 10000, 10000);
166 r = amdgpu_ring_test_helper(ring);
170 r = amdgpu_ring_alloc(ring, 10);
172 DRM_ERROR("amdgpu: ring failed to lock UVD ring (%d).\n", r);
176 tmp = PACKET0(mmUVD_SEMA_WAIT_FAULT_TIMEOUT_CNTL, 0);
177 amdgpu_ring_write(ring, tmp);
178 amdgpu_ring_write(ring, 0xFFFFF);
180 tmp = PACKET0(mmUVD_SEMA_WAIT_INCOMPLETE_TIMEOUT_CNTL, 0);
181 amdgpu_ring_write(ring, tmp);
182 amdgpu_ring_write(ring, 0xFFFFF);
184 tmp = PACKET0(mmUVD_SEMA_SIGNAL_INCOMPLETE_TIMEOUT_CNTL, 0);
185 amdgpu_ring_write(ring, tmp);
186 amdgpu_ring_write(ring, 0xFFFFF);
188 /* Clear timeout status bits */
189 amdgpu_ring_write(ring, PACKET0(mmUVD_SEMA_TIMEOUT_STATUS, 0));
190 amdgpu_ring_write(ring, 0x8);
192 amdgpu_ring_write(ring, PACKET0(mmUVD_SEMA_CNTL, 0));
193 amdgpu_ring_write(ring, 3);
195 amdgpu_ring_commit(ring);
199 DRM_INFO("UVD initialized successfully.\n");
205 * uvd_v4_2_hw_fini - stop the hardware block
207 * @handle: handle used to pass amdgpu_device pointer
209 * Stop the UVD block, mark ring as not ready any more
211 static int uvd_v4_2_hw_fini(void *handle)
213 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
215 cancel_delayed_work_sync(&adev->uvd.idle_work);
217 if (RREG32(mmUVD_STATUS) != 0)
223 static int uvd_v4_2_prepare_suspend(void *handle)
225 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
227 return amdgpu_uvd_prepare_suspend(adev);
230 static int uvd_v4_2_suspend(void *handle)
233 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
236 * Proper cleanups before halting the HW engine:
237 * - cancel the delayed idle work
238 * - enable powergating
239 * - enable clockgating
242 * TODO: to align with the VCN implementation, move the
243 * jobs for clockgating/powergating/dpm setting to
244 * ->set_powergating_state().
246 cancel_delayed_work_sync(&adev->uvd.idle_work);
248 if (adev->pm.dpm_enabled) {
249 amdgpu_dpm_enable_uvd(adev, false);
251 amdgpu_asic_set_uvd_clocks(adev, 0, 0);
252 /* shutdown the UVD block */
253 amdgpu_device_ip_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_UVD,
255 amdgpu_device_ip_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_UVD,
259 r = uvd_v4_2_hw_fini(adev);
263 return amdgpu_uvd_suspend(adev);
266 static int uvd_v4_2_resume(void *handle)
269 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
271 r = amdgpu_uvd_resume(adev);
275 return uvd_v4_2_hw_init(adev);
279 * uvd_v4_2_start - start UVD block
281 * @adev: amdgpu_device pointer
283 * Setup and start the UVD block
285 static int uvd_v4_2_start(struct amdgpu_device *adev)
287 struct amdgpu_ring *ring = &adev->uvd.inst->ring;
291 /* disable byte swapping */
292 u32 lmi_swap_cntl = 0;
293 u32 mp_swap_cntl = 0;
296 WREG32_P(mmUVD_STATUS, 1<<2, ~(1<<2));
298 uvd_v4_2_set_dcm(adev, true);
299 WREG32(mmUVD_CGC_GATE, 0);
301 /* take UVD block out of reset */
302 WREG32_P(mmSRBM_SOFT_RESET, 0, ~SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK);
305 /* enable VCPU clock */
306 WREG32(mmUVD_VCPU_CNTL, 1 << 9);
308 /* disable interupt */
309 WREG32_P(mmUVD_MASTINT_EN, 0, ~(1 << 1));
312 /* swap (8 in 32) RB and IB */
316 WREG32(mmUVD_LMI_SWAP_CNTL, lmi_swap_cntl);
317 WREG32(mmUVD_MP_SWAP_CNTL, mp_swap_cntl);
318 /* initialize UVD memory controller */
319 WREG32(mmUVD_LMI_CTRL, 0x203108);
321 tmp = RREG32(mmUVD_MPC_CNTL);
322 WREG32(mmUVD_MPC_CNTL, tmp | 0x10);
324 WREG32(mmUVD_MPC_SET_MUXA0, 0x40c2040);
325 WREG32(mmUVD_MPC_SET_MUXA1, 0x0);
326 WREG32(mmUVD_MPC_SET_MUXB0, 0x40c2040);
327 WREG32(mmUVD_MPC_SET_MUXB1, 0x0);
328 WREG32(mmUVD_MPC_SET_ALU, 0);
329 WREG32(mmUVD_MPC_SET_MUX, 0x88);
331 uvd_v4_2_mc_resume(adev);
333 tmp = RREG32_UVD_CTX(ixUVD_LMI_CACHE_CTRL);
334 WREG32_UVD_CTX(ixUVD_LMI_CACHE_CTRL, tmp & (~0x10));
337 WREG32_P(mmUVD_LMI_CTRL2, 0, ~(1 << 8));
339 WREG32_P(mmUVD_SOFT_RESET, 0, ~UVD_SOFT_RESET__LMI_SOFT_RESET_MASK);
341 WREG32_P(mmUVD_SOFT_RESET, 0, ~UVD_SOFT_RESET__LMI_UMC_SOFT_RESET_MASK);
343 WREG32_P(mmUVD_SOFT_RESET, 0, ~UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
347 for (i = 0; i < 10; ++i) {
349 for (j = 0; j < 100; ++j) {
350 status = RREG32(mmUVD_STATUS);
359 DRM_ERROR("UVD not responding, trying to reset the VCPU!!!\n");
360 WREG32_P(mmUVD_SOFT_RESET, UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK,
361 ~UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
363 WREG32_P(mmUVD_SOFT_RESET, 0, ~UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
369 DRM_ERROR("UVD not responding, giving up!!!\n");
373 /* enable interupt */
374 WREG32_P(mmUVD_MASTINT_EN, 3<<1, ~(3 << 1));
376 WREG32_P(mmUVD_STATUS, 0, ~(1<<2));
378 /* force RBC into idle state */
379 WREG32(mmUVD_RBC_RB_CNTL, 0x11010101);
381 /* Set the write pointer delay */
382 WREG32(mmUVD_RBC_RB_WPTR_CNTL, 0);
384 /* program the 4GB memory segment for rptr and ring buffer */
385 WREG32(mmUVD_LMI_EXT40_ADDR, upper_32_bits(ring->gpu_addr) |
386 (0x7 << 16) | (0x1 << 31));
388 /* Initialize the ring buffer's read and write pointers */
389 WREG32(mmUVD_RBC_RB_RPTR, 0x0);
391 ring->wptr = RREG32(mmUVD_RBC_RB_RPTR);
392 WREG32(mmUVD_RBC_RB_WPTR, lower_32_bits(ring->wptr));
394 /* set the ring address */
395 WREG32(mmUVD_RBC_RB_BASE, ring->gpu_addr);
397 /* Set ring buffer size */
398 rb_bufsz = order_base_2(ring->ring_size);
399 rb_bufsz = (0x1 << 8) | rb_bufsz;
400 WREG32_P(mmUVD_RBC_RB_CNTL, rb_bufsz, ~0x11f1f);
406 * uvd_v4_2_stop - stop UVD block
408 * @adev: amdgpu_device pointer
412 static void uvd_v4_2_stop(struct amdgpu_device *adev)
417 WREG32(mmUVD_RBC_RB_CNTL, 0x11010101);
419 for (i = 0; i < 10; ++i) {
420 for (j = 0; j < 100; ++j) {
421 status = RREG32(mmUVD_STATUS);
430 for (i = 0; i < 10; ++i) {
431 for (j = 0; j < 100; ++j) {
432 status = RREG32(mmUVD_LMI_STATUS);
441 /* Stall UMC and register bus before resetting VCPU */
442 WREG32_P(mmUVD_LMI_CTRL2, 1 << 8, ~(1 << 8));
444 for (i = 0; i < 10; ++i) {
445 for (j = 0; j < 100; ++j) {
446 status = RREG32(mmUVD_LMI_STATUS);
455 WREG32_P(0x3D49, 0, ~(1 << 2));
457 WREG32_P(mmUVD_VCPU_CNTL, 0, ~(1 << 9));
459 /* put LMI, VCPU, RBC etc... into reset */
460 WREG32(mmUVD_SOFT_RESET, UVD_SOFT_RESET__LMI_SOFT_RESET_MASK |
461 UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK |
462 UVD_SOFT_RESET__LMI_UMC_SOFT_RESET_MASK);
464 WREG32(mmUVD_STATUS, 0);
466 uvd_v4_2_set_dcm(adev, false);
470 * uvd_v4_2_ring_emit_fence - emit an fence & trap command
472 * @ring: amdgpu_ring pointer
474 * @seq: sequence number
475 * @flags: fence related flags
477 * Write a fence and a trap command to the ring.
479 static void uvd_v4_2_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
482 WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
484 amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
485 amdgpu_ring_write(ring, seq);
486 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
487 amdgpu_ring_write(ring, addr & 0xffffffff);
488 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA1, 0));
489 amdgpu_ring_write(ring, upper_32_bits(addr) & 0xff);
490 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_CMD, 0));
491 amdgpu_ring_write(ring, 0);
493 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
494 amdgpu_ring_write(ring, 0);
495 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA1, 0));
496 amdgpu_ring_write(ring, 0);
497 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_CMD, 0));
498 amdgpu_ring_write(ring, 2);
502 * uvd_v4_2_ring_test_ring - register write test
504 * @ring: amdgpu_ring pointer
506 * Test if we can successfully write to the context register
508 static int uvd_v4_2_ring_test_ring(struct amdgpu_ring *ring)
510 struct amdgpu_device *adev = ring->adev;
515 WREG32(mmUVD_CONTEXT_ID, 0xCAFEDEAD);
516 r = amdgpu_ring_alloc(ring, 3);
520 amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
521 amdgpu_ring_write(ring, 0xDEADBEEF);
522 amdgpu_ring_commit(ring);
523 for (i = 0; i < adev->usec_timeout; i++) {
524 tmp = RREG32(mmUVD_CONTEXT_ID);
525 if (tmp == 0xDEADBEEF)
530 if (i >= adev->usec_timeout)
537 * uvd_v4_2_ring_emit_ib - execute indirect buffer
539 * @ring: amdgpu_ring pointer
540 * @job: iob associated with the indirect buffer
541 * @ib: indirect buffer to execute
542 * @flags: flags associated with the indirect buffer
544 * Write ring commands to execute the indirect buffer
546 static void uvd_v4_2_ring_emit_ib(struct amdgpu_ring *ring,
547 struct amdgpu_job *job,
548 struct amdgpu_ib *ib,
551 amdgpu_ring_write(ring, PACKET0(mmUVD_RBC_IB_BASE, 0));
552 amdgpu_ring_write(ring, ib->gpu_addr);
553 amdgpu_ring_write(ring, PACKET0(mmUVD_RBC_IB_SIZE, 0));
554 amdgpu_ring_write(ring, ib->length_dw);
557 static void uvd_v4_2_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count)
561 WARN_ON(ring->wptr % 2 || count % 2);
563 for (i = 0; i < count / 2; i++) {
564 amdgpu_ring_write(ring, PACKET0(mmUVD_NO_OP, 0));
565 amdgpu_ring_write(ring, 0);
570 * uvd_v4_2_mc_resume - memory controller programming
572 * @adev: amdgpu_device pointer
574 * Let the UVD memory controller know it's offsets
576 static void uvd_v4_2_mc_resume(struct amdgpu_device *adev)
581 /* program the VCPU memory controller bits 0-27 */
582 addr = (adev->uvd.inst->gpu_addr + AMDGPU_UVD_FIRMWARE_OFFSET) >> 3;
583 size = AMDGPU_UVD_FIRMWARE_SIZE(adev) >> 3;
584 WREG32(mmUVD_VCPU_CACHE_OFFSET0, addr);
585 WREG32(mmUVD_VCPU_CACHE_SIZE0, size);
588 size = AMDGPU_UVD_HEAP_SIZE >> 3;
589 WREG32(mmUVD_VCPU_CACHE_OFFSET1, addr);
590 WREG32(mmUVD_VCPU_CACHE_SIZE1, size);
593 size = (AMDGPU_UVD_STACK_SIZE +
594 (AMDGPU_UVD_SESSION_SIZE * adev->uvd.max_handles)) >> 3;
595 WREG32(mmUVD_VCPU_CACHE_OFFSET2, addr);
596 WREG32(mmUVD_VCPU_CACHE_SIZE2, size);
599 addr = (adev->uvd.inst->gpu_addr >> 28) & 0xF;
600 WREG32(mmUVD_LMI_ADDR_EXT, (addr << 12) | (addr << 0));
603 addr = (adev->uvd.inst->gpu_addr >> 32) & 0xFF;
604 WREG32(mmUVD_LMI_EXT40_ADDR, addr | (0x9 << 16) | (0x1 << 31));
606 WREG32(mmUVD_UDEC_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
607 WREG32(mmUVD_UDEC_DB_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
608 WREG32(mmUVD_UDEC_DBW_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
611 static void uvd_v4_2_enable_mgcg(struct amdgpu_device *adev,
616 if (enable && (adev->cg_flags & AMD_CG_SUPPORT_UVD_MGCG)) {
617 data = RREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL);
619 WREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL, data);
621 orig = data = RREG32(mmUVD_CGC_CTRL);
622 data |= UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK;
624 WREG32(mmUVD_CGC_CTRL, data);
626 data = RREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL);
628 WREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL, data);
630 orig = data = RREG32(mmUVD_CGC_CTRL);
631 data &= ~UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK;
633 WREG32(mmUVD_CGC_CTRL, data);
637 static void uvd_v4_2_set_dcm(struct amdgpu_device *adev,
642 WREG32_FIELD(UVD_CGC_GATE, REGS, 0);
644 tmp = RREG32(mmUVD_CGC_CTRL);
645 tmp &= ~(UVD_CGC_CTRL__CLK_OFF_DELAY_MASK | UVD_CGC_CTRL__CLK_GATE_DLY_TIMER_MASK);
646 tmp |= UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK |
647 (1 << UVD_CGC_CTRL__CLK_GATE_DLY_TIMER__SHIFT) |
648 (4 << UVD_CGC_CTRL__CLK_OFF_DELAY__SHIFT);
652 tmp2 = UVD_CGC_CTRL2__DYN_OCLK_RAMP_EN_MASK |
653 UVD_CGC_CTRL2__DYN_RCLK_RAMP_EN_MASK |
654 (7 << UVD_CGC_CTRL2__GATER_DIV_ID__SHIFT);
660 WREG32(mmUVD_CGC_CTRL, tmp);
661 WREG32_UVD_CTX(ixUVD_CGC_CTRL2, tmp2);
664 static bool uvd_v4_2_is_idle(void *handle)
666 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
668 return !(RREG32(mmSRBM_STATUS) & SRBM_STATUS__UVD_BUSY_MASK);
671 static int uvd_v4_2_wait_for_idle(void *handle)
674 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
676 for (i = 0; i < adev->usec_timeout; i++) {
677 if (!(RREG32(mmSRBM_STATUS) & SRBM_STATUS__UVD_BUSY_MASK))
683 static int uvd_v4_2_soft_reset(void *handle)
685 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
689 WREG32_P(mmSRBM_SOFT_RESET, SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK,
690 ~SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK);
693 return uvd_v4_2_start(adev);
696 static int uvd_v4_2_set_interrupt_state(struct amdgpu_device *adev,
697 struct amdgpu_irq_src *source,
699 enum amdgpu_interrupt_state state)
705 static int uvd_v4_2_process_interrupt(struct amdgpu_device *adev,
706 struct amdgpu_irq_src *source,
707 struct amdgpu_iv_entry *entry)
709 DRM_DEBUG("IH: UVD TRAP\n");
710 amdgpu_fence_process(&adev->uvd.inst->ring);
714 static int uvd_v4_2_set_clockgating_state(void *handle,
715 enum amd_clockgating_state state)
720 static int uvd_v4_2_set_powergating_state(void *handle,
721 enum amd_powergating_state state)
723 /* This doesn't actually powergate the UVD block.
724 * That's done in the dpm code via the SMC. This
725 * just re-inits the block as necessary. The actual
726 * gating still happens in the dpm code. We should
727 * revisit this when there is a cleaner line between
728 * the smc and the hw blocks
730 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
732 if (state == AMD_PG_STATE_GATE) {
734 if (adev->pg_flags & AMD_PG_SUPPORT_UVD && !adev->pm.dpm_enabled) {
735 if (!(RREG32_SMC(ixCURRENT_PG_STATUS) &
736 CURRENT_PG_STATUS__UVD_PG_STATUS_MASK)) {
737 WREG32(mmUVD_PGFSM_CONFIG, (UVD_PGFSM_CONFIG__UVD_PGFSM_FSM_ADDR_MASK |
738 UVD_PGFSM_CONFIG__UVD_PGFSM_POWER_DOWN_MASK |
739 UVD_PGFSM_CONFIG__UVD_PGFSM_P1_SELECT_MASK));
745 if (adev->pg_flags & AMD_PG_SUPPORT_UVD && !adev->pm.dpm_enabled) {
746 if (RREG32_SMC(ixCURRENT_PG_STATUS) &
747 CURRENT_PG_STATUS__UVD_PG_STATUS_MASK) {
748 WREG32(mmUVD_PGFSM_CONFIG, (UVD_PGFSM_CONFIG__UVD_PGFSM_FSM_ADDR_MASK |
749 UVD_PGFSM_CONFIG__UVD_PGFSM_POWER_UP_MASK |
750 UVD_PGFSM_CONFIG__UVD_PGFSM_P1_SELECT_MASK));
754 return uvd_v4_2_start(adev);
758 static const struct amd_ip_funcs uvd_v4_2_ip_funcs = {
760 .early_init = uvd_v4_2_early_init,
762 .sw_init = uvd_v4_2_sw_init,
763 .sw_fini = uvd_v4_2_sw_fini,
764 .hw_init = uvd_v4_2_hw_init,
765 .hw_fini = uvd_v4_2_hw_fini,
766 .prepare_suspend = uvd_v4_2_prepare_suspend,
767 .suspend = uvd_v4_2_suspend,
768 .resume = uvd_v4_2_resume,
769 .is_idle = uvd_v4_2_is_idle,
770 .wait_for_idle = uvd_v4_2_wait_for_idle,
771 .soft_reset = uvd_v4_2_soft_reset,
772 .set_clockgating_state = uvd_v4_2_set_clockgating_state,
773 .set_powergating_state = uvd_v4_2_set_powergating_state,
776 static const struct amdgpu_ring_funcs uvd_v4_2_ring_funcs = {
777 .type = AMDGPU_RING_TYPE_UVD,
779 .support_64bit_ptrs = false,
780 .no_user_fence = true,
781 .get_rptr = uvd_v4_2_ring_get_rptr,
782 .get_wptr = uvd_v4_2_ring_get_wptr,
783 .set_wptr = uvd_v4_2_ring_set_wptr,
784 .parse_cs = amdgpu_uvd_ring_parse_cs,
786 14, /* uvd_v4_2_ring_emit_fence x1 no user fence */
787 .emit_ib_size = 4, /* uvd_v4_2_ring_emit_ib */
788 .emit_ib = uvd_v4_2_ring_emit_ib,
789 .emit_fence = uvd_v4_2_ring_emit_fence,
790 .test_ring = uvd_v4_2_ring_test_ring,
791 .test_ib = amdgpu_uvd_ring_test_ib,
792 .insert_nop = uvd_v4_2_ring_insert_nop,
793 .pad_ib = amdgpu_ring_generic_pad_ib,
794 .begin_use = amdgpu_uvd_ring_begin_use,
795 .end_use = amdgpu_uvd_ring_end_use,
798 static void uvd_v4_2_set_ring_funcs(struct amdgpu_device *adev)
800 adev->uvd.inst->ring.funcs = &uvd_v4_2_ring_funcs;
803 static const struct amdgpu_irq_src_funcs uvd_v4_2_irq_funcs = {
804 .set = uvd_v4_2_set_interrupt_state,
805 .process = uvd_v4_2_process_interrupt,
808 static void uvd_v4_2_set_irq_funcs(struct amdgpu_device *adev)
810 adev->uvd.inst->irq.num_types = 1;
811 adev->uvd.inst->irq.funcs = &uvd_v4_2_irq_funcs;
814 const struct amdgpu_ip_block_version uvd_v4_2_ip_block =
816 .type = AMD_IP_BLOCK_TYPE_UVD,
820 .funcs = &uvd_v4_2_ip_funcs,