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