Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 2 | * \file drm_fops.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * File operations for DRM |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 4 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 37 | #include <drm/drmP.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/poll.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/slab.h> |
Paul Gortmaker | e0cd360 | 2011-08-30 11:04:30 -0400 | [diff] [blame] | 40 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
David Herrmann | 0d63988 | 2014-02-24 15:53:25 +0100 | [diff] [blame] | 42 | /* from BKL pushdown */ |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 43 | DEFINE_MUTEX(drm_global_mutex); |
Ben Skeggs | e3461a2 | 2010-08-26 14:58:57 +1000 | [diff] [blame] | 44 | EXPORT_SYMBOL(drm_global_mutex); |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 45 | |
Ilija Hadzic | 1dcc0ce | 2014-04-28 10:23:57 -0400 | [diff] [blame] | 46 | static int drm_open_helper(struct file *filp, struct drm_minor *minor); |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 47 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 48 | static int drm_setup(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | int ret; |
| 51 | |
Daniel Vetter | 7d14bb6b | 2013-08-08 15:41:15 +0200 | [diff] [blame] | 52 | if (dev->driver->firstopen && |
| 53 | !drm_core_check_feature(dev, DRIVER_MODESET)) { |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 54 | ret = dev->driver->firstopen(dev); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 55 | if (ret != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | return ret; |
| 57 | } |
| 58 | |
Daniel Vetter | f336ab7 | 2013-08-08 15:41:35 +0200 | [diff] [blame] | 59 | ret = drm_legacy_dma_setup(dev); |
| 60 | if (ret < 0) |
| 61 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 64 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Open file. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 70 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | * \param inode device inode |
| 72 | * \param filp file pointer. |
| 73 | * \return zero on success or a negative number on failure. |
| 74 | * |
| 75 | * Searches the DRM device with the same minor number, calls open_helper(), and |
| 76 | * increments the device open count. If the open count was previous at zero, |
| 77 | * i.e., it's the first that the device is open, then calls setup(). |
| 78 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 79 | int drm_open(struct inode *inode, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 81 | struct drm_device *dev; |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 82 | struct drm_minor *minor; |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 83 | int retcode; |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 84 | int need_setup = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 86 | minor = drm_minor_acquire(iminor(inode)); |
| 87 | if (IS_ERR(minor)) |
| 88 | return PTR_ERR(minor); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 89 | |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 90 | dev = minor->dev; |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 91 | if (!dev->open_count++) |
| 92 | need_setup = 1; |
Jesse Barnes | a2c0a97 | 2008-11-05 10:31:53 -0800 | [diff] [blame] | 93 | |
David Herrmann | 6796cb1 | 2014-01-03 14:24:19 +0100 | [diff] [blame] | 94 | /* share address_space across all char-devs of a single device */ |
| 95 | filp->f_mapping = dev->anon_inode->i_mapping; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 96 | |
Ilija Hadzic | 1dcc0ce | 2014-04-28 10:23:57 -0400 | [diff] [blame] | 97 | retcode = drm_open_helper(filp, minor); |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 98 | if (retcode) |
| 99 | goto err_undo; |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 100 | if (need_setup) { |
| 101 | retcode = drm_setup(dev); |
| 102 | if (retcode) |
| 103 | goto err_undo; |
| 104 | } |
| 105 | return 0; |
| 106 | |
| 107 | err_undo: |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 108 | dev->open_count--; |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 109 | drm_minor_release(minor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | return retcode; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 111 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | EXPORT_SYMBOL(drm_open); |
| 113 | |
| 114 | /** |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 115 | * File \c open operation. |
| 116 | * |
| 117 | * \param inode device inode. |
| 118 | * \param filp file pointer. |
| 119 | * |
| 120 | * Puts the dev->fops corresponding to the device minor number into |
| 121 | * \p filp, call the \c open method, and restore the file operations. |
| 122 | */ |
| 123 | int drm_stub_open(struct inode *inode, struct file *filp) |
| 124 | { |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 125 | struct drm_device *dev; |
Dave Airlie | 2c14f28 | 2008-04-21 16:47:32 +1000 | [diff] [blame] | 126 | struct drm_minor *minor; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 127 | int err = -ENODEV; |
Al Viro | e84f9e5 | 2013-09-22 14:17:15 -0400 | [diff] [blame] | 128 | const struct file_operations *new_fops; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 129 | |
| 130 | DRM_DEBUG("\n"); |
| 131 | |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 132 | mutex_lock(&drm_global_mutex); |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 133 | minor = drm_minor_acquire(iminor(inode)); |
| 134 | if (IS_ERR(minor)) |
| 135 | goto out_unlock; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 136 | |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 137 | dev = minor->dev; |
Al Viro | e84f9e5 | 2013-09-22 14:17:15 -0400 | [diff] [blame] | 138 | new_fops = fops_get(dev->driver->fops); |
| 139 | if (!new_fops) |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 140 | goto out_release; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 141 | |
Al Viro | e84f9e5 | 2013-09-22 14:17:15 -0400 | [diff] [blame] | 142 | replace_fops(filp, new_fops); |
| 143 | if (filp->f_op->open) |
| 144 | err = filp->f_op->open(inode, filp); |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 145 | |
| 146 | out_release: |
| 147 | drm_minor_release(minor); |
| 148 | out_unlock: |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 149 | mutex_unlock(&drm_global_mutex); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 150 | return err; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Check whether DRI will run on this CPU. |
| 155 | * |
| 156 | * \return non-zero if the DRI will run on this CPU, or zero otherwise. |
| 157 | */ |
| 158 | static int drm_cpu_valid(void) |
| 159 | { |
| 160 | #if defined(__i386__) |
| 161 | if (boot_cpu_data.x86 == 3) |
| 162 | return 0; /* No cmpxchg on a 386 */ |
| 163 | #endif |
| 164 | #if defined(__sparc__) && !defined(__sparc_v9__) |
| 165 | return 0; /* No cmpxchg before v9 sparc. */ |
| 166 | #endif |
| 167 | return 1; |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Called whenever a process opens /dev/drm. |
| 172 | * |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 173 | * \param filp file pointer. |
David Herrmann | f4aede2 | 2014-01-29 10:18:02 +0100 | [diff] [blame] | 174 | * \param minor acquired minor-object. |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 175 | * \return zero on success or a negative number on failure. |
| 176 | * |
| 177 | * Creates and initializes a drm_file structure for the file private data in \p |
| 178 | * filp and add it into the double linked list in \p dev. |
| 179 | */ |
Ilija Hadzic | 1dcc0ce | 2014-04-28 10:23:57 -0400 | [diff] [blame] | 180 | static int drm_open_helper(struct file *filp, struct drm_minor *minor) |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 181 | { |
David Herrmann | f4aede2 | 2014-01-29 10:18:02 +0100 | [diff] [blame] | 182 | struct drm_device *dev = minor->dev; |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 183 | struct drm_file *priv; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 184 | int ret; |
| 185 | |
| 186 | if (filp->f_flags & O_EXCL) |
| 187 | return -EBUSY; /* No exclusive opens */ |
| 188 | if (!drm_cpu_valid()) |
| 189 | return -EINVAL; |
Dave Airlie | 13bb9cc | 2012-09-12 15:55:05 +1000 | [diff] [blame] | 190 | if (dev->switch_power_state != DRM_SWITCH_POWER_ON && dev->switch_power_state != DRM_SWITCH_POWER_DYNAMIC_OFF) |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 191 | return -EINVAL; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 192 | |
David Herrmann | f4aede2 | 2014-01-29 10:18:02 +0100 | [diff] [blame] | 193 | DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor->index); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 194 | |
Julia Lawall | 6ebc22e | 2010-05-13 21:58:56 +0200 | [diff] [blame] | 195 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 196 | if (!priv) |
| 197 | return -ENOMEM; |
| 198 | |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 199 | filp->private_data = priv; |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 200 | priv->filp = filp; |
David Howells | 2df68b4 | 2008-09-02 11:03:14 +1000 | [diff] [blame] | 201 | priv->uid = current_euid(); |
Eric W. Biederman | 5fce5e0 | 2012-02-07 16:47:26 -0800 | [diff] [blame] | 202 | priv->pid = get_pid(task_pid(current)); |
David Herrmann | f4aede2 | 2014-01-29 10:18:02 +0100 | [diff] [blame] | 203 | priv->minor = minor; |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 204 | |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 205 | /* for compatibility root is always authenticated */ |
Chris Wilson | 1020dc6 | 2013-10-29 08:55:57 +0000 | [diff] [blame] | 206 | priv->always_authenticated = capable(CAP_SYS_ADMIN); |
| 207 | priv->authenticated = priv->always_authenticated; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 208 | priv->lock_count = 0; |
| 209 | |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 210 | INIT_LIST_HEAD(&priv->lhead); |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 211 | INIT_LIST_HEAD(&priv->fbs); |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 212 | mutex_init(&priv->fbs_lock); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 213 | INIT_LIST_HEAD(&priv->event_list); |
| 214 | init_waitqueue_head(&priv->event_wait); |
| 215 | priv->event_space = 4096; /* set aside 4k for event buffer */ |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 216 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 217 | if (dev->driver->driver_features & DRIVER_GEM) |
| 218 | drm_gem_open(dev, priv); |
| 219 | |
Dave Airlie | 3248877 | 2011-11-25 15:21:02 +0000 | [diff] [blame] | 220 | if (drm_core_check_feature(dev, DRIVER_PRIME)) |
| 221 | drm_prime_init_file_private(&priv->prime); |
| 222 | |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 223 | if (dev->driver->open) { |
| 224 | ret = dev->driver->open(dev, priv); |
| 225 | if (ret < 0) |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 226 | goto out_prime_destroy; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 227 | } |
| 228 | |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 229 | /* if there is no current master make this fd it, but do not create |
| 230 | * any master object for render clients */ |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 231 | mutex_lock(&dev->master_mutex); |
Thomas Hellstrom | 4368305 | 2014-03-13 11:07:44 +0100 | [diff] [blame] | 232 | if (drm_is_primary_client(priv) && !priv->minor->master) { |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 233 | /* create a new master */ |
| 234 | priv->minor->master = drm_master_create(priv->minor); |
| 235 | if (!priv->minor->master) { |
| 236 | ret = -ENOMEM; |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 237 | goto out_close; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | priv->is_master = 1; |
| 241 | /* take another reference for the copy in the local file priv */ |
| 242 | priv->master = drm_master_get(priv->minor->master); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 243 | priv->authenticated = 1; |
| 244 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 245 | if (dev->driver->master_create) { |
| 246 | ret = dev->driver->master_create(dev, priv->master); |
| 247 | if (ret) { |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 248 | /* drop both references if this fails */ |
| 249 | drm_master_put(&priv->minor->master); |
| 250 | drm_master_put(&priv->master); |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 251 | goto out_close; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 252 | } |
| 253 | } |
Thomas Hellstrom | 862302f | 2009-12-02 18:15:25 +0000 | [diff] [blame] | 254 | if (dev->driver->master_set) { |
| 255 | ret = dev->driver->master_set(dev, priv, true); |
| 256 | if (ret) { |
| 257 | /* drop both references if this fails */ |
| 258 | drm_master_put(&priv->minor->master); |
| 259 | drm_master_put(&priv->master); |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 260 | goto out_close; |
Thomas Hellstrom | 862302f | 2009-12-02 18:15:25 +0000 | [diff] [blame] | 261 | } |
| 262 | } |
Thomas Hellstrom | 4368305 | 2014-03-13 11:07:44 +0100 | [diff] [blame] | 263 | } else if (drm_is_primary_client(priv)) { |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 264 | /* get a reference to the master */ |
| 265 | priv->master = drm_master_get(priv->minor->master); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 266 | } |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 267 | mutex_unlock(&dev->master_mutex); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 268 | |
| 269 | mutex_lock(&dev->struct_mutex); |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 270 | list_add(&priv->lhead, &dev->filelist); |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 271 | mutex_unlock(&dev->struct_mutex); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 272 | |
| 273 | #ifdef __alpha__ |
| 274 | /* |
| 275 | * Default the hose |
| 276 | */ |
| 277 | if (!dev->hose) { |
| 278 | struct pci_dev *pci_dev; |
| 279 | pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL); |
| 280 | if (pci_dev) { |
| 281 | dev->hose = pci_dev->sysdata; |
| 282 | pci_dev_put(pci_dev); |
| 283 | } |
| 284 | if (!dev->hose) { |
Yijing Wang | 59c1ad3b | 2014-02-13 21:14:00 +0800 | [diff] [blame] | 285 | struct pci_bus *b = list_entry(pci_root_buses.next, |
| 286 | struct pci_bus, node); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 287 | if (b) |
| 288 | dev->hose = b->sysdata; |
| 289 | } |
| 290 | } |
| 291 | #endif |
| 292 | |
| 293 | return 0; |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 294 | |
| 295 | out_close: |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 296 | mutex_unlock(&dev->master_mutex); |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 297 | if (dev->driver->postclose) |
| 298 | dev->driver->postclose(dev, priv); |
| 299 | out_prime_destroy: |
| 300 | if (drm_core_check_feature(dev, DRIVER_PRIME)) |
| 301 | drm_prime_destroy_file_private(&priv->prime); |
| 302 | if (dev->driver->driver_features & DRIVER_GEM) |
| 303 | drm_gem_release(dev, priv); |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 304 | put_pid(priv->pid); |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 305 | kfree(priv); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 306 | filp->private_data = NULL; |
| 307 | return ret; |
| 308 | } |
| 309 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 310 | static void drm_master_release(struct drm_device *dev, struct file *filp) |
| 311 | { |
| 312 | struct drm_file *file_priv = filp->private_data; |
| 313 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 314 | if (drm_i_have_hw_lock(dev, file_priv)) { |
| 315 | DRM_DEBUG("File %p released, freeing lock for context %d\n", |
| 316 | filp, _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock)); |
| 317 | drm_lock_free(&file_priv->master->lock, |
| 318 | _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock)); |
| 319 | } |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 320 | } |
| 321 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 322 | static void drm_events_release(struct drm_file *file_priv) |
| 323 | { |
| 324 | struct drm_device *dev = file_priv->minor->dev; |
| 325 | struct drm_pending_event *e, *et; |
| 326 | struct drm_pending_vblank_event *v, *vt; |
| 327 | unsigned long flags; |
| 328 | |
| 329 | spin_lock_irqsave(&dev->event_lock, flags); |
| 330 | |
| 331 | /* Remove pending flips */ |
| 332 | list_for_each_entry_safe(v, vt, &dev->vblank_event_list, base.link) |
| 333 | if (v->base.file_priv == file_priv) { |
| 334 | list_del(&v->base.link); |
| 335 | drm_vblank_put(dev, v->pipe); |
| 336 | v->base.destroy(&v->base); |
| 337 | } |
| 338 | |
| 339 | /* Remove unconsumed events */ |
YoungJun Cho | 1dda680 | 2013-10-29 20:30:26 +0900 | [diff] [blame] | 340 | list_for_each_entry_safe(e, et, &file_priv->event_list, link) { |
| 341 | list_del(&e->link); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 342 | e->destroy(e); |
YoungJun Cho | 1dda680 | 2013-10-29 20:30:26 +0900 | [diff] [blame] | 343 | } |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 344 | |
| 345 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 346 | } |
| 347 | |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 348 | /** |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 349 | * drm_legacy_dev_reinit |
| 350 | * |
| 351 | * Reinitializes a legacy/ums drm device in it's lastclose function. |
| 352 | */ |
| 353 | static void drm_legacy_dev_reinit(struct drm_device *dev) |
| 354 | { |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 355 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 356 | return; |
| 357 | |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 358 | dev->sigdata.lock = NULL; |
| 359 | |
| 360 | dev->context_flag = 0; |
| 361 | dev->last_context = 0; |
| 362 | dev->if_version = 0; |
| 363 | } |
| 364 | |
| 365 | /** |
| 366 | * Take down the DRM device. |
| 367 | * |
| 368 | * \param dev DRM device structure. |
| 369 | * |
| 370 | * Frees every resource in \p dev. |
| 371 | * |
| 372 | * \sa drm_device |
| 373 | */ |
| 374 | int drm_lastclose(struct drm_device * dev) |
| 375 | { |
| 376 | struct drm_vma_entry *vma, *vma_temp; |
| 377 | |
| 378 | DRM_DEBUG("\n"); |
| 379 | |
| 380 | if (dev->driver->lastclose) |
| 381 | dev->driver->lastclose(dev); |
| 382 | DRM_DEBUG("driver lastclose completed\n"); |
| 383 | |
| 384 | if (dev->irq_enabled && !drm_core_check_feature(dev, DRIVER_MODESET)) |
| 385 | drm_irq_uninstall(dev); |
| 386 | |
| 387 | mutex_lock(&dev->struct_mutex); |
| 388 | |
| 389 | drm_agp_clear(dev); |
| 390 | |
| 391 | drm_legacy_sg_cleanup(dev); |
| 392 | |
| 393 | /* Clear vma list (only built for debugging) */ |
| 394 | list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) { |
| 395 | list_del(&vma->head); |
| 396 | kfree(vma); |
| 397 | } |
| 398 | |
| 399 | drm_legacy_dma_takedown(dev); |
| 400 | |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 401 | mutex_unlock(&dev->struct_mutex); |
| 402 | |
| 403 | drm_legacy_dev_reinit(dev); |
| 404 | |
| 405 | DRM_DEBUG("lastclose completed\n"); |
| 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | * Release file. |
| 411 | * |
| 412 | * \param inode device inode |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 413 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | * \return zero on success or a negative number on failure. |
| 415 | * |
| 416 | * If the hardware lock is held then free it, and take it again for the kernel |
| 417 | * context since it's necessary to reclaim buffers. Unlink the file private |
| 418 | * data from its list and free it. Decreases the open count and if it reaches |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 419 | * zero calls drm_lastclose(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 421 | int drm_release(struct inode *inode, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | { |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 423 | struct drm_file *file_priv = filp->private_data; |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 424 | struct drm_minor *minor = file_priv->minor; |
| 425 | struct drm_device *dev = minor->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | int retcode = 0; |
| 427 | |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 428 | mutex_lock(&drm_global_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 430 | DRM_DEBUG("open_count = %d\n", dev->open_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 432 | if (dev->driver->preclose) |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 433 | dev->driver->preclose(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
| 435 | /* ======================================================== |
| 436 | * Begin inline drm_release |
| 437 | */ |
| 438 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 439 | DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 440 | task_pid_nr(current), |
David Herrmann | 5817878 | 2014-01-29 13:12:31 +0100 | [diff] [blame] | 441 | (long)old_encode_dev(file_priv->minor->kdev->devt), |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 442 | dev->open_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
Thomas Hellstrom | 598781d | 2012-01-24 18:54:21 +0100 | [diff] [blame] | 444 | /* Release any auth tokens that might point to this file_priv, |
| 445 | (do that under the drm_global_mutex) */ |
| 446 | if (file_priv->magic) |
| 447 | (void) drm_remove_magic(file_priv->master, file_priv->magic); |
| 448 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 449 | /* if the master has gone away we can't do anything with the lock */ |
| 450 | if (file_priv->minor->master) |
| 451 | drm_master_release(dev, filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Daniel Vetter | 67cb4b4 | 2011-10-26 00:31:26 +0200 | [diff] [blame] | 453 | if (drm_core_check_feature(dev, DRIVER_HAVE_DMA)) |
| 454 | drm_core_reclaim_buffers(dev, file_priv); |
| 455 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 456 | drm_events_release(file_priv); |
| 457 | |
Kristian Høgsberg | ea39f83 | 2009-02-12 14:37:56 -0500 | [diff] [blame] | 458 | if (dev->driver->driver_features & DRIVER_MODESET) |
| 459 | drm_fb_release(file_priv); |
| 460 | |
Prathyush | 4e47e02 | 2012-04-14 17:22:13 +0530 | [diff] [blame] | 461 | if (dev->driver->driver_features & DRIVER_GEM) |
| 462 | drm_gem_release(dev, file_priv); |
| 463 | |
Dave Airlie | c21eb21 | 2013-09-20 08:32:59 +1000 | [diff] [blame] | 464 | mutex_lock(&dev->ctxlist_mutex); |
| 465 | if (!list_empty(&dev->ctxlist)) { |
| 466 | struct drm_ctx_list *pos, *n; |
| 467 | |
| 468 | list_for_each_entry_safe(pos, n, &dev->ctxlist, head) { |
| 469 | if (pos->tag == file_priv && |
| 470 | pos->handle != DRM_KERNEL_CONTEXT) { |
| 471 | if (dev->driver->context_dtor) |
| 472 | dev->driver->context_dtor(dev, |
| 473 | pos->handle); |
| 474 | |
| 475 | drm_ctxbitmap_free(dev, pos->handle); |
| 476 | |
| 477 | list_del(&pos->head); |
| 478 | kfree(pos); |
Dave Airlie | c21eb21 | 2013-09-20 08:32:59 +1000 | [diff] [blame] | 479 | } |
| 480 | } |
| 481 | } |
| 482 | mutex_unlock(&dev->ctxlist_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 484 | mutex_lock(&dev->master_mutex); |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 485 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 486 | if (file_priv->is_master) { |
Thomas Hellstrom | fda714c | 2009-03-02 11:10:56 +0100 | [diff] [blame] | 487 | struct drm_master *master = file_priv->master; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 488 | struct drm_file *temp; |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 489 | |
| 490 | mutex_lock(&dev->struct_mutex); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 491 | list_for_each_entry(temp, &dev->filelist, lhead) { |
| 492 | if ((temp->master == file_priv->master) && |
| 493 | (temp != file_priv)) |
Chris Wilson | 1020dc6 | 2013-10-29 08:55:57 +0000 | [diff] [blame] | 494 | temp->authenticated = temp->always_authenticated; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 495 | } |
| 496 | |
Thomas Hellstrom | fda714c | 2009-03-02 11:10:56 +0100 | [diff] [blame] | 497 | /** |
| 498 | * Since the master is disappearing, so is the |
| 499 | * possibility to lock. |
| 500 | */ |
| 501 | |
| 502 | if (master->lock.hw_lock) { |
| 503 | if (dev->sigdata.lock == master->lock.hw_lock) |
| 504 | dev->sigdata.lock = NULL; |
| 505 | master->lock.hw_lock = NULL; |
| 506 | master->lock.file_priv = NULL; |
| 507 | wake_up_interruptible_all(&master->lock.lock_queue); |
| 508 | } |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 509 | mutex_unlock(&dev->struct_mutex); |
Thomas Hellstrom | fda714c | 2009-03-02 11:10:56 +0100 | [diff] [blame] | 510 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 511 | if (file_priv->minor->master == file_priv->master) { |
| 512 | /* drop the reference held my the minor */ |
Thomas Hellstrom | 862302f | 2009-12-02 18:15:25 +0000 | [diff] [blame] | 513 | if (dev->driver->master_drop) |
| 514 | dev->driver->master_drop(dev, file_priv, true); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 515 | drm_master_put(&file_priv->minor->master); |
| 516 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 518 | |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 519 | /* drop the master reference held by the file priv */ |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 520 | if (file_priv->master) |
| 521 | drm_master_put(&file_priv->master); |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 522 | file_priv->is_master = 0; |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 523 | mutex_unlock(&dev->master_mutex); |
| 524 | |
| 525 | mutex_lock(&dev->struct_mutex); |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 526 | list_del(&file_priv->lhead); |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 527 | mutex_unlock(&dev->struct_mutex); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 528 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 529 | if (dev->driver->postclose) |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 530 | dev->driver->postclose(dev, file_priv); |
Dave Airlie | 3248877 | 2011-11-25 15:21:02 +0000 | [diff] [blame] | 531 | |
Daniel Vetter | 319c933 | 2013-08-15 00:02:46 +0200 | [diff] [blame] | 532 | |
Dave Airlie | 3248877 | 2011-11-25 15:21:02 +0000 | [diff] [blame] | 533 | if (drm_core_check_feature(dev, DRIVER_PRIME)) |
| 534 | drm_prime_destroy_file_private(&file_priv->prime); |
| 535 | |
Eric W. Biederman | 5fce5e0 | 2012-02-07 16:47:26 -0800 | [diff] [blame] | 536 | put_pid(file_priv->pid); |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 537 | kfree(file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
| 539 | /* ======================================================== |
| 540 | * End inline drm_release |
| 541 | */ |
| 542 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 543 | if (!--dev->open_count) { |
Daniel Vetter | 43d1337 | 2013-12-11 11:35:08 +0100 | [diff] [blame] | 544 | retcode = drm_lastclose(dev); |
Dave Airlie | 2c07a21 | 2012-02-20 14:18:07 +0000 | [diff] [blame] | 545 | if (drm_device_is_unplugged(dev)) |
| 546 | drm_put_dev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 548 | mutex_unlock(&drm_global_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 550 | drm_minor_release(minor); |
| 551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | return retcode; |
| 553 | } |
| 554 | EXPORT_SYMBOL(drm_release); |
| 555 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 556 | static bool |
| 557 | drm_dequeue_event(struct drm_file *file_priv, |
| 558 | size_t total, size_t max, struct drm_pending_event **out) |
| 559 | { |
| 560 | struct drm_device *dev = file_priv->minor->dev; |
| 561 | struct drm_pending_event *e; |
| 562 | unsigned long flags; |
| 563 | bool ret = false; |
| 564 | |
| 565 | spin_lock_irqsave(&dev->event_lock, flags); |
| 566 | |
| 567 | *out = NULL; |
| 568 | if (list_empty(&file_priv->event_list)) |
| 569 | goto out; |
| 570 | e = list_first_entry(&file_priv->event_list, |
| 571 | struct drm_pending_event, link); |
| 572 | if (e->event->length + total > max) |
| 573 | goto out; |
| 574 | |
| 575 | file_priv->event_space += e->event->length; |
| 576 | list_del(&e->link); |
| 577 | *out = e; |
| 578 | ret = true; |
| 579 | |
| 580 | out: |
| 581 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 582 | return ret; |
| 583 | } |
| 584 | |
| 585 | ssize_t drm_read(struct file *filp, char __user *buffer, |
| 586 | size_t count, loff_t *offset) |
| 587 | { |
| 588 | struct drm_file *file_priv = filp->private_data; |
| 589 | struct drm_pending_event *e; |
| 590 | size_t total; |
| 591 | ssize_t ret; |
| 592 | |
| 593 | ret = wait_event_interruptible(file_priv->event_wait, |
| 594 | !list_empty(&file_priv->event_list)); |
| 595 | if (ret < 0) |
| 596 | return ret; |
| 597 | |
| 598 | total = 0; |
| 599 | while (drm_dequeue_event(file_priv, total, count, &e)) { |
| 600 | if (copy_to_user(buffer + total, |
| 601 | e->event, e->event->length)) { |
| 602 | total = -EFAULT; |
| 603 | break; |
| 604 | } |
| 605 | |
| 606 | total += e->event->length; |
| 607 | e->destroy(e); |
| 608 | } |
| 609 | |
| 610 | return total; |
| 611 | } |
| 612 | EXPORT_SYMBOL(drm_read); |
| 613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait) |
| 615 | { |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 616 | struct drm_file *file_priv = filp->private_data; |
| 617 | unsigned int mask = 0; |
| 618 | |
| 619 | poll_wait(filp, &file_priv->event_wait, wait); |
| 620 | |
| 621 | if (!list_empty(&file_priv->event_list)) |
| 622 | mask |= POLLIN | POLLRDNORM; |
| 623 | |
| 624 | return mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 626 | EXPORT_SYMBOL(drm_poll); |