2 * Copyright 2005-2006 Stephane Marchesin
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
27 #include "nouveau_drv.h"
28 #include "nouveau_drm.h"
29 #include "nouveau_dma.h"
30 #include "nouveau_ramht.h"
33 nouveau_channel_pushbuf_init(struct nouveau_channel
*chan
)
35 u32 mem
= nouveau_vram_pushbuf
? TTM_PL_FLAG_VRAM
: TTM_PL_FLAG_TT
;
36 struct drm_device
*dev
= chan
->dev
;
37 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
40 /* allocate buffer object */
41 ret
= nouveau_bo_new(dev
, 65536, 0, mem
, 0, 0, &chan
->pushbuf_bo
);
45 ret
= nouveau_bo_pin(chan
->pushbuf_bo
, mem
);
49 ret
= nouveau_bo_map(chan
->pushbuf_bo
);
53 /* create DMA object covering the entire memtype where the push
54 * buffer resides, userspace can submit its own push buffers from
55 * anywhere within the same memtype.
57 chan
->pushbuf_base
= chan
->pushbuf_bo
->bo
.offset
;
58 if (dev_priv
->card_type
>= NV_50
) {
59 ret
= nouveau_bo_vma_add(chan
->pushbuf_bo
, chan
->vm
,
64 if (dev_priv
->card_type
< NV_C0
) {
65 ret
= nouveau_gpuobj_dma_new(chan
,
66 NV_CLASS_DMA_IN_MEMORY
, 0,
72 chan
->pushbuf_base
= chan
->pushbuf_vma
.offset
;
74 if (chan
->pushbuf_bo
->bo
.mem
.mem_type
== TTM_PL_TT
) {
75 ret
= nouveau_gpuobj_dma_new(chan
, NV_CLASS_DMA_IN_MEMORY
, 0,
76 dev_priv
->gart_info
.aper_size
,
81 if (dev_priv
->card_type
!= NV_04
) {
82 ret
= nouveau_gpuobj_dma_new(chan
, NV_CLASS_DMA_IN_MEMORY
, 0,
83 dev_priv
->fb_available_size
,
88 /* NV04 cmdbuf hack, from original ddx.. not sure of it's
89 * exact reason for existing :) PCI access to cmdbuf in
92 ret
= nouveau_gpuobj_dma_new(chan
, NV_CLASS_DMA_IN_MEMORY
,
93 pci_resource_start(dev
->pdev
, 1),
94 dev_priv
->fb_available_size
,
102 NV_ERROR(dev
, "error initialising pushbuf: %d\n", ret
);
103 nouveau_bo_vma_del(chan
->pushbuf_bo
, &chan
->pushbuf_vma
);
104 nouveau_gpuobj_ref(NULL
, &chan
->pushbuf
);
105 if (chan
->pushbuf_bo
) {
106 nouveau_bo_unmap(chan
->pushbuf_bo
);
107 nouveau_bo_ref(NULL
, &chan
->pushbuf_bo
);
114 /* allocates and initializes a fifo for user space consumption */
116 nouveau_channel_alloc(struct drm_device
*dev
, struct nouveau_channel
**chan_ret
,
117 struct drm_file
*file_priv
,
118 uint32_t vram_handle
, uint32_t gart_handle
)
120 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
121 struct nouveau_fifo_engine
*pfifo
= &dev_priv
->engine
.fifo
;
122 struct nouveau_fpriv
*fpriv
= nouveau_fpriv(file_priv
);
123 struct nouveau_channel
*chan
;
127 /* allocate and lock channel structure */
128 chan
= kzalloc(sizeof(*chan
), GFP_KERNEL
);
132 chan
->file_priv
= file_priv
;
133 chan
->vram_handle
= vram_handle
;
134 chan
->gart_handle
= gart_handle
;
136 kref_init(&chan
->ref
);
137 atomic_set(&chan
->users
, 1);
138 mutex_init(&chan
->mutex
);
139 mutex_lock(&chan
->mutex
);
141 /* allocate hw channel id */
142 spin_lock_irqsave(&dev_priv
->channels
.lock
, flags
);
143 for (chan
->id
= 0; chan
->id
< pfifo
->channels
; chan
->id
++) {
144 if (!dev_priv
->channels
.ptr
[chan
->id
]) {
145 nouveau_channel_ref(chan
, &dev_priv
->channels
.ptr
[chan
->id
]);
149 spin_unlock_irqrestore(&dev_priv
->channels
.lock
, flags
);
151 if (chan
->id
== pfifo
->channels
) {
152 mutex_unlock(&chan
->mutex
);
157 NV_DEBUG(dev
, "initialising channel %d\n", chan
->id
);
158 INIT_LIST_HEAD(&chan
->nvsw
.vbl_wait
);
159 INIT_LIST_HEAD(&chan
->nvsw
.flip
);
160 INIT_LIST_HEAD(&chan
->fence
.pending
);
161 spin_lock_init(&chan
->fence
.lock
);
163 /* setup channel's memory and vm */
164 ret
= nouveau_gpuobj_channel_init(chan
, vram_handle
, gart_handle
);
166 NV_ERROR(dev
, "gpuobj %d\n", ret
);
167 nouveau_channel_put(&chan
);
171 /* Allocate space for per-channel fixed notifier memory */
172 ret
= nouveau_notifier_init_channel(chan
);
174 NV_ERROR(dev
, "ntfy %d\n", ret
);
175 nouveau_channel_put(&chan
);
179 /* Allocate DMA push buffer */
180 ret
= nouveau_channel_pushbuf_init(chan
);
182 NV_ERROR(dev
, "pushbuf %d\n", ret
);
183 nouveau_channel_put(&chan
);
187 nouveau_dma_pre_init(chan
);
188 chan
->user_put
= 0x40;
189 chan
->user_get
= 0x44;
191 /* disable the fifo caches */
192 pfifo
->reassign(dev
, false);
194 /* Construct initial RAMFC for new channel */
195 ret
= pfifo
->create_context(chan
);
197 nouveau_channel_put(&chan
);
201 pfifo
->reassign(dev
, true);
203 ret
= nouveau_dma_init(chan
);
205 ret
= nouveau_fence_channel_init(chan
);
207 nouveau_channel_put(&chan
);
211 nouveau_debugfs_channel_init(chan
);
213 NV_DEBUG(dev
, "channel %d initialised\n", chan
->id
);
215 spin_lock(&fpriv
->lock
);
216 list_add(&chan
->list
, &fpriv
->channels
);
217 spin_unlock(&fpriv
->lock
);
223 struct nouveau_channel
*
224 nouveau_channel_get_unlocked(struct nouveau_channel
*ref
)
226 struct nouveau_channel
*chan
= NULL
;
228 if (likely(ref
&& atomic_inc_not_zero(&ref
->users
)))
229 nouveau_channel_ref(ref
, &chan
);
234 struct nouveau_channel
*
235 nouveau_channel_get(struct drm_file
*file_priv
, int id
)
237 struct nouveau_fpriv
*fpriv
= nouveau_fpriv(file_priv
);
238 struct nouveau_channel
*chan
;
240 spin_lock(&fpriv
->lock
);
241 list_for_each_entry(chan
, &fpriv
->channels
, list
) {
242 if (chan
->id
== id
) {
243 chan
= nouveau_channel_get_unlocked(chan
);
244 spin_unlock(&fpriv
->lock
);
245 mutex_lock(&chan
->mutex
);
249 spin_unlock(&fpriv
->lock
);
251 return ERR_PTR(-EINVAL
);
255 nouveau_channel_put_unlocked(struct nouveau_channel
**pchan
)
257 struct nouveau_channel
*chan
= *pchan
;
258 struct drm_device
*dev
= chan
->dev
;
259 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
260 struct nouveau_fifo_engine
*pfifo
= &dev_priv
->engine
.fifo
;
264 /* decrement the refcount, and we're done if there's still refs */
265 if (likely(!atomic_dec_and_test(&chan
->users
))) {
266 nouveau_channel_ref(NULL
, pchan
);
270 /* no one wants the channel anymore */
271 NV_DEBUG(dev
, "freeing channel %d\n", chan
->id
);
272 nouveau_debugfs_channel_fini(chan
);
274 /* give it chance to idle */
275 nouveau_channel_idle(chan
);
277 /* ensure all outstanding fences are signaled. they should be if the
278 * above attempts at idling were OK, but if we failed this'll tell TTM
279 * we're done with the buffers.
281 nouveau_fence_channel_fini(chan
);
283 /* boot it off the hardware */
284 pfifo
->reassign(dev
, false);
286 /* destroy the engine specific contexts */
287 pfifo
->destroy_context(chan
);
288 for (i
= 0; i
< NVOBJ_ENGINE_NR
; i
++) {
290 dev_priv
->eng
[i
]->context_del(chan
, i
);
293 pfifo
->reassign(dev
, true);
295 /* aside from its resources, the channel should now be dead,
296 * remove it from the channel list
298 spin_lock_irqsave(&dev_priv
->channels
.lock
, flags
);
299 nouveau_channel_ref(NULL
, &dev_priv
->channels
.ptr
[chan
->id
]);
300 spin_unlock_irqrestore(&dev_priv
->channels
.lock
, flags
);
302 /* destroy any resources the channel owned */
303 nouveau_gpuobj_ref(NULL
, &chan
->pushbuf
);
304 if (chan
->pushbuf_bo
) {
305 nouveau_bo_vma_del(chan
->pushbuf_bo
, &chan
->pushbuf_vma
);
306 nouveau_bo_unmap(chan
->pushbuf_bo
);
307 nouveau_bo_unpin(chan
->pushbuf_bo
);
308 nouveau_bo_ref(NULL
, &chan
->pushbuf_bo
);
310 nouveau_ramht_ref(NULL
, &chan
->ramht
, chan
);
311 nouveau_notifier_takedown_channel(chan
);
312 nouveau_gpuobj_channel_takedown(chan
);
314 nouveau_channel_ref(NULL
, pchan
);
318 nouveau_channel_put(struct nouveau_channel
**pchan
)
320 mutex_unlock(&(*pchan
)->mutex
);
321 nouveau_channel_put_unlocked(pchan
);
325 nouveau_channel_del(struct kref
*ref
)
327 struct nouveau_channel
*chan
=
328 container_of(ref
, struct nouveau_channel
, ref
);
334 nouveau_channel_ref(struct nouveau_channel
*chan
,
335 struct nouveau_channel
**pchan
)
338 kref_get(&chan
->ref
);
341 kref_put(&(*pchan
)->ref
, nouveau_channel_del
);
347 nouveau_channel_idle(struct nouveau_channel
*chan
)
349 struct drm_device
*dev
= chan
->dev
;
350 struct nouveau_fence
*fence
= NULL
;
353 nouveau_fence_update(chan
);
355 if (chan
->fence
.sequence
!= chan
->fence
.sequence_ack
) {
356 ret
= nouveau_fence_new(chan
, &fence
, true);
358 ret
= nouveau_fence_wait(fence
, false, false);
359 nouveau_fence_unref(&fence
);
363 NV_ERROR(dev
, "Failed to idle channel %d.\n", chan
->id
);
367 /* cleans up all the fifos from file_priv */
369 nouveau_channel_cleanup(struct drm_device
*dev
, struct drm_file
*file_priv
)
371 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
372 struct nouveau_engine
*engine
= &dev_priv
->engine
;
373 struct nouveau_channel
*chan
;
376 NV_DEBUG(dev
, "clearing FIFO enables from file_priv\n");
377 for (i
= 0; i
< engine
->fifo
.channels
; i
++) {
378 chan
= nouveau_channel_get(file_priv
, i
);
382 list_del(&chan
->list
);
383 atomic_dec(&chan
->users
);
384 nouveau_channel_put(&chan
);
389 /***********************************
390 * ioctls wrapping the functions
391 ***********************************/
394 nouveau_ioctl_fifo_alloc(struct drm_device
*dev
, void *data
,
395 struct drm_file
*file_priv
)
397 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
398 struct drm_nouveau_channel_alloc
*init
= data
;
399 struct nouveau_channel
*chan
;
402 if (!dev_priv
->eng
[NVOBJ_ENGINE_GR
])
405 if (init
->fb_ctxdma_handle
== ~0 || init
->tt_ctxdma_handle
== ~0)
408 ret
= nouveau_channel_alloc(dev
, &chan
, file_priv
,
409 init
->fb_ctxdma_handle
,
410 init
->tt_ctxdma_handle
);
413 init
->channel
= chan
->id
;
415 if (chan
->dma
.ib_max
)
416 init
->pushbuf_domains
= NOUVEAU_GEM_DOMAIN_VRAM
|
417 NOUVEAU_GEM_DOMAIN_GART
;
418 else if (chan
->pushbuf_bo
->bo
.mem
.mem_type
== TTM_PL_VRAM
)
419 init
->pushbuf_domains
= NOUVEAU_GEM_DOMAIN_VRAM
;
421 init
->pushbuf_domains
= NOUVEAU_GEM_DOMAIN_GART
;
423 if (dev_priv
->card_type
< NV_C0
) {
424 init
->subchan
[0].handle
= NvM2MF
;
425 if (dev_priv
->card_type
< NV_50
)
426 init
->subchan
[0].grclass
= 0x0039;
428 init
->subchan
[0].grclass
= 0x5039;
429 init
->subchan
[1].handle
= NvSw
;
430 init
->subchan
[1].grclass
= NV_SW
;
431 init
->nr_subchan
= 2;
433 init
->subchan
[0].handle
= 0x9039;
434 init
->subchan
[0].grclass
= 0x9039;
435 init
->nr_subchan
= 1;
438 /* Named memory object area */
439 ret
= drm_gem_handle_create(file_priv
, chan
->notifier_bo
->gem
,
440 &init
->notifier_handle
);
443 atomic_inc(&chan
->users
); /* userspace reference */
444 nouveau_channel_put(&chan
);
449 nouveau_ioctl_fifo_free(struct drm_device
*dev
, void *data
,
450 struct drm_file
*file_priv
)
452 struct drm_nouveau_channel_free
*req
= data
;
453 struct nouveau_channel
*chan
;
455 chan
= nouveau_channel_get(file_priv
, req
->channel
);
457 return PTR_ERR(chan
);
459 list_del(&chan
->list
);
460 atomic_dec(&chan
->users
);
461 nouveau_channel_put(&chan
);
465 /***********************************
466 * finally, the ioctl table
467 ***********************************/
469 struct drm_ioctl_desc nouveau_ioctls
[] = {
470 DRM_IOCTL_DEF_DRV(NOUVEAU_GETPARAM
, nouveau_ioctl_getparam
, DRM_UNLOCKED
|DRM_AUTH
),
471 DRM_IOCTL_DEF_DRV(NOUVEAU_SETPARAM
, nouveau_ioctl_setparam
, DRM_UNLOCKED
|DRM_AUTH
|DRM_MASTER
|DRM_ROOT_ONLY
),
472 DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_ALLOC
, nouveau_ioctl_fifo_alloc
, DRM_UNLOCKED
|DRM_AUTH
),
473 DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_FREE
, nouveau_ioctl_fifo_free
, DRM_UNLOCKED
|DRM_AUTH
),
474 DRM_IOCTL_DEF_DRV(NOUVEAU_GROBJ_ALLOC
, nouveau_ioctl_grobj_alloc
, DRM_UNLOCKED
|DRM_AUTH
),
475 DRM_IOCTL_DEF_DRV(NOUVEAU_NOTIFIEROBJ_ALLOC
, nouveau_ioctl_notifier_alloc
, DRM_UNLOCKED
|DRM_AUTH
),
476 DRM_IOCTL_DEF_DRV(NOUVEAU_GPUOBJ_FREE
, nouveau_ioctl_gpuobj_free
, DRM_UNLOCKED
|DRM_AUTH
),
477 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_NEW
, nouveau_gem_ioctl_new
, DRM_UNLOCKED
|DRM_AUTH
),
478 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_PUSHBUF
, nouveau_gem_ioctl_pushbuf
, DRM_UNLOCKED
|DRM_AUTH
),
479 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_PREP
, nouveau_gem_ioctl_cpu_prep
, DRM_UNLOCKED
|DRM_AUTH
),
480 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_FINI
, nouveau_gem_ioctl_cpu_fini
, DRM_UNLOCKED
|DRM_AUTH
),
481 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_INFO
, nouveau_gem_ioctl_info
, DRM_UNLOCKED
|DRM_AUTH
),
484 int nouveau_max_ioctl
= DRM_ARRAY_SIZE(nouveau_ioctls
);