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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* lists.c -- Buffer list handling routines -*- linux-c -*-
  2.  * Created: Mon Apr 19 20:54:22 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_waitlist_create(drm_waitlist_t *bl, int count)
  34. {
  35. if (bl->count) return -EINVAL;
  36. bl->count      = count;
  37. bl->bufs       = drm_alloc((bl->count + 2) * sizeof(*bl->bufs),
  38.    DRM_MEM_BUFLISTS);
  39. bl->rp        = bl->bufs;
  40. bl->wp        = bl->bufs;
  41. bl->end        = &bl->bufs[bl->count+1];
  42. bl->write_lock = SPIN_LOCK_UNLOCKED;
  43. bl->read_lock  = SPIN_LOCK_UNLOCKED;
  44. return 0;
  45. }
  46. int drm_waitlist_destroy(drm_waitlist_t *bl)
  47. {
  48. if (bl->rp != bl->wp) return -EINVAL;
  49. if (bl->bufs) drm_free(bl->bufs,
  50.        (bl->count + 2) * sizeof(*bl->bufs),
  51.        DRM_MEM_BUFLISTS);
  52. bl->count = 0;
  53. bl->bufs  = NULL;
  54. bl->rp   = NULL;
  55. bl->wp   = NULL;
  56. bl->end   = NULL;
  57. return 0;
  58. }
  59. int drm_waitlist_put(drm_waitlist_t *bl, drm_buf_t *buf)
  60. {
  61. int       left;
  62. unsigned long flags;
  63. left = DRM_LEFTCOUNT(bl);
  64. if (!left) {
  65. DRM_ERROR("Overflow while adding buffer %d from pid %dn",
  66.   buf->idx, buf->pid);
  67. return -EINVAL;
  68. }
  69. #if DRM_DMA_HISTOGRAM
  70. buf->time_queued = get_cycles();
  71. #endif
  72. buf->list  = DRM_LIST_WAIT;
  73. spin_lock_irqsave(&bl->write_lock, flags);
  74. *bl->wp = buf;
  75. if (++bl->wp >= bl->end) bl->wp = bl->bufs;
  76. spin_unlock_irqrestore(&bl->write_lock, flags);
  77. return 0;
  78. }
  79. drm_buf_t *drm_waitlist_get(drm_waitlist_t *bl)
  80. {
  81. drm_buf_t     *buf;
  82. unsigned long flags;
  83. spin_lock_irqsave(&bl->read_lock, flags);
  84. buf = *bl->rp;
  85. if (bl->rp == bl->wp) {
  86. spin_unlock_irqrestore(&bl->read_lock, flags);
  87. return NULL;
  88. }      
  89. if (++bl->rp >= bl->end) bl->rp = bl->bufs;
  90. spin_unlock_irqrestore(&bl->read_lock, flags);
  91. return buf;
  92. }
  93. int drm_freelist_create(drm_freelist_t *bl, int count)
  94. {
  95. atomic_set(&bl->count, 0);
  96. bl->next      = NULL;
  97. init_waitqueue_head(&bl->waiting);
  98. bl->low_mark  = 0;
  99. bl->high_mark = 0;
  100. atomic_set(&bl->wfh,   0);
  101. bl->lock      = SPIN_LOCK_UNLOCKED;
  102. ++bl->initialized;
  103. return 0;
  104. }
  105. int drm_freelist_destroy(drm_freelist_t *bl)
  106. {
  107. atomic_set(&bl->count, 0);
  108. bl->next = NULL;
  109. return 0;
  110. }
  111. int drm_freelist_put(drm_device_t *dev, drm_freelist_t *bl, drm_buf_t *buf)
  112. {
  113. drm_device_dma_t *dma  = dev->dma;
  114. if (!dma) {
  115. DRM_ERROR("No DMA supportn");
  116. return 1;
  117. }
  118. if (buf->waiting || buf->pending || buf->list == DRM_LIST_FREE) {
  119. DRM_ERROR("Freed buffer %d: w%d, p%d, l%dn",
  120.   buf->idx, buf->waiting, buf->pending, buf->list);
  121. }
  122. if (!bl) return 1;
  123. #if DRM_DMA_HISTOGRAM
  124. buf->time_freed = get_cycles();
  125. drm_histogram_compute(dev, buf);
  126. #endif
  127. buf->list = DRM_LIST_FREE;
  128. spin_lock(&bl->lock);
  129. buf->next = bl->next;
  130. bl->next = buf;
  131. spin_unlock(&bl->lock);
  132. atomic_inc(&bl->count);
  133. if (atomic_read(&bl->count) > dma->buf_count) {
  134. DRM_ERROR("%d of %d buffers free after addition of %dn",
  135.   atomic_read(&bl->count), dma->buf_count, buf->idx);
  136. return 1;
  137. }
  138. /* Check for high water mark */
  139. if (atomic_read(&bl->wfh) && atomic_read(&bl->count)>=bl->high_mark) {
  140. atomic_set(&bl->wfh, 0);
  141. wake_up_interruptible(&bl->waiting);
  142. }
  143. return 0;
  144. }
  145. static drm_buf_t *drm_freelist_try(drm_freelist_t *bl)
  146. {
  147. drm_buf_t   *buf;
  148. if (!bl) return NULL;
  149. /* Get buffer */
  150. spin_lock(&bl->lock);
  151. if (!bl->next) {
  152. spin_unlock(&bl->lock);
  153. return NULL;
  154. }
  155. buf   = bl->next;
  156. bl->next  = bl->next->next;
  157. spin_unlock(&bl->lock);
  158. atomic_dec(&bl->count);
  159. buf->next = NULL;
  160. buf->list = DRM_LIST_NONE;
  161. if (buf->waiting || buf->pending) {
  162. DRM_ERROR("Free buffer %d: w%d, p%d, l%dn",
  163.   buf->idx, buf->waiting, buf->pending, buf->list);
  164. }
  165. return buf;
  166. }
  167. drm_buf_t *drm_freelist_get(drm_freelist_t *bl, int block)
  168. {
  169. drm_buf_t   *buf = NULL;
  170. DECLARE_WAITQUEUE(entry, current);
  171. if (!bl || !bl->initialized) return NULL;
  172. /* Check for low water mark */
  173. if (atomic_read(&bl->count) <= bl->low_mark) /* Became low */
  174. atomic_set(&bl->wfh, 1);
  175. if (atomic_read(&bl->wfh)) {
  176. if (block) {
  177. add_wait_queue(&bl->waiting, &entry);
  178. for (;;) {
  179. current->state = TASK_INTERRUPTIBLE;
  180. if (!atomic_read(&bl->wfh)
  181.     && (buf = drm_freelist_try(bl))) break;
  182. schedule();
  183. if (signal_pending(current)) break;
  184. }
  185. current->state = TASK_RUNNING;
  186. remove_wait_queue(&bl->waiting, &entry);
  187. }
  188. return buf;
  189. }
  190. return drm_freelist_try(bl);
  191. }