Loading...
1/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: Christian König <christian.koenig@amd.com>
23 */
24
25#include <linux/delay.h>
26#include <linux/firmware.h>
27
28#include "amdgpu.h"
29#include "amdgpu_uvd.h"
30#include "vid.h"
31#include "uvd/uvd_5_0_d.h"
32#include "uvd/uvd_5_0_sh_mask.h"
33#include "oss/oss_2_0_d.h"
34#include "oss/oss_2_0_sh_mask.h"
35#include "bif/bif_5_0_d.h"
36#include "vi.h"
37#include "smu/smu_7_1_2_d.h"
38#include "smu/smu_7_1_2_sh_mask.h"
39#include "ivsrcid/ivsrcid_vislands30.h"
40
41static void uvd_v5_0_set_ring_funcs(struct amdgpu_device *adev);
42static void uvd_v5_0_set_irq_funcs(struct amdgpu_device *adev);
43static int uvd_v5_0_start(struct amdgpu_device *adev);
44static void uvd_v5_0_stop(struct amdgpu_device *adev);
45static int uvd_v5_0_set_clockgating_state(void *handle,
46 enum amd_clockgating_state state);
47static void uvd_v5_0_enable_mgcg(struct amdgpu_device *adev,
48 bool enable);
49/**
50 * uvd_v5_0_ring_get_rptr - get read pointer
51 *
52 * @ring: amdgpu_ring pointer
53 *
54 * Returns the current hardware read pointer
55 */
56static uint64_t uvd_v5_0_ring_get_rptr(struct amdgpu_ring *ring)
57{
58 struct amdgpu_device *adev = ring->adev;
59
60 return RREG32(mmUVD_RBC_RB_RPTR);
61}
62
63/**
64 * uvd_v5_0_ring_get_wptr - get write pointer
65 *
66 * @ring: amdgpu_ring pointer
67 *
68 * Returns the current hardware write pointer
69 */
70static uint64_t uvd_v5_0_ring_get_wptr(struct amdgpu_ring *ring)
71{
72 struct amdgpu_device *adev = ring->adev;
73
74 return RREG32(mmUVD_RBC_RB_WPTR);
75}
76
77/**
78 * uvd_v5_0_ring_set_wptr - set write pointer
79 *
80 * @ring: amdgpu_ring pointer
81 *
82 * Commits the write pointer to the hardware
83 */
84static void uvd_v5_0_ring_set_wptr(struct amdgpu_ring *ring)
85{
86 struct amdgpu_device *adev = ring->adev;
87
88 WREG32(mmUVD_RBC_RB_WPTR, lower_32_bits(ring->wptr));
89}
90
91static int uvd_v5_0_early_init(void *handle)
92{
93 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
94 adev->uvd.num_uvd_inst = 1;
95
96 uvd_v5_0_set_ring_funcs(adev);
97 uvd_v5_0_set_irq_funcs(adev);
98
99 return 0;
100}
101
102static int uvd_v5_0_sw_init(void *handle)
103{
104 struct amdgpu_ring *ring;
105 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
106 int r;
107
108 /* UVD TRAP */
109 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, VISLANDS30_IV_SRCID_UVD_SYSTEM_MESSAGE, &adev->uvd.inst->irq);
110 if (r)
111 return r;
112
113 r = amdgpu_uvd_sw_init(adev);
114 if (r)
115 return r;
116
117 ring = &adev->uvd.inst->ring;
118 sprintf(ring->name, "uvd");
119 r = amdgpu_ring_init(adev, ring, 512, &adev->uvd.inst->irq, 0,
120 AMDGPU_RING_PRIO_DEFAULT);
121 if (r)
122 return r;
123
124 r = amdgpu_uvd_resume(adev);
125 if (r)
126 return r;
127
128 r = amdgpu_uvd_entity_init(adev);
129
130 return r;
131}
132
133static int uvd_v5_0_sw_fini(void *handle)
134{
135 int r;
136 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
137
138 r = amdgpu_uvd_suspend(adev);
139 if (r)
140 return r;
141
142 return amdgpu_uvd_sw_fini(adev);
143}
144
145/**
146 * uvd_v5_0_hw_init - start and test UVD block
147 *
148 * @adev: amdgpu_device pointer
149 *
150 * Initialize the hardware, boot up the VCPU and do some testing
151 */
152static int uvd_v5_0_hw_init(void *handle)
153{
154 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
155 struct amdgpu_ring *ring = &adev->uvd.inst->ring;
156 uint32_t tmp;
157 int r;
158
159 amdgpu_asic_set_uvd_clocks(adev, 10000, 10000);
160 uvd_v5_0_set_clockgating_state(adev, AMD_CG_STATE_UNGATE);
161 uvd_v5_0_enable_mgcg(adev, true);
162
163 r = amdgpu_ring_test_helper(ring);
164 if (r)
165 goto done;
166
167 r = amdgpu_ring_alloc(ring, 10);
168 if (r) {
169 DRM_ERROR("amdgpu: ring failed to lock UVD ring (%d).\n", r);
170 goto done;
171 }
172
173 tmp = PACKET0(mmUVD_SEMA_WAIT_FAULT_TIMEOUT_CNTL, 0);
174 amdgpu_ring_write(ring, tmp);
175 amdgpu_ring_write(ring, 0xFFFFF);
176
177 tmp = PACKET0(mmUVD_SEMA_WAIT_INCOMPLETE_TIMEOUT_CNTL, 0);
178 amdgpu_ring_write(ring, tmp);
179 amdgpu_ring_write(ring, 0xFFFFF);
180
181 tmp = PACKET0(mmUVD_SEMA_SIGNAL_INCOMPLETE_TIMEOUT_CNTL, 0);
182 amdgpu_ring_write(ring, tmp);
183 amdgpu_ring_write(ring, 0xFFFFF);
184
185 /* Clear timeout status bits */
186 amdgpu_ring_write(ring, PACKET0(mmUVD_SEMA_TIMEOUT_STATUS, 0));
187 amdgpu_ring_write(ring, 0x8);
188
189 amdgpu_ring_write(ring, PACKET0(mmUVD_SEMA_CNTL, 0));
190 amdgpu_ring_write(ring, 3);
191
192 amdgpu_ring_commit(ring);
193
194done:
195 if (!r)
196 DRM_INFO("UVD initialized successfully.\n");
197
198 return r;
199
200}
201
202/**
203 * uvd_v5_0_hw_fini - stop the hardware block
204 *
205 * @adev: amdgpu_device pointer
206 *
207 * Stop the UVD block, mark ring as not ready any more
208 */
209static int uvd_v5_0_hw_fini(void *handle)
210{
211 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
212
213 if (RREG32(mmUVD_STATUS) != 0)
214 uvd_v5_0_stop(adev);
215
216 return 0;
217}
218
219static int uvd_v5_0_suspend(void *handle)
220{
221 int r;
222 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
223
224 r = uvd_v5_0_hw_fini(adev);
225 if (r)
226 return r;
227 uvd_v5_0_set_clockgating_state(adev, AMD_CG_STATE_GATE);
228
229 return amdgpu_uvd_suspend(adev);
230}
231
232static int uvd_v5_0_resume(void *handle)
233{
234 int r;
235 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
236
237 r = amdgpu_uvd_resume(adev);
238 if (r)
239 return r;
240
241 return uvd_v5_0_hw_init(adev);
242}
243
244/**
245 * uvd_v5_0_mc_resume - memory controller programming
246 *
247 * @adev: amdgpu_device pointer
248 *
249 * Let the UVD memory controller know it's offsets
250 */
251static void uvd_v5_0_mc_resume(struct amdgpu_device *adev)
252{
253 uint64_t offset;
254 uint32_t size;
255
256 /* programm memory controller bits 0-27 */
257 WREG32(mmUVD_LMI_VCPU_CACHE_64BIT_BAR_LOW,
258 lower_32_bits(adev->uvd.inst->gpu_addr));
259 WREG32(mmUVD_LMI_VCPU_CACHE_64BIT_BAR_HIGH,
260 upper_32_bits(adev->uvd.inst->gpu_addr));
261
262 offset = AMDGPU_UVD_FIRMWARE_OFFSET;
263 size = AMDGPU_UVD_FIRMWARE_SIZE(adev);
264 WREG32(mmUVD_VCPU_CACHE_OFFSET0, offset >> 3);
265 WREG32(mmUVD_VCPU_CACHE_SIZE0, size);
266
267 offset += size;
268 size = AMDGPU_UVD_HEAP_SIZE;
269 WREG32(mmUVD_VCPU_CACHE_OFFSET1, offset >> 3);
270 WREG32(mmUVD_VCPU_CACHE_SIZE1, size);
271
272 offset += size;
273 size = AMDGPU_UVD_STACK_SIZE +
274 (AMDGPU_UVD_SESSION_SIZE * adev->uvd.max_handles);
275 WREG32(mmUVD_VCPU_CACHE_OFFSET2, offset >> 3);
276 WREG32(mmUVD_VCPU_CACHE_SIZE2, size);
277
278 WREG32(mmUVD_UDEC_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
279 WREG32(mmUVD_UDEC_DB_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
280 WREG32(mmUVD_UDEC_DBW_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
281}
282
283/**
284 * uvd_v5_0_start - start UVD block
285 *
286 * @adev: amdgpu_device pointer
287 *
288 * Setup and start the UVD block
289 */
290static int uvd_v5_0_start(struct amdgpu_device *adev)
291{
292 struct amdgpu_ring *ring = &adev->uvd.inst->ring;
293 uint32_t rb_bufsz, tmp;
294 uint32_t lmi_swap_cntl;
295 uint32_t mp_swap_cntl;
296 int i, j, r;
297
298 /*disable DPG */
299 WREG32_P(mmUVD_POWER_STATUS, 0, ~(1 << 2));
300
301 /* disable byte swapping */
302 lmi_swap_cntl = 0;
303 mp_swap_cntl = 0;
304
305 uvd_v5_0_mc_resume(adev);
306
307 /* disable interupt */
308 WREG32_P(mmUVD_MASTINT_EN, 0, ~(1 << 1));
309
310 /* stall UMC and register bus before resetting VCPU */
311 WREG32_P(mmUVD_LMI_CTRL2, 1 << 8, ~(1 << 8));
312 mdelay(1);
313
314 /* put LMI, VCPU, RBC etc... into reset */
315 WREG32(mmUVD_SOFT_RESET, UVD_SOFT_RESET__LMI_SOFT_RESET_MASK |
316 UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK | UVD_SOFT_RESET__LBSI_SOFT_RESET_MASK |
317 UVD_SOFT_RESET__RBC_SOFT_RESET_MASK | UVD_SOFT_RESET__CSM_SOFT_RESET_MASK |
318 UVD_SOFT_RESET__CXW_SOFT_RESET_MASK | UVD_SOFT_RESET__TAP_SOFT_RESET_MASK |
319 UVD_SOFT_RESET__LMI_UMC_SOFT_RESET_MASK);
320 mdelay(5);
321
322 /* take UVD block out of reset */
323 WREG32_P(mmSRBM_SOFT_RESET, 0, ~SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK);
324 mdelay(5);
325
326 /* initialize UVD memory controller */
327 WREG32(mmUVD_LMI_CTRL, 0x40 | (1 << 8) | (1 << 13) |
328 (1 << 21) | (1 << 9) | (1 << 20));
329
330#ifdef __BIG_ENDIAN
331 /* swap (8 in 32) RB and IB */
332 lmi_swap_cntl = 0xa;
333 mp_swap_cntl = 0;
334#endif
335 WREG32(mmUVD_LMI_SWAP_CNTL, lmi_swap_cntl);
336 WREG32(mmUVD_MP_SWAP_CNTL, mp_swap_cntl);
337
338 WREG32(mmUVD_MPC_SET_MUXA0, 0x40c2040);
339 WREG32(mmUVD_MPC_SET_MUXA1, 0x0);
340 WREG32(mmUVD_MPC_SET_MUXB0, 0x40c2040);
341 WREG32(mmUVD_MPC_SET_MUXB1, 0x0);
342 WREG32(mmUVD_MPC_SET_ALU, 0);
343 WREG32(mmUVD_MPC_SET_MUX, 0x88);
344
345 /* take all subblocks out of reset, except VCPU */
346 WREG32(mmUVD_SOFT_RESET, UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
347 mdelay(5);
348
349 /* enable VCPU clock */
350 WREG32(mmUVD_VCPU_CNTL, 1 << 9);
351
352 /* enable UMC */
353 WREG32_P(mmUVD_LMI_CTRL2, 0, ~(1 << 8));
354
355 /* boot up the VCPU */
356 WREG32(mmUVD_SOFT_RESET, 0);
357 mdelay(10);
358
359 for (i = 0; i < 10; ++i) {
360 uint32_t status;
361 for (j = 0; j < 100; ++j) {
362 status = RREG32(mmUVD_STATUS);
363 if (status & 2)
364 break;
365 mdelay(10);
366 }
367 r = 0;
368 if (status & 2)
369 break;
370
371 DRM_ERROR("UVD not responding, trying to reset the VCPU!!!\n");
372 WREG32_P(mmUVD_SOFT_RESET, UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK,
373 ~UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
374 mdelay(10);
375 WREG32_P(mmUVD_SOFT_RESET, 0, ~UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
376 mdelay(10);
377 r = -1;
378 }
379
380 if (r) {
381 DRM_ERROR("UVD not responding, giving up!!!\n");
382 return r;
383 }
384 /* enable master interrupt */
385 WREG32_P(mmUVD_MASTINT_EN, 3 << 1, ~(3 << 1));
386
387 /* clear the bit 4 of UVD_STATUS */
388 WREG32_P(mmUVD_STATUS, 0, ~(2 << 1));
389
390 rb_bufsz = order_base_2(ring->ring_size);
391 tmp = 0;
392 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_BUFSZ, rb_bufsz);
393 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_BLKSZ, 1);
394 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_NO_FETCH, 1);
395 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_WPTR_POLL_EN, 0);
396 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_NO_UPDATE, 1);
397 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_RPTR_WR_EN, 1);
398 /* force RBC into idle state */
399 WREG32(mmUVD_RBC_RB_CNTL, tmp);
400
401 /* set the write pointer delay */
402 WREG32(mmUVD_RBC_RB_WPTR_CNTL, 0);
403
404 /* set the wb address */
405 WREG32(mmUVD_RBC_RB_RPTR_ADDR, (upper_32_bits(ring->gpu_addr) >> 2));
406
407 /* programm the RB_BASE for ring buffer */
408 WREG32(mmUVD_LMI_RBC_RB_64BIT_BAR_LOW,
409 lower_32_bits(ring->gpu_addr));
410 WREG32(mmUVD_LMI_RBC_RB_64BIT_BAR_HIGH,
411 upper_32_bits(ring->gpu_addr));
412
413 /* Initialize the ring buffer's read and write pointers */
414 WREG32(mmUVD_RBC_RB_RPTR, 0);
415
416 ring->wptr = RREG32(mmUVD_RBC_RB_RPTR);
417 WREG32(mmUVD_RBC_RB_WPTR, lower_32_bits(ring->wptr));
418
419 WREG32_P(mmUVD_RBC_RB_CNTL, 0, ~UVD_RBC_RB_CNTL__RB_NO_FETCH_MASK);
420
421 return 0;
422}
423
424/**
425 * uvd_v5_0_stop - stop UVD block
426 *
427 * @adev: amdgpu_device pointer
428 *
429 * stop the UVD block
430 */
431static void uvd_v5_0_stop(struct amdgpu_device *adev)
432{
433 /* force RBC into idle state */
434 WREG32(mmUVD_RBC_RB_CNTL, 0x11010101);
435
436 /* Stall UMC and register bus before resetting VCPU */
437 WREG32_P(mmUVD_LMI_CTRL2, 1 << 8, ~(1 << 8));
438 mdelay(1);
439
440 /* put VCPU into reset */
441 WREG32(mmUVD_SOFT_RESET, UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
442 mdelay(5);
443
444 /* disable VCPU clock */
445 WREG32(mmUVD_VCPU_CNTL, 0x0);
446
447 /* Unstall UMC and register bus */
448 WREG32_P(mmUVD_LMI_CTRL2, 0, ~(1 << 8));
449
450 WREG32(mmUVD_STATUS, 0);
451}
452
453/**
454 * uvd_v5_0_ring_emit_fence - emit an fence & trap command
455 *
456 * @ring: amdgpu_ring pointer
457 * @fence: fence to emit
458 *
459 * Write a fence and a trap command to the ring.
460 */
461static void uvd_v5_0_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
462 unsigned flags)
463{
464 WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
465
466 amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
467 amdgpu_ring_write(ring, seq);
468 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
469 amdgpu_ring_write(ring, addr & 0xffffffff);
470 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA1, 0));
471 amdgpu_ring_write(ring, upper_32_bits(addr) & 0xff);
472 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_CMD, 0));
473 amdgpu_ring_write(ring, 0);
474
475 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
476 amdgpu_ring_write(ring, 0);
477 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA1, 0));
478 amdgpu_ring_write(ring, 0);
479 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_CMD, 0));
480 amdgpu_ring_write(ring, 2);
481}
482
483/**
484 * uvd_v5_0_ring_test_ring - register write test
485 *
486 * @ring: amdgpu_ring pointer
487 *
488 * Test if we can successfully write to the context register
489 */
490static int uvd_v5_0_ring_test_ring(struct amdgpu_ring *ring)
491{
492 struct amdgpu_device *adev = ring->adev;
493 uint32_t tmp = 0;
494 unsigned i;
495 int r;
496
497 WREG32(mmUVD_CONTEXT_ID, 0xCAFEDEAD);
498 r = amdgpu_ring_alloc(ring, 3);
499 if (r)
500 return r;
501 amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
502 amdgpu_ring_write(ring, 0xDEADBEEF);
503 amdgpu_ring_commit(ring);
504 for (i = 0; i < adev->usec_timeout; i++) {
505 tmp = RREG32(mmUVD_CONTEXT_ID);
506 if (tmp == 0xDEADBEEF)
507 break;
508 udelay(1);
509 }
510
511 if (i >= adev->usec_timeout)
512 r = -ETIMEDOUT;
513
514 return r;
515}
516
517/**
518 * uvd_v5_0_ring_emit_ib - execute indirect buffer
519 *
520 * @ring: amdgpu_ring pointer
521 * @ib: indirect buffer to execute
522 *
523 * Write ring commands to execute the indirect buffer
524 */
525static void uvd_v5_0_ring_emit_ib(struct amdgpu_ring *ring,
526 struct amdgpu_job *job,
527 struct amdgpu_ib *ib,
528 uint32_t flags)
529{
530 amdgpu_ring_write(ring, PACKET0(mmUVD_LMI_RBC_IB_64BIT_BAR_LOW, 0));
531 amdgpu_ring_write(ring, lower_32_bits(ib->gpu_addr));
532 amdgpu_ring_write(ring, PACKET0(mmUVD_LMI_RBC_IB_64BIT_BAR_HIGH, 0));
533 amdgpu_ring_write(ring, upper_32_bits(ib->gpu_addr));
534 amdgpu_ring_write(ring, PACKET0(mmUVD_RBC_IB_SIZE, 0));
535 amdgpu_ring_write(ring, ib->length_dw);
536}
537
538static void uvd_v5_0_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count)
539{
540 int i;
541
542 WARN_ON(ring->wptr % 2 || count % 2);
543
544 for (i = 0; i < count / 2; i++) {
545 amdgpu_ring_write(ring, PACKET0(mmUVD_NO_OP, 0));
546 amdgpu_ring_write(ring, 0);
547 }
548}
549
550static bool uvd_v5_0_is_idle(void *handle)
551{
552 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
553
554 return !(RREG32(mmSRBM_STATUS) & SRBM_STATUS__UVD_BUSY_MASK);
555}
556
557static int uvd_v5_0_wait_for_idle(void *handle)
558{
559 unsigned i;
560 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
561
562 for (i = 0; i < adev->usec_timeout; i++) {
563 if (!(RREG32(mmSRBM_STATUS) & SRBM_STATUS__UVD_BUSY_MASK))
564 return 0;
565 }
566 return -ETIMEDOUT;
567}
568
569static int uvd_v5_0_soft_reset(void *handle)
570{
571 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
572
573 uvd_v5_0_stop(adev);
574
575 WREG32_P(mmSRBM_SOFT_RESET, SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK,
576 ~SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK);
577 mdelay(5);
578
579 return uvd_v5_0_start(adev);
580}
581
582static int uvd_v5_0_set_interrupt_state(struct amdgpu_device *adev,
583 struct amdgpu_irq_src *source,
584 unsigned type,
585 enum amdgpu_interrupt_state state)
586{
587 // TODO
588 return 0;
589}
590
591static int uvd_v5_0_process_interrupt(struct amdgpu_device *adev,
592 struct amdgpu_irq_src *source,
593 struct amdgpu_iv_entry *entry)
594{
595 DRM_DEBUG("IH: UVD TRAP\n");
596 amdgpu_fence_process(&adev->uvd.inst->ring);
597 return 0;
598}
599
600static void uvd_v5_0_enable_clock_gating(struct amdgpu_device *adev, bool enable)
601{
602 uint32_t data1, data3, suvd_flags;
603
604 data1 = RREG32(mmUVD_SUVD_CGC_GATE);
605 data3 = RREG32(mmUVD_CGC_GATE);
606
607 suvd_flags = UVD_SUVD_CGC_GATE__SRE_MASK |
608 UVD_SUVD_CGC_GATE__SIT_MASK |
609 UVD_SUVD_CGC_GATE__SMP_MASK |
610 UVD_SUVD_CGC_GATE__SCM_MASK |
611 UVD_SUVD_CGC_GATE__SDB_MASK;
612
613 if (enable) {
614 data3 |= (UVD_CGC_GATE__SYS_MASK |
615 UVD_CGC_GATE__UDEC_MASK |
616 UVD_CGC_GATE__MPEG2_MASK |
617 UVD_CGC_GATE__RBC_MASK |
618 UVD_CGC_GATE__LMI_MC_MASK |
619 UVD_CGC_GATE__IDCT_MASK |
620 UVD_CGC_GATE__MPRD_MASK |
621 UVD_CGC_GATE__MPC_MASK |
622 UVD_CGC_GATE__LBSI_MASK |
623 UVD_CGC_GATE__LRBBM_MASK |
624 UVD_CGC_GATE__UDEC_RE_MASK |
625 UVD_CGC_GATE__UDEC_CM_MASK |
626 UVD_CGC_GATE__UDEC_IT_MASK |
627 UVD_CGC_GATE__UDEC_DB_MASK |
628 UVD_CGC_GATE__UDEC_MP_MASK |
629 UVD_CGC_GATE__WCB_MASK |
630 UVD_CGC_GATE__JPEG_MASK |
631 UVD_CGC_GATE__SCPU_MASK);
632 /* only in pg enabled, we can gate clock to vcpu*/
633 if (adev->pg_flags & AMD_PG_SUPPORT_UVD)
634 data3 |= UVD_CGC_GATE__VCPU_MASK;
635 data3 &= ~UVD_CGC_GATE__REGS_MASK;
636 data1 |= suvd_flags;
637 } else {
638 data3 = 0;
639 data1 = 0;
640 }
641
642 WREG32(mmUVD_SUVD_CGC_GATE, data1);
643 WREG32(mmUVD_CGC_GATE, data3);
644}
645
646static void uvd_v5_0_set_sw_clock_gating(struct amdgpu_device *adev)
647{
648 uint32_t data, data2;
649
650 data = RREG32(mmUVD_CGC_CTRL);
651 data2 = RREG32(mmUVD_SUVD_CGC_CTRL);
652
653
654 data &= ~(UVD_CGC_CTRL__CLK_OFF_DELAY_MASK |
655 UVD_CGC_CTRL__CLK_GATE_DLY_TIMER_MASK);
656
657
658 data |= UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK |
659 (1 << REG_FIELD_SHIFT(UVD_CGC_CTRL, CLK_GATE_DLY_TIMER)) |
660 (4 << REG_FIELD_SHIFT(UVD_CGC_CTRL, CLK_OFF_DELAY));
661
662 data &= ~(UVD_CGC_CTRL__UDEC_RE_MODE_MASK |
663 UVD_CGC_CTRL__UDEC_CM_MODE_MASK |
664 UVD_CGC_CTRL__UDEC_IT_MODE_MASK |
665 UVD_CGC_CTRL__UDEC_DB_MODE_MASK |
666 UVD_CGC_CTRL__UDEC_MP_MODE_MASK |
667 UVD_CGC_CTRL__SYS_MODE_MASK |
668 UVD_CGC_CTRL__UDEC_MODE_MASK |
669 UVD_CGC_CTRL__MPEG2_MODE_MASK |
670 UVD_CGC_CTRL__REGS_MODE_MASK |
671 UVD_CGC_CTRL__RBC_MODE_MASK |
672 UVD_CGC_CTRL__LMI_MC_MODE_MASK |
673 UVD_CGC_CTRL__LMI_UMC_MODE_MASK |
674 UVD_CGC_CTRL__IDCT_MODE_MASK |
675 UVD_CGC_CTRL__MPRD_MODE_MASK |
676 UVD_CGC_CTRL__MPC_MODE_MASK |
677 UVD_CGC_CTRL__LBSI_MODE_MASK |
678 UVD_CGC_CTRL__LRBBM_MODE_MASK |
679 UVD_CGC_CTRL__WCB_MODE_MASK |
680 UVD_CGC_CTRL__VCPU_MODE_MASK |
681 UVD_CGC_CTRL__JPEG_MODE_MASK |
682 UVD_CGC_CTRL__SCPU_MODE_MASK);
683 data2 &= ~(UVD_SUVD_CGC_CTRL__SRE_MODE_MASK |
684 UVD_SUVD_CGC_CTRL__SIT_MODE_MASK |
685 UVD_SUVD_CGC_CTRL__SMP_MODE_MASK |
686 UVD_SUVD_CGC_CTRL__SCM_MODE_MASK |
687 UVD_SUVD_CGC_CTRL__SDB_MODE_MASK);
688
689 WREG32(mmUVD_CGC_CTRL, data);
690 WREG32(mmUVD_SUVD_CGC_CTRL, data2);
691}
692
693#if 0
694static void uvd_v5_0_set_hw_clock_gating(struct amdgpu_device *adev)
695{
696 uint32_t data, data1, cgc_flags, suvd_flags;
697
698 data = RREG32(mmUVD_CGC_GATE);
699 data1 = RREG32(mmUVD_SUVD_CGC_GATE);
700
701 cgc_flags = UVD_CGC_GATE__SYS_MASK |
702 UVD_CGC_GATE__UDEC_MASK |
703 UVD_CGC_GATE__MPEG2_MASK |
704 UVD_CGC_GATE__RBC_MASK |
705 UVD_CGC_GATE__LMI_MC_MASK |
706 UVD_CGC_GATE__IDCT_MASK |
707 UVD_CGC_GATE__MPRD_MASK |
708 UVD_CGC_GATE__MPC_MASK |
709 UVD_CGC_GATE__LBSI_MASK |
710 UVD_CGC_GATE__LRBBM_MASK |
711 UVD_CGC_GATE__UDEC_RE_MASK |
712 UVD_CGC_GATE__UDEC_CM_MASK |
713 UVD_CGC_GATE__UDEC_IT_MASK |
714 UVD_CGC_GATE__UDEC_DB_MASK |
715 UVD_CGC_GATE__UDEC_MP_MASK |
716 UVD_CGC_GATE__WCB_MASK |
717 UVD_CGC_GATE__VCPU_MASK |
718 UVD_CGC_GATE__SCPU_MASK;
719
720 suvd_flags = UVD_SUVD_CGC_GATE__SRE_MASK |
721 UVD_SUVD_CGC_GATE__SIT_MASK |
722 UVD_SUVD_CGC_GATE__SMP_MASK |
723 UVD_SUVD_CGC_GATE__SCM_MASK |
724 UVD_SUVD_CGC_GATE__SDB_MASK;
725
726 data |= cgc_flags;
727 data1 |= suvd_flags;
728
729 WREG32(mmUVD_CGC_GATE, data);
730 WREG32(mmUVD_SUVD_CGC_GATE, data1);
731}
732#endif
733
734static void uvd_v5_0_enable_mgcg(struct amdgpu_device *adev,
735 bool enable)
736{
737 u32 orig, data;
738
739 if (enable && (adev->cg_flags & AMD_CG_SUPPORT_UVD_MGCG)) {
740 data = RREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL);
741 data |= 0xfff;
742 WREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL, data);
743
744 orig = data = RREG32(mmUVD_CGC_CTRL);
745 data |= UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK;
746 if (orig != data)
747 WREG32(mmUVD_CGC_CTRL, data);
748 } else {
749 data = RREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL);
750 data &= ~0xfff;
751 WREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL, data);
752
753 orig = data = RREG32(mmUVD_CGC_CTRL);
754 data &= ~UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK;
755 if (orig != data)
756 WREG32(mmUVD_CGC_CTRL, data);
757 }
758}
759
760static int uvd_v5_0_set_clockgating_state(void *handle,
761 enum amd_clockgating_state state)
762{
763 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
764 bool enable = (state == AMD_CG_STATE_GATE);
765
766 if (enable) {
767 /* wait for STATUS to clear */
768 if (uvd_v5_0_wait_for_idle(handle))
769 return -EBUSY;
770 uvd_v5_0_enable_clock_gating(adev, true);
771
772 /* enable HW gates because UVD is idle */
773/* uvd_v5_0_set_hw_clock_gating(adev); */
774 } else {
775 uvd_v5_0_enable_clock_gating(adev, false);
776 }
777
778 uvd_v5_0_set_sw_clock_gating(adev);
779 return 0;
780}
781
782static int uvd_v5_0_set_powergating_state(void *handle,
783 enum amd_powergating_state state)
784{
785 /* This doesn't actually powergate the UVD block.
786 * That's done in the dpm code via the SMC. This
787 * just re-inits the block as necessary. The actual
788 * gating still happens in the dpm code. We should
789 * revisit this when there is a cleaner line between
790 * the smc and the hw blocks
791 */
792 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
793 int ret = 0;
794
795 if (state == AMD_PG_STATE_GATE) {
796 uvd_v5_0_stop(adev);
797 } else {
798 ret = uvd_v5_0_start(adev);
799 if (ret)
800 goto out;
801 }
802
803out:
804 return ret;
805}
806
807static void uvd_v5_0_get_clockgating_state(void *handle, u32 *flags)
808{
809 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
810 int data;
811
812 mutex_lock(&adev->pm.mutex);
813
814 if (RREG32_SMC(ixCURRENT_PG_STATUS) &
815 CURRENT_PG_STATUS__UVD_PG_STATUS_MASK) {
816 DRM_INFO("Cannot get clockgating state when UVD is powergated.\n");
817 goto out;
818 }
819
820 /* AMD_CG_SUPPORT_UVD_MGCG */
821 data = RREG32(mmUVD_CGC_CTRL);
822 if (data & UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK)
823 *flags |= AMD_CG_SUPPORT_UVD_MGCG;
824
825out:
826 mutex_unlock(&adev->pm.mutex);
827}
828
829static const struct amd_ip_funcs uvd_v5_0_ip_funcs = {
830 .name = "uvd_v5_0",
831 .early_init = uvd_v5_0_early_init,
832 .late_init = NULL,
833 .sw_init = uvd_v5_0_sw_init,
834 .sw_fini = uvd_v5_0_sw_fini,
835 .hw_init = uvd_v5_0_hw_init,
836 .hw_fini = uvd_v5_0_hw_fini,
837 .suspend = uvd_v5_0_suspend,
838 .resume = uvd_v5_0_resume,
839 .is_idle = uvd_v5_0_is_idle,
840 .wait_for_idle = uvd_v5_0_wait_for_idle,
841 .soft_reset = uvd_v5_0_soft_reset,
842 .set_clockgating_state = uvd_v5_0_set_clockgating_state,
843 .set_powergating_state = uvd_v5_0_set_powergating_state,
844 .get_clockgating_state = uvd_v5_0_get_clockgating_state,
845};
846
847static const struct amdgpu_ring_funcs uvd_v5_0_ring_funcs = {
848 .type = AMDGPU_RING_TYPE_UVD,
849 .align_mask = 0xf,
850 .support_64bit_ptrs = false,
851 .no_user_fence = true,
852 .get_rptr = uvd_v5_0_ring_get_rptr,
853 .get_wptr = uvd_v5_0_ring_get_wptr,
854 .set_wptr = uvd_v5_0_ring_set_wptr,
855 .parse_cs = amdgpu_uvd_ring_parse_cs,
856 .emit_frame_size =
857 14, /* uvd_v5_0_ring_emit_fence x1 no user fence */
858 .emit_ib_size = 6, /* uvd_v5_0_ring_emit_ib */
859 .emit_ib = uvd_v5_0_ring_emit_ib,
860 .emit_fence = uvd_v5_0_ring_emit_fence,
861 .test_ring = uvd_v5_0_ring_test_ring,
862 .test_ib = amdgpu_uvd_ring_test_ib,
863 .insert_nop = uvd_v5_0_ring_insert_nop,
864 .pad_ib = amdgpu_ring_generic_pad_ib,
865 .begin_use = amdgpu_uvd_ring_begin_use,
866 .end_use = amdgpu_uvd_ring_end_use,
867};
868
869static void uvd_v5_0_set_ring_funcs(struct amdgpu_device *adev)
870{
871 adev->uvd.inst->ring.funcs = &uvd_v5_0_ring_funcs;
872}
873
874static const struct amdgpu_irq_src_funcs uvd_v5_0_irq_funcs = {
875 .set = uvd_v5_0_set_interrupt_state,
876 .process = uvd_v5_0_process_interrupt,
877};
878
879static void uvd_v5_0_set_irq_funcs(struct amdgpu_device *adev)
880{
881 adev->uvd.inst->irq.num_types = 1;
882 adev->uvd.inst->irq.funcs = &uvd_v5_0_irq_funcs;
883}
884
885const struct amdgpu_ip_block_version uvd_v5_0_ip_block =
886{
887 .type = AMD_IP_BLOCK_TYPE_UVD,
888 .major = 5,
889 .minor = 0,
890 .rev = 0,
891 .funcs = &uvd_v5_0_ip_funcs,
892};
1/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: Christian König <christian.koenig@amd.com>
23 */
24
25#include <linux/delay.h>
26#include <linux/firmware.h>
27
28#include "amdgpu.h"
29#include "amdgpu_uvd.h"
30#include "vid.h"
31#include "uvd/uvd_5_0_d.h"
32#include "uvd/uvd_5_0_sh_mask.h"
33#include "oss/oss_2_0_d.h"
34#include "oss/oss_2_0_sh_mask.h"
35#include "bif/bif_5_0_d.h"
36#include "vi.h"
37#include "smu/smu_7_1_2_d.h"
38#include "smu/smu_7_1_2_sh_mask.h"
39#include "ivsrcid/ivsrcid_vislands30.h"
40
41static void uvd_v5_0_set_ring_funcs(struct amdgpu_device *adev);
42static void uvd_v5_0_set_irq_funcs(struct amdgpu_device *adev);
43static int uvd_v5_0_start(struct amdgpu_device *adev);
44static void uvd_v5_0_stop(struct amdgpu_device *adev);
45static int uvd_v5_0_set_clockgating_state(void *handle,
46 enum amd_clockgating_state state);
47static void uvd_v5_0_enable_mgcg(struct amdgpu_device *adev,
48 bool enable);
49/**
50 * uvd_v5_0_ring_get_rptr - get read pointer
51 *
52 * @ring: amdgpu_ring pointer
53 *
54 * Returns the current hardware read pointer
55 */
56static uint64_t uvd_v5_0_ring_get_rptr(struct amdgpu_ring *ring)
57{
58 struct amdgpu_device *adev = ring->adev;
59
60 return RREG32(mmUVD_RBC_RB_RPTR);
61}
62
63/**
64 * uvd_v5_0_ring_get_wptr - get write pointer
65 *
66 * @ring: amdgpu_ring pointer
67 *
68 * Returns the current hardware write pointer
69 */
70static uint64_t uvd_v5_0_ring_get_wptr(struct amdgpu_ring *ring)
71{
72 struct amdgpu_device *adev = ring->adev;
73
74 return RREG32(mmUVD_RBC_RB_WPTR);
75}
76
77/**
78 * uvd_v5_0_ring_set_wptr - set write pointer
79 *
80 * @ring: amdgpu_ring pointer
81 *
82 * Commits the write pointer to the hardware
83 */
84static void uvd_v5_0_ring_set_wptr(struct amdgpu_ring *ring)
85{
86 struct amdgpu_device *adev = ring->adev;
87
88 WREG32(mmUVD_RBC_RB_WPTR, lower_32_bits(ring->wptr));
89}
90
91static int uvd_v5_0_early_init(struct amdgpu_ip_block *ip_block)
92{
93 struct amdgpu_device *adev = ip_block->adev;
94 adev->uvd.num_uvd_inst = 1;
95
96 uvd_v5_0_set_ring_funcs(adev);
97 uvd_v5_0_set_irq_funcs(adev);
98
99 return 0;
100}
101
102static int uvd_v5_0_sw_init(struct amdgpu_ip_block *ip_block)
103{
104 struct amdgpu_ring *ring;
105 struct amdgpu_device *adev = ip_block->adev;
106 int r;
107
108 /* UVD TRAP */
109 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, VISLANDS30_IV_SRCID_UVD_SYSTEM_MESSAGE, &adev->uvd.inst->irq);
110 if (r)
111 return r;
112
113 r = amdgpu_uvd_sw_init(adev);
114 if (r)
115 return r;
116
117 ring = &adev->uvd.inst->ring;
118 sprintf(ring->name, "uvd");
119 r = amdgpu_ring_init(adev, ring, 512, &adev->uvd.inst->irq, 0,
120 AMDGPU_RING_PRIO_DEFAULT, NULL);
121 if (r)
122 return r;
123
124 r = amdgpu_uvd_resume(adev);
125 if (r)
126 return r;
127
128 return r;
129}
130
131static int uvd_v5_0_sw_fini(struct amdgpu_ip_block *ip_block)
132{
133 int r;
134 struct amdgpu_device *adev = ip_block->adev;
135
136 r = amdgpu_uvd_suspend(adev);
137 if (r)
138 return r;
139
140 return amdgpu_uvd_sw_fini(adev);
141}
142
143/**
144 * uvd_v5_0_hw_init - start and test UVD block
145 *
146 * @ip_block: Pointer to the amdgpu_ip_block for this hw instance.
147 *
148 * Initialize the hardware, boot up the VCPU and do some testing
149 */
150static int uvd_v5_0_hw_init(struct amdgpu_ip_block *ip_block)
151{
152 struct amdgpu_device *adev = ip_block->adev;
153 struct amdgpu_ring *ring = &adev->uvd.inst->ring;
154 uint32_t tmp;
155 int r;
156
157 amdgpu_asic_set_uvd_clocks(adev, 10000, 10000);
158 uvd_v5_0_set_clockgating_state(adev, AMD_CG_STATE_UNGATE);
159 uvd_v5_0_enable_mgcg(adev, true);
160
161 r = amdgpu_ring_test_helper(ring);
162 if (r)
163 goto done;
164
165 r = amdgpu_ring_alloc(ring, 10);
166 if (r) {
167 DRM_ERROR("amdgpu: ring failed to lock UVD ring (%d).\n", r);
168 goto done;
169 }
170
171 tmp = PACKET0(mmUVD_SEMA_WAIT_FAULT_TIMEOUT_CNTL, 0);
172 amdgpu_ring_write(ring, tmp);
173 amdgpu_ring_write(ring, 0xFFFFF);
174
175 tmp = PACKET0(mmUVD_SEMA_WAIT_INCOMPLETE_TIMEOUT_CNTL, 0);
176 amdgpu_ring_write(ring, tmp);
177 amdgpu_ring_write(ring, 0xFFFFF);
178
179 tmp = PACKET0(mmUVD_SEMA_SIGNAL_INCOMPLETE_TIMEOUT_CNTL, 0);
180 amdgpu_ring_write(ring, tmp);
181 amdgpu_ring_write(ring, 0xFFFFF);
182
183 /* Clear timeout status bits */
184 amdgpu_ring_write(ring, PACKET0(mmUVD_SEMA_TIMEOUT_STATUS, 0));
185 amdgpu_ring_write(ring, 0x8);
186
187 amdgpu_ring_write(ring, PACKET0(mmUVD_SEMA_CNTL, 0));
188 amdgpu_ring_write(ring, 3);
189
190 amdgpu_ring_commit(ring);
191
192done:
193 if (!r)
194 DRM_INFO("UVD initialized successfully.\n");
195
196 return r;
197
198}
199
200/**
201 * uvd_v5_0_hw_fini - stop the hardware block
202 *
203 * @ip_block: Pointer to the amdgpu_ip_block for this hw instance.
204 *
205 * Stop the UVD block, mark ring as not ready any more
206 */
207static int uvd_v5_0_hw_fini(struct amdgpu_ip_block *ip_block)
208{
209 struct amdgpu_device *adev = ip_block->adev;
210
211 cancel_delayed_work_sync(&adev->uvd.idle_work);
212
213 if (RREG32(mmUVD_STATUS) != 0)
214 uvd_v5_0_stop(adev);
215
216 return 0;
217}
218
219static int uvd_v5_0_prepare_suspend(struct amdgpu_ip_block *ip_block)
220{
221 struct amdgpu_device *adev = ip_block->adev;
222
223 return amdgpu_uvd_prepare_suspend(adev);
224}
225
226static int uvd_v5_0_suspend(struct amdgpu_ip_block *ip_block)
227{
228 int r;
229 struct amdgpu_device *adev = ip_block->adev;
230
231 /*
232 * Proper cleanups before halting the HW engine:
233 * - cancel the delayed idle work
234 * - enable powergating
235 * - enable clockgating
236 * - disable dpm
237 *
238 * TODO: to align with the VCN implementation, move the
239 * jobs for clockgating/powergating/dpm setting to
240 * ->set_powergating_state().
241 */
242 cancel_delayed_work_sync(&adev->uvd.idle_work);
243
244 if (adev->pm.dpm_enabled) {
245 amdgpu_dpm_enable_uvd(adev, false);
246 } else {
247 amdgpu_asic_set_uvd_clocks(adev, 0, 0);
248 /* shutdown the UVD block */
249 amdgpu_device_ip_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_UVD,
250 AMD_PG_STATE_GATE);
251 amdgpu_device_ip_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_UVD,
252 AMD_CG_STATE_GATE);
253 }
254
255 r = uvd_v5_0_hw_fini(ip_block);
256 if (r)
257 return r;
258
259 return amdgpu_uvd_suspend(adev);
260}
261
262static int uvd_v5_0_resume(struct amdgpu_ip_block *ip_block)
263{
264 int r;
265
266 r = amdgpu_uvd_resume(ip_block->adev);
267 if (r)
268 return r;
269
270 return uvd_v5_0_hw_init(ip_block);
271}
272
273/**
274 * uvd_v5_0_mc_resume - memory controller programming
275 *
276 * @adev: amdgpu_device pointer
277 *
278 * Let the UVD memory controller know it's offsets
279 */
280static void uvd_v5_0_mc_resume(struct amdgpu_device *adev)
281{
282 uint64_t offset;
283 uint32_t size;
284
285 /* program memory controller bits 0-27 */
286 WREG32(mmUVD_LMI_VCPU_CACHE_64BIT_BAR_LOW,
287 lower_32_bits(adev->uvd.inst->gpu_addr));
288 WREG32(mmUVD_LMI_VCPU_CACHE_64BIT_BAR_HIGH,
289 upper_32_bits(adev->uvd.inst->gpu_addr));
290
291 offset = AMDGPU_UVD_FIRMWARE_OFFSET;
292 size = AMDGPU_UVD_FIRMWARE_SIZE(adev);
293 WREG32(mmUVD_VCPU_CACHE_OFFSET0, offset >> 3);
294 WREG32(mmUVD_VCPU_CACHE_SIZE0, size);
295
296 offset += size;
297 size = AMDGPU_UVD_HEAP_SIZE;
298 WREG32(mmUVD_VCPU_CACHE_OFFSET1, offset >> 3);
299 WREG32(mmUVD_VCPU_CACHE_SIZE1, size);
300
301 offset += size;
302 size = AMDGPU_UVD_STACK_SIZE +
303 (AMDGPU_UVD_SESSION_SIZE * adev->uvd.max_handles);
304 WREG32(mmUVD_VCPU_CACHE_OFFSET2, offset >> 3);
305 WREG32(mmUVD_VCPU_CACHE_SIZE2, size);
306
307 WREG32(mmUVD_UDEC_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
308 WREG32(mmUVD_UDEC_DB_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
309 WREG32(mmUVD_UDEC_DBW_ADDR_CONFIG, adev->gfx.config.gb_addr_config);
310}
311
312/**
313 * uvd_v5_0_start - start UVD block
314 *
315 * @adev: amdgpu_device pointer
316 *
317 * Setup and start the UVD block
318 */
319static int uvd_v5_0_start(struct amdgpu_device *adev)
320{
321 struct amdgpu_ring *ring = &adev->uvd.inst->ring;
322 uint32_t rb_bufsz, tmp;
323 uint32_t lmi_swap_cntl;
324 uint32_t mp_swap_cntl;
325 int i, j, r;
326
327 /*disable DPG */
328 WREG32_P(mmUVD_POWER_STATUS, 0, ~(1 << 2));
329
330 /* disable byte swapping */
331 lmi_swap_cntl = 0;
332 mp_swap_cntl = 0;
333
334 uvd_v5_0_mc_resume(adev);
335
336 /* disable interupt */
337 WREG32_P(mmUVD_MASTINT_EN, 0, ~(1 << 1));
338
339 /* stall UMC and register bus before resetting VCPU */
340 WREG32_P(mmUVD_LMI_CTRL2, 1 << 8, ~(1 << 8));
341 mdelay(1);
342
343 /* put LMI, VCPU, RBC etc... into reset */
344 WREG32(mmUVD_SOFT_RESET, UVD_SOFT_RESET__LMI_SOFT_RESET_MASK |
345 UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK | UVD_SOFT_RESET__LBSI_SOFT_RESET_MASK |
346 UVD_SOFT_RESET__RBC_SOFT_RESET_MASK | UVD_SOFT_RESET__CSM_SOFT_RESET_MASK |
347 UVD_SOFT_RESET__CXW_SOFT_RESET_MASK | UVD_SOFT_RESET__TAP_SOFT_RESET_MASK |
348 UVD_SOFT_RESET__LMI_UMC_SOFT_RESET_MASK);
349 mdelay(5);
350
351 /* take UVD block out of reset */
352 WREG32_P(mmSRBM_SOFT_RESET, 0, ~SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK);
353 mdelay(5);
354
355 /* initialize UVD memory controller */
356 WREG32(mmUVD_LMI_CTRL, 0x40 | (1 << 8) | (1 << 13) |
357 (1 << 21) | (1 << 9) | (1 << 20));
358
359#ifdef __BIG_ENDIAN
360 /* swap (8 in 32) RB and IB */
361 lmi_swap_cntl = 0xa;
362 mp_swap_cntl = 0;
363#endif
364 WREG32(mmUVD_LMI_SWAP_CNTL, lmi_swap_cntl);
365 WREG32(mmUVD_MP_SWAP_CNTL, mp_swap_cntl);
366
367 WREG32(mmUVD_MPC_SET_MUXA0, 0x40c2040);
368 WREG32(mmUVD_MPC_SET_MUXA1, 0x0);
369 WREG32(mmUVD_MPC_SET_MUXB0, 0x40c2040);
370 WREG32(mmUVD_MPC_SET_MUXB1, 0x0);
371 WREG32(mmUVD_MPC_SET_ALU, 0);
372 WREG32(mmUVD_MPC_SET_MUX, 0x88);
373
374 /* take all subblocks out of reset, except VCPU */
375 WREG32(mmUVD_SOFT_RESET, UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
376 mdelay(5);
377
378 /* enable VCPU clock */
379 WREG32(mmUVD_VCPU_CNTL, 1 << 9);
380
381 /* enable UMC */
382 WREG32_P(mmUVD_LMI_CTRL2, 0, ~(1 << 8));
383
384 /* boot up the VCPU */
385 WREG32(mmUVD_SOFT_RESET, 0);
386 mdelay(10);
387
388 for (i = 0; i < 10; ++i) {
389 uint32_t status;
390 for (j = 0; j < 100; ++j) {
391 status = RREG32(mmUVD_STATUS);
392 if (status & 2)
393 break;
394 mdelay(10);
395 }
396 r = 0;
397 if (status & 2)
398 break;
399
400 DRM_ERROR("UVD not responding, trying to reset the VCPU!!!\n");
401 WREG32_P(mmUVD_SOFT_RESET, UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK,
402 ~UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
403 mdelay(10);
404 WREG32_P(mmUVD_SOFT_RESET, 0, ~UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
405 mdelay(10);
406 r = -1;
407 }
408
409 if (r) {
410 DRM_ERROR("UVD not responding, giving up!!!\n");
411 return r;
412 }
413 /* enable master interrupt */
414 WREG32_P(mmUVD_MASTINT_EN, 3 << 1, ~(3 << 1));
415
416 /* clear the bit 4 of UVD_STATUS */
417 WREG32_P(mmUVD_STATUS, 0, ~(2 << 1));
418
419 rb_bufsz = order_base_2(ring->ring_size);
420 tmp = 0;
421 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_BUFSZ, rb_bufsz);
422 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_BLKSZ, 1);
423 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_NO_FETCH, 1);
424 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_WPTR_POLL_EN, 0);
425 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_NO_UPDATE, 1);
426 tmp = REG_SET_FIELD(tmp, UVD_RBC_RB_CNTL, RB_RPTR_WR_EN, 1);
427 /* force RBC into idle state */
428 WREG32(mmUVD_RBC_RB_CNTL, tmp);
429
430 /* set the write pointer delay */
431 WREG32(mmUVD_RBC_RB_WPTR_CNTL, 0);
432
433 /* set the wb address */
434 WREG32(mmUVD_RBC_RB_RPTR_ADDR, (upper_32_bits(ring->gpu_addr) >> 2));
435
436 /* program the RB_BASE for ring buffer */
437 WREG32(mmUVD_LMI_RBC_RB_64BIT_BAR_LOW,
438 lower_32_bits(ring->gpu_addr));
439 WREG32(mmUVD_LMI_RBC_RB_64BIT_BAR_HIGH,
440 upper_32_bits(ring->gpu_addr));
441
442 /* Initialize the ring buffer's read and write pointers */
443 WREG32(mmUVD_RBC_RB_RPTR, 0);
444
445 ring->wptr = RREG32(mmUVD_RBC_RB_RPTR);
446 WREG32(mmUVD_RBC_RB_WPTR, lower_32_bits(ring->wptr));
447
448 WREG32_P(mmUVD_RBC_RB_CNTL, 0, ~UVD_RBC_RB_CNTL__RB_NO_FETCH_MASK);
449
450 return 0;
451}
452
453/**
454 * uvd_v5_0_stop - stop UVD block
455 *
456 * @adev: amdgpu_device pointer
457 *
458 * stop the UVD block
459 */
460static void uvd_v5_0_stop(struct amdgpu_device *adev)
461{
462 /* force RBC into idle state */
463 WREG32(mmUVD_RBC_RB_CNTL, 0x11010101);
464
465 /* Stall UMC and register bus before resetting VCPU */
466 WREG32_P(mmUVD_LMI_CTRL2, 1 << 8, ~(1 << 8));
467 mdelay(1);
468
469 /* put VCPU into reset */
470 WREG32(mmUVD_SOFT_RESET, UVD_SOFT_RESET__VCPU_SOFT_RESET_MASK);
471 mdelay(5);
472
473 /* disable VCPU clock */
474 WREG32(mmUVD_VCPU_CNTL, 0x0);
475
476 /* Unstall UMC and register bus */
477 WREG32_P(mmUVD_LMI_CTRL2, 0, ~(1 << 8));
478
479 WREG32(mmUVD_STATUS, 0);
480}
481
482/**
483 * uvd_v5_0_ring_emit_fence - emit an fence & trap command
484 *
485 * @ring: amdgpu_ring pointer
486 * @addr: address
487 * @seq: sequence number
488 * @flags: fence related flags
489 *
490 * Write a fence and a trap command to the ring.
491 */
492static void uvd_v5_0_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
493 unsigned flags)
494{
495 WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
496
497 amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
498 amdgpu_ring_write(ring, seq);
499 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
500 amdgpu_ring_write(ring, addr & 0xffffffff);
501 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA1, 0));
502 amdgpu_ring_write(ring, upper_32_bits(addr) & 0xff);
503 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_CMD, 0));
504 amdgpu_ring_write(ring, 0);
505
506 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA0, 0));
507 amdgpu_ring_write(ring, 0);
508 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_DATA1, 0));
509 amdgpu_ring_write(ring, 0);
510 amdgpu_ring_write(ring, PACKET0(mmUVD_GPCOM_VCPU_CMD, 0));
511 amdgpu_ring_write(ring, 2);
512}
513
514/**
515 * uvd_v5_0_ring_test_ring - register write test
516 *
517 * @ring: amdgpu_ring pointer
518 *
519 * Test if we can successfully write to the context register
520 */
521static int uvd_v5_0_ring_test_ring(struct amdgpu_ring *ring)
522{
523 struct amdgpu_device *adev = ring->adev;
524 uint32_t tmp = 0;
525 unsigned i;
526 int r;
527
528 WREG32(mmUVD_CONTEXT_ID, 0xCAFEDEAD);
529 r = amdgpu_ring_alloc(ring, 3);
530 if (r)
531 return r;
532 amdgpu_ring_write(ring, PACKET0(mmUVD_CONTEXT_ID, 0));
533 amdgpu_ring_write(ring, 0xDEADBEEF);
534 amdgpu_ring_commit(ring);
535 for (i = 0; i < adev->usec_timeout; i++) {
536 tmp = RREG32(mmUVD_CONTEXT_ID);
537 if (tmp == 0xDEADBEEF)
538 break;
539 udelay(1);
540 }
541
542 if (i >= adev->usec_timeout)
543 r = -ETIMEDOUT;
544
545 return r;
546}
547
548/**
549 * uvd_v5_0_ring_emit_ib - execute indirect buffer
550 *
551 * @ring: amdgpu_ring pointer
552 * @job: job to retrieve vmid from
553 * @ib: indirect buffer to execute
554 * @flags: unused
555 *
556 * Write ring commands to execute the indirect buffer
557 */
558static void uvd_v5_0_ring_emit_ib(struct amdgpu_ring *ring,
559 struct amdgpu_job *job,
560 struct amdgpu_ib *ib,
561 uint32_t flags)
562{
563 amdgpu_ring_write(ring, PACKET0(mmUVD_LMI_RBC_IB_64BIT_BAR_LOW, 0));
564 amdgpu_ring_write(ring, lower_32_bits(ib->gpu_addr));
565 amdgpu_ring_write(ring, PACKET0(mmUVD_LMI_RBC_IB_64BIT_BAR_HIGH, 0));
566 amdgpu_ring_write(ring, upper_32_bits(ib->gpu_addr));
567 amdgpu_ring_write(ring, PACKET0(mmUVD_RBC_IB_SIZE, 0));
568 amdgpu_ring_write(ring, ib->length_dw);
569}
570
571static void uvd_v5_0_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count)
572{
573 int i;
574
575 WARN_ON(ring->wptr % 2 || count % 2);
576
577 for (i = 0; i < count / 2; i++) {
578 amdgpu_ring_write(ring, PACKET0(mmUVD_NO_OP, 0));
579 amdgpu_ring_write(ring, 0);
580 }
581}
582
583static bool uvd_v5_0_is_idle(void *handle)
584{
585 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
586
587 return !(RREG32(mmSRBM_STATUS) & SRBM_STATUS__UVD_BUSY_MASK);
588}
589
590static int uvd_v5_0_wait_for_idle(struct amdgpu_ip_block *ip_block)
591{
592 unsigned i;
593 struct amdgpu_device *adev = ip_block->adev;
594
595 for (i = 0; i < adev->usec_timeout; i++) {
596 if (!(RREG32(mmSRBM_STATUS) & SRBM_STATUS__UVD_BUSY_MASK))
597 return 0;
598 }
599 return -ETIMEDOUT;
600}
601
602static int uvd_v5_0_soft_reset(struct amdgpu_ip_block *ip_block)
603{
604 struct amdgpu_device *adev = ip_block->adev;
605
606 uvd_v5_0_stop(adev);
607
608 WREG32_P(mmSRBM_SOFT_RESET, SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK,
609 ~SRBM_SOFT_RESET__SOFT_RESET_UVD_MASK);
610 mdelay(5);
611
612 return uvd_v5_0_start(adev);
613}
614
615static int uvd_v5_0_set_interrupt_state(struct amdgpu_device *adev,
616 struct amdgpu_irq_src *source,
617 unsigned type,
618 enum amdgpu_interrupt_state state)
619{
620 // TODO
621 return 0;
622}
623
624static int uvd_v5_0_process_interrupt(struct amdgpu_device *adev,
625 struct amdgpu_irq_src *source,
626 struct amdgpu_iv_entry *entry)
627{
628 DRM_DEBUG("IH: UVD TRAP\n");
629 amdgpu_fence_process(&adev->uvd.inst->ring);
630 return 0;
631}
632
633static void uvd_v5_0_enable_clock_gating(struct amdgpu_device *adev, bool enable)
634{
635 uint32_t data1, data3, suvd_flags;
636
637 data1 = RREG32(mmUVD_SUVD_CGC_GATE);
638 data3 = RREG32(mmUVD_CGC_GATE);
639
640 suvd_flags = UVD_SUVD_CGC_GATE__SRE_MASK |
641 UVD_SUVD_CGC_GATE__SIT_MASK |
642 UVD_SUVD_CGC_GATE__SMP_MASK |
643 UVD_SUVD_CGC_GATE__SCM_MASK |
644 UVD_SUVD_CGC_GATE__SDB_MASK;
645
646 if (enable) {
647 data3 |= (UVD_CGC_GATE__SYS_MASK |
648 UVD_CGC_GATE__UDEC_MASK |
649 UVD_CGC_GATE__MPEG2_MASK |
650 UVD_CGC_GATE__RBC_MASK |
651 UVD_CGC_GATE__LMI_MC_MASK |
652 UVD_CGC_GATE__IDCT_MASK |
653 UVD_CGC_GATE__MPRD_MASK |
654 UVD_CGC_GATE__MPC_MASK |
655 UVD_CGC_GATE__LBSI_MASK |
656 UVD_CGC_GATE__LRBBM_MASK |
657 UVD_CGC_GATE__UDEC_RE_MASK |
658 UVD_CGC_GATE__UDEC_CM_MASK |
659 UVD_CGC_GATE__UDEC_IT_MASK |
660 UVD_CGC_GATE__UDEC_DB_MASK |
661 UVD_CGC_GATE__UDEC_MP_MASK |
662 UVD_CGC_GATE__WCB_MASK |
663 UVD_CGC_GATE__JPEG_MASK |
664 UVD_CGC_GATE__SCPU_MASK);
665 /* only in pg enabled, we can gate clock to vcpu*/
666 if (adev->pg_flags & AMD_PG_SUPPORT_UVD)
667 data3 |= UVD_CGC_GATE__VCPU_MASK;
668 data3 &= ~UVD_CGC_GATE__REGS_MASK;
669 data1 |= suvd_flags;
670 } else {
671 data3 = 0;
672 data1 = 0;
673 }
674
675 WREG32(mmUVD_SUVD_CGC_GATE, data1);
676 WREG32(mmUVD_CGC_GATE, data3);
677}
678
679static void uvd_v5_0_set_sw_clock_gating(struct amdgpu_device *adev)
680{
681 uint32_t data, data2;
682
683 data = RREG32(mmUVD_CGC_CTRL);
684 data2 = RREG32(mmUVD_SUVD_CGC_CTRL);
685
686
687 data &= ~(UVD_CGC_CTRL__CLK_OFF_DELAY_MASK |
688 UVD_CGC_CTRL__CLK_GATE_DLY_TIMER_MASK);
689
690
691 data |= UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK |
692 (1 << REG_FIELD_SHIFT(UVD_CGC_CTRL, CLK_GATE_DLY_TIMER)) |
693 (4 << REG_FIELD_SHIFT(UVD_CGC_CTRL, CLK_OFF_DELAY));
694
695 data &= ~(UVD_CGC_CTRL__UDEC_RE_MODE_MASK |
696 UVD_CGC_CTRL__UDEC_CM_MODE_MASK |
697 UVD_CGC_CTRL__UDEC_IT_MODE_MASK |
698 UVD_CGC_CTRL__UDEC_DB_MODE_MASK |
699 UVD_CGC_CTRL__UDEC_MP_MODE_MASK |
700 UVD_CGC_CTRL__SYS_MODE_MASK |
701 UVD_CGC_CTRL__UDEC_MODE_MASK |
702 UVD_CGC_CTRL__MPEG2_MODE_MASK |
703 UVD_CGC_CTRL__REGS_MODE_MASK |
704 UVD_CGC_CTRL__RBC_MODE_MASK |
705 UVD_CGC_CTRL__LMI_MC_MODE_MASK |
706 UVD_CGC_CTRL__LMI_UMC_MODE_MASK |
707 UVD_CGC_CTRL__IDCT_MODE_MASK |
708 UVD_CGC_CTRL__MPRD_MODE_MASK |
709 UVD_CGC_CTRL__MPC_MODE_MASK |
710 UVD_CGC_CTRL__LBSI_MODE_MASK |
711 UVD_CGC_CTRL__LRBBM_MODE_MASK |
712 UVD_CGC_CTRL__WCB_MODE_MASK |
713 UVD_CGC_CTRL__VCPU_MODE_MASK |
714 UVD_CGC_CTRL__JPEG_MODE_MASK |
715 UVD_CGC_CTRL__SCPU_MODE_MASK);
716 data2 &= ~(UVD_SUVD_CGC_CTRL__SRE_MODE_MASK |
717 UVD_SUVD_CGC_CTRL__SIT_MODE_MASK |
718 UVD_SUVD_CGC_CTRL__SMP_MODE_MASK |
719 UVD_SUVD_CGC_CTRL__SCM_MODE_MASK |
720 UVD_SUVD_CGC_CTRL__SDB_MODE_MASK);
721
722 WREG32(mmUVD_CGC_CTRL, data);
723 WREG32(mmUVD_SUVD_CGC_CTRL, data2);
724}
725
726#if 0
727static void uvd_v5_0_set_hw_clock_gating(struct amdgpu_device *adev)
728{
729 uint32_t data, data1, cgc_flags, suvd_flags;
730
731 data = RREG32(mmUVD_CGC_GATE);
732 data1 = RREG32(mmUVD_SUVD_CGC_GATE);
733
734 cgc_flags = UVD_CGC_GATE__SYS_MASK |
735 UVD_CGC_GATE__UDEC_MASK |
736 UVD_CGC_GATE__MPEG2_MASK |
737 UVD_CGC_GATE__RBC_MASK |
738 UVD_CGC_GATE__LMI_MC_MASK |
739 UVD_CGC_GATE__IDCT_MASK |
740 UVD_CGC_GATE__MPRD_MASK |
741 UVD_CGC_GATE__MPC_MASK |
742 UVD_CGC_GATE__LBSI_MASK |
743 UVD_CGC_GATE__LRBBM_MASK |
744 UVD_CGC_GATE__UDEC_RE_MASK |
745 UVD_CGC_GATE__UDEC_CM_MASK |
746 UVD_CGC_GATE__UDEC_IT_MASK |
747 UVD_CGC_GATE__UDEC_DB_MASK |
748 UVD_CGC_GATE__UDEC_MP_MASK |
749 UVD_CGC_GATE__WCB_MASK |
750 UVD_CGC_GATE__VCPU_MASK |
751 UVD_CGC_GATE__SCPU_MASK;
752
753 suvd_flags = UVD_SUVD_CGC_GATE__SRE_MASK |
754 UVD_SUVD_CGC_GATE__SIT_MASK |
755 UVD_SUVD_CGC_GATE__SMP_MASK |
756 UVD_SUVD_CGC_GATE__SCM_MASK |
757 UVD_SUVD_CGC_GATE__SDB_MASK;
758
759 data |= cgc_flags;
760 data1 |= suvd_flags;
761
762 WREG32(mmUVD_CGC_GATE, data);
763 WREG32(mmUVD_SUVD_CGC_GATE, data1);
764}
765#endif
766
767static void uvd_v5_0_enable_mgcg(struct amdgpu_device *adev,
768 bool enable)
769{
770 u32 orig, data;
771
772 if (enable && (adev->cg_flags & AMD_CG_SUPPORT_UVD_MGCG)) {
773 data = RREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL);
774 data |= 0xfff;
775 WREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL, data);
776
777 orig = data = RREG32(mmUVD_CGC_CTRL);
778 data |= UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK;
779 if (orig != data)
780 WREG32(mmUVD_CGC_CTRL, data);
781 } else {
782 data = RREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL);
783 data &= ~0xfff;
784 WREG32_UVD_CTX(ixUVD_CGC_MEM_CTRL, data);
785
786 orig = data = RREG32(mmUVD_CGC_CTRL);
787 data &= ~UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK;
788 if (orig != data)
789 WREG32(mmUVD_CGC_CTRL, data);
790 }
791}
792
793static int uvd_v5_0_set_clockgating_state(void *handle,
794 enum amd_clockgating_state state)
795{
796 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
797 bool enable = (state == AMD_CG_STATE_GATE);
798 struct amdgpu_ip_block *ip_block;
799
800 ip_block = amdgpu_device_ip_get_ip_block(adev, AMD_IP_BLOCK_TYPE_UVD);
801 if (!ip_block)
802 return -EINVAL;
803
804 if (enable) {
805 /* wait for STATUS to clear */
806 if (uvd_v5_0_wait_for_idle(ip_block))
807 return -EBUSY;
808 uvd_v5_0_enable_clock_gating(adev, true);
809
810 /* enable HW gates because UVD is idle */
811/* uvd_v5_0_set_hw_clock_gating(adev); */
812 } else {
813 uvd_v5_0_enable_clock_gating(adev, false);
814 }
815
816 uvd_v5_0_set_sw_clock_gating(adev);
817 return 0;
818}
819
820static int uvd_v5_0_set_powergating_state(void *handle,
821 enum amd_powergating_state state)
822{
823 /* This doesn't actually powergate the UVD block.
824 * That's done in the dpm code via the SMC. This
825 * just re-inits the block as necessary. The actual
826 * gating still happens in the dpm code. We should
827 * revisit this when there is a cleaner line between
828 * the smc and the hw blocks
829 */
830 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
831 int ret = 0;
832
833 if (state == AMD_PG_STATE_GATE) {
834 uvd_v5_0_stop(adev);
835 } else {
836 ret = uvd_v5_0_start(adev);
837 if (ret)
838 goto out;
839 }
840
841out:
842 return ret;
843}
844
845static void uvd_v5_0_get_clockgating_state(void *handle, u64 *flags)
846{
847 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
848 int data;
849
850 mutex_lock(&adev->pm.mutex);
851
852 if (RREG32_SMC(ixCURRENT_PG_STATUS) &
853 CURRENT_PG_STATUS__UVD_PG_STATUS_MASK) {
854 DRM_INFO("Cannot get clockgating state when UVD is powergated.\n");
855 goto out;
856 }
857
858 /* AMD_CG_SUPPORT_UVD_MGCG */
859 data = RREG32(mmUVD_CGC_CTRL);
860 if (data & UVD_CGC_CTRL__DYN_CLOCK_MODE_MASK)
861 *flags |= AMD_CG_SUPPORT_UVD_MGCG;
862
863out:
864 mutex_unlock(&adev->pm.mutex);
865}
866
867static const struct amd_ip_funcs uvd_v5_0_ip_funcs = {
868 .name = "uvd_v5_0",
869 .early_init = uvd_v5_0_early_init,
870 .sw_init = uvd_v5_0_sw_init,
871 .sw_fini = uvd_v5_0_sw_fini,
872 .hw_init = uvd_v5_0_hw_init,
873 .hw_fini = uvd_v5_0_hw_fini,
874 .prepare_suspend = uvd_v5_0_prepare_suspend,
875 .suspend = uvd_v5_0_suspend,
876 .resume = uvd_v5_0_resume,
877 .is_idle = uvd_v5_0_is_idle,
878 .wait_for_idle = uvd_v5_0_wait_for_idle,
879 .soft_reset = uvd_v5_0_soft_reset,
880 .set_clockgating_state = uvd_v5_0_set_clockgating_state,
881 .set_powergating_state = uvd_v5_0_set_powergating_state,
882 .get_clockgating_state = uvd_v5_0_get_clockgating_state,
883};
884
885static const struct amdgpu_ring_funcs uvd_v5_0_ring_funcs = {
886 .type = AMDGPU_RING_TYPE_UVD,
887 .align_mask = 0xf,
888 .support_64bit_ptrs = false,
889 .no_user_fence = true,
890 .get_rptr = uvd_v5_0_ring_get_rptr,
891 .get_wptr = uvd_v5_0_ring_get_wptr,
892 .set_wptr = uvd_v5_0_ring_set_wptr,
893 .parse_cs = amdgpu_uvd_ring_parse_cs,
894 .emit_frame_size =
895 14, /* uvd_v5_0_ring_emit_fence x1 no user fence */
896 .emit_ib_size = 6, /* uvd_v5_0_ring_emit_ib */
897 .emit_ib = uvd_v5_0_ring_emit_ib,
898 .emit_fence = uvd_v5_0_ring_emit_fence,
899 .test_ring = uvd_v5_0_ring_test_ring,
900 .test_ib = amdgpu_uvd_ring_test_ib,
901 .insert_nop = uvd_v5_0_ring_insert_nop,
902 .pad_ib = amdgpu_ring_generic_pad_ib,
903 .begin_use = amdgpu_uvd_ring_begin_use,
904 .end_use = amdgpu_uvd_ring_end_use,
905};
906
907static void uvd_v5_0_set_ring_funcs(struct amdgpu_device *adev)
908{
909 adev->uvd.inst->ring.funcs = &uvd_v5_0_ring_funcs;
910}
911
912static const struct amdgpu_irq_src_funcs uvd_v5_0_irq_funcs = {
913 .set = uvd_v5_0_set_interrupt_state,
914 .process = uvd_v5_0_process_interrupt,
915};
916
917static void uvd_v5_0_set_irq_funcs(struct amdgpu_device *adev)
918{
919 adev->uvd.inst->irq.num_types = 1;
920 adev->uvd.inst->irq.funcs = &uvd_v5_0_irq_funcs;
921}
922
923const struct amdgpu_ip_block_version uvd_v5_0_ip_block =
924{
925 .type = AMD_IP_BLOCK_TYPE_UVD,
926 .major = 5,
927 .minor = 0,
928 .rev = 0,
929 .funcs = &uvd_v5_0_ip_funcs,
930};