blob: d48c02a365271fff00524dc8f890da1116f0651b [file] [log] [blame]
Ben Skeggs2a259a32012-05-08 10:24:27 +10001/*
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 */
23
Ben Skeggsebb945a2012-07-20 08:17:34 +100024#include <core/object.h>
25#include <core/client.h>
26#include <core/device.h>
27#include <core/class.h>
28#include <core/mm.h>
Ben Skeggs2a259a32012-05-08 10:24:27 +100029
Ben Skeggsebb945a2012-07-20 08:17:34 +100030#include <subdev/fb.h>
31#include <subdev/timer.h>
32#include <subdev/instmem.h>
33
34#include "nouveau_drm.h"
Ben Skeggs2a259a32012-05-08 10:24:27 +100035#include "nouveau_dma.h"
Ben Skeggsebb945a2012-07-20 08:17:34 +100036#include "nouveau_gem.h"
37#include "nouveau_chan.h"
Ben Skeggs2a259a32012-05-08 10:24:27 +100038#include "nouveau_abi16.h"
Ben Skeggsebb945a2012-07-20 08:17:34 +100039
40struct nouveau_abi16 *
41nouveau_abi16_get(struct drm_file *file_priv, struct drm_device *dev)
42{
43 struct nouveau_cli *cli = nouveau_cli(file_priv);
44 mutex_lock(&cli->mutex);
45 if (!cli->abi16) {
46 struct nouveau_abi16 *abi16;
47 cli->abi16 = abi16 = kzalloc(sizeof(*abi16), GFP_KERNEL);
48 if (cli->abi16) {
49 INIT_LIST_HEAD(&abi16->channels);
50 abi16->client = nv_object(cli);
51
52 /* allocate device object targeting client's default
53 * device (ie. the one that belongs to the fd it
54 * opened)
55 */
56 if (nouveau_object_new(abi16->client, NVDRM_CLIENT,
57 NVDRM_DEVICE, 0x0080,
58 &(struct nv_device_class) {
59 .device = ~0ULL,
60 },
61 sizeof(struct nv_device_class),
62 &abi16->device) == 0)
63 return cli->abi16;
64
65 kfree(cli->abi16);
66 cli->abi16 = NULL;
67 }
68
69 mutex_unlock(&cli->mutex);
70 }
71 return cli->abi16;
72}
73
74int
75nouveau_abi16_put(struct nouveau_abi16 *abi16, int ret)
76{
77 struct nouveau_cli *cli = (void *)abi16->client;
78 mutex_unlock(&cli->mutex);
79 return ret;
80}
81
82u16
83nouveau_abi16_swclass(struct nouveau_drm *drm)
84{
85 switch (nv_device(drm->device)->card_type) {
86 case NV_04:
87 return 0x006e;
88 case NV_10:
89 case NV_20:
90 case NV_30:
91 case NV_40:
92 return 0x016e;
93 case NV_50:
94 return 0x506e;
95 case NV_C0:
96 case NV_D0:
97 case NV_E0:
98 return 0x906e;
99 }
100
101 return 0x0000;
102}
103
104static void
105nouveau_abi16_ntfy_fini(struct nouveau_abi16_chan *chan,
106 struct nouveau_abi16_ntfy *ntfy)
107{
108 nouveau_mm_free(&chan->heap, &ntfy->node);
109 list_del(&ntfy->head);
110 kfree(ntfy);
111}
112
113static void
114nouveau_abi16_chan_fini(struct nouveau_abi16 *abi16,
115 struct nouveau_abi16_chan *chan)
116{
117 struct nouveau_abi16_ntfy *ntfy, *temp;
118
119 /* cleanup notifier state */
120 list_for_each_entry_safe(ntfy, temp, &chan->notifiers, head) {
121 nouveau_abi16_ntfy_fini(chan, ntfy);
122 }
123
124 if (chan->ntfy) {
125 nouveau_bo_vma_del(chan->ntfy, &chan->ntfy_vma);
126 drm_gem_object_unreference_unlocked(chan->ntfy->gem);
127 }
128
129 if (chan->heap.block_size)
130 nouveau_mm_fini(&chan->heap);
131
132 /* destroy channel object, all children will be killed too */
133 if (chan->chan) {
134 abi16->handles &= ~(1 << (chan->chan->handle & 0xffff));
135 nouveau_channel_del(&chan->chan);
136 }
137
138 list_del(&chan->head);
139 kfree(chan);
140}
141
142void
143nouveau_abi16_fini(struct nouveau_abi16 *abi16)
144{
145 struct nouveau_cli *cli = (void *)abi16->client;
146 struct nouveau_abi16_chan *chan, *temp;
147
148 /* cleanup channels */
149 list_for_each_entry_safe(chan, temp, &abi16->channels, head) {
150 nouveau_abi16_chan_fini(abi16, chan);
151 }
152
153 /* destroy the device object */
154 nouveau_object_del(abi16->client, NVDRM_CLIENT, NVDRM_DEVICE);
155
156 kfree(cli->abi16);
157 cli->abi16 = NULL;
158}
Ben Skeggs2a259a32012-05-08 10:24:27 +1000159
160int
161nouveau_abi16_ioctl_getparam(ABI16_IOCTL_ARGS)
162{
Ben Skeggsebb945a2012-07-20 08:17:34 +1000163 struct nouveau_drm *drm = nouveau_drm(dev);
164 struct nouveau_device *device = nv_device(drm->device);
165 struct nouveau_timer *ptimer = nouveau_timer(device);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000166 struct drm_nouveau_getparam *getparam = data;
167
168 switch (getparam->param) {
169 case NOUVEAU_GETPARAM_CHIPSET_ID:
Ben Skeggsebb945a2012-07-20 08:17:34 +1000170 getparam->value = device->chipset;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000171 break;
172 case NOUVEAU_GETPARAM_PCI_VENDOR:
173 getparam->value = dev->pci_vendor;
174 break;
175 case NOUVEAU_GETPARAM_PCI_DEVICE:
176 getparam->value = dev->pci_device;
177 break;
178 case NOUVEAU_GETPARAM_BUS_TYPE:
179 if (drm_pci_device_is_agp(dev))
180 getparam->value = 0;
181 else
182 if (!pci_is_pcie(dev->pdev))
183 getparam->value = 1;
184 else
185 getparam->value = 2;
186 break;
187 case NOUVEAU_GETPARAM_FB_SIZE:
Ben Skeggsebb945a2012-07-20 08:17:34 +1000188 getparam->value = drm->gem.vram_available;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000189 break;
190 case NOUVEAU_GETPARAM_AGP_SIZE:
Ben Skeggsebb945a2012-07-20 08:17:34 +1000191 getparam->value = drm->gem.gart_available;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000192 break;
193 case NOUVEAU_GETPARAM_VM_VRAM_BASE:
194 getparam->value = 0; /* deprecated */
195 break;
196 case NOUVEAU_GETPARAM_PTIMER_TIME:
Ben Skeggsebb945a2012-07-20 08:17:34 +1000197 getparam->value = ptimer->read(ptimer);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000198 break;
199 case NOUVEAU_GETPARAM_HAS_BO_USAGE:
200 getparam->value = 1;
201 break;
202 case NOUVEAU_GETPARAM_HAS_PAGEFLIP:
203 getparam->value = 1;
204 break;
205 case NOUVEAU_GETPARAM_GRAPH_UNITS:
206 /* NV40 and NV50 versions are quite different, but register
207 * address is the same. User is supposed to know the card
208 * family anyway... */
Ben Skeggsebb945a2012-07-20 08:17:34 +1000209 if (device->chipset >= 0x40) {
210 getparam->value = nv_rd32(device, 0x001540);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000211 break;
212 }
213 /* FALLTHRU */
214 default:
Ben Skeggsebb945a2012-07-20 08:17:34 +1000215 nv_debug(device, "unknown parameter %lld\n", getparam->param);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000216 return -EINVAL;
217 }
218
219 return 0;
220}
221
222int
223nouveau_abi16_ioctl_setparam(ABI16_IOCTL_ARGS)
224{
225 return -EINVAL;
226}
227
228int
229nouveau_abi16_ioctl_channel_alloc(ABI16_IOCTL_ARGS)
230{
Ben Skeggs2a259a32012-05-08 10:24:27 +1000231 struct drm_nouveau_channel_alloc *init = data;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000232 struct nouveau_cli *cli = nouveau_cli(file_priv);
233 struct nouveau_drm *drm = nouveau_drm(dev);
234 struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
235 struct nouveau_abi16_chan *chan;
236 struct nouveau_client *client;
237 struct nouveau_device *device;
238 struct nouveau_instmem *imem;
239 struct nouveau_fb *pfb;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000240 int ret;
241
Ben Skeggsebb945a2012-07-20 08:17:34 +1000242 if (unlikely(!abi16))
243 return -ENOMEM;
244 client = nv_client(abi16->client);
Ben Skeggsebb945a2012-07-20 08:17:34 +1000245 device = nv_device(abi16->device);
246 imem = nouveau_instmem(device);
247 pfb = nouveau_fb(device);
248
Ben Skeggs49469802012-11-22 13:43:55 +1000249 /* hack to allow channel engine type specification on kepler */
250 if (device->card_type >= NV_E0) {
251 if (init->fb_ctxdma_handle != ~0)
252 init->fb_ctxdma_handle = NVE0_CHANNEL_IND_ENGINE_GR;
253 else
254 init->fb_ctxdma_handle = init->tt_ctxdma_handle;
255
256 /* allow flips to be executed if this is a graphics channel */
257 init->tt_ctxdma_handle = 0;
258 if (init->fb_ctxdma_handle == NVE0_CHANNEL_IND_ENGINE_GR)
259 init->tt_ctxdma_handle = 1;
260 }
261
262 if (init->fb_ctxdma_handle == ~0 || init->tt_ctxdma_handle == ~0)
263 return nouveau_abi16_put(abi16, -EINVAL);
264
Ben Skeggsebb945a2012-07-20 08:17:34 +1000265 /* allocate "abi16 channel" data and make up a handle for it */
266 init->channel = ffsll(~abi16->handles);
267 if (!init->channel--)
268 return nouveau_abi16_put(abi16, -ENOSPC);
269
270 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
271 if (!chan)
272 return nouveau_abi16_put(abi16, -ENOMEM);
273
274 INIT_LIST_HEAD(&chan->notifiers);
275 list_add(&chan->head, &abi16->channels);
276 abi16->handles |= (1 << init->channel);
277
278 /* create channel object and initialise dma and fence management */
279 ret = nouveau_channel_new(drm, cli, NVDRM_DEVICE, NVDRM_CHAN |
280 init->channel, init->fb_ctxdma_handle,
281 init->tt_ctxdma_handle, &chan->chan);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000282 if (ret)
Ben Skeggsebb945a2012-07-20 08:17:34 +1000283 goto done;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000284
Ben Skeggsebb945a2012-07-20 08:17:34 +1000285 if (device->card_type >= NV_50)
286 init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_VRAM |
287 NOUVEAU_GEM_DOMAIN_GART;
288 else
289 if (chan->chan->push.buffer->bo.mem.mem_type == TTM_PL_VRAM)
Ben Skeggs2a259a32012-05-08 10:24:27 +1000290 init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_VRAM;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000291 else
292 init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_GART;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000293
Ben Skeggsebb945a2012-07-20 08:17:34 +1000294 if (device->card_type < NV_C0) {
Ben Skeggs2a259a32012-05-08 10:24:27 +1000295 init->subchan[0].handle = 0x00000000;
296 init->subchan[0].grclass = 0x0000;
297 init->subchan[1].handle = NvSw;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000298 init->subchan[1].grclass = 0x506e;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000299 init->nr_subchan = 2;
300 }
301
302 /* Named memory object area */
Ben Skeggsebb945a2012-07-20 08:17:34 +1000303 ret = nouveau_gem_new(dev, PAGE_SIZE, 0, NOUVEAU_GEM_DOMAIN_GART,
304 0, 0, &chan->ntfy);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000305 if (ret == 0)
Ben Skeggsebb945a2012-07-20 08:17:34 +1000306 ret = nouveau_bo_pin(chan->ntfy, TTM_PL_FLAG_TT);
307 if (ret)
308 goto done;
309
310 if (device->card_type >= NV_50) {
311 ret = nouveau_bo_vma_add(chan->ntfy, client->vm,
312 &chan->ntfy_vma);
313 if (ret)
314 goto done;
315 }
316
317 ret = drm_gem_handle_create(file_priv, chan->ntfy->gem,
318 &init->notifier_handle);
319 if (ret)
320 goto done;
321
322 ret = nouveau_mm_init(&chan->heap, 0, PAGE_SIZE, 1);
323done:
324 if (ret)
325 nouveau_abi16_chan_fini(abi16, chan);
326 return nouveau_abi16_put(abi16, ret);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000327}
328
Ben Skeggsebb945a2012-07-20 08:17:34 +1000329
Ben Skeggs2a259a32012-05-08 10:24:27 +1000330int
331nouveau_abi16_ioctl_channel_free(ABI16_IOCTL_ARGS)
332{
333 struct drm_nouveau_channel_free *req = data;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000334 struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
335 struct nouveau_abi16_chan *chan;
336 int ret = -ENOENT;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000337
Ben Skeggsebb945a2012-07-20 08:17:34 +1000338 if (unlikely(!abi16))
339 return -ENOMEM;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000340
Ben Skeggsebb945a2012-07-20 08:17:34 +1000341 list_for_each_entry(chan, &abi16->channels, head) {
342 if (chan->chan->handle == (NVDRM_CHAN | req->channel)) {
343 nouveau_abi16_chan_fini(abi16, chan);
344 return nouveau_abi16_put(abi16, 0);
345 }
346 }
347
348 return nouveau_abi16_put(abi16, ret);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000349}
350
351int
352nouveau_abi16_ioctl_grobj_alloc(ABI16_IOCTL_ARGS)
353{
354 struct drm_nouveau_grobj_alloc *init = data;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000355 struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
356 struct nouveau_drm *drm = nouveau_drm(dev);
357 struct nouveau_object *object;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000358 int ret;
359
Ben Skeggsebb945a2012-07-20 08:17:34 +1000360 if (unlikely(!abi16))
361 return -ENOMEM;
362
Ben Skeggs2a259a32012-05-08 10:24:27 +1000363 if (init->handle == ~0)
Ben Skeggsebb945a2012-07-20 08:17:34 +1000364 return nouveau_abi16_put(abi16, -EINVAL);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000365
366 /* compatibility with userspace that assumes 506e for all chipsets */
367 if (init->class == 0x506e) {
Ben Skeggsebb945a2012-07-20 08:17:34 +1000368 init->class = nouveau_abi16_swclass(drm);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000369 if (init->class == 0x906e)
Ben Skeggsebb945a2012-07-20 08:17:34 +1000370 return nouveau_abi16_put(abi16, 0);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000371 }
372
Ben Skeggsebb945a2012-07-20 08:17:34 +1000373 ret = nouveau_object_new(abi16->client, NVDRM_CHAN | init->channel,
374 init->handle, init->class, NULL, 0, &object);
375 return nouveau_abi16_put(abi16, ret);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000376}
377
378int
379nouveau_abi16_ioctl_notifierobj_alloc(ABI16_IOCTL_ARGS)
380{
Ben Skeggsebb945a2012-07-20 08:17:34 +1000381 struct drm_nouveau_notifierobj_alloc *info = data;
382 struct nouveau_drm *drm = nouveau_drm(dev);
383 struct nouveau_device *device = nv_device(drm->device);
384 struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
385 struct nouveau_abi16_chan *chan, *temp;
386 struct nouveau_abi16_ntfy *ntfy;
387 struct nouveau_object *object;
Ben Skeggsf7569442012-10-08 14:29:16 +1000388 struct nv_dma_class args = {};
Ben Skeggs2a259a32012-05-08 10:24:27 +1000389 int ret;
390
Ben Skeggsebb945a2012-07-20 08:17:34 +1000391 if (unlikely(!abi16))
392 return -ENOMEM;
393
Ben Skeggs2a259a32012-05-08 10:24:27 +1000394 /* completely unnecessary for these chipsets... */
Ben Skeggsebb945a2012-07-20 08:17:34 +1000395 if (unlikely(nv_device(abi16->device)->card_type >= NV_C0))
396 return nouveau_abi16_put(abi16, -EINVAL);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000397
Ben Skeggsebb945a2012-07-20 08:17:34 +1000398 list_for_each_entry_safe(chan, temp, &abi16->channels, head) {
399 if (chan->chan->handle == (NVDRM_CHAN | info->channel))
400 break;
401 chan = NULL;
402 }
Ben Skeggs2a259a32012-05-08 10:24:27 +1000403
Ben Skeggsebb945a2012-07-20 08:17:34 +1000404 if (!chan)
405 return nouveau_abi16_put(abi16, -ENOENT);
406
407 ntfy = kzalloc(sizeof(*ntfy), GFP_KERNEL);
408 if (!ntfy)
409 return nouveau_abi16_put(abi16, -ENOMEM);
410
411 list_add(&ntfy->head, &chan->notifiers);
412 ntfy->handle = info->handle;
413
414 ret = nouveau_mm_head(&chan->heap, 1, info->size, info->size, 1,
415 &ntfy->node);
416 if (ret)
417 goto done;
418
419 args.start = ntfy->node->offset;
420 args.limit = ntfy->node->offset + ntfy->node->length - 1;
421 if (device->card_type >= NV_50) {
422 args.flags = NV_DMA_TARGET_VM | NV_DMA_ACCESS_VM;
423 args.start += chan->ntfy_vma.offset;
424 args.limit += chan->ntfy_vma.offset;
425 } else
426 if (drm->agp.stat == ENABLED) {
427 args.flags = NV_DMA_TARGET_AGP | NV_DMA_ACCESS_RDWR;
428 args.start += drm->agp.base + chan->ntfy->bo.offset;
429 args.limit += drm->agp.base + chan->ntfy->bo.offset;
430 } else {
431 args.flags = NV_DMA_TARGET_VM | NV_DMA_ACCESS_RDWR;
432 args.start += chan->ntfy->bo.offset;
433 args.limit += chan->ntfy->bo.offset;
434 }
435
436 ret = nouveau_object_new(abi16->client, chan->chan->handle,
437 ntfy->handle, 0x003d, &args,
438 sizeof(args), &object);
439 if (ret)
440 goto done;
441
442done:
443 if (ret)
444 nouveau_abi16_ntfy_fini(chan, ntfy);
445 return nouveau_abi16_put(abi16, ret);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000446}
447
448int
449nouveau_abi16_ioctl_gpuobj_free(ABI16_IOCTL_ARGS)
450{
Ben Skeggsebb945a2012-07-20 08:17:34 +1000451 struct drm_nouveau_gpuobj_free *fini = data;
452 struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
453 struct nouveau_abi16_chan *chan, *temp;
454 struct nouveau_abi16_ntfy *ntfy;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000455 int ret;
456
Ben Skeggsebb945a2012-07-20 08:17:34 +1000457 if (unlikely(!abi16))
458 return -ENOMEM;
Ben Skeggs2a259a32012-05-08 10:24:27 +1000459
Ben Skeggsebb945a2012-07-20 08:17:34 +1000460 list_for_each_entry_safe(chan, temp, &abi16->channels, head) {
461 if (chan->chan->handle == (NVDRM_CHAN | fini->channel))
462 break;
463 chan = NULL;
464 }
Ben Skeggs2a259a32012-05-08 10:24:27 +1000465
Ben Skeggsebb945a2012-07-20 08:17:34 +1000466 if (!chan)
467 return nouveau_abi16_put(abi16, -ENOENT);
468
469 /* synchronize with the user channel and destroy the gpu object */
470 nouveau_channel_idle(chan->chan);
471
472 ret = nouveau_object_del(abi16->client, chan->chan->handle, fini->handle);
473 if (ret)
474 return nouveau_abi16_put(abi16, ret);
475
476 /* cleanup extra state if this object was a notifier */
477 list_for_each_entry(ntfy, &chan->notifiers, head) {
478 if (ntfy->handle == fini->handle) {
479 nouveau_mm_free(&chan->heap, &ntfy->node);
480 list_del(&ntfy->head);
481 break;
482 }
483 }
484
485 return nouveau_abi16_put(abi16, 0);
Ben Skeggs2a259a32012-05-08 10:24:27 +1000486}