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