vgem_drv.c 11.6 KB
Newer Older
Z
Zach Reizner 已提交
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 26 27 28 29 30 31 32
/*
 * Copyright 2011 Red Hat, Inc.
 * Copyright © 2014 The Chromium OS Authors
 *
 * 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
 * on the rights to use, copy, modify, merge, publish, distribute, sub
 * license, and/or sell copies of the Software, and to permit persons to whom
 * them Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) 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 MERCHANTIBILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS 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.
 *
 * Authors:
 *	Adam Jackson <ajax@redhat.com>
 *	Ben Widawsky <ben@bwidawsk.net>
 */

/**
 * This is vgem, a (non-hardware-backed) GEM service.  This is used by Mesa's
 * software renderer and the X server for efficient buffer sharing.
 */

S
Sam Ravnborg 已提交
33
#include <linux/dma-buf.h>
Z
Zach Reizner 已提交
34
#include <linux/module.h>
S
Sam Ravnborg 已提交
35
#include <linux/platform_device.h>
Z
Zach Reizner 已提交
36
#include <linux/shmem_fs.h>
S
Sam Ravnborg 已提交
37 38 39 40 41
#include <linux/vmalloc.h>

#include <drm/drm_drv.h>
#include <drm/drm_file.h>
#include <drm/drm_ioctl.h>
42
#include <drm/drm_managed.h>
S
Sam Ravnborg 已提交
43 44
#include <drm/drm_prime.h>

Z
Zach Reizner 已提交
45 46 47 48 49 50 51 52
#include "vgem_drv.h"

#define DRIVER_NAME	"vgem"
#define DRIVER_DESC	"Virtual GEM provider"
#define DRIVER_DATE	"20120112"
#define DRIVER_MAJOR	1
#define DRIVER_MINOR	0

53 54 55 56
static struct vgem_device {
	struct drm_device drm;
	struct platform_device *platform;
} *vgem_device;
57

Z
Zach Reizner 已提交
58 59 60 61
static void vgem_gem_free_object(struct drm_gem_object *obj)
{
	struct drm_vgem_gem_object *vgem_obj = to_vgem_bo(obj);

M
Michal Hocko 已提交
62
	kvfree(vgem_obj->pages);
63
	mutex_destroy(&vgem_obj->pages_lock);
64 65 66 67

	if (obj->import_attach)
		drm_prime_gem_destroy(obj, vgem_obj->table);

Z
Zach Reizner 已提交
68 69 70 71
	drm_gem_object_release(obj);
	kfree(vgem_obj);
}

72
static vm_fault_t vgem_gem_fault(struct vm_fault *vmf)
Z
Zach Reizner 已提交
73
{
74
	struct vm_area_struct *vma = vmf->vma;
Z
Zach Reizner 已提交
75 76
	struct drm_vgem_gem_object *obj = vma->vm_private_data;
	/* We don't use vmf->pgoff since that has the fake offset */
77
	unsigned long vaddr = vmf->address;
78
	vm_fault_t ret = VM_FAULT_SIGBUS;
79 80 81 82 83 84
	loff_t num_pages;
	pgoff_t page_offset;
	page_offset = (vaddr - vma->vm_start) >> PAGE_SHIFT;

	num_pages = DIV_ROUND_UP(obj->base.size, PAGE_SIZE);

85
	if (page_offset >= num_pages)
86 87
		return VM_FAULT_SIGBUS;

88
	mutex_lock(&obj->pages_lock);
89 90 91 92
	if (obj->pages) {
		get_page(obj->pages[page_offset]);
		vmf->page = obj->pages[page_offset];
		ret = 0;
93 94 95
	}
	mutex_unlock(&obj->pages_lock);
	if (ret) {
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
		struct page *page;

		page = shmem_read_mapping_page(
					file_inode(obj->base.filp)->i_mapping,
					page_offset);
		if (!IS_ERR(page)) {
			vmf->page = page;
			ret = 0;
		} else switch (PTR_ERR(page)) {
			case -ENOSPC:
			case -ENOMEM:
				ret = VM_FAULT_OOM;
				break;
			case -EBUSY:
				ret = VM_FAULT_RETRY;
				break;
			case -EFAULT:
			case -EINVAL:
				ret = VM_FAULT_SIGBUS;
				break;
			default:
				WARN_ON(PTR_ERR(page));
				ret = VM_FAULT_SIGBUS;
				break;
		}

Z
Zach Reizner 已提交
122
	}
123
	return ret;
Z
Zach Reizner 已提交
124 125
}

126
static const struct vm_operations_struct vgem_gem_vm_ops = {
Z
Zach Reizner 已提交
127 128 129 130 131
	.fault = vgem_gem_fault,
	.open = drm_gem_vm_open,
	.close = drm_gem_vm_close,
};

132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
static int vgem_open(struct drm_device *dev, struct drm_file *file)
{
	struct vgem_file *vfile;
	int ret;

	vfile = kzalloc(sizeof(*vfile), GFP_KERNEL);
	if (!vfile)
		return -ENOMEM;

	file->driver_priv = vfile;

	ret = vgem_fence_open(vfile);
	if (ret) {
		kfree(vfile);
		return ret;
	}

	return 0;
}

D
Daniel Vetter 已提交
152
static void vgem_postclose(struct drm_device *dev, struct drm_file *file)
153 154 155 156 157 158 159
{
	struct vgem_file *vfile = file->driver_priv;

	vgem_fence_close(vfile);
	kfree(vfile);
}

160 161
static struct drm_vgem_gem_object *__vgem_gem_create(struct drm_device *dev,
						unsigned long size)
Z
Zach Reizner 已提交
162 163
{
	struct drm_vgem_gem_object *obj;
C
Chris Wilson 已提交
164
	int ret;
Z
Zach Reizner 已提交
165 166 167 168 169

	obj = kzalloc(sizeof(*obj), GFP_KERNEL);
	if (!obj)
		return ERR_PTR(-ENOMEM);

C
Chris Wilson 已提交
170
	ret = drm_gem_object_init(dev, &obj->base, roundup(size, PAGE_SIZE));
171 172 173 174 175
	if (ret) {
		kfree(obj);
		return ERR_PTR(ret);
	}

176 177
	mutex_init(&obj->pages_lock);

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
	return obj;
}

static void __vgem_gem_destroy(struct drm_vgem_gem_object *obj)
{
	drm_gem_object_release(&obj->base);
	kfree(obj);
}

static struct drm_gem_object *vgem_gem_create(struct drm_device *dev,
					      struct drm_file *file,
					      unsigned int *handle,
					      unsigned long size)
{
	struct drm_vgem_gem_object *obj;
	int ret;

	obj = __vgem_gem_create(dev, size);
	if (IS_ERR(obj))
		return ERR_CAST(obj);
Z
Zach Reizner 已提交
198

C
Chris Wilson 已提交
199
	ret = drm_gem_handle_create(file, &obj->base, handle);
200
	if (ret) {
201
		drm_gem_object_put(&obj->base);
202
		return ERR_PTR(ret);
203
	}
Z
Zach Reizner 已提交
204

C
Chris Wilson 已提交
205
	return &obj->base;
Z
Zach Reizner 已提交
206 207 208 209 210 211
}

static int vgem_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
				struct drm_mode_create_dumb *args)
{
	struct drm_gem_object *gem_object;
C
Chris Wilson 已提交
212
	u64 pitch, size;
Z
Zach Reizner 已提交
213

C
Chris Wilson 已提交
214
	pitch = args->width * DIV_ROUND_UP(args->bpp, 8);
Z
Zach Reizner 已提交
215 216 217 218 219
	size = args->height * pitch;
	if (size == 0)
		return -EINVAL;

	gem_object = vgem_gem_create(dev, file, &args->handle, size);
C
Chris Wilson 已提交
220
	if (IS_ERR(gem_object))
Z
Zach Reizner 已提交
221 222 223 224 225
		return PTR_ERR(gem_object);

	args->size = gem_object->size;
	args->pitch = pitch;

226
	drm_gem_object_put(gem_object);
227 228

	DRM_DEBUG("Created object of size %llu\n", args->size);
Z
Zach Reizner 已提交
229 230 231 232 233

	return 0;
}

static struct drm_ioctl_desc vgem_ioctls[] = {
234 235
	DRM_IOCTL_DEF_DRV(VGEM_FENCE_ATTACH, vgem_fence_attach_ioctl, DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(VGEM_FENCE_SIGNAL, vgem_fence_signal_ioctl, DRM_RENDER_ALLOW),
Z
Zach Reizner 已提交
236 237
};

C
Chris Wilson 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
static int vgem_mmap(struct file *filp, struct vm_area_struct *vma)
{
	unsigned long flags = vma->vm_flags;
	int ret;

	ret = drm_gem_mmap(filp, vma);
	if (ret)
		return ret;

	/* Keep the WC mmaping set by drm_gem_mmap() but our pages
	 * are ordinary and not special.
	 */
	vma->vm_flags = flags | VM_DONTEXPAND | VM_DONTDUMP;
	return 0;
}

Z
Zach Reizner 已提交
254 255 256
static const struct file_operations vgem_driver_fops = {
	.owner		= THIS_MODULE,
	.open		= drm_open,
C
Chris Wilson 已提交
257
	.mmap		= vgem_mmap,
Z
Zach Reizner 已提交
258 259 260
	.poll		= drm_poll,
	.read		= drm_read,
	.unlocked_ioctl = drm_ioctl,
261
	.compat_ioctl	= drm_compat_ioctl,
Z
Zach Reizner 已提交
262 263 264
	.release	= drm_release,
};

265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
static struct page **vgem_pin_pages(struct drm_vgem_gem_object *bo)
{
	mutex_lock(&bo->pages_lock);
	if (bo->pages_pin_count++ == 0) {
		struct page **pages;

		pages = drm_gem_get_pages(&bo->base);
		if (IS_ERR(pages)) {
			bo->pages_pin_count--;
			mutex_unlock(&bo->pages_lock);
			return pages;
		}

		bo->pages = pages;
	}
	mutex_unlock(&bo->pages_lock);

	return bo->pages;
}

static void vgem_unpin_pages(struct drm_vgem_gem_object *bo)
{
	mutex_lock(&bo->pages_lock);
	if (--bo->pages_pin_count == 0) {
		drm_gem_put_pages(&bo->base, bo->pages, true, true);
		bo->pages = NULL;
	}
	mutex_unlock(&bo->pages_lock);
}

295 296
static int vgem_prime_pin(struct drm_gem_object *obj)
{
297
	struct drm_vgem_gem_object *bo = to_vgem_bo(obj);
298 299 300
	long n_pages = obj->size >> PAGE_SHIFT;
	struct page **pages;

301
	pages = vgem_pin_pages(bo);
302 303 304
	if (IS_ERR(pages))
		return PTR_ERR(pages);

305 306 307
	/* Flush the object from the CPU cache so that importers can rely
	 * on coherent indirect access via the exported dma-address.
	 */
308 309 310 311 312
	drm_clflush_pages(pages, n_pages);

	return 0;
}

313
static void vgem_prime_unpin(struct drm_gem_object *obj)
314
{
315
	struct drm_vgem_gem_object *bo = to_vgem_bo(obj);
316

317 318
	vgem_unpin_pages(bo);
}
319

320 321 322
static struct sg_table *vgem_prime_get_sg_table(struct drm_gem_object *obj)
{
	struct drm_vgem_gem_object *bo = to_vgem_bo(obj);
323

324
	return drm_prime_pages_to_sg(obj->dev, bo->pages, bo->base.size >> PAGE_SHIFT);
325 326
}

327 328 329
static struct drm_gem_object* vgem_prime_import(struct drm_device *dev,
						struct dma_buf *dma_buf)
{
330 331 332
	struct vgem_device *vgem = container_of(dev, typeof(*vgem), drm);

	return drm_gem_prime_import_dev(dev, dma_buf, &vgem->platform->dev);
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
}

static struct drm_gem_object *vgem_prime_import_sg_table(struct drm_device *dev,
			struct dma_buf_attachment *attach, struct sg_table *sg)
{
	struct drm_vgem_gem_object *obj;
	int npages;

	obj = __vgem_gem_create(dev, attach->dmabuf->size);
	if (IS_ERR(obj))
		return ERR_CAST(obj);

	npages = PAGE_ALIGN(attach->dmabuf->size) / PAGE_SIZE;

	obj->table = sg;
M
Michal Hocko 已提交
348
	obj->pages = kvmalloc_array(npages, sizeof(struct page *), GFP_KERNEL);
349 350 351 352
	if (!obj->pages) {
		__vgem_gem_destroy(obj);
		return ERR_PTR(-ENOMEM);
	}
353 354

	obj->pages_pin_count++; /* perma-pinned */
355 356 357 358 359
	drm_prime_sg_to_page_addr_arrays(obj->table, obj->pages, NULL,
					npages);
	return &obj->base;
}

360 361
static void *vgem_prime_vmap(struct drm_gem_object *obj)
{
362
	struct drm_vgem_gem_object *bo = to_vgem_bo(obj);
363 364 365
	long n_pages = obj->size >> PAGE_SHIFT;
	struct page **pages;

366
	pages = vgem_pin_pages(bo);
367 368 369
	if (IS_ERR(pages))
		return NULL;

370
	return vmap(pages, n_pages, 0, pgprot_writecombine(PAGE_KERNEL));
371 372 373 374
}

static void vgem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
{
375 376
	struct drm_vgem_gem_object *bo = to_vgem_bo(obj);

377
	vunmap(vaddr);
378
	vgem_unpin_pages(bo);
379 380 381 382 383 384 385 386 387 388 389 390 391
}

static int vgem_prime_mmap(struct drm_gem_object *obj,
			   struct vm_area_struct *vma)
{
	int ret;

	if (obj->size < vma->vm_end - vma->vm_start)
		return -EINVAL;

	if (!obj->filp)
		return -ENODEV;

392
	ret = call_mmap(obj->filp, vma);
393 394 395 396 397 398 399 400 401 402 403
	if (ret)
		return ret;

	fput(vma->vm_file);
	vma->vm_file = get_file(obj->filp);
	vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
	vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags));

	return 0;
}

Z
Zach Reizner 已提交
404
static struct drm_driver vgem_driver = {
405
	.driver_features		= DRIVER_GEM | DRIVER_RENDER,
406
	.open				= vgem_open,
D
Daniel Vetter 已提交
407
	.postclose			= vgem_postclose,
408
	.gem_free_object_unlocked	= vgem_gem_free_object,
Z
Zach Reizner 已提交
409 410
	.gem_vm_ops			= &vgem_gem_vm_ops,
	.ioctls				= vgem_ioctls,
411
	.num_ioctls 			= ARRAY_SIZE(vgem_ioctls),
Z
Zach Reizner 已提交
412
	.fops				= &vgem_driver_fops,
413

Z
Zach Reizner 已提交
414
	.dumb_create			= vgem_gem_dumb_create,
415 416

	.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
417
	.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
418
	.gem_prime_pin = vgem_prime_pin,
419
	.gem_prime_unpin = vgem_prime_unpin,
420 421
	.gem_prime_import = vgem_prime_import,
	.gem_prime_import_sg_table = vgem_prime_import_sg_table,
422 423 424 425 426
	.gem_prime_get_sg_table = vgem_prime_get_sg_table,
	.gem_prime_vmap = vgem_prime_vmap,
	.gem_prime_vunmap = vgem_prime_vunmap,
	.gem_prime_mmap = vgem_prime_mmap,

Z
Zach Reizner 已提交
427 428 429 430 431 432 433 434 435 436
	.name	= DRIVER_NAME,
	.desc	= DRIVER_DESC,
	.date	= DRIVER_DATE,
	.major	= DRIVER_MAJOR,
	.minor	= DRIVER_MINOR,
};

static int __init vgem_init(void)
{
	int ret;
D
Daniel Vetter 已提交
437
	struct platform_device *pdev;
Z
Zach Reizner 已提交
438

D
Daniel Vetter 已提交
439 440 441
	pdev = platform_device_register_simple("vgem", -1, NULL, 0);
	if (IS_ERR(pdev))
		return PTR_ERR(pdev);
442

D
Daniel Vetter 已提交
443 444 445
	if (!devres_open_group(&pdev->dev, NULL, GFP_KERNEL)) {
		ret = -ENOMEM;
		goto out_unregister;
Z
Zach Reizner 已提交
446 447
	}

D
Daniel Vetter 已提交
448
	dma_coerce_mask_and_coherent(&pdev->dev,
449
				     DMA_BIT_MASK(64));
D
Daniel Vetter 已提交
450 451 452 453 454 455 456 457

	vgem_device = devm_drm_dev_alloc(&pdev->dev, &vgem_driver,
					 struct vgem_device, drm);
	if (IS_ERR(vgem_device)) {
		ret = PTR_ERR(vgem_device);
		goto out_devres;
	}
	vgem_device->platform = pdev;
458

459
	/* Final step: expose the device/driver to userspace */
460
	ret = drm_dev_register(&vgem_device->drm, 0);
Z
Zach Reizner 已提交
461
	if (ret)
D
Daniel Vetter 已提交
462
		goto out_devres;
Z
Zach Reizner 已提交
463 464 465

	return 0;

D
Daniel Vetter 已提交
466 467
out_devres:
	devres_release_group(&pdev->dev, NULL);
468
out_unregister:
D
Daniel Vetter 已提交
469
	platform_device_unregister(pdev);
Z
Zach Reizner 已提交
470 471 472 473 474
	return ret;
}

static void __exit vgem_exit(void)
{
D
Daniel Vetter 已提交
475 476
	struct platform_device *pdev = vgem_device->platform;

477
	drm_dev_unregister(&vgem_device->drm);
D
Daniel Vetter 已提交
478 479
	devres_release_group(&pdev->dev, NULL);
	platform_device_unregister(pdev);
Z
Zach Reizner 已提交
480 481 482 483 484 485
}

module_init(vgem_init);
module_exit(vgem_exit);

MODULE_AUTHOR("Red Hat, Inc.");
486
MODULE_AUTHOR("Intel Corporation");
Z
Zach Reizner 已提交
487 488
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL and additional rights");