Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [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> |
David Herrmann | e7b96070 | 2014-07-24 12:10:04 +0200 | [diff] [blame] | 41 | #include "drm_legacy.h" |
Daniel Vetter | 67d0ec4 | 2014-09-10 12:43:53 +0200 | [diff] [blame] | 42 | #include "drm_internal.h" |
Daniel Vetter | 8106554 | 2016-06-21 10:54:13 +0200 | [diff] [blame] | 43 | #include "drm_crtc_internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
David Herrmann | 0d63988 | 2014-02-24 15:53:25 +0100 | [diff] [blame] | 45 | /* from BKL pushdown */ |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 46 | DEFINE_MUTEX(drm_global_mutex); |
| 47 | |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 48 | /** |
| 49 | * DOC: file operations |
| 50 | * |
| 51 | * Drivers must define the file operations structure that forms the DRM |
| 52 | * userspace API entry point, even though most of those operations are |
| 53 | * implemented in the DRM core. The mandatory functions are drm_open(), |
| 54 | * drm_read(), drm_ioctl() and drm_compat_ioctl if CONFIG_COMPAT is enabled. |
| 55 | * Drivers which implement private ioctls that require 32/64 bit compatibility |
| 56 | * support must provided their onw .compat_ioctl() handler that processes |
| 57 | * private ioctls and calls drm_compat_ioctl() for core ioctls. |
| 58 | * |
| 59 | * In addition drm_read() and drm_poll() provide support for DRM events. DRM |
| 60 | * events are a generic and extensible means to send asynchronous events to |
| 61 | * userspace through the file descriptor. They are used to send vblank event and |
| 62 | * page flip completions by the KMS API. But drivers can also use it for their |
| 63 | * own needs, e.g. to signal completion of rendering. |
| 64 | * |
| 65 | * The memory mapping implementation will vary depending on how the driver |
| 66 | * manages memory. Legacy drivers will use the deprecated drm_legacy_mmap() |
| 67 | * function, modern drivers should use one of the provided memory-manager |
| 68 | * specific implementations. For GEM-based drivers this is drm_gem_mmap(). |
| 69 | * |
| 70 | * No other file operations are supported by the DRM userspace API. Overall the |
Daniel Vetter | da5335b | 2016-05-31 22:55:13 +0200 | [diff] [blame] | 71 | * following is an example #file_operations structure:: |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 72 | * |
| 73 | * static const example_drm_fops = { |
| 74 | * .owner = THIS_MODULE, |
| 75 | * .open = drm_open, |
| 76 | * .release = drm_release, |
| 77 | * .unlocked_ioctl = drm_ioctl, |
| 78 | * #ifdef CONFIG_COMPAT |
| 79 | * .compat_ioctl = drm_compat_ioctl, |
| 80 | * #endif |
| 81 | * .poll = drm_poll, |
| 82 | * .read = drm_read, |
| 83 | * .llseek = no_llseek, |
| 84 | * .mmap = drm_gem_mmap, |
| 85 | * }; |
| 86 | */ |
| 87 | |
Ilija Hadzic | 1dcc0ce | 2014-04-28 10:23:57 -0400 | [diff] [blame] | 88 | static int drm_open_helper(struct file *filp, struct drm_minor *minor); |
Dave Airlie | c94f702 | 2005-07-07 21:03:38 +1000 | [diff] [blame] | 89 | |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 90 | static int drm_setup(struct drm_device * dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | int ret; |
| 93 | |
Daniel Vetter | 7d14bb6b | 2013-08-08 15:41:15 +0200 | [diff] [blame] | 94 | if (dev->driver->firstopen && |
Daniel Vetter | fa53864 | 2016-08-03 21:11:10 +0200 | [diff] [blame] | 95 | drm_core_check_feature(dev, DRIVER_LEGACY)) { |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 96 | ret = dev->driver->firstopen(dev); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 97 | if (ret != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | return ret; |
| 99 | } |
| 100 | |
Daniel Vetter | f336ab7 | 2013-08-08 15:41:35 +0200 | [diff] [blame] | 101 | ret = drm_legacy_dma_setup(dev); |
| 102 | if (ret < 0) |
| 103 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 106 | DRM_DEBUG("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | /** |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 111 | * drm_open - open method for DRM file |
| 112 | * @inode: device inode |
| 113 | * @filp: file pointer. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 114 | * |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 115 | * This function must be used by drivers as their .open() #file_operations |
| 116 | * method. It looks up the correct DRM device and instantiates all the per-file |
| 117 | * resources for it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | * |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 119 | * RETURNS: |
| 120 | * |
| 121 | * 0 on success or negative errno value on falure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 123 | int drm_open(struct inode *inode, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 127 | int retcode; |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 128 | int need_setup = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 130 | minor = drm_minor_acquire(iminor(inode)); |
| 131 | if (IS_ERR(minor)) |
| 132 | return PTR_ERR(minor); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 133 | |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 134 | dev = minor->dev; |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 135 | if (!dev->open_count++) |
| 136 | need_setup = 1; |
Jesse Barnes | a2c0a97 | 2008-11-05 10:31:53 -0800 | [diff] [blame] | 137 | |
David Herrmann | 6796cb1 | 2014-01-03 14:24:19 +0100 | [diff] [blame] | 138 | /* share address_space across all char-devs of a single device */ |
| 139 | filp->f_mapping = dev->anon_inode->i_mapping; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 140 | |
Ilija Hadzic | 1dcc0ce | 2014-04-28 10:23:57 -0400 | [diff] [blame] | 141 | retcode = drm_open_helper(filp, minor); |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 142 | if (retcode) |
| 143 | goto err_undo; |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 144 | if (need_setup) { |
| 145 | retcode = drm_setup(dev); |
| 146 | if (retcode) |
| 147 | goto err_undo; |
| 148 | } |
| 149 | return 0; |
| 150 | |
| 151 | err_undo: |
Ilija Hadzic | fdb40a0 | 2012-10-29 17:35:01 +0000 | [diff] [blame] | 152 | dev->open_count--; |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 153 | drm_minor_release(minor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | return retcode; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 155 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | EXPORT_SYMBOL(drm_open); |
| 157 | |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 158 | /* |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 159 | * Check whether DRI will run on this CPU. |
| 160 | * |
| 161 | * \return non-zero if the DRI will run on this CPU, or zero otherwise. |
| 162 | */ |
| 163 | static int drm_cpu_valid(void) |
| 164 | { |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 165 | #if defined(__sparc__) && !defined(__sparc_v9__) |
| 166 | return 0; /* No cmpxchg before v9 sparc. */ |
| 167 | #endif |
| 168 | return 1; |
| 169 | } |
| 170 | |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 171 | /* |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 172 | * Called whenever a process opens /dev/drm. |
| 173 | * |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 174 | * \param filp file pointer. |
David Herrmann | f4aede2 | 2014-01-29 10:18:02 +0100 | [diff] [blame] | 175 | * \param minor acquired minor-object. |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 176 | * \return zero on success or a negative number on failure. |
| 177 | * |
| 178 | * Creates and initializes a drm_file structure for the file private data in \p |
| 179 | * filp and add it into the double linked list in \p dev. |
| 180 | */ |
Ilija Hadzic | 1dcc0ce | 2014-04-28 10:23:57 -0400 | [diff] [blame] | 181 | static int drm_open_helper(struct file *filp, struct drm_minor *minor) |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 182 | { |
David Herrmann | f4aede2 | 2014-01-29 10:18:02 +0100 | [diff] [blame] | 183 | struct drm_device *dev = minor->dev; |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 184 | struct drm_file *priv; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 185 | int ret; |
| 186 | |
| 187 | if (filp->f_flags & O_EXCL) |
| 188 | return -EBUSY; /* No exclusive opens */ |
| 189 | if (!drm_cpu_valid()) |
| 190 | return -EINVAL; |
Dave Airlie | 13bb9cc | 2012-09-12 15:55:05 +1000 | [diff] [blame] | 191 | 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] | 192 | return -EINVAL; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 193 | |
David Herrmann | f4aede2 | 2014-01-29 10:18:02 +0100 | [diff] [blame] | 194 | 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] | 195 | |
Julia Lawall | 6ebc22e | 2010-05-13 21:58:56 +0200 | [diff] [blame] | 196 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 197 | if (!priv) |
| 198 | return -ENOMEM; |
| 199 | |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 200 | filp->private_data = priv; |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 201 | priv->filp = filp; |
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 */ |
David Herrmann | 3cb01a9 | 2014-07-22 17:12:26 +0200 | [diff] [blame] | 206 | priv->authenticated = capable(CAP_SYS_ADMIN); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 207 | priv->lock_count = 0; |
| 208 | |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 209 | INIT_LIST_HEAD(&priv->lhead); |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 210 | INIT_LIST_HEAD(&priv->fbs); |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 211 | mutex_init(&priv->fbs_lock); |
Daniel Stone | e2f5d2e | 2015-05-22 13:34:51 +0100 | [diff] [blame] | 212 | INIT_LIST_HEAD(&priv->blobs); |
Daniel Vetter | 681047b | 2016-01-25 22:16:43 +0100 | [diff] [blame] | 213 | INIT_LIST_HEAD(&priv->pending_event_list); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 214 | INIT_LIST_HEAD(&priv->event_list); |
| 215 | init_waitqueue_head(&priv->event_wait); |
| 216 | priv->event_space = 4096; /* set aside 4k for event buffer */ |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 217 | |
Chris Wilson | 9b2c0b7 | 2015-11-25 14:39:03 +0000 | [diff] [blame] | 218 | mutex_init(&priv->event_read_lock); |
| 219 | |
Andrzej Hajda | 1bcecfa | 2014-09-30 16:49:56 +0200 | [diff] [blame] | 220 | if (drm_core_check_feature(dev, DRIVER_GEM)) |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 221 | drm_gem_open(dev, priv); |
| 222 | |
Dave Airlie | 3248877 | 2011-11-25 15:21:02 +0000 | [diff] [blame] | 223 | if (drm_core_check_feature(dev, DRIVER_PRIME)) |
| 224 | drm_prime_init_file_private(&priv->prime); |
| 225 | |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 226 | if (dev->driver->open) { |
| 227 | ret = dev->driver->open(dev, priv); |
| 228 | if (ret < 0) |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 229 | goto out_prime_destroy; |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 230 | } |
| 231 | |
Daniel Vetter | 2cbae7e | 2016-06-14 20:51:00 +0200 | [diff] [blame] | 232 | if (drm_is_primary_client(priv)) { |
| 233 | ret = drm_master_open(priv); |
Thomas Hellstrom | a0af2e5 | 2015-12-02 09:24:46 -0800 | [diff] [blame] | 234 | if (ret) |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 235 | goto out_close; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 236 | } |
| 237 | |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 238 | mutex_lock(&dev->filelist_mutex); |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 239 | list_add(&priv->lhead, &dev->filelist); |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 240 | mutex_unlock(&dev->filelist_mutex); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 241 | |
| 242 | #ifdef __alpha__ |
| 243 | /* |
| 244 | * Default the hose |
| 245 | */ |
| 246 | if (!dev->hose) { |
| 247 | struct pci_dev *pci_dev; |
| 248 | pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL); |
| 249 | if (pci_dev) { |
| 250 | dev->hose = pci_dev->sysdata; |
| 251 | pci_dev_put(pci_dev); |
| 252 | } |
| 253 | if (!dev->hose) { |
Yijing Wang | 59c1ad3b | 2014-02-13 21:14:00 +0800 | [diff] [blame] | 254 | struct pci_bus *b = list_entry(pci_root_buses.next, |
| 255 | struct pci_bus, node); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 256 | if (b) |
| 257 | dev->hose = b->sysdata; |
| 258 | } |
| 259 | } |
| 260 | #endif |
| 261 | |
| 262 | return 0; |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 263 | |
| 264 | out_close: |
| 265 | if (dev->driver->postclose) |
| 266 | dev->driver->postclose(dev, priv); |
| 267 | out_prime_destroy: |
| 268 | if (drm_core_check_feature(dev, DRIVER_PRIME)) |
| 269 | drm_prime_destroy_file_private(&priv->prime); |
Andrzej Hajda | 1bcecfa | 2014-09-30 16:49:56 +0200 | [diff] [blame] | 270 | if (drm_core_check_feature(dev, DRIVER_GEM)) |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 271 | drm_gem_release(dev, priv); |
Seung-Woo Kim | df9b6a9 | 2013-07-02 09:53:28 +0900 | [diff] [blame] | 272 | put_pid(priv->pid); |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 273 | kfree(priv); |
Dave Airlie | d985c10 | 2006-01-02 21:32:48 +1100 | [diff] [blame] | 274 | filp->private_data = NULL; |
| 275 | return ret; |
| 276 | } |
| 277 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 278 | static void drm_events_release(struct drm_file *file_priv) |
| 279 | { |
| 280 | struct drm_device *dev = file_priv->minor->dev; |
| 281 | struct drm_pending_event *e, *et; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 282 | unsigned long flags; |
| 283 | |
| 284 | spin_lock_irqsave(&dev->event_lock, flags); |
| 285 | |
Daniel Vetter | 681047b | 2016-01-25 22:16:43 +0100 | [diff] [blame] | 286 | /* Unlink pending events */ |
| 287 | list_for_each_entry_safe(e, et, &file_priv->pending_event_list, |
| 288 | pending_link) { |
| 289 | list_del(&e->pending_link); |
| 290 | e->file_priv = NULL; |
| 291 | } |
| 292 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 293 | /* Remove unconsumed events */ |
YoungJun Cho | 1dda680 | 2013-10-29 20:30:26 +0900 | [diff] [blame] | 294 | list_for_each_entry_safe(e, et, &file_priv->event_list, link) { |
| 295 | list_del(&e->link); |
Gustavo Padovan | 1b47aaf | 2016-06-02 00:06:35 +0200 | [diff] [blame] | 296 | kfree(e); |
YoungJun Cho | 1dda680 | 2013-10-29 20:30:26 +0900 | [diff] [blame] | 297 | } |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 298 | |
| 299 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 300 | } |
| 301 | |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 302 | /* |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 303 | * drm_legacy_dev_reinit |
| 304 | * |
| 305 | * Reinitializes a legacy/ums drm device in it's lastclose function. |
| 306 | */ |
| 307 | static void drm_legacy_dev_reinit(struct drm_device *dev) |
| 308 | { |
Daniel Vetter | 68dfbeb | 2016-04-26 19:29:35 +0200 | [diff] [blame] | 309 | if (dev->irq_enabled) |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 310 | drm_irq_uninstall(dev); |
| 311 | |
| 312 | mutex_lock(&dev->struct_mutex); |
| 313 | |
Daniel Vetter | 366884b | 2016-04-26 19:29:34 +0200 | [diff] [blame] | 314 | drm_legacy_agp_clear(dev); |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 315 | |
| 316 | drm_legacy_sg_cleanup(dev); |
David Herrmann | 03decbe | 2014-08-29 12:12:29 +0200 | [diff] [blame] | 317 | drm_legacy_vma_flush(dev); |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 318 | drm_legacy_dma_takedown(dev); |
| 319 | |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 320 | mutex_unlock(&dev->struct_mutex); |
| 321 | |
Daniel Vetter | 68dfbeb | 2016-04-26 19:29:35 +0200 | [diff] [blame] | 322 | dev->sigdata.lock = NULL; |
| 323 | |
| 324 | dev->context_flag = 0; |
| 325 | dev->last_context = 0; |
| 326 | dev->if_version = 0; |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 327 | |
| 328 | DRM_DEBUG("lastclose completed\n"); |
Daniel Vetter | 68dfbeb | 2016-04-26 19:29:35 +0200 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | /* |
| 332 | * Take down the DRM device. |
| 333 | * |
| 334 | * \param dev DRM device structure. |
| 335 | * |
| 336 | * Frees every resource in \p dev. |
| 337 | * |
| 338 | * \sa drm_device |
| 339 | */ |
| 340 | void drm_lastclose(struct drm_device * dev) |
| 341 | { |
| 342 | DRM_DEBUG("\n"); |
| 343 | |
| 344 | if (dev->driver->lastclose) |
| 345 | dev->driver->lastclose(dev); |
| 346 | DRM_DEBUG("driver lastclose completed\n"); |
| 347 | |
Daniel Vetter | fa53864 | 2016-08-03 21:11:10 +0200 | [diff] [blame] | 348 | if (drm_core_check_feature(dev, DRIVER_LEGACY)) |
Daniel Vetter | 68dfbeb | 2016-04-26 19:29:35 +0200 | [diff] [blame] | 349 | drm_legacy_dev_reinit(dev); |
David Herrmann | 1c8887d | 2013-10-02 11:23:36 +0200 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | /** |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 353 | * drm_release - release method for DRM file |
| 354 | * @inode: device inode |
| 355 | * @filp: file pointer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | * |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 357 | * This function must be used by drivers as their .release() #file_operations |
| 358 | * method. It frees any resources associated with the open file, and if this is |
| 359 | * the last open file for the DRM device also proceeds to call drm_lastclose(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | * |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 361 | * RETURNS: |
| 362 | * |
| 363 | * Always succeeds and returns 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 365 | int drm_release(struct inode *inode, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | { |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 367 | struct drm_file *file_priv = filp->private_data; |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 368 | struct drm_minor *minor = file_priv->minor; |
| 369 | struct drm_device *dev = minor->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 371 | mutex_lock(&drm_global_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 373 | DRM_DEBUG("open_count = %d\n", dev->open_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 375 | mutex_lock(&dev->filelist_mutex); |
Chris Wilson | dff01de | 2014-07-24 14:23:10 +0100 | [diff] [blame] | 376 | list_del(&file_priv->lhead); |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 377 | mutex_unlock(&dev->filelist_mutex); |
| 378 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 379 | if (dev->driver->preclose) |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 380 | dev->driver->preclose(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
| 382 | /* ======================================================== |
| 383 | * Begin inline drm_release |
| 384 | */ |
| 385 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 386 | DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 387 | task_pid_nr(current), |
David Herrmann | 5817878 | 2014-01-29 13:12:31 +0100 | [diff] [blame] | 388 | (long)old_encode_dev(file_priv->minor->kdev->devt), |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 389 | dev->open_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Daniel Vetter | fa53864 | 2016-08-03 21:11:10 +0200 | [diff] [blame] | 391 | if (drm_core_check_feature(dev, DRIVER_LEGACY)) |
Daniel Vetter | 1a75a22 | 2016-06-14 20:50:57 +0200 | [diff] [blame] | 392 | drm_legacy_lock_release(dev, filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Daniel Vetter | 67cb4b4 | 2011-10-26 00:31:26 +0200 | [diff] [blame] | 394 | if (drm_core_check_feature(dev, DRIVER_HAVE_DMA)) |
Daniel Vetter | a266162 | 2014-09-11 07:41:51 +0200 | [diff] [blame] | 395 | drm_legacy_reclaim_buffers(dev, file_priv); |
Daniel Vetter | 67cb4b4 | 2011-10-26 00:31:26 +0200 | [diff] [blame] | 396 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 397 | drm_events_release(file_priv); |
| 398 | |
Daniel Stone | e2f5d2e | 2015-05-22 13:34:51 +0100 | [diff] [blame] | 399 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Kristian Høgsberg | ea39f83 | 2009-02-12 14:37:56 -0500 | [diff] [blame] | 400 | drm_fb_release(file_priv); |
Daniel Stone | e2f5d2e | 2015-05-22 13:34:51 +0100 | [diff] [blame] | 401 | drm_property_destroy_user_blobs(dev, file_priv); |
| 402 | } |
Kristian Høgsberg | ea39f83 | 2009-02-12 14:37:56 -0500 | [diff] [blame] | 403 | |
Andrzej Hajda | 1bcecfa | 2014-09-30 16:49:56 +0200 | [diff] [blame] | 404 | if (drm_core_check_feature(dev, DRIVER_GEM)) |
Prathyush | 4e47e02 | 2012-04-14 17:22:13 +0530 | [diff] [blame] | 405 | drm_gem_release(dev, file_priv); |
| 406 | |
David Herrmann | e7b96070 | 2014-07-24 12:10:04 +0200 | [diff] [blame] | 407 | drm_legacy_ctxbitmap_flush(dev, file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Daniel Vetter | 14d71eb | 2016-06-14 20:51:01 +0200 | [diff] [blame] | 409 | if (drm_is_primary_client(file_priv)) |
| 410 | drm_master_release(file_priv); |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 411 | |
Dave Airlie | 22eae94 | 2005-11-10 22:16:34 +1100 | [diff] [blame] | 412 | if (dev->driver->postclose) |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 413 | dev->driver->postclose(dev, file_priv); |
Dave Airlie | 3248877 | 2011-11-25 15:21:02 +0000 | [diff] [blame] | 414 | |
| 415 | if (drm_core_check_feature(dev, DRIVER_PRIME)) |
| 416 | drm_prime_destroy_file_private(&file_priv->prime); |
| 417 | |
Ville Syrjälä | ddde437 | 2014-08-06 14:02:50 +0300 | [diff] [blame] | 418 | WARN_ON(!list_empty(&file_priv->event_list)); |
| 419 | |
Eric W. Biederman | 5fce5e0 | 2012-02-07 16:47:26 -0800 | [diff] [blame] | 420 | put_pid(file_priv->pid); |
Eric Anholt | 9a298b2 | 2009-03-24 12:23:04 -0700 | [diff] [blame] | 421 | kfree(file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
| 423 | /* ======================================================== |
| 424 | * End inline drm_release |
| 425 | */ |
| 426 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 427 | if (!--dev->open_count) { |
Daniel Vetter | 68dfbeb | 2016-04-26 19:29:35 +0200 | [diff] [blame] | 428 | drm_lastclose(dev); |
Dave Airlie | 2c07a21 | 2012-02-20 14:18:07 +0000 | [diff] [blame] | 429 | if (drm_device_is_unplugged(dev)) |
| 430 | drm_put_dev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | } |
Arnd Bergmann | 5837471 | 2010-07-10 23:51:39 +0200 | [diff] [blame] | 432 | mutex_unlock(&drm_global_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | |
David Herrmann | 1616c52 | 2014-01-29 10:49:19 +0100 | [diff] [blame] | 434 | drm_minor_release(minor); |
| 435 | |
Daniel Vetter | 68dfbeb | 2016-04-26 19:29:35 +0200 | [diff] [blame] | 436 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
| 438 | EXPORT_SYMBOL(drm_release); |
| 439 | |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 440 | /** |
| 441 | * drm_read - read method for DRM file |
| 442 | * @filp: file pointer |
| 443 | * @buffer: userspace destination pointer for the read |
| 444 | * @count: count in bytes to read |
| 445 | * @offset: offset to read |
| 446 | * |
| 447 | * This function must be used by drivers as their .read() #file_operations |
| 448 | * method iff they use DRM events for asynchronous signalling to userspace. |
| 449 | * Since events are used by the KMS API for vblank and page flip completion this |
| 450 | * means all modern display drivers must use it. |
| 451 | * |
| 452 | * @offset is ignore, DRM events are read like a pipe. Therefore drivers also |
| 453 | * must set the .llseek() #file_operation to no_llseek(). Polling support is |
| 454 | * provided by drm_poll(). |
| 455 | * |
| 456 | * This function will only ever read a full event. Therefore userspace must |
| 457 | * supply a big enough buffer to fit any event to ensure forward progress. Since |
| 458 | * the maximum event space is currently 4K it's recommended to just use that for |
| 459 | * safety. |
| 460 | * |
| 461 | * RETURNS: |
| 462 | * |
| 463 | * Number of bytes read (always aligned to full events, and can be 0) or a |
| 464 | * negative error code on failure. |
| 465 | */ |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 466 | ssize_t drm_read(struct file *filp, char __user *buffer, |
| 467 | size_t count, loff_t *offset) |
| 468 | { |
| 469 | struct drm_file *file_priv = filp->private_data; |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 470 | struct drm_device *dev = file_priv->minor->dev; |
Chris Wilson | 9b2c0b7 | 2015-11-25 14:39:03 +0000 | [diff] [blame] | 471 | ssize_t ret; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 472 | |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 473 | if (!access_ok(VERIFY_WRITE, buffer, count)) |
| 474 | return -EFAULT; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 475 | |
Chris Wilson | 9b2c0b7 | 2015-11-25 14:39:03 +0000 | [diff] [blame] | 476 | ret = mutex_lock_interruptible(&file_priv->event_read_lock); |
| 477 | if (ret) |
| 478 | return ret; |
| 479 | |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 480 | for (;;) { |
Chris Wilson | 83eb64c | 2015-11-25 14:39:02 +0000 | [diff] [blame] | 481 | struct drm_pending_event *e = NULL; |
| 482 | |
| 483 | spin_lock_irq(&dev->event_lock); |
| 484 | if (!list_empty(&file_priv->event_list)) { |
| 485 | e = list_first_entry(&file_priv->event_list, |
| 486 | struct drm_pending_event, link); |
| 487 | file_priv->event_space += e->event->length; |
| 488 | list_del(&e->link); |
| 489 | } |
| 490 | spin_unlock_irq(&dev->event_lock); |
| 491 | |
| 492 | if (e == NULL) { |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 493 | if (ret) |
| 494 | break; |
| 495 | |
| 496 | if (filp->f_flags & O_NONBLOCK) { |
| 497 | ret = -EAGAIN; |
| 498 | break; |
| 499 | } |
| 500 | |
Chris Wilson | 9b2c0b7 | 2015-11-25 14:39:03 +0000 | [diff] [blame] | 501 | mutex_unlock(&file_priv->event_read_lock); |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 502 | ret = wait_event_interruptible(file_priv->event_wait, |
| 503 | !list_empty(&file_priv->event_list)); |
Chris Wilson | 9b2c0b7 | 2015-11-25 14:39:03 +0000 | [diff] [blame] | 504 | if (ret >= 0) |
| 505 | ret = mutex_lock_interruptible(&file_priv->event_read_lock); |
| 506 | if (ret) |
| 507 | return ret; |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 508 | } else { |
Chris Wilson | 83eb64c | 2015-11-25 14:39:02 +0000 | [diff] [blame] | 509 | unsigned length = e->event->length; |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 510 | |
Chris Wilson | 83eb64c | 2015-11-25 14:39:02 +0000 | [diff] [blame] | 511 | if (length > count - ret) { |
| 512 | put_back_event: |
| 513 | spin_lock_irq(&dev->event_lock); |
| 514 | file_priv->event_space -= length; |
| 515 | list_add(&e->link, &file_priv->event_list); |
| 516 | spin_unlock_irq(&dev->event_lock); |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 517 | break; |
| 518 | } |
| 519 | |
Chris Wilson | 83eb64c | 2015-11-25 14:39:02 +0000 | [diff] [blame] | 520 | if (copy_to_user(buffer + ret, e->event, length)) { |
| 521 | if (ret == 0) |
| 522 | ret = -EFAULT; |
| 523 | goto put_back_event; |
| 524 | } |
| 525 | |
| 526 | ret += length; |
Gustavo Padovan | 1b47aaf | 2016-06-02 00:06:35 +0200 | [diff] [blame] | 527 | kfree(e); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 528 | } |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 529 | } |
Chris Wilson | 9b2c0b7 | 2015-11-25 14:39:03 +0000 | [diff] [blame] | 530 | mutex_unlock(&file_priv->event_read_lock); |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 531 | |
Chris Wilson | cdd1cf7 | 2014-12-04 21:03:25 +0000 | [diff] [blame] | 532 | return ret; |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 533 | } |
| 534 | EXPORT_SYMBOL(drm_read); |
| 535 | |
Daniel Vetter | bcb877e | 2016-01-11 22:40:55 +0100 | [diff] [blame] | 536 | /** |
| 537 | * drm_poll - poll method for DRM file |
| 538 | * @filp: file pointer |
| 539 | * @wait: poll waiter table |
| 540 | * |
| 541 | * This function must be used by drivers as their .read() #file_operations |
| 542 | * method iff they use DRM events for asynchronous signalling to userspace. |
| 543 | * Since events are used by the KMS API for vblank and page flip completion this |
| 544 | * means all modern display drivers must use it. |
| 545 | * |
| 546 | * See also drm_read(). |
| 547 | * |
| 548 | * RETURNS: |
| 549 | * |
| 550 | * Mask of POLL flags indicating the current status of the file. |
| 551 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait) |
| 553 | { |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 554 | struct drm_file *file_priv = filp->private_data; |
| 555 | unsigned int mask = 0; |
| 556 | |
| 557 | poll_wait(filp, &file_priv->event_wait, wait); |
| 558 | |
| 559 | if (!list_empty(&file_priv->event_list)) |
| 560 | mask |= POLLIN | POLLRDNORM; |
| 561 | |
| 562 | return mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 564 | EXPORT_SYMBOL(drm_poll); |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 565 | |
| 566 | /** |
Daniel Vetter | 4020b22 | 2016-01-28 12:01:04 +0100 | [diff] [blame] | 567 | * drm_event_reserve_init_locked - init a DRM event and reserve space for it |
| 568 | * @dev: DRM device |
| 569 | * @file_priv: DRM file private data |
| 570 | * @p: tracking structure for the pending event |
| 571 | * @e: actual event data to deliver to userspace |
| 572 | * |
| 573 | * This function prepares the passed in event for eventual delivery. If the event |
| 574 | * doesn't get delivered (because the IOCTL fails later on, before queuing up |
| 575 | * anything) then the even must be cancelled and freed using |
| 576 | * drm_event_cancel_free(). Successfully initialized events should be sent out |
| 577 | * using drm_send_event() or drm_send_event_locked() to signal completion of the |
| 578 | * asynchronous event to userspace. |
| 579 | * |
| 580 | * If callers embedded @p into a larger structure it must be allocated with |
| 581 | * kmalloc and @p must be the first member element. |
| 582 | * |
| 583 | * This is the locked version of drm_event_reserve_init() for callers which |
| 584 | * already hold dev->event_lock. |
| 585 | * |
| 586 | * RETURNS: |
| 587 | * |
| 588 | * 0 on success or a negative error code on failure. |
| 589 | */ |
| 590 | int drm_event_reserve_init_locked(struct drm_device *dev, |
| 591 | struct drm_file *file_priv, |
| 592 | struct drm_pending_event *p, |
| 593 | struct drm_event *e) |
| 594 | { |
| 595 | if (file_priv->event_space < e->length) |
| 596 | return -ENOMEM; |
| 597 | |
| 598 | file_priv->event_space -= e->length; |
| 599 | |
| 600 | p->event = e; |
Daniel Vetter | 681047b | 2016-01-25 22:16:43 +0100 | [diff] [blame] | 601 | list_add(&p->pending_link, &file_priv->pending_event_list); |
Daniel Vetter | 4020b22 | 2016-01-28 12:01:04 +0100 | [diff] [blame] | 602 | p->file_priv = file_priv; |
| 603 | |
Daniel Vetter | 4020b22 | 2016-01-28 12:01:04 +0100 | [diff] [blame] | 604 | return 0; |
| 605 | } |
| 606 | EXPORT_SYMBOL(drm_event_reserve_init_locked); |
| 607 | |
| 608 | /** |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 609 | * drm_event_reserve_init - init a DRM event and reserve space for it |
| 610 | * @dev: DRM device |
| 611 | * @file_priv: DRM file private data |
| 612 | * @p: tracking structure for the pending event |
| 613 | * @e: actual event data to deliver to userspace |
| 614 | * |
| 615 | * This function prepares the passed in event for eventual delivery. If the event |
| 616 | * doesn't get delivered (because the IOCTL fails later on, before queuing up |
| 617 | * anything) then the even must be cancelled and freed using |
Daniel Vetter | fb740cf | 2016-01-11 22:40:59 +0100 | [diff] [blame] | 618 | * drm_event_cancel_free(). Successfully initialized events should be sent out |
| 619 | * using drm_send_event() or drm_send_event_locked() to signal completion of the |
| 620 | * asynchronous event to userspace. |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 621 | * |
| 622 | * If callers embedded @p into a larger structure it must be allocated with |
| 623 | * kmalloc and @p must be the first member element. |
| 624 | * |
Daniel Vetter | 4020b22 | 2016-01-28 12:01:04 +0100 | [diff] [blame] | 625 | * Callers which already hold dev->event_lock should use |
| 626 | * drm_event_reserve_init() instead. |
| 627 | * |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 628 | * RETURNS: |
| 629 | * |
| 630 | * 0 on success or a negative error code on failure. |
| 631 | */ |
| 632 | int drm_event_reserve_init(struct drm_device *dev, |
| 633 | struct drm_file *file_priv, |
| 634 | struct drm_pending_event *p, |
| 635 | struct drm_event *e) |
| 636 | { |
| 637 | unsigned long flags; |
Daniel Vetter | 4020b22 | 2016-01-28 12:01:04 +0100 | [diff] [blame] | 638 | int ret; |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 639 | |
| 640 | spin_lock_irqsave(&dev->event_lock, flags); |
Daniel Vetter | 4020b22 | 2016-01-28 12:01:04 +0100 | [diff] [blame] | 641 | ret = drm_event_reserve_init_locked(dev, file_priv, p, e); |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 642 | spin_unlock_irqrestore(&dev->event_lock, flags); |
Daniel Vetter | 4020b22 | 2016-01-28 12:01:04 +0100 | [diff] [blame] | 643 | |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 644 | return ret; |
| 645 | } |
| 646 | EXPORT_SYMBOL(drm_event_reserve_init); |
| 647 | |
| 648 | /** |
| 649 | * drm_event_cancel_free - free a DRM event and release it's space |
| 650 | * @dev: DRM device |
| 651 | * @p: tracking structure for the pending event |
| 652 | * |
| 653 | * This function frees the event @p initialized with drm_event_reserve_init() |
| 654 | * and releases any allocated space. |
| 655 | */ |
| 656 | void drm_event_cancel_free(struct drm_device *dev, |
| 657 | struct drm_pending_event *p) |
| 658 | { |
| 659 | unsigned long flags; |
| 660 | spin_lock_irqsave(&dev->event_lock, flags); |
Daniel Vetter | 681047b | 2016-01-25 22:16:43 +0100 | [diff] [blame] | 661 | if (p->file_priv) { |
| 662 | p->file_priv->event_space += p->event->length; |
| 663 | list_del(&p->pending_link); |
| 664 | } |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 665 | spin_unlock_irqrestore(&dev->event_lock, flags); |
Gustavo Padovan | 1b47aaf | 2016-06-02 00:06:35 +0200 | [diff] [blame] | 666 | kfree(p); |
Daniel Vetter | 2dd500f | 2016-01-11 22:40:56 +0100 | [diff] [blame] | 667 | } |
| 668 | EXPORT_SYMBOL(drm_event_cancel_free); |
Daniel Vetter | fb740cf | 2016-01-11 22:40:59 +0100 | [diff] [blame] | 669 | |
| 670 | /** |
| 671 | * drm_send_event_locked - send DRM event to file descriptor |
| 672 | * @dev: DRM device |
| 673 | * @e: DRM event to deliver |
| 674 | * |
| 675 | * This function sends the event @e, initialized with drm_event_reserve_init(), |
| 676 | * to its associated userspace DRM file. Callers must already hold |
| 677 | * dev->event_lock, see drm_send_event() for the unlocked version. |
Daniel Vetter | 681047b | 2016-01-25 22:16:43 +0100 | [diff] [blame] | 678 | * |
| 679 | * Note that the core will take care of unlinking and disarming events when the |
| 680 | * corresponding DRM file is closed. Drivers need not worry about whether the |
| 681 | * DRM file for this event still exists and can call this function upon |
| 682 | * completion of the asynchronous work unconditionally. |
Daniel Vetter | fb740cf | 2016-01-11 22:40:59 +0100 | [diff] [blame] | 683 | */ |
| 684 | void drm_send_event_locked(struct drm_device *dev, struct drm_pending_event *e) |
| 685 | { |
| 686 | assert_spin_locked(&dev->event_lock); |
| 687 | |
Daniel Vetter | 3b24f7d | 2016-06-08 14:19:00 +0200 | [diff] [blame] | 688 | if (e->completion) { |
| 689 | /* ->completion might disappear as soon as it signalled. */ |
| 690 | complete_all(e->completion); |
| 691 | e->completion = NULL; |
| 692 | } |
| 693 | |
Gustavo Padovan | 1b47aaf | 2016-06-02 00:06:35 +0200 | [diff] [blame] | 694 | if (e->fence) { |
| 695 | fence_signal(e->fence); |
| 696 | fence_put(e->fence); |
| 697 | } |
| 698 | |
Daniel Vetter | 681047b | 2016-01-25 22:16:43 +0100 | [diff] [blame] | 699 | if (!e->file_priv) { |
Gustavo Padovan | 1b47aaf | 2016-06-02 00:06:35 +0200 | [diff] [blame] | 700 | kfree(e); |
Daniel Vetter | 681047b | 2016-01-25 22:16:43 +0100 | [diff] [blame] | 701 | return; |
| 702 | } |
| 703 | |
| 704 | list_del(&e->pending_link); |
Daniel Vetter | fb740cf | 2016-01-11 22:40:59 +0100 | [diff] [blame] | 705 | list_add_tail(&e->link, |
| 706 | &e->file_priv->event_list); |
| 707 | wake_up_interruptible(&e->file_priv->event_wait); |
| 708 | } |
| 709 | EXPORT_SYMBOL(drm_send_event_locked); |
| 710 | |
| 711 | /** |
| 712 | * drm_send_event - send DRM event to file descriptor |
| 713 | * @dev: DRM device |
| 714 | * @e: DRM event to deliver |
| 715 | * |
| 716 | * This function sends the event @e, initialized with drm_event_reserve_init(), |
| 717 | * to its associated userspace DRM file. This function acquires dev->event_lock, |
| 718 | * see drm_send_event_locked() for callers which already hold this lock. |
Daniel Vetter | 681047b | 2016-01-25 22:16:43 +0100 | [diff] [blame] | 719 | * |
| 720 | * Note that the core will take care of unlinking and disarming events when the |
| 721 | * corresponding DRM file is closed. Drivers need not worry about whether the |
| 722 | * DRM file for this event still exists and can call this function upon |
| 723 | * completion of the asynchronous work unconditionally. |
Daniel Vetter | fb740cf | 2016-01-11 22:40:59 +0100 | [diff] [blame] | 724 | */ |
| 725 | void drm_send_event(struct drm_device *dev, struct drm_pending_event *e) |
| 726 | { |
| 727 | unsigned long irqflags; |
| 728 | |
| 729 | spin_lock_irqsave(&dev->event_lock, irqflags); |
| 730 | drm_send_event_locked(dev, e); |
| 731 | spin_unlock_irqrestore(&dev->event_lock, irqflags); |
| 732 | } |
| 733 | EXPORT_SYMBOL(drm_send_event); |