2016-01-11 21:40:55 +00:00
|
|
|
/*
|
2005-04-16 22:20:36 +00:00
|
|
|
* \author Rickard E. (Rik) Faith <faith@valinux.com>
|
|
|
|
* \author Daryll Strauss <daryll@valinux.com>
|
|
|
|
* \author Gareth Hughes <gareth@valinux.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Created: Mon Jan 4 08:58:31 1999 by faith@valinux.com
|
|
|
|
*
|
|
|
|
* Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
|
|
|
|
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/poll.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2011-08-30 15:04:30 +00:00
|
|
|
#include <linux/module.h>
|
2017-03-08 14:12:42 +00:00
|
|
|
|
|
|
|
#include <drm/drm_file.h>
|
|
|
|
#include <drm/drmP.h>
|
|
|
|
|
2014-07-24 10:10:04 +00:00
|
|
|
#include "drm_legacy.h"
|
2014-09-10 10:43:53 +00:00
|
|
|
#include "drm_internal.h"
|
2016-06-21 08:54:13 +00:00
|
|
|
#include "drm_crtc_internal.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-02-24 14:53:25 +00:00
|
|
|
/* from BKL pushdown */
|
2010-07-10 21:51:39 +00:00
|
|
|
DEFINE_MUTEX(drm_global_mutex);
|
|
|
|
|
2016-01-11 21:40:55 +00:00
|
|
|
/**
|
|
|
|
* DOC: file operations
|
|
|
|
*
|
|
|
|
* Drivers must define the file operations structure that forms the DRM
|
|
|
|
* userspace API entry point, even though most of those operations are
|
2017-03-08 14:12:44 +00:00
|
|
|
* implemented in the DRM core. The resulting &struct file_operations must be
|
|
|
|
* stored in the &drm_driver.fops field. The mandatory functions are drm_open(),
|
2016-11-01 15:40:44 +00:00
|
|
|
* drm_read(), drm_ioctl() and drm_compat_ioctl() if CONFIG_COMPAT is enabled
|
2017-03-08 14:12:44 +00:00
|
|
|
* Note that drm_compat_ioctl will be NULL if CONFIG_COMPAT=n, so there's no
|
|
|
|
* need to sprinkle #ifdef into the code. Drivers which implement private ioctls
|
|
|
|
* that require 32/64 bit compatibility support must provide their own
|
|
|
|
* &file_operations.compat_ioctl handler that processes private ioctls and calls
|
|
|
|
* drm_compat_ioctl() for core ioctls.
|
2016-01-11 21:40:55 +00:00
|
|
|
*
|
|
|
|
* In addition drm_read() and drm_poll() provide support for DRM events. DRM
|
|
|
|
* events are a generic and extensible means to send asynchronous events to
|
|
|
|
* userspace through the file descriptor. They are used to send vblank event and
|
|
|
|
* page flip completions by the KMS API. But drivers can also use it for their
|
|
|
|
* own needs, e.g. to signal completion of rendering.
|
|
|
|
*
|
2017-03-08 14:12:44 +00:00
|
|
|
* For the driver-side event interface see drm_event_reserve_init() and
|
|
|
|
* drm_send_event() as the main starting points.
|
|
|
|
*
|
2016-01-11 21:40:55 +00:00
|
|
|
* The memory mapping implementation will vary depending on how the driver
|
|
|
|
* manages memory. Legacy drivers will use the deprecated drm_legacy_mmap()
|
|
|
|
* function, modern drivers should use one of the provided memory-manager
|
2017-03-08 14:12:44 +00:00
|
|
|
* specific implementations. For GEM-based drivers this is drm_gem_mmap(), and
|
|
|
|
* for drivers which use the CMA GEM helpers it's drm_gem_cma_mmap().
|
2016-01-11 21:40:55 +00:00
|
|
|
*
|
|
|
|
* No other file operations are supported by the DRM userspace API. Overall the
|
2016-05-31 20:55:13 +00:00
|
|
|
* following is an example #file_operations structure::
|
2016-01-11 21:40:55 +00:00
|
|
|
*
|
|
|
|
* static const example_drm_fops = {
|
|
|
|
* .owner = THIS_MODULE,
|
|
|
|
* .open = drm_open,
|
|
|
|
* .release = drm_release,
|
|
|
|
* .unlocked_ioctl = drm_ioctl,
|
2016-11-01 15:40:44 +00:00
|
|
|
* .compat_ioctl = drm_compat_ioctl, // NULL if CONFIG_COMPAT=n
|
2016-01-11 21:40:55 +00:00
|
|
|
* .poll = drm_poll,
|
|
|
|
* .read = drm_read,
|
|
|
|
* .llseek = no_llseek,
|
|
|
|
* .mmap = drm_gem_mmap,
|
|
|
|
* };
|
2017-03-08 14:12:44 +00:00
|
|
|
*
|
drm/gem: Add DEFINE_DRM_GEM_FOPS
Sadly there's only 1 driver which can use it, everyone else is special
for some reason:
- gma500 has a horrible runtime PM ioctl wrapper that probably doesn't
really work but meh.
- i915 needs special compat_ioctl handler because regrets.
- arcgpu needs to fixup the pgprot because (no idea why it can't do
that in the fault handler like everyone else).
- tegra does even worse stuff with pgprot
- udl does something with vm_flags too ...
- cma helpers, etnaviv, mtk, msm, rockchip, omap all implement some
variation on prefaulting.
- exynos is exynos, I got lost in the midlayers.
- vc4 has to reinvent half of cma helpers because those are too much
midlayer, plus vm_flags dances.
- vgem also seems unhappy with the default vm_flags.
So pretty sad divergence and I'm sure we could do better, but not
really an idea. Oh well, maybe this macro here helps to encourage more
consistency at least going forward.
Reviewed-by: Sean Paul <seanpaul@chromium.org>
Reviewed-by: Liviu Dudau <Liviu.Dudau@arm.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170308141257.12119-25-daniel.vetter@ffwll.ch
2017-03-08 14:12:57 +00:00
|
|
|
* For plain GEM based drivers there is the DEFINE_DRM_GEM_FOPS() macro, and for
|
|
|
|
* CMA based drivers there is the DEFINE_DRM_GEM_CMA_FOPS() macro to make this
|
|
|
|
* simpler.
|
2016-01-11 21:40:55 +00:00
|
|
|
*/
|
|
|
|
|
2014-04-28 14:23:57 +00:00
|
|
|
static int drm_open_helper(struct file *filp, struct drm_minor *minor);
|
2005-07-07 11:03:38 +00:00
|
|
|
|
2007-07-11 05:53:27 +00:00
|
|
|
static int drm_setup(struct drm_device * dev)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2013-08-08 13:41:15 +00:00
|
|
|
if (dev->driver->firstopen &&
|
2016-08-03 19:11:10 +00:00
|
|
|
drm_core_check_feature(dev, DRIVER_LEGACY)) {
|
2005-11-10 11:16:34 +00:00
|
|
|
ret = dev->driver->firstopen(dev);
|
2005-09-25 04:28:13 +00:00
|
|
|
if (ret != 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-08-08 13:41:35 +00:00
|
|
|
ret = drm_legacy_dma_setup(dev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
|
2005-09-25 04:28:13 +00:00
|
|
|
DRM_DEBUG("\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-11 21:40:55 +00:00
|
|
|
* drm_open - open method for DRM file
|
|
|
|
* @inode: device inode
|
|
|
|
* @filp: file pointer.
|
2005-09-25 04:28:13 +00:00
|
|
|
*
|
2017-03-08 14:12:44 +00:00
|
|
|
* This function must be used by drivers as their &file_operations.open method.
|
|
|
|
* It looks up the correct DRM device and instantiates all the per-file
|
|
|
|
* resources for it. It also calls the &drm_driver.open driver callback.
|
2016-01-11 21:40:55 +00:00
|
|
|
*
|
|
|
|
* RETURNS:
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2016-01-11 21:40:55 +00:00
|
|
|
* 0 on success or negative errno value on falure.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2005-09-25 04:28:13 +00:00
|
|
|
int drm_open(struct inode *inode, struct file *filp)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-01-29 09:49:19 +00:00
|
|
|
struct drm_device *dev;
|
2008-04-21 06:47:32 +00:00
|
|
|
struct drm_minor *minor;
|
2014-01-29 09:49:19 +00:00
|
|
|
int retcode;
|
2012-10-29 17:35:01 +00:00
|
|
|
int need_setup = 0;
|
2005-09-25 04:28:13 +00:00
|
|
|
|
2014-01-29 09:49:19 +00:00
|
|
|
minor = drm_minor_acquire(iminor(inode));
|
|
|
|
if (IS_ERR(minor))
|
|
|
|
return PTR_ERR(minor);
|
2012-02-20 14:18:07 +00:00
|
|
|
|
2014-01-29 09:49:19 +00:00
|
|
|
dev = minor->dev;
|
2012-10-29 17:35:01 +00:00
|
|
|
if (!dev->open_count++)
|
|
|
|
need_setup = 1;
|
|
|
|
|
2014-01-03 13:24:19 +00:00
|
|
|
/* share address_space across all char-devs of a single device */
|
|
|
|
filp->f_mapping = dev->anon_inode->i_mapping;
|
2012-10-29 17:35:01 +00:00
|
|
|
|
2014-04-28 14:23:57 +00:00
|
|
|
retcode = drm_open_helper(filp, minor);
|
2012-10-29 17:35:01 +00:00
|
|
|
if (retcode)
|
|
|
|
goto err_undo;
|
|
|
|
if (need_setup) {
|
|
|
|
retcode = drm_setup(dev);
|
|
|
|
if (retcode)
|
|
|
|
goto err_undo;
|
2008-11-07 22:05:41 +00:00
|
|
|
}
|
2012-10-29 17:35:01 +00:00
|
|
|
return 0;
|
2008-11-05 18:31:53 +00:00
|
|
|
|
2012-10-29 17:35:01 +00:00
|
|
|
err_undo:
|
|
|
|
dev->open_count--;
|
2014-01-29 09:49:19 +00:00
|
|
|
drm_minor_release(minor);
|
2005-04-16 22:20:36 +00:00
|
|
|
return retcode;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_open);
|
|
|
|
|
2016-01-11 21:40:55 +00:00
|
|
|
/*
|
2006-01-02 10:32:48 +00:00
|
|
|
* Check whether DRI will run on this CPU.
|
|
|
|
*
|
|
|
|
* \return non-zero if the DRI will run on this CPU, or zero otherwise.
|
|
|
|
*/
|
|
|
|
static int drm_cpu_valid(void)
|
|
|
|
{
|
|
|
|
#if defined(__sparc__) && !defined(__sparc_v9__)
|
|
|
|
return 0; /* No cmpxchg before v9 sparc. */
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-01-11 21:40:55 +00:00
|
|
|
/*
|
2006-01-02 10:32:48 +00:00
|
|
|
* Called whenever a process opens /dev/drm.
|
|
|
|
*
|
|
|
|
* \param filp file pointer.
|
2014-01-29 09:18:02 +00:00
|
|
|
* \param minor acquired minor-object.
|
2006-01-02 10:32:48 +00:00
|
|
|
* \return zero on success or a negative number on failure.
|
|
|
|
*
|
|
|
|
* Creates and initializes a drm_file structure for the file private data in \p
|
|
|
|
* filp and add it into the double linked list in \p dev.
|
|
|
|
*/
|
2014-04-28 14:23:57 +00:00
|
|
|
static int drm_open_helper(struct file *filp, struct drm_minor *minor)
|
2006-01-02 10:32:48 +00:00
|
|
|
{
|
2014-01-29 09:18:02 +00:00
|
|
|
struct drm_device *dev = minor->dev;
|
2007-07-11 05:53:27 +00:00
|
|
|
struct drm_file *priv;
|
2006-01-02 10:32:48 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (filp->f_flags & O_EXCL)
|
|
|
|
return -EBUSY; /* No exclusive opens */
|
|
|
|
if (!drm_cpu_valid())
|
|
|
|
return -EINVAL;
|
2012-09-12 05:55:05 +00:00
|
|
|
if (dev->switch_power_state != DRM_SWITCH_POWER_ON && dev->switch_power_state != DRM_SWITCH_POWER_DYNAMIC_OFF)
|
2010-12-06 23:20:40 +00:00
|
|
|
return -EINVAL;
|
2006-01-02 10:32:48 +00:00
|
|
|
|
2014-01-29 09:18:02 +00:00
|
|
|
DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor->index);
|
2006-01-02 10:32:48 +00:00
|
|
|
|
2010-05-13 19:58:56 +00:00
|
|
|
priv = kzalloc(sizeof(*priv), GFP_KERNEL);
|
2006-01-02 10:32:48 +00:00
|
|
|
if (!priv)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
filp->private_data = priv;
|
2007-08-25 10:23:09 +00:00
|
|
|
priv->filp = filp;
|
2012-02-08 00:47:26 +00:00
|
|
|
priv->pid = get_pid(task_pid(current));
|
2014-01-29 09:18:02 +00:00
|
|
|
priv->minor = minor;
|
2013-07-02 00:53:28 +00:00
|
|
|
|
2006-01-02 10:32:48 +00:00
|
|
|
/* for compatibility root is always authenticated */
|
2014-07-22 15:12:26 +00:00
|
|
|
priv->authenticated = capable(CAP_SYS_ADMIN);
|
2006-01-02 10:32:48 +00:00
|
|
|
priv->lock_count = 0;
|
|
|
|
|
2007-05-25 19:01:51 +00:00
|
|
|
INIT_LIST_HEAD(&priv->lhead);
|
2008-11-07 22:05:41 +00:00
|
|
|
INIT_LIST_HEAD(&priv->fbs);
|
drm: revamp locking around fb creation/destruction
Well, at least step 1. The goal here is that framebuffer objects can
survive outside of the mode_config lock, with just a reference held
as protection. The first step to get there is to introduce a special
fb_lock which protects fb lookup, creation and destruction, to make
them appear atomic.
This new fb_lock can nest within the mode_config lock. But the idea is
(once the reference counting part is completed) that we only quickly
take that fb_lock to lookup a framebuffer and grab a reference,
without any other locks involved.
vmwgfx is the only driver which does framebuffer lookups itself, also
wrap those calls to drm_mode_object_find with the new lock.
Also protect the fb_list walking in i915 and omapdrm with the new lock.
As a slight complication there's also the list of user-created fbs
attached to the file private. The problem now is that at fclose() time
we need to walk that list, eventually do a modeset call to remove the
fb from active usage (and are required to be able to take the
mode_config lock), but in the end we need to grab the new fb_lock to
remove the fb from the list. The easiest solution is to add another
mutex to protect this per-file list.
Currently that new fbs_lock nests within the modeset locks and so
appears redudant. But later patches will switch around this sequence
so that taking the modeset locks in the fb destruction path is
optional in the fastpath. Ultimately the goal is that addfb and rmfb
do not require the mode_config lock, since otherwise they have the
potential to introduce stalls in the pageflip sequence of a compositor
(if the compositor e.g. switches to a fullscreen client or if it
enables a plane). But that requires a few more steps and hoops to jump
through.
Note that framebuffer creation/destruction is now double-protected -
once by the fb_lock and in parts by the idr_lock. The later would be
unnecessariy if framebuffers would have their own idr allocator. But
that's material for another patch (series).
v2: Properly initialize the fb->filp_head list in _init, otherwise the
newly added WARN to check whether the fb isn't on a fpriv list any
more will fail for driver-private objects.
v3: Fixup two error-case unlock bugs spotted by Richard Wilbur.
Reviewed-by: Rob Clark <rob@ti.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-12-10 20:19:18 +00:00
|
|
|
mutex_init(&priv->fbs_lock);
|
2015-05-22 12:34:51 +00:00
|
|
|
INIT_LIST_HEAD(&priv->blobs);
|
2016-01-25 21:16:43 +00:00
|
|
|
INIT_LIST_HEAD(&priv->pending_event_list);
|
2009-09-11 18:33:34 +00:00
|
|
|
INIT_LIST_HEAD(&priv->event_list);
|
|
|
|
init_waitqueue_head(&priv->event_wait);
|
|
|
|
priv->event_space = 4096; /* set aside 4k for event buffer */
|
2007-05-25 19:01:51 +00:00
|
|
|
|
2015-11-25 14:39:03 +00:00
|
|
|
mutex_init(&priv->event_read_lock);
|
|
|
|
|
2014-09-30 14:49:56 +00:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_GEM))
|
2008-07-30 19:06:12 +00:00
|
|
|
drm_gem_open(dev, priv);
|
|
|
|
|
2011-11-25 15:21:02 +00:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_PRIME))
|
|
|
|
drm_prime_init_file_private(&priv->prime);
|
|
|
|
|
2006-01-02 10:32:48 +00:00
|
|
|
if (dev->driver->open) {
|
|
|
|
ret = dev->driver->open(dev, priv);
|
|
|
|
if (ret < 0)
|
2013-07-02 00:53:28 +00:00
|
|
|
goto out_prime_destroy;
|
2006-01-02 10:32:48 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 18:51:00 +00:00
|
|
|
if (drm_is_primary_client(priv)) {
|
|
|
|
ret = drm_master_open(priv);
|
2015-12-02 17:24:46 +00:00
|
|
|
if (ret)
|
2013-07-02 00:53:28 +00:00
|
|
|
goto out_close;
|
2008-11-28 04:22:24 +00:00
|
|
|
}
|
2007-05-25 19:01:51 +00:00
|
|
|
|
2016-04-26 17:29:41 +00:00
|
|
|
mutex_lock(&dev->filelist_mutex);
|
2007-05-25 19:01:51 +00:00
|
|
|
list_add(&priv->lhead, &dev->filelist);
|
2016-04-26 17:29:41 +00:00
|
|
|
mutex_unlock(&dev->filelist_mutex);
|
2006-01-02 10:32:48 +00:00
|
|
|
|
|
|
|
#ifdef __alpha__
|
|
|
|
/*
|
|
|
|
* Default the hose
|
|
|
|
*/
|
|
|
|
if (!dev->hose) {
|
|
|
|
struct pci_dev *pci_dev;
|
|
|
|
pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL);
|
|
|
|
if (pci_dev) {
|
|
|
|
dev->hose = pci_dev->sysdata;
|
|
|
|
pci_dev_put(pci_dev);
|
|
|
|
}
|
|
|
|
if (!dev->hose) {
|
2014-02-13 13:14:00 +00:00
|
|
|
struct pci_bus *b = list_entry(pci_root_buses.next,
|
|
|
|
struct pci_bus, node);
|
2006-01-02 10:32:48 +00:00
|
|
|
if (b)
|
|
|
|
dev->hose = b->sysdata;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
2013-07-02 00:53:28 +00:00
|
|
|
|
|
|
|
out_close:
|
|
|
|
if (dev->driver->postclose)
|
|
|
|
dev->driver->postclose(dev, priv);
|
|
|
|
out_prime_destroy:
|
|
|
|
if (drm_core_check_feature(dev, DRIVER_PRIME))
|
|
|
|
drm_prime_destroy_file_private(&priv->prime);
|
2014-09-30 14:49:56 +00:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_GEM))
|
2013-07-02 00:53:28 +00:00
|
|
|
drm_gem_release(dev, priv);
|
|
|
|
put_pid(priv->pid);
|
2009-03-24 19:23:04 +00:00
|
|
|
kfree(priv);
|
2006-01-02 10:32:48 +00:00
|
|
|
filp->private_data = NULL;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-09-11 18:33:34 +00:00
|
|
|
static void drm_events_release(struct drm_file *file_priv)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = file_priv->minor->dev;
|
|
|
|
struct drm_pending_event *e, *et;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dev->event_lock, flags);
|
|
|
|
|
2016-01-25 21:16:43 +00:00
|
|
|
/* Unlink pending events */
|
|
|
|
list_for_each_entry_safe(e, et, &file_priv->pending_event_list,
|
|
|
|
pending_link) {
|
|
|
|
list_del(&e->pending_link);
|
|
|
|
e->file_priv = NULL;
|
|
|
|
}
|
|
|
|
|
2009-09-11 18:33:34 +00:00
|
|
|
/* Remove unconsumed events */
|
2013-10-29 11:30:26 +00:00
|
|
|
list_for_each_entry_safe(e, et, &file_priv->event_list, link) {
|
|
|
|
list_del(&e->link);
|
2016-06-01 22:06:35 +00:00
|
|
|
kfree(e);
|
2013-10-29 11:30:26 +00:00
|
|
|
}
|
2009-09-11 18:33:34 +00:00
|
|
|
|
|
|
|
spin_unlock_irqrestore(&dev->event_lock, flags);
|
|
|
|
}
|
|
|
|
|
2013-10-02 09:23:36 +00:00
|
|
|
static void drm_legacy_dev_reinit(struct drm_device *dev)
|
|
|
|
{
|
2016-04-26 17:29:35 +00:00
|
|
|
if (dev->irq_enabled)
|
|
|
|
drm_irq_uninstall(dev);
|
|
|
|
|
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
drm_legacy_agp_clear(dev);
|
|
|
|
|
|
|
|
drm_legacy_sg_cleanup(dev);
|
|
|
|
drm_legacy_vma_flush(dev);
|
|
|
|
drm_legacy_dma_takedown(dev);
|
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2013-10-02 09:23:36 +00:00
|
|
|
|
|
|
|
dev->sigdata.lock = NULL;
|
|
|
|
|
|
|
|
dev->context_flag = 0;
|
|
|
|
dev->last_context = 0;
|
|
|
|
dev->if_version = 0;
|
2016-04-26 17:29:35 +00:00
|
|
|
|
|
|
|
DRM_DEBUG("lastclose completed\n");
|
2013-10-02 09:23:36 +00:00
|
|
|
}
|
|
|
|
|
2016-04-26 17:29:35 +00:00
|
|
|
void drm_lastclose(struct drm_device * dev)
|
2013-10-02 09:23:36 +00:00
|
|
|
{
|
|
|
|
DRM_DEBUG("\n");
|
|
|
|
|
|
|
|
if (dev->driver->lastclose)
|
|
|
|
dev->driver->lastclose(dev);
|
|
|
|
DRM_DEBUG("driver lastclose completed\n");
|
|
|
|
|
2016-08-03 19:11:10 +00:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_LEGACY))
|
2016-04-26 17:29:35 +00:00
|
|
|
drm_legacy_dev_reinit(dev);
|
2013-10-02 09:23:36 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
2016-01-11 21:40:55 +00:00
|
|
|
* drm_release - release method for DRM file
|
|
|
|
* @inode: device inode
|
|
|
|
* @filp: file pointer.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2017-03-08 14:12:44 +00:00
|
|
|
* This function must be used by drivers as their &file_operations.release
|
|
|
|
* method. It frees any resources associated with the open file, and calls the
|
|
|
|
* &drm_driver.preclose and &drm_driver.lastclose driver callbacks. If this is
|
|
|
|
* the last open file for the DRM device also proceeds to call the
|
|
|
|
* &drm_driver.lastclose driver callback.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2016-01-11 21:40:55 +00:00
|
|
|
* RETURNS:
|
|
|
|
*
|
|
|
|
* Always succeeds and returns 0.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2005-09-25 04:28:13 +00:00
|
|
|
int drm_release(struct inode *inode, struct file *filp)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-08-25 10:23:09 +00:00
|
|
|
struct drm_file *file_priv = filp->private_data;
|
2014-01-29 09:49:19 +00:00
|
|
|
struct drm_minor *minor = file_priv->minor;
|
|
|
|
struct drm_device *dev = minor->dev;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-07-10 21:51:39 +00:00
|
|
|
mutex_lock(&drm_global_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-25 04:28:13 +00:00
|
|
|
DRM_DEBUG("open_count = %d\n", dev->open_count);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-04-26 17:29:41 +00:00
|
|
|
mutex_lock(&dev->filelist_mutex);
|
2014-07-24 13:23:10 +00:00
|
|
|
list_del(&file_priv->lhead);
|
2016-04-26 17:29:41 +00:00
|
|
|
mutex_unlock(&dev->filelist_mutex);
|
|
|
|
|
2005-11-10 11:16:34 +00:00
|
|
|
if (dev->driver->preclose)
|
2007-08-25 10:23:09 +00:00
|
|
|
dev->driver->preclose(dev, file_priv);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* ========================================================
|
|
|
|
* Begin inline drm_release
|
|
|
|
*/
|
|
|
|
|
2005-09-25 04:28:13 +00:00
|
|
|
DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n",
|
2007-10-19 06:40:40 +00:00
|
|
|
task_pid_nr(current),
|
2014-01-29 12:12:31 +00:00
|
|
|
(long)old_encode_dev(file_priv->minor->kdev->devt),
|
2005-09-25 04:28:13 +00:00
|
|
|
dev->open_count);
|
|
|
|
|
2016-08-03 19:11:10 +00:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_LEGACY))
|
2016-06-14 18:50:57 +00:00
|
|
|
drm_legacy_lock_release(dev, filp);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-10-25 22:31:26 +00:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
|
2014-09-11 05:41:51 +00:00
|
|
|
drm_legacy_reclaim_buffers(dev, file_priv);
|
2011-10-25 22:31:26 +00:00
|
|
|
|
2009-09-11 18:33:34 +00:00
|
|
|
drm_events_release(file_priv);
|
|
|
|
|
2015-05-22 12:34:51 +00:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_MODESET)) {
|
2009-02-12 19:37:56 +00:00
|
|
|
drm_fb_release(file_priv);
|
2015-05-22 12:34:51 +00:00
|
|
|
drm_property_destroy_user_blobs(dev, file_priv);
|
|
|
|
}
|
2009-02-12 19:37:56 +00:00
|
|
|
|
2014-09-30 14:49:56 +00:00
|
|
|
if (drm_core_check_feature(dev, DRIVER_GEM))
|
2012-04-14 11:52:13 +00:00
|
|
|
drm_gem_release(dev, file_priv);
|
|
|
|
|
2014-07-24 10:10:04 +00:00
|
|
|
drm_legacy_ctxbitmap_flush(dev, file_priv);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-06-14 18:51:01 +00:00
|
|
|
if (drm_is_primary_client(file_priv))
|
|
|
|
drm_master_release(file_priv);
|
2014-02-25 18:57:44 +00:00
|
|
|
|
2005-11-10 11:16:34 +00:00
|
|
|
if (dev->driver->postclose)
|
2007-08-25 10:23:09 +00:00
|
|
|
dev->driver->postclose(dev, file_priv);
|
2011-11-25 15:21:02 +00:00
|
|
|
|
|
|
|
if (drm_core_check_feature(dev, DRIVER_PRIME))
|
|
|
|
drm_prime_destroy_file_private(&file_priv->prime);
|
|
|
|
|
2014-08-06 11:02:50 +00:00
|
|
|
WARN_ON(!list_empty(&file_priv->event_list));
|
|
|
|
|
2012-02-08 00:47:26 +00:00
|
|
|
put_pid(file_priv->pid);
|
2009-03-24 19:23:04 +00:00
|
|
|
kfree(file_priv);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* ========================================================
|
|
|
|
* End inline drm_release
|
|
|
|
*/
|
|
|
|
|
2005-09-25 04:28:13 +00:00
|
|
|
if (!--dev->open_count) {
|
2016-04-26 17:29:35 +00:00
|
|
|
drm_lastclose(dev);
|
2012-02-20 14:18:07 +00:00
|
|
|
if (drm_device_is_unplugged(dev))
|
|
|
|
drm_put_dev(dev);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2010-07-10 21:51:39 +00:00
|
|
|
mutex_unlock(&drm_global_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-01-29 09:49:19 +00:00
|
|
|
drm_minor_release(minor);
|
|
|
|
|
2016-04-26 17:29:35 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_release);
|
|
|
|
|
2016-01-11 21:40:55 +00:00
|
|
|
/**
|
|
|
|
* drm_read - read method for DRM file
|
|
|
|
* @filp: file pointer
|
|
|
|
* @buffer: userspace destination pointer for the read
|
|
|
|
* @count: count in bytes to read
|
|
|
|
* @offset: offset to read
|
|
|
|
*
|
2017-03-08 14:12:44 +00:00
|
|
|
* This function must be used by drivers as their &file_operations.read
|
2016-01-11 21:40:55 +00:00
|
|
|
* method iff they use DRM events for asynchronous signalling to userspace.
|
|
|
|
* Since events are used by the KMS API for vblank and page flip completion this
|
|
|
|
* means all modern display drivers must use it.
|
|
|
|
*
|
2017-03-08 14:12:44 +00:00
|
|
|
* @offset is ignored, DRM events are read like a pipe. Therefore drivers also
|
|
|
|
* must set the &file_operation.llseek to no_llseek(). Polling support is
|
2016-01-11 21:40:55 +00:00
|
|
|
* provided by drm_poll().
|
|
|
|
*
|
|
|
|
* This function will only ever read a full event. Therefore userspace must
|
|
|
|
* supply a big enough buffer to fit any event to ensure forward progress. Since
|
|
|
|
* the maximum event space is currently 4K it's recommended to just use that for
|
|
|
|
* safety.
|
|
|
|
*
|
|
|
|
* RETURNS:
|
|
|
|
*
|
|
|
|
* Number of bytes read (always aligned to full events, and can be 0) or a
|
|
|
|
* negative error code on failure.
|
|
|
|
*/
|
2014-12-04 21:03:25 +00:00
|
|
|
ssize_t drm_read(struct file *filp, char __user *buffer,
|
|
|
|
size_t count, loff_t *offset)
|
2009-09-11 18:33:34 +00:00
|
|
|
{
|
2014-12-04 21:03:25 +00:00
|
|
|
struct drm_file *file_priv = filp->private_data;
|
2009-09-11 18:33:34 +00:00
|
|
|
struct drm_device *dev = file_priv->minor->dev;
|
2015-11-25 14:39:03 +00:00
|
|
|
ssize_t ret;
|
2009-09-11 18:33:34 +00:00
|
|
|
|
2014-12-04 21:03:25 +00:00
|
|
|
if (!access_ok(VERIFY_WRITE, buffer, count))
|
|
|
|
return -EFAULT;
|
2009-09-11 18:33:34 +00:00
|
|
|
|
2015-11-25 14:39:03 +00:00
|
|
|
ret = mutex_lock_interruptible(&file_priv->event_read_lock);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2014-12-04 21:03:25 +00:00
|
|
|
for (;;) {
|
2015-11-25 14:39:02 +00:00
|
|
|
struct drm_pending_event *e = NULL;
|
|
|
|
|
|
|
|
spin_lock_irq(&dev->event_lock);
|
|
|
|
if (!list_empty(&file_priv->event_list)) {
|
|
|
|
e = list_first_entry(&file_priv->event_list,
|
|
|
|
struct drm_pending_event, link);
|
|
|
|
file_priv->event_space += e->event->length;
|
|
|
|
list_del(&e->link);
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&dev->event_lock);
|
|
|
|
|
|
|
|
if (e == NULL) {
|
2014-12-04 21:03:25 +00:00
|
|
|
if (ret)
|
|
|
|
break;
|
2009-09-11 18:33:34 +00:00
|
|
|
|
2014-12-04 21:03:25 +00:00
|
|
|
if (filp->f_flags & O_NONBLOCK) {
|
|
|
|
ret = -EAGAIN;
|
|
|
|
break;
|
|
|
|
}
|
2009-09-11 18:33:34 +00:00
|
|
|
|
2015-11-25 14:39:03 +00:00
|
|
|
mutex_unlock(&file_priv->event_read_lock);
|
2014-12-04 21:03:25 +00:00
|
|
|
ret = wait_event_interruptible(file_priv->event_wait,
|
|
|
|
!list_empty(&file_priv->event_list));
|
2015-11-25 14:39:03 +00:00
|
|
|
if (ret >= 0)
|
|
|
|
ret = mutex_lock_interruptible(&file_priv->event_read_lock);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2014-12-04 21:03:25 +00:00
|
|
|
} else {
|
2015-11-25 14:39:02 +00:00
|
|
|
unsigned length = e->event->length;
|
|
|
|
|
|
|
|
if (length > count - ret) {
|
|
|
|
put_back_event:
|
|
|
|
spin_lock_irq(&dev->event_lock);
|
|
|
|
file_priv->event_space -= length;
|
|
|
|
list_add(&e->link, &file_priv->event_list);
|
|
|
|
spin_unlock_irq(&dev->event_lock);
|
2014-12-04 21:03:25 +00:00
|
|
|
break;
|
2015-11-25 14:39:02 +00:00
|
|
|
}
|
2014-12-04 21:03:25 +00:00
|
|
|
|
2015-11-25 14:39:02 +00:00
|
|
|
if (copy_to_user(buffer + ret, e->event, length)) {
|
2014-12-04 21:03:25 +00:00
|
|
|
if (ret == 0)
|
|
|
|
ret = -EFAULT;
|
2015-11-25 14:39:02 +00:00
|
|
|
goto put_back_event;
|
2014-12-04 21:03:25 +00:00
|
|
|
}
|
2009-09-11 18:33:34 +00:00
|
|
|
|
2015-11-25 14:39:02 +00:00
|
|
|
ret += length;
|
2016-06-01 22:06:35 +00:00
|
|
|
kfree(e);
|
2009-09-11 18:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
2015-11-25 14:39:03 +00:00
|
|
|
mutex_unlock(&file_priv->event_read_lock);
|
2009-09-11 18:33:34 +00:00
|
|
|
|
2014-12-04 21:03:25 +00:00
|
|
|
return ret;
|
2009-09-11 18:33:34 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_read);
|
|
|
|
|
2016-01-11 21:40:55 +00:00
|
|
|
/**
|
|
|
|
* drm_poll - poll method for DRM file
|
|
|
|
* @filp: file pointer
|
|
|
|
* @wait: poll waiter table
|
|
|
|
*
|
2017-03-08 14:12:44 +00:00
|
|
|
* This function must be used by drivers as their &file_operations.read method
|
|
|
|
* iff they use DRM events for asynchronous signalling to userspace. Since
|
|
|
|
* events are used by the KMS API for vblank and page flip completion this means
|
|
|
|
* all modern display drivers must use it.
|
2016-01-11 21:40:55 +00:00
|
|
|
*
|
|
|
|
* See also drm_read().
|
|
|
|
*
|
|
|
|
* RETURNS:
|
|
|
|
*
|
|
|
|
* Mask of POLL flags indicating the current status of the file.
|
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait)
|
|
|
|
{
|
2009-09-11 18:33:34 +00:00
|
|
|
struct drm_file *file_priv = filp->private_data;
|
|
|
|
unsigned int mask = 0;
|
|
|
|
|
|
|
|
poll_wait(filp, &file_priv->event_wait, wait);
|
|
|
|
|
|
|
|
if (!list_empty(&file_priv->event_list))
|
|
|
|
mask |= POLLIN | POLLRDNORM;
|
|
|
|
|
|
|
|
return mask;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2005-09-25 04:28:13 +00:00
|
|
|
EXPORT_SYMBOL(drm_poll);
|
2016-01-11 21:40:56 +00:00
|
|
|
|
|
|
|
/**
|
2016-01-28 11:01:04 +00:00
|
|
|
* drm_event_reserve_init_locked - init a DRM event and reserve space for it
|
2016-01-11 21:40:56 +00:00
|
|
|
* @dev: DRM device
|
|
|
|
* @file_priv: DRM file private data
|
|
|
|
* @p: tracking structure for the pending event
|
|
|
|
* @e: actual event data to deliver to userspace
|
|
|
|
*
|
|
|
|
* This function prepares the passed in event for eventual delivery. If the event
|
|
|
|
* doesn't get delivered (because the IOCTL fails later on, before queuing up
|
|
|
|
* anything) then the even must be cancelled and freed using
|
2016-01-11 21:40:59 +00:00
|
|
|
* drm_event_cancel_free(). Successfully initialized events should be sent out
|
|
|
|
* using drm_send_event() or drm_send_event_locked() to signal completion of the
|
|
|
|
* asynchronous event to userspace.
|
2016-01-11 21:40:56 +00:00
|
|
|
*
|
|
|
|
* If callers embedded @p into a larger structure it must be allocated with
|
|
|
|
* kmalloc and @p must be the first member element.
|
|
|
|
*
|
2016-01-28 11:01:04 +00:00
|
|
|
* This is the locked version of drm_event_reserve_init() for callers which
|
2017-01-25 06:26:47 +00:00
|
|
|
* already hold &drm_device.event_lock.
|
2016-01-28 11:01:04 +00:00
|
|
|
*
|
2016-01-11 21:40:56 +00:00
|
|
|
* RETURNS:
|
|
|
|
*
|
|
|
|
* 0 on success or a negative error code on failure.
|
|
|
|
*/
|
2016-01-28 11:01:04 +00:00
|
|
|
int drm_event_reserve_init_locked(struct drm_device *dev,
|
|
|
|
struct drm_file *file_priv,
|
|
|
|
struct drm_pending_event *p,
|
|
|
|
struct drm_event *e)
|
2016-01-11 21:40:56 +00:00
|
|
|
{
|
2016-01-28 11:01:04 +00:00
|
|
|
if (file_priv->event_space < e->length)
|
|
|
|
return -ENOMEM;
|
2016-01-11 21:40:56 +00:00
|
|
|
|
|
|
|
file_priv->event_space -= e->length;
|
|
|
|
|
|
|
|
p->event = e;
|
2016-01-25 21:16:43 +00:00
|
|
|
list_add(&p->pending_link, &file_priv->pending_event_list);
|
2016-01-11 21:40:56 +00:00
|
|
|
p->file_priv = file_priv;
|
|
|
|
|
2016-01-28 11:01:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_event_reserve_init_locked);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* drm_event_reserve_init - init a DRM event and reserve space for it
|
|
|
|
* @dev: DRM device
|
|
|
|
* @file_priv: DRM file private data
|
|
|
|
* @p: tracking structure for the pending event
|
|
|
|
* @e: actual event data to deliver to userspace
|
|
|
|
*
|
|
|
|
* This function prepares the passed in event for eventual delivery. If the event
|
|
|
|
* doesn't get delivered (because the IOCTL fails later on, before queuing up
|
|
|
|
* anything) then the even must be cancelled and freed using
|
|
|
|
* drm_event_cancel_free(). Successfully initialized events should be sent out
|
|
|
|
* using drm_send_event() or drm_send_event_locked() to signal completion of the
|
|
|
|
* asynchronous event to userspace.
|
|
|
|
*
|
|
|
|
* If callers embedded @p into a larger structure it must be allocated with
|
|
|
|
* kmalloc and @p must be the first member element.
|
|
|
|
*
|
2017-01-25 06:26:47 +00:00
|
|
|
* Callers which already hold &drm_device.event_lock should use
|
2016-12-15 11:36:02 +00:00
|
|
|
* drm_event_reserve_init_locked() instead.
|
2016-01-28 11:01:04 +00:00
|
|
|
*
|
|
|
|
* RETURNS:
|
|
|
|
*
|
|
|
|
* 0 on success or a negative error code on failure.
|
|
|
|
*/
|
|
|
|
int drm_event_reserve_init(struct drm_device *dev,
|
|
|
|
struct drm_file *file_priv,
|
|
|
|
struct drm_pending_event *p,
|
|
|
|
struct drm_event *e)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dev->event_lock, flags);
|
|
|
|
ret = drm_event_reserve_init_locked(dev, file_priv, p, e);
|
2016-01-11 21:40:56 +00:00
|
|
|
spin_unlock_irqrestore(&dev->event_lock, flags);
|
2016-01-28 11:01:04 +00:00
|
|
|
|
2016-01-11 21:40:56 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_event_reserve_init);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* drm_event_cancel_free - free a DRM event and release it's space
|
|
|
|
* @dev: DRM device
|
|
|
|
* @p: tracking structure for the pending event
|
|
|
|
*
|
|
|
|
* This function frees the event @p initialized with drm_event_reserve_init()
|
2017-03-08 14:12:44 +00:00
|
|
|
* and releases any allocated space. It is used to cancel an event when the
|
|
|
|
* nonblocking operation could not be submitted and needed to be aborted.
|
2016-01-11 21:40:56 +00:00
|
|
|
*/
|
|
|
|
void drm_event_cancel_free(struct drm_device *dev,
|
|
|
|
struct drm_pending_event *p)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
spin_lock_irqsave(&dev->event_lock, flags);
|
2016-01-25 21:16:43 +00:00
|
|
|
if (p->file_priv) {
|
|
|
|
p->file_priv->event_space += p->event->length;
|
|
|
|
list_del(&p->pending_link);
|
|
|
|
}
|
2016-01-11 21:40:56 +00:00
|
|
|
spin_unlock_irqrestore(&dev->event_lock, flags);
|
2016-10-20 14:50:03 +00:00
|
|
|
|
|
|
|
if (p->fence)
|
2016-10-25 12:00:45 +00:00
|
|
|
dma_fence_put(p->fence);
|
2016-10-20 14:50:03 +00:00
|
|
|
|
2016-06-01 22:06:35 +00:00
|
|
|
kfree(p);
|
2016-01-11 21:40:56 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_event_cancel_free);
|
2016-01-11 21:40:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* drm_send_event_locked - send DRM event to file descriptor
|
|
|
|
* @dev: DRM device
|
|
|
|
* @e: DRM event to deliver
|
|
|
|
*
|
|
|
|
* This function sends the event @e, initialized with drm_event_reserve_init(),
|
|
|
|
* to its associated userspace DRM file. Callers must already hold
|
2017-01-25 06:26:47 +00:00
|
|
|
* &drm_device.event_lock, see drm_send_event() for the unlocked version.
|
2016-01-25 21:16:43 +00:00
|
|
|
*
|
|
|
|
* Note that the core will take care of unlinking and disarming events when the
|
|
|
|
* corresponding DRM file is closed. Drivers need not worry about whether the
|
|
|
|
* DRM file for this event still exists and can call this function upon
|
|
|
|
* completion of the asynchronous work unconditionally.
|
2016-01-11 21:40:59 +00:00
|
|
|
*/
|
|
|
|
void drm_send_event_locked(struct drm_device *dev, struct drm_pending_event *e)
|
|
|
|
{
|
|
|
|
assert_spin_locked(&dev->event_lock);
|
|
|
|
|
2016-06-08 12:19:00 +00:00
|
|
|
if (e->completion) {
|
|
|
|
complete_all(e->completion);
|
2016-12-21 10:23:30 +00:00
|
|
|
e->completion_release(e->completion);
|
2016-06-08 12:19:00 +00:00
|
|
|
e->completion = NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-01 22:06:35 +00:00
|
|
|
if (e->fence) {
|
2016-10-25 12:00:45 +00:00
|
|
|
dma_fence_signal(e->fence);
|
|
|
|
dma_fence_put(e->fence);
|
2016-06-01 22:06:35 +00:00
|
|
|
}
|
|
|
|
|
2016-01-25 21:16:43 +00:00
|
|
|
if (!e->file_priv) {
|
2016-06-01 22:06:35 +00:00
|
|
|
kfree(e);
|
2016-01-25 21:16:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_del(&e->pending_link);
|
2016-01-11 21:40:59 +00:00
|
|
|
list_add_tail(&e->link,
|
|
|
|
&e->file_priv->event_list);
|
|
|
|
wake_up_interruptible(&e->file_priv->event_wait);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_send_event_locked);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* drm_send_event - send DRM event to file descriptor
|
|
|
|
* @dev: DRM device
|
|
|
|
* @e: DRM event to deliver
|
|
|
|
*
|
|
|
|
* This function sends the event @e, initialized with drm_event_reserve_init(),
|
2017-01-25 06:26:47 +00:00
|
|
|
* to its associated userspace DRM file. This function acquires
|
|
|
|
* &drm_device.event_lock, see drm_send_event_locked() for callers which already
|
|
|
|
* hold this lock.
|
2016-01-25 21:16:43 +00:00
|
|
|
*
|
|
|
|
* Note that the core will take care of unlinking and disarming events when the
|
|
|
|
* corresponding DRM file is closed. Drivers need not worry about whether the
|
|
|
|
* DRM file for this event still exists and can call this function upon
|
|
|
|
* completion of the asynchronous work unconditionally.
|
2016-01-11 21:40:59 +00:00
|
|
|
*/
|
|
|
|
void drm_send_event(struct drm_device *dev, struct drm_pending_event *e)
|
|
|
|
{
|
|
|
|
unsigned long irqflags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dev->event_lock, irqflags);
|
|
|
|
drm_send_event_locked(dev, e);
|
|
|
|
spin_unlock_irqrestore(&dev->event_lock, irqflags);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_send_event);
|