drm_lock.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* lock.c -- IOCTLs for locking -*- linux-c -*-
  2.  * Created: Tue Feb  2 08:37:54 1999 by faith@valinux.com
  3.  *
  4.  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  5.  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  6.  * All Rights Reserved.
  7.  *
  8.  * Permission is hereby granted, free of charge, to any person obtaining a
  9.  * copy of this software and associated documentation files (the "Software"),
  10.  * to deal in the Software without restriction, including without limitation
  11.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  12.  * and/or sell copies of the Software, and to permit persons to whom the
  13.  * Software is furnished to do so, subject to the following conditions:
  14.  *
  15.  * The above copyright notice and this permission notice (including the next
  16.  * paragraph) shall be included in all copies or substantial portions of the
  17.  * Software.
  18.  *
  19.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  22.  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  23.  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  24.  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  25.  * OTHER DEALINGS IN THE SOFTWARE.
  26.  *
  27.  * Authors:
  28.  *    Rickard E. (Rik) Faith <faith@valinux.com>
  29.  *    Gareth Hughes <gareth@valinux.com>
  30.  */
  31. #include "drmP.h"
  32. int DRM(block)(struct inode *inode, struct file *filp, unsigned int cmd,
  33.        unsigned long arg)
  34. {
  35. DRM_DEBUG("n");
  36. return 0;
  37. }
  38. int DRM(unblock)(struct inode *inode, struct file *filp, unsigned int cmd,
  39.  unsigned long arg)
  40. {
  41. DRM_DEBUG("n");
  42. return 0;
  43. }
  44. int DRM(lock_take)(__volatile__ unsigned int *lock, unsigned int context)
  45. {
  46. unsigned int old, new, prev;
  47. do {
  48. old = *lock;
  49. if (old & _DRM_LOCK_HELD) new = old | _DRM_LOCK_CONT;
  50. else   new = context | _DRM_LOCK_HELD;
  51. prev = cmpxchg(lock, old, new);
  52. } while (prev != old);
  53. if (_DRM_LOCKING_CONTEXT(old) == context) {
  54. if (old & _DRM_LOCK_HELD) {
  55. if (context != DRM_KERNEL_CONTEXT) {
  56. DRM_ERROR("%d holds heavyweight lockn",
  57.   context);
  58. }
  59. return 0;
  60. }
  61. }
  62. if (new == (context | _DRM_LOCK_HELD)) {
  63. /* Have lock */
  64. return 1;
  65. }
  66. return 0;
  67. }
  68. /* This takes a lock forcibly and hands it to context. Should ONLY be used
  69.    inside *_unlock to give lock to kernel before calling *_dma_schedule. */
  70. int DRM(lock_transfer)(drm_device_t *dev,
  71.        __volatile__ unsigned int *lock, unsigned int context)
  72. {
  73. unsigned int old, new, prev;
  74. dev->lock.pid = 0;
  75. do {
  76. old  = *lock;
  77. new  = context | _DRM_LOCK_HELD;
  78. prev = cmpxchg(lock, old, new);
  79. } while (prev != old);
  80. return 1;
  81. }
  82. int DRM(lock_free)(drm_device_t *dev,
  83.    __volatile__ unsigned int *lock, unsigned int context)
  84. {
  85. unsigned int old, new, prev;
  86. pid_t        pid = dev->lock.pid;
  87. dev->lock.pid = 0;
  88. do {
  89. old  = *lock;
  90. new  = 0;
  91. prev = cmpxchg(lock, old, new);
  92. } while (prev != old);
  93. if (_DRM_LOCK_IS_HELD(old) && _DRM_LOCKING_CONTEXT(old) != context) {
  94. DRM_ERROR("%d freed heavyweight lock held by %d (pid %d)n",
  95.   context,
  96.   _DRM_LOCKING_CONTEXT(old),
  97.   pid);
  98. return 1;
  99. }
  100. wake_up_interruptible(&dev->lock.lock_queue);
  101. return 0;
  102. }
  103. static int DRM(flush_queue)(drm_device_t *dev, int context)
  104. {
  105. DECLARE_WAITQUEUE(entry, current);
  106. int   ret = 0;
  107. drm_queue_t   *q = dev->queuelist[context];
  108. DRM_DEBUG("n");
  109. atomic_inc(&q->use_count);
  110. if (atomic_read(&q->use_count) > 1) {
  111. atomic_inc(&q->block_write);
  112. add_wait_queue(&q->flush_queue, &entry);
  113. atomic_inc(&q->block_count);
  114. for (;;) {
  115. current->state = TASK_INTERRUPTIBLE;
  116. if (!DRM_BUFCOUNT(&q->waitlist)) break;
  117. schedule();
  118. if (signal_pending(current)) {
  119. ret = -EINTR; /* Can't restart */
  120. break;
  121. }
  122. }
  123. atomic_dec(&q->block_count);
  124. current->state = TASK_RUNNING;
  125. remove_wait_queue(&q->flush_queue, &entry);
  126. }
  127. atomic_dec(&q->use_count);
  128. /* NOTE: block_write is still incremented!
  129.    Use drm_flush_unlock_queue to decrement. */
  130. return ret;
  131. }
  132. static int DRM(flush_unblock_queue)(drm_device_t *dev, int context)
  133. {
  134. drm_queue_t   *q = dev->queuelist[context];
  135. DRM_DEBUG("n");
  136. atomic_inc(&q->use_count);
  137. if (atomic_read(&q->use_count) > 1) {
  138. if (atomic_read(&q->block_write)) {
  139. atomic_dec(&q->block_write);
  140. wake_up_interruptible(&q->write_queue);
  141. }
  142. }
  143. atomic_dec(&q->use_count);
  144. return 0;
  145. }
  146. int DRM(flush_block_and_flush)(drm_device_t *dev, int context,
  147.        drm_lock_flags_t flags)
  148. {
  149. int ret = 0;
  150. int i;
  151. DRM_DEBUG("n");
  152. if (flags & _DRM_LOCK_FLUSH) {
  153. ret = DRM(flush_queue)(dev, DRM_KERNEL_CONTEXT);
  154. if (!ret) ret = DRM(flush_queue)(dev, context);
  155. }
  156. if (flags & _DRM_LOCK_FLUSH_ALL) {
  157. for (i = 0; !ret && i < dev->queue_count; i++) {
  158. ret = DRM(flush_queue)(dev, i);
  159. }
  160. }
  161. return ret;
  162. }
  163. int DRM(flush_unblock)(drm_device_t *dev, int context, drm_lock_flags_t flags)
  164. {
  165. int ret = 0;
  166. int i;
  167. DRM_DEBUG("n");
  168. if (flags & _DRM_LOCK_FLUSH) {
  169. ret = DRM(flush_unblock_queue)(dev, DRM_KERNEL_CONTEXT);
  170. if (!ret) ret = DRM(flush_unblock_queue)(dev, context);
  171. }
  172. if (flags & _DRM_LOCK_FLUSH_ALL) {
  173. for (i = 0; !ret && i < dev->queue_count; i++) {
  174. ret = DRM(flush_unblock_queue)(dev, i);
  175. }
  176. }
  177. return ret;
  178. }
  179. int DRM(finish)(struct inode *inode, struct file *filp, unsigned int cmd,
  180. unsigned long arg)
  181. {
  182. drm_file_t   *priv   = filp->private_data;
  183. drm_device_t   *dev   = priv->dev;
  184. int   ret   = 0;
  185. drm_lock_t   lock;
  186. DRM_DEBUG("n");
  187. if (copy_from_user(&lock, (drm_lock_t *)arg, sizeof(lock)))
  188. return -EFAULT;
  189. ret = DRM(flush_block_and_flush)(dev, lock.context, lock.flags);
  190. DRM(flush_unblock)(dev, lock.context, lock.flags);
  191. return ret;
  192. }
  193. /* If we get here, it means that the process has called DRM_IOCTL_LOCK
  194.    without calling DRM_IOCTL_UNLOCK.
  195.    If the lock is not held, then let the signal proceed as usual.
  196.    If the lock is held, then set the contended flag and keep the signal
  197.    blocked.
  198.    Return 1 if the signal should be delivered normally.
  199.    Return 0 if the signal should be blocked.  */
  200. int DRM(notifier)(void *priv)
  201. {
  202. drm_sigdata_t *s = (drm_sigdata_t *)priv;
  203. unsigned int  old, new, prev;
  204. /* Allow signal delivery if lock isn't held */
  205. if (!_DRM_LOCK_IS_HELD(s->lock->lock)
  206.     || _DRM_LOCKING_CONTEXT(s->lock->lock) != s->context) return 1;
  207. /* Otherwise, set flag to force call to
  208.                                    drmUnlock */
  209. do {
  210. old  = s->lock->lock;
  211. new  = old | _DRM_LOCK_CONT;
  212. prev = cmpxchg(&s->lock->lock, old, new);
  213. } while (prev != old);
  214. return 0;
  215. }