Merge remote-tracking branch 'airlied/drm-next' into topic/drm-misc
[linux-2.6-block.git] / drivers / gpu / drm / drm_fops.c
CommitLineData
bcb877e4 1/*
b5e89ed5 2 * \file drm_fops.c
1da177e4 3 * File operations for DRM
b5e89ed5 4 *
1da177e4
LT
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Daryll Strauss <daryll@valinux.com>
7 * \author Gareth Hughes <gareth@valinux.com>
8 */
9
10/*
11 * Created: Mon Jan 4 08:58:31 1999 by faith@valinux.com
12 *
13 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
14 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
15 * All Rights Reserved.
16 *
17 * Permission is hereby granted, free of charge, to any person obtaining a
18 * copy of this software and associated documentation files (the "Software"),
19 * to deal in the Software without restriction, including without limitation
20 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
21 * and/or sell copies of the Software, and to permit persons to whom the
22 * Software is furnished to do so, subject to the following conditions:
23 *
24 * The above copyright notice and this permission notice (including the next
25 * paragraph) shall be included in all copies or substantial portions of the
26 * Software.
27 *
28 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
31 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
32 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
33 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
34 * OTHER DEALINGS IN THE SOFTWARE.
35 */
36
760285e7 37#include <drm/drmP.h>
1da177e4 38#include <linux/poll.h>
5a0e3ad6 39#include <linux/slab.h>
e0cd3608 40#include <linux/module.h>
e7b96070 41#include "drm_legacy.h"
67d0ec4e 42#include "drm_internal.h"
81065548 43#include "drm_crtc_internal.h"
1da177e4 44
0d639883 45/* from BKL pushdown */
58374713
AB
46DEFINE_MUTEX(drm_global_mutex);
47
bcb877e4
DV
48/**
49 * DOC: file operations
50 *
51 * Drivers must define the file operations structure that forms the DRM
52 * userspace API entry point, even though most of those operations are
53 * implemented in the DRM core. The mandatory functions are drm_open(),
54 * drm_read(), drm_ioctl() and drm_compat_ioctl if CONFIG_COMPAT is enabled.
55 * Drivers which implement private ioctls that require 32/64 bit compatibility
56 * support must provided their onw .compat_ioctl() handler that processes
57 * private ioctls and calls drm_compat_ioctl() for core ioctls.
58 *
59 * In addition drm_read() and drm_poll() provide support for DRM events. DRM
60 * events are a generic and extensible means to send asynchronous events to
61 * userspace through the file descriptor. They are used to send vblank event and
62 * page flip completions by the KMS API. But drivers can also use it for their
63 * own needs, e.g. to signal completion of rendering.
64 *
65 * The memory mapping implementation will vary depending on how the driver
66 * manages memory. Legacy drivers will use the deprecated drm_legacy_mmap()
67 * function, modern drivers should use one of the provided memory-manager
68 * specific implementations. For GEM-based drivers this is drm_gem_mmap().
69 *
70 * No other file operations are supported by the DRM userspace API. Overall the
da5335b8 71 * following is an example #file_operations structure::
bcb877e4
DV
72 *
73 * static const example_drm_fops = {
74 * .owner = THIS_MODULE,
75 * .open = drm_open,
76 * .release = drm_release,
77 * .unlocked_ioctl = drm_ioctl,
78 * #ifdef CONFIG_COMPAT
79 * .compat_ioctl = drm_compat_ioctl,
80 * #endif
81 * .poll = drm_poll,
82 * .read = drm_read,
83 * .llseek = no_llseek,
84 * .mmap = drm_gem_mmap,
85 * };
86 */
87
1dcc0ceb 88static int drm_open_helper(struct file *filp, struct drm_minor *minor);
c94f7029 89
84b1fd10 90static int drm_setup(struct drm_device * dev)
1da177e4 91{
1da177e4
LT
92 int ret;
93
7d14bb6b 94 if (dev->driver->firstopen &&
fa538645 95 drm_core_check_feature(dev, DRIVER_LEGACY)) {
22eae947 96 ret = dev->driver->firstopen(dev);
b5e89ed5 97 if (ret != 0)
1da177e4
LT
98 return ret;
99 }
100
f336ab76
DV
101 ret = drm_legacy_dma_setup(dev);
102 if (ret < 0)
103 return ret;
1da177e4 104
1da177e4 105
b5e89ed5 106 DRM_DEBUG("\n");
1da177e4
LT
107 return 0;
108}
109
110/**
bcb877e4
DV
111 * drm_open - open method for DRM file
112 * @inode: device inode
113 * @filp: file pointer.
b5e89ed5 114 *
bcb877e4
DV
115 * This function must be used by drivers as their .open() #file_operations
116 * method. It looks up the correct DRM device and instantiates all the per-file
117 * resources for it.
118 *
119 * RETURNS:
1da177e4 120 *
bcb877e4 121 * 0 on success or negative errno value on falure.
1da177e4 122 */
b5e89ed5 123int drm_open(struct inode *inode, struct file *filp)
1da177e4 124{
1616c525 125 struct drm_device *dev;
2c14f28b 126 struct drm_minor *minor;
1616c525 127 int retcode;
fdb40a08 128 int need_setup = 0;
b5e89ed5 129
1616c525
DH
130 minor = drm_minor_acquire(iminor(inode));
131 if (IS_ERR(minor))
132 return PTR_ERR(minor);
2c07a21d 133
1616c525 134 dev = minor->dev;
fdb40a08
IH
135 if (!dev->open_count++)
136 need_setup = 1;
fdb40a08 137
6796cb16
DH
138 /* share address_space across all char-devs of a single device */
139 filp->f_mapping = dev->anon_inode->i_mapping;
fdb40a08 140
1dcc0ceb 141 retcode = drm_open_helper(filp, minor);
fdb40a08
IH
142 if (retcode)
143 goto err_undo;
fdb40a08
IH
144 if (need_setup) {
145 retcode = drm_setup(dev);
146 if (retcode)
147 goto err_undo;
f453ba04 148 }
fdb40a08 149 return 0;
a2c0a97b 150
fdb40a08 151err_undo:
fdb40a08 152 dev->open_count--;
1616c525 153 drm_minor_release(minor);
1da177e4
LT
154 return retcode;
155}
156EXPORT_SYMBOL(drm_open);
157
bcb877e4 158/*
d985c108
DA
159 * Check whether DRI will run on this CPU.
160 *
161 * \return non-zero if the DRI will run on this CPU, or zero otherwise.
162 */
163static int drm_cpu_valid(void)
164{
d985c108
DA
165#if defined(__sparc__) && !defined(__sparc_v9__)
166 return 0; /* No cmpxchg before v9 sparc. */
167#endif
168 return 1;
169}
170
bcb877e4 171/*
d985c108
DA
172 * Called whenever a process opens /dev/drm.
173 *
d985c108 174 * \param filp file pointer.
f4aede2e 175 * \param minor acquired minor-object.
d985c108
DA
176 * \return zero on success or a negative number on failure.
177 *
178 * Creates and initializes a drm_file structure for the file private data in \p
179 * filp and add it into the double linked list in \p dev.
180 */
1dcc0ceb 181static int drm_open_helper(struct file *filp, struct drm_minor *minor)
d985c108 182{
f4aede2e 183 struct drm_device *dev = minor->dev;
84b1fd10 184 struct drm_file *priv;
d985c108
DA
185 int ret;
186
187 if (filp->f_flags & O_EXCL)
188 return -EBUSY; /* No exclusive opens */
189 if (!drm_cpu_valid())
190 return -EINVAL;
13bb9cc8 191 if (dev->switch_power_state != DRM_SWITCH_POWER_ON && dev->switch_power_state != DRM_SWITCH_POWER_DYNAMIC_OFF)
5bcf719b 192 return -EINVAL;
d985c108 193
f4aede2e 194 DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor->index);
d985c108 195
6ebc22e6 196 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
d985c108
DA
197 if (!priv)
198 return -ENOMEM;
199
d985c108 200 filp->private_data = priv;
6c340eac 201 priv->filp = filp;
5fce5e0b 202 priv->pid = get_pid(task_pid(current));
f4aede2e 203 priv->minor = minor;
df9b6a9c 204
d985c108 205 /* for compatibility root is always authenticated */
3cb01a98 206 priv->authenticated = capable(CAP_SYS_ADMIN);
d985c108
DA
207 priv->lock_count = 0;
208
bd1b331f 209 INIT_LIST_HEAD(&priv->lhead);
f453ba04 210 INIT_LIST_HEAD(&priv->fbs);
4b096ac1 211 mutex_init(&priv->fbs_lock);
e2f5d2ea 212 INIT_LIST_HEAD(&priv->blobs);
681047b4 213 INIT_LIST_HEAD(&priv->pending_event_list);
c9a9c5e0
KH
214 INIT_LIST_HEAD(&priv->event_list);
215 init_waitqueue_head(&priv->event_wait);
216 priv->event_space = 4096; /* set aside 4k for event buffer */
bd1b331f 217
9b2c0b7f
CW
218 mutex_init(&priv->event_read_lock);
219
1bcecfac 220 if (drm_core_check_feature(dev, DRIVER_GEM))
673a394b
EA
221 drm_gem_open(dev, priv);
222
3248877e
DA
223 if (drm_core_check_feature(dev, DRIVER_PRIME))
224 drm_prime_init_file_private(&priv->prime);
225
d985c108
DA
226 if (dev->driver->open) {
227 ret = dev->driver->open(dev, priv);
228 if (ret < 0)
df9b6a9c 229 goto out_prime_destroy;
d985c108
DA
230 }
231
2cbae7e6
DV
232 if (drm_is_primary_client(priv)) {
233 ret = drm_master_open(priv);
a0af2e53 234 if (ret)
df9b6a9c 235 goto out_close;
7c1c2871 236 }
bd1b331f 237
1d2ac403 238 mutex_lock(&dev->filelist_mutex);
bd1b331f 239 list_add(&priv->lhead, &dev->filelist);
1d2ac403 240 mutex_unlock(&dev->filelist_mutex);
d985c108
DA
241
242#ifdef __alpha__
243 /*
244 * Default the hose
245 */
246 if (!dev->hose) {
247 struct pci_dev *pci_dev;
248 pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL);
249 if (pci_dev) {
250 dev->hose = pci_dev->sysdata;
251 pci_dev_put(pci_dev);
252 }
253 if (!dev->hose) {
59c1ad3b
YW
254 struct pci_bus *b = list_entry(pci_root_buses.next,
255 struct pci_bus, node);
d985c108
DA
256 if (b)
257 dev->hose = b->sysdata;
258 }
259 }
260#endif
261
262 return 0;
df9b6a9c
SWK
263
264out_close:
265 if (dev->driver->postclose)
266 dev->driver->postclose(dev, priv);
267out_prime_destroy:
268 if (drm_core_check_feature(dev, DRIVER_PRIME))
269 drm_prime_destroy_file_private(&priv->prime);
1bcecfac 270 if (drm_core_check_feature(dev, DRIVER_GEM))
df9b6a9c 271 drm_gem_release(dev, priv);
df9b6a9c 272 put_pid(priv->pid);
9a298b2a 273 kfree(priv);
d985c108
DA
274 filp->private_data = NULL;
275 return ret;
276}
277
c9a9c5e0
KH
278static void drm_events_release(struct drm_file *file_priv)
279{
280 struct drm_device *dev = file_priv->minor->dev;
281 struct drm_pending_event *e, *et;
c9a9c5e0
KH
282 unsigned long flags;
283
284 spin_lock_irqsave(&dev->event_lock, flags);
285
681047b4
DV
286 /* Unlink pending events */
287 list_for_each_entry_safe(e, et, &file_priv->pending_event_list,
288 pending_link) {
289 list_del(&e->pending_link);
290 e->file_priv = NULL;
291 }
292
c9a9c5e0 293 /* Remove unconsumed events */
1dda6805
YC
294 list_for_each_entry_safe(e, et, &file_priv->event_list, link) {
295 list_del(&e->link);
1b47aaf9 296 kfree(e);
1dda6805 297 }
c9a9c5e0
KH
298
299 spin_unlock_irqrestore(&dev->event_lock, flags);
300}
301
bcb877e4 302/*
1c8887dd
DH
303 * drm_legacy_dev_reinit
304 *
305 * Reinitializes a legacy/ums drm device in it's lastclose function.
306 */
307static void drm_legacy_dev_reinit(struct drm_device *dev)
308{
68dfbeba
DV
309 if (dev->irq_enabled)
310 drm_irq_uninstall(dev);
311
312 mutex_lock(&dev->struct_mutex);
313
314 drm_legacy_agp_clear(dev);
315
316 drm_legacy_sg_cleanup(dev);
317 drm_legacy_vma_flush(dev);
318 drm_legacy_dma_takedown(dev);
319
320 mutex_unlock(&dev->struct_mutex);
1c8887dd 321
1c8887dd
DH
322 dev->sigdata.lock = NULL;
323
324 dev->context_flag = 0;
325 dev->last_context = 0;
326 dev->if_version = 0;
68dfbeba
DV
327
328 DRM_DEBUG("lastclose completed\n");
1c8887dd
DH
329}
330
bcb877e4 331/*
1c8887dd
DH
332 * Take down the DRM device.
333 *
334 * \param dev DRM device structure.
335 *
336 * Frees every resource in \p dev.
337 *
338 * \sa drm_device
339 */
68dfbeba 340void drm_lastclose(struct drm_device * dev)
1c8887dd 341{
1c8887dd
DH
342 DRM_DEBUG("\n");
343
344 if (dev->driver->lastclose)
345 dev->driver->lastclose(dev);
346 DRM_DEBUG("driver lastclose completed\n");
347
fa538645 348 if (drm_core_check_feature(dev, DRIVER_LEGACY))
68dfbeba 349 drm_legacy_dev_reinit(dev);
1c8887dd
DH
350}
351
1da177e4 352/**
bcb877e4
DV
353 * drm_release - release method for DRM file
354 * @inode: device inode
355 * @filp: file pointer.
1da177e4 356 *
bcb877e4
DV
357 * This function must be used by drivers as their .release() #file_operations
358 * method. It frees any resources associated with the open file, and if this is
359 * the last open file for the DRM device also proceeds to call drm_lastclose().
1da177e4 360 *
bcb877e4
DV
361 * RETURNS:
362 *
363 * Always succeeds and returns 0.
1da177e4 364 */
b5e89ed5 365int drm_release(struct inode *inode, struct file *filp)
1da177e4 366{
6c340eac 367 struct drm_file *file_priv = filp->private_data;
1616c525
DH
368 struct drm_minor *minor = file_priv->minor;
369 struct drm_device *dev = minor->dev;
1da177e4 370
58374713 371 mutex_lock(&drm_global_mutex);
1da177e4 372
b5e89ed5 373 DRM_DEBUG("open_count = %d\n", dev->open_count);
1da177e4 374
1d2ac403 375 mutex_lock(&dev->filelist_mutex);
dff01de1 376 list_del(&file_priv->lhead);
1d2ac403
DV
377 mutex_unlock(&dev->filelist_mutex);
378
22eae947 379 if (dev->driver->preclose)
6c340eac 380 dev->driver->preclose(dev, file_priv);
1da177e4
LT
381
382 /* ========================================================
383 * Begin inline drm_release
384 */
385
b5e89ed5 386 DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n",
ba25f9dc 387 task_pid_nr(current),
5817878c 388 (long)old_encode_dev(file_priv->minor->kdev->devt),
b5e89ed5
DA
389 dev->open_count);
390
fa538645 391 if (drm_core_check_feature(dev, DRIVER_LEGACY))
1a75a222 392 drm_legacy_lock_release(dev, filp);
1da177e4 393
67cb4b4d 394 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
a266162a 395 drm_legacy_reclaim_buffers(dev, file_priv);
67cb4b4d 396
c9a9c5e0
KH
397 drm_events_release(file_priv);
398
e2f5d2ea 399 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
ea39f835 400 drm_fb_release(file_priv);
e2f5d2ea
DS
401 drm_property_destroy_user_blobs(dev, file_priv);
402 }
ea39f835 403
1bcecfac 404 if (drm_core_check_feature(dev, DRIVER_GEM))
4e47e02d
P
405 drm_gem_release(dev, file_priv);
406
e7b96070 407 drm_legacy_ctxbitmap_flush(dev, file_priv);
1da177e4 408
14d71ebd
DV
409 if (drm_is_primary_client(file_priv))
410 drm_master_release(file_priv);
c996fd0b 411
22eae947 412 if (dev->driver->postclose)
6c340eac 413 dev->driver->postclose(dev, file_priv);
3248877e
DA
414
415 if (drm_core_check_feature(dev, DRIVER_PRIME))
416 drm_prime_destroy_file_private(&file_priv->prime);
417
ddde4371
VS
418 WARN_ON(!list_empty(&file_priv->event_list));
419
5fce5e0b 420 put_pid(file_priv->pid);
9a298b2a 421 kfree(file_priv);
1da177e4
LT
422
423 /* ========================================================
424 * End inline drm_release
425 */
426
b5e89ed5 427 if (!--dev->open_count) {
68dfbeba 428 drm_lastclose(dev);
2c07a21d
DA
429 if (drm_device_is_unplugged(dev))
430 drm_put_dev(dev);
1da177e4 431 }
58374713 432 mutex_unlock(&drm_global_mutex);
1da177e4 433
1616c525
DH
434 drm_minor_release(minor);
435
68dfbeba 436 return 0;
1da177e4
LT
437}
438EXPORT_SYMBOL(drm_release);
439
bcb877e4
DV
440/**
441 * drm_read - read method for DRM file
442 * @filp: file pointer
443 * @buffer: userspace destination pointer for the read
444 * @count: count in bytes to read
445 * @offset: offset to read
446 *
447 * This function must be used by drivers as their .read() #file_operations
448 * method iff they use DRM events for asynchronous signalling to userspace.
449 * Since events are used by the KMS API for vblank and page flip completion this
450 * means all modern display drivers must use it.
451 *
452 * @offset is ignore, DRM events are read like a pipe. Therefore drivers also
453 * must set the .llseek() #file_operation to no_llseek(). Polling support is
454 * provided by drm_poll().
455 *
456 * This function will only ever read a full event. Therefore userspace must
457 * supply a big enough buffer to fit any event to ensure forward progress. Since
458 * the maximum event space is currently 4K it's recommended to just use that for
459 * safety.
460 *
461 * RETURNS:
462 *
463 * Number of bytes read (always aligned to full events, and can be 0) or a
464 * negative error code on failure.
465 */
cdd1cf79
CW
466ssize_t drm_read(struct file *filp, char __user *buffer,
467 size_t count, loff_t *offset)
c9a9c5e0 468{
cdd1cf79 469 struct drm_file *file_priv = filp->private_data;
c9a9c5e0 470 struct drm_device *dev = file_priv->minor->dev;
9b2c0b7f 471 ssize_t ret;
c9a9c5e0 472
cdd1cf79
CW
473 if (!access_ok(VERIFY_WRITE, buffer, count))
474 return -EFAULT;
c9a9c5e0 475
9b2c0b7f
CW
476 ret = mutex_lock_interruptible(&file_priv->event_read_lock);
477 if (ret)
478 return ret;
479
cdd1cf79 480 for (;;) {
83eb64c8
CW
481 struct drm_pending_event *e = NULL;
482
483 spin_lock_irq(&dev->event_lock);
484 if (!list_empty(&file_priv->event_list)) {
485 e = list_first_entry(&file_priv->event_list,
486 struct drm_pending_event, link);
487 file_priv->event_space += e->event->length;
488 list_del(&e->link);
489 }
490 spin_unlock_irq(&dev->event_lock);
491
492 if (e == NULL) {
cdd1cf79
CW
493 if (ret)
494 break;
c9a9c5e0 495
cdd1cf79
CW
496 if (filp->f_flags & O_NONBLOCK) {
497 ret = -EAGAIN;
498 break;
499 }
c9a9c5e0 500
9b2c0b7f 501 mutex_unlock(&file_priv->event_read_lock);
cdd1cf79
CW
502 ret = wait_event_interruptible(file_priv->event_wait,
503 !list_empty(&file_priv->event_list));
9b2c0b7f
CW
504 if (ret >= 0)
505 ret = mutex_lock_interruptible(&file_priv->event_read_lock);
506 if (ret)
507 return ret;
cdd1cf79 508 } else {
83eb64c8
CW
509 unsigned length = e->event->length;
510
511 if (length > count - ret) {
512put_back_event:
513 spin_lock_irq(&dev->event_lock);
514 file_priv->event_space -= length;
515 list_add(&e->link, &file_priv->event_list);
516 spin_unlock_irq(&dev->event_lock);
cdd1cf79 517 break;
83eb64c8 518 }
cdd1cf79 519
83eb64c8 520 if (copy_to_user(buffer + ret, e->event, length)) {
cdd1cf79
CW
521 if (ret == 0)
522 ret = -EFAULT;
83eb64c8 523 goto put_back_event;
cdd1cf79 524 }
c9a9c5e0 525
83eb64c8 526 ret += length;
1b47aaf9 527 kfree(e);
c9a9c5e0 528 }
c9a9c5e0 529 }
9b2c0b7f 530 mutex_unlock(&file_priv->event_read_lock);
c9a9c5e0 531
cdd1cf79 532 return ret;
c9a9c5e0
KH
533}
534EXPORT_SYMBOL(drm_read);
535
bcb877e4
DV
536/**
537 * drm_poll - poll method for DRM file
538 * @filp: file pointer
539 * @wait: poll waiter table
540 *
541 * This function must be used by drivers as their .read() #file_operations
542 * method iff they use DRM events for asynchronous signalling to userspace.
543 * Since events are used by the KMS API for vblank and page flip completion this
544 * means all modern display drivers must use it.
545 *
546 * See also drm_read().
547 *
548 * RETURNS:
549 *
550 * Mask of POLL flags indicating the current status of the file.
551 */
1da177e4
LT
552unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait)
553{
c9a9c5e0
KH
554 struct drm_file *file_priv = filp->private_data;
555 unsigned int mask = 0;
556
557 poll_wait(filp, &file_priv->event_wait, wait);
558
559 if (!list_empty(&file_priv->event_list))
560 mask |= POLLIN | POLLRDNORM;
561
562 return mask;
1da177e4 563}
b5e89ed5 564EXPORT_SYMBOL(drm_poll);
2dd500f1
DV
565
566/**
4020b220 567 * drm_event_reserve_init_locked - init a DRM event and reserve space for it
2dd500f1
DV
568 * @dev: DRM device
569 * @file_priv: DRM file private data
570 * @p: tracking structure for the pending event
571 * @e: actual event data to deliver to userspace
572 *
573 * This function prepares the passed in event for eventual delivery. If the event
574 * doesn't get delivered (because the IOCTL fails later on, before queuing up
575 * anything) then the even must be cancelled and freed using
fb740cf2
DV
576 * drm_event_cancel_free(). Successfully initialized events should be sent out
577 * using drm_send_event() or drm_send_event_locked() to signal completion of the
578 * asynchronous event to userspace.
2dd500f1
DV
579 *
580 * If callers embedded @p into a larger structure it must be allocated with
581 * kmalloc and @p must be the first member element.
582 *
4020b220
DV
583 * This is the locked version of drm_event_reserve_init() for callers which
584 * already hold dev->event_lock.
585 *
2dd500f1
DV
586 * RETURNS:
587 *
588 * 0 on success or a negative error code on failure.
589 */
4020b220
DV
590int drm_event_reserve_init_locked(struct drm_device *dev,
591 struct drm_file *file_priv,
592 struct drm_pending_event *p,
593 struct drm_event *e)
2dd500f1 594{
4020b220
DV
595 if (file_priv->event_space < e->length)
596 return -ENOMEM;
2dd500f1
DV
597
598 file_priv->event_space -= e->length;
599
600 p->event = e;
681047b4 601 list_add(&p->pending_link, &file_priv->pending_event_list);
2dd500f1
DV
602 p->file_priv = file_priv;
603
4020b220
DV
604 return 0;
605}
606EXPORT_SYMBOL(drm_event_reserve_init_locked);
607
608/**
609 * drm_event_reserve_init - init a DRM event and reserve space for it
610 * @dev: DRM device
611 * @file_priv: DRM file private data
612 * @p: tracking structure for the pending event
613 * @e: actual event data to deliver to userspace
614 *
615 * This function prepares the passed in event for eventual delivery. If the event
616 * doesn't get delivered (because the IOCTL fails later on, before queuing up
617 * anything) then the even must be cancelled and freed using
618 * drm_event_cancel_free(). Successfully initialized events should be sent out
619 * using drm_send_event() or drm_send_event_locked() to signal completion of the
620 * asynchronous event to userspace.
621 *
622 * If callers embedded @p into a larger structure it must be allocated with
623 * kmalloc and @p must be the first member element.
624 *
625 * Callers which already hold dev->event_lock should use
626 * drm_event_reserve_init() instead.
627 *
628 * RETURNS:
629 *
630 * 0 on success or a negative error code on failure.
631 */
632int drm_event_reserve_init(struct drm_device *dev,
633 struct drm_file *file_priv,
634 struct drm_pending_event *p,
635 struct drm_event *e)
636{
637 unsigned long flags;
638 int ret;
639
640 spin_lock_irqsave(&dev->event_lock, flags);
641 ret = drm_event_reserve_init_locked(dev, file_priv, p, e);
2dd500f1 642 spin_unlock_irqrestore(&dev->event_lock, flags);
4020b220 643
2dd500f1
DV
644 return ret;
645}
646EXPORT_SYMBOL(drm_event_reserve_init);
647
648/**
649 * drm_event_cancel_free - free a DRM event and release it's space
650 * @dev: DRM device
651 * @p: tracking structure for the pending event
652 *
653 * This function frees the event @p initialized with drm_event_reserve_init()
654 * and releases any allocated space.
655 */
656void drm_event_cancel_free(struct drm_device *dev,
657 struct drm_pending_event *p)
658{
659 unsigned long flags;
660 spin_lock_irqsave(&dev->event_lock, flags);
681047b4
DV
661 if (p->file_priv) {
662 p->file_priv->event_space += p->event->length;
663 list_del(&p->pending_link);
664 }
2dd500f1 665 spin_unlock_irqrestore(&dev->event_lock, flags);
838de39f
GP
666
667 if (p->fence)
668 fence_put(p->fence);
669
1b47aaf9 670 kfree(p);
2dd500f1
DV
671}
672EXPORT_SYMBOL(drm_event_cancel_free);
fb740cf2
DV
673
674/**
675 * drm_send_event_locked - send DRM event to file descriptor
676 * @dev: DRM device
677 * @e: DRM event to deliver
678 *
679 * This function sends the event @e, initialized with drm_event_reserve_init(),
680 * to its associated userspace DRM file. Callers must already hold
681 * dev->event_lock, see drm_send_event() for the unlocked version.
681047b4
DV
682 *
683 * Note that the core will take care of unlinking and disarming events when the
684 * corresponding DRM file is closed. Drivers need not worry about whether the
685 * DRM file for this event still exists and can call this function upon
686 * completion of the asynchronous work unconditionally.
fb740cf2
DV
687 */
688void drm_send_event_locked(struct drm_device *dev, struct drm_pending_event *e)
689{
690 assert_spin_locked(&dev->event_lock);
691
3b24f7d6
DV
692 if (e->completion) {
693 /* ->completion might disappear as soon as it signalled. */
694 complete_all(e->completion);
695 e->completion = NULL;
696 }
697
1b47aaf9
GP
698 if (e->fence) {
699 fence_signal(e->fence);
700 fence_put(e->fence);
701 }
702
681047b4 703 if (!e->file_priv) {
1b47aaf9 704 kfree(e);
681047b4
DV
705 return;
706 }
707
708 list_del(&e->pending_link);
fb740cf2
DV
709 list_add_tail(&e->link,
710 &e->file_priv->event_list);
711 wake_up_interruptible(&e->file_priv->event_wait);
712}
713EXPORT_SYMBOL(drm_send_event_locked);
714
715/**
716 * drm_send_event - send DRM event to file descriptor
717 * @dev: DRM device
718 * @e: DRM event to deliver
719 *
720 * This function sends the event @e, initialized with drm_event_reserve_init(),
721 * to its associated userspace DRM file. This function acquires dev->event_lock,
722 * see drm_send_event_locked() for callers which already hold this lock.
681047b4
DV
723 *
724 * Note that the core will take care of unlinking and disarming events when the
725 * corresponding DRM file is closed. Drivers need not worry about whether the
726 * DRM file for this event still exists and can call this function upon
727 * completion of the asynchronous work unconditionally.
fb740cf2
DV
728 */
729void drm_send_event(struct drm_device *dev, struct drm_pending_event *e)
730{
731 unsigned long irqflags;
732
733 spin_lock_irqsave(&dev->event_lock, irqflags);
734 drm_send_event_locked(dev, e);
735 spin_unlock_irqrestore(&dev->event_lock, irqflags);
736}
737EXPORT_SYMBOL(drm_send_event);