drm_lock.c 8.4 KB
Newer Older
L
Linus Torvalds 已提交
1
/**
D
Dave Airlie 已提交
2
 * \file drm_lock.c
L
Linus Torvalds 已提交
3
 * IOCTLs for locking
D
Dave Airlie 已提交
4
 *
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
 * \author Rickard E. (Rik) Faith <faith@valinux.com>
 * \author Gareth Hughes <gareth@valinux.com>
 */

/*
 * Created: Tue Feb  2 08:37:54 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 "drmP.h"

D
Dave Airlie 已提交
38
static int drm_lock_transfer(drm_device_t * dev,
D
Dave Airlie 已提交
39 40 41 42
			     __volatile__ unsigned int *lock,
			     unsigned int context);
static int drm_notifier(void *priv);

D
Dave Airlie 已提交
43
/**
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51 52 53
 * Lock ioctl.
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \param cmd command.
 * \param arg user argument, pointing to a drm_lock structure.
 * \return zero on success or negative number on failure.
 *
 * Add the current task to the lock wait queue, and attempt to take to lock.
 */
D
Dave Airlie 已提交
54 55
int drm_lock(struct inode *inode, struct file *filp,
	     unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
56
{
D
Dave Airlie 已提交
57 58 59 60 61
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	DECLARE_WAITQUEUE(entry, current);
	drm_lock_t lock;
	int ret = 0;
L
Linus Torvalds 已提交
62 63 64

	++priv->lock_count;

D
Dave Airlie 已提交
65
	if (copy_from_user(&lock, (drm_lock_t __user *) arg, sizeof(lock)))
L
Linus Torvalds 已提交
66 67
		return -EFAULT;

D
Dave Airlie 已提交
68 69 70 71 72
	if (lock.context == DRM_KERNEL_CONTEXT) {
		DRM_ERROR("Process %d using kernel context %d\n",
			  current->pid, lock.context);
		return -EINVAL;
	}
L
Linus Torvalds 已提交
73

D
Dave Airlie 已提交
74 75 76
	DRM_DEBUG("%d (pid %d) requests lock (0x%08x), flags = 0x%08x\n",
		  lock.context, current->pid,
		  dev->lock.hw_lock->lock, lock.flags);
L
Linus Torvalds 已提交
77 78

	if (drm_core_check_feature(dev, DRIVER_DMA_QUEUE))
D
Dave Airlie 已提交
79
		if (lock.context < 0)
L
Linus Torvalds 已提交
80 81
			return -EINVAL;

D
Dave Airlie 已提交
82
	add_wait_queue(&dev->lock.lock_queue, &entry);
L
Linus Torvalds 已提交
83 84
	for (;;) {
		__set_current_state(TASK_INTERRUPTIBLE);
D
Dave Airlie 已提交
85
		if (!dev->lock.hw_lock) {
L
Linus Torvalds 已提交
86 87 88 89
			/* Device has been unregistered */
			ret = -EINTR;
			break;
		}
D
Dave Airlie 已提交
90 91
		if (drm_lock_take(&dev->lock.hw_lock->lock, lock.context)) {
			dev->lock.filp = filp;
L
Linus Torvalds 已提交
92
			dev->lock.lock_time = jiffies;
D
Dave Airlie 已提交
93 94
			atomic_inc(&dev->counts[_DRM_STAT_LOCKS]);
			break;	/* Got lock */
L
Linus Torvalds 已提交
95
		}
D
Dave Airlie 已提交
96

L
Linus Torvalds 已提交
97 98
		/* Contention */
		schedule();
D
Dave Airlie 已提交
99
		if (signal_pending(current)) {
L
Linus Torvalds 已提交
100 101 102 103 104
			ret = -ERESTARTSYS;
			break;
		}
	}
	__set_current_state(TASK_RUNNING);
D
Dave Airlie 已提交
105
	remove_wait_queue(&dev->lock.lock_queue, &entry);
L
Linus Torvalds 已提交
106

D
Dave Airlie 已提交
107 108 109 110 111
	sigemptyset(&dev->sigmask);
	sigaddset(&dev->sigmask, SIGSTOP);
	sigaddset(&dev->sigmask, SIGTSTP);
	sigaddset(&dev->sigmask, SIGTTIN);
	sigaddset(&dev->sigmask, SIGTTOU);
L
Linus Torvalds 已提交
112
	dev->sigdata.context = lock.context;
D
Dave Airlie 已提交
113 114 115
	dev->sigdata.lock = dev->lock.hw_lock;
	block_all_signals(drm_notifier, &dev->sigdata, &dev->sigmask);

L
Linus Torvalds 已提交
116 117
	if (dev->driver->dma_ready && (lock.flags & _DRM_LOCK_READY))
		dev->driver->dma_ready(dev);
D
Dave Airlie 已提交
118 119

	if (dev->driver->dma_quiescent && (lock.flags & _DRM_LOCK_QUIESCENT))
L
Linus Torvalds 已提交
120
		return dev->driver->dma_quiescent(dev);
D
Dave Airlie 已提交
121 122

	/* dev->driver->kernel_context_switch isn't used by any of the x86
L
Linus Torvalds 已提交
123 124
	 *  drivers but is used by the Sparc driver.
	 */
D
Dave Airlie 已提交
125 126

	if (dev->driver->kernel_context_switch &&
L
Linus Torvalds 已提交
127
	    dev->last_context != lock.context) {
D
Dave Airlie 已提交
128 129
		dev->driver->kernel_context_switch(dev, dev->last_context,
						   lock.context);
L
Linus Torvalds 已提交
130
	}
D
Dave Airlie 已提交
131
	DRM_DEBUG("%d %s\n", lock.context, ret ? "interrupted" : "has lock");
L
Linus Torvalds 已提交
132

D
Dave Airlie 已提交
133
	return ret;
L
Linus Torvalds 已提交
134 135
}

D
Dave Airlie 已提交
136
/**
L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144 145 146
 * Unlock ioctl.
 *
 * \param inode device inode.
 * \param filp file pointer.
 * \param cmd command.
 * \param arg user argument, pointing to a drm_lock structure.
 * \return zero on success or negative number on failure.
 *
 * Transfer and free the lock.
 */
D
Dave Airlie 已提交
147 148
int drm_unlock(struct inode *inode, struct file *filp,
	       unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
149 150 151 152 153
{
	drm_file_t *priv = filp->private_data;
	drm_device_t *dev = priv->head->dev;
	drm_lock_t lock;

D
Dave Airlie 已提交
154
	if (copy_from_user(&lock, (drm_lock_t __user *) arg, sizeof(lock)))
L
Linus Torvalds 已提交
155 156
		return -EFAULT;

D
Dave Airlie 已提交
157 158 159
	if (lock.context == DRM_KERNEL_CONTEXT) {
		DRM_ERROR("Process %d using kernel context %d\n",
			  current->pid, lock.context);
L
Linus Torvalds 已提交
160 161 162
		return -EINVAL;
	}

D
Dave Airlie 已提交
163
	atomic_inc(&dev->counts[_DRM_STAT_UNLOCKS]);
L
Linus Torvalds 已提交
164 165 166 167 168 169 170

	/* kernel_context_switch isn't used by any of the x86 drm
	 * modules but is required by the Sparc driver.
	 */
	if (dev->driver->kernel_context_switch_unlock)
		dev->driver->kernel_context_switch_unlock(dev, &lock);
	else {
D
Dave Airlie 已提交
171 172 173 174 175 176
		drm_lock_transfer(dev, &dev->lock.hw_lock->lock,
				  DRM_KERNEL_CONTEXT);

		if (drm_lock_free(dev, &dev->lock.hw_lock->lock,
				  DRM_KERNEL_CONTEXT)) {
			DRM_ERROR("\n");
L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
		}
	}

	unblock_all_signals();
	return 0;
}

/**
 * Take the heavyweight lock.
 *
 * \param lock lock pointer.
 * \param context locking context.
 * \return one if the lock is held, or zero otherwise.
 *
 * Attempt to mark the lock as held by the given context, via the \p cmpxchg instruction.
 */
int drm_lock_take(__volatile__ unsigned int *lock, unsigned int context)
{
	unsigned int old, new, prev;

	do {
		old = *lock;
D
Dave Airlie 已提交
199 200 201 202
		if (old & _DRM_LOCK_HELD)
			new = old | _DRM_LOCK_CONT;
		else
			new = context | _DRM_LOCK_HELD;
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214
		prev = cmpxchg(lock, old, new);
	} while (prev != old);
	if (_DRM_LOCKING_CONTEXT(old) == context) {
		if (old & _DRM_LOCK_HELD) {
			if (context != DRM_KERNEL_CONTEXT) {
				DRM_ERROR("%d holds heavyweight lock\n",
					  context);
			}
			return 0;
		}
	}
	if (new == (context | _DRM_LOCK_HELD)) {
D
Dave Airlie 已提交
215
		/* Have lock */
L
Linus Torvalds 已提交
216 217 218 219 220 221 222
		return 1;
	}
	return 0;
}

/**
 * This takes a lock forcibly and hands it to context.	Should ONLY be used
D
Dave Airlie 已提交
223 224
 * inside *_unlock to give lock to kernel before calling *_dma_schedule.
 *
L
Linus Torvalds 已提交
225 226 227 228 229 230 231 232
 * \param dev DRM device.
 * \param lock lock pointer.
 * \param context locking context.
 * \return always one.
 *
 * Resets the lock file pointer.
 * Marks the lock as held by the given context, via the \p cmpxchg instruction.
 */
D
Dave Airlie 已提交
233
static int drm_lock_transfer(drm_device_t * dev,
D
Dave Airlie 已提交
234 235
			     __volatile__ unsigned int *lock,
			     unsigned int context)
L
Linus Torvalds 已提交
236 237 238 239 240
{
	unsigned int old, new, prev;

	dev->lock.filp = NULL;
	do {
D
Dave Airlie 已提交
241 242
		old = *lock;
		new = context | _DRM_LOCK_HELD;
L
Linus Torvalds 已提交
243 244 245 246 247 248 249
		prev = cmpxchg(lock, old, new);
	} while (prev != old);
	return 1;
}

/**
 * Free lock.
D
Dave Airlie 已提交
250
 *
L
Linus Torvalds 已提交
251 252 253
 * \param dev DRM device.
 * \param lock lock.
 * \param context context.
D
Dave Airlie 已提交
254
 *
L
Linus Torvalds 已提交
255 256 257 258
 * Resets the lock file pointer.
 * Marks the lock as not held, via the \p cmpxchg instruction. Wakes any task
 * waiting on the lock queue.
 */
D
Dave Airlie 已提交
259 260
int drm_lock_free(drm_device_t * dev,
		  __volatile__ unsigned int *lock, unsigned int context)
L
Linus Torvalds 已提交
261 262 263 264 265
{
	unsigned int old, new, prev;

	dev->lock.filp = NULL;
	do {
D
Dave Airlie 已提交
266 267
		old = *lock;
		new = 0;
L
Linus Torvalds 已提交
268 269 270 271
		prev = cmpxchg(lock, old, new);
	} while (prev != old);
	if (_DRM_LOCK_IS_HELD(old) && _DRM_LOCKING_CONTEXT(old) != context) {
		DRM_ERROR("%d freed heavyweight lock held by %d\n",
D
Dave Airlie 已提交
272
			  context, _DRM_LOCKING_CONTEXT(old));
L
Linus Torvalds 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
		return 1;
	}
	wake_up_interruptible(&dev->lock.lock_queue);
	return 0;
}

/**
 * If we get here, it means that the process has called DRM_IOCTL_LOCK
 * without calling DRM_IOCTL_UNLOCK.
 *
 * If the lock is not held, then let the signal proceed as usual.  If the lock
 * is held, then set the contended flag and keep the signal blocked.
 *
 * \param priv pointer to a drm_sigdata structure.
 * \return one if the signal should be delivered normally, or zero if the
 * signal should be blocked.
 */
D
Dave Airlie 已提交
290
static int drm_notifier(void *priv)
L
Linus Torvalds 已提交
291
{
D
Dave Airlie 已提交
292 293
	drm_sigdata_t *s = (drm_sigdata_t *) priv;
	unsigned int old, new, prev;
L
Linus Torvalds 已提交
294

D
Dave Airlie 已提交
295
	/* Allow signal delivery if lock isn't held */
L
Linus Torvalds 已提交
296
	if (!s->lock || !_DRM_LOCK_IS_HELD(s->lock->lock)
D
Dave Airlie 已提交
297 298
	    || _DRM_LOCKING_CONTEXT(s->lock->lock) != s->context)
		return 1;
L
Linus Torvalds 已提交
299

D
Dave Airlie 已提交
300 301
	/* Otherwise, set flag to force call to
	   drmUnlock */
L
Linus Torvalds 已提交
302
	do {
D
Dave Airlie 已提交
303 304
		old = s->lock->lock;
		new = old | _DRM_LOCK_CONT;
L
Linus Torvalds 已提交
305 306 307 308
		prev = cmpxchg(&s->lock->lock, old, new);
	} while (prev != old);
	return 0;
}