5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
10 * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com
12 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
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:
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
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.
36 #include <linux/export.h>
38 #include "drm_legacy.h"
39 #include "drm_internal.h"
42 static int drm_notifier(void *priv
);
44 static int drm_lock_take(struct drm_lock_data
*lock_data
, unsigned int context
);
50 * \param inode device inode.
51 * \param file_priv DRM file private.
53 * \param arg user argument, pointing to a drm_lock structure.
54 * \return zero on success or negative number on failure.
56 * Add the current task to the lock wait queue, and attempt to take to lock.
58 int drm_legacy_lock(struct drm_device
*dev
, void *data
,
59 struct drm_file
*file_priv
)
62 DECLARE_WAITQUEUE(entry
, current
);
63 struct drm_lock
*lock
= data
;
64 struct drm_master
*master
= file_priv
->master
;
67 if (drm_core_check_feature(dev
, DRIVER_MODESET
))
70 ++file_priv
->lock_count
;
72 if (lock
->context
== DRM_KERNEL_CONTEXT
) {
73 DRM_ERROR("Process %d using kernel context %d\n",
74 task_pid_nr(current
), lock
->context
);
78 DRM_DEBUG("%d (pid %d) requests lock (0x%08x), flags = 0x%08x\n",
79 lock
->context
, task_pid_nr(current
),
80 master
->lock
.hw_lock
->lock
, lock
->flags
);
82 add_wait_queue(&master
->lock
.lock_queue
, &entry
);
83 spin_lock_bh(&master
->lock
.spinlock
);
84 master
->lock
.user_waiters
++;
85 spin_unlock_bh(&master
->lock
.spinlock
);
88 __set_current_state(TASK_INTERRUPTIBLE
);
89 if (!master
->lock
.hw_lock
) {
90 /* Device has been unregistered */
91 send_sig(SIGTERM
, current
, 0);
95 if (drm_lock_take(&master
->lock
, lock
->context
)) {
96 master
->lock
.file_priv
= file_priv
;
97 master
->lock
.lock_time
= jiffies
;
102 mutex_unlock(&drm_global_mutex
);
104 mutex_lock(&drm_global_mutex
);
105 if (signal_pending(current
)) {
110 spin_lock_bh(&master
->lock
.spinlock
);
111 master
->lock
.user_waiters
--;
112 spin_unlock_bh(&master
->lock
.spinlock
);
113 __set_current_state(TASK_RUNNING
);
114 remove_wait_queue(&master
->lock
.lock_queue
, &entry
);
116 DRM_DEBUG("%d %s\n", lock
->context
,
117 ret
? "interrupted" : "has lock");
120 /* don't set the block all signals on the master process for now
121 * really probably not the correct answer but lets us debug xkb
123 if (!file_priv
->is_master
) {
124 dev
->sigdata
.context
= lock
->context
;
125 dev
->sigdata
.lock
= master
->lock
.hw_lock
;
128 if (dev
->driver
->dma_quiescent
&& (lock
->flags
& _DRM_LOCK_QUIESCENT
))
130 if (dev
->driver
->dma_quiescent(dev
)) {
131 DRM_DEBUG("%d waiting for DMA quiescent\n",
144 * \param inode device inode.
145 * \param file_priv DRM file private.
146 * \param cmd command.
147 * \param arg user argument, pointing to a drm_lock structure.
148 * \return zero on success or negative number on failure.
150 * Transfer and free the lock.
152 int drm_legacy_unlock(struct drm_device
*dev
, void *data
, struct drm_file
*file_priv
)
155 struct drm_lock
*lock
= data
;
156 struct drm_master
*master
= file_priv
->master
;
158 if (drm_core_check_feature(dev
, DRIVER_MODESET
))
161 if (lock
->context
== DRM_KERNEL_CONTEXT
) {
162 DRM_ERROR("Process %d using kernel context %d\n",
163 task_pid_nr(current
), lock
->context
);
167 if (drm_legacy_lock_free(&master
->lock
, lock
->context
)) {
168 /* FIXME: Should really bail out here. */
171 unblock_all_signals();
178 * Take the heavyweight lock.
180 * \param lock lock pointer.
181 * \param context locking context.
182 * \return one if the lock is held, or zero otherwise.
184 * Attempt to mark the lock as held by the given context, via the \p cmpxchg instruction.
187 int drm_lock_take(struct drm_lock_data
*lock_data
,
188 unsigned int context
)
190 unsigned int old
, new, prev
;
191 volatile unsigned int *lock
= &lock_data
->hw_lock
->lock
;
193 spin_lock_bh(&lock_data
->spinlock
);
196 if (old
& _DRM_LOCK_HELD
)
197 new = old
| _DRM_LOCK_CONT
;
199 new = context
| _DRM_LOCK_HELD
|
200 ((lock_data
->user_waiters
+ lock_data
->kernel_waiters
> 1) ?
203 prev
= cmpxchg(lock
, old
, new);
204 } while (prev
!= old
);
205 spin_unlock_bh(&lock_data
->spinlock
);
207 if (_DRM_LOCKING_CONTEXT(old
) == context
) {
208 if (old
& _DRM_LOCK_HELD
) {
209 if (context
!= DRM_KERNEL_CONTEXT
) {
210 DRM_ERROR("%d holds heavyweight lock\n",
217 if ((_DRM_LOCKING_CONTEXT(new)) == context
&& (new & _DRM_LOCK_HELD
)) {
225 * This takes a lock forcibly and hands it to context. Should ONLY be used
226 * inside *_unlock to give lock to kernel before calling *_dma_schedule.
228 * \param dev DRM device.
229 * \param lock lock pointer.
230 * \param context locking context.
231 * \return always one.
233 * Resets the lock file pointer.
234 * Marks the lock as held by the given context, via the \p cmpxchg instruction.
236 static int drm_lock_transfer(struct drm_lock_data
*lock_data
,
237 unsigned int context
)
239 unsigned int old
, new, prev
;
240 volatile unsigned int *lock
= &lock_data
->hw_lock
->lock
;
242 lock_data
->file_priv
= NULL
;
245 new = context
| _DRM_LOCK_HELD
;
246 prev
= cmpxchg(lock
, old
, new);
247 } while (prev
!= old
);
255 * \param dev DRM device.
257 * \param context context.
259 * Resets the lock file pointer.
260 * Marks the lock as not held, via the \p cmpxchg instruction. Wakes any task
261 * waiting on the lock queue.
263 int drm_legacy_lock_free(struct drm_lock_data
*lock_data
, unsigned int context
)
266 unsigned int old
, new, prev
;
267 volatile unsigned int *lock
= &lock_data
->hw_lock
->lock
;
269 spin_lock_bh(&lock_data
->spinlock
);
270 if (lock_data
->kernel_waiters
!= 0) {
271 drm_lock_transfer(lock_data
, 0);
272 lock_data
->idle_has_lock
= 1;
273 spin_unlock_bh(&lock_data
->spinlock
);
276 spin_unlock_bh(&lock_data
->spinlock
);
280 new = _DRM_LOCKING_CONTEXT(old
);
281 prev
= cmpxchg(lock
, old
, new);
282 } while (prev
!= old
);
284 if (_DRM_LOCK_IS_HELD(old
) && _DRM_LOCKING_CONTEXT(old
) != context
) {
285 DRM_ERROR("%d freed heavyweight lock held by %d\n",
286 context
, _DRM_LOCKING_CONTEXT(old
));
289 wake_up_interruptible(&lock_data
->lock_queue
);
296 * If we get here, it means that the process has called DRM_IOCTL_LOCK
297 * without calling DRM_IOCTL_UNLOCK.
299 * If the lock is not held, then let the signal proceed as usual. If the lock
300 * is held, then set the contended flag and keep the signal blocked.
302 * \param priv pointer to a drm_device structure.
303 * \return one if the signal should be delivered normally, or zero if the
304 * signal should be blocked.
306 static int drm_notifier(void *priv
)
308 struct drm_device
*dev
= priv
;
309 struct drm_hw_lock
*lock
= dev
->sigdata
.lock
;
310 unsigned int old
, new, prev
;
312 /* Allow signal delivery if lock isn't held */
313 if (!lock
|| !_DRM_LOCK_IS_HELD(lock
->lock
)
314 || _DRM_LOCKING_CONTEXT(lock
->lock
) != dev
->sigdata
.context
)
317 /* Otherwise, set flag to force call to
321 new = old
| _DRM_LOCK_CONT
;
322 prev
= cmpxchg(&lock
->lock
, old
, new);
323 } while (prev
!= old
);
329 * This function returns immediately and takes the hw lock
330 * with the kernel context if it is free, otherwise it gets the highest priority when and if
331 * it is eventually released.
333 * This guarantees that the kernel will _eventually_ have the lock _unless_ it is held
334 * by a blocked process. (In the latter case an explicit wait for the hardware lock would cause
335 * a deadlock, which is why the "idlelock" was invented).
337 * This should be sufficient to wait for GPU idle without
338 * having to worry about starvation.
341 void drm_legacy_idlelock_take(struct drm_lock_data
*lock_data
)
346 spin_lock_bh(&lock_data
->spinlock
);
347 lock_data
->kernel_waiters
++;
348 if (!lock_data
->idle_has_lock
) {
350 spin_unlock_bh(&lock_data
->spinlock
);
351 ret
= drm_lock_take(lock_data
, DRM_KERNEL_CONTEXT
);
352 spin_lock_bh(&lock_data
->spinlock
);
355 lock_data
->idle_has_lock
= 1;
357 spin_unlock_bh(&lock_data
->spinlock
);
360 EXPORT_SYMBOL(drm_legacy_idlelock_take
);
362 void drm_legacy_idlelock_release(struct drm_lock_data
*lock_data
)
365 unsigned int old
, prev
;
366 volatile unsigned int *lock
= &lock_data
->hw_lock
->lock
;
368 spin_lock_bh(&lock_data
->spinlock
);
369 if (--lock_data
->kernel_waiters
== 0) {
370 if (lock_data
->idle_has_lock
) {
373 prev
= cmpxchg(lock
, old
, DRM_KERNEL_CONTEXT
);
374 } while (prev
!= old
);
375 wake_up_interruptible(&lock_data
->lock_queue
);
376 lock_data
->idle_has_lock
= 0;
379 spin_unlock_bh(&lock_data
->spinlock
);
382 EXPORT_SYMBOL(drm_legacy_idlelock_release
);
384 int drm_legacy_i_have_hw_lock(struct drm_device
*dev
,
385 struct drm_file
*file_priv
)
388 struct drm_master
*master
= file_priv
->master
;
389 return (file_priv
->lock_count
&& master
->lock
.hw_lock
&&
390 _DRM_LOCK_IS_HELD(master
->lock
.hw_lock
->lock
) &&
391 master
->lock
.file_priv
== file_priv
);