drm/i915/cmdparser: Check for SKIP descriptors first
[deliverable/linux.git] / drivers / gpu / drm / nouveau / nouveau_chan.c
CommitLineData
ebb945a9
BS
1/*
2 * Copyright 2012 Red Hat 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: Ben Skeggs
23 */
24
fdb751ef
BS
25#include <nvif/os.h>
26#include <nvif/class.h>
845f2725 27#include <nvif/cl0002.h>
8ed1730c
BS
28#include <nvif/cl006b.h>
29#include <nvif/cl506f.h>
30#include <nvif/cl906f.h>
31#include <nvif/cla06f.h>
f58ddf95 32#include <nvif/ioctl.h>
fdb751ef
BS
33
34/*XXX*/
ebb945a9 35#include <core/client.h>
ebb945a9 36
4dc28134 37#include "nouveau_drv.h"
ebb945a9
BS
38#include "nouveau_dma.h"
39#include "nouveau_bo.h"
40#include "nouveau_chan.h"
41#include "nouveau_fence.h"
42#include "nouveau_abi16.h"
43
44MODULE_PARM_DESC(vram_pushbuf, "Create DMA push buffers in VRAM");
703fa264 45int nouveau_vram_pushbuf;
ebb945a9
BS
46module_param_named(vram_pushbuf, nouveau_vram_pushbuf, int, 0400);
47
48int
49nouveau_channel_idle(struct nouveau_channel *chan)
50{
fbd58ebd
BS
51 if (likely(chan && chan->fence)) {
52 struct nouveau_cli *cli = (void *)chan->user.client;
53 struct nouveau_fence *fence = NULL;
54 int ret;
ebb945a9 55
fbd58ebd
BS
56 ret = nouveau_fence_new(chan, false, &fence);
57 if (!ret) {
58 ret = nouveau_fence_wait(fence, false, false);
59 nouveau_fence_unref(&fence);
60 }
ebb945a9 61
fbd58ebd 62 if (ret) {
fcf3f91c
BS
63 NV_PRINTK(err, cli, "failed to idle channel %d [%s]\n",
64 chan->chid, nvxx_client(&cli->base)->name);
fbd58ebd
BS
65 return ret;
66 }
67 }
68 return 0;
ebb945a9
BS
69}
70
71void
72nouveau_channel_del(struct nouveau_channel **pchan)
73{
74 struct nouveau_channel *chan = *pchan;
75 if (chan) {
fbd58ebd 76 if (chan->fence)
ebb945a9 77 nouveau_fence(chan->drm)->context_del(chan);
0ad72863
BS
78 nvif_object_fini(&chan->nvsw);
79 nvif_object_fini(&chan->gart);
80 nvif_object_fini(&chan->vram);
a01ca78c 81 nvif_object_fini(&chan->user);
0ad72863 82 nvif_object_fini(&chan->push.ctxdma);
ebb945a9
BS
83 nouveau_bo_vma_del(chan->push.buffer, &chan->push.vma);
84 nouveau_bo_unmap(chan->push.buffer);
124ea297
MS
85 if (chan->push.buffer && chan->push.buffer->pin_refcnt)
86 nouveau_bo_unpin(chan->push.buffer);
ebb945a9
BS
87 nouveau_bo_ref(NULL, &chan->push.buffer);
88 kfree(chan);
89 }
90 *pchan = NULL;
91}
92
93static int
0ad72863 94nouveau_channel_prep(struct nouveau_drm *drm, struct nvif_device *device,
fcf3f91c 95 u32 size, struct nouveau_channel **pchan)
ebb945a9 96{
a01ca78c 97 struct nouveau_cli *cli = (void *)device->object.client;
be83cd4e 98 struct nvkm_mmu *mmu = nvxx_mmu(device);
4acfd707 99 struct nv_dma_v0 args = {};
ebb945a9 100 struct nouveau_channel *chan;
ebb945a9
BS
101 u32 target;
102 int ret;
103
104 chan = *pchan = kzalloc(sizeof(*chan), GFP_KERNEL);
105 if (!chan)
106 return -ENOMEM;
107
a01ca78c 108 chan->device = device;
ebb945a9 109 chan->drm = drm;
ebb945a9
BS
110
111 /* allocate memory for dma push buffer */
a81349a7 112 target = TTM_PL_FLAG_TT | TTM_PL_FLAG_UNCACHED;
ebb945a9
BS
113 if (nouveau_vram_pushbuf)
114 target = TTM_PL_FLAG_VRAM;
115
bb6178b0 116 ret = nouveau_bo_new(drm->dev, size, 0, target, 0, 0, NULL, NULL,
ebb945a9
BS
117 &chan->push.buffer);
118 if (ret == 0) {
ad76b3f7 119 ret = nouveau_bo_pin(chan->push.buffer, target, false);
ebb945a9
BS
120 if (ret == 0)
121 ret = nouveau_bo_map(chan->push.buffer);
122 }
123
124 if (ret) {
125 nouveau_channel_del(pchan);
126 return ret;
127 }
128
129 /* create dma object covering the *entire* memory space that the
130 * pushbuf lives in, this is because the GEM code requires that
131 * we be able to call out to other (indirect) push buffers
132 */
133 chan->push.vma.offset = chan->push.buffer->bo.offset;
ebb945a9 134
967e7bde 135 if (device->info.family >= NV_DEVICE_INFO_V0_TESLA) {
0ad72863 136 ret = nouveau_bo_vma_add(chan->push.buffer, cli->vm,
ebb945a9
BS
137 &chan->push.vma);
138 if (ret) {
139 nouveau_channel_del(pchan);
140 return ret;
141 }
142
4acfd707
BS
143 args.target = NV_DMA_V0_TARGET_VM;
144 args.access = NV_DMA_V0_ACCESS_VM;
ebb945a9 145 args.start = 0;
5ce3bf3c 146 args.limit = cli->vm->mmu->limit - 1;
ebb945a9
BS
147 } else
148 if (chan->push.buffer->bo.mem.mem_type == TTM_PL_VRAM) {
967e7bde 149 if (device->info.family == NV_DEVICE_INFO_V0_TNT) {
ebb945a9
BS
150 /* nv04 vram pushbuf hack, retarget to its location in
151 * the framebuffer bar rather than direct vram access..
152 * nfi why this exists, it came from the -nv ddx.
153 */
4acfd707
BS
154 args.target = NV_DMA_V0_TARGET_PCI;
155 args.access = NV_DMA_V0_ACCESS_RDWR;
7e8820fe
BS
156 args.start = nvxx_device(device)->func->
157 resource_addr(nvxx_device(device), 1);
f392ec4b 158 args.limit = args.start + device->info.ram_user - 1;
ebb945a9 159 } else {
4acfd707
BS
160 args.target = NV_DMA_V0_TARGET_VRAM;
161 args.access = NV_DMA_V0_ACCESS_RDWR;
ebb945a9 162 args.start = 0;
f392ec4b 163 args.limit = device->info.ram_user - 1;
ebb945a9
BS
164 }
165 } else {
340b0e7c 166 if (chan->drm->agp.bridge) {
4acfd707
BS
167 args.target = NV_DMA_V0_TARGET_AGP;
168 args.access = NV_DMA_V0_ACCESS_RDWR;
ebb945a9
BS
169 args.start = chan->drm->agp.base;
170 args.limit = chan->drm->agp.base +
171 chan->drm->agp.size - 1;
172 } else {
4acfd707
BS
173 args.target = NV_DMA_V0_TARGET_VM;
174 args.access = NV_DMA_V0_ACCESS_RDWR;
ebb945a9 175 args.start = 0;
5ce3bf3c 176 args.limit = mmu->limit - 1;
ebb945a9
BS
177 }
178 }
179
fcf3f91c 180 ret = nvif_object_init(&device->object, 0, NV_DMA_FROM_MEMORY,
0ad72863 181 &args, sizeof(args), &chan->push.ctxdma);
ebb945a9
BS
182 if (ret) {
183 nouveau_channel_del(pchan);
184 return ret;
185 }
186
187 return 0;
188}
189
5b8a43ae 190static int
0ad72863 191nouveau_channel_ind(struct nouveau_drm *drm, struct nvif_device *device,
fcf3f91c 192 u32 engine, struct nouveau_channel **pchan)
ebb945a9 193{
e8ff9794
BS
194 static const u16 oclasses[] = { PASCAL_CHANNEL_GPFIFO_A,
195 MAXWELL_CHANNEL_GPFIFO_A,
63f8c9b7 196 KEPLER_CHANNEL_GPFIFO_B,
a1020afe 197 KEPLER_CHANNEL_GPFIFO_A,
bbf8906b
BS
198 FERMI_CHANNEL_GPFIFO,
199 G82_CHANNEL_GPFIFO,
200 NV50_CHANNEL_GPFIFO,
c97f8c92 201 0 };
ebb945a9 202 const u16 *oclass = oclasses;
bbf8906b
BS
203 union {
204 struct nv50_channel_gpfifo_v0 nv50;
159045cd 205 struct fermi_channel_gpfifo_v0 fermi;
bbf8906b 206 struct kepler_channel_gpfifo_a_v0 kepler;
a01ca78c 207 } args;
ebb945a9 208 struct nouveau_channel *chan;
bbf8906b 209 u32 size;
ebb945a9
BS
210 int ret;
211
212 /* allocate dma push buffer */
fcf3f91c 213 ret = nouveau_channel_prep(drm, device, 0x12000, &chan);
ebb945a9
BS
214 *pchan = chan;
215 if (ret)
216 return ret;
217
218 /* create channel object */
ebb945a9 219 do {
bbf8906b
BS
220 if (oclass[0] >= KEPLER_CHANNEL_GPFIFO_A) {
221 args.kepler.version = 0;
1f5ff7f5 222 args.kepler.engines = engine;
bbf8906b
BS
223 args.kepler.ilength = 0x02000;
224 args.kepler.ioffset = 0x10000 + chan->push.vma.offset;
159045cd 225 args.kepler.vm = 0;
bbf8906b 226 size = sizeof(args.kepler);
159045cd
BS
227 } else
228 if (oclass[0] >= FERMI_CHANNEL_GPFIFO) {
229 args.fermi.version = 0;
230 args.fermi.ilength = 0x02000;
231 args.fermi.ioffset = 0x10000 + chan->push.vma.offset;
232 args.fermi.vm = 0;
233 size = sizeof(args.fermi);
bbf8906b
BS
234 } else {
235 args.nv50.version = 0;
bbf8906b
BS
236 args.nv50.ilength = 0x02000;
237 args.nv50.ioffset = 0x10000 + chan->push.vma.offset;
159045cd
BS
238 args.nv50.pushbuf = nvif_handle(&chan->push.ctxdma);
239 args.nv50.vm = 0;
bbf8906b
BS
240 size = sizeof(args.nv50);
241 }
242
fcf3f91c 243 ret = nvif_object_init(&device->object, 0, *oclass++,
a01ca78c 244 &args, size, &chan->user);
bbf8906b 245 if (ret == 0) {
a01ca78c
BS
246 if (chan->user.oclass >= KEPLER_CHANNEL_GPFIFO_A)
247 chan->chid = args.kepler.chid;
159045cd
BS
248 else
249 if (chan->user.oclass >= FERMI_CHANNEL_GPFIFO)
250 chan->chid = args.fermi.chid;
bbf8906b 251 else
a01ca78c 252 chan->chid = args.nv50.chid;
ebb945a9 253 return ret;
bbf8906b 254 }
ebb945a9
BS
255 } while (*oclass);
256
257 nouveau_channel_del(pchan);
258 return ret;
259}
260
261static int
0ad72863 262nouveau_channel_dma(struct nouveau_drm *drm, struct nvif_device *device,
fcf3f91c 263 struct nouveau_channel **pchan)
ebb945a9 264{
bbf8906b
BS
265 static const u16 oclasses[] = { NV40_CHANNEL_DMA,
266 NV17_CHANNEL_DMA,
267 NV10_CHANNEL_DMA,
268 NV03_CHANNEL_DMA,
c97f8c92 269 0 };
ebb945a9 270 const u16 *oclass = oclasses;
a01ca78c 271 struct nv03_channel_dma_v0 args;
ebb945a9
BS
272 struct nouveau_channel *chan;
273 int ret;
274
275 /* allocate dma push buffer */
fcf3f91c 276 ret = nouveau_channel_prep(drm, device, 0x10000, &chan);
ebb945a9
BS
277 *pchan = chan;
278 if (ret)
279 return ret;
280
281 /* create channel object */
bbf8906b 282 args.version = 0;
bf81df9b 283 args.pushbuf = nvif_handle(&chan->push.ctxdma);
ebb945a9
BS
284 args.offset = chan->push.vma.offset;
285
286 do {
fcf3f91c 287 ret = nvif_object_init(&device->object, 0, *oclass++,
a01ca78c 288 &args, sizeof(args), &chan->user);
bbf8906b 289 if (ret == 0) {
a01ca78c 290 chan->chid = args.chid;
ebb945a9 291 return ret;
bbf8906b 292 }
ebb945a9
BS
293 } while (ret && *oclass);
294
295 nouveau_channel_del(pchan);
296 return ret;
297}
298
299static int
300nouveau_channel_init(struct nouveau_channel *chan, u32 vram, u32 gart)
301{
0ad72863 302 struct nvif_device *device = chan->device;
a01ca78c 303 struct nouveau_cli *cli = (void *)chan->user.client;
be83cd4e 304 struct nvkm_mmu *mmu = nvxx_mmu(device);
4acfd707 305 struct nv_dma_v0 args = {};
ebb945a9
BS
306 int ret, i;
307
a01ca78c 308 nvif_object_map(&chan->user);
6c6ae061 309
ebb945a9 310 /* allocate dma objects to cover all allowed vram, and gart */
967e7bde
BS
311 if (device->info.family < NV_DEVICE_INFO_V0_FERMI) {
312 if (device->info.family >= NV_DEVICE_INFO_V0_TESLA) {
4acfd707
BS
313 args.target = NV_DMA_V0_TARGET_VM;
314 args.access = NV_DMA_V0_ACCESS_VM;
ebb945a9 315 args.start = 0;
5ce3bf3c 316 args.limit = cli->vm->mmu->limit - 1;
ebb945a9 317 } else {
4acfd707
BS
318 args.target = NV_DMA_V0_TARGET_VRAM;
319 args.access = NV_DMA_V0_ACCESS_RDWR;
ebb945a9 320 args.start = 0;
f392ec4b 321 args.limit = device->info.ram_user - 1;
ebb945a9
BS
322 }
323
a01ca78c
BS
324 ret = nvif_object_init(&chan->user, vram, NV_DMA_IN_MEMORY,
325 &args, sizeof(args), &chan->vram);
ebb945a9
BS
326 if (ret)
327 return ret;
328
967e7bde 329 if (device->info.family >= NV_DEVICE_INFO_V0_TESLA) {
4acfd707
BS
330 args.target = NV_DMA_V0_TARGET_VM;
331 args.access = NV_DMA_V0_ACCESS_VM;
ebb945a9 332 args.start = 0;
5ce3bf3c 333 args.limit = cli->vm->mmu->limit - 1;
ebb945a9 334 } else
340b0e7c 335 if (chan->drm->agp.bridge) {
4acfd707
BS
336 args.target = NV_DMA_V0_TARGET_AGP;
337 args.access = NV_DMA_V0_ACCESS_RDWR;
ebb945a9
BS
338 args.start = chan->drm->agp.base;
339 args.limit = chan->drm->agp.base +
340 chan->drm->agp.size - 1;
341 } else {
4acfd707
BS
342 args.target = NV_DMA_V0_TARGET_VM;
343 args.access = NV_DMA_V0_ACCESS_RDWR;
ebb945a9 344 args.start = 0;
5ce3bf3c 345 args.limit = mmu->limit - 1;
ebb945a9
BS
346 }
347
a01ca78c
BS
348 ret = nvif_object_init(&chan->user, gart, NV_DMA_IN_MEMORY,
349 &args, sizeof(args), &chan->gart);
ebb945a9
BS
350 if (ret)
351 return ret;
352 }
353
354 /* initialise dma tracking parameters */
a01ca78c 355 switch (chan->user.oclass & 0x00ff) {
503b0f1c 356 case 0x006b:
ebb945a9
BS
357 case 0x006e:
358 chan->user_put = 0x40;
359 chan->user_get = 0x44;
360 chan->dma.max = (0x10000 / 4) - 2;
361 break;
362 default:
363 chan->user_put = 0x40;
364 chan->user_get = 0x44;
365 chan->user_get_hi = 0x60;
366 chan->dma.ib_base = 0x10000 / 4;
367 chan->dma.ib_max = (0x02000 / 8) - 1;
368 chan->dma.ib_put = 0;
369 chan->dma.ib_free = chan->dma.ib_max - chan->dma.ib_put;
370 chan->dma.max = chan->dma.ib_base;
371 break;
372 }
373
374 chan->dma.put = 0;
375 chan->dma.cur = chan->dma.put;
376 chan->dma.free = chan->dma.max - chan->dma.cur;
377
378 ret = RING_SPACE(chan, NOUVEAU_DMA_SKIPS);
379 if (ret)
380 return ret;
381
382 for (i = 0; i < NOUVEAU_DMA_SKIPS; i++)
383 OUT_RING(chan, 0x00000000);
384
69a6146d 385 /* allocate software object class (used for fences on <= nv05) */
967e7bde 386 if (device->info.family < NV_DEVICE_INFO_V0_CELSIUS) {
f58ddf95 387 ret = nvif_object_init(&chan->user, 0x006e,
08f7633c 388 NVIF_CLASS_SW_NV04,
0ad72863 389 NULL, 0, &chan->nvsw);
49981046
BS
390 if (ret)
391 return ret;
ebb945a9 392
ebb945a9
BS
393 ret = RING_SPACE(chan, 2);
394 if (ret)
395 return ret;
396
397 BEGIN_NV04(chan, NvSubSw, 0x0000, 1);
f45f55c4 398 OUT_RING (chan, chan->nvsw.handle);
ebb945a9
BS
399 FIRE_RING (chan);
400 }
401
402 /* initialise synchronisation */
4894f662 403 return nouveau_fence(chan->drm)->context_new(chan);
ebb945a9
BS
404}
405
406int
0ad72863 407nouveau_channel_new(struct nouveau_drm *drm, struct nvif_device *device,
fcf3f91c 408 u32 arg0, u32 arg1, struct nouveau_channel **pchan)
ebb945a9 409{
a01ca78c 410 struct nouveau_cli *cli = (void *)device->object.client;
67e26e41 411 bool super;
ebb945a9
BS
412 int ret;
413
67e26e41
BS
414 /* hack until fencenv50 is fixed, and agp access relaxed */
415 super = cli->base.super;
416 cli->base.super = true;
417
fcf3f91c 418 ret = nouveau_channel_ind(drm, device, arg0, pchan);
ebb945a9 419 if (ret) {
9ad97ede 420 NV_PRINTK(dbg, cli, "ib channel create, %d\n", ret);
fcf3f91c 421 ret = nouveau_channel_dma(drm, device, pchan);
ebb945a9 422 if (ret) {
9ad97ede 423 NV_PRINTK(dbg, cli, "dma channel create, %d\n", ret);
67e26e41 424 goto done;
ebb945a9
BS
425 }
426 }
427
49981046 428 ret = nouveau_channel_init(*pchan, arg0, arg1);
ebb945a9 429 if (ret) {
9ad97ede 430 NV_PRINTK(err, cli, "channel failed to initialise, %d\n", ret);
ebb945a9 431 nouveau_channel_del(pchan);
ebb945a9
BS
432 }
433
67e26e41
BS
434done:
435 cli->base.super = super;
436 return ret;
ebb945a9 437}
This page took 0.286097 seconds and 5 git commands to generate.