blob: c5b929c3f77ae617d14fa87b387557bbf3cd3f7b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_fops.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * File operations for DRM
Dave Airlieb5e89ed2005-09-25 14:28:13 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * \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 Howells760285e2012-10-02 18:01:07 +010037#include <drm/drmP.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040040#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Arnd Bergmann58374712010-07-10 23:51:39 +020042/* from BKL pushdown: note that nothing else serializes idr_find() */
43DEFINE_MUTEX(drm_global_mutex);
Ben Skeggse3461a22010-08-26 14:58:57 +100044EXPORT_SYMBOL(drm_global_mutex);
Arnd Bergmann58374712010-07-10 23:51:39 +020045
Dave Airlieb5e89ed2005-09-25 14:28:13 +100046static int drm_open_helper(struct inode *inode, struct file *filp,
Dave Airlie84b1fd12007-07-11 15:53:27 +100047 struct drm_device * dev);
Dave Airliec94f7022005-07-07 21:03:38 +100048
Dave Airlie84b1fd12007-07-11 15:53:27 +100049static int drm_setup(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int ret;
52
Daniel Vetter7d14bb6b2013-08-08 15:41:15 +020053 if (dev->driver->firstopen &&
54 !drm_core_check_feature(dev, DRIVER_MODESET)) {
Dave Airlie22eae942005-11-10 22:16:34 +110055 ret = dev->driver->firstopen(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100056 if (ret != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return ret;
58 }
59
Daniel Vetterf336ab72013-08-08 15:41:35 +020060 ret = drm_legacy_dma_setup(dev);
61 if (ret < 0)
62 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Dave Airlieb5e89ed2005-09-25 14:28:13 +100065 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return 0;
67}
68
69/**
70 * Open file.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100071 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * \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 Airlieb5e89ed2005-09-25 14:28:13 +100080int drm_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Dave Airlie84b1fd12007-07-11 15:53:27 +100082 struct drm_device *dev = NULL;
Dave Airlie2c14f282008-04-21 16:47:32 +100083 int minor_id = iminor(inode);
84 struct drm_minor *minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 int retcode = 0;
Ilija Hadzicfdb40a02012-10-29 17:35:01 +000086 int need_setup = 0;
87 struct address_space *old_mapping;
Ilija Hadzica8ec3a62013-04-02 09:56:10 -040088 struct address_space *old_imapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Dave Airlie2c14f282008-04-21 16:47:32 +100090 minor = idr_find(&drm_minors_idr, minor_id);
91 if (!minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return -ENODEV;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100093
Dave Airlie2c14f282008-04-21 16:47:32 +100094 if (!(dev = minor->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return -ENODEV;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100096
Dave Airlie2c07a212012-02-20 14:18:07 +000097 if (drm_device_is_unplugged(dev))
98 return -ENODEV;
99
Ilija Hadzicfdb40a02012-10-29 17:35:01 +0000100 if (!dev->open_count++)
101 need_setup = 1;
102 mutex_lock(&dev->struct_mutex);
Ilija Hadzica8ec3a62013-04-02 09:56:10 -0400103 old_imapping = inode->i_mapping;
Ilija Hadzicfdb40a02012-10-29 17:35:01 +0000104 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 Barnesa2c0a972008-11-05 10:31:53 -0800112
Ilija Hadzicfdb40a02012-10-29 17:35:01 +0000113 retcode = drm_open_helper(inode, filp, dev);
114 if (retcode)
115 goto err_undo;
Ilija Hadzicfdb40a02012-10-29 17:35:01 +0000116 if (need_setup) {
117 retcode = drm_setup(dev);
118 if (retcode)
119 goto err_undo;
120 }
121 return 0;
122
123err_undo:
124 mutex_lock(&dev->struct_mutex);
Ilija Hadzica8ec3a62013-04-02 09:56:10 -0400125 filp->f_mapping = old_imapping;
126 inode->i_mapping = old_imapping;
Ilija Hadzicfdb40a02012-10-29 17:35:01 +0000127 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 Torvalds1da177e2005-04-16 15:20:36 -0700131 return retcode;
132}
133EXPORT_SYMBOL(drm_open);
134
135/**
Dave Airlied985c102006-01-02 21:32:48 +1100136 * 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 */
144int drm_stub_open(struct inode *inode, struct file *filp)
145{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000146 struct drm_device *dev = NULL;
Dave Airlie2c14f282008-04-21 16:47:32 +1000147 struct drm_minor *minor;
148 int minor_id = iminor(inode);
Dave Airlied985c102006-01-02 21:32:48 +1100149 int err = -ENODEV;
Al Viroe84f9e52013-09-22 14:17:15 -0400150 const struct file_operations *new_fops;
Dave Airlied985c102006-01-02 21:32:48 +1100151
152 DRM_DEBUG("\n");
153
Arnd Bergmann58374712010-07-10 23:51:39 +0200154 mutex_lock(&drm_global_mutex);
Dave Airlie2c14f282008-04-21 16:47:32 +1000155 minor = idr_find(&drm_minors_idr, minor_id);
156 if (!minor)
Jonathan Corbet70ffa162008-05-15 11:34:16 -0600157 goto out;
Dave Airlied985c102006-01-02 21:32:48 +1100158
Dave Airlie2c14f282008-04-21 16:47:32 +1000159 if (!(dev = minor->dev))
Jonathan Corbet70ffa162008-05-15 11:34:16 -0600160 goto out;
Dave Airlied985c102006-01-02 21:32:48 +1100161
Dave Airlie2c07a212012-02-20 14:18:07 +0000162 if (drm_device_is_unplugged(dev))
163 goto out;
164
Al Viroe84f9e52013-09-22 14:17:15 -0400165 new_fops = fops_get(dev->driver->fops);
166 if (!new_fops)
Laurent Pinchartf41ced82009-01-06 14:40:40 -0800167 goto out;
Dave Airlied985c102006-01-02 21:32:48 +1100168
Al Viroe84f9e52013-09-22 14:17:15 -0400169 replace_fops(filp, new_fops);
170 if (filp->f_op->open)
171 err = filp->f_op->open(inode, filp);
Jonathan Corbet70ffa162008-05-15 11:34:16 -0600172out:
Arnd Bergmann58374712010-07-10 23:51:39 +0200173 mutex_unlock(&drm_global_mutex);
Dave Airlied985c102006-01-02 21:32:48 +1100174 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 */
182static 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 */
205static int drm_open_helper(struct inode *inode, struct file *filp,
Dave Airlie84b1fd12007-07-11 15:53:27 +1000206 struct drm_device * dev)
Dave Airlied985c102006-01-02 21:32:48 +1100207{
Dave Airlie2c14f282008-04-21 16:47:32 +1000208 int minor_id = iminor(inode);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000209 struct drm_file *priv;
Dave Airlied985c102006-01-02 21:32:48 +1100210 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 Airlie13bb9cc2012-09-12 15:55:05 +1000216 if (dev->switch_power_state != DRM_SWITCH_POWER_ON && dev->switch_power_state != DRM_SWITCH_POWER_DYNAMIC_OFF)
Dave Airlie5bcf7192010-12-07 09:20:40 +1000217 return -EINVAL;
Dave Airlied985c102006-01-02 21:32:48 +1100218
Dave Airlie2c14f282008-04-21 16:47:32 +1000219 DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor_id);
Dave Airlied985c102006-01-02 21:32:48 +1100220
Julia Lawall6ebc22e2010-05-13 21:58:56 +0200221 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Dave Airlied985c102006-01-02 21:32:48 +1100222 if (!priv)
223 return -ENOMEM;
224
Dave Airlied985c102006-01-02 21:32:48 +1100225 filp->private_data = priv;
Eric Anholt6c340ea2007-08-25 20:23:09 +1000226 priv->filp = filp;
David Howells2df68b42008-09-02 11:03:14 +1000227 priv->uid = current_euid();
Eric W. Biederman5fce5e02012-02-07 16:47:26 -0800228 priv->pid = get_pid(task_pid(current));
Dave Airlie2c14f282008-04-21 16:47:32 +1000229 priv->minor = idr_find(&drm_minors_idr, minor_id);
Seung-Woo Kimdf9b6a92013-07-02 09:53:28 +0900230 if (!priv->minor) {
231 ret = -ENODEV;
232 goto out_put_pid;
233 }
234
Dave Airlied985c102006-01-02 21:32:48 +1100235 priv->ioctl_count = 0;
236 /* for compatibility root is always authenticated */
Chris Wilson1020dc62013-10-29 08:55:57 +0000237 priv->always_authenticated = capable(CAP_SYS_ADMIN);
238 priv->authenticated = priv->always_authenticated;
Dave Airlied985c102006-01-02 21:32:48 +1100239 priv->lock_count = 0;
240
Dave Airliebd1b3312007-05-26 05:01:51 +1000241 INIT_LIST_HEAD(&priv->lhead);
Dave Airlief453ba02008-11-07 14:05:41 -0800242 INIT_LIST_HEAD(&priv->fbs);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100243 mutex_init(&priv->fbs_lock);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000244 INIT_LIST_HEAD(&priv->event_list);
245 init_waitqueue_head(&priv->event_wait);
246 priv->event_space = 4096; /* set aside 4k for event buffer */
Dave Airliebd1b3312007-05-26 05:01:51 +1000247
Eric Anholt673a3942008-07-30 12:06:12 -0700248 if (dev->driver->driver_features & DRIVER_GEM)
249 drm_gem_open(dev, priv);
250
Dave Airlie32488772011-11-25 15:21:02 +0000251 if (drm_core_check_feature(dev, DRIVER_PRIME))
252 drm_prime_init_file_private(&priv->prime);
253
Dave Airlied985c102006-01-02 21:32:48 +1100254 if (dev->driver->open) {
255 ret = dev->driver->open(dev, priv);
256 if (ret < 0)
Seung-Woo Kimdf9b6a92013-07-02 09:53:28 +0900257 goto out_prime_destroy;
Dave Airlied985c102006-01-02 21:32:48 +1100258 }
259
David Herrmann17931262013-08-25 18:29:00 +0200260 /* if there is no current master make this fd it, but do not create
261 * any master object for render clients */
Dave Airlie7c1c2872008-11-28 14:22:24 +1000262 mutex_lock(&dev->struct_mutex);
David Herrmann17931262013-08-25 18:29:00 +0200263 if (!priv->minor->master && !drm_is_render_client(priv)) {
Dave Airlie7c1c2872008-11-28 14:22:24 +1000264 /* create a new master */
265 priv->minor->master = drm_master_create(priv->minor);
266 if (!priv->minor->master) {
Dan Carpenterdba5ed02009-03-27 13:34:28 +0300267 mutex_unlock(&dev->struct_mutex);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000268 ret = -ENOMEM;
Seung-Woo Kimdf9b6a92013-07-02 09:53:28 +0900269 goto out_close;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000270 }
271
272 priv->is_master = 1;
273 /* take another reference for the copy in the local file priv */
274 priv->master = drm_master_get(priv->minor->master);
275
276 priv->authenticated = 1;
277
278 mutex_unlock(&dev->struct_mutex);
279 if (dev->driver->master_create) {
280 ret = dev->driver->master_create(dev, priv->master);
281 if (ret) {
282 mutex_lock(&dev->struct_mutex);
283 /* drop both references if this fails */
284 drm_master_put(&priv->minor->master);
285 drm_master_put(&priv->master);
286 mutex_unlock(&dev->struct_mutex);
Seung-Woo Kimdf9b6a92013-07-02 09:53:28 +0900287 goto out_close;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000288 }
289 }
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000290 mutex_lock(&dev->struct_mutex);
291 if (dev->driver->master_set) {
292 ret = dev->driver->master_set(dev, priv, true);
293 if (ret) {
294 /* drop both references if this fails */
295 drm_master_put(&priv->minor->master);
296 drm_master_put(&priv->master);
297 mutex_unlock(&dev->struct_mutex);
Seung-Woo Kimdf9b6a92013-07-02 09:53:28 +0900298 goto out_close;
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000299 }
300 }
David Herrmann17931262013-08-25 18:29:00 +0200301 } else if (!drm_is_render_client(priv)) {
Dave Airlie7c1c2872008-11-28 14:22:24 +1000302 /* get a reference to the master */
303 priv->master = drm_master_get(priv->minor->master);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000304 }
David Herrmann17931262013-08-25 18:29:00 +0200305 mutex_unlock(&dev->struct_mutex);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000306
307 mutex_lock(&dev->struct_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000308 list_add(&priv->lhead, &dev->filelist);
Dave Airlie30e2fb12006-02-02 19:37:46 +1100309 mutex_unlock(&dev->struct_mutex);
Dave Airlied985c102006-01-02 21:32:48 +1100310
311#ifdef __alpha__
312 /*
313 * Default the hose
314 */
315 if (!dev->hose) {
316 struct pci_dev *pci_dev;
317 pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL);
318 if (pci_dev) {
319 dev->hose = pci_dev->sysdata;
320 pci_dev_put(pci_dev);
321 }
322 if (!dev->hose) {
323 struct pci_bus *b = pci_bus_b(pci_root_buses.next);
324 if (b)
325 dev->hose = b->sysdata;
326 }
327 }
328#endif
329
330 return 0;
Seung-Woo Kimdf9b6a92013-07-02 09:53:28 +0900331
332out_close:
333 if (dev->driver->postclose)
334 dev->driver->postclose(dev, priv);
335out_prime_destroy:
336 if (drm_core_check_feature(dev, DRIVER_PRIME))
337 drm_prime_destroy_file_private(&priv->prime);
338 if (dev->driver->driver_features & DRIVER_GEM)
339 drm_gem_release(dev, priv);
340out_put_pid:
341 put_pid(priv->pid);
Eric Anholt9a298b22009-03-24 12:23:04 -0700342 kfree(priv);
Dave Airlied985c102006-01-02 21:32:48 +1100343 filp->private_data = NULL;
344 return ret;
345}
346
Dave Airlie7c1c2872008-11-28 14:22:24 +1000347static void drm_master_release(struct drm_device *dev, struct file *filp)
348{
349 struct drm_file *file_priv = filp->private_data;
350
Dave Airlie7c1c2872008-11-28 14:22:24 +1000351 if (drm_i_have_hw_lock(dev, file_priv)) {
352 DRM_DEBUG("File %p released, freeing lock for context %d\n",
353 filp, _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock));
354 drm_lock_free(&file_priv->master->lock,
355 _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock));
356 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000357}
358
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000359static void drm_events_release(struct drm_file *file_priv)
360{
361 struct drm_device *dev = file_priv->minor->dev;
362 struct drm_pending_event *e, *et;
363 struct drm_pending_vblank_event *v, *vt;
364 unsigned long flags;
365
366 spin_lock_irqsave(&dev->event_lock, flags);
367
368 /* Remove pending flips */
369 list_for_each_entry_safe(v, vt, &dev->vblank_event_list, base.link)
370 if (v->base.file_priv == file_priv) {
371 list_del(&v->base.link);
372 drm_vblank_put(dev, v->pipe);
373 v->base.destroy(&v->base);
374 }
375
376 /* Remove unconsumed events */
YoungJun Cho1dda6802013-10-29 20:30:26 +0900377 list_for_each_entry_safe(e, et, &file_priv->event_list, link) {
378 list_del(&e->link);
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000379 e->destroy(e);
YoungJun Cho1dda6802013-10-29 20:30:26 +0900380 }
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000381
382 spin_unlock_irqrestore(&dev->event_lock, flags);
383}
384
Dave Airlied985c102006-01-02 21:32:48 +1100385/**
David Herrmann1c8887d2013-10-02 11:23:36 +0200386 * drm_legacy_dev_reinit
387 *
388 * Reinitializes a legacy/ums drm device in it's lastclose function.
389 */
390static void drm_legacy_dev_reinit(struct drm_device *dev)
391{
David Herrmann1c8887d2013-10-02 11:23:36 +0200392 if (drm_core_check_feature(dev, DRIVER_MODESET))
393 return;
394
395 atomic_set(&dev->ioctl_count, 0);
396 atomic_set(&dev->vma_count, 0);
397
David Herrmann1c8887d2013-10-02 11:23:36 +0200398 dev->sigdata.lock = NULL;
399
400 dev->context_flag = 0;
401 dev->last_context = 0;
402 dev->if_version = 0;
403}
404
405/**
406 * Take down the DRM device.
407 *
408 * \param dev DRM device structure.
409 *
410 * Frees every resource in \p dev.
411 *
412 * \sa drm_device
413 */
414int drm_lastclose(struct drm_device * dev)
415{
416 struct drm_vma_entry *vma, *vma_temp;
417
418 DRM_DEBUG("\n");
419
420 if (dev->driver->lastclose)
421 dev->driver->lastclose(dev);
422 DRM_DEBUG("driver lastclose completed\n");
423
424 if (dev->irq_enabled && !drm_core_check_feature(dev, DRIVER_MODESET))
425 drm_irq_uninstall(dev);
426
427 mutex_lock(&dev->struct_mutex);
428
429 drm_agp_clear(dev);
430
431 drm_legacy_sg_cleanup(dev);
432
433 /* Clear vma list (only built for debugging) */
434 list_for_each_entry_safe(vma, vma_temp, &dev->vmalist, head) {
435 list_del(&vma->head);
436 kfree(vma);
437 }
438
439 drm_legacy_dma_takedown(dev);
440
441 dev->dev_mapping = NULL;
442 mutex_unlock(&dev->struct_mutex);
443
444 drm_legacy_dev_reinit(dev);
445
446 DRM_DEBUG("lastclose completed\n");
447 return 0;
448}
449
450/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 * Release file.
452 *
453 * \param inode device inode
Eric Anholt6c340ea2007-08-25 20:23:09 +1000454 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * \return zero on success or a negative number on failure.
456 *
457 * If the hardware lock is held then free it, and take it again for the kernel
458 * context since it's necessary to reclaim buffers. Unlink the file private
459 * data from its list and free it. Decreases the open count and if it reaches
Dave Airlie22eae942005-11-10 22:16:34 +1100460 * zero calls drm_lastclose().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000462int drm_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000464 struct drm_file *file_priv = filp->private_data;
Dave Airlie2c14f282008-04-21 16:47:32 +1000465 struct drm_device *dev = file_priv->minor->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 int retcode = 0;
467
Arnd Bergmann58374712010-07-10 23:51:39 +0200468 mutex_lock(&drm_global_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000470 DRM_DEBUG("open_count = %d\n", dev->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Dave Airlie22eae942005-11-10 22:16:34 +1100472 if (dev->driver->preclose)
Eric Anholt6c340ea2007-08-25 20:23:09 +1000473 dev->driver->preclose(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 /* ========================================================
476 * Begin inline drm_release
477 */
478
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000479 DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700480 task_pid_nr(current),
Dave Airlie2c14f282008-04-21 16:47:32 +1000481 (long)old_encode_dev(file_priv->minor->device),
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000482 dev->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Thomas Hellstrom598781d2012-01-24 18:54:21 +0100484 /* Release any auth tokens that might point to this file_priv,
485 (do that under the drm_global_mutex) */
486 if (file_priv->magic)
487 (void) drm_remove_magic(file_priv->master, file_priv->magic);
488
Dave Airlie7c1c2872008-11-28 14:22:24 +1000489 /* if the master has gone away we can't do anything with the lock */
490 if (file_priv->minor->master)
491 drm_master_release(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Daniel Vetter67cb4b42011-10-26 00:31:26 +0200493 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
494 drm_core_reclaim_buffers(dev, file_priv);
495
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000496 drm_events_release(file_priv);
497
Kristian Høgsbergea39f832009-02-12 14:37:56 -0500498 if (dev->driver->driver_features & DRIVER_MODESET)
499 drm_fb_release(file_priv);
500
Prathyush4e47e022012-04-14 17:22:13 +0530501 if (dev->driver->driver_features & DRIVER_GEM)
502 drm_gem_release(dev, file_priv);
503
Dave Airliec21eb212013-09-20 08:32:59 +1000504 mutex_lock(&dev->ctxlist_mutex);
505 if (!list_empty(&dev->ctxlist)) {
506 struct drm_ctx_list *pos, *n;
507
508 list_for_each_entry_safe(pos, n, &dev->ctxlist, head) {
509 if (pos->tag == file_priv &&
510 pos->handle != DRM_KERNEL_CONTEXT) {
511 if (dev->driver->context_dtor)
512 dev->driver->context_dtor(dev,
513 pos->handle);
514
515 drm_ctxbitmap_free(dev, pos->handle);
516
517 list_del(&pos->head);
518 kfree(pos);
Dave Airliec21eb212013-09-20 08:32:59 +1000519 }
520 }
521 }
522 mutex_unlock(&dev->ctxlist_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Dave Airlie30e2fb12006-02-02 19:37:46 +1100524 mutex_lock(&dev->struct_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000525
Dave Airlie7c1c2872008-11-28 14:22:24 +1000526 if (file_priv->is_master) {
Thomas Hellstromfda714c2009-03-02 11:10:56 +0100527 struct drm_master *master = file_priv->master;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000528 struct drm_file *temp;
529 list_for_each_entry(temp, &dev->filelist, lhead) {
530 if ((temp->master == file_priv->master) &&
531 (temp != file_priv))
Chris Wilson1020dc62013-10-29 08:55:57 +0000532 temp->authenticated = temp->always_authenticated;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000533 }
534
Thomas Hellstromfda714c2009-03-02 11:10:56 +0100535 /**
536 * Since the master is disappearing, so is the
537 * possibility to lock.
538 */
539
540 if (master->lock.hw_lock) {
541 if (dev->sigdata.lock == master->lock.hw_lock)
542 dev->sigdata.lock = NULL;
543 master->lock.hw_lock = NULL;
544 master->lock.file_priv = NULL;
545 wake_up_interruptible_all(&master->lock.lock_queue);
546 }
547
Dave Airlie7c1c2872008-11-28 14:22:24 +1000548 if (file_priv->minor->master == file_priv->master) {
549 /* drop the reference held my the minor */
Thomas Hellstrom862302f2009-12-02 18:15:25 +0000550 if (dev->driver->master_drop)
551 dev->driver->master_drop(dev, file_priv, true);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000552 drm_master_put(&file_priv->minor->master);
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000555
Ilija Hadzic949c4a32012-05-15 16:40:10 -0400556 BUG_ON(dev->dev_mapping == NULL);
557 iput(container_of(dev->dev_mapping, struct inode, i_data));
558
Dave Airlie7c1c2872008-11-28 14:22:24 +1000559 /* drop the reference held my the file priv */
David Herrmann17931262013-08-25 18:29:00 +0200560 if (file_priv->master)
561 drm_master_put(&file_priv->master);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000562 file_priv->is_master = 0;
Eric Anholt6c340ea2007-08-25 20:23:09 +1000563 list_del(&file_priv->lhead);
Dave Airlie30e2fb12006-02-02 19:37:46 +1100564 mutex_unlock(&dev->struct_mutex);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000565
Dave Airlie22eae942005-11-10 22:16:34 +1100566 if (dev->driver->postclose)
Eric Anholt6c340ea2007-08-25 20:23:09 +1000567 dev->driver->postclose(dev, file_priv);
Dave Airlie32488772011-11-25 15:21:02 +0000568
Daniel Vetter319c9332013-08-15 00:02:46 +0200569
Dave Airlie32488772011-11-25 15:21:02 +0000570 if (drm_core_check_feature(dev, DRIVER_PRIME))
571 drm_prime_destroy_file_private(&file_priv->prime);
572
Eric W. Biederman5fce5e02012-02-07 16:47:26 -0800573 put_pid(file_priv->pid);
Eric Anholt9a298b22009-03-24 12:23:04 -0700574 kfree(file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 /* ========================================================
577 * End inline drm_release
578 */
579
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000580 if (!--dev->open_count) {
Dave Airlie7c1c2872008-11-28 14:22:24 +1000581 if (atomic_read(&dev->ioctl_count)) {
582 DRM_ERROR("Device busy: %d\n",
583 atomic_read(&dev->ioctl_count));
Arnd Bergmann58374712010-07-10 23:51:39 +0200584 retcode = -EBUSY;
Chris Wilson1a72d652010-08-11 14:41:16 +0100585 } else
586 retcode = drm_lastclose(dev);
Dave Airlie2c07a212012-02-20 14:18:07 +0000587 if (drm_device_is_unplugged(dev))
588 drm_put_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
Arnd Bergmann58374712010-07-10 23:51:39 +0200590 mutex_unlock(&drm_global_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 return retcode;
593}
594EXPORT_SYMBOL(drm_release);
595
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000596static bool
597drm_dequeue_event(struct drm_file *file_priv,
598 size_t total, size_t max, struct drm_pending_event **out)
599{
600 struct drm_device *dev = file_priv->minor->dev;
601 struct drm_pending_event *e;
602 unsigned long flags;
603 bool ret = false;
604
605 spin_lock_irqsave(&dev->event_lock, flags);
606
607 *out = NULL;
608 if (list_empty(&file_priv->event_list))
609 goto out;
610 e = list_first_entry(&file_priv->event_list,
611 struct drm_pending_event, link);
612 if (e->event->length + total > max)
613 goto out;
614
615 file_priv->event_space += e->event->length;
616 list_del(&e->link);
617 *out = e;
618 ret = true;
619
620out:
621 spin_unlock_irqrestore(&dev->event_lock, flags);
622 return ret;
623}
624
625ssize_t drm_read(struct file *filp, char __user *buffer,
626 size_t count, loff_t *offset)
627{
628 struct drm_file *file_priv = filp->private_data;
629 struct drm_pending_event *e;
630 size_t total;
631 ssize_t ret;
632
633 ret = wait_event_interruptible(file_priv->event_wait,
634 !list_empty(&file_priv->event_list));
635 if (ret < 0)
636 return ret;
637
638 total = 0;
639 while (drm_dequeue_event(file_priv, total, count, &e)) {
640 if (copy_to_user(buffer + total,
641 e->event, e->event->length)) {
642 total = -EFAULT;
643 break;
644 }
645
646 total += e->event->length;
647 e->destroy(e);
648 }
649
650 return total;
651}
652EXPORT_SYMBOL(drm_read);
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait)
655{
Kristian Høgsbergc9a9c5e2009-09-12 04:33:34 +1000656 struct drm_file *file_priv = filp->private_data;
657 unsigned int mask = 0;
658
659 poll_wait(filp, &file_priv->event_wait, wait);
660
661 if (!list_empty(&file_priv->event_list))
662 mask |= POLLIN | POLLRDNORM;
663
664 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000666EXPORT_SYMBOL(drm_poll);