blob: 1d32dedb2534f6628530e0b3cfd72266e61a4569 [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 */
Ken Wang536fbf92016-03-12 09:32:30 +0800161static uint64_t cik_sdma_ring_get_rptr(struct amdgpu_ring *ring)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400162{
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 */
Ken Wang536fbf92016-03-12 09:32:30 +0800177static uint64_t cik_sdma_ring_get_wptr(struct amdgpu_ring *ring)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400178{
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
Ken Wang536fbf92016-03-12 09:32:30 +0800197 WREG32(mmSDMA0_GFX_RB_WPTR + sdma_offsets[me],
198 (lower_32_bits(ring->wptr) << 2) & 0x3fffc);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400199}
200
Jammy Zhouac01db32015-09-01 13:13:54 +0800201static void cik_sdma_ring_insert_nop(struct amdgpu_ring *ring, uint32_t count)
202{
Alex Deucherc113ea12015-10-08 16:30:37 -0400203 struct amdgpu_sdma_instance *sdma = amdgpu_get_sdma_instance(ring);
Jammy Zhouac01db32015-09-01 13:13:54 +0800204 int i;
205
206 for (i = 0; i < count; i++)
207 if (sdma && sdma->burst_nop && (i == 0))
Christian König79887142016-10-05 16:09:32 +0200208 amdgpu_ring_write(ring, ring->funcs->nop |
Jammy Zhouac01db32015-09-01 13:13:54 +0800209 SDMA_NOP_COUNT(count - 1));
210 else
Christian König79887142016-10-05 16:09:32 +0200211 amdgpu_ring_write(ring, ring->funcs->nop);
Jammy Zhouac01db32015-09-01 13:13:54 +0800212}
213
Alex Deuchera2e73f52015-04-20 17:09:27 -0400214/**
215 * cik_sdma_ring_emit_ib - Schedule an IB on the DMA engine
216 *
217 * @ring: amdgpu ring pointer
218 * @ib: IB object to schedule
219 *
220 * Schedule an IB in the DMA ring (CIK).
221 */
222static void cik_sdma_ring_emit_ib(struct amdgpu_ring *ring,
Christian Königd88bf582016-05-06 17:50:03 +0200223 struct amdgpu_ib *ib,
Christian Königc4f46f22017-12-18 17:08:25 +0100224 unsigned vmid, bool ctx_switch)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400225{
Christian Königc4f46f22017-12-18 17:08:25 +0100226 u32 extra_bits = vmid & 0xf;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400227
Alex Deuchera2e73f52015-04-20 17:09:27 -0400228 /* IB packet must end on a 8 DW boundary */
Ken Wang536fbf92016-03-12 09:32:30 +0800229 cik_sdma_ring_insert_nop(ring, (12 - (lower_32_bits(ring->wptr) & 7)) % 8);
Jammy Zhouac01db32015-09-01 13:13:54 +0800230
Alex Deuchera2e73f52015-04-20 17:09:27 -0400231 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_INDIRECT_BUFFER, 0, extra_bits));
232 amdgpu_ring_write(ring, ib->gpu_addr & 0xffffffe0); /* base must be 32 byte aligned */
233 amdgpu_ring_write(ring, upper_32_bits(ib->gpu_addr) & 0xffffffff);
234 amdgpu_ring_write(ring, ib->length_dw);
235
236}
237
238/**
Christian Königd2edb072015-05-11 14:10:34 +0200239 * cik_sdma_ring_emit_hdp_flush - emit an hdp flush on the DMA ring
Alex Deuchera2e73f52015-04-20 17:09:27 -0400240 *
241 * @ring: amdgpu ring pointer
242 *
243 * Emit an hdp flush packet on the requested DMA ring.
244 */
Christian Königd2edb072015-05-11 14:10:34 +0200245static void cik_sdma_ring_emit_hdp_flush(struct amdgpu_ring *ring)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400246{
247 u32 extra_bits = (SDMA_POLL_REG_MEM_EXTRA_OP(1) |
248 SDMA_POLL_REG_MEM_EXTRA_FUNC(3)); /* == */
249 u32 ref_and_mask;
250
Alex Deucherc113ea12015-10-08 16:30:37 -0400251 if (ring == &ring->adev->sdma.instance[0].ring)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400252 ref_and_mask = GPU_HDP_FLUSH_DONE__SDMA0_MASK;
253 else
254 ref_and_mask = GPU_HDP_FLUSH_DONE__SDMA1_MASK;
255
256 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_POLL_REG_MEM, 0, extra_bits));
257 amdgpu_ring_write(ring, mmGPU_HDP_FLUSH_DONE << 2);
258 amdgpu_ring_write(ring, mmGPU_HDP_FLUSH_REQ << 2);
259 amdgpu_ring_write(ring, ref_and_mask); /* reference */
260 amdgpu_ring_write(ring, ref_and_mask); /* mask */
261 amdgpu_ring_write(ring, (0xfff << 16) | 10); /* retry count, poll interval */
262}
263
Chunming Zhou498dd972016-03-03 12:05:44 +0800264static void cik_sdma_ring_emit_hdp_invalidate(struct amdgpu_ring *ring)
265{
266 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_SRBM_WRITE, 0, 0xf000));
267 amdgpu_ring_write(ring, mmHDP_DEBUG0);
268 amdgpu_ring_write(ring, 1);
269}
270
Alex Deuchera2e73f52015-04-20 17:09:27 -0400271/**
272 * cik_sdma_ring_emit_fence - emit a fence on the DMA ring
273 *
274 * @ring: amdgpu ring pointer
275 * @fence: amdgpu fence object
276 *
277 * Add a DMA fence packet to the ring to write
278 * the fence seq number and DMA trap packet to generate
279 * an interrupt if needed (CIK).
280 */
281static void cik_sdma_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
Chunming Zhou890ee232015-06-01 14:35:03 +0800282 unsigned flags)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400283{
Chunming Zhou890ee232015-06-01 14:35:03 +0800284 bool write64bit = flags & AMDGPU_FENCE_FLAG_64BIT;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400285 /* write the fence */
286 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_FENCE, 0, 0));
287 amdgpu_ring_write(ring, lower_32_bits(addr));
288 amdgpu_ring_write(ring, upper_32_bits(addr));
289 amdgpu_ring_write(ring, lower_32_bits(seq));
290
291 /* optionally write high bits as well */
292 if (write64bit) {
293 addr += 4;
294 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_FENCE, 0, 0));
295 amdgpu_ring_write(ring, lower_32_bits(addr));
296 amdgpu_ring_write(ring, upper_32_bits(addr));
297 amdgpu_ring_write(ring, upper_32_bits(seq));
298 }
299
300 /* generate an interrupt */
301 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_TRAP, 0, 0));
302}
303
304/**
Alex Deuchera2e73f52015-04-20 17:09:27 -0400305 * cik_sdma_gfx_stop - stop the gfx async dma engines
306 *
307 * @adev: amdgpu_device pointer
308 *
309 * Stop the gfx async dma ring buffers (CIK).
310 */
311static void cik_sdma_gfx_stop(struct amdgpu_device *adev)
312{
Alex Deucherc113ea12015-10-08 16:30:37 -0400313 struct amdgpu_ring *sdma0 = &adev->sdma.instance[0].ring;
314 struct amdgpu_ring *sdma1 = &adev->sdma.instance[1].ring;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400315 u32 rb_cntl;
316 int i;
317
318 if ((adev->mman.buffer_funcs_ring == sdma0) ||
319 (adev->mman.buffer_funcs_ring == sdma1))
Christian König770d13b2018-01-12 14:52:22 +0100320 amdgpu_ttm_set_active_vram_size(adev, adev->gmc.visible_vram_size);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400321
Alex Deucherc113ea12015-10-08 16:30:37 -0400322 for (i = 0; i < adev->sdma.num_instances; i++) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400323 rb_cntl = RREG32(mmSDMA0_GFX_RB_CNTL + sdma_offsets[i]);
324 rb_cntl &= ~SDMA0_GFX_RB_CNTL__RB_ENABLE_MASK;
325 WREG32(mmSDMA0_GFX_RB_CNTL + sdma_offsets[i], rb_cntl);
326 WREG32(mmSDMA0_GFX_IB_CNTL + sdma_offsets[i], 0);
327 }
328 sdma0->ready = false;
329 sdma1->ready = false;
330}
331
332/**
333 * cik_sdma_rlc_stop - stop the compute async dma engines
334 *
335 * @adev: amdgpu_device pointer
336 *
337 * Stop the compute async dma queues (CIK).
338 */
339static void cik_sdma_rlc_stop(struct amdgpu_device *adev)
340{
341 /* XXX todo */
342}
343
344/**
Felix Kuehling763dbbf2016-06-15 16:33:15 -0400345 * cik_ctx_switch_enable - stop the async dma engines context switch
346 *
347 * @adev: amdgpu_device pointer
348 * @enable: enable/disable the DMA MEs context switch.
349 *
350 * Halt or unhalt the async dma engines context switch (VI).
351 */
352static void cik_ctx_switch_enable(struct amdgpu_device *adev, bool enable)
353{
Felix Kuehlinga6673862016-07-15 18:37:05 -0400354 u32 f32_cntl, phase_quantum = 0;
Felix Kuehling763dbbf2016-06-15 16:33:15 -0400355 int i;
356
Felix Kuehlinga6673862016-07-15 18:37:05 -0400357 if (amdgpu_sdma_phase_quantum) {
358 unsigned value = amdgpu_sdma_phase_quantum;
359 unsigned unit = 0;
360
361 while (value > (SDMA0_PHASE0_QUANTUM__VALUE_MASK >>
362 SDMA0_PHASE0_QUANTUM__VALUE__SHIFT)) {
363 value = (value + 1) >> 1;
364 unit++;
365 }
366 if (unit > (SDMA0_PHASE0_QUANTUM__UNIT_MASK >>
367 SDMA0_PHASE0_QUANTUM__UNIT__SHIFT)) {
368 value = (SDMA0_PHASE0_QUANTUM__VALUE_MASK >>
369 SDMA0_PHASE0_QUANTUM__VALUE__SHIFT);
370 unit = (SDMA0_PHASE0_QUANTUM__UNIT_MASK >>
371 SDMA0_PHASE0_QUANTUM__UNIT__SHIFT);
372 WARN_ONCE(1,
373 "clamping sdma_phase_quantum to %uK clock cycles\n",
374 value << unit);
375 }
376 phase_quantum =
377 value << SDMA0_PHASE0_QUANTUM__VALUE__SHIFT |
378 unit << SDMA0_PHASE0_QUANTUM__UNIT__SHIFT;
379 }
380
Felix Kuehling763dbbf2016-06-15 16:33:15 -0400381 for (i = 0; i < adev->sdma.num_instances; i++) {
382 f32_cntl = RREG32(mmSDMA0_CNTL + sdma_offsets[i]);
383 if (enable) {
384 f32_cntl = REG_SET_FIELD(f32_cntl, SDMA0_CNTL,
385 AUTO_CTXSW_ENABLE, 1);
Felix Kuehlinga6673862016-07-15 18:37:05 -0400386 if (amdgpu_sdma_phase_quantum) {
387 WREG32(mmSDMA0_PHASE0_QUANTUM + sdma_offsets[i],
388 phase_quantum);
389 WREG32(mmSDMA0_PHASE1_QUANTUM + sdma_offsets[i],
390 phase_quantum);
391 }
Felix Kuehling763dbbf2016-06-15 16:33:15 -0400392 } else {
393 f32_cntl = REG_SET_FIELD(f32_cntl, SDMA0_CNTL,
394 AUTO_CTXSW_ENABLE, 0);
395 }
396
397 WREG32(mmSDMA0_CNTL + sdma_offsets[i], f32_cntl);
398 }
399}
400
401/**
Alex Deuchera2e73f52015-04-20 17:09:27 -0400402 * cik_sdma_enable - stop the async dma engines
403 *
404 * @adev: amdgpu_device pointer
405 * @enable: enable/disable the DMA MEs.
406 *
407 * Halt or unhalt the async dma engines (CIK).
408 */
409static void cik_sdma_enable(struct amdgpu_device *adev, bool enable)
410{
411 u32 me_cntl;
412 int i;
413
Edward O'Callaghan004e29c2016-07-12 10:17:53 +1000414 if (!enable) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400415 cik_sdma_gfx_stop(adev);
416 cik_sdma_rlc_stop(adev);
417 }
418
Alex Deucherc113ea12015-10-08 16:30:37 -0400419 for (i = 0; i < adev->sdma.num_instances; i++) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400420 me_cntl = RREG32(mmSDMA0_F32_CNTL + sdma_offsets[i]);
421 if (enable)
422 me_cntl &= ~SDMA0_F32_CNTL__HALT_MASK;
423 else
424 me_cntl |= SDMA0_F32_CNTL__HALT_MASK;
425 WREG32(mmSDMA0_F32_CNTL + sdma_offsets[i], me_cntl);
426 }
427}
428
429/**
430 * cik_sdma_gfx_resume - setup and start the async dma engines
431 *
432 * @adev: amdgpu_device pointer
433 *
434 * Set up the gfx DMA ring buffers and enable them (CIK).
435 * Returns 0 for success, error for failure.
436 */
437static int cik_sdma_gfx_resume(struct amdgpu_device *adev)
438{
439 struct amdgpu_ring *ring;
440 u32 rb_cntl, ib_cntl;
441 u32 rb_bufsz;
442 u32 wb_offset;
443 int i, j, r;
444
Alex Deucherc113ea12015-10-08 16:30:37 -0400445 for (i = 0; i < adev->sdma.num_instances; i++) {
446 ring = &adev->sdma.instance[i].ring;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400447 wb_offset = (ring->rptr_offs * 4);
448
449 mutex_lock(&adev->srbm_mutex);
450 for (j = 0; j < 16; j++) {
451 cik_srbm_select(adev, 0, 0, 0, j);
452 /* SDMA GFX */
453 WREG32(mmSDMA0_GFX_VIRTUAL_ADDR + sdma_offsets[i], 0);
454 WREG32(mmSDMA0_GFX_APE1_CNTL + sdma_offsets[i], 0);
455 /* XXX SDMA RLC - todo */
456 }
457 cik_srbm_select(adev, 0, 0, 0, 0);
458 mutex_unlock(&adev->srbm_mutex);
459
Alex Deucher2b3a7652016-02-12 03:05:24 -0500460 WREG32(mmSDMA0_TILING_CONFIG + sdma_offsets[i],
461 adev->gfx.config.gb_addr_config & 0x70);
462
Alex Deuchera2e73f52015-04-20 17:09:27 -0400463 WREG32(mmSDMA0_SEM_INCOMPLETE_TIMER_CNTL + sdma_offsets[i], 0);
464 WREG32(mmSDMA0_SEM_WAIT_FAIL_TIMER_CNTL + sdma_offsets[i], 0);
465
466 /* Set ring buffer size in dwords */
467 rb_bufsz = order_base_2(ring->ring_size / 4);
468 rb_cntl = rb_bufsz << 1;
469#ifdef __BIG_ENDIAN
Alex Deucher454fc952015-06-09 09:58:23 -0400470 rb_cntl |= SDMA0_GFX_RB_CNTL__RB_SWAP_ENABLE_MASK |
471 SDMA0_GFX_RB_CNTL__RPTR_WRITEBACK_SWAP_ENABLE_MASK;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400472#endif
473 WREG32(mmSDMA0_GFX_RB_CNTL + sdma_offsets[i], rb_cntl);
474
475 /* Initialize the ring buffer's read and write pointers */
476 WREG32(mmSDMA0_GFX_RB_RPTR + sdma_offsets[i], 0);
477 WREG32(mmSDMA0_GFX_RB_WPTR + sdma_offsets[i], 0);
Monk Liud72f7c02016-05-25 16:55:50 +0800478 WREG32(mmSDMA0_GFX_IB_RPTR + sdma_offsets[i], 0);
479 WREG32(mmSDMA0_GFX_IB_OFFSET + sdma_offsets[i], 0);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400480
481 /* set the wb address whether it's enabled or not */
482 WREG32(mmSDMA0_GFX_RB_RPTR_ADDR_HI + sdma_offsets[i],
483 upper_32_bits(adev->wb.gpu_addr + wb_offset) & 0xFFFFFFFF);
484 WREG32(mmSDMA0_GFX_RB_RPTR_ADDR_LO + sdma_offsets[i],
485 ((adev->wb.gpu_addr + wb_offset) & 0xFFFFFFFC));
486
487 rb_cntl |= SDMA0_GFX_RB_CNTL__RPTR_WRITEBACK_ENABLE_MASK;
488
489 WREG32(mmSDMA0_GFX_RB_BASE + sdma_offsets[i], ring->gpu_addr >> 8);
490 WREG32(mmSDMA0_GFX_RB_BASE_HI + sdma_offsets[i], ring->gpu_addr >> 40);
491
492 ring->wptr = 0;
Ken Wang536fbf92016-03-12 09:32:30 +0800493 WREG32(mmSDMA0_GFX_RB_WPTR + sdma_offsets[i], lower_32_bits(ring->wptr) << 2);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400494
495 /* enable DMA RB */
496 WREG32(mmSDMA0_GFX_RB_CNTL + sdma_offsets[i],
497 rb_cntl | SDMA0_GFX_RB_CNTL__RB_ENABLE_MASK);
498
499 ib_cntl = SDMA0_GFX_IB_CNTL__IB_ENABLE_MASK;
500#ifdef __BIG_ENDIAN
501 ib_cntl |= SDMA0_GFX_IB_CNTL__IB_SWAP_ENABLE_MASK;
502#endif
503 /* enable DMA IBs */
504 WREG32(mmSDMA0_GFX_IB_CNTL + sdma_offsets[i], ib_cntl);
505
506 ring->ready = true;
Monk Liu505dfe72016-05-25 16:57:14 +0800507 }
Alex Deuchera2e73f52015-04-20 17:09:27 -0400508
Monk Liu505dfe72016-05-25 16:57:14 +0800509 cik_sdma_enable(adev, true);
510
511 for (i = 0; i < adev->sdma.num_instances; i++) {
512 ring = &adev->sdma.instance[i].ring;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400513 r = amdgpu_ring_test_ring(ring);
514 if (r) {
515 ring->ready = false;
516 return r;
517 }
518
519 if (adev->mman.buffer_funcs_ring == ring)
Christian König770d13b2018-01-12 14:52:22 +0100520 amdgpu_ttm_set_active_vram_size(adev, adev->gmc.real_vram_size);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400521 }
522
523 return 0;
524}
525
526/**
527 * cik_sdma_rlc_resume - setup and start the async dma engines
528 *
529 * @adev: amdgpu_device pointer
530 *
531 * Set up the compute DMA queues and enable them (CIK).
532 * Returns 0 for success, error for failure.
533 */
534static int cik_sdma_rlc_resume(struct amdgpu_device *adev)
535{
536 /* XXX todo */
537 return 0;
538}
539
540/**
541 * cik_sdma_load_microcode - load the sDMA ME ucode
542 *
543 * @adev: amdgpu_device pointer
544 *
545 * Loads the sDMA0/1 ucode.
546 * Returns 0 for success, -EINVAL if the ucode is not available.
547 */
548static int cik_sdma_load_microcode(struct amdgpu_device *adev)
549{
550 const struct sdma_firmware_header_v1_0 *hdr;
551 const __le32 *fw_data;
552 u32 fw_size;
553 int i, j;
554
Alex Deuchera2e73f52015-04-20 17:09:27 -0400555 /* halt the MEs */
556 cik_sdma_enable(adev, false);
557
Alex Deucherc113ea12015-10-08 16:30:37 -0400558 for (i = 0; i < adev->sdma.num_instances; i++) {
559 if (!adev->sdma.instance[i].fw)
560 return -EINVAL;
561 hdr = (const struct sdma_firmware_header_v1_0 *)adev->sdma.instance[i].fw->data;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400562 amdgpu_ucode_print_sdma_hdr(&hdr->header);
563 fw_size = le32_to_cpu(hdr->header.ucode_size_bytes) / 4;
Alex Deucherc113ea12015-10-08 16:30:37 -0400564 adev->sdma.instance[i].fw_version = le32_to_cpu(hdr->header.ucode_version);
565 adev->sdma.instance[i].feature_version = le32_to_cpu(hdr->ucode_feature_version);
566 if (adev->sdma.instance[i].feature_version >= 20)
567 adev->sdma.instance[i].burst_nop = true;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400568 fw_data = (const __le32 *)
Alex Deucherc113ea12015-10-08 16:30:37 -0400569 (adev->sdma.instance[i].fw->data + le32_to_cpu(hdr->header.ucode_array_offset_bytes));
Alex Deuchera2e73f52015-04-20 17:09:27 -0400570 WREG32(mmSDMA0_UCODE_ADDR + sdma_offsets[i], 0);
571 for (j = 0; j < fw_size; j++)
572 WREG32(mmSDMA0_UCODE_DATA + sdma_offsets[i], le32_to_cpup(fw_data++));
Alex Deucherc113ea12015-10-08 16:30:37 -0400573 WREG32(mmSDMA0_UCODE_ADDR + sdma_offsets[i], adev->sdma.instance[i].fw_version);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400574 }
575
576 return 0;
577}
578
579/**
580 * cik_sdma_start - setup and start the async dma engines
581 *
582 * @adev: amdgpu_device pointer
583 *
584 * Set up the DMA engines and enable them (CIK).
585 * Returns 0 for success, error for failure.
586 */
587static int cik_sdma_start(struct amdgpu_device *adev)
588{
589 int r;
590
591 r = cik_sdma_load_microcode(adev);
592 if (r)
593 return r;
594
Monk Liu505dfe72016-05-25 16:57:14 +0800595 /* halt the engine before programing */
596 cik_sdma_enable(adev, false);
Felix Kuehling763dbbf2016-06-15 16:33:15 -0400597 /* enable sdma ring preemption */
598 cik_ctx_switch_enable(adev, true);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400599
600 /* start the gfx rings and rlc compute queues */
601 r = cik_sdma_gfx_resume(adev);
602 if (r)
603 return r;
604 r = cik_sdma_rlc_resume(adev);
605 if (r)
606 return r;
607
608 return 0;
609}
610
611/**
612 * cik_sdma_ring_test_ring - simple async dma engine test
613 *
614 * @ring: amdgpu_ring structure holding ring information
615 *
616 * Test the DMA engine by writing using it to write an
617 * value to memory. (CIK).
618 * Returns 0 for success, error for failure.
619 */
620static int cik_sdma_ring_test_ring(struct amdgpu_ring *ring)
621{
622 struct amdgpu_device *adev = ring->adev;
623 unsigned i;
624 unsigned index;
625 int r;
626 u32 tmp;
627 u64 gpu_addr;
628
Alex Deucher131b4b32017-12-14 16:03:43 -0500629 r = amdgpu_device_wb_get(adev, &index);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400630 if (r) {
631 dev_err(adev->dev, "(%d) failed to allocate wb slot\n", r);
632 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);
638
Christian Königa27de352016-01-21 11:28:53 +0100639 r = amdgpu_ring_alloc(ring, 5);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400640 if (r) {
641 DRM_ERROR("amdgpu: dma failed to lock ring %d (%d).\n", ring->idx, r);
Alex Deucher131b4b32017-12-14 16:03:43 -0500642 amdgpu_device_wb_free(adev, index);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400643 return r;
644 }
645 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_WRITE, SDMA_WRITE_SUB_OPCODE_LINEAR, 0));
646 amdgpu_ring_write(ring, lower_32_bits(gpu_addr));
647 amdgpu_ring_write(ring, upper_32_bits(gpu_addr));
648 amdgpu_ring_write(ring, 1); /* number of DWs to follow */
649 amdgpu_ring_write(ring, 0xDEADBEEF);
Christian Königa27de352016-01-21 11:28:53 +0100650 amdgpu_ring_commit(ring);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400651
652 for (i = 0; i < adev->usec_timeout; i++) {
653 tmp = le32_to_cpu(adev->wb.wb[index]);
654 if (tmp == 0xDEADBEEF)
655 break;
656 DRM_UDELAY(1);
657 }
658
659 if (i < adev->usec_timeout) {
pding9953b722017-10-26 09:30:38 +0800660 DRM_DEBUG("ring test on %d succeeded in %d usecs\n", ring->idx, i);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400661 } else {
662 DRM_ERROR("amdgpu: ring %d test failed (0x%08X)\n",
663 ring->idx, tmp);
664 r = -EINVAL;
665 }
Alex Deucher131b4b32017-12-14 16:03:43 -0500666 amdgpu_device_wb_free(adev, index);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400667
668 return r;
669}
670
671/**
672 * cik_sdma_ring_test_ib - test an IB on the DMA engine
673 *
674 * @ring: amdgpu_ring structure holding ring information
675 *
676 * Test a simple IB in the DMA ring (CIK).
677 * Returns 0 on success, error on failure.
678 */
Christian Königbbec97a2016-07-05 21:07:17 +0200679static int cik_sdma_ring_test_ib(struct amdgpu_ring *ring, long timeout)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400680{
681 struct amdgpu_device *adev = ring->adev;
682 struct amdgpu_ib ib;
Chris Wilsonf54d1862016-10-25 13:00:45 +0100683 struct dma_fence *f = NULL;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400684 unsigned index;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400685 u32 tmp = 0;
686 u64 gpu_addr;
Christian Königbbec97a2016-07-05 21:07:17 +0200687 long r;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400688
Alex Deucher131b4b32017-12-14 16:03:43 -0500689 r = amdgpu_device_wb_get(adev, &index);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400690 if (r) {
Christian Königbbec97a2016-07-05 21:07:17 +0200691 dev_err(adev->dev, "(%ld) failed to allocate wb slot\n", r);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400692 return r;
693 }
694
695 gpu_addr = adev->wb.gpu_addr + (index * 4);
696 tmp = 0xCAFEDEAD;
697 adev->wb.wb[index] = cpu_to_le32(tmp);
Christian Königb203dd92015-08-18 18:23:16 +0200698 memset(&ib, 0, sizeof(ib));
Christian Königb07c60c2016-01-31 12:29:04 +0100699 r = amdgpu_ib_get(adev, NULL, 256, &ib);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400700 if (r) {
Christian Königbbec97a2016-07-05 21:07:17 +0200701 DRM_ERROR("amdgpu: failed to get ib (%ld).\n", r);
Chunming Zhou0011fda2015-06-01 15:33:20 +0800702 goto err0;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400703 }
704
Christian König6d445652016-07-05 15:53:07 +0200705 ib.ptr[0] = SDMA_PACKET(SDMA_OPCODE_WRITE,
706 SDMA_WRITE_SUB_OPCODE_LINEAR, 0);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400707 ib.ptr[1] = lower_32_bits(gpu_addr);
708 ib.ptr[2] = upper_32_bits(gpu_addr);
709 ib.ptr[3] = 1;
710 ib.ptr[4] = 0xDEADBEEF;
711 ib.length_dw = 5;
Junwei Zhang50ddc752017-01-23 16:30:38 +0800712 r = amdgpu_ib_schedule(ring, 1, &ib, NULL, &f);
Chunming Zhou0011fda2015-06-01 15:33:20 +0800713 if (r)
714 goto err1;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400715
Chris Wilsonf54d1862016-10-25 13:00:45 +0100716 r = dma_fence_wait_timeout(f, false, timeout);
Christian Königbbec97a2016-07-05 21:07:17 +0200717 if (r == 0) {
718 DRM_ERROR("amdgpu: IB test timed out\n");
719 r = -ETIMEDOUT;
720 goto err1;
721 } else if (r < 0) {
722 DRM_ERROR("amdgpu: fence wait failed (%ld).\n", r);
Chunming Zhou0011fda2015-06-01 15:33:20 +0800723 goto err1;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400724 }
Christian König6d445652016-07-05 15:53:07 +0200725 tmp = le32_to_cpu(adev->wb.wb[index]);
726 if (tmp == 0xDEADBEEF) {
pding9953b722017-10-26 09:30:38 +0800727 DRM_DEBUG("ib test on ring %d succeeded\n", ring->idx);
Christian Königbbec97a2016-07-05 21:07:17 +0200728 r = 0;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400729 } else {
730 DRM_ERROR("amdgpu: ib test failed (0x%08X)\n", tmp);
731 r = -EINVAL;
732 }
Chunming Zhou0011fda2015-06-01 15:33:20 +0800733
734err1:
Monk Liucc55c452016-03-17 10:47:07 +0800735 amdgpu_ib_free(adev, &ib, NULL);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100736 dma_fence_put(f);
Chunming Zhou0011fda2015-06-01 15:33:20 +0800737err0:
Alex Deucher131b4b32017-12-14 16:03:43 -0500738 amdgpu_device_wb_free(adev, index);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400739 return r;
740}
741
742/**
743 * cik_sdma_vm_copy_pages - update PTEs by copying them from the GART
744 *
745 * @ib: indirect buffer to fill with commands
746 * @pe: addr of the page entry
747 * @src: src addr to copy from
748 * @count: number of page entries to update
749 *
750 * Update PTEs by copying them from the GART using sDMA (CIK).
751 */
752static void cik_sdma_vm_copy_pte(struct amdgpu_ib *ib,
753 uint64_t pe, uint64_t src,
754 unsigned count)
755{
Christian König96105e52016-08-12 12:59:59 +0200756 unsigned bytes = count * 8;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400757
Christian König96105e52016-08-12 12:59:59 +0200758 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_COPY,
759 SDMA_WRITE_SUB_OPCODE_LINEAR, 0);
760 ib->ptr[ib->length_dw++] = bytes;
761 ib->ptr[ib->length_dw++] = 0; /* src/dst endian swap */
762 ib->ptr[ib->length_dw++] = lower_32_bits(src);
763 ib->ptr[ib->length_dw++] = upper_32_bits(src);
764 ib->ptr[ib->length_dw++] = lower_32_bits(pe);
765 ib->ptr[ib->length_dw++] = upper_32_bits(pe);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400766}
767
768/**
769 * cik_sdma_vm_write_pages - update PTEs by writing them manually
770 *
771 * @ib: indirect buffer to fill with commands
772 * @pe: addr of the page entry
Christian Königde9ea7b2016-08-12 11:33:30 +0200773 * @value: dst addr to write into pe
Alex Deuchera2e73f52015-04-20 17:09:27 -0400774 * @count: number of page entries to update
775 * @incr: increase next addr by incr bytes
Alex Deuchera2e73f52015-04-20 17:09:27 -0400776 *
777 * Update PTEs by writing them manually using sDMA (CIK).
778 */
Christian Königde9ea7b2016-08-12 11:33:30 +0200779static void cik_sdma_vm_write_pte(struct amdgpu_ib *ib, uint64_t pe,
780 uint64_t value, unsigned count,
781 uint32_t incr)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400782{
Christian Königde9ea7b2016-08-12 11:33:30 +0200783 unsigned ndw = count * 2;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400784
Christian Königde9ea7b2016-08-12 11:33:30 +0200785 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_WRITE,
786 SDMA_WRITE_SUB_OPCODE_LINEAR, 0);
787 ib->ptr[ib->length_dw++] = lower_32_bits(pe);
788 ib->ptr[ib->length_dw++] = upper_32_bits(pe);
789 ib->ptr[ib->length_dw++] = ndw;
790 for (; ndw > 0; ndw -= 2) {
791 ib->ptr[ib->length_dw++] = lower_32_bits(value);
792 ib->ptr[ib->length_dw++] = upper_32_bits(value);
793 value += incr;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400794 }
795}
796
797/**
798 * cik_sdma_vm_set_pages - update the page tables using sDMA
799 *
800 * @ib: indirect buffer to fill with commands
801 * @pe: addr of the page entry
802 * @addr: dst addr to write into pe
803 * @count: number of page entries to update
804 * @incr: increase next addr by incr bytes
805 * @flags: access flags
806 *
807 * Update the page tables using sDMA (CIK).
808 */
Christian König96105e52016-08-12 12:59:59 +0200809static void cik_sdma_vm_set_pte_pde(struct amdgpu_ib *ib, uint64_t pe,
Alex Deuchera2e73f52015-04-20 17:09:27 -0400810 uint64_t addr, unsigned count,
Chunming Zhou6b777602016-09-21 16:19:19 +0800811 uint32_t incr, uint64_t flags)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400812{
Christian König96105e52016-08-12 12:59:59 +0200813 /* for physically contiguous pages (vram) */
814 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_GENERATE_PTE_PDE, 0, 0);
815 ib->ptr[ib->length_dw++] = lower_32_bits(pe); /* dst addr */
816 ib->ptr[ib->length_dw++] = upper_32_bits(pe);
Junwei Zhangb9be7002017-03-28 16:52:07 +0800817 ib->ptr[ib->length_dw++] = lower_32_bits(flags); /* mask */
818 ib->ptr[ib->length_dw++] = upper_32_bits(flags);
Christian König96105e52016-08-12 12:59:59 +0200819 ib->ptr[ib->length_dw++] = lower_32_bits(addr); /* value */
820 ib->ptr[ib->length_dw++] = upper_32_bits(addr);
821 ib->ptr[ib->length_dw++] = incr; /* increment size */
822 ib->ptr[ib->length_dw++] = 0;
823 ib->ptr[ib->length_dw++] = count; /* number of entries */
Alex Deuchera2e73f52015-04-20 17:09:27 -0400824}
825
826/**
827 * cik_sdma_vm_pad_ib - pad the IB to the required number of dw
828 *
829 * @ib: indirect buffer to fill with padding
830 *
831 */
Christian König9e5d53092016-01-31 12:20:55 +0100832static void cik_sdma_ring_pad_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400833{
Christian König9e5d53092016-01-31 12:20:55 +0100834 struct amdgpu_sdma_instance *sdma = amdgpu_get_sdma_instance(ring);
Jammy Zhouac01db32015-09-01 13:13:54 +0800835 u32 pad_count;
836 int i;
837
838 pad_count = (8 - (ib->length_dw & 0x7)) % 8;
839 for (i = 0; i < pad_count; i++)
840 if (sdma && sdma->burst_nop && (i == 0))
841 ib->ptr[ib->length_dw++] =
842 SDMA_PACKET(SDMA_OPCODE_NOP, 0, 0) |
843 SDMA_NOP_COUNT(pad_count - 1);
844 else
845 ib->ptr[ib->length_dw++] =
846 SDMA_PACKET(SDMA_OPCODE_NOP, 0, 0);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400847}
848
849/**
Christian König00b7c4f2016-03-08 14:11:00 +0100850 * cik_sdma_ring_emit_pipeline_sync - sync the pipeline
Alex Deuchera2e73f52015-04-20 17:09:27 -0400851 *
852 * @ring: amdgpu_ring pointer
Alex Deuchera2e73f52015-04-20 17:09:27 -0400853 *
Christian König00b7c4f2016-03-08 14:11:00 +0100854 * Make sure all previous operations are completed (CIK).
Alex Deuchera2e73f52015-04-20 17:09:27 -0400855 */
Christian König00b7c4f2016-03-08 14:11:00 +0100856static void cik_sdma_ring_emit_pipeline_sync(struct amdgpu_ring *ring)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400857{
Chunming Zhou5c55db82016-03-02 11:30:31 +0800858 uint32_t seq = ring->fence_drv.sync_seq;
859 uint64_t addr = ring->fence_drv.gpu_addr;
860
861 /* wait for idle */
862 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_POLL_REG_MEM, 0,
863 SDMA_POLL_REG_MEM_EXTRA_OP(0) |
864 SDMA_POLL_REG_MEM_EXTRA_FUNC(3) | /* equal */
865 SDMA_POLL_REG_MEM_EXTRA_M));
866 amdgpu_ring_write(ring, addr & 0xfffffffc);
867 amdgpu_ring_write(ring, upper_32_bits(addr) & 0xffffffff);
868 amdgpu_ring_write(ring, seq); /* reference */
869 amdgpu_ring_write(ring, 0xfffffff); /* mask */
870 amdgpu_ring_write(ring, (0xfff << 16) | 4); /* retry count, poll interval */
Christian König00b7c4f2016-03-08 14:11:00 +0100871}
Chunming Zhou5c55db82016-03-02 11:30:31 +0800872
Christian König00b7c4f2016-03-08 14:11:00 +0100873/**
Alex Deuchera2e73f52015-04-20 17:09:27 -0400874 * cik_sdma_ring_emit_vm_flush - cik vm flush using sDMA
875 *
876 * @ring: amdgpu_ring pointer
877 * @vm: amdgpu_vm pointer
878 *
879 * Update the page table base and flush the VM TLB
880 * using sDMA (CIK).
881 */
882static void cik_sdma_ring_emit_vm_flush(struct amdgpu_ring *ring,
Christian König5a4633c2018-01-08 14:48:11 +0100883 unsigned vmid, unsigned pasid,
884 uint64_t pd_addr)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400885{
886 u32 extra_bits = (SDMA_POLL_REG_MEM_EXTRA_OP(0) |
887 SDMA_POLL_REG_MEM_EXTRA_FUNC(0)); /* always */
888
Christian Königd9a701c2018-01-12 17:08:22 +0100889 amdgpu_gmc_emit_flush_gpu_tlb(ring, vmid, pasid, pd_addr);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400890
891 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_POLL_REG_MEM, 0, extra_bits));
892 amdgpu_ring_write(ring, mmVM_INVALIDATE_REQUEST << 2);
893 amdgpu_ring_write(ring, 0);
894 amdgpu_ring_write(ring, 0); /* reference */
895 amdgpu_ring_write(ring, 0); /* mask */
896 amdgpu_ring_write(ring, (0xfff << 16) | 10); /* retry count, poll interval */
897}
898
Christian Königa37e69d2018-01-12 16:33:15 +0100899static void cik_sdma_ring_emit_wreg(struct amdgpu_ring *ring,
900 uint32_t reg, uint32_t val)
901{
902 amdgpu_ring_write(ring, SDMA_PACKET(SDMA_OPCODE_SRBM_WRITE, 0, 0xf000));
903 amdgpu_ring_write(ring, reg);
904 amdgpu_ring_write(ring, val);
905}
906
Alex Deuchera2e73f52015-04-20 17:09:27 -0400907static void cik_enable_sdma_mgcg(struct amdgpu_device *adev,
908 bool enable)
909{
910 u32 orig, data;
911
Alex Deuchere3b04bc2016-02-05 10:56:22 -0500912 if (enable && (adev->cg_flags & AMD_CG_SUPPORT_SDMA_MGCG)) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400913 WREG32(mmSDMA0_CLK_CTRL + SDMA0_REGISTER_OFFSET, 0x00000100);
914 WREG32(mmSDMA0_CLK_CTRL + SDMA1_REGISTER_OFFSET, 0x00000100);
915 } else {
916 orig = data = RREG32(mmSDMA0_CLK_CTRL + SDMA0_REGISTER_OFFSET);
917 data |= 0xff000000;
918 if (data != orig)
919 WREG32(mmSDMA0_CLK_CTRL + SDMA0_REGISTER_OFFSET, data);
920
921 orig = data = RREG32(mmSDMA0_CLK_CTRL + SDMA1_REGISTER_OFFSET);
922 data |= 0xff000000;
923 if (data != orig)
924 WREG32(mmSDMA0_CLK_CTRL + SDMA1_REGISTER_OFFSET, data);
925 }
926}
927
928static void cik_enable_sdma_mgls(struct amdgpu_device *adev,
929 bool enable)
930{
931 u32 orig, data;
932
Alex Deuchere3b04bc2016-02-05 10:56:22 -0500933 if (enable && (adev->cg_flags & AMD_CG_SUPPORT_SDMA_LS)) {
Alex Deuchera2e73f52015-04-20 17:09:27 -0400934 orig = data = RREG32(mmSDMA0_POWER_CNTL + SDMA0_REGISTER_OFFSET);
935 data |= 0x100;
936 if (orig != data)
937 WREG32(mmSDMA0_POWER_CNTL + SDMA0_REGISTER_OFFSET, data);
938
939 orig = data = RREG32(mmSDMA0_POWER_CNTL + SDMA1_REGISTER_OFFSET);
940 data |= 0x100;
941 if (orig != data)
942 WREG32(mmSDMA0_POWER_CNTL + SDMA1_REGISTER_OFFSET, data);
943 } else {
944 orig = data = RREG32(mmSDMA0_POWER_CNTL + SDMA0_REGISTER_OFFSET);
945 data &= ~0x100;
946 if (orig != data)
947 WREG32(mmSDMA0_POWER_CNTL + SDMA0_REGISTER_OFFSET, data);
948
949 orig = data = RREG32(mmSDMA0_POWER_CNTL + SDMA1_REGISTER_OFFSET);
950 data &= ~0x100;
951 if (orig != data)
952 WREG32(mmSDMA0_POWER_CNTL + SDMA1_REGISTER_OFFSET, data);
953 }
954}
955
yanyang15fc3aee2015-05-22 14:39:35 -0400956static int cik_sdma_early_init(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400957{
yanyang15fc3aee2015-05-22 14:39:35 -0400958 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
959
Alex Deucherc113ea12015-10-08 16:30:37 -0400960 adev->sdma.num_instances = SDMA_MAX_INSTANCE;
961
Alex Deuchera2e73f52015-04-20 17:09:27 -0400962 cik_sdma_set_ring_funcs(adev);
963 cik_sdma_set_irq_funcs(adev);
964 cik_sdma_set_buffer_funcs(adev);
965 cik_sdma_set_vm_pte_funcs(adev);
966
967 return 0;
968}
969
yanyang15fc3aee2015-05-22 14:39:35 -0400970static int cik_sdma_sw_init(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -0400971{
972 struct amdgpu_ring *ring;
yanyang15fc3aee2015-05-22 14:39:35 -0400973 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deucherc113ea12015-10-08 16:30:37 -0400974 int r, i;
Alex Deuchera2e73f52015-04-20 17:09:27 -0400975
976 r = cik_sdma_init_microcode(adev);
977 if (r) {
978 DRM_ERROR("Failed to load sdma firmware!\n");
979 return r;
980 }
981
982 /* SDMA trap event */
Alex Deucherd766e6a2016-03-29 18:28:50 -0400983 r = amdgpu_irq_add_id(adev, AMDGPU_IH_CLIENTID_LEGACY, 224,
984 &adev->sdma.trap_irq);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400985 if (r)
986 return r;
987
988 /* SDMA Privileged inst */
Alex Deucherd766e6a2016-03-29 18:28:50 -0400989 r = amdgpu_irq_add_id(adev, AMDGPU_IH_CLIENTID_LEGACY, 241,
990 &adev->sdma.illegal_inst_irq);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400991 if (r)
992 return r;
993
994 /* SDMA Privileged inst */
Alex Deucherd766e6a2016-03-29 18:28:50 -0400995 r = amdgpu_irq_add_id(adev, AMDGPU_IH_CLIENTID_LEGACY, 247,
996 &adev->sdma.illegal_inst_irq);
Alex Deuchera2e73f52015-04-20 17:09:27 -0400997 if (r)
998 return r;
999
Alex Deucherc113ea12015-10-08 16:30:37 -04001000 for (i = 0; i < adev->sdma.num_instances; i++) {
1001 ring = &adev->sdma.instance[i].ring;
1002 ring->ring_obj = NULL;
1003 sprintf(ring->name, "sdma%d", i);
Christian Königb38d99c2016-04-13 10:30:13 +02001004 r = amdgpu_ring_init(adev, ring, 1024,
Alex Deucherc113ea12015-10-08 16:30:37 -04001005 &adev->sdma.trap_irq,
1006 (i == 0) ?
Christian König21cd9422016-10-05 15:36:39 +02001007 AMDGPU_SDMA_IRQ_TRAP0 :
1008 AMDGPU_SDMA_IRQ_TRAP1);
Alex Deucherc113ea12015-10-08 16:30:37 -04001009 if (r)
1010 return r;
1011 }
Alex Deuchera2e73f52015-04-20 17:09:27 -04001012
1013 return r;
1014}
1015
yanyang15fc3aee2015-05-22 14:39:35 -04001016static int cik_sdma_sw_fini(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001017{
yanyang15fc3aee2015-05-22 14:39:35 -04001018 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deucherc113ea12015-10-08 16:30:37 -04001019 int i;
yanyang15fc3aee2015-05-22 14:39:35 -04001020
Alex Deucherc113ea12015-10-08 16:30:37 -04001021 for (i = 0; i < adev->sdma.num_instances; i++)
1022 amdgpu_ring_fini(&adev->sdma.instance[i].ring);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001023
Monk Liud1ff53b2016-05-30 16:07:40 +08001024 cik_sdma_free_microcode(adev);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001025 return 0;
1026}
1027
yanyang15fc3aee2015-05-22 14:39:35 -04001028static int cik_sdma_hw_init(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001029{
1030 int r;
yanyang15fc3aee2015-05-22 14:39:35 -04001031 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001032
1033 r = cik_sdma_start(adev);
1034 if (r)
1035 return r;
1036
1037 return r;
1038}
1039
yanyang15fc3aee2015-05-22 14:39:35 -04001040static int cik_sdma_hw_fini(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001041{
yanyang15fc3aee2015-05-22 14:39:35 -04001042 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1043
Felix Kuehling763dbbf2016-06-15 16:33:15 -04001044 cik_ctx_switch_enable(adev, false);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001045 cik_sdma_enable(adev, false);
1046
1047 return 0;
1048}
1049
yanyang15fc3aee2015-05-22 14:39:35 -04001050static int cik_sdma_suspend(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001051{
yanyang15fc3aee2015-05-22 14:39:35 -04001052 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001053
1054 return cik_sdma_hw_fini(adev);
1055}
1056
yanyang15fc3aee2015-05-22 14:39:35 -04001057static int cik_sdma_resume(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001058{
yanyang15fc3aee2015-05-22 14:39:35 -04001059 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001060
jimqu10ea9432016-08-30 08:59:42 +08001061 cik_sdma_soft_reset(handle);
1062
Alex Deuchera2e73f52015-04-20 17:09:27 -04001063 return cik_sdma_hw_init(adev);
1064}
1065
yanyang15fc3aee2015-05-22 14:39:35 -04001066static bool cik_sdma_is_idle(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001067{
yanyang15fc3aee2015-05-22 14:39:35 -04001068 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001069 u32 tmp = RREG32(mmSRBM_STATUS2);
1070
1071 if (tmp & (SRBM_STATUS2__SDMA_BUSY_MASK |
1072 SRBM_STATUS2__SDMA1_BUSY_MASK))
1073 return false;
1074
1075 return true;
1076}
1077
yanyang15fc3aee2015-05-22 14:39:35 -04001078static int cik_sdma_wait_for_idle(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001079{
1080 unsigned i;
1081 u32 tmp;
yanyang15fc3aee2015-05-22 14:39:35 -04001082 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001083
1084 for (i = 0; i < adev->usec_timeout; i++) {
1085 tmp = RREG32(mmSRBM_STATUS2) & (SRBM_STATUS2__SDMA_BUSY_MASK |
1086 SRBM_STATUS2__SDMA1_BUSY_MASK);
1087
1088 if (!tmp)
1089 return 0;
1090 udelay(1);
1091 }
1092 return -ETIMEDOUT;
1093}
1094
yanyang15fc3aee2015-05-22 14:39:35 -04001095static int cik_sdma_soft_reset(void *handle)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001096{
1097 u32 srbm_soft_reset = 0;
yanyang15fc3aee2015-05-22 14:39:35 -04001098 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001099 u32 tmp = RREG32(mmSRBM_STATUS2);
1100
1101 if (tmp & SRBM_STATUS2__SDMA_BUSY_MASK) {
1102 /* sdma0 */
1103 tmp = RREG32(mmSDMA0_F32_CNTL + SDMA0_REGISTER_OFFSET);
1104 tmp |= SDMA0_F32_CNTL__HALT_MASK;
1105 WREG32(mmSDMA0_F32_CNTL + SDMA0_REGISTER_OFFSET, tmp);
1106 srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_SDMA_MASK;
1107 }
1108 if (tmp & SRBM_STATUS2__SDMA1_BUSY_MASK) {
1109 /* sdma1 */
1110 tmp = RREG32(mmSDMA0_F32_CNTL + SDMA1_REGISTER_OFFSET);
1111 tmp |= SDMA0_F32_CNTL__HALT_MASK;
1112 WREG32(mmSDMA0_F32_CNTL + SDMA1_REGISTER_OFFSET, tmp);
1113 srbm_soft_reset |= SRBM_SOFT_RESET__SOFT_RESET_SDMA1_MASK;
1114 }
1115
1116 if (srbm_soft_reset) {
Alex Deuchera2e73f52015-04-20 17:09:27 -04001117 tmp = RREG32(mmSRBM_SOFT_RESET);
1118 tmp |= srbm_soft_reset;
1119 dev_info(adev->dev, "SRBM_SOFT_RESET=0x%08X\n", tmp);
1120 WREG32(mmSRBM_SOFT_RESET, tmp);
1121 tmp = RREG32(mmSRBM_SOFT_RESET);
1122
1123 udelay(50);
1124
1125 tmp &= ~srbm_soft_reset;
1126 WREG32(mmSRBM_SOFT_RESET, tmp);
1127 tmp = RREG32(mmSRBM_SOFT_RESET);
1128
1129 /* Wait a little for things to settle down */
1130 udelay(50);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001131 }
1132
1133 return 0;
1134}
1135
1136static int cik_sdma_set_trap_irq_state(struct amdgpu_device *adev,
1137 struct amdgpu_irq_src *src,
1138 unsigned type,
1139 enum amdgpu_interrupt_state state)
1140{
1141 u32 sdma_cntl;
1142
1143 switch (type) {
1144 case AMDGPU_SDMA_IRQ_TRAP0:
1145 switch (state) {
1146 case AMDGPU_IRQ_STATE_DISABLE:
1147 sdma_cntl = RREG32(mmSDMA0_CNTL + SDMA0_REGISTER_OFFSET);
1148 sdma_cntl &= ~SDMA0_CNTL__TRAP_ENABLE_MASK;
1149 WREG32(mmSDMA0_CNTL + SDMA0_REGISTER_OFFSET, sdma_cntl);
1150 break;
1151 case AMDGPU_IRQ_STATE_ENABLE:
1152 sdma_cntl = RREG32(mmSDMA0_CNTL + SDMA0_REGISTER_OFFSET);
1153 sdma_cntl |= SDMA0_CNTL__TRAP_ENABLE_MASK;
1154 WREG32(mmSDMA0_CNTL + SDMA0_REGISTER_OFFSET, sdma_cntl);
1155 break;
1156 default:
1157 break;
1158 }
1159 break;
1160 case AMDGPU_SDMA_IRQ_TRAP1:
1161 switch (state) {
1162 case AMDGPU_IRQ_STATE_DISABLE:
1163 sdma_cntl = RREG32(mmSDMA0_CNTL + SDMA1_REGISTER_OFFSET);
1164 sdma_cntl &= ~SDMA0_CNTL__TRAP_ENABLE_MASK;
1165 WREG32(mmSDMA0_CNTL + SDMA1_REGISTER_OFFSET, sdma_cntl);
1166 break;
1167 case AMDGPU_IRQ_STATE_ENABLE:
1168 sdma_cntl = RREG32(mmSDMA0_CNTL + SDMA1_REGISTER_OFFSET);
1169 sdma_cntl |= SDMA0_CNTL__TRAP_ENABLE_MASK;
1170 WREG32(mmSDMA0_CNTL + SDMA1_REGISTER_OFFSET, sdma_cntl);
1171 break;
1172 default:
1173 break;
1174 }
1175 break;
1176 default:
1177 break;
1178 }
1179 return 0;
1180}
1181
1182static int cik_sdma_process_trap_irq(struct amdgpu_device *adev,
1183 struct amdgpu_irq_src *source,
1184 struct amdgpu_iv_entry *entry)
1185{
1186 u8 instance_id, queue_id;
1187
1188 instance_id = (entry->ring_id & 0x3) >> 0;
1189 queue_id = (entry->ring_id & 0xc) >> 2;
1190 DRM_DEBUG("IH: SDMA trap\n");
1191 switch (instance_id) {
1192 case 0:
1193 switch (queue_id) {
1194 case 0:
Alex Deucherc113ea12015-10-08 16:30:37 -04001195 amdgpu_fence_process(&adev->sdma.instance[0].ring);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001196 break;
1197 case 1:
1198 /* XXX compute */
1199 break;
1200 case 2:
1201 /* XXX compute */
1202 break;
1203 }
1204 break;
1205 case 1:
1206 switch (queue_id) {
1207 case 0:
Alex Deucherc113ea12015-10-08 16:30:37 -04001208 amdgpu_fence_process(&adev->sdma.instance[1].ring);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001209 break;
1210 case 1:
1211 /* XXX compute */
1212 break;
1213 case 2:
1214 /* XXX compute */
1215 break;
1216 }
1217 break;
1218 }
1219
1220 return 0;
1221}
1222
1223static int cik_sdma_process_illegal_inst_irq(struct amdgpu_device *adev,
1224 struct amdgpu_irq_src *source,
1225 struct amdgpu_iv_entry *entry)
1226{
1227 DRM_ERROR("Illegal instruction in SDMA command stream\n");
1228 schedule_work(&adev->reset_work);
1229 return 0;
1230}
1231
yanyang15fc3aee2015-05-22 14:39:35 -04001232static int cik_sdma_set_clockgating_state(void *handle,
1233 enum amd_clockgating_state state)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001234{
1235 bool gate = false;
yanyang15fc3aee2015-05-22 14:39:35 -04001236 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001237
yanyang15fc3aee2015-05-22 14:39:35 -04001238 if (state == AMD_CG_STATE_GATE)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001239 gate = true;
1240
1241 cik_enable_sdma_mgcg(adev, gate);
1242 cik_enable_sdma_mgls(adev, gate);
1243
1244 return 0;
1245}
1246
yanyang15fc3aee2015-05-22 14:39:35 -04001247static int cik_sdma_set_powergating_state(void *handle,
1248 enum amd_powergating_state state)
Alex Deuchera2e73f52015-04-20 17:09:27 -04001249{
1250 return 0;
1251}
1252
Alex Deuchera1255102016-10-13 17:41:13 -04001253static const struct amd_ip_funcs cik_sdma_ip_funcs = {
Tom St Denis88a907d2016-05-04 14:28:35 -04001254 .name = "cik_sdma",
Alex Deuchera2e73f52015-04-20 17:09:27 -04001255 .early_init = cik_sdma_early_init,
1256 .late_init = NULL,
1257 .sw_init = cik_sdma_sw_init,
1258 .sw_fini = cik_sdma_sw_fini,
1259 .hw_init = cik_sdma_hw_init,
1260 .hw_fini = cik_sdma_hw_fini,
1261 .suspend = cik_sdma_suspend,
1262 .resume = cik_sdma_resume,
1263 .is_idle = cik_sdma_is_idle,
1264 .wait_for_idle = cik_sdma_wait_for_idle,
1265 .soft_reset = cik_sdma_soft_reset,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001266 .set_clockgating_state = cik_sdma_set_clockgating_state,
1267 .set_powergating_state = cik_sdma_set_powergating_state,
1268};
1269
Alex Deuchera2e73f52015-04-20 17:09:27 -04001270static const struct amdgpu_ring_funcs cik_sdma_ring_funcs = {
Christian König21cd9422016-10-05 15:36:39 +02001271 .type = AMDGPU_RING_TYPE_SDMA,
Christian König79887142016-10-05 16:09:32 +02001272 .align_mask = 0xf,
1273 .nop = SDMA_PACKET(SDMA_OPCODE_NOP, 0, 0),
Ken Wang536fbf92016-03-12 09:32:30 +08001274 .support_64bit_ptrs = false,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001275 .get_rptr = cik_sdma_ring_get_rptr,
1276 .get_wptr = cik_sdma_ring_get_wptr,
1277 .set_wptr = cik_sdma_ring_set_wptr,
Christian Könige12f3d72016-10-05 14:29:38 +02001278 .emit_frame_size =
1279 6 + /* cik_sdma_ring_emit_hdp_flush */
1280 3 + /* cik_sdma_ring_emit_hdp_invalidate */
1281 6 + /* cik_sdma_ring_emit_pipeline_sync */
Christian Königd9a701c2018-01-12 17:08:22 +01001282 CIK_FLUSH_GPU_TLB_NUM_WREG * 3 + 6 + /* cik_sdma_ring_emit_vm_flush */
Christian Könige12f3d72016-10-05 14:29:38 +02001283 9 + 9 + 9, /* cik_sdma_ring_emit_fence x3 for user fence, vm fence */
1284 .emit_ib_size = 7 + 4, /* cik_sdma_ring_emit_ib */
Alex Deuchera2e73f52015-04-20 17:09:27 -04001285 .emit_ib = cik_sdma_ring_emit_ib,
1286 .emit_fence = cik_sdma_ring_emit_fence,
Christian König00b7c4f2016-03-08 14:11:00 +01001287 .emit_pipeline_sync = cik_sdma_ring_emit_pipeline_sync,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001288 .emit_vm_flush = cik_sdma_ring_emit_vm_flush,
Christian Königd2edb072015-05-11 14:10:34 +02001289 .emit_hdp_flush = cik_sdma_ring_emit_hdp_flush,
Chunming Zhou498dd972016-03-03 12:05:44 +08001290 .emit_hdp_invalidate = cik_sdma_ring_emit_hdp_invalidate,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001291 .test_ring = cik_sdma_ring_test_ring,
1292 .test_ib = cik_sdma_ring_test_ib,
Jammy Zhouac01db32015-09-01 13:13:54 +08001293 .insert_nop = cik_sdma_ring_insert_nop,
Christian König9e5d53092016-01-31 12:20:55 +01001294 .pad_ib = cik_sdma_ring_pad_ib,
Christian Königa37e69d2018-01-12 16:33:15 +01001295 .emit_wreg = cik_sdma_ring_emit_wreg,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001296};
1297
1298static void cik_sdma_set_ring_funcs(struct amdgpu_device *adev)
1299{
Alex Deucherc113ea12015-10-08 16:30:37 -04001300 int i;
1301
1302 for (i = 0; i < adev->sdma.num_instances; i++)
1303 adev->sdma.instance[i].ring.funcs = &cik_sdma_ring_funcs;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001304}
1305
1306static const struct amdgpu_irq_src_funcs cik_sdma_trap_irq_funcs = {
1307 .set = cik_sdma_set_trap_irq_state,
1308 .process = cik_sdma_process_trap_irq,
1309};
1310
1311static const struct amdgpu_irq_src_funcs cik_sdma_illegal_inst_irq_funcs = {
1312 .process = cik_sdma_process_illegal_inst_irq,
1313};
1314
1315static void cik_sdma_set_irq_funcs(struct amdgpu_device *adev)
1316{
Alex Deucherc113ea12015-10-08 16:30:37 -04001317 adev->sdma.trap_irq.num_types = AMDGPU_SDMA_IRQ_LAST;
1318 adev->sdma.trap_irq.funcs = &cik_sdma_trap_irq_funcs;
1319 adev->sdma.illegal_inst_irq.funcs = &cik_sdma_illegal_inst_irq_funcs;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001320}
1321
1322/**
1323 * cik_sdma_emit_copy_buffer - copy buffer using the sDMA engine
1324 *
1325 * @ring: amdgpu_ring structure holding ring information
1326 * @src_offset: src GPU address
1327 * @dst_offset: dst GPU address
1328 * @byte_count: number of bytes to xfer
1329 *
1330 * Copy GPU buffers using the DMA engine (CIK).
1331 * Used by the amdgpu ttm implementation to move pages if
1332 * registered as the asic copy callback.
1333 */
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08001334static void cik_sdma_emit_copy_buffer(struct amdgpu_ib *ib,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001335 uint64_t src_offset,
1336 uint64_t dst_offset,
1337 uint32_t byte_count)
1338{
Chunming Zhouc7ae72c2015-08-25 17:23:45 +08001339 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_COPY, SDMA_COPY_SUB_OPCODE_LINEAR, 0);
1340 ib->ptr[ib->length_dw++] = byte_count;
1341 ib->ptr[ib->length_dw++] = 0; /* src/dst endian swap */
1342 ib->ptr[ib->length_dw++] = lower_32_bits(src_offset);
1343 ib->ptr[ib->length_dw++] = upper_32_bits(src_offset);
1344 ib->ptr[ib->length_dw++] = lower_32_bits(dst_offset);
1345 ib->ptr[ib->length_dw++] = upper_32_bits(dst_offset);
Alex Deuchera2e73f52015-04-20 17:09:27 -04001346}
1347
1348/**
1349 * cik_sdma_emit_fill_buffer - fill buffer using the sDMA engine
1350 *
1351 * @ring: amdgpu_ring structure holding ring information
1352 * @src_data: value to write to buffer
1353 * @dst_offset: dst GPU address
1354 * @byte_count: number of bytes to xfer
1355 *
1356 * Fill GPU buffers using the DMA engine (CIK).
1357 */
Chunming Zhou6e7a3842015-08-27 13:46:09 +08001358static void cik_sdma_emit_fill_buffer(struct amdgpu_ib *ib,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001359 uint32_t src_data,
1360 uint64_t dst_offset,
1361 uint32_t byte_count)
1362{
Chunming Zhou6e7a3842015-08-27 13:46:09 +08001363 ib->ptr[ib->length_dw++] = SDMA_PACKET(SDMA_OPCODE_CONSTANT_FILL, 0, 0);
1364 ib->ptr[ib->length_dw++] = lower_32_bits(dst_offset);
1365 ib->ptr[ib->length_dw++] = upper_32_bits(dst_offset);
1366 ib->ptr[ib->length_dw++] = src_data;
1367 ib->ptr[ib->length_dw++] = byte_count;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001368}
1369
1370static const struct amdgpu_buffer_funcs cik_sdma_buffer_funcs = {
1371 .copy_max_bytes = 0x1fffff,
1372 .copy_num_dw = 7,
1373 .emit_copy_buffer = cik_sdma_emit_copy_buffer,
1374
1375 .fill_max_bytes = 0x1fffff,
1376 .fill_num_dw = 5,
1377 .emit_fill_buffer = cik_sdma_emit_fill_buffer,
1378};
1379
1380static void cik_sdma_set_buffer_funcs(struct amdgpu_device *adev)
1381{
1382 if (adev->mman.buffer_funcs == NULL) {
1383 adev->mman.buffer_funcs = &cik_sdma_buffer_funcs;
Alex Deucherc113ea12015-10-08 16:30:37 -04001384 adev->mman.buffer_funcs_ring = &adev->sdma.instance[0].ring;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001385 }
1386}
1387
1388static const struct amdgpu_vm_pte_funcs cik_sdma_vm_pte_funcs = {
Yong Zhaoe6d92192017-09-19 12:58:15 -04001389 .copy_pte_num_dw = 7,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001390 .copy_pte = cik_sdma_vm_copy_pte,
Yong Zhaoe6d92192017-09-19 12:58:15 -04001391
Alex Deuchera2e73f52015-04-20 17:09:27 -04001392 .write_pte = cik_sdma_vm_write_pte,
Yong Zhao7bdc53f2017-09-15 18:20:37 -04001393
1394 .set_max_nums_pte_pde = 0x1fffff >> 3,
1395 .set_pte_pde_num_dw = 10,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001396 .set_pte_pde = cik_sdma_vm_set_pte_pde,
Alex Deuchera2e73f52015-04-20 17:09:27 -04001397};
1398
1399static void cik_sdma_set_vm_pte_funcs(struct amdgpu_device *adev)
1400{
Christian König2d55e452016-02-08 17:37:38 +01001401 unsigned i;
1402
Alex Deuchera2e73f52015-04-20 17:09:27 -04001403 if (adev->vm_manager.vm_pte_funcs == NULL) {
1404 adev->vm_manager.vm_pte_funcs = &cik_sdma_vm_pte_funcs;
Christian König2d55e452016-02-08 17:37:38 +01001405 for (i = 0; i < adev->sdma.num_instances; i++)
1406 adev->vm_manager.vm_pte_rings[i] =
1407 &adev->sdma.instance[i].ring;
1408
1409 adev->vm_manager.vm_pte_num_rings = adev->sdma.num_instances;
Alex Deuchera2e73f52015-04-20 17:09:27 -04001410 }
1411}
Alex Deuchera1255102016-10-13 17:41:13 -04001412
1413const struct amdgpu_ip_block_version cik_sdma_ip_block =
1414{
1415 .type = AMD_IP_BLOCK_TYPE_SDMA,
1416 .major = 2,
1417 .minor = 0,
1418 .rev = 0,
1419 .funcs = &cik_sdma_ip_funcs,
1420};