nouveau_abi16.c 14.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright 2012 Red Hat Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 */

24 25 26
#include <nvif/client.h>
#include <nvif/driver.h>
#include <nvif/ioctl.h>
27
#include <nvif/class.h>
28

29
#include "nouveau_drm.h"
30
#include "nouveau_dma.h"
31 32
#include "nouveau_gem.h"
#include "nouveau_chan.h"
33
#include "nouveau_abi16.h"
34 35 36 37 38 39 40 41 42 43

struct nouveau_abi16 *
nouveau_abi16_get(struct drm_file *file_priv, struct drm_device *dev)
{
	struct nouveau_cli *cli = nouveau_cli(file_priv);
	mutex_lock(&cli->mutex);
	if (!cli->abi16) {
		struct nouveau_abi16 *abi16;
		cli->abi16 = abi16 = kzalloc(sizeof(*abi16), GFP_KERNEL);
		if (cli->abi16) {
44 45 46 47
			struct nv_device_v0 args = {
				.device = ~0ULL,
			};

48 49 50 51 52 53
			INIT_LIST_HEAD(&abi16->channels);

			/* allocate device object targeting client's default
			 * device (ie. the one that belongs to the fd it
			 * opened)
			 */
54
			if (nvif_device_init(&cli->base.base, NULL,
55
					     NOUVEAU_ABI16_DEVICE, NV_DEVICE,
56
					     &args, sizeof(args),
57
					     &abi16->device) == 0)
58 59 60 61 62 63 64 65 66 67 68 69 70 71
				return cli->abi16;

			kfree(cli->abi16);
			cli->abi16 = NULL;
		}

		mutex_unlock(&cli->mutex);
	}
	return cli->abi16;
}

int
nouveau_abi16_put(struct nouveau_abi16 *abi16, int ret)
{
72
	struct nouveau_cli *cli = (void *)nvif_client(&abi16->device.base);
73 74 75 76 77 78 79
	mutex_unlock(&cli->mutex);
	return ret;
}

u16
nouveau_abi16_swclass(struct nouveau_drm *drm)
{
80 81
	switch (drm->device.info.family) {
	case NV_DEVICE_INFO_V0_TNT:
82
		return 0x006e;
83 84 85 86
	case NV_DEVICE_INFO_V0_CELSIUS:
	case NV_DEVICE_INFO_V0_KELVIN:
	case NV_DEVICE_INFO_V0_RANKINE:
	case NV_DEVICE_INFO_V0_CURIE:
87
		return 0x016e;
88
	case NV_DEVICE_INFO_V0_TESLA:
89
		return 0x506e;
90 91 92
	case NV_DEVICE_INFO_V0_FERMI:
	case NV_DEVICE_INFO_V0_KEPLER:
	case NV_DEVICE_INFO_V0_MAXWELL:
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
		return 0x906e;
	}

	return 0x0000;
}

static void
nouveau_abi16_ntfy_fini(struct nouveau_abi16_chan *chan,
			struct nouveau_abi16_ntfy *ntfy)
{
	nouveau_mm_free(&chan->heap, &ntfy->node);
	list_del(&ntfy->head);
	kfree(ntfy);
}

static void
nouveau_abi16_chan_fini(struct nouveau_abi16 *abi16,
			struct nouveau_abi16_chan *chan)
{
	struct nouveau_abi16_ntfy *ntfy, *temp;

114 115 116 117 118
	/* wait for all activity to stop before releasing notify object, which
	 * may be still in use */
	if (chan->chan && chan->ntfy)
		nouveau_channel_idle(chan->chan);

119 120 121 122 123 124 125
	/* cleanup notifier state */
	list_for_each_entry_safe(ntfy, temp, &chan->notifiers, head) {
		nouveau_abi16_ntfy_fini(chan, ntfy);
	}

	if (chan->ntfy) {
		nouveau_bo_vma_del(chan->ntfy, &chan->ntfy_vma);
126
		nouveau_bo_unpin(chan->ntfy);
127
		drm_gem_object_unreference_unlocked(&chan->ntfy->gem);
128 129 130 131 132 133 134
	}

	if (chan->heap.block_size)
		nouveau_mm_fini(&chan->heap);

	/* destroy channel object, all children will be killed too */
	if (chan->chan) {
135
		abi16->handles &= ~(1ULL << (chan->chan->object->handle & 0xffff));
136 137 138 139 140 141 142 143 144 145
		nouveau_channel_del(&chan->chan);
	}

	list_del(&chan->head);
	kfree(chan);
}

void
nouveau_abi16_fini(struct nouveau_abi16 *abi16)
{
146
	struct nouveau_cli *cli = (void *)nvif_client(&abi16->device.base);
147 148 149 150 151 152 153 154
	struct nouveau_abi16_chan *chan, *temp;

	/* cleanup channels */
	list_for_each_entry_safe(chan, temp, &abi16->channels, head) {
		nouveau_abi16_chan_fini(abi16, chan);
	}

	/* destroy the device object */
155
	nvif_device_fini(&abi16->device);
156 157 158 159

	kfree(cli->abi16);
	cli->abi16 = NULL;
}
160 161 162 163

int
nouveau_abi16_ioctl_getparam(ABI16_IOCTL_ARGS)
{
164
	struct nouveau_cli *cli = nouveau_cli(file_priv);
165
	struct nouveau_drm *drm = nouveau_drm(dev);
166 167 168
	struct nvif_device *device = &drm->device;
	struct nouveau_timer *ptimer = nvkm_timer(device);
	struct nouveau_graph *graph = nvkm_gr(device);
169 170 171 172
	struct drm_nouveau_getparam *getparam = data;

	switch (getparam->param) {
	case NOUVEAU_GETPARAM_CHIPSET_ID:
173
		getparam->value = device->info.chipset;
174 175
		break;
	case NOUVEAU_GETPARAM_PCI_VENDOR:
176
		if (nv_device_is_pci(nvkm_device(device)))
A
Alexandre Courbot 已提交
177 178 179
			getparam->value = dev->pdev->vendor;
		else
			getparam->value = 0;
180 181
		break;
	case NOUVEAU_GETPARAM_PCI_DEVICE:
182
		if (nv_device_is_pci(nvkm_device(device)))
A
Alexandre Courbot 已提交
183 184 185
			getparam->value = dev->pdev->device;
		else
			getparam->value = 0;
186 187
		break;
	case NOUVEAU_GETPARAM_BUS_TYPE:
188
		if (!nv_device_is_pci(nvkm_device(device)))
A
Alexandre Courbot 已提交
189 190
			getparam->value = 3;
		else
191 192 193 194 195 196 197 198 199
		if (drm_pci_device_is_agp(dev))
			getparam->value = 0;
		else
		if (!pci_is_pcie(dev->pdev))
			getparam->value = 1;
		else
			getparam->value = 2;
		break;
	case NOUVEAU_GETPARAM_FB_SIZE:
200
		getparam->value = drm->gem.vram_available;
201 202
		break;
	case NOUVEAU_GETPARAM_AGP_SIZE:
203
		getparam->value = drm->gem.gart_available;
204 205 206 207 208
		break;
	case NOUVEAU_GETPARAM_VM_VRAM_BASE:
		getparam->value = 0; /* deprecated */
		break;
	case NOUVEAU_GETPARAM_PTIMER_TIME:
209
		getparam->value = ptimer->read(ptimer);
210 211 212 213 214 215 216 217
		break;
	case NOUVEAU_GETPARAM_HAS_BO_USAGE:
		getparam->value = 1;
		break;
	case NOUVEAU_GETPARAM_HAS_PAGEFLIP:
		getparam->value = 1;
		break;
	case NOUVEAU_GETPARAM_GRAPH_UNITS:
218 219
		getparam->value = graph->units ? graph->units(graph) : 0;
		break;
220
	default:
221
		NV_PRINTK(debug, cli, "unknown parameter %lld\n", getparam->param);
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
		return -EINVAL;
	}

	return 0;
}

int
nouveau_abi16_ioctl_setparam(ABI16_IOCTL_ARGS)
{
	return -EINVAL;
}

int
nouveau_abi16_ioctl_channel_alloc(ABI16_IOCTL_ARGS)
{
	struct drm_nouveau_channel_alloc *init = data;
238 239 240 241
	struct nouveau_cli *cli = nouveau_cli(file_priv);
	struct nouveau_drm *drm = nouveau_drm(dev);
	struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
	struct nouveau_abi16_chan *chan;
242
	struct nvif_device *device;
243 244
	int ret;

245 246
	if (unlikely(!abi16))
		return -ENOMEM;
247 248 249 250

	if (!drm->channel)
		return nouveau_abi16_put(abi16, -ENODEV);

251
	device = &abi16->device;
252

253
	/* hack to allow channel engine type specification on kepler */
254
	if (device->info.family >= NV_DEVICE_INFO_V0_KEPLER) {
255
		if (init->fb_ctxdma_handle != ~0)
256
			init->fb_ctxdma_handle = KEPLER_CHANNEL_GPFIFO_A_V0_ENGINE_GR;
257 258 259 260 261
		else
			init->fb_ctxdma_handle = init->tt_ctxdma_handle;

		/* allow flips to be executed if this is a graphics channel */
		init->tt_ctxdma_handle = 0;
262
		if (init->fb_ctxdma_handle == KEPLER_CHANNEL_GPFIFO_A_V0_ENGINE_GR)
263 264 265 266 267 268
			init->tt_ctxdma_handle = 1;
	}

	if (init->fb_ctxdma_handle == ~0 || init->tt_ctxdma_handle == ~0)
		return nouveau_abi16_put(abi16, -EINVAL);

269
	/* allocate "abi16 channel" data and make up a handle for it */
270 271
	init->channel = __ffs64(~abi16->handles);
	if (~abi16->handles == 0)
272 273 274 275 276 277 278 279
		return nouveau_abi16_put(abi16, -ENOSPC);

	chan = kzalloc(sizeof(*chan), GFP_KERNEL);
	if (!chan)
		return nouveau_abi16_put(abi16, -ENOMEM);

	INIT_LIST_HEAD(&chan->notifiers);
	list_add(&chan->head, &abi16->channels);
280
	abi16->handles |= (1ULL << init->channel);
281

282
	/* create channel object and initialise dma and fence management */
283 284
	ret = nouveau_channel_new(drm, device,
				  NOUVEAU_ABI16_CHAN(init->channel),
285
				  init->fb_ctxdma_handle,
286
				  init->tt_ctxdma_handle, &chan->chan);
287
	if (ret)
288 289
		goto done;

290
	if (device->info.family >= NV_DEVICE_INFO_V0_TESLA)
291 292 293 294
		init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_VRAM |
					NOUVEAU_GEM_DOMAIN_GART;
	else
	if (chan->chan->push.buffer->bo.mem.mem_type == TTM_PL_VRAM)
295
		init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_VRAM;
296 297
	else
		init->pushbuf_domains = NOUVEAU_GEM_DOMAIN_GART;
298

299
	if (device->info.family < NV_DEVICE_INFO_V0_CELSIUS) {
300 301
		init->subchan[0].handle = 0x00000000;
		init->subchan[0].grclass = 0x0000;
302
		init->subchan[1].handle = chan->chan->nvsw.handle;
303
		init->subchan[1].grclass = 0x506e;
304 305 306 307
		init->nr_subchan = 2;
	}

	/* Named memory object area */
308 309 310 311 312 313 314
	ret = nouveau_gem_new(dev, PAGE_SIZE, 0, NOUVEAU_GEM_DOMAIN_GART,
			      0, 0, &chan->ntfy);
	if (ret == 0)
		ret = nouveau_bo_pin(chan->ntfy, TTM_PL_FLAG_TT);
	if (ret)
		goto done;

315
	if (device->info.family >= NV_DEVICE_INFO_V0_TESLA) {
316
		ret = nouveau_bo_vma_add(chan->ntfy, cli->vm,
317 318 319 320 321
					&chan->ntfy_vma);
		if (ret)
			goto done;
	}

322
	ret = drm_gem_handle_create(file_priv, &chan->ntfy->gem,
323
				    &init->notifier_handle);
324 325
	if (ret)
		goto done;
326

327 328 329 330 331
	ret = nouveau_mm_init(&chan->heap, 0, PAGE_SIZE, 1);
done:
	if (ret)
		nouveau_abi16_chan_fini(abi16, chan);
	return nouveau_abi16_put(abi16, ret);
332 333
}

334 335 336 337 338 339 340 341 342 343 344 345
static struct nouveau_abi16_chan *
nouveau_abi16_chan(struct nouveau_abi16 *abi16, int channel)
{
	struct nouveau_abi16_chan *chan;

	list_for_each_entry(chan, &abi16->channels, head) {
		if (chan->chan->object->handle == NOUVEAU_ABI16_CHAN(channel))
			return chan;
	}

	return NULL;
}
346

347 348 349 350
int
nouveau_abi16_ioctl_channel_free(ABI16_IOCTL_ARGS)
{
	struct drm_nouveau_channel_free *req = data;
351 352
	struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
	struct nouveau_abi16_chan *chan;
353

354 355
	if (unlikely(!abi16))
		return -ENOMEM;
356

357 358 359 360 361
	chan = nouveau_abi16_chan(abi16, req->channel);
	if (!chan)
		return nouveau_abi16_put(abi16, -ENOENT);
	nouveau_abi16_chan_fini(abi16, chan);
	return nouveau_abi16_put(abi16, 0);
362 363 364 365 366 367
}

int
nouveau_abi16_ioctl_grobj_alloc(ABI16_IOCTL_ARGS)
{
	struct drm_nouveau_grobj_alloc *init = data;
368 369 370 371 372 373 374 375 376 377 378 379 380 381
	struct {
		struct nvif_ioctl_v0 ioctl;
		struct nvif_ioctl_new_v0 new;
	} args = {
		.ioctl.owner = NVIF_IOCTL_V0_OWNER_ANY,
		.ioctl.type = NVIF_IOCTL_V0_NEW,
		.ioctl.path_nr = 3,
		.ioctl.path[2] = NOUVEAU_ABI16_CLIENT,
		.ioctl.path[1] = NOUVEAU_ABI16_DEVICE,
		.ioctl.path[0] = NOUVEAU_ABI16_CHAN(init->channel),
		.new.route = NVDRM_OBJECT_ABI16,
		.new.handle = init->handle,
		.new.oclass = init->class,
	};
382 383
	struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
	struct nouveau_drm *drm = nouveau_drm(dev);
384
	struct nvif_client *client;
385 386
	int ret;

387 388 389
	if (unlikely(!abi16))
		return -ENOMEM;

390
	if (init->handle == ~0)
391
		return nouveau_abi16_put(abi16, -EINVAL);
392
	client = nvif_client(nvif_object(&abi16->device));
393 394 395

	/* compatibility with userspace that assumes 506e for all chipsets */
	if (init->class == 0x506e) {
396
		init->class = nouveau_abi16_swclass(drm);
397
		if (init->class == 0x906e)
398
			return nouveau_abi16_put(abi16, 0);
399 400
	}

401
	ret = nvif_client_ioctl(client, &args, sizeof(args));
402
	return nouveau_abi16_put(abi16, ret);
403 404 405 406 407
}

int
nouveau_abi16_ioctl_notifierobj_alloc(ABI16_IOCTL_ARGS)
{
408
	struct drm_nouveau_notifierobj_alloc *info = data;
409 410 411
	struct {
		struct nvif_ioctl_v0 ioctl;
		struct nvif_ioctl_new_v0 new;
412
		struct nv_dma_v0 ctxdma;
413 414 415 416 417 418 419 420 421
	} args = {
		.ioctl.owner = NVIF_IOCTL_V0_OWNER_ANY,
		.ioctl.type = NVIF_IOCTL_V0_NEW,
		.ioctl.path_nr = 3,
		.ioctl.path[2] = NOUVEAU_ABI16_CLIENT,
		.ioctl.path[1] = NOUVEAU_ABI16_DEVICE,
		.ioctl.path[0] = NOUVEAU_ABI16_CHAN(info->channel),
		.new.route = NVDRM_OBJECT_ABI16,
		.new.handle = info->handle,
422
		.new.oclass = NV_DMA_IN_MEMORY,
423
	};
424 425
	struct nouveau_drm *drm = nouveau_drm(dev);
	struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
426
	struct nouveau_abi16_chan *chan;
427
	struct nouveau_abi16_ntfy *ntfy;
428
	struct nvif_device *device = &abi16->device;
429
	struct nvif_client *client;
430 431
	int ret;

432 433 434
	if (unlikely(!abi16))
		return -ENOMEM;

435
	/* completely unnecessary for these chipsets... */
436
	if (unlikely(device->info.family >= NV_DEVICE_INFO_V0_FERMI))
437
		return nouveau_abi16_put(abi16, -EINVAL);
438
	client = nvif_client(nvif_object(&abi16->device));
439

440
	chan = nouveau_abi16_chan(abi16, info->channel);
441 442 443 444 445 446 447 448 449 450
	if (!chan)
		return nouveau_abi16_put(abi16, -ENOENT);

	ntfy = kzalloc(sizeof(*ntfy), GFP_KERNEL);
	if (!ntfy)
		return nouveau_abi16_put(abi16, -ENOMEM);

	list_add(&ntfy->head, &chan->notifiers);
	ntfy->handle = info->handle;

451
	ret = nouveau_mm_head(&chan->heap, 0, 1, info->size, info->size, 1,
452 453 454 455
			      &ntfy->node);
	if (ret)
		goto done;

456 457
	args.ctxdma.start = ntfy->node->offset;
	args.ctxdma.limit = ntfy->node->offset + ntfy->node->length - 1;
458
	if (device->info.family >= NV_DEVICE_INFO_V0_TESLA) {
459 460
		args.ctxdma.target = NV_DMA_V0_TARGET_VM;
		args.ctxdma.access = NV_DMA_V0_ACCESS_VM;
461 462
		args.ctxdma.start += chan->ntfy_vma.offset;
		args.ctxdma.limit += chan->ntfy_vma.offset;
463 464
	} else
	if (drm->agp.stat == ENABLED) {
465 466
		args.ctxdma.target = NV_DMA_V0_TARGET_AGP;
		args.ctxdma.access = NV_DMA_V0_ACCESS_RDWR;
467 468 469
		args.ctxdma.start += drm->agp.base + chan->ntfy->bo.offset;
		args.ctxdma.limit += drm->agp.base + chan->ntfy->bo.offset;
		client->super = true;
470
	} else {
471 472
		args.ctxdma.target = NV_DMA_V0_TARGET_VM;
		args.ctxdma.access = NV_DMA_V0_ACCESS_RDWR;
473 474
		args.ctxdma.start += chan->ntfy->bo.offset;
		args.ctxdma.limit += chan->ntfy->bo.offset;
475 476
	}

477 478
	ret = nvif_client_ioctl(client, &args, sizeof(args));
	client->super = false;
479 480 481
	if (ret)
		goto done;

482 483
	info->offset = ntfy->node->offset;

484 485 486 487
done:
	if (ret)
		nouveau_abi16_ntfy_fini(chan, ntfy);
	return nouveau_abi16_put(abi16, ret);
488 489 490 491 492
}

int
nouveau_abi16_ioctl_gpuobj_free(ABI16_IOCTL_ARGS)
{
493
	struct drm_nouveau_gpuobj_free *fini = data;
494 495 496 497 498 499 500 501 502 503 504 505
	struct {
		struct nvif_ioctl_v0 ioctl;
		struct nvif_ioctl_del del;
	} args = {
		.ioctl.owner = NVDRM_OBJECT_ABI16,
		.ioctl.type = NVIF_IOCTL_V0_DEL,
		.ioctl.path_nr = 4,
		.ioctl.path[3] = NOUVEAU_ABI16_CLIENT,
		.ioctl.path[2] = NOUVEAU_ABI16_DEVICE,
		.ioctl.path[1] = NOUVEAU_ABI16_CHAN(fini->channel),
		.ioctl.path[0] = fini->handle,
	};
506
	struct nouveau_abi16 *abi16 = nouveau_abi16_get(file_priv, dev);
507
	struct nouveau_abi16_chan *chan;
508
	struct nouveau_abi16_ntfy *ntfy;
509
	struct nvif_client *client;
510 511
	int ret;

512 513 514
	if (unlikely(!abi16))
		return -ENOMEM;

515
	chan = nouveau_abi16_chan(abi16, fini->channel);
516 517
	if (!chan)
		return nouveau_abi16_put(abi16, -ENOENT);
518
	client = nvif_client(nvif_object(&abi16->device));
519

520 521
	/* synchronize with the user channel and destroy the gpu object */
	nouveau_channel_idle(chan->chan);
522

523
	ret = nvif_client_ioctl(client, &args, sizeof(args));
524 525 526 527 528 529 530 531 532 533 534 535 536
	if (ret)
		return nouveau_abi16_put(abi16, ret);

	/* cleanup extra state if this object was a notifier */
	list_for_each_entry(ntfy, &chan->notifiers, head) {
		if (ntfy->handle == fini->handle) {
			nouveau_mm_free(&chan->heap, &ntfy->node);
			list_del(&ntfy->head);
			break;
		}
	}

	return nouveau_abi16_put(abi16, 0);
537
}