2 * Copyright 2012 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
24 #include <core/object.h>
25 #include <core/client.h>
26 #include <core/device.h>
27 #include <core/class.h>
30 #include <subdev/fb.h>
31 #include <subdev/timer.h>
32 #include <subdev/instmem.h>
33 #include <engine/graph.h>
35 #include "nouveau_drm.h"
36 #include "nouveau_dma.h"
37 #include "nouveau_gem.h"
38 #include "nouveau_chan.h"
39 #include "nouveau_abi16.h"
41 struct nouveau_abi16
*
42 nouveau_abi16_get(struct drm_file
*file_priv
, struct drm_device
*dev
)
44 struct nouveau_cli
*cli
= nouveau_cli(file_priv
);
45 mutex_lock(&cli
->mutex
);
47 struct nouveau_abi16
*abi16
;
48 cli
->abi16
= abi16
= kzalloc(sizeof(*abi16
), GFP_KERNEL
);
50 INIT_LIST_HEAD(&abi16
->channels
);
51 abi16
->client
= nv_object(cli
);
53 /* allocate device object targeting client's default
54 * device (ie. the one that belongs to the fd it
57 if (nouveau_object_new(abi16
->client
, NVDRM_CLIENT
,
59 &(struct nv_device_class
) {
62 sizeof(struct nv_device_class
),
70 mutex_unlock(&cli
->mutex
);
76 nouveau_abi16_put(struct nouveau_abi16
*abi16
, int ret
)
78 struct nouveau_cli
*cli
= (void *)abi16
->client
;
79 mutex_unlock(&cli
->mutex
);
84 nouveau_abi16_swclass(struct nouveau_drm
*drm
)
86 switch (nv_device(drm
->device
)->card_type
) {
107 nouveau_abi16_ntfy_fini(struct nouveau_abi16_chan
*chan
,
108 struct nouveau_abi16_ntfy
*ntfy
)
110 nouveau_mm_free(&chan
->heap
, &ntfy
->node
);
111 list_del(&ntfy
->head
);
116 nouveau_abi16_chan_fini(struct nouveau_abi16
*abi16
,
117 struct nouveau_abi16_chan
*chan
)
119 struct nouveau_abi16_ntfy
*ntfy
, *temp
;
121 /* wait for all activity to stop before releasing notify object, which
122 * may be still in use */
123 if (chan
->chan
&& chan
->ntfy
)
124 nouveau_channel_idle(chan
->chan
);
126 /* cleanup notifier state */
127 list_for_each_entry_safe(ntfy
, temp
, &chan
->notifiers
, head
) {
128 nouveau_abi16_ntfy_fini(chan
, ntfy
);
132 nouveau_bo_vma_del(chan
->ntfy
, &chan
->ntfy_vma
);
133 nouveau_bo_unpin(chan
->ntfy
);
134 drm_gem_object_unreference_unlocked(&chan
->ntfy
->gem
);
137 if (chan
->heap
.block_size
)
138 nouveau_mm_fini(&chan
->heap
);
140 /* destroy channel object, all children will be killed too */
142 abi16
->handles
&= ~(1 << (chan
->chan
->handle
& 0xffff));
143 nouveau_channel_del(&chan
->chan
);
146 list_del(&chan
->head
);
151 nouveau_abi16_fini(struct nouveau_abi16
*abi16
)
153 struct nouveau_cli
*cli
= (void *)abi16
->client
;
154 struct nouveau_abi16_chan
*chan
, *temp
;
156 /* cleanup channels */
157 list_for_each_entry_safe(chan
, temp
, &abi16
->channels
, head
) {
158 nouveau_abi16_chan_fini(abi16
, chan
);
161 /* destroy the device object */
162 nouveau_object_del(abi16
->client
, NVDRM_CLIENT
, NVDRM_DEVICE
);
169 nouveau_abi16_ioctl_getparam(ABI16_IOCTL_ARGS
)
171 struct nouveau_drm
*drm
= nouveau_drm(dev
);
172 struct nouveau_device
*device
= nv_device(drm
->device
);
173 struct nouveau_timer
*ptimer
= nouveau_timer(device
);
174 struct nouveau_graph
*graph
= (void *)nouveau_engine(device
, NVDEV_ENGINE_GR
);
175 struct drm_nouveau_getparam
*getparam
= data
;
177 switch (getparam
->param
) {
178 case NOUVEAU_GETPARAM_CHIPSET_ID
:
179 getparam
->value
= device
->chipset
;
181 case NOUVEAU_GETPARAM_PCI_VENDOR
:
182 getparam
->value
= dev
->pdev
->vendor
;
184 case NOUVEAU_GETPARAM_PCI_DEVICE
:
185 getparam
->value
= dev
->pdev
->device
;
187 case NOUVEAU_GETPARAM_BUS_TYPE
:
188 if (drm_pci_device_is_agp(dev
))
191 if (!pci_is_pcie(dev
->pdev
))
196 case NOUVEAU_GETPARAM_FB_SIZE
:
197 getparam
->value
= drm
->gem
.vram_available
;
199 case NOUVEAU_GETPARAM_AGP_SIZE
:
200 getparam
->value
= drm
->gem
.gart_available
;
202 case NOUVEAU_GETPARAM_VM_VRAM_BASE
:
203 getparam
->value
= 0; /* deprecated */
205 case NOUVEAU_GETPARAM_PTIMER_TIME
:
206 getparam
->value
= ptimer
->read(ptimer
);
208 case NOUVEAU_GETPARAM_HAS_BO_USAGE
:
211 case NOUVEAU_GETPARAM_HAS_PAGEFLIP
:
214 case NOUVEAU_GETPARAM_GRAPH_UNITS
:
215 getparam
->value
= graph
->units
? graph
->units(graph
) : 0;
218 nv_debug(device
, "unknown parameter %lld\n", getparam
->param
);
226 nouveau_abi16_ioctl_setparam(ABI16_IOCTL_ARGS
)
232 nouveau_abi16_ioctl_channel_alloc(ABI16_IOCTL_ARGS
)
234 struct drm_nouveau_channel_alloc
*init
= data
;
235 struct nouveau_cli
*cli
= nouveau_cli(file_priv
);
236 struct nouveau_drm
*drm
= nouveau_drm(dev
);
237 struct nouveau_abi16
*abi16
= nouveau_abi16_get(file_priv
, dev
);
238 struct nouveau_abi16_chan
*chan
;
239 struct nouveau_client
*client
;
240 struct nouveau_device
*device
;
241 struct nouveau_instmem
*imem
;
242 struct nouveau_fb
*pfb
;
245 if (unlikely(!abi16
))
249 return nouveau_abi16_put(abi16
, -ENODEV
);
251 client
= nv_client(abi16
->client
);
252 device
= nv_device(abi16
->device
);
253 imem
= nouveau_instmem(device
);
254 pfb
= nouveau_fb(device
);
256 /* hack to allow channel engine type specification on kepler */
257 if (device
->card_type
>= NV_E0
) {
258 if (init
->fb_ctxdma_handle
!= ~0)
259 init
->fb_ctxdma_handle
= NVE0_CHANNEL_IND_ENGINE_GR
;
261 init
->fb_ctxdma_handle
= init
->tt_ctxdma_handle
;
263 /* allow flips to be executed if this is a graphics channel */
264 init
->tt_ctxdma_handle
= 0;
265 if (init
->fb_ctxdma_handle
== NVE0_CHANNEL_IND_ENGINE_GR
)
266 init
->tt_ctxdma_handle
= 1;
269 if (init
->fb_ctxdma_handle
== ~0 || init
->tt_ctxdma_handle
== ~0)
270 return nouveau_abi16_put(abi16
, -EINVAL
);
272 /* allocate "abi16 channel" data and make up a handle for it */
273 init
->channel
= ffsll(~abi16
->handles
);
274 if (!init
->channel
--)
275 return nouveau_abi16_put(abi16
, -ENOSPC
);
277 chan
= kzalloc(sizeof(*chan
), GFP_KERNEL
);
279 return nouveau_abi16_put(abi16
, -ENOMEM
);
281 INIT_LIST_HEAD(&chan
->notifiers
);
282 list_add(&chan
->head
, &abi16
->channels
);
283 abi16
->handles
|= (1 << init
->channel
);
285 /* create channel object and initialise dma and fence management */
286 ret
= nouveau_channel_new(drm
, cli
, NVDRM_DEVICE
, NVDRM_CHAN
|
287 init
->channel
, init
->fb_ctxdma_handle
,
288 init
->tt_ctxdma_handle
, &chan
->chan
);
292 if (device
->card_type
>= NV_50
)
293 init
->pushbuf_domains
= NOUVEAU_GEM_DOMAIN_VRAM
|
294 NOUVEAU_GEM_DOMAIN_GART
;
296 if (chan
->chan
->push
.buffer
->bo
.mem
.mem_type
== TTM_PL_VRAM
)
297 init
->pushbuf_domains
= NOUVEAU_GEM_DOMAIN_VRAM
;
299 init
->pushbuf_domains
= NOUVEAU_GEM_DOMAIN_GART
;
301 if (device
->card_type
< NV_10
) {
302 init
->subchan
[0].handle
= 0x00000000;
303 init
->subchan
[0].grclass
= 0x0000;
304 init
->subchan
[1].handle
= NvSw
;
305 init
->subchan
[1].grclass
= 0x506e;
306 init
->nr_subchan
= 2;
309 /* Named memory object area */
310 ret
= nouveau_gem_new(dev
, PAGE_SIZE
, 0, NOUVEAU_GEM_DOMAIN_GART
,
313 ret
= nouveau_bo_pin(chan
->ntfy
, TTM_PL_FLAG_TT
);
317 if (device
->card_type
>= NV_50
) {
318 ret
= nouveau_bo_vma_add(chan
->ntfy
, client
->vm
,
324 ret
= drm_gem_handle_create(file_priv
, &chan
->ntfy
->gem
,
325 &init
->notifier_handle
);
329 ret
= nouveau_mm_init(&chan
->heap
, 0, PAGE_SIZE
, 1);
332 nouveau_abi16_chan_fini(abi16
, chan
);
333 return nouveau_abi16_put(abi16
, ret
);
338 nouveau_abi16_ioctl_channel_free(ABI16_IOCTL_ARGS
)
340 struct drm_nouveau_channel_free
*req
= data
;
341 struct nouveau_abi16
*abi16
= nouveau_abi16_get(file_priv
, dev
);
342 struct nouveau_abi16_chan
*chan
;
345 if (unlikely(!abi16
))
348 list_for_each_entry(chan
, &abi16
->channels
, head
) {
349 if (chan
->chan
->handle
== (NVDRM_CHAN
| req
->channel
)) {
350 nouveau_abi16_chan_fini(abi16
, chan
);
351 return nouveau_abi16_put(abi16
, 0);
355 return nouveau_abi16_put(abi16
, ret
);
359 nouveau_abi16_ioctl_grobj_alloc(ABI16_IOCTL_ARGS
)
361 struct drm_nouveau_grobj_alloc
*init
= data
;
362 struct nouveau_abi16
*abi16
= nouveau_abi16_get(file_priv
, dev
);
363 struct nouveau_drm
*drm
= nouveau_drm(dev
);
364 struct nouveau_object
*object
;
367 if (unlikely(!abi16
))
370 if (init
->handle
== ~0)
371 return nouveau_abi16_put(abi16
, -EINVAL
);
373 /* compatibility with userspace that assumes 506e for all chipsets */
374 if (init
->class == 0x506e) {
375 init
->class = nouveau_abi16_swclass(drm
);
376 if (init
->class == 0x906e)
377 return nouveau_abi16_put(abi16
, 0);
380 ret
= nouveau_object_new(abi16
->client
, NVDRM_CHAN
| init
->channel
,
381 init
->handle
, init
->class, NULL
, 0, &object
);
382 return nouveau_abi16_put(abi16
, ret
);
386 nouveau_abi16_ioctl_notifierobj_alloc(ABI16_IOCTL_ARGS
)
388 struct drm_nouveau_notifierobj_alloc
*info
= data
;
389 struct nouveau_drm
*drm
= nouveau_drm(dev
);
390 struct nouveau_device
*device
= nv_device(drm
->device
);
391 struct nouveau_abi16
*abi16
= nouveau_abi16_get(file_priv
, dev
);
392 struct nouveau_abi16_chan
*chan
= NULL
, *temp
;
393 struct nouveau_abi16_ntfy
*ntfy
;
394 struct nouveau_object
*object
;
395 struct nv_dma_class args
= {};
398 if (unlikely(!abi16
))
401 /* completely unnecessary for these chipsets... */
402 if (unlikely(nv_device(abi16
->device
)->card_type
>= NV_C0
))
403 return nouveau_abi16_put(abi16
, -EINVAL
);
405 list_for_each_entry(temp
, &abi16
->channels
, head
) {
406 if (temp
->chan
->handle
== (NVDRM_CHAN
| info
->channel
)) {
413 return nouveau_abi16_put(abi16
, -ENOENT
);
415 ntfy
= kzalloc(sizeof(*ntfy
), GFP_KERNEL
);
417 return nouveau_abi16_put(abi16
, -ENOMEM
);
419 list_add(&ntfy
->head
, &chan
->notifiers
);
420 ntfy
->handle
= info
->handle
;
422 ret
= nouveau_mm_head(&chan
->heap
, 1, info
->size
, info
->size
, 1,
427 args
.start
= ntfy
->node
->offset
;
428 args
.limit
= ntfy
->node
->offset
+ ntfy
->node
->length
- 1;
429 if (device
->card_type
>= NV_50
) {
430 args
.flags
= NV_DMA_TARGET_VM
| NV_DMA_ACCESS_VM
;
431 args
.start
+= chan
->ntfy_vma
.offset
;
432 args
.limit
+= chan
->ntfy_vma
.offset
;
434 if (drm
->agp
.stat
== ENABLED
) {
435 args
.flags
= NV_DMA_TARGET_AGP
| NV_DMA_ACCESS_RDWR
;
436 args
.start
+= drm
->agp
.base
+ chan
->ntfy
->bo
.offset
;
437 args
.limit
+= drm
->agp
.base
+ chan
->ntfy
->bo
.offset
;
439 args
.flags
= NV_DMA_TARGET_VM
| NV_DMA_ACCESS_RDWR
;
440 args
.start
+= chan
->ntfy
->bo
.offset
;
441 args
.limit
+= chan
->ntfy
->bo
.offset
;
444 ret
= nouveau_object_new(abi16
->client
, chan
->chan
->handle
,
445 ntfy
->handle
, 0x003d, &args
,
446 sizeof(args
), &object
);
450 info
->offset
= ntfy
->node
->offset
;
454 nouveau_abi16_ntfy_fini(chan
, ntfy
);
455 return nouveau_abi16_put(abi16
, ret
);
459 nouveau_abi16_ioctl_gpuobj_free(ABI16_IOCTL_ARGS
)
461 struct drm_nouveau_gpuobj_free
*fini
= data
;
462 struct nouveau_abi16
*abi16
= nouveau_abi16_get(file_priv
, dev
);
463 struct nouveau_abi16_chan
*chan
= NULL
, *temp
;
464 struct nouveau_abi16_ntfy
*ntfy
;
467 if (unlikely(!abi16
))
470 list_for_each_entry(temp
, &abi16
->channels
, head
) {
471 if (temp
->chan
->handle
== (NVDRM_CHAN
| fini
->channel
)) {
478 return nouveau_abi16_put(abi16
, -ENOENT
);
480 /* synchronize with the user channel and destroy the gpu object */
481 nouveau_channel_idle(chan
->chan
);
483 ret
= nouveau_object_del(abi16
->client
, chan
->chan
->handle
, fini
->handle
);
485 return nouveau_abi16_put(abi16
, ret
);
487 /* cleanup extra state if this object was a notifier */
488 list_for_each_entry(ntfy
, &chan
->notifiers
, head
) {
489 if (ntfy
->handle
== fini
->handle
) {
490 nouveau_mm_free(&chan
->heap
, &ntfy
->node
);
491 list_del(&ntfy
->head
);
496 return nouveau_abi16_put(abi16
, 0);