vgem_drv.c 5.8 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
/*
 * 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.
 */

#include <linux/module.h>
#include <linux/ramfs.h>
#include <linux/shmem_fs.h>
#include <linux/dma-buf.h>
#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

static void vgem_gem_free_object(struct drm_gem_object *obj)
{
	struct drm_vgem_gem_object *vgem_obj = to_vgem_bo(obj);

	drm_gem_object_release(obj);
	kfree(vgem_obj);
}

static int vgem_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
{
	struct drm_vgem_gem_object *obj = vma->vm_private_data;
	/* We don't use vmf->pgoff since that has the fake offset */
C
Chris Wilson 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
	unsigned long vaddr = (unsigned long)vmf->virtual_address;
	struct page *page;

	page = shmem_read_mapping_page(file_inode(obj->base.filp)->i_mapping,
				       (vaddr - vma->vm_start) >> PAGE_SHIFT);
	if (!IS_ERR(page)) {
		vmf->page = page;
		return 0;
	} else switch (PTR_ERR(page)) {
		case -ENOSPC:
		case -ENOMEM:
			return VM_FAULT_OOM;
		case -EBUSY:
			return VM_FAULT_RETRY;
		case -EFAULT:
		case -EINVAL:
			return VM_FAULT_SIGBUS;
		default:
			WARN_ON_ONCE(PTR_ERR(page));
			return VM_FAULT_SIGBUS;
Z
Zach Reizner 已提交
77 78 79
	}
}

80
static const struct vm_operations_struct vgem_gem_vm_ops = {
Z
Zach Reizner 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93
	.fault = vgem_gem_fault,
	.open = drm_gem_vm_open,
	.close = drm_gem_vm_close,
};

/* ioctls */

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;
C
Chris Wilson 已提交
94
	int ret;
Z
Zach Reizner 已提交
95 96 97 98 99

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

C
Chris Wilson 已提交
100 101 102
	ret = drm_gem_object_init(dev, &obj->base, roundup(size, PAGE_SIZE));
	if (ret)
		goto err_free;
Z
Zach Reizner 已提交
103

C
Chris Wilson 已提交
104 105 106 107
	ret = drm_gem_handle_create(file, &obj->base, handle);
	drm_gem_object_unreference_unlocked(&obj->base);
	if (ret)
		goto err;
Z
Zach Reizner 已提交
108

C
Chris Wilson 已提交
109
	return &obj->base;
Z
Zach Reizner 已提交
110

C
Chris Wilson 已提交
111
err_free:
Z
Zach Reizner 已提交
112
	kfree(obj);
C
Chris Wilson 已提交
113 114
err:
	return ERR_PTR(ret);
Z
Zach Reizner 已提交
115 116 117 118 119 120
}

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 已提交
121
	u64 pitch, size;
Z
Zach Reizner 已提交
122

C
Chris Wilson 已提交
123
	pitch = args->width * DIV_ROUND_UP(args->bpp, 8);
Z
Zach Reizner 已提交
124 125 126 127 128
	size = args->height * pitch;
	if (size == 0)
		return -EINVAL;

	gem_object = vgem_gem_create(dev, file, &args->handle, size);
C
Chris Wilson 已提交
129
	if (IS_ERR(gem_object))
Z
Zach Reizner 已提交
130 131 132 133 134 135 136 137 138 139
		return PTR_ERR(gem_object);

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

	DRM_DEBUG_DRIVER("Created object of size %lld\n", size);

	return 0;
}

C
Chris Wilson 已提交
140 141
static int vgem_gem_dumb_map(struct drm_file *file, struct drm_device *dev,
			     uint32_t handle, uint64_t *offset)
Z
Zach Reizner 已提交
142 143
{
	struct drm_gem_object *obj;
C
Chris Wilson 已提交
144
	int ret;
Z
Zach Reizner 已提交
145

146
	obj = drm_gem_object_lookup(file, handle);
D
Daniel Vetter 已提交
147 148
	if (!obj)
		return -ENOENT;
Z
Zach Reizner 已提交
149

C
Chris Wilson 已提交
150 151 152 153 154
	if (!obj->filp) {
		ret = -EINVAL;
		goto unref;
	}

D
Daniel Vetter 已提交
155 156 157
	ret = drm_gem_create_mmap_offset(obj);
	if (ret)
		goto unref;
Z
Zach Reizner 已提交
158 159 160

	*offset = drm_vma_node_offset_addr(&obj->vma_node);
unref:
D
Daniel Vetter 已提交
161 162
	drm_gem_object_unreference_unlocked(obj);

Z
Zach Reizner 已提交
163 164 165 166 167 168
	return ret;
}

static struct drm_ioctl_desc vgem_ioctls[] = {
};

C
Chris Wilson 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
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 已提交
185 186 187
static const struct file_operations vgem_driver_fops = {
	.owner		= THIS_MODULE,
	.open		= drm_open,
C
Chris Wilson 已提交
188
	.mmap		= vgem_mmap,
Z
Zach Reizner 已提交
189 190 191 192 193 194 195
	.poll		= drm_poll,
	.read		= drm_read,
	.unlocked_ioctl = drm_ioctl,
	.release	= drm_release,
};

static struct drm_driver vgem_driver = {
R
Rob Clark 已提交
196
	.driver_features		= DRIVER_GEM,
197
	.gem_free_object_unlocked	= vgem_gem_free_object,
Z
Zach Reizner 已提交
198 199 200 201 202 203 204 205 206 207 208 209
	.gem_vm_ops			= &vgem_gem_vm_ops,
	.ioctls				= vgem_ioctls,
	.fops				= &vgem_driver_fops,
	.dumb_create			= vgem_gem_dumb_create,
	.dumb_map_offset		= vgem_gem_dumb_map,
	.name	= DRIVER_NAME,
	.desc	= DRIVER_DESC,
	.date	= DRIVER_DATE,
	.major	= DRIVER_MAJOR,
	.minor	= DRIVER_MINOR,
};

C
Chris Wilson 已提交
210
static struct drm_device *vgem_device;
Z
Zach Reizner 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245

static int __init vgem_init(void)
{
	int ret;

	vgem_device = drm_dev_alloc(&vgem_driver, NULL);
	if (!vgem_device) {
		ret = -ENOMEM;
		goto out;
	}

	ret  = drm_dev_register(vgem_device, 0);
	if (ret)
		goto out_unref;

	return 0;

out_unref:
	drm_dev_unref(vgem_device);
out:
	return ret;
}

static void __exit vgem_exit(void)
{
	drm_dev_unregister(vgem_device);
	drm_dev_unref(vgem_device);
}

module_init(vgem_init);
module_exit(vgem_exit);

MODULE_AUTHOR("Red Hat, Inc.");
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL and additional rights");