1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#include "drmP.h"
26#include "drm.h"
27#include "nouveau_drv.h"
28#include "nouveau_drm.h"
29#include "nouveau_dma.h"
30
31static int
32nouveau_channel_pushbuf_ctxdma_init(struct nouveau_channel *chan)
33{
34 struct drm_device *dev = chan->dev;
35 struct drm_nouveau_private *dev_priv = dev->dev_private;
36 struct nouveau_bo *pb = chan->pushbuf_bo;
37 struct nouveau_gpuobj *pushbuf = NULL;
38 int ret;
39
40 if (dev_priv->card_type >= NV_50) {
41 if (dev_priv->card_type < NV_C0) {
42 ret = nouveau_gpuobj_dma_new(chan,
43 NV_CLASS_DMA_IN_MEMORY, 0,
44 (1ULL << 40),
45 NV_MEM_ACCESS_RO,
46 NV_MEM_TARGET_VM,
47 &pushbuf);
48 }
49 chan->pushbuf_base = pb->bo.offset;
50 } else
51 if (pb->bo.mem.mem_type == TTM_PL_TT) {
52 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, 0,
53 dev_priv->gart_info.aper_size,
54 NV_MEM_ACCESS_RO,
55 NV_MEM_TARGET_GART, &pushbuf);
56 chan->pushbuf_base = pb->bo.mem.start << PAGE_SHIFT;
57 } else
58 if (dev_priv->card_type != NV_04) {
59 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, 0,
60 dev_priv->fb_available_size,
61 NV_MEM_ACCESS_RO,
62 NV_MEM_TARGET_VRAM, &pushbuf);
63 chan->pushbuf_base = pb->bo.mem.start << PAGE_SHIFT;
64 } else {
65
66
67
68
69 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
70 pci_resource_start(dev->pdev, 1),
71 dev_priv->fb_available_size,
72 NV_MEM_ACCESS_RO,
73 NV_MEM_TARGET_PCI, &pushbuf);
74 chan->pushbuf_base = pb->bo.mem.start << PAGE_SHIFT;
75 }
76
77 nouveau_gpuobj_ref(pushbuf, &chan->pushbuf);
78 nouveau_gpuobj_ref(NULL, &pushbuf);
79 return ret;
80}
81
82static struct nouveau_bo *
83nouveau_channel_user_pushbuf_alloc(struct drm_device *dev)
84{
85 struct nouveau_bo *pushbuf = NULL;
86 int location, ret;
87
88 if (nouveau_vram_pushbuf)
89 location = TTM_PL_FLAG_VRAM;
90 else
91 location = TTM_PL_FLAG_TT;
92
93 ret = nouveau_bo_new(dev, NULL, 65536, 0, location, 0, 0x0000, false,
94 true, &pushbuf);
95 if (ret) {
96 NV_ERROR(dev, "error allocating DMA push buffer: %d\n", ret);
97 return NULL;
98 }
99
100 ret = nouveau_bo_pin(pushbuf, location);
101 if (ret) {
102 NV_ERROR(dev, "error pinning DMA push buffer: %d\n", ret);
103 nouveau_bo_ref(NULL, &pushbuf);
104 return NULL;
105 }
106
107 ret = nouveau_bo_map(pushbuf);
108 if (ret) {
109 nouveau_bo_unpin(pushbuf);
110 nouveau_bo_ref(NULL, &pushbuf);
111 return NULL;
112 }
113
114 return pushbuf;
115}
116
117
118int
119nouveau_channel_alloc(struct drm_device *dev, struct nouveau_channel **chan_ret,
120 struct drm_file *file_priv,
121 uint32_t vram_handle, uint32_t gart_handle)
122{
123 struct drm_nouveau_private *dev_priv = dev->dev_private;
124 struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
125 struct nouveau_channel *chan;
126 unsigned long flags;
127 int ret;
128
129
130 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
131 if (!chan)
132 return -ENOMEM;
133 chan->dev = dev;
134 chan->file_priv = file_priv;
135 chan->vram_handle = vram_handle;
136 chan->gart_handle = gart_handle;
137
138 kref_init(&chan->ref);
139 atomic_set(&chan->users, 1);
140 mutex_init(&chan->mutex);
141 mutex_lock(&chan->mutex);
142
143
144 spin_lock_irqsave(&dev_priv->channels.lock, flags);
145 for (chan->id = 0; chan->id < pfifo->channels; chan->id++) {
146 if (!dev_priv->channels.ptr[chan->id]) {
147 nouveau_channel_ref(chan, &dev_priv->channels.ptr[chan->id]);
148 break;
149 }
150 }
151 spin_unlock_irqrestore(&dev_priv->channels.lock, flags);
152
153 if (chan->id == pfifo->channels) {
154 mutex_unlock(&chan->mutex);
155 kfree(chan);
156 return -ENODEV;
157 }
158
159 NV_DEBUG(dev, "initialising channel %d\n", chan->id);
160 INIT_LIST_HEAD(&chan->nvsw.vbl_wait);
161 INIT_LIST_HEAD(&chan->nvsw.flip);
162 INIT_LIST_HEAD(&chan->fence.pending);
163
164
165 chan->pushbuf_bo = nouveau_channel_user_pushbuf_alloc(dev);
166 if (!chan->pushbuf_bo) {
167 ret = -ENOMEM;
168 NV_ERROR(dev, "pushbuf %d\n", ret);
169 nouveau_channel_put(&chan);
170 return ret;
171 }
172
173 nouveau_dma_pre_init(chan);
174 chan->user_put = 0x40;
175 chan->user_get = 0x44;
176
177
178 ret = nouveau_notifier_init_channel(chan);
179 if (ret) {
180 NV_ERROR(dev, "ntfy %d\n", ret);
181 nouveau_channel_put(&chan);
182 return ret;
183 }
184
185
186 ret = nouveau_gpuobj_channel_init(chan, vram_handle, gart_handle);
187 if (ret) {
188 NV_ERROR(dev, "gpuobj %d\n", ret);
189 nouveau_channel_put(&chan);
190 return ret;
191 }
192
193
194 ret = nouveau_channel_pushbuf_ctxdma_init(chan);
195 if (ret) {
196 NV_ERROR(dev, "pbctxdma %d\n", ret);
197 nouveau_channel_put(&chan);
198 return ret;
199 }
200
201
202 pfifo->reassign(dev, false);
203
204
205 ret = pfifo->create_context(chan);
206 if (ret) {
207 nouveau_channel_put(&chan);
208 return ret;
209 }
210
211 pfifo->reassign(dev, true);
212
213 ret = nouveau_dma_init(chan);
214 if (!ret)
215 ret = nouveau_fence_channel_init(chan);
216 if (ret) {
217 nouveau_channel_put(&chan);
218 return ret;
219 }
220
221 nouveau_debugfs_channel_init(chan);
222
223 NV_DEBUG(dev, "channel %d initialised\n", chan->id);
224 *chan_ret = chan;
225 return 0;
226}
227
228struct nouveau_channel *
229nouveau_channel_get_unlocked(struct nouveau_channel *ref)
230{
231 struct nouveau_channel *chan = NULL;
232
233 if (likely(ref && atomic_inc_not_zero(&ref->users)))
234 nouveau_channel_ref(ref, &chan);
235
236 return chan;
237}
238
239struct nouveau_channel *
240nouveau_channel_get(struct drm_device *dev, struct drm_file *file_priv, int id)
241{
242 struct drm_nouveau_private *dev_priv = dev->dev_private;
243 struct nouveau_channel *chan;
244 unsigned long flags;
245
246 if (unlikely(id < 0 || id >= NOUVEAU_MAX_CHANNEL_NR))
247 return ERR_PTR(-EINVAL);
248
249 spin_lock_irqsave(&dev_priv->channels.lock, flags);
250 chan = nouveau_channel_get_unlocked(dev_priv->channels.ptr[id]);
251 spin_unlock_irqrestore(&dev_priv->channels.lock, flags);
252
253 if (unlikely(!chan))
254 return ERR_PTR(-EINVAL);
255
256 if (unlikely(file_priv && chan->file_priv != file_priv)) {
257 nouveau_channel_put_unlocked(&chan);
258 return ERR_PTR(-EINVAL);
259 }
260
261 mutex_lock(&chan->mutex);
262 return chan;
263}
264
265void
266nouveau_channel_put_unlocked(struct nouveau_channel **pchan)
267{
268 struct nouveau_channel *chan = *pchan;
269 struct drm_device *dev = chan->dev;
270 struct drm_nouveau_private *dev_priv = dev->dev_private;
271 struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo;
272 struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph;
273 struct nouveau_crypt_engine *pcrypt = &dev_priv->engine.crypt;
274 unsigned long flags;
275
276
277 if (likely(!atomic_dec_and_test(&chan->users))) {
278 nouveau_channel_ref(NULL, pchan);
279 return;
280 }
281
282
283 NV_DEBUG(dev, "freeing channel %d\n", chan->id);
284 nouveau_debugfs_channel_fini(chan);
285
286
287 nouveau_channel_idle(chan);
288
289
290
291
292
293 nouveau_fence_channel_fini(chan);
294
295
296 pfifo->reassign(dev, false);
297
298
299
300
301
302
303 if (pgraph->channel(dev) == chan)
304 nouveau_wait_for_idle(dev);
305
306
307 pfifo->destroy_context(chan);
308 pgraph->destroy_context(chan);
309 if (pcrypt->destroy_context)
310 pcrypt->destroy_context(chan);
311
312 pfifo->reassign(dev, true);
313
314
315
316
317 spin_lock_irqsave(&dev_priv->channels.lock, flags);
318 nouveau_channel_ref(NULL, &dev_priv->channels.ptr[chan->id]);
319 spin_unlock_irqrestore(&dev_priv->channels.lock, flags);
320
321
322 nouveau_gpuobj_ref(NULL, &chan->pushbuf);
323 if (chan->pushbuf_bo) {
324 nouveau_bo_unmap(chan->pushbuf_bo);
325 nouveau_bo_unpin(chan->pushbuf_bo);
326 nouveau_bo_ref(NULL, &chan->pushbuf_bo);
327 }
328 nouveau_gpuobj_channel_takedown(chan);
329 nouveau_notifier_takedown_channel(chan);
330
331 nouveau_channel_ref(NULL, pchan);
332}
333
334void
335nouveau_channel_put(struct nouveau_channel **pchan)
336{
337 mutex_unlock(&(*pchan)->mutex);
338 nouveau_channel_put_unlocked(pchan);
339}
340
341static void
342nouveau_channel_del(struct kref *ref)
343{
344 struct nouveau_channel *chan =
345 container_of(ref, struct nouveau_channel, ref);
346
347 kfree(chan);
348}
349
350void
351nouveau_channel_ref(struct nouveau_channel *chan,
352 struct nouveau_channel **pchan)
353{
354 if (chan)
355 kref_get(&chan->ref);
356
357 if (*pchan)
358 kref_put(&(*pchan)->ref, nouveau_channel_del);
359
360 *pchan = chan;
361}
362
363void
364nouveau_channel_idle(struct nouveau_channel *chan)
365{
366 struct drm_device *dev = chan->dev;
367 struct nouveau_fence *fence = NULL;
368 int ret;
369
370 nouveau_fence_update(chan);
371
372 if (chan->fence.sequence != chan->fence.sequence_ack) {
373 ret = nouveau_fence_new(chan, &fence, true);
374 if (!ret) {
375 ret = nouveau_fence_wait(fence, false, false);
376 nouveau_fence_unref(&fence);
377 }
378
379 if (ret)
380 NV_ERROR(dev, "Failed to idle channel %d.\n", chan->id);
381 }
382}
383
384
385void
386nouveau_channel_cleanup(struct drm_device *dev, struct drm_file *file_priv)
387{
388 struct drm_nouveau_private *dev_priv = dev->dev_private;
389 struct nouveau_engine *engine = &dev_priv->engine;
390 struct nouveau_channel *chan;
391 int i;
392
393 NV_DEBUG(dev, "clearing FIFO enables from file_priv\n");
394 for (i = 0; i < engine->fifo.channels; i++) {
395 chan = nouveau_channel_get(dev, file_priv, i);
396 if (IS_ERR(chan))
397 continue;
398
399 atomic_dec(&chan->users);
400 nouveau_channel_put(&chan);
401 }
402}
403
404
405
406
407
408
409static int
410nouveau_ioctl_fifo_alloc(struct drm_device *dev, void *data,
411 struct drm_file *file_priv)
412{
413 struct drm_nouveau_private *dev_priv = dev->dev_private;
414 struct drm_nouveau_channel_alloc *init = data;
415 struct nouveau_channel *chan;
416 int ret;
417
418 if (dev_priv->engine.graph.accel_blocked)
419 return -ENODEV;
420
421 if (init->fb_ctxdma_handle == ~0 || init->tt_ctxdma_handle == ~0)
422 return -EINVAL;
423
424 ret = nouveau_channel_alloc(dev, &chan, file_priv,
425 init->fb_ctxdma_handle,
426 init->tt_ctxdma_handle);
427 if (ret)
428 return ret;
429 init->channel = chan->id;
430
431 if (chan->dma.ib_max)
432 init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_VRAM |
433 NOUVEAU_GEM_DOMAIN_GART;
434 else if (chan->pushbuf_bo->bo.mem.mem_type == TTM_PL_VRAM)
435 init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_VRAM;
436 else
437 init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_GART;
438
439 if (dev_priv->card_type < NV_C0) {
440 init->subchan[0].handle = NvM2MF;
441 if (dev_priv->card_type < NV_50)
442 init->subchan[0].grclass = 0x0039;
443 else
444 init->subchan[0].grclass = 0x5039;
445 init->subchan[1].handle = NvSw;
446 init->subchan[1].grclass = NV_SW;
447 init->nr_subchan = 2;
448 } else {
449 init->subchan[0].handle = 0x9039;
450 init->subchan[0].grclass = 0x9039;
451 init->nr_subchan = 1;
452 }
453
454
455 ret = drm_gem_handle_create(file_priv, chan->notifier_bo->gem,
456 &init->notifier_handle);
457
458 if (ret == 0)
459 atomic_inc(&chan->users);
460 nouveau_channel_put(&chan);
461 return ret;
462}
463
464static int
465nouveau_ioctl_fifo_free(struct drm_device *dev, void *data,
466 struct drm_file *file_priv)
467{
468 struct drm_nouveau_channel_free *req = data;
469 struct nouveau_channel *chan;
470
471 chan = nouveau_channel_get(dev, file_priv, req->channel);
472 if (IS_ERR(chan))
473 return PTR_ERR(chan);
474
475 atomic_dec(&chan->users);
476 nouveau_channel_put(&chan);
477 return 0;
478}
479
480
481
482
483
484struct drm_ioctl_desc nouveau_ioctls[] = {
485 DRM_IOCTL_DEF_DRV(NOUVEAU_GETPARAM, nouveau_ioctl_getparam, DRM_UNLOCKED|DRM_AUTH),
486 DRM_IOCTL_DEF_DRV(NOUVEAU_SETPARAM, nouveau_ioctl_setparam, DRM_UNLOCKED|DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
487 DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_ALLOC, nouveau_ioctl_fifo_alloc, DRM_UNLOCKED|DRM_AUTH),
488 DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_FREE, nouveau_ioctl_fifo_free, DRM_UNLOCKED|DRM_AUTH),
489 DRM_IOCTL_DEF_DRV(NOUVEAU_GROBJ_ALLOC, nouveau_ioctl_grobj_alloc, DRM_UNLOCKED|DRM_AUTH),
490 DRM_IOCTL_DEF_DRV(NOUVEAU_NOTIFIEROBJ_ALLOC, nouveau_ioctl_notifier_alloc, DRM_UNLOCKED|DRM_AUTH),
491 DRM_IOCTL_DEF_DRV(NOUVEAU_GPUOBJ_FREE, nouveau_ioctl_gpuobj_free, DRM_UNLOCKED|DRM_AUTH),
492 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_NEW, nouveau_gem_ioctl_new, DRM_UNLOCKED|DRM_AUTH),
493 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_PUSHBUF, nouveau_gem_ioctl_pushbuf, DRM_UNLOCKED|DRM_AUTH),
494 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_PREP, nouveau_gem_ioctl_cpu_prep, DRM_UNLOCKED|DRM_AUTH),
495 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_FINI, nouveau_gem_ioctl_cpu_fini, DRM_UNLOCKED|DRM_AUTH),
496 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_INFO, nouveau_gem_ioctl_info, DRM_UNLOCKED|DRM_AUTH),
497};
498
499int nouveau_max_ioctl = DRM_ARRAY_SIZE(nouveau_ioctls);
500