nouveau: drop interrupt busy setting.
[deliverable/linux.git] / drivers / gpu / drm / drm_fops.c
CommitLineData
1da177e4 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>
1da177e4 41
58374713
AB
42/* from BKL pushdown: note that nothing else serializes idr_find() */
43DEFINE_MUTEX(drm_global_mutex);
e3461a2b 44EXPORT_SYMBOL(drm_global_mutex);
58374713 45
b5e89ed5 46static int drm_open_helper(struct inode *inode, struct file *filp,
84b1fd10 47 struct drm_device * dev);
c94f7029 48
84b1fd10 49static int drm_setup(struct drm_device * dev)
1da177e4 50{
1da177e4
LT
51 int ret;
52
7d14bb6b
DV
53 if (dev->driver->firstopen &&
54 !drm_core_check_feature(dev, DRIVER_MODESET)) {
22eae947 55 ret = dev->driver->firstopen(dev);
b5e89ed5 56 if (ret != 0)
1da177e4
LT
57 return ret;
58 }
59
f336ab76
DV
60 ret = drm_legacy_dma_setup(dev);
61 if (ret < 0)
62 return ret;
1da177e4 63
1da177e4 64
b5e89ed5 65 DRM_DEBUG("\n");
1da177e4
LT
66 return 0;
67}
68
69/**
70 * Open file.
b5e89ed5 71 *
1da177e4
LT
72 * \param inode device inode
73 * \param filp file pointer.
74 * \return zero on success or a negative number on failure.
75 *
76 * Searches the DRM device with the same minor number, calls open_helper(), and
77 * increments the device open count. If the open count was previous at zero,
78 * i.e., it's the first that the device is open, then calls setup().
79 */
b5e89ed5 80int drm_open(struct inode *inode, struct file *filp)
1da177e4 81{
84b1fd10 82 struct drm_device *dev = NULL;
2c14f28b
DA
83 int minor_id = iminor(inode);
84 struct drm_minor *minor;
1da177e4 85 int retcode = 0;
fdb40a08
IH
86 int need_setup = 0;
87 struct address_space *old_mapping;
a8ec3a66 88 struct address_space *old_imapping;
1da177e4 89
2c14f28b
DA
90 minor = idr_find(&drm_minors_idr, minor_id);
91 if (!minor)
1da177e4 92 return -ENODEV;
b5e89ed5 93
2c14f28b 94 if (!(dev = minor->dev))
1da177e4 95 return -ENODEV;
b5e89ed5 96
2c07a21d
DA
97 if (drm_device_is_unplugged(dev))
98 return -ENODEV;
99
fdb40a08
IH
100 if (!dev->open_count++)
101 need_setup = 1;
102 mutex_lock(&dev->struct_mutex);
a8ec3a66 103 old_imapping = inode->i_mapping;
fdb40a08
IH
104 old_mapping = dev->dev_mapping;
105 if (old_mapping == NULL)
106 dev->dev_mapping = &inode->i_data;
107 /* ihold ensures nobody can remove inode with our i_data */
108 ihold(container_of(dev->dev_mapping, struct inode, i_data));
109 inode->i_mapping = dev->dev_mapping;
110 filp->f_mapping = dev->dev_mapping;
111 mutex_unlock(&dev->struct_mutex);
112
b5e89ed5 113 retcode = drm_open_helper(inode, filp, dev);
fdb40a08
IH
114 if (retcode)
115 goto err_undo;
fdb40a08
IH
116 if (need_setup) {
117 retcode = drm_setup(dev);
118 if (retcode)
119 goto err_undo;
f453ba04 120 }
fdb40a08 121 return 0;
a2c0a97b 122
fdb40a08
IH
123err_undo:
124 mutex_lock(&dev->struct_mutex);
a8ec3a66
IH
125 filp->f_mapping = old_imapping;
126 inode->i_mapping = old_imapping;
fdb40a08
IH
127 iput(container_of(dev->dev_mapping, struct inode, i_data));
128 dev->dev_mapping = old_mapping;
129 mutex_unlock(&dev->struct_mutex);
130 dev->open_count--;
1da177e4
LT
131 return retcode;
132}
133EXPORT_SYMBOL(drm_open);
134
d985c108
DA
135/**
136 * File \c open operation.
137 *
138 * \param inode device inode.
139 * \param filp file pointer.
140 *
141 * Puts the dev->fops corresponding to the device minor number into
142 * \p filp, call the \c open method, and restore the file operations.
143 */
144int drm_stub_open(struct inode *inode, struct file *filp)
145{
84b1fd10 146 struct drm_device *dev = NULL;
2c14f28b
DA
147 struct drm_minor *minor;
148 int minor_id = iminor(inode);
d985c108 149 int err = -ENODEV;
99ac48f5 150 const struct file_operations *old_fops;
d985c108
DA
151
152 DRM_DEBUG("\n");
153
58374713 154 mutex_lock(&drm_global_mutex);
2c14f28b
DA
155 minor = idr_find(&drm_minors_idr, minor_id);
156 if (!minor)
70ffa16e 157 goto out;
d985c108 158
2c14f28b 159 if (!(dev = minor->dev))
70ffa16e 160 goto out;
d985c108 161
2c07a21d
DA
162 if (drm_device_is_unplugged(dev))
163 goto out;
164
d985c108 165 old_fops = filp->f_op;
e08e96de 166 filp->f_op = fops_get(dev->driver->fops);
f41ced8f
LP
167 if (filp->f_op == NULL) {
168 filp->f_op = old_fops;
169 goto out;
170 }
d985c108
DA
171 if (filp->f_op->open && (err = filp->f_op->open(inode, filp))) {
172 fops_put(filp->f_op);
173 filp->f_op = fops_get(old_fops);
174 }
175 fops_put(old_fops);
176
70ffa16e 177out:
58374713 178 mutex_unlock(&drm_global_mutex);
d985c108
DA
179 return err;
180}
181
182/**
183 * Check whether DRI will run on this CPU.
184 *
185 * \return non-zero if the DRI will run on this CPU, or zero otherwise.
186 */
187static int drm_cpu_valid(void)
188{
189#if defined(__i386__)
190 if (boot_cpu_data.x86 == 3)
191 return 0; /* No cmpxchg on a 386 */
192#endif
193#if defined(__sparc__) && !defined(__sparc_v9__)
194 return 0; /* No cmpxchg before v9 sparc. */
195#endif
196 return 1;
197}
198
199/**
200 * Called whenever a process opens /dev/drm.
201 *
202 * \param inode device inode.
203 * \param filp file pointer.
204 * \param dev device.
205 * \return zero on success or a negative number on failure.
206 *
207 * Creates and initializes a drm_file structure for the file private data in \p
208 * filp and add it into the double linked list in \p dev.
209 */
210static int drm_open_helper(struct inode *inode, struct file *filp,
84b1fd10 211 struct drm_device * dev)
d985c108 212{
2c14f28b 213 int minor_id = iminor(inode);
84b1fd10 214 struct drm_file *priv;
d985c108
DA
215 int ret;
216
217 if (filp->f_flags & O_EXCL)
218 return -EBUSY; /* No exclusive opens */
219 if (!drm_cpu_valid())
220 return -EINVAL;
13bb9cc8 221 if (dev->switch_power_state != DRM_SWITCH_POWER_ON && dev->switch_power_state != DRM_SWITCH_POWER_DYNAMIC_OFF)
5bcf719b 222 return -EINVAL;
d985c108 223
2c14f28b 224 DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor_id);
d985c108 225
6ebc22e6 226 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
d985c108
DA
227 if (!priv)
228 return -ENOMEM;
229
d985c108 230 filp->private_data = priv;
6c340eac 231 priv->filp = filp;
2df68b43 232 priv->uid = current_euid();
5fce5e0b 233 priv->pid = get_pid(task_pid(current));
2c14f28b 234 priv->minor = idr_find(&drm_minors_idr, minor_id);
df9b6a9c
SWK
235 if (!priv->minor) {
236 ret = -ENODEV;
237 goto out_put_pid;
238 }
239
d985c108
DA
240 priv->ioctl_count = 0;
241 /* for compatibility root is always authenticated */
242 priv->authenticated = capable(CAP_SYS_ADMIN);
243 priv->lock_count = 0;
244
bd1b331f 245 INIT_LIST_HEAD(&priv->lhead);
f453ba04 246 INIT_LIST_HEAD(&priv->fbs);
4b096ac1 247 mutex_init(&priv->fbs_lock);
c9a9c5e0
KH
248 INIT_LIST_HEAD(&priv->event_list);
249 init_waitqueue_head(&priv->event_wait);
250 priv->event_space = 4096; /* set aside 4k for event buffer */
bd1b331f 251
673a394b
EA
252 if (dev->driver->driver_features & DRIVER_GEM)
253 drm_gem_open(dev, priv);
254
3248877e
DA
255 if (drm_core_check_feature(dev, DRIVER_PRIME))
256 drm_prime_init_file_private(&priv->prime);
257
d985c108
DA
258 if (dev->driver->open) {
259 ret = dev->driver->open(dev, priv);
260 if (ret < 0)
df9b6a9c 261 goto out_prime_destroy;
d985c108
DA
262 }
263
1793126f
DH
264 /* if there is no current master make this fd it, but do not create
265 * any master object for render clients */
30e2fb18 266 mutex_lock(&dev->struct_mutex);
1793126f 267 if (!priv->minor->master && !drm_is_render_client(priv)) {
7c1c2871
DA
268 /* create a new master */
269 priv->minor->master = drm_master_create(priv->minor);
270 if (!priv->minor->master) {
dba5ed0c 271 mutex_unlock(&dev->struct_mutex);
7c1c2871 272 ret = -ENOMEM;
df9b6a9c 273 goto out_close;
7c1c2871
DA
274 }
275
276 priv->is_master = 1;
277 /* take another reference for the copy in the local file priv */
278 priv->master = drm_master_get(priv->minor->master);
279
280 priv->authenticated = 1;
281
282 mutex_unlock(&dev->struct_mutex);
283 if (dev->driver->master_create) {
284 ret = dev->driver->master_create(dev, priv->master);
285 if (ret) {
286 mutex_lock(&dev->struct_mutex);
287 /* drop both references if this fails */
288 drm_master_put(&priv->minor->master);
289 drm_master_put(&priv->master);
290 mutex_unlock(&dev->struct_mutex);
df9b6a9c 291 goto out_close;
7c1c2871
DA
292 }
293 }
862302ff
TH
294 mutex_lock(&dev->struct_mutex);
295 if (dev->driver->master_set) {
296 ret = dev->driver->master_set(dev, priv, true);
297 if (ret) {
298 /* drop both references if this fails */
299 drm_master_put(&priv->minor->master);
300 drm_master_put(&priv->master);
301 mutex_unlock(&dev->struct_mutex);
df9b6a9c 302 goto out_close;
862302ff
TH
303 }
304 }
1793126f 305 } else if (!drm_is_render_client(priv)) {
7c1c2871
DA
306 /* get a reference to the master */
307 priv->master = drm_master_get(priv->minor->master);
7c1c2871 308 }
1793126f 309 mutex_unlock(&dev->struct_mutex);
bd1b331f 310
7c1c2871 311 mutex_lock(&dev->struct_mutex);
bd1b331f 312 list_add(&priv->lhead, &dev->filelist);
30e2fb18 313 mutex_unlock(&dev->struct_mutex);
d985c108
DA
314
315#ifdef __alpha__
316 /*
317 * Default the hose
318 */
319 if (!dev->hose) {
320 struct pci_dev *pci_dev;
321 pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL);
322 if (pci_dev) {
323 dev->hose = pci_dev->sysdata;
324 pci_dev_put(pci_dev);
325 }
326 if (!dev->hose) {
327 struct pci_bus *b = pci_bus_b(pci_root_buses.next);
328 if (b)
329 dev->hose = b->sysdata;
330 }
331 }
332#endif
333
334 return 0;
df9b6a9c
SWK
335
336out_close:
337 if (dev->driver->postclose)
338 dev->driver->postclose(dev, priv);
339out_prime_destroy:
340 if (drm_core_check_feature(dev, DRIVER_PRIME))
341 drm_prime_destroy_file_private(&priv->prime);
342 if (dev->driver->driver_features & DRIVER_GEM)
343 drm_gem_release(dev, priv);
344out_put_pid:
345 put_pid(priv->pid);
9a298b2a 346 kfree(priv);
d985c108
DA
347 filp->private_data = NULL;
348 return ret;
349}
350
7c1c2871
DA
351static void drm_master_release(struct drm_device *dev, struct file *filp)
352{
353 struct drm_file *file_priv = filp->private_data;
354
7c1c2871
DA
355 if (drm_i_have_hw_lock(dev, file_priv)) {
356 DRM_DEBUG("File %p released, freeing lock for context %d\n",
357 filp, _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock));
358 drm_lock_free(&file_priv->master->lock,
359 _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock));
360 }
7c1c2871
DA
361}
362
c9a9c5e0
KH
363static void drm_events_release(struct drm_file *file_priv)
364{
365 struct drm_device *dev = file_priv->minor->dev;
366 struct drm_pending_event *e, *et;
367 struct drm_pending_vblank_event *v, *vt;
368 unsigned long flags;
369
370 spin_lock_irqsave(&dev->event_lock, flags);
371
372 /* Remove pending flips */
373 list_for_each_entry_safe(v, vt, &dev->vblank_event_list, base.link)
374 if (v->base.file_priv == file_priv) {
375 list_del(&v->base.link);
376 drm_vblank_put(dev, v->pipe);
377 v->base.destroy(&v->base);
378 }
379
380 /* Remove unconsumed events */
1dda6805
YC
381 list_for_each_entry_safe(e, et, &file_priv->event_list, link) {
382 list_del(&e->link);
c9a9c5e0 383 e->destroy(e);
1dda6805 384 }
c9a9c5e0
KH
385
386 spin_unlock_irqrestore(&dev->event_lock, flags);
387}
388
1c8887dd
DH
389/**
390 * drm_legacy_dev_reinit
391 *
392 * Reinitializes a legacy/ums drm device in it's lastclose function.
393 */
394static void drm_legacy_dev_reinit(struct drm_device *dev)
395{
1c8887dd
DH
396 if (drm_core_check_feature(dev, DRIVER_MODESET))
397 return;
398
399 atomic_set(&dev->ioctl_count, 0);
400 atomic_set(&dev->vma_count, 0);
401
1c8887dd
DH
402 dev->sigdata.lock = NULL;
403
404 dev->context_flag = 0;
405 dev->last_context = 0;
406 dev->if_version = 0;
407}
408
409/**
410 * Take down the DRM device.
411 *
412 * \param dev DRM device structure.
413 *
414 * Frees every resource in \p dev.
415 *
416 * \sa drm_device
417 */
418int drm_lastclose(struct drm_device * dev)
419{
420 struct drm_vma_entry *vma, *vma_temp;
421
422 DRM_DEBUG("\n");
423
424 if (dev->driver->lastclose)
425 dev->driver->lastclose(dev);
426 DRM_DEBUG("driver lastclose completed\n");
427
428 if (dev->irq_enabled && !drm_core_check_feature(dev, DRIVER_MODESET))
429 drm_irq_uninstall(dev);
430
431 mutex_lock(&dev->struct_mutex);
432
433 drm_agp_clear(dev);
434
435 drm_legacy_sg_cleanup(dev);
436
437 /* Clear vma list (only built for debugging) */
438 list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
439 list_del(&vma->head);
440 kfree(vma);
441 }
442
443 drm_legacy_dma_takedown(dev);
444
445 dev->dev_mapping = NULL;
446 mutex_unlock(&dev->struct_mutex);
447
448 drm_legacy_dev_reinit(dev);
449
450 DRM_DEBUG("lastclose completed\n");
451 return 0;
452}
453
1da177e4
LT
454/**
455 * Release file.
456 *
457 * \param inode device inode
6c340eac 458 * \param file_priv DRM file private.
1da177e4
LT
459 * \return zero on success or a negative number on failure.
460 *
461 * If the hardware lock is held then free it, and take it again for the kernel
462 * context since it's necessary to reclaim buffers. Unlink the file private
463 * data from its list and free it. Decreases the open count and if it reaches
22eae947 464 * zero calls drm_lastclose().
1da177e4 465 */
b5e89ed5 466int drm_release(struct inode *inode, struct file *filp)
1da177e4 467{
6c340eac 468 struct drm_file *file_priv = filp->private_data;
2c14f28b 469 struct drm_device *dev = file_priv->minor->dev;
1da177e4
LT
470 int retcode = 0;
471
58374713 472 mutex_lock(&drm_global_mutex);
1da177e4 473
b5e89ed5 474 DRM_DEBUG("open_count = %d\n", dev->open_count);
1da177e4 475
22eae947 476 if (dev->driver->preclose)
6c340eac 477 dev->driver->preclose(dev, file_priv);
1da177e4
LT
478
479 /* ========================================================
480 * Begin inline drm_release
481 */
482
b5e89ed5 483 DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n",
ba25f9dc 484 task_pid_nr(current),
2c14f28b 485 (long)old_encode_dev(file_priv->minor->device),
b5e89ed5
DA
486 dev->open_count);
487
598781d7
TH
488 /* Release any auth tokens that might point to this file_priv,
489 (do that under the drm_global_mutex) */
490 if (file_priv->magic)
491 (void) drm_remove_magic(file_priv->master, file_priv->magic);
492
7c1c2871
DA
493 /* if the master has gone away we can't do anything with the lock */
494 if (file_priv->minor->master)
495 drm_master_release(dev, filp);
1da177e4 496
67cb4b4d
DV
497 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
498 drm_core_reclaim_buffers(dev, file_priv);
499
c9a9c5e0
KH
500 drm_events_release(file_priv);
501
ea39f835
KH
502 if (dev->driver->driver_features & DRIVER_MODESET)
503 drm_fb_release(file_priv);
504
4e47e02d
P
505 if (dev->driver->driver_features & DRIVER_GEM)
506 drm_gem_release(dev, file_priv);
507
c21eb21c
DA
508 mutex_lock(&dev->ctxlist_mutex);
509 if (!list_empty(&dev->ctxlist)) {
510 struct drm_ctx_list *pos, *n;
511
512 list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
513 if (pos->tag == file_priv &&
514 pos->handle != DRM_KERNEL_CONTEXT) {
515 if (dev->driver->context_dtor)
516 dev->driver->context_dtor(dev,
517 pos->handle);
518
519 drm_ctxbitmap_free(dev, pos->handle);
520
521 list_del(&pos->head);
522 kfree(pos);
c21eb21c
DA
523 }
524 }
525 }
526 mutex_unlock(&dev->ctxlist_mutex);
1da177e4 527
30e2fb18 528 mutex_lock(&dev->struct_mutex);
7c1c2871
DA
529
530 if (file_priv->is_master) {
fda714c2 531 struct drm_master *master = file_priv->master;
84b1fd10 532 struct drm_file *temp;
7c1c2871
DA
533 list_for_each_entry(temp, &dev->filelist, lhead) {
534 if ((temp->master == file_priv->master) &&
535 (temp != file_priv))
536 temp->authenticated = 0;
537 }
bd1b331f 538
fda714c2
TH
539 /**
540 * Since the master is disappearing, so is the
541 * possibility to lock.
542 */
543
544 if (master->lock.hw_lock) {
545 if (dev->sigdata.lock == master->lock.hw_lock)
546 dev->sigdata.lock = NULL;
547 master->lock.hw_lock = NULL;
548 master->lock.file_priv = NULL;
549 wake_up_interruptible_all(&master->lock.lock_queue);
550 }
551
7c1c2871
DA
552 if (file_priv->minor->master == file_priv->master) {
553 /* drop the reference held my the minor */
862302ff
TH
554 if (dev->driver->master_drop)
555 dev->driver->master_drop(dev, file_priv, true);
7c1c2871
DA
556 drm_master_put(&file_priv->minor->master);
557 }
1da177e4 558 }
7c1c2871 559
949c4a34
IH
560 BUG_ON(dev->dev_mapping == NULL);
561 iput(container_of(dev->dev_mapping, struct inode, i_data));
562
7c1c2871 563 /* drop the reference held my the file priv */
1793126f
DH
564 if (file_priv->master)
565 drm_master_put(&file_priv->master);
7c1c2871 566 file_priv->is_master = 0;
6c340eac 567 list_del(&file_priv->lhead);
30e2fb18 568 mutex_unlock(&dev->struct_mutex);
b5e89ed5 569
22eae947 570 if (dev->driver->postclose)
6c340eac 571 dev->driver->postclose(dev, file_priv);
3248877e 572
319c933c 573
3248877e
DA
574 if (drm_core_check_feature(dev, DRIVER_PRIME))
575 drm_prime_destroy_file_private(&file_priv->prime);
576
5fce5e0b 577 put_pid(file_priv->pid);
9a298b2a 578 kfree(file_priv);
1da177e4
LT
579
580 /* ========================================================
581 * End inline drm_release
582 */
583
b5e89ed5 584 if (!--dev->open_count) {
7c1c2871
DA
585 if (atomic_read(&dev->ioctl_count)) {
586 DRM_ERROR("Device busy: %d\n",
587 atomic_read(&dev->ioctl_count));
58374713 588 retcode = -EBUSY;
1a72d65d
CW
589 } else
590 retcode = drm_lastclose(dev);
2c07a21d
DA
591 if (drm_device_is_unplugged(dev))
592 drm_put_dev(dev);
1da177e4 593 }
58374713 594 mutex_unlock(&drm_global_mutex);
1da177e4
LT
595
596 return retcode;
597}
598EXPORT_SYMBOL(drm_release);
599
c9a9c5e0
KH
600static bool
601drm_dequeue_event(struct drm_file *file_priv,
602 size_t total, size_t max, struct drm_pending_event **out)
603{
604 struct drm_device *dev = file_priv->minor->dev;
605 struct drm_pending_event *e;
606 unsigned long flags;
607 bool ret = false;
608
609 spin_lock_irqsave(&dev->event_lock, flags);
610
611 *out = NULL;
612 if (list_empty(&file_priv->event_list))
613 goto out;
614 e = list_first_entry(&file_priv->event_list,
615 struct drm_pending_event, link);
616 if (e->event->length + total > max)
617 goto out;
618
619 file_priv->event_space += e->event->length;
620 list_del(&e->link);
621 *out = e;
622 ret = true;
623
624out:
625 spin_unlock_irqrestore(&dev->event_lock, flags);
626 return ret;
627}
628
629ssize_t drm_read(struct file *filp, char __user *buffer,
630 size_t count, loff_t *offset)
631{
632 struct drm_file *file_priv = filp->private_data;
633 struct drm_pending_event *e;
634 size_t total;
635 ssize_t ret;
636
637 ret = wait_event_interruptible(file_priv->event_wait,
638 !list_empty(&file_priv->event_list));
639 if (ret < 0)
640 return ret;
641
642 total = 0;
643 while (drm_dequeue_event(file_priv, total, count, &e)) {
644 if (copy_to_user(buffer + total,
645 e->event, e->event->length)) {
646 total = -EFAULT;
647 break;
648 }
649
650 total += e->event->length;
651 e->destroy(e);
652 }
653
654 return total;
655}
656EXPORT_SYMBOL(drm_read);
657
1da177e4
LT
658unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait)
659{
c9a9c5e0
KH
660 struct drm_file *file_priv = filp->private_data;
661 unsigned int mask = 0;
662
663 poll_wait(filp, &file_priv->event_wait, wait);
664
665 if (!list_empty(&file_priv->event_list))
666 mask |= POLLIN | POLLRDNORM;
667
668 return mask;
1da177e4 669}
b5e89ed5 670EXPORT_SYMBOL(drm_poll);
This page took 0.611562 seconds and 5 git commands to generate.