blob: c33bc1bb46552dd94b1a9d0c6d3361c9131677b5 [file] [log] [blame]
Alex Deuchera2e73f52015-04-20 17:09:27 -04001/*
2 * Copyright 2013 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: Alex Deucher
23 */
24#include <linux/firmware.h>
25#include <drm/drmP.h>
26#include "amdgpu.h"
27#include "amdgpu_ucode.h"
28#include "amdgpu_trace.h"
29#include "cikd.h"
30#include "cik.h"
31
32#include "bif/bif_4_1_d.h"
33#include "bif/bif_4_1_sh_mask.h"
34
35#include "gca/gfx_7_2_d.h"
Jack Xiao74a5d162015-05-08 14:46:49 +080036#include "gca/gfx_7_2_enum.h"
37#include "gca/gfx_7_2_sh_mask.h"
Alex Deuchera2e73f52015-04-20 17:09:27 -040038
39#include "gmc/gmc_7_1_d.h"
40#include "gmc/gmc_7_1_sh_mask.h"
41
42#include "oss/oss_2_0_d.h"
43#include "oss/oss_2_0_sh_mask.h"
44
45static const u32 sdma_offsets[SDMA_MAX_INSTANCE] =
46{
47 SDMA0_REGISTER_OFFSET,
48 SDMA1_REGISTER_OFFSET
49};
50
51static void cik_sdma_set_ring_funcs(struct amdgpu_device *adev);
52static void cik_sdma_set_irq_funcs(struct amdgpu_device *adev);
53static void cik_sdma_set_buffer_funcs(struct amdgpu_device *adev);
54static void cik_sdma_set_vm_pte_funcs(struct amdgpu_device *adev);
jimqu10ea9432016-08-30 08:59:42 +080055static int cik_sdma_soft_reset(void *handle);
Alex Deuchera2e73f52015-04-20 17:09:27 -040056
57MODULE_FIRMWARE("radeon/bonaire_sdma.bin");
58MODULE_FIRMWARE("radeon/bonaire_sdma1.bin");
59MODULE_FIRMWARE("radeon/hawaii_sdma.bin");
60MODULE_FIRMWARE("radeon/hawaii_sdma1.bin");
61MODULE_FIRMWARE("radeon/kaveri_sdma.bin");
62MODULE_FIRMWARE("radeon/kaveri_sdma1.bin");
63MODULE_FIRMWARE("radeon/kabini_sdma.bin");
64MODULE_FIRMWARE("radeon/kabini_sdma1.bin");
65MODULE_FIRMWARE("radeon/mullins_sdma.bin");
66MODULE_FIRMWARE("radeon/mullins_sdma1.bin");
67
68u32 amdgpu_cik_gpu_check_soft_reset(struct amdgpu_device *adev);
69
Monk Liud1ff53b2016-05-30 16:07:40 +080070
71static void cik_sdma_free_microcode(struct amdgpu_device *adev)
72{
73 int i;
74 for (i = 0; i < adev->sdma.num_instances; i++) {
75 release_firmware(adev->sdma.instance[i].fw);
76 adev->sdma.instance[i].fw = NULL;
77 }
78}
79
Alex Deuchera2e73f52015-04-20 17:09:27 -040080/*
81 * sDMA - System DMA
82 * Starting with CIK, the GPU has new asynchronous
83 * DMA engines. These engines are used for compute
84 * and gfx. There are two DMA engines (SDMA0, SDMA1)
85 * and each one supports 1 ring buffer used for gfx
86 * and 2 queues used for compute.
87 *
88 * The programming model is very similar to the CP
89 * (ring buffer, IBs, etc.), but sDMA has it's own
90 * packet format that is different from the PM4 format
91 * used by the CP. sDMA supports copying data, writing
92 * embedded data, solid fills, and a number of other
93 * things. It also has support for tiling/detiling of
94 * buffers.
95 */
96
97/**
98 * cik_sdma_init_microcode - load ucode images from disk
99 *
100 * @adev: amdgpu_device pointer
101 *
102 * Use the firmware interface to load the ucode images into
103 * the driver (not loaded into hw).
104 * Returns 0 on success, error on failure.
105 */
106static int cik_sdma_init_microcode(struct amdgpu_device *adev)
107{
108 const char *chip_name;
109 char fw_name[30];
Alex Deucherc113ea12015-10-08 16:30:37 -0400110 int err = 0, i;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400111
112 DRM_DEBUG("\n");
113
114 switch (adev->asic_type) {
115 case CHIP_BONAIRE:
116 chip_name = "bonaire";
117 break;
118 case CHIP_HAWAII:
119 chip_name = "hawaii";
120 break;
121 case CHIP_KAVERI:
122 chip_name = "kaveri";
123 break;
124 case CHIP_KABINI:
125 chip_name = "kabini";
126 break;
127 case CHIP_MULLINS:
128 chip_name = "mullins";
129 break;
130 default: BUG();
131 }
132
Alex Deucherc113ea12015-10-08 16:30:37 -0400133 for (i = 0; i < adev->sdma.num_instances; i++) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400134 if (i == 0)
135 snprintf(fw_name, sizeof(fw_name), "radeon/%s_sdma.bin", chip_name);
136 else
137 snprintf(fw_name, sizeof(fw_name), "radeon/%s_sdma1.bin", chip_name);
Alex Deucherc113ea12015-10-08 16:30:37 -0400138 err = request_firmware(&adev->sdma.instance[i].fw, fw_name, adev->dev);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400139 if (err)
140 goto out;
Alex Deucherc113ea12015-10-08 16:30:37 -0400141 err = amdgpu_ucode_validate(adev->sdma.instance[i].fw);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400142 }
143out:
144 if (err) {
Joe Perches7ca85292017-02-28 04:55:52 -0800145 pr_err("cik_sdma: Failed to load firmware \"%s\"\n", fw_name);
Alex Deucherc113ea12015-10-08 16:30:37 -0400146 for (i = 0; i < adev->sdma.num_instances; i++) {
147 release_firmware(adev->sdma.instance[i].fw);
148 adev->sdma.instance[i].fw = NULL;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400149 }
150 }
151 return err;
152}
153
154/**
155 * cik_sdma_ring_get_rptr - get the current read pointer
156 *
157 * @ring: amdgpu ring pointer
158 *
159 * Get the current rptr from the hardware (CIK+).
160 */
161static uint32_t cik_sdma_ring_get_rptr(struct amdgpu_ring *ring)
162{
163 u32 rptr;
164
165 rptr = ring->adev->wb.wb[ring->rptr_offs];
166
167 return (rptr & 0x3fffc) >> 2;
168}
169
170/**
171 * cik_sdma_ring_get_wptr - get the current write pointer
172 *
173 * @ring: amdgpu ring pointer
174 *
175 * Get the current wptr from the hardware (CIK+).
176 */
177static uint32_t cik_sdma_ring_get_wptr(struct amdgpu_ring *ring)
178{
179 struct amdgpu_device *adev = ring->adev;
Alex Deucherc113ea12015-10-08 16:30:37 -0400180 u32 me = (ring == &adev->sdma.instance[0].ring) ? 0 : 1;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400181
182 return (RREG32(mmSDMA0_GFX_RB_WPTR + sdma_offsets[me]) & 0x3fffc) >> 2;
183}
184
185/**
186 * cik_sdma_ring_set_wptr - commit the write pointer
187 *
188 * @ring: amdgpu ring pointer
189 *
190 * Write the wptr back to the hardware (CIK+).
191 */
192static void cik_sdma_ring_set_wptr(struct amdgpu_ring *ring)
193{
194 struct amdgpu_device *adev = ring->adev;
Alex Deucherc113ea12015-10-08 16:30:37 -0400195 u32 me = (ring == &adev->sdma.instance[0].ring) ? 0 : 1;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400196
197 WREG32(mmSDMA0_GFX_RB_WPTR + sdma_offsets[me], (ring->wptr << 2) & 0x3fffc);
198}
199
Jammy Zhouac01db32015-09-01 13:13:54 +0800200static void cik_sdma_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count)
201{
Alex Deucherc113ea12015-10-08 16:30:37 -0400202 struct amdgpu_sdma_instance *sdma = amdgpu_get_sdma_instance(ring);
Jammy Zhouac01db32015-09-01 13:13:54 +0800203 int i;
204
205 for (i = 0; i < count; i++)
206 if (sdma && sdma->burst_nop && (i == 0))
Christian König79887142016-10-05 16:09:32 +0200207 amdgpu_ring_write(ring, ring->funcs->nop |
Jammy Zhouac01db32015-09-01 13:13:54 +0800208 SDMA_NOP_COUNT(count - 1));
209 else
Christian König79887142016-10-05 16:09:32 +0200210 amdgpu_ring_write(ring, ring->funcs->nop);
Jammy Zhouac01db32015-09-01 13:13:54 +0800211}
212
Alex Deuchera2e73f52015-04-20 17:09:27 -0400213/**
214 * cik_sdma_ring_emit_ib - Schedule an IB on the DMA engine
215 *
216 * @ring: amdgpu ring pointer
217 * @ib: IB object to schedule
218 *
219 * Schedule an IB in the DMA ring (CIK).
220 */
221static void cik_sdma_ring_emit_ib(struct amdgpu_ring *ring,
Christian Königd88bf582016-05-06 17:50:03 +0200222 struct amdgpu_ib *ib,
223 unsigned vm_id, bool ctx_switch)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400224{
Christian Königd88bf582016-05-06 17:50:03 +0200225 u32 extra_bits = vm_id & 0xf;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400226
Alex Deuchera2e73f52015-04-20 17:09:27 -0400227 /* IB packet must end on a 8 DW boundary */
Jammy Zhouac01db32015-09-01 13:13:54 +0800228 cik_sdma_ring_insert_nop(ring, (12 - (ring->wptr & 7)) % 8);
229
Alex Deuchera2e73f52015-04-20 17:09:27 -0400230 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_INDIRECT_BUFFER, 0, extra_bits));
231 amdgpu_ring_write(ring, ib->gpu_addr & 0xffffffe0); /* base must be 32 byte aligned */
232 amdgpu_ring_write(ring, upper_32_bits(ib->gpu_addr) & 0xffffffff);
233 amdgpu_ring_write(ring, ib->length_dw);
234
235}
236
237/**
Christian Königd2edb072015-05-11 14:10:34 +0200238 * cik_sdma_ring_emit_hdp_flush - emit an hdp flush on the DMA ring
Alex Deuchera2e73f52015-04-20 17:09:27 -0400239 *
240 * @ring: amdgpu ring pointer
241 *
242 * Emit an hdp flush packet on the requested DMA ring.
243 */
Christian Königd2edb072015-05-11 14:10:34 +0200244static void cik_sdma_ring_emit_hdp_flush(struct amdgpu_ring *ring)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400245{
246 u32 extra_bits = (SDMA_POLL_REG_MEM_EXTRA_OP(1) |
247 SDMA_POLL_REG_MEM_EXTRA_FUNC(3)); /* == */
248 u32 ref_and_mask;
249
Alex Deucherc113ea12015-10-08 16:30:37 -0400250 if (ring == &ring->adev->sdma.instance[0].ring)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400251 ref_and_mask = GPU_HDP_FLUSH_DONE__SDMA0_MASK;
252 else
253 ref_and_mask = GPU_HDP_FLUSH_DONE__SDMA1_MASK;
254
255 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_POLL_REG_MEM, 0, extra_bits));
256 amdgpu_ring_write(ring, mmGPU_HDP_FLUSH_DONE << 2);
257 amdgpu_ring_write(ring, mmGPU_HDP_FLUSH_REQ << 2);
258 amdgpu_ring_write(ring, ref_and_mask); /* reference */
259 amdgpu_ring_write(ring, ref_and_mask); /* mask */
260 amdgpu_ring_write(ring, (0xfff << 16) | 10); /* retry count, poll interval */
261}
262
Chunming Zhou498dd972016-03-03 12:05:44 +0800263static void cik_sdma_ring_emit_hdp_invalidate(struct amdgpu_ring *ring)
264{
265 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_SRBM_WRITE, 0, 0xf000));
266 amdgpu_ring_write(ring, mmHDP_DEBUG0);
267 amdgpu_ring_write(ring, 1);
268}
269
Alex Deuchera2e73f52015-04-20 17:09:27 -0400270/**
271 * cik_sdma_ring_emit_fence - emit a fence on the DMA ring
272 *
273 * @ring: amdgpu ring pointer
274 * @fence: amdgpu fence object
275 *
276 * Add a DMA fence packet to the ring to write
277 * the fence seq number and DMA trap packet to generate
278 * an interrupt if needed (CIK).
279 */
280static void cik_sdma_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
Chunming Zhou890ee232015-06-01 14:35:03 +0800281 unsigned flags)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400282{
Chunming Zhou890ee232015-06-01 14:35:03 +0800283 bool write64bit = flags & AMDGPU_FENCE_FLAG_64BIT;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400284 /* write the fence */
285 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_FENCE, 0, 0));
286 amdgpu_ring_write(ring, lower_32_bits(addr));
287 amdgpu_ring_write(ring, upper_32_bits(addr));
288 amdgpu_ring_write(ring, lower_32_bits(seq));
289
290 /* optionally write high bits as well */
291 if (write64bit) {
292 addr += 4;
293 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_FENCE, 0, 0));
294 amdgpu_ring_write(ring, lower_32_bits(addr));
295 amdgpu_ring_write(ring, upper_32_bits(addr));
296 amdgpu_ring_write(ring, upper_32_bits(seq));
297 }
298
299 /* generate an interrupt */
300 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_TRAP, 0, 0));
301}
302
303/**
Alex Deuchera2e73f52015-04-20 17:09:27 -0400304 * cik_sdma_gfx_stop - stop the gfx async dma engines
305 *
306 * @adev: amdgpu_device pointer
307 *
308 * Stop the gfx async dma ring buffers (CIK).
309 */
310static void cik_sdma_gfx_stop(struct amdgpu_device *adev)
311{
Alex Deucherc113ea12015-10-08 16:30:37 -0400312 struct amdgpu_ring *sdma0 = &adev->sdma.instance[0].ring;
313 struct amdgpu_ring *sdma1 = &adev->sdma.instance[1].ring;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400314 u32 rb_cntl;
315 int i;
316
317 if ((adev->mman.buffer_funcs_ring == sdma0) ||
318 (adev->mman.buffer_funcs_ring == sdma1))
319 amdgpu_ttm_set_active_vram_size(adev, adev->mc.visible_vram_size);
320
Alex Deucherc113ea12015-10-08 16:30:37 -0400321 for (i = 0; i < adev->sdma.num_instances; i++) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400322 rb_cntl = RREG32(mmSDMA0_GFX_RB_CNTL + sdma_offsets[i]);
323 rb_cntl &= ~SDMA0_GFX_RB_CNTL__RB_ENABLE_MASK;
324 WREG32(mmSDMA0_GFX_RB_CNTL + sdma_offsets[i], rb_cntl);
325 WREG32(mmSDMA0_GFX_IB_CNTL + sdma_offsets[i], 0);
326 }
327 sdma0->ready = false;
328 sdma1->ready = false;
329}
330
331/**
332 * cik_sdma_rlc_stop - stop the compute async dma engines
333 *
334 * @adev: amdgpu_device pointer
335 *
336 * Stop the compute async dma queues (CIK).
337 */
338static void cik_sdma_rlc_stop(struct amdgpu_device *adev)
339{
340 /* XXX todo */
341}
342
343/**
344 * cik_sdma_enable - stop the async dma engines
345 *
346 * @adev: amdgpu_device pointer
347 * @enable: enable/disable the DMA MEs.
348 *
349 * Halt or unhalt the async dma engines (CIK).
350 */
351static void cik_sdma_enable(struct amdgpu_device *adev, bool enable)
352{
353 u32 me_cntl;
354 int i;
355
Edward O'Callaghan004e29c2016-07-12 10:17:53 +1000356 if (!enable) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400357 cik_sdma_gfx_stop(adev);
358 cik_sdma_rlc_stop(adev);
359 }
360
Alex Deucherc113ea12015-10-08 16:30:37 -0400361 for (i = 0; i < adev->sdma.num_instances; i++) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400362 me_cntl = RREG32(mmSDMA0_F32_CNTL + sdma_offsets[i]);
363 if (enable)
364 me_cntl &= ~SDMA0_F32_CNTL__HALT_MASK;
365 else
366 me_cntl |= SDMA0_F32_CNTL__HALT_MASK;
367 WREG32(mmSDMA0_F32_CNTL + sdma_offsets[i], me_cntl);
368 }
369}
370
371/**
372 * cik_sdma_gfx_resume - setup and start the async dma engines
373 *
374 * @adev: amdgpu_device pointer
375 *
376 * Set up the gfx DMA ring buffers and enable them (CIK).
377 * Returns 0 for success, error for failure.
378 */
379static int cik_sdma_gfx_resume(struct amdgpu_device *adev)
380{
381 struct amdgpu_ring *ring;
382 u32 rb_cntl, ib_cntl;
383 u32 rb_bufsz;
384 u32 wb_offset;
385 int i, j, r;
386
Alex Deucherc113ea12015-10-08 16:30:37 -0400387 for (i = 0; i < adev->sdma.num_instances; i++) {
388 ring = &adev->sdma.instance[i].ring;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400389 wb_offset = (ring->rptr_offs * 4);
390
391 mutex_lock(&adev->srbm_mutex);
392 for (j = 0; j < 16; j++) {
393 cik_srbm_select(adev, 0, 0, 0, j);
394 /* SDMA GFX */
395 WREG32(mmSDMA0_GFX_VIRTUAL_ADDR + sdma_offsets[i], 0);
396 WREG32(mmSDMA0_GFX_APE1_CNTL + sdma_offsets[i], 0);
397 /* XXX SDMA RLC - todo */
398 }
399 cik_srbm_select(adev, 0, 0, 0, 0);
400 mutex_unlock(&adev->srbm_mutex);
401
Alex Deucher2b3a7652016-02-12 03:05:24 -0500402 WREG32(mmSDMA0_TILING_CONFIG + sdma_offsets[i],
403 adev->gfx.config.gb_addr_config & 0x70);
404
Alex Deuchera2e73f52015-04-20 17:09:27 -0400405 WREG32(mmSDMA0_SEM_INCOMPLETE_TIMER_CNTL + sdma_offsets[i], 0);
406 WREG32(mmSDMA0_SEM_WAIT_FAIL_TIMER_CNTL + sdma_offsets[i], 0);
407
408 /* Set ring buffer size in dwords */
409 rb_bufsz = order_base_2(ring->ring_size / 4);
410 rb_cntl = rb_bufsz << 1;
411#ifdef __BIG_ENDIAN
Alex Deucher454fc952015-06-09 09:58:23 -0400412 rb_cntl |= SDMA0_GFX_RB_CNTL__RB_SWAP_ENABLE_MASK |
413 SDMA0_GFX_RB_CNTL__RPTR_WRITEBACK_SWAP_ENABLE_MASK;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400414#endif
415 WREG32(mmSDMA0_GFX_RB_CNTL + sdma_offsets[i], rb_cntl);
416
417 /* Initialize the ring buffer's read and write pointers */
418 WREG32(mmSDMA0_GFX_RB_RPTR + sdma_offsets[i], 0);
419 WREG32(mmSDMA0_GFX_RB_WPTR + sdma_offsets[i], 0);
Monk Liud72f7c02016-05-25 16:55:50 +0800420 WREG32(mmSDMA0_GFX_IB_RPTR + sdma_offsets[i], 0);
421 WREG32(mmSDMA0_GFX_IB_OFFSET + sdma_offsets[i], 0);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400422
423 /* set the wb address whether it's enabled or not */
424 WREG32(mmSDMA0_GFX_RB_RPTR_ADDR_HI + sdma_offsets[i],
425 upper_32_bits(adev->wb.gpu_addr + wb_offset) & 0xFFFFFFFF);
426 WREG32(mmSDMA0_GFX_RB_RPTR_ADDR_LO + sdma_offsets[i],
427 ((adev->wb.gpu_addr + wb_offset) & 0xFFFFFFFC));
428
429 rb_cntl |= SDMA0_GFX_RB_CNTL__RPTR_WRITEBACK_ENABLE_MASK;
430
431 WREG32(mmSDMA0_GFX_RB_BASE + sdma_offsets[i], ring->gpu_addr >> 8);
432 WREG32(mmSDMA0_GFX_RB_BASE_HI + sdma_offsets[i], ring->gpu_addr >> 40);
433
434 ring->wptr = 0;
435 WREG32(mmSDMA0_GFX_RB_WPTR + sdma_offsets[i], ring->wptr << 2);
436
437 /* enable DMA RB */
438 WREG32(mmSDMA0_GFX_RB_CNTL + sdma_offsets[i],
439 rb_cntl | SDMA0_GFX_RB_CNTL__RB_ENABLE_MASK);
440
441 ib_cntl = SDMA0_GFX_IB_CNTL__IB_ENABLE_MASK;
442#ifdef __BIG_ENDIAN
443 ib_cntl |= SDMA0_GFX_IB_CNTL__IB_SWAP_ENABLE_MASK;
444#endif
445 /* enable DMA IBs */
446 WREG32(mmSDMA0_GFX_IB_CNTL + sdma_offsets[i], ib_cntl);
447
448 ring->ready = true;
Monk Liu505dfe72016-05-25 16:57:14 +0800449 }
Alex Deuchera2e73f52015-04-20 17:09:27 -0400450
Monk Liu505dfe72016-05-25 16:57:14 +0800451 cik_sdma_enable(adev, true);
452
453 for (i = 0; i < adev->sdma.num_instances; i++) {
454 ring = &adev->sdma.instance[i].ring;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400455 r = amdgpu_ring_test_ring(ring);
456 if (r) {
457 ring->ready = false;
458 return r;
459 }
460
461 if (adev->mman.buffer_funcs_ring == ring)
462 amdgpu_ttm_set_active_vram_size(adev, adev->mc.real_vram_size);
463 }
464
465 return 0;
466}
467
468/**
469 * cik_sdma_rlc_resume - setup and start the async dma engines
470 *
471 * @adev: amdgpu_device pointer
472 *
473 * Set up the compute DMA queues and enable them (CIK).
474 * Returns 0 for success, error for failure.
475 */
476static int cik_sdma_rlc_resume(struct amdgpu_device *adev)
477{
478 /* XXX todo */
479 return 0;
480}
481
482/**
483 * cik_sdma_load_microcode - load the sDMA ME ucode
484 *
485 * @adev: amdgpu_device pointer
486 *
487 * Loads the sDMA0/1 ucode.
488 * Returns 0 for success, -EINVAL if the ucode is not available.
489 */
490static int cik_sdma_load_microcode(struct amdgpu_device *adev)
491{
492 const struct sdma_firmware_header_v1_0 *hdr;
493 const __le32 *fw_data;
494 u32 fw_size;
495 int i, j;
496
Alex Deuchera2e73f52015-04-20 17:09:27 -0400497 /* halt the MEs */
498 cik_sdma_enable(adev, false);
499
Alex Deucherc113ea12015-10-08 16:30:37 -0400500 for (i = 0; i < adev->sdma.num_instances; i++) {
501 if (!adev->sdma.instance[i].fw)
502 return -EINVAL;
503 hdr = (const struct sdma_firmware_header_v1_0 *)adev->sdma.instance[i].fw->data;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400504 amdgpu_ucode_print_sdma_hdr(&hdr->header);
505 fw_size = le32_to_cpu(hdr->header.ucode_size_bytes) / 4;
Alex Deucherc113ea12015-10-08 16:30:37 -0400506 adev->sdma.instance[i].fw_version = le32_to_cpu(hdr->header.ucode_version);
507 adev->sdma.instance[i].feature_version = le32_to_cpu(hdr->ucode_feature_version);
508 if (adev->sdma.instance[i].feature_version >= 20)
509 adev->sdma.instance[i].burst_nop = true;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400510 fw_data = (const __le32 *)
Alex Deucherc113ea12015-10-08 16:30:37 -0400511 (adev->sdma.instance[i].fw->data + le32_to_cpu(hdr->header.ucode_array_offset_bytes));
Alex Deuchera2e73f52015-04-20 17:09:27 -0400512 WREG32(mmSDMA0_UCODE_ADDR + sdma_offsets[i], 0);
513 for (j = 0; j < fw_size; j++)
514 WREG32(mmSDMA0_UCODE_DATA + sdma_offsets[i], le32_to_cpup(fw_data++));
Alex Deucherc113ea12015-10-08 16:30:37 -0400515 WREG32(mmSDMA0_UCODE_ADDR + sdma_offsets[i], adev->sdma.instance[i].fw_version);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400516 }
517
518 return 0;
519}
520
521/**
522 * cik_sdma_start - setup and start the async dma engines
523 *
524 * @adev: amdgpu_device pointer
525 *
526 * Set up the DMA engines and enable them (CIK).
527 * Returns 0 for success, error for failure.
528 */
529static int cik_sdma_start(struct amdgpu_device *adev)
530{
531 int r;
532
533 r = cik_sdma_load_microcode(adev);
534 if (r)
535 return r;
536
Monk Liu505dfe72016-05-25 16:57:14 +0800537 /* halt the engine before programing */
538 cik_sdma_enable(adev, false);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400539
540 /* start the gfx rings and rlc compute queues */
541 r = cik_sdma_gfx_resume(adev);
542 if (r)
543 return r;
544 r = cik_sdma_rlc_resume(adev);
545 if (r)
546 return r;
547
548 return 0;
549}
550
551/**
552 * cik_sdma_ring_test_ring - simple async dma engine test
553 *
554 * @ring: amdgpu_ring structure holding ring information
555 *
556 * Test the DMA engine by writing using it to write an
557 * value to memory. (CIK).
558 * Returns 0 for success, error for failure.
559 */
560static int cik_sdma_ring_test_ring(struct amdgpu_ring *ring)
561{
562 struct amdgpu_device *adev = ring->adev;
563 unsigned i;
564 unsigned index;
565 int r;
566 u32 tmp;
567 u64 gpu_addr;
568
569 r = amdgpu_wb_get(adev, &index);
570 if (r) {
571 dev_err(adev->dev, "(%d) failed to allocate wb slot\n", r);
572 return r;
573 }
574
575 gpu_addr = adev->wb.gpu_addr + (index * 4);
576 tmp = 0xCAFEDEAD;
577 adev->wb.wb[index] = cpu_to_le32(tmp);
578
Christian Königa27de352016-01-21 11:28:53 +0100579 r = amdgpu_ring_alloc(ring, 5);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400580 if (r) {
581 DRM_ERROR("amdgpu: dma failed to lock ring %d (%d).\n", ring->idx, r);
582 amdgpu_wb_free(adev, index);
583 return r;
584 }
585 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_WRITE, SDMA_WRITE_SUB_OPCODE_LINEAR, 0));
586 amdgpu_ring_write(ring, lower_32_bits(gpu_addr));
587 amdgpu_ring_write(ring, upper_32_bits(gpu_addr));
588 amdgpu_ring_write(ring, 1); /* number of DWs to follow */
589 amdgpu_ring_write(ring, 0xDEADBEEF);
Christian Königa27de352016-01-21 11:28:53 +0100590 amdgpu_ring_commit(ring);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400591
592 for (i = 0; i < adev->usec_timeout; i++) {
593 tmp = le32_to_cpu(adev->wb.wb[index]);
594 if (tmp == 0xDEADBEEF)
595 break;
596 DRM_UDELAY(1);
597 }
598
599 if (i < adev->usec_timeout) {
600 DRM_INFO("ring test on %d succeeded in %d usecs\n", ring->idx, i);
601 } else {
602 DRM_ERROR("amdgpu: ring %d test failed (0x%08X)\n",
603 ring->idx, tmp);
604 r = -EINVAL;
605 }
606 amdgpu_wb_free(adev, index);
607
608 return r;
609}
610
611/**
612 * cik_sdma_ring_test_ib - test an IB on the DMA engine
613 *
614 * @ring: amdgpu_ring structure holding ring information
615 *
616 * Test a simple IB in the DMA ring (CIK).
617 * Returns 0 on success, error on failure.
618 */
Christian Königbbec97a2016-07-05 21:07:17 +0200619static int cik_sdma_ring_test_ib(struct amdgpu_ring *ring, long timeout)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400620{
621 struct amdgpu_device *adev = ring->adev;
622 struct amdgpu_ib ib;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100623 struct dma_fence *f = NULL;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400624 unsigned index;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400625 u32 tmp = 0;
626 u64 gpu_addr;
Christian Königbbec97a2016-07-05 21:07:17 +0200627 long r;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400628
629 r = amdgpu_wb_get(adev, &index);
630 if (r) {
Christian Königbbec97a2016-07-05 21:07:17 +0200631 dev_err(adev->dev, "(%ld) failed to allocate wb slot\n", r);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400632 return r;
633 }
634
635 gpu_addr = adev->wb.gpu_addr + (index * 4);
636 tmp = 0xCAFEDEAD;
637 adev->wb.wb[index] = cpu_to_le32(tmp);
Christian Königb203dd92015-08-18 18:23:16 +0200638 memset(&ib, 0, sizeof(ib));
Christian Königb07c60c2016-01-31 12:29:04 +0100639 r = amdgpu_ib_get(adev, NULL, 256, &ib);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400640 if (r) {
Christian Königbbec97a2016-07-05 21:07:17 +0200641 DRM_ERROR("amdgpu: failed to get ib (%ld).\n", r);
Chunming Zhou0011fda2015-06-01 15:33:20 +0800642 goto err0;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400643 }
644
Christian König6d445652016-07-05 15:53:07 +0200645 ib.ptr[0] = SDMA_PACKET(SDMA_OPCODE_WRITE,
646 SDMA_WRITE_SUB_OPCODE_LINEAR, 0);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400647 ib.ptr[1] = lower_32_bits(gpu_addr);
648 ib.ptr[2] = upper_32_bits(gpu_addr);
649 ib.ptr[3] = 1;
650 ib.ptr[4] = 0xDEADBEEF;
651 ib.length_dw = 5;
Junwei Zhang50ddc752017-01-23 16:30:38 +0800652 r = amdgpu_ib_schedule(ring, 1, &ib, NULL, &f);
Chunming Zhou0011fda2015-06-01 15:33:20 +0800653 if (r)
654 goto err1;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400655
Chris Wilsonf54d1862016-10-25 13:00:45 +0100656 r = dma_fence_wait_timeout(f, false, timeout);
Christian Königbbec97a2016-07-05 21:07:17 +0200657 if (r == 0) {
658 DRM_ERROR("amdgpu: IB test timed out\n");
659 r = -ETIMEDOUT;
660 goto err1;
661 } else if (r < 0) {
662 DRM_ERROR("amdgpu: fence wait failed (%ld).\n", r);
Chunming Zhou0011fda2015-06-01 15:33:20 +0800663 goto err1;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400664 }
Christian König6d445652016-07-05 15:53:07 +0200665 tmp = le32_to_cpu(adev->wb.wb[index]);
666 if (tmp == 0xDEADBEEF) {
667 DRM_INFO("ib test on ring %d succeeded\n", ring->idx);
Christian Königbbec97a2016-07-05 21:07:17 +0200668 r = 0;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400669 } else {
670 DRM_ERROR("amdgpu: ib test failed (0x%08X)\n", tmp);
671 r = -EINVAL;
672 }
Chunming Zhou0011fda2015-06-01 15:33:20 +0800673
674err1:
Monk Liucc55c452016-03-17 10:47:07 +0800675 amdgpu_ib_free(adev, &ib, NULL);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100676 dma_fence_put(f);
Chunming Zhou0011fda2015-06-01 15:33:20 +0800677err0:
Alex Deuchera2e73f52015-04-20 17:09:27 -0400678 amdgpu_wb_free(adev, index);
679 return r;
680}
681
682/**
683 * cik_sdma_vm_copy_pages - update PTEs by copying them from the GART
684 *
685 * @ib: indirect buffer to fill with commands
686 * @pe: addr of the page entry
687 * @src: src addr to copy from
688 * @count: number of page entries to update
689 *
690 * Update PTEs by copying them from the GART using sDMA (CIK).
691 */
692static void cik_sdma_vm_copy_pte(struct amdgpu_ib *ib,
693 uint64_t pe, uint64_t src,
694 unsigned count)
695{
Christian König96105e52016-08-12 12:59:59 +0200696 unsigned bytes = count * 8;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400697
Christian König96105e52016-08-12 12:59:59 +0200698 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_COPY,
699 SDMA_WRITE_SUB_OPCODE_LINEAR, 0);
700 ib->ptr[ib->length_dw++] = bytes;
701 ib->ptr[ib->length_dw++] = 0; /* src/dst endian swap */
702 ib->ptr[ib->length_dw++] = lower_32_bits(src);
703 ib->ptr[ib->length_dw++] = upper_32_bits(src);
704 ib->ptr[ib->length_dw++] = lower_32_bits(pe);
705 ib->ptr[ib->length_dw++] = upper_32_bits(pe);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400706}
707
708/**
709 * cik_sdma_vm_write_pages - update PTEs by writing them manually
710 *
711 * @ib: indirect buffer to fill with commands
712 * @pe: addr of the page entry
Christian Königde9ea7b2016-08-12 11:33:30 +0200713 * @value: dst addr to write into pe
Alex Deuchera2e73f52015-04-20 17:09:27 -0400714 * @count: number of page entries to update
715 * @incr: increase next addr by incr bytes
Alex Deuchera2e73f52015-04-20 17:09:27 -0400716 *
717 * Update PTEs by writing them manually using sDMA (CIK).
718 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200719static void cik_sdma_vm_write_pte(struct amdgpu_ib *ib, uint64_t pe,
720 uint64_t value, unsigned count,
721 uint32_t incr)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400722{
Christian Königde9ea7b2016-08-12 11:33:30 +0200723 unsigned ndw = count * 2;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400724
Christian Königde9ea7b2016-08-12 11:33:30 +0200725 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_WRITE,
726 SDMA_WRITE_SUB_OPCODE_LINEAR, 0);
727 ib->ptr[ib->length_dw++] = lower_32_bits(pe);
728 ib->ptr[ib->length_dw++] = upper_32_bits(pe);
729 ib->ptr[ib->length_dw++] = ndw;
730 for (; ndw > 0; ndw -= 2) {
731 ib->ptr[ib->length_dw++] = lower_32_bits(value);
732 ib->ptr[ib->length_dw++] = upper_32_bits(value);
733 value += incr;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400734 }
735}
736
737/**
738 * cik_sdma_vm_set_pages - update the page tables using sDMA
739 *
740 * @ib: indirect buffer to fill with commands
741 * @pe: addr of the page entry
742 * @addr: dst addr to write into pe
743 * @count: number of page entries to update
744 * @incr: increase next addr by incr bytes
745 * @flags: access flags
746 *
747 * Update the page tables using sDMA (CIK).
748 */
Christian König96105e52016-08-12 12:59:59 +0200749static void cik_sdma_vm_set_pte_pde(struct amdgpu_ib *ib, uint64_t pe,
Alex Deuchera2e73f52015-04-20 17:09:27 -0400750 uint64_t addr, unsigned count,
751 uint32_t incr, uint32_t flags)
752{
Christian König96105e52016-08-12 12:59:59 +0200753 /* for physically contiguous pages (vram) */
754 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_GENERATE_PTE_PDE, 0, 0);
755 ib->ptr[ib->length_dw++] = lower_32_bits(pe); /* dst addr */
756 ib->ptr[ib->length_dw++] = upper_32_bits(pe);
757 ib->ptr[ib->length_dw++] = flags; /* mask */
758 ib->ptr[ib->length_dw++] = 0;
759 ib->ptr[ib->length_dw++] = lower_32_bits(addr); /* value */
760 ib->ptr[ib->length_dw++] = upper_32_bits(addr);
761 ib->ptr[ib->length_dw++] = incr; /* increment size */
762 ib->ptr[ib->length_dw++] = 0;
763 ib->ptr[ib->length_dw++] = count; /* number of entries */
Alex Deuchera2e73f52015-04-20 17:09:27 -0400764}
765
766/**
767 * cik_sdma_vm_pad_ib - pad the IB to the required number of dw
768 *
769 * @ib: indirect buffer to fill with padding
770 *
771 */
Christian König9e5d53092016-01-31 12:20:55 +0100772static void cik_sdma_ring_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400773{
Christian König9e5d53092016-01-31 12:20:55 +0100774 struct amdgpu_sdma_instance *sdma = amdgpu_get_sdma_instance(ring);
Jammy Zhouac01db32015-09-01 13:13:54 +0800775 u32 pad_count;
776 int i;
777
778 pad_count = (8 - (ib->length_dw & 0x7)) % 8;
779 for (i = 0; i < pad_count; i++)
780 if (sdma && sdma->burst_nop && (i == 0))
781 ib->ptr[ib->length_dw++] =
782 SDMA_PACKET(SDMA_OPCODE_NOP, 0, 0) |
783 SDMA_NOP_COUNT(pad_count - 1);
784 else
785 ib->ptr[ib->length_dw++] =
786 SDMA_PACKET(SDMA_OPCODE_NOP, 0, 0);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400787}
788
789/**
Christian König00b7c4f2016-03-08 14:11:00 +0100790 * cik_sdma_ring_emit_pipeline_sync - sync the pipeline
Alex Deuchera2e73f52015-04-20 17:09:27 -0400791 *
792 * @ring: amdgpu_ring pointer
Alex Deuchera2e73f52015-04-20 17:09:27 -0400793 *
Christian König00b7c4f2016-03-08 14:11:00 +0100794 * Make sure all previous operations are completed (CIK).
Alex Deuchera2e73f52015-04-20 17:09:27 -0400795 */
Christian König00b7c4f2016-03-08 14:11:00 +0100796static void cik_sdma_ring_emit_pipeline_sync(struct amdgpu_ring *ring)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400797{
Chunming Zhou5c55db82016-03-02 11:30:31 +0800798 uint32_t seq = ring->fence_drv.sync_seq;
799 uint64_t addr = ring->fence_drv.gpu_addr;
800
801 /* wait for idle */
802 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_POLL_REG_MEM, 0,
803 SDMA_POLL_REG_MEM_EXTRA_OP(0) |
804 SDMA_POLL_REG_MEM_EXTRA_FUNC(3) | /* equal */
805 SDMA_POLL_REG_MEM_EXTRA_M));
806 amdgpu_ring_write(ring, addr & 0xfffffffc);
807 amdgpu_ring_write(ring, upper_32_bits(addr) & 0xffffffff);
808 amdgpu_ring_write(ring, seq); /* reference */
809 amdgpu_ring_write(ring, 0xfffffff); /* mask */
810 amdgpu_ring_write(ring, (0xfff << 16) | 4); /* retry count, poll interval */
Christian König00b7c4f2016-03-08 14:11:00 +0100811}
Chunming Zhou5c55db82016-03-02 11:30:31 +0800812
Christian König00b7c4f2016-03-08 14:11:00 +0100813/**
Alex Deuchera2e73f52015-04-20 17:09:27 -0400814 * cik_sdma_ring_emit_vm_flush - cik vm flush using sDMA
815 *
816 * @ring: amdgpu_ring pointer
817 * @vm: amdgpu_vm pointer
818 *
819 * Update the page table base and flush the VM TLB
820 * using sDMA (CIK).
821 */
822static void cik_sdma_ring_emit_vm_flush(struct amdgpu_ring *ring,
823 unsigned vm_id, uint64_t pd_addr)
824{
825 u32 extra_bits = (SDMA_POLL_REG_MEM_EXTRA_OP(0) |
826 SDMA_POLL_REG_MEM_EXTRA_FUNC(0)); /* always */
827
828 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_SRBM_WRITE, 0, 0xf000));
829 if (vm_id < 8) {
830 amdgpu_ring_write(ring, (mmVM_CONTEXT0_PAGE_TABLE_BASE_ADDR + vm_id));
831 } else {
832 amdgpu_ring_write(ring, (mmVM_CONTEXT8_PAGE_TABLE_BASE_ADDR + vm_id - 8));
833 }
834 amdgpu_ring_write(ring, pd_addr >> 12);
835
Alex Deuchera2e73f52015-04-20 17:09:27 -0400836 /* flush TLB */
837 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_SRBM_WRITE, 0, 0xf000));
838 amdgpu_ring_write(ring, mmVM_INVALIDATE_REQUEST);
839 amdgpu_ring_write(ring, 1 << vm_id);
840
841 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_POLL_REG_MEM, 0, extra_bits));
842 amdgpu_ring_write(ring, mmVM_INVALIDATE_REQUEST << 2);
843 amdgpu_ring_write(ring, 0);
844 amdgpu_ring_write(ring, 0); /* reference */
845 amdgpu_ring_write(ring, 0); /* mask */
846 amdgpu_ring_write(ring, (0xfff << 16) | 10); /* retry count, poll interval */
847}
848
849static void cik_enable_sdma_mgcg(struct amdgpu_device *adev,
850 bool enable)
851{
852 u32 orig, data;
853
Alex Deuchere3b04bc2016-02-05 10:56:22 -0500854 if (enable && (adev->cg_flags & AMD_CG_SUPPORT_SDMA_MGCG)) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400855 WREG32(mmSDMA0_CLK_CTRL + SDMA0_REGISTER_OFFSET, 0x00000100);
856 WREG32(mmSDMA0_CLK_CTRL + SDMA1_REGISTER_OFFSET, 0x00000100);
857 } else {
858 orig = data = RREG32(mmSDMA0_CLK_CTRL + SDMA0_REGISTER_OFFSET);
859 data |= 0xff000000;
860 if (data != orig)
861 WREG32(mmSDMA0_CLK_CTRL + SDMA0_REGISTER_OFFSET, data);
862
863 orig = data = RREG32(mmSDMA0_CLK_CTRL + SDMA1_REGISTER_OFFSET);
864 data |= 0xff000000;
865 if (data != orig)
866 WREG32(mmSDMA0_CLK_CTRL + SDMA1_REGISTER_OFFSET, data);
867 }
868}
869
870static void cik_enable_sdma_mgls(struct amdgpu_device *adev,
871 bool enable)
872{
873 u32 orig, data;
874
Alex Deuchere3b04bc2016-02-05 10:56:22 -0500875 if (enable && (adev->cg_flags & AMD_CG_SUPPORT_SDMA_LS)) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400876 orig = data = RREG32(mmSDMA0_POWER_CNTL + SDMA0_REGISTER_OFFSET);
877 data |= 0x100;
878 if (orig != data)
879 WREG32(mmSDMA0_POWER_CNTL + SDMA0_REGISTER_OFFSET, data);
880
881 orig = data = RREG32(mmSDMA0_POWER_CNTL + SDMA1_REGISTER_OFFSET);
882 data |= 0x100;
883 if (orig != data)
884 WREG32(mmSDMA0_POWER_CNTL + SDMA1_REGISTER_OFFSET, data);
885 } else {
886 orig = data = RREG32(mmSDMA0_POWER_CNTL + SDMA0_REGISTER_OFFSET);
887 data &= ~0x100;
888 if (orig != data)
889 WREG32(mmSDMA0_POWER_CNTL + SDMA0_REGISTER_OFFSET, data);
890
891 orig = data = RREG32(mmSDMA0_POWER_CNTL + SDMA1_REGISTER_OFFSET);
892 data &= ~0x100;
893 if (orig != data)
894 WREG32(mmSDMA0_POWER_CNTL + SDMA1_REGISTER_OFFSET, data);
895 }
896}
897
yanyang15fc3aee2015-05-22 14:39:35 -0400898static int cik_sdma_early_init(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400899{
yanyang15fc3aee2015-05-22 14:39:35 -0400900 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
901
Alex Deucherc113ea12015-10-08 16:30:37 -0400902 adev->sdma.num_instances = SDMA_MAX_INSTANCE;
903
Alex Deuchera2e73f52015-04-20 17:09:27 -0400904 cik_sdma_set_ring_funcs(adev);
905 cik_sdma_set_irq_funcs(adev);
906 cik_sdma_set_buffer_funcs(adev);
907 cik_sdma_set_vm_pte_funcs(adev);
908
909 return 0;
910}
911
yanyang15fc3aee2015-05-22 14:39:35 -0400912static int cik_sdma_sw_init(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400913{
914 struct amdgpu_ring *ring;
yanyang15fc3aee2015-05-22 14:39:35 -0400915 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deucherc113ea12015-10-08 16:30:37 -0400916 int r, i;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400917
918 r = cik_sdma_init_microcode(adev);
919 if (r) {
920 DRM_ERROR("Failed to load sdma firmware!\n");
921 return r;
922 }
923
924 /* SDMA trap event */
Alex Deucherc113ea12015-10-08 16:30:37 -0400925 r = amdgpu_irq_add_id(adev, 224, &adev->sdma.trap_irq);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400926 if (r)
927 return r;
928
929 /* SDMA Privileged inst */
Alex Deucherc113ea12015-10-08 16:30:37 -0400930 r = amdgpu_irq_add_id(adev, 241, &adev->sdma.illegal_inst_irq);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400931 if (r)
932 return r;
933
934 /* SDMA Privileged inst */
Alex Deucherc113ea12015-10-08 16:30:37 -0400935 r = amdgpu_irq_add_id(adev, 247, &adev->sdma.illegal_inst_irq);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400936 if (r)
937 return r;
938
Alex Deucherc113ea12015-10-08 16:30:37 -0400939 for (i = 0; i < adev->sdma.num_instances; i++) {
940 ring = &adev->sdma.instance[i].ring;
941 ring->ring_obj = NULL;
942 sprintf(ring->name, "sdma%d", i);
Christian Königb38d99c2016-04-13 10:30:13 +0200943 r = amdgpu_ring_init(adev, ring, 1024,
Alex Deucherc113ea12015-10-08 16:30:37 -0400944 &adev->sdma.trap_irq,
945 (i == 0) ?
Christian König21cd9422016-10-05 15:36:39 +0200946 AMDGPU_SDMA_IRQ_TRAP0 :
947 AMDGPU_SDMA_IRQ_TRAP1);
Alex Deucherc113ea12015-10-08 16:30:37 -0400948 if (r)
949 return r;
950 }
Alex Deuchera2e73f52015-04-20 17:09:27 -0400951
952 return r;
953}
954
yanyang15fc3aee2015-05-22 14:39:35 -0400955static int cik_sdma_sw_fini(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400956{
yanyang15fc3aee2015-05-22 14:39:35 -0400957 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deucherc113ea12015-10-08 16:30:37 -0400958 int i;
yanyang15fc3aee2015-05-22 14:39:35 -0400959
Alex Deucherc113ea12015-10-08 16:30:37 -0400960 for (i = 0; i < adev->sdma.num_instances; i++)
961 amdgpu_ring_fini(&adev->sdma.instance[i].ring);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400962
Monk Liud1ff53b2016-05-30 16:07:40 +0800963 cik_sdma_free_microcode(adev);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400964 return 0;
965}
966
yanyang15fc3aee2015-05-22 14:39:35 -0400967static int cik_sdma_hw_init(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400968{
969 int r;
yanyang15fc3aee2015-05-22 14:39:35 -0400970 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400971
972 r = cik_sdma_start(adev);
973 if (r)
974 return r;
975
976 return r;
977}
978
yanyang15fc3aee2015-05-22 14:39:35 -0400979static int cik_sdma_hw_fini(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400980{
yanyang15fc3aee2015-05-22 14:39:35 -0400981 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
982
Alex Deuchera2e73f52015-04-20 17:09:27 -0400983 cik_sdma_enable(adev, false);
984
985 return 0;
986}
987
yanyang15fc3aee2015-05-22 14:39:35 -0400988static int cik_sdma_suspend(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400989{
yanyang15fc3aee2015-05-22 14:39:35 -0400990 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400991
992 return cik_sdma_hw_fini(adev);
993}
994
yanyang15fc3aee2015-05-22 14:39:35 -0400995static int cik_sdma_resume(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400996{
yanyang15fc3aee2015-05-22 14:39:35 -0400997 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400998
jimqu10ea9432016-08-30 08:59:42 +0800999 cik_sdma_soft_reset(handle);
1000
Alex Deuchera2e73f52015-04-20 17:09:27 -04001001 return cik_sdma_hw_init(adev);
1002}
1003
yanyang15fc3aee2015-05-22 14:39:35 -04001004static bool cik_sdma_is_idle(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001005{
yanyang15fc3aee2015-05-22 14:39:35 -04001006 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001007 u32 tmp = RREG32(mmSRBM_STATUS2);
1008
1009 if (tmp & (SRBM_STATUS2__SDMA_BUSY_MASK |
1010 SRBM_STATUS2__SDMA1_BUSY_MASK))
1011 return false;
1012
1013 return true;
1014}
1015
yanyang15fc3aee2015-05-22 14:39:35 -04001016static int cik_sdma_wait_for_idle(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001017{
1018 unsigned i;
1019 u32 tmp;
yanyang15fc3aee2015-05-22 14:39:35 -04001020 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001021
1022 for (i = 0; i < adev->usec_timeout; i++) {
1023 tmp = RREG32(mmSRBM_STATUS2) & (SRBM_STATUS2__SDMA_BUSY_MASK |
1024 SRBM_STATUS2__SDMA1_BUSY_MASK);
1025
1026 if (!tmp)
1027 return 0;
1028 udelay(1);
1029 }
1030 return -ETIMEDOUT;
1031}
1032
yanyang15fc3aee2015-05-22 14:39:35 -04001033static int cik_sdma_soft_reset(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001034{
1035 u32 srbm_soft_reset = 0;
yanyang15fc3aee2015-05-22 14:39:35 -04001036 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001037 u32 tmp = RREG32(mmSRBM_STATUS2);
1038
1039 if (tmp & SRBM_STATUS2__SDMA_BUSY_MASK) {
1040 /* sdma0 */
1041 tmp = RREG32(mmSDMA0_F32_CNTL + SDMA0_REGISTER_OFFSET);
1042 tmp |= SDMA0_F32_CNTL__HALT_MASK;
1043 WREG32(mmSDMA0_F32_CNTL + SDMA0_REGISTER_OFFSET, tmp);
1044 srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_SDMA_MASK;
1045 }
1046 if (tmp & SRBM_STATUS2__SDMA1_BUSY_MASK) {
1047 /* sdma1 */
1048 tmp = RREG32(mmSDMA0_F32_CNTL + SDMA1_REGISTER_OFFSET);
1049 tmp |= SDMA0_F32_CNTL__HALT_MASK;
1050 WREG32(mmSDMA0_F32_CNTL + SDMA1_REGISTER_OFFSET, tmp);
1051 srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_SDMA1_MASK;
1052 }
1053
1054 if (srbm_soft_reset) {
Alex Deuchera2e73f52015-04-20 17:09:27 -04001055 tmp = RREG32(mmSRBM_SOFT_RESET);
1056 tmp |= srbm_soft_reset;
1057 dev_info(adev->dev, "SRBM_SOFT_RESET=0x%08X\n", tmp);
1058 WREG32(mmSRBM_SOFT_RESET, tmp);
1059 tmp = RREG32(mmSRBM_SOFT_RESET);
1060
1061 udelay(50);
1062
1063 tmp &= ~srbm_soft_reset;
1064 WREG32(mmSRBM_SOFT_RESET, tmp);
1065 tmp = RREG32(mmSRBM_SOFT_RESET);
1066
1067 /* Wait a little for things to settle down */
1068 udelay(50);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001069 }
1070
1071 return 0;
1072}
1073
1074static int cik_sdma_set_trap_irq_state(struct amdgpu_device *adev,
1075 struct amdgpu_irq_src *src,
1076 unsigned type,
1077 enum amdgpu_interrupt_state state)
1078{
1079 u32 sdma_cntl;
1080
1081 switch (type) {
1082 case AMDGPU_SDMA_IRQ_TRAP0:
1083 switch (state) {
1084 case AMDGPU_IRQ_STATE_DISABLE:
1085 sdma_cntl = RREG32(mmSDMA0_CNTL + SDMA0_REGISTER_OFFSET);
1086 sdma_cntl &= ~SDMA0_CNTL__TRAP_ENABLE_MASK;
1087 WREG32(mmSDMA0_CNTL + SDMA0_REGISTER_OFFSET, sdma_cntl);
1088 break;
1089 case AMDGPU_IRQ_STATE_ENABLE:
1090 sdma_cntl = RREG32(mmSDMA0_CNTL + SDMA0_REGISTER_OFFSET);
1091 sdma_cntl |= SDMA0_CNTL__TRAP_ENABLE_MASK;
1092 WREG32(mmSDMA0_CNTL + SDMA0_REGISTER_OFFSET, sdma_cntl);
1093 break;
1094 default:
1095 break;
1096 }
1097 break;
1098 case AMDGPU_SDMA_IRQ_TRAP1:
1099 switch (state) {
1100 case AMDGPU_IRQ_STATE_DISABLE:
1101 sdma_cntl = RREG32(mmSDMA0_CNTL + SDMA1_REGISTER_OFFSET);
1102 sdma_cntl &= ~SDMA0_CNTL__TRAP_ENABLE_MASK;
1103 WREG32(mmSDMA0_CNTL + SDMA1_REGISTER_OFFSET, sdma_cntl);
1104 break;
1105 case AMDGPU_IRQ_STATE_ENABLE:
1106 sdma_cntl = RREG32(mmSDMA0_CNTL + SDMA1_REGISTER_OFFSET);
1107 sdma_cntl |= SDMA0_CNTL__TRAP_ENABLE_MASK;
1108 WREG32(mmSDMA0_CNTL + SDMA1_REGISTER_OFFSET, sdma_cntl);
1109 break;
1110 default:
1111 break;
1112 }
1113 break;
1114 default:
1115 break;
1116 }
1117 return 0;
1118}
1119
1120static int cik_sdma_process_trap_irq(struct amdgpu_device *adev,
1121 struct amdgpu_irq_src *source,
1122 struct amdgpu_iv_entry *entry)
1123{
1124 u8 instance_id, queue_id;
1125
1126 instance_id = (entry->ring_id & 0x3) >> 0;
1127 queue_id = (entry->ring_id & 0xc) >> 2;
1128 DRM_DEBUG("IH: SDMA trap\n");
1129 switch (instance_id) {
1130 case 0:
1131 switch (queue_id) {
1132 case 0:
Alex Deucherc113ea12015-10-08 16:30:37 -04001133 amdgpu_fence_process(&adev->sdma.instance[0].ring);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001134 break;
1135 case 1:
1136 /* XXX compute */
1137 break;
1138 case 2:
1139 /* XXX compute */
1140 break;
1141 }
1142 break;
1143 case 1:
1144 switch (queue_id) {
1145 case 0:
Alex Deucherc113ea12015-10-08 16:30:37 -04001146 amdgpu_fence_process(&adev->sdma.instance[1].ring);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001147 break;
1148 case 1:
1149 /* XXX compute */
1150 break;
1151 case 2:
1152 /* XXX compute */
1153 break;
1154 }
1155 break;
1156 }
1157
1158 return 0;
1159}
1160
1161static int cik_sdma_process_illegal_inst_irq(struct amdgpu_device *adev,
1162 struct amdgpu_irq_src *source,
1163 struct amdgpu_iv_entry *entry)
1164{
1165 DRM_ERROR("Illegal instruction in SDMA command stream\n");
1166 schedule_work(&adev->reset_work);
1167 return 0;
1168}
1169
yanyang15fc3aee2015-05-22 14:39:35 -04001170static int cik_sdma_set_clockgating_state(void *handle,
1171 enum amd_clockgating_state state)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001172{
1173 bool gate = false;
yanyang15fc3aee2015-05-22 14:39:35 -04001174 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001175
yanyang15fc3aee2015-05-22 14:39:35 -04001176 if (state == AMD_CG_STATE_GATE)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001177 gate = true;
1178
1179 cik_enable_sdma_mgcg(adev, gate);
1180 cik_enable_sdma_mgls(adev, gate);
1181
1182 return 0;
1183}
1184
yanyang15fc3aee2015-05-22 14:39:35 -04001185static int cik_sdma_set_powergating_state(void *handle,
1186 enum amd_powergating_state state)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001187{
1188 return 0;
1189}
1190
Alex Deuchera1255102016-10-13 17:41:13 -04001191static const struct amd_ip_funcs cik_sdma_ip_funcs = {
Tom St Denis88a907d2016-05-04 14:28:35 -04001192 .name = "cik_sdma",
Alex Deuchera2e73f52015-04-20 17:09:27 -04001193 .early_init = cik_sdma_early_init,
1194 .late_init = NULL,
1195 .sw_init = cik_sdma_sw_init,
1196 .sw_fini = cik_sdma_sw_fini,
1197 .hw_init = cik_sdma_hw_init,
1198 .hw_fini = cik_sdma_hw_fini,
1199 .suspend = cik_sdma_suspend,
1200 .resume = cik_sdma_resume,
1201 .is_idle = cik_sdma_is_idle,
1202 .wait_for_idle = cik_sdma_wait_for_idle,
1203 .soft_reset = cik_sdma_soft_reset,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001204 .set_clockgating_state = cik_sdma_set_clockgating_state,
1205 .set_powergating_state = cik_sdma_set_powergating_state,
1206};
1207
Alex Deuchera2e73f52015-04-20 17:09:27 -04001208static const struct amdgpu_ring_funcs cik_sdma_ring_funcs = {
Christian König21cd9422016-10-05 15:36:39 +02001209 .type = AMDGPU_RING_TYPE_SDMA,
Christian König79887142016-10-05 16:09:32 +02001210 .align_mask = 0xf,
1211 .nop = SDMA_PACKET(SDMA_OPCODE_NOP, 0, 0),
Alex Deuchera2e73f52015-04-20 17:09:27 -04001212 .get_rptr = cik_sdma_ring_get_rptr,
1213 .get_wptr = cik_sdma_ring_get_wptr,
1214 .set_wptr = cik_sdma_ring_set_wptr,
Christian Könige12f3d72016-10-05 14:29:38 +02001215 .emit_frame_size =
1216 6 + /* cik_sdma_ring_emit_hdp_flush */
1217 3 + /* cik_sdma_ring_emit_hdp_invalidate */
1218 6 + /* cik_sdma_ring_emit_pipeline_sync */
1219 12 + /* cik_sdma_ring_emit_vm_flush */
1220 9 + 9 + 9, /* cik_sdma_ring_emit_fence x3 for user fence, vm fence */
1221 .emit_ib_size = 7 + 4, /* cik_sdma_ring_emit_ib */
Alex Deuchera2e73f52015-04-20 17:09:27 -04001222 .emit_ib = cik_sdma_ring_emit_ib,
1223 .emit_fence = cik_sdma_ring_emit_fence,
Christian König00b7c4f2016-03-08 14:11:00 +01001224 .emit_pipeline_sync = cik_sdma_ring_emit_pipeline_sync,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001225 .emit_vm_flush = cik_sdma_ring_emit_vm_flush,
Christian Königd2edb072015-05-11 14:10:34 +02001226 .emit_hdp_flush = cik_sdma_ring_emit_hdp_flush,
Chunming Zhou498dd972016-03-03 12:05:44 +08001227 .emit_hdp_invalidate = cik_sdma_ring_emit_hdp_invalidate,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001228 .test_ring = cik_sdma_ring_test_ring,
1229 .test_ib = cik_sdma_ring_test_ib,
Jammy Zhouac01db32015-09-01 13:13:54 +08001230 .insert_nop = cik_sdma_ring_insert_nop,
Christian König9e5d53092016-01-31 12:20:55 +01001231 .pad_ib = cik_sdma_ring_pad_ib,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001232};
1233
1234static void cik_sdma_set_ring_funcs(struct amdgpu_device *adev)
1235{
Alex Deucherc113ea12015-10-08 16:30:37 -04001236 int i;
1237
1238 for (i = 0; i < adev->sdma.num_instances; i++)
1239 adev->sdma.instance[i].ring.funcs = &cik_sdma_ring_funcs;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001240}
1241
1242static const struct amdgpu_irq_src_funcs cik_sdma_trap_irq_funcs = {
1243 .set = cik_sdma_set_trap_irq_state,
1244 .process = cik_sdma_process_trap_irq,
1245};
1246
1247static const struct amdgpu_irq_src_funcs cik_sdma_illegal_inst_irq_funcs = {
1248 .process = cik_sdma_process_illegal_inst_irq,
1249};
1250
1251static void cik_sdma_set_irq_funcs(struct amdgpu_device *adev)
1252{
Alex Deucherc113ea12015-10-08 16:30:37 -04001253 adev->sdma.trap_irq.num_types = AMDGPU_SDMA_IRQ_LAST;
1254 adev->sdma.trap_irq.funcs = &cik_sdma_trap_irq_funcs;
1255 adev->sdma.illegal_inst_irq.funcs = &cik_sdma_illegal_inst_irq_funcs;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001256}
1257
1258/**
1259 * cik_sdma_emit_copy_buffer - copy buffer using the sDMA engine
1260 *
1261 * @ring: amdgpu_ring structure holding ring information
1262 * @src_offset: src GPU address
1263 * @dst_offset: dst GPU address
1264 * @byte_count: number of bytes to xfer
1265 *
1266 * Copy GPU buffers using the DMA engine (CIK).
1267 * Used by the amdgpu ttm implementation to move pages if
1268 * registered as the asic copy callback.
1269 */
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08001270static void cik_sdma_emit_copy_buffer(struct amdgpu_ib *ib,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001271 uint64_t src_offset,
1272 uint64_t dst_offset,
1273 uint32_t byte_count)
1274{
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08001275 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_COPY, SDMA_COPY_SUB_OPCODE_LINEAR, 0);
1276 ib->ptr[ib->length_dw++] = byte_count;
1277 ib->ptr[ib->length_dw++] = 0; /* src/dst endian swap */
1278 ib->ptr[ib->length_dw++] = lower_32_bits(src_offset);
1279 ib->ptr[ib->length_dw++] = upper_32_bits(src_offset);
1280 ib->ptr[ib->length_dw++] = lower_32_bits(dst_offset);
1281 ib->ptr[ib->length_dw++] = upper_32_bits(dst_offset);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001282}
1283
1284/**
1285 * cik_sdma_emit_fill_buffer - fill buffer using the sDMA engine
1286 *
1287 * @ring: amdgpu_ring structure holding ring information
1288 * @src_data: value to write to buffer
1289 * @dst_offset: dst GPU address
1290 * @byte_count: number of bytes to xfer
1291 *
1292 * Fill GPU buffers using the DMA engine (CIK).
1293 */
Chunming Zhou6e7a3842015-08-27 13:46:09 +08001294static void cik_sdma_emit_fill_buffer(struct amdgpu_ib *ib,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001295 uint32_t src_data,
1296 uint64_t dst_offset,
1297 uint32_t byte_count)
1298{
Chunming Zhou6e7a3842015-08-27 13:46:09 +08001299 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_CONSTANT_FILL, 0, 0);
1300 ib->ptr[ib->length_dw++] = lower_32_bits(dst_offset);
1301 ib->ptr[ib->length_dw++] = upper_32_bits(dst_offset);
1302 ib->ptr[ib->length_dw++] = src_data;
1303 ib->ptr[ib->length_dw++] = byte_count;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001304}
1305
1306static const struct amdgpu_buffer_funcs cik_sdma_buffer_funcs = {
1307 .copy_max_bytes = 0x1fffff,
1308 .copy_num_dw = 7,
1309 .emit_copy_buffer = cik_sdma_emit_copy_buffer,
1310
1311 .fill_max_bytes = 0x1fffff,
1312 .fill_num_dw = 5,
1313 .emit_fill_buffer = cik_sdma_emit_fill_buffer,
1314};
1315
1316static void cik_sdma_set_buffer_funcs(struct amdgpu_device *adev)
1317{
1318 if (adev->mman.buffer_funcs == NULL) {
1319 adev->mman.buffer_funcs = &cik_sdma_buffer_funcs;
Alex Deucherc113ea12015-10-08 16:30:37 -04001320 adev->mman.buffer_funcs_ring = &adev->sdma.instance[0].ring;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001321 }
1322}
1323
1324static const struct amdgpu_vm_pte_funcs cik_sdma_vm_pte_funcs = {
1325 .copy_pte = cik_sdma_vm_copy_pte,
1326 .write_pte = cik_sdma_vm_write_pte,
1327 .set_pte_pde = cik_sdma_vm_set_pte_pde,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001328};
1329
1330static void cik_sdma_set_vm_pte_funcs(struct amdgpu_device *adev)
1331{
Christian König2d55e452016-02-08 17:37:38 +01001332 unsigned i;
1333
Alex Deuchera2e73f52015-04-20 17:09:27 -04001334 if (adev->vm_manager.vm_pte_funcs == NULL) {
1335 adev->vm_manager.vm_pte_funcs = &cik_sdma_vm_pte_funcs;
Christian König2d55e452016-02-08 17:37:38 +01001336 for (i = 0; i < adev->sdma.num_instances; i++)
1337 adev->vm_manager.vm_pte_rings[i] =
1338 &adev->sdma.instance[i].ring;
1339
1340 adev->vm_manager.vm_pte_num_rings = adev->sdma.num_instances;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001341 }
1342}
Alex Deuchera1255102016-10-13 17:41:13 -04001343
1344const struct amdgpu_ip_block_version cik_sdma_ip_block =
1345{
1346 .type = AMD_IP_BLOCK_TYPE_SDMA,
1347 .major = 2,
1348 .minor = 0,
1349 .rev = 0,
1350 .funcs = &cik_sdma_ip_funcs,
1351};