1 /* drm_lists.h -- Buffer list handling routines -*- linux-c -*-
2 * Created: Mon Apr 19 20:54:22 1999 by faith@valinux.com
4 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
5 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
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:
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
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.
28 * Rickard E. (Rik) Faith <faith@valinux.com>
29 * Gareth Hughes <gareth@valinux.com>
35 int DRM(waitlist_create
)(drm_waitlist_t
*bl
, int count
)
37 if (bl
->count
) return -EINVAL
;
39 bl
->bufs
= DRM(alloc
)((bl
->count
+ 2) * sizeof(*bl
->bufs
),
42 if(!bl
->bufs
) return -ENOMEM
;
43 memset(bl
->bufs
, 0, sizeof(*bl
->bufs
));
47 bl
->end
= &bl
->bufs
[bl
->count
+1];
48 spin_lock_init(&bl
->write_lock
);
49 spin_lock_init(&bl
->read_lock
);
53 int DRM(waitlist_destroy
)(drm_waitlist_t
*bl
)
55 if (bl
->rp
!= bl
->wp
) return -EINVAL
;
56 if (bl
->bufs
) DRM(free
)(bl
->bufs
,
57 (bl
->count
+ 2) * sizeof(*bl
->bufs
),
67 int DRM(waitlist_put
)(drm_waitlist_t
*bl
, drm_buf_t
*buf
)
72 left
= DRM_LEFTCOUNT(bl
);
74 DRM_ERROR("Overflow while adding buffer %d from filp %p\n",
78 buf
->list
= DRM_LIST_WAIT
;
80 spin_lock_irqsave(&bl
->write_lock
, flags
);
82 if (++bl
->wp
>= bl
->end
) bl
->wp
= bl
->bufs
;
83 spin_unlock_irqrestore(&bl
->write_lock
, flags
);
88 drm_buf_t
*DRM(waitlist_get
)(drm_waitlist_t
*bl
)
93 spin_lock_irqsave(&bl
->read_lock
, flags
);
95 if (bl
->rp
== bl
->wp
) {
96 spin_unlock_irqrestore(&bl
->read_lock
, flags
);
99 if (++bl
->rp
>= bl
->end
) bl
->rp
= bl
->bufs
;
100 spin_unlock_irqrestore(&bl
->read_lock
, flags
);
105 int DRM(freelist_create
)(drm_freelist_t
*bl
, int count
)
107 atomic_set(&bl
->count
, 0);
109 init_waitqueue_head(&bl
->waiting
);
112 atomic_set(&bl
->wfh
, 0);
113 spin_lock_init(&bl
->lock
);
118 int DRM(freelist_destroy
)(drm_freelist_t
*bl
)
120 atomic_set(&bl
->count
, 0);
125 int DRM(freelist_put
)(drm_device_t
*dev
, drm_freelist_t
*bl
, drm_buf_t
*buf
)
127 drm_device_dma_t
*dma
= dev
->dma
;
130 DRM_ERROR("No DMA support\n");
134 if (buf
->waiting
|| buf
->pending
|| buf
->list
== DRM_LIST_FREE
) {
135 DRM_ERROR("Freed buffer %d: w%d, p%d, l%d\n",
136 buf
->idx
, buf
->waiting
, buf
->pending
, buf
->list
);
139 buf
->list
= DRM_LIST_FREE
;
141 spin_lock(&bl
->lock
);
142 buf
->next
= bl
->next
;
144 spin_unlock(&bl
->lock
);
146 atomic_inc(&bl
->count
);
147 if (atomic_read(&bl
->count
) > dma
->buf_count
) {
148 DRM_ERROR("%d of %d buffers free after addition of %d\n",
149 atomic_read(&bl
->count
), dma
->buf_count
, buf
->idx
);
152 /* Check for high water mark */
153 if (atomic_read(&bl
->wfh
) && atomic_read(&bl
->count
)>=bl
->high_mark
) {
154 atomic_set(&bl
->wfh
, 0);
155 wake_up_interruptible(&bl
->waiting
);
160 static drm_buf_t
*DRM(freelist_try
)(drm_freelist_t
*bl
)
164 if (!bl
) return NULL
;
167 spin_lock(&bl
->lock
);
169 spin_unlock(&bl
->lock
);
173 bl
->next
= bl
->next
->next
;
174 spin_unlock(&bl
->lock
);
176 atomic_dec(&bl
->count
);
178 buf
->list
= DRM_LIST_NONE
;
179 if (buf
->waiting
|| buf
->pending
) {
180 DRM_ERROR("Free buffer %d: w%d, p%d, l%d\n",
181 buf
->idx
, buf
->waiting
, buf
->pending
, buf
->list
);
187 drm_buf_t
*DRM(freelist_get
)(drm_freelist_t
*bl
, int block
)
189 drm_buf_t
*buf
= NULL
;
190 DECLARE_WAITQUEUE(entry
, current
);
192 if (!bl
|| !bl
->initialized
) return NULL
;
194 /* Check for low water mark */
195 if (atomic_read(&bl
->count
) <= bl
->low_mark
) /* Became low */
196 atomic_set(&bl
->wfh
, 1);
197 if (atomic_read(&bl
->wfh
)) {
199 add_wait_queue(&bl
->waiting
, &entry
);
201 current
->state
= TASK_INTERRUPTIBLE
;
202 if (!atomic_read(&bl
->wfh
)
203 && (buf
= DRM(freelist_try
)(bl
))) break;
205 if (signal_pending(current
)) break;
207 current
->state
= TASK_RUNNING
;
208 remove_wait_queue(&bl
->waiting
, &entry
);
213 return DRM(freelist_try
)(bl
);