lock.c
上传用户: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@precisioninsight.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.  * PRECISION INSIGHT 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 OTHER
  25.  * DEALINGS IN THE SOFTWARE.
  26.  * 
  27.  * Authors:
  28.  *    Rickard E. (Rik) Faith <faith@valinux.com>
  29.  *
  30.  */
  31. #define __NO_VERSION__
  32. #include "drmP.h"
  33. int drm_block(struct inode *inode, struct file *filp, unsigned int cmd,
  34.       unsigned long arg)
  35. {
  36. DRM_DEBUG("n");
  37. return 0;
  38. }
  39. int drm_unblock(struct inode *inode, struct file *filp, unsigned int cmd,
  40. unsigned long arg)
  41. {
  42. DRM_DEBUG("n");
  43. return 0;
  44. }
  45. int drm_lock_take(__volatile__ unsigned int *lock, unsigned int context)
  46. {
  47. unsigned int old, new, prev;
  48. do {
  49. old = *lock;
  50. if (old & _DRM_LOCK_HELD) new = old | _DRM_LOCK_CONT;
  51. else   new = context | _DRM_LOCK_HELD;
  52. prev = cmpxchg(lock, old, new);
  53. } while (prev != old);
  54. if (_DRM_LOCKING_CONTEXT(old) == context) {
  55. if (old & _DRM_LOCK_HELD) {
  56. if (context != DRM_KERNEL_CONTEXT) {
  57. DRM_ERROR("%d holds heavyweight lockn",
  58.   context);
  59. }
  60. return 0;
  61. }
  62. }
  63. if (new == (context | _DRM_LOCK_HELD)) {
  64. /* Have lock */
  65. return 1;
  66. }
  67. return 0;
  68. }
  69. /* This takes a lock forcibly and hands it to context. Should ONLY be used
  70.    inside *_unlock to give lock to kernel before calling *_dma_schedule. */
  71. int drm_lock_transfer(drm_device_t *dev,
  72.       __volatile__ unsigned int *lock, unsigned int context)
  73. {
  74. unsigned int old, new, prev;
  75. dev->lock.pid = 0;
  76. do {
  77. old  = *lock;
  78. new  = context | _DRM_LOCK_HELD;
  79. prev = cmpxchg(lock, old, new);
  80. } while (prev != old);
  81. return 1;
  82. }
  83. int drm_lock_free(drm_device_t *dev,
  84.   __volatile__ unsigned int *lock, unsigned int context)
  85. {
  86. unsigned int old, new, prev;
  87. pid_t        pid = dev->lock.pid;
  88. dev->lock.pid = 0;
  89. do {
  90. old  = *lock;
  91. new  = 0;
  92. prev = cmpxchg(lock, old, new);
  93. } while (prev != old);
  94. if (_DRM_LOCK_IS_HELD(old) && _DRM_LOCKING_CONTEXT(old) != context) {
  95. DRM_ERROR("%d freed heavyweight lock held by %d (pid %d)n",
  96.   context,
  97.   _DRM_LOCKING_CONTEXT(old),
  98.   pid);
  99. return 1;
  100. }
  101. wake_up_interruptible(&dev->lock.lock_queue);
  102. return 0;
  103. }
  104. static int drm_flush_queue(drm_device_t *dev, int context)
  105. {
  106. DECLARE_WAITQUEUE(entry, current);
  107. int   ret = 0;
  108. drm_queue_t   *q = dev->queuelist[context];
  109. DRM_DEBUG("n");
  110. atomic_inc(&q->use_count);
  111. if (atomic_read(&q->use_count) > 1) {
  112. atomic_inc(&q->block_write);
  113. add_wait_queue(&q->flush_queue, &entry);
  114. atomic_inc(&q->block_count);
  115. for (;;) {
  116. current->state = TASK_INTERRUPTIBLE;
  117. if (!DRM_BUFCOUNT(&q->waitlist)) break;
  118. schedule();
  119. if (signal_pending(current)) {
  120. ret = -EINTR; /* Can't restart */
  121. break;
  122. }
  123. }
  124. atomic_dec(&q->block_count);
  125. current->state = TASK_RUNNING;
  126. remove_wait_queue(&q->flush_queue, &entry);
  127. }
  128. atomic_dec(&q->use_count);
  129. atomic_inc(&q->total_flushed);
  130. /* NOTE: block_write is still incremented!
  131.    Use drm_flush_unlock_queue to decrement. */
  132. return ret;
  133. }
  134. static int drm_flush_unblock_queue(drm_device_t *dev, int context)
  135. {
  136. drm_queue_t   *q = dev->queuelist[context];
  137. DRM_DEBUG("n");
  138. atomic_inc(&q->use_count);
  139. if (atomic_read(&q->use_count) > 1) {
  140. if (atomic_read(&q->block_write)) {
  141. atomic_dec(&q->block_write);
  142. wake_up_interruptible(&q->write_queue);
  143. }
  144. }
  145. atomic_dec(&q->use_count);
  146. return 0;
  147. }
  148. int drm_flush_block_and_flush(drm_device_t *dev, int context,
  149.       drm_lock_flags_t flags)
  150. {
  151. int ret = 0;
  152. int i;
  153. DRM_DEBUG("n");
  154. if (flags & _DRM_LOCK_FLUSH) {
  155. ret = drm_flush_queue(dev, DRM_KERNEL_CONTEXT);
  156. if (!ret) ret = drm_flush_queue(dev, context);
  157. }
  158. if (flags & _DRM_LOCK_FLUSH_ALL) {
  159. for (i = 0; !ret && i < dev->queue_count; i++) {
  160. ret = drm_flush_queue(dev, i);
  161. }
  162. }
  163. return ret;
  164. }
  165. int drm_flush_unblock(drm_device_t *dev, int context, drm_lock_flags_t flags)
  166. {
  167. int ret = 0;
  168. int i;
  169. DRM_DEBUG("n");
  170. if (flags & _DRM_LOCK_FLUSH) {
  171. ret = drm_flush_unblock_queue(dev, DRM_KERNEL_CONTEXT);
  172. if (!ret) ret = drm_flush_unblock_queue(dev, context);
  173. }
  174. if (flags & _DRM_LOCK_FLUSH_ALL) {
  175. for (i = 0; !ret && i < dev->queue_count; i++) {
  176. ret = drm_flush_unblock_queue(dev, i);
  177. }
  178. }
  179. return ret;
  180. }
  181. int drm_finish(struct inode *inode, struct file *filp, unsigned int cmd,
  182.        unsigned long arg)
  183. {
  184. drm_file_t   *priv   = filp->private_data;
  185. drm_device_t   *dev   = priv->dev;
  186. int   ret   = 0;
  187. drm_lock_t   lock;
  188. DRM_DEBUG("n");
  189. if (copy_from_user(&lock, (drm_lock_t *)arg, sizeof(lock)))
  190. return -EFAULT;
  191. ret = drm_flush_block_and_flush(dev, lock.context, lock.flags);
  192. drm_flush_unblock(dev, lock.context, lock.flags);
  193. return ret;
  194. }
  195. /* If we get here, it means that the process has called DRM_IOCTL_LOCK
  196.    without calling DRM_IOCTL_UNLOCK.
  197.    
  198.    If the lock is not held, then let the signal proceed as usual.
  199.    
  200.    If the lock is held, then set the contended flag and keep the signal
  201.    blocked.
  202.    
  203.    Return 1 if the signal should be delivered normally.
  204.    Return 0 if the signal should be blocked.  */
  205. int drm_notifier(void *priv)
  206. {
  207. drm_sigdata_t *s = (drm_sigdata_t *)priv;
  208. unsigned int  old, new, prev;
  209. /* Allow signal delivery if lock isn't held */
  210. if (!_DRM_LOCK_IS_HELD(s->lock->lock)
  211.     || _DRM_LOCKING_CONTEXT(s->lock->lock) != s->context) return 1;
  212. /* Otherwise, set flag to force call to
  213.                                    drmUnlock */
  214. do {
  215. old  = s->lock->lock;
  216. new  = old | _DRM_LOCK_CONT;
  217. prev = cmpxchg(&s->lock->lock, old, new);
  218. } while (prev != old);
  219. return 0;
  220. }