blob: 4924d381b6642f51a4b98698994e6b2ab3c0744e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_lock.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IOCTLs for locking
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 Gareth Hughes <gareth@valinux.com>
7 */
8
9/*
10 * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com
11 *
12 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files (the "Software"),
18 * to deal in the Software without restriction, including without limitation
19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * and/or sell copies of the Software, and to permit persons to whom the
21 * Software is furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
25 * Software.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
34 */
35
Dave Airlie5c2a5ce2011-12-22 19:09:01 +000036#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/drmP.h>
David Herrmanne7b960702014-07-24 12:10:04 +020038#include "drm_legacy.h"
Daniel Vetter44af3f52014-09-10 12:43:54 +020039#include "drm_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Dave Airliec94f7022005-07-07 21:03:38 +100041static int drm_notifier(void *priv);
42
Daniel Vetter4ac5ec42010-08-23 22:53:34 +020043static int drm_lock_take(struct drm_lock_data *lock_data, unsigned int context);
44
Dave Airlieb5e89ed2005-09-25 14:28:13 +100045/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * Lock ioctl.
47 *
48 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100049 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * \param cmd command.
51 * \param arg user argument, pointing to a drm_lock structure.
52 * \return zero on success or negative number on failure.
53 *
54 * Add the current task to the lock wait queue, and attempt to take to lock.
55 */
David Herrmannbb6d8222014-08-29 12:12:46 +020056int drm_legacy_lock(struct drm_device *dev, void *data,
57 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Dave Airlieb5e89ed2005-09-25 14:28:13 +100059 DECLARE_WAITQUEUE(entry, current);
Eric Anholtc153f452007-09-03 12:06:45 +100060 struct drm_lock *lock = data;
Dave Airlie7c1c2872008-11-28 14:22:24 +100061 struct drm_master *master = file_priv->master;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100062 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Daniel Vetterda168d82015-06-23 11:34:21 +020064 if (drm_core_check_feature(dev, DRIVER_MODESET))
65 return -EINVAL;
66
Eric Anholt6c340ea2007-08-25 20:23:09 +100067 ++file_priv->lock_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Eric Anholtc153f452007-09-03 12:06:45 +100069 if (lock->context == DRM_KERNEL_CONTEXT) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100070 DRM_ERROR("Process %d using kernel context %d\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -070071 task_pid_nr(current), lock->context);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100072 return -EINVAL;
73 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Dave Airlieb5e89ed2005-09-25 14:28:13 +100075 DRM_DEBUG("%d (pid %d) requests lock (0x%08x), flags = 0x%08x\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -070076 lock->context, task_pid_nr(current),
Dave Airlie7c1c2872008-11-28 14:22:24 +100077 master->lock.hw_lock->lock, lock->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Dave Airlie7c1c2872008-11-28 14:22:24 +100079 add_wait_queue(&master->lock.lock_queue, &entry);
80 spin_lock_bh(&master->lock.spinlock);
81 master->lock.user_waiters++;
82 spin_unlock_bh(&master->lock.spinlock);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 for (;;) {
85 __set_current_state(TASK_INTERRUPTIBLE);
Dave Airlie7c1c2872008-11-28 14:22:24 +100086 if (!master->lock.hw_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /* Device has been unregistered */
Thomas Hellstromfda714c2009-03-02 11:10:56 +010088 send_sig(SIGTERM, current, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 ret = -EINTR;
90 break;
91 }
Dave Airlie7c1c2872008-11-28 14:22:24 +100092 if (drm_lock_take(&master->lock, lock->context)) {
93 master->lock.file_priv = file_priv;
94 master->lock.lock_time = jiffies;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100095 break; /* Got lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +100097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* Contention */
Arnd Bergmann08f2e662010-08-27 08:55:28 +100099 mutex_unlock(&drm_global_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 schedule();
Arnd Bergmann08f2e662010-08-27 08:55:28 +1000101 mutex_lock(&drm_global_mutex);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000102 if (signal_pending(current)) {
Thomas Hellstrom4d77c882009-03-02 11:10:54 +0100103 ret = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 break;
105 }
106 }
Dave Airlie7c1c2872008-11-28 14:22:24 +1000107 spin_lock_bh(&master->lock.spinlock);
108 master->lock.user_waiters--;
109 spin_unlock_bh(&master->lock.spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 __set_current_state(TASK_RUNNING);
Dave Airlie7c1c2872008-11-28 14:22:24 +1000111 remove_wait_queue(&master->lock.lock_queue, &entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Eric Anholtc153f452007-09-03 12:06:45 +1000113 DRM_DEBUG("%d %s\n", lock->context,
114 ret ? "interrupted" : "has lock");
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100115 if (ret) return ret;
Dave Airlied985c102006-01-02 21:32:48 +1100116
Dave Airlie3e5fc802008-08-24 17:02:26 +1000117 /* don't set the block all signals on the master process for now
118 * really probably not the correct answer but lets us debug xkb
119 * xserver for now */
Dave Airlie7963e9d2014-08-08 07:30:53 +1000120 if (!file_priv->is_master) {
Dave Airlie3e5fc802008-08-24 17:02:26 +1000121 sigemptyset(&dev->sigmask);
122 sigaddset(&dev->sigmask, SIGSTOP);
123 sigaddset(&dev->sigmask, SIGTSTP);
124 sigaddset(&dev->sigmask, SIGTTIN);
125 sigaddset(&dev->sigmask, SIGTTOU);
126 dev->sigdata.context = lock->context;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000127 dev->sigdata.lock = master->lock.hw_lock;
David Herrmann69d516c2014-08-29 12:12:39 +0200128 block_all_signals(drm_notifier, dev, &dev->sigmask);
Dave Airlie3e5fc802008-08-24 17:02:26 +1000129 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000130
Eric Anholtc153f452007-09-03 12:06:45 +1000131 if (dev->driver->dma_quiescent && (lock->flags & _DRM_LOCK_QUIESCENT))
132 {
Dave Airlied985c102006-01-02 21:32:48 +1100133 if (dev->driver->dma_quiescent(dev)) {
Eric Anholtc153f452007-09-03 12:06:45 +1000134 DRM_DEBUG("%d waiting for DMA quiescent\n",
135 lock->context);
Eric Anholt20caafa2007-08-25 19:22:43 +1000136 return -EBUSY;
Dave Airlied985c102006-01-02 21:32:48 +1100137 }
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Dave Airlied985c102006-01-02 21:32:48 +1100140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000143/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 * Unlock ioctl.
145 *
146 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000147 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 * \param cmd command.
149 * \param arg user argument, pointing to a drm_lock structure.
150 * \return zero on success or negative number on failure.
151 *
152 * Transfer and free the lock.
153 */
David Herrmannbb6d8222014-08-29 12:12:46 +0200154int drm_legacy_unlock(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Eric Anholtc153f452007-09-03 12:06:45 +1000156 struct drm_lock *lock = data;
Daniel Vetter45ff46c2010-09-26 00:24:48 +0200157 struct drm_master *master = file_priv->master;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Daniel Vetterda168d82015-06-23 11:34:21 +0200159 if (drm_core_check_feature(dev, DRIVER_MODESET))
160 return -EINVAL;
161
Eric Anholtc153f452007-09-03 12:06:45 +1000162 if (lock->context == DRM_KERNEL_CONTEXT) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000163 DRM_ERROR("Process %d using kernel context %d\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700164 task_pid_nr(current), lock->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return -EINVAL;
166 }
167
David Herrmannbb6d8222014-08-29 12:12:46 +0200168 if (drm_legacy_lock_free(&master->lock, lock->context)) {
Daniel Vetter45ff46c2010-09-26 00:24:48 +0200169 /* FIXME: Should really bail out here. */
170 }
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 unblock_all_signals();
173 return 0;
174}
175
176/**
177 * Take the heavyweight lock.
178 *
179 * \param lock lock pointer.
180 * \param context locking context.
181 * \return one if the lock is held, or zero otherwise.
182 *
183 * Attempt to mark the lock as held by the given context, via the \p cmpxchg instruction.
184 */
Daniel Vetter4ac5ec42010-08-23 22:53:34 +0200185static
Dave Airlie55910512007-07-11 16:53:40 +1000186int drm_lock_take(struct drm_lock_data *lock_data,
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100187 unsigned int context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 unsigned int old, new, prev;
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100190 volatile unsigned int *lock = &lock_data->hw_lock->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000192 spin_lock_bh(&lock_data->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 do {
194 old = *lock;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000195 if (old & _DRM_LOCK_HELD)
196 new = old | _DRM_LOCK_CONT;
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100197 else {
198 new = context | _DRM_LOCK_HELD |
199 ((lock_data->user_waiters + lock_data->kernel_waiters > 1) ?
200 _DRM_LOCK_CONT : 0);
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 prev = cmpxchg(lock, old, new);
203 } while (prev != old);
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000204 spin_unlock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (_DRM_LOCKING_CONTEXT(old) == context) {
207 if (old & _DRM_LOCK_HELD) {
208 if (context != DRM_KERNEL_CONTEXT) {
209 DRM_ERROR("%d holds heavyweight lock\n",
210 context);
211 }
212 return 0;
213 }
214 }
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100215
216 if ((_DRM_LOCKING_CONTEXT(new)) == context && (new & _DRM_LOCK_HELD)) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000217 /* Have lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return 1;
219 }
220 return 0;
221}
222
223/**
224 * This takes a lock forcibly and hands it to context. Should ONLY be used
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000225 * inside *_unlock to give lock to kernel before calling *_dma_schedule.
226 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 * \param dev DRM device.
228 * \param lock lock pointer.
229 * \param context locking context.
230 * \return always one.
231 *
232 * Resets the lock file pointer.
233 * Marks the lock as held by the given context, via the \p cmpxchg instruction.
234 */
Dave Airlie55910512007-07-11 16:53:40 +1000235static int drm_lock_transfer(struct drm_lock_data *lock_data,
Dave Airliec94f7022005-07-07 21:03:38 +1000236 unsigned int context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 unsigned int old, new, prev;
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100239 volatile unsigned int *lock = &lock_data->hw_lock->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Eric Anholt6c340ea2007-08-25 20:23:09 +1000241 lock_data->file_priv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 do {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000243 old = *lock;
244 new = context | _DRM_LOCK_HELD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 prev = cmpxchg(lock, old, new);
246 } while (prev != old);
247 return 1;
248}
249
250/**
251 * Free lock.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000252 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 * \param dev DRM device.
254 * \param lock lock.
255 * \param context context.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000256 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * Resets the lock file pointer.
258 * Marks the lock as not held, via the \p cmpxchg instruction. Wakes any task
259 * waiting on the lock queue.
260 */
David Herrmannbb6d8222014-08-29 12:12:46 +0200261int drm_legacy_lock_free(struct drm_lock_data *lock_data, unsigned int context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 unsigned int old, new, prev;
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100264 volatile unsigned int *lock = &lock_data->hw_lock->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000266 spin_lock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100267 if (lock_data->kernel_waiters != 0) {
268 drm_lock_transfer(lock_data, 0);
269 lock_data->idle_has_lock = 1;
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000270 spin_unlock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100271 return 1;
272 }
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000273 spin_unlock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 do {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000276 old = *lock;
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100277 new = _DRM_LOCKING_CONTEXT(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 prev = cmpxchg(lock, old, new);
279 } while (prev != old);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (_DRM_LOCK_IS_HELD(old) && _DRM_LOCKING_CONTEXT(old) != context) {
282 DRM_ERROR("%d freed heavyweight lock held by %d\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000283 context, _DRM_LOCKING_CONTEXT(old));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return 1;
285 }
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100286 wake_up_interruptible(&lock_data->lock_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288}
289
290/**
291 * If we get here, it means that the process has called DRM_IOCTL_LOCK
292 * without calling DRM_IOCTL_UNLOCK.
293 *
294 * If the lock is not held, then let the signal proceed as usual. If the lock
295 * is held, then set the contended flag and keep the signal blocked.
296 *
David Herrmann69d516c2014-08-29 12:12:39 +0200297 * \param priv pointer to a drm_device structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * \return one if the signal should be delivered normally, or zero if the
299 * signal should be blocked.
300 */
Dave Airliec94f7022005-07-07 21:03:38 +1000301static int drm_notifier(void *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
David Herrmann69d516c2014-08-29 12:12:39 +0200303 struct drm_device *dev = priv;
304 struct drm_hw_lock *lock = dev->sigdata.lock;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000305 unsigned int old, new, prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000307 /* Allow signal delivery if lock isn't held */
David Herrmann69d516c2014-08-29 12:12:39 +0200308 if (!lock || !_DRM_LOCK_IS_HELD(lock->lock)
309 || _DRM_LOCKING_CONTEXT(lock->lock) != dev->sigdata.context)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000310 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000312 /* Otherwise, set flag to force call to
313 drmUnlock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 do {
David Herrmann69d516c2014-08-29 12:12:39 +0200315 old = lock->lock;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000316 new = old | _DRM_LOCK_CONT;
David Herrmann69d516c2014-08-29 12:12:39 +0200317 prev = cmpxchg(&lock->lock, old, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 } while (prev != old);
319 return 0;
320}
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100321
322/**
323 * This function returns immediately and takes the hw lock
324 * with the kernel context if it is free, otherwise it gets the highest priority when and if
325 * it is eventually released.
326 *
327 * This guarantees that the kernel will _eventually_ have the lock _unless_ it is held
328 * by a blocked process. (In the latter case an explicit wait for the hardware lock would cause
329 * a deadlock, which is why the "idlelock" was invented).
330 *
331 * This should be sufficient to wait for GPU idle without
332 * having to worry about starvation.
333 */
334
David Herrmannbb6d8222014-08-29 12:12:46 +0200335void drm_legacy_idlelock_take(struct drm_lock_data *lock_data)
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100336{
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200337 int ret;
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100338
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000339 spin_lock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100340 lock_data->kernel_waiters++;
341 if (!lock_data->idle_has_lock) {
342
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000343 spin_unlock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100344 ret = drm_lock_take(lock_data, DRM_KERNEL_CONTEXT);
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000345 spin_lock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100346
347 if (ret == 1)
348 lock_data->idle_has_lock = 1;
349 }
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000350 spin_unlock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100351}
David Herrmannbb6d8222014-08-29 12:12:46 +0200352EXPORT_SYMBOL(drm_legacy_idlelock_take);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100353
David Herrmannbb6d8222014-08-29 12:12:46 +0200354void drm_legacy_idlelock_release(struct drm_lock_data *lock_data)
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100355{
356 unsigned int old, prev;
357 volatile unsigned int *lock = &lock_data->hw_lock->lock;
358
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000359 spin_lock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100360 if (--lock_data->kernel_waiters == 0) {
361 if (lock_data->idle_has_lock) {
362 do {
363 old = *lock;
364 prev = cmpxchg(lock, old, DRM_KERNEL_CONTEXT);
365 } while (prev != old);
366 wake_up_interruptible(&lock_data->lock_queue);
367 lock_data->idle_has_lock = 0;
368 }
369 }
Thomas Hellstromf116cc52008-05-07 12:22:39 +1000370 spin_unlock_bh(&lock_data->spinlock);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100371}
David Herrmannbb6d8222014-08-29 12:12:46 +0200372EXPORT_SYMBOL(drm_legacy_idlelock_release);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100373
David Herrmannbb6d8222014-08-29 12:12:46 +0200374int drm_legacy_i_have_hw_lock(struct drm_device *dev,
375 struct drm_file *file_priv)
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100376{
Dave Airlie7c1c2872008-11-28 14:22:24 +1000377 struct drm_master *master = file_priv->master;
378 return (file_priv->lock_count && master->lock.hw_lock &&
379 _DRM_LOCK_IS_HELD(master->lock.hw_lock->lock) &&
380 master->lock.file_priv == file_priv);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100381}