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