drm: Define struct page and use it everywhere
[dragonfly.git] / sys / dev / drm / radeon / uvd_v1_0.c
blob047682062a9e20e58a354e2a642c38b4d7428639
1 /*
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.
22 * Authors: Christian König <christian.koenig@amd.com>
25 #include <linux/firmware.h>
26 #include <drm/drmP.h>
27 #include "radeon.h"
28 #include "radeon_asic.h"
29 #include "r600d.h"
31 /**
32 * uvd_v1_0_get_rptr - get read pointer
34 * @rdev: radeon_device pointer
35 * @ring: radeon_ring pointer
37 * Returns the current hardware read pointer
39 uint32_t uvd_v1_0_get_rptr(struct radeon_device *rdev,
40 struct radeon_ring *ring)
42 return RREG32(UVD_RBC_RB_RPTR);
45 /**
46 * uvd_v1_0_get_wptr - get write pointer
48 * @rdev: radeon_device pointer
49 * @ring: radeon_ring pointer
51 * Returns the current hardware write pointer
53 uint32_t uvd_v1_0_get_wptr(struct radeon_device *rdev,
54 struct radeon_ring *ring)
56 return RREG32(UVD_RBC_RB_WPTR);
59 /**
60 * uvd_v1_0_set_wptr - set write pointer
62 * @rdev: radeon_device pointer
63 * @ring: radeon_ring pointer
65 * Commits the write pointer to the hardware
67 void uvd_v1_0_set_wptr(struct radeon_device *rdev,
68 struct radeon_ring *ring)
70 WREG32(UVD_RBC_RB_WPTR, ring->wptr);
73 /**
74 * uvd_v1_0_fence_emit - emit an fence & trap command
76 * @rdev: radeon_device pointer
77 * @fence: fence to emit
79 * Write a fence and a trap command to the ring.
81 void uvd_v1_0_fence_emit(struct radeon_device *rdev,
82 struct radeon_fence *fence)
84 struct radeon_ring *ring = &rdev->ring[fence->ring];
85 uint64_t addr = rdev->fence_drv[fence->ring].gpu_addr;
87 radeon_ring_write(ring, PACKET0(UVD_GPCOM_VCPU_DATA0, 0));
88 radeon_ring_write(ring, addr & 0xffffffff);
89 radeon_ring_write(ring, PACKET0(UVD_GPCOM_VCPU_DATA1, 0));
90 radeon_ring_write(ring, fence->seq);
91 radeon_ring_write(ring, PACKET0(UVD_GPCOM_VCPU_CMD, 0));
92 radeon_ring_write(ring, 0);
94 radeon_ring_write(ring, PACKET0(UVD_GPCOM_VCPU_DATA0, 0));
95 radeon_ring_write(ring, 0);
96 radeon_ring_write(ring, PACKET0(UVD_GPCOM_VCPU_DATA1, 0));
97 radeon_ring_write(ring, 0);
98 radeon_ring_write(ring, PACKET0(UVD_GPCOM_VCPU_CMD, 0));
99 radeon_ring_write(ring, 2);
100 return;
104 * uvd_v1_0_resume - memory controller programming
106 * @rdev: radeon_device pointer
108 * Let the UVD memory controller know it's offsets
110 int uvd_v1_0_resume(struct radeon_device *rdev)
112 uint64_t addr;
113 uint32_t size;
114 int r;
116 r = radeon_uvd_resume(rdev);
117 if (r)
118 return r;
120 /* programm the VCPU memory controller bits 0-27 */
121 addr = (rdev->uvd.gpu_addr >> 3) + 16;
122 size = RADEON_GPU_PAGE_ALIGN(rdev->uvd_fw->datasize) >> 3;
123 WREG32(UVD_VCPU_CACHE_OFFSET0, addr);
124 WREG32(UVD_VCPU_CACHE_SIZE0, size);
126 addr += size;
127 size = RADEON_UVD_STACK_SIZE >> 3;
128 WREG32(UVD_VCPU_CACHE_OFFSET1, addr);
129 WREG32(UVD_VCPU_CACHE_SIZE1, size);
131 addr += size;
132 size = RADEON_UVD_HEAP_SIZE >> 3;
133 WREG32(UVD_VCPU_CACHE_OFFSET2, addr);
134 WREG32(UVD_VCPU_CACHE_SIZE2, size);
136 /* bits 28-31 */
137 addr = (rdev->uvd.gpu_addr >> 28) & 0xF;
138 WREG32(UVD_LMI_ADDR_EXT, (addr << 12) | (addr << 0));
140 /* bits 32-39 */
141 addr = (rdev->uvd.gpu_addr >> 32) & 0xFF;
142 WREG32(UVD_LMI_EXT40_ADDR, addr | (0x9 << 16) | (0x1 << 31));
144 WREG32(UVD_FW_START, *((uint32_t*)rdev->uvd.cpu_addr));
146 return 0;
150 * uvd_v1_0_init - start and test UVD block
152 * @rdev: radeon_device pointer
154 * Initialize the hardware, boot up the VCPU and do some testing
156 int uvd_v1_0_init(struct radeon_device *rdev)
158 struct radeon_ring *ring = &rdev->ring[R600_RING_TYPE_UVD_INDEX];
159 uint32_t tmp;
160 int r;
162 /* raise clocks while booting up the VCPU */
163 if (rdev->family < CHIP_RV740)
164 radeon_set_uvd_clocks(rdev, 10000, 10000);
165 else
166 radeon_set_uvd_clocks(rdev, 53300, 40000);
168 r = uvd_v1_0_start(rdev);
169 if (r)
170 goto done;
172 ring->ready = true;
173 r = radeon_ring_test(rdev, R600_RING_TYPE_UVD_INDEX, ring);
174 if (r) {
175 ring->ready = false;
176 goto done;
179 r = radeon_ring_lock(rdev, ring, 10);
180 if (r) {
181 DRM_ERROR("radeon: ring failed to lock UVD ring (%d).\n", r);
182 goto done;
185 tmp = PACKET0(UVD_SEMA_WAIT_FAULT_TIMEOUT_CNTL, 0);
186 radeon_ring_write(ring, tmp);
187 radeon_ring_write(ring, 0xFFFFF);
189 tmp = PACKET0(UVD_SEMA_WAIT_INCOMPLETE_TIMEOUT_CNTL, 0);
190 radeon_ring_write(ring, tmp);
191 radeon_ring_write(ring, 0xFFFFF);
193 tmp = PACKET0(UVD_SEMA_SIGNAL_INCOMPLETE_TIMEOUT_CNTL, 0);
194 radeon_ring_write(ring, tmp);
195 radeon_ring_write(ring, 0xFFFFF);
197 /* Clear timeout status bits */
198 radeon_ring_write(ring, PACKET0(UVD_SEMA_TIMEOUT_STATUS, 0));
199 radeon_ring_write(ring, 0x8);
201 radeon_ring_write(ring, PACKET0(UVD_SEMA_CNTL, 0));
202 radeon_ring_write(ring, 3);
204 radeon_ring_unlock_commit(rdev, ring, false);
206 done:
207 /* lower clocks again */
208 radeon_set_uvd_clocks(rdev, 0, 0);
210 if (!r) {
211 switch (rdev->family) {
212 case CHIP_RV610:
213 case CHIP_RV630:
214 case CHIP_RV620:
215 /* 64byte granularity workaround */
216 WREG32(MC_CONFIG, 0);
217 WREG32(MC_CONFIG, 1 << 4);
218 WREG32(RS_DQ_RD_RET_CONF, 0x3f);
219 WREG32(MC_CONFIG, 0x1f);
221 /* fall through */
222 case CHIP_RV670:
223 case CHIP_RV635:
225 /* write clean workaround */
226 WREG32_P(UVD_VCPU_CNTL, 0x10, ~0x10);
227 break;
229 default:
230 /* TODO: Do we need more? */
231 break;
234 DRM_INFO("UVD initialized successfully.\n");
237 return r;
241 * uvd_v1_0_fini - stop the hardware block
243 * @rdev: radeon_device pointer
245 * Stop the UVD block, mark ring as not ready any more
247 void uvd_v1_0_fini(struct radeon_device *rdev)
249 struct radeon_ring *ring = &rdev->ring[R600_RING_TYPE_UVD_INDEX];
251 uvd_v1_0_stop(rdev);
252 ring->ready = false;
256 * uvd_v1_0_start - start UVD block
258 * @rdev: radeon_device pointer
260 * Setup and start the UVD block
262 int uvd_v1_0_start(struct radeon_device *rdev)
264 struct radeon_ring *ring = &rdev->ring[R600_RING_TYPE_UVD_INDEX];
265 uint32_t rb_bufsz;
266 int i, j, r;
268 /* disable byte swapping */
269 u32 lmi_swap_cntl = 0;
270 u32 mp_swap_cntl = 0;
272 /* disable clock gating */
273 WREG32(UVD_CGC_GATE, 0);
275 /* disable interupt */
276 WREG32_P(UVD_MASTINT_EN, 0, ~(1 << 1));
278 /* Stall UMC and register bus before resetting VCPU */
279 WREG32_P(UVD_LMI_CTRL2, 1 << 8, ~(1 << 8));
280 WREG32_P(UVD_RB_ARB_CTRL, 1 << 3, ~(1 << 3));
281 mdelay(1);
283 /* put LMI, VCPU, RBC etc... into reset */
284 WREG32(UVD_SOFT_RESET, LMI_SOFT_RESET | VCPU_SOFT_RESET |
285 LBSI_SOFT_RESET | RBC_SOFT_RESET | CSM_SOFT_RESET |
286 CXW_SOFT_RESET | TAP_SOFT_RESET | LMI_UMC_SOFT_RESET);
287 mdelay(5);
289 /* take UVD block out of reset */
290 WREG32_P(SRBM_SOFT_RESET, 0, ~SOFT_RESET_UVD);
291 mdelay(5);
293 /* initialize UVD memory controller */
294 WREG32(UVD_LMI_CTRL, 0x40 | (1 << 8) | (1 << 13) |
295 (1 << 21) | (1 << 9) | (1 << 20));
297 #ifdef __BIG_ENDIAN
298 /* swap (8 in 32) RB and IB */
299 lmi_swap_cntl = 0xa;
300 mp_swap_cntl = 0;
301 #endif
302 WREG32(UVD_LMI_SWAP_CNTL, lmi_swap_cntl);
303 WREG32(UVD_MP_SWAP_CNTL, mp_swap_cntl);
305 WREG32(UVD_MPC_SET_MUXA0, 0x40c2040);
306 WREG32(UVD_MPC_SET_MUXA1, 0x0);
307 WREG32(UVD_MPC_SET_MUXB0, 0x40c2040);
308 WREG32(UVD_MPC_SET_MUXB1, 0x0);
309 WREG32(UVD_MPC_SET_ALU, 0);
310 WREG32(UVD_MPC_SET_MUX, 0x88);
312 /* take all subblocks out of reset, except VCPU */
313 WREG32(UVD_SOFT_RESET, VCPU_SOFT_RESET);
314 mdelay(5);
316 /* enable VCPU clock */
317 WREG32(UVD_VCPU_CNTL, 1 << 9);
319 /* enable UMC */
320 WREG32_P(UVD_LMI_CTRL2, 0, ~(1 << 8));
322 WREG32_P(UVD_RB_ARB_CTRL, 0, ~(1 << 3));
324 /* boot up the VCPU */
325 WREG32(UVD_SOFT_RESET, 0);
326 mdelay(10);
328 for (i = 0; i < 10; ++i) {
329 uint32_t status;
330 for (j = 0; j < 100; ++j) {
331 status = RREG32(UVD_STATUS);
332 if (status & 2)
333 break;
334 mdelay(10);
336 r = 0;
337 if (status & 2)
338 break;
340 DRM_ERROR("UVD not responding, trying to reset the VCPU!!!\n");
341 WREG32_P(UVD_SOFT_RESET, VCPU_SOFT_RESET, ~VCPU_SOFT_RESET);
342 mdelay(10);
343 WREG32_P(UVD_SOFT_RESET, 0, ~VCPU_SOFT_RESET);
344 mdelay(10);
345 r = -1;
348 if (r) {
349 DRM_ERROR("UVD not responding, giving up!!!\n");
350 return r;
353 /* enable interupt */
354 WREG32_P(UVD_MASTINT_EN, 3<<1, ~(3 << 1));
356 /* force RBC into idle state */
357 WREG32(UVD_RBC_RB_CNTL, 0x11010101);
359 /* Set the write pointer delay */
360 WREG32(UVD_RBC_RB_WPTR_CNTL, 0);
362 /* programm the 4GB memory segment for rptr and ring buffer */
363 WREG32(UVD_LMI_EXT40_ADDR, upper_32_bits(ring->gpu_addr) |
364 (0x7 << 16) | (0x1 << 31));
366 /* Initialize the ring buffer's read and write pointers */
367 WREG32(UVD_RBC_RB_RPTR, 0x0);
369 ring->wptr = RREG32(UVD_RBC_RB_RPTR);
370 WREG32(UVD_RBC_RB_WPTR, ring->wptr);
372 /* set the ring address */
373 WREG32(UVD_RBC_RB_BASE, ring->gpu_addr);
375 /* Set ring buffer size */
376 rb_bufsz = order_base_2(ring->ring_size);
377 rb_bufsz = (0x1 << 8) | rb_bufsz;
378 WREG32_P(UVD_RBC_RB_CNTL, rb_bufsz, ~0x11f1f);
380 return 0;
384 * uvd_v1_0_stop - stop UVD block
386 * @rdev: radeon_device pointer
388 * stop the UVD block
390 void uvd_v1_0_stop(struct radeon_device *rdev)
392 /* force RBC into idle state */
393 WREG32(UVD_RBC_RB_CNTL, 0x11010101);
395 /* Stall UMC and register bus before resetting VCPU */
396 WREG32_P(UVD_LMI_CTRL2, 1 << 8, ~(1 << 8));
397 WREG32_P(UVD_RB_ARB_CTRL, 1 << 3, ~(1 << 3));
398 mdelay(1);
400 /* put VCPU into reset */
401 WREG32(UVD_SOFT_RESET, VCPU_SOFT_RESET);
402 mdelay(5);
404 /* disable VCPU clock */
405 WREG32(UVD_VCPU_CNTL, 0x0);
407 /* Unstall UMC and register bus */
408 WREG32_P(UVD_LMI_CTRL2, 0, ~(1 << 8));
409 WREG32_P(UVD_RB_ARB_CTRL, 0, ~(1 << 3));
413 * uvd_v1_0_ring_test - register write test
415 * @rdev: radeon_device pointer
416 * @ring: radeon_ring pointer
418 * Test if we can successfully write to the context register
420 int uvd_v1_0_ring_test(struct radeon_device *rdev, struct radeon_ring *ring)
422 uint32_t tmp = 0;
423 unsigned i;
424 int r;
426 WREG32(UVD_CONTEXT_ID, 0xCAFEDEAD);
427 r = radeon_ring_lock(rdev, ring, 3);
428 if (r) {
429 DRM_ERROR("radeon: cp failed to lock ring %d (%d).\n",
430 ring->idx, r);
431 return r;
433 radeon_ring_write(ring, PACKET0(UVD_CONTEXT_ID, 0));
434 radeon_ring_write(ring, 0xDEADBEEF);
435 radeon_ring_unlock_commit(rdev, ring, false);
436 for (i = 0; i < rdev->usec_timeout; i++) {
437 tmp = RREG32(UVD_CONTEXT_ID);
438 if (tmp == 0xDEADBEEF)
439 break;
440 DRM_UDELAY(1);
443 if (i < rdev->usec_timeout) {
444 DRM_INFO("ring test on %d succeeded in %d usecs\n",
445 ring->idx, i);
446 } else {
447 DRM_ERROR("radeon: ring %d test failed (0x%08X)\n",
448 ring->idx, tmp);
449 r = -EINVAL;
451 return r;
455 * uvd_v1_0_semaphore_emit - emit semaphore command
457 * @rdev: radeon_device pointer
458 * @ring: radeon_ring pointer
459 * @semaphore: semaphore to emit commands for
460 * @emit_wait: true if we should emit a wait command
462 * Emit a semaphore command (either wait or signal) to the UVD ring.
464 bool uvd_v1_0_semaphore_emit(struct radeon_device *rdev,
465 struct radeon_ring *ring,
466 struct radeon_semaphore *semaphore,
467 bool emit_wait)
469 uint64_t addr = semaphore->gpu_addr;
471 radeon_ring_write(ring, PACKET0(UVD_SEMA_ADDR_LOW, 0));
472 radeon_ring_write(ring, (addr >> 3) & 0x000FFFFF);
474 radeon_ring_write(ring, PACKET0(UVD_SEMA_ADDR_HIGH, 0));
475 radeon_ring_write(ring, (addr >> 23) & 0x000FFFFF);
477 radeon_ring_write(ring, PACKET0(UVD_SEMA_CMD, 0));
478 radeon_ring_write(ring, emit_wait ? 1 : 0);
480 return true;
484 * uvd_v1_0_ib_execute - execute indirect buffer
486 * @rdev: radeon_device pointer
487 * @ib: indirect buffer to execute
489 * Write ring commands to execute the indirect buffer
491 void uvd_v1_0_ib_execute(struct radeon_device *rdev, struct radeon_ib *ib)
493 struct radeon_ring *ring = &rdev->ring[ib->ring];
495 radeon_ring_write(ring, PACKET0(UVD_RBC_IB_BASE, 0));
496 radeon_ring_write(ring, ib->gpu_addr);
497 radeon_ring_write(ring, PACKET0(UVD_RBC_IB_SIZE, 0));
498 radeon_ring_write(ring, ib->length_dw);
502 * uvd_v1_0_ib_test - test ib execution
504 * @rdev: radeon_device pointer
505 * @ring: radeon_ring pointer
507 * Test if we can successfully execute an IB
509 int uvd_v1_0_ib_test(struct radeon_device *rdev, struct radeon_ring *ring)
511 struct radeon_fence *fence = NULL;
512 int r;
514 if (rdev->family < CHIP_RV740)
515 r = radeon_set_uvd_clocks(rdev, 10000, 10000);
516 else
517 r = radeon_set_uvd_clocks(rdev, 53300, 40000);
518 if (r) {
519 DRM_ERROR("radeon: failed to raise UVD clocks (%d).\n", r);
520 return r;
523 r = radeon_uvd_get_create_msg(rdev, ring->idx, 1, NULL);
524 if (r) {
525 DRM_ERROR("radeon: failed to get create msg (%d).\n", r);
526 goto error;
529 r = radeon_uvd_get_destroy_msg(rdev, ring->idx, 1, &fence);
530 if (r) {
531 DRM_ERROR("radeon: failed to get destroy ib (%d).\n", r);
532 goto error;
535 r = radeon_fence_wait(fence, false);
536 if (r) {
537 DRM_ERROR("radeon: fence wait failed (%d).\n", r);
538 goto error;
540 DRM_INFO("ib test on ring %d succeeded\n", ring->idx);
541 error:
542 radeon_fence_unref(&fence);
543 radeon_set_uvd_clocks(rdev, 0, 0);
544 return r;