4 * Derived from ivtv-queue.c
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 #include "cx18-driver.h"
25 #include "cx18-streams.h"
26 #include "cx18-queue.h"
29 void cx18_buf_swap(struct cx18_buffer *buf)
33 for (i = 0; i < buf->bytesused; i += 4)
34 swab32s((u32 *)(buf->buf + i));
37 void cx18_queue_init(struct cx18_queue *q)
39 INIT_LIST_HEAD(&q->list);
45 void cx18_enqueue(struct cx18_stream *s, struct cx18_buffer *buf,
48 unsigned long flags = 0;
50 /* clear the buffer if it is going to be enqueued to the free queue */
51 if (q == &s->q_free) {
56 spin_lock_irqsave(&s->qlock, flags);
57 list_add_tail(&buf->list, &q->list);
59 q->length += s->buf_size;
60 q->bytesused += buf->bytesused - buf->readpos;
61 spin_unlock_irqrestore(&s->qlock, flags);
64 struct cx18_buffer *cx18_dequeue(struct cx18_stream *s, struct cx18_queue *q)
66 struct cx18_buffer *buf = NULL;
67 unsigned long flags = 0;
69 spin_lock_irqsave(&s->qlock, flags);
70 if (!list_empty(&q->list)) {
71 buf = list_entry(q->list.next, struct cx18_buffer, list);
72 list_del_init(q->list.next);
74 q->length -= s->buf_size;
75 q->bytesused -= buf->bytesused - buf->readpos;
77 spin_unlock_irqrestore(&s->qlock, flags);
81 struct cx18_buffer *cx18_queue_get_buf_irq(struct cx18_stream *s, u32 id,
84 struct cx18 *cx = s->cx;
88 list_for_each(p, &s->q_free.list) {
89 struct cx18_buffer *buf =
90 list_entry(p, struct cx18_buffer, list);
94 buf->bytesused = bytesused;
95 /* the transport buffers are handled differently,
96 they are not moved to the full queue */
97 if (s->type != CX18_ENC_STREAM_TYPE_TS) {
99 s->q_free.length -= s->buf_size;
101 s->q_full.length += s->buf_size;
102 s->q_full.bytesused += buf->bytesused;
103 list_move_tail(&buf->list, &s->q_full.list);
105 spin_unlock(&s->qlock);
108 spin_unlock(&s->qlock);
109 CX18_ERR("Cannot find buffer %d for stream %s\n", id, s->name);
113 /* Move all buffers of a queue to q_free, while flushing the buffers */
114 static void cx18_queue_flush(struct cx18_stream *s, struct cx18_queue *q)
117 struct cx18_buffer *buf;
122 spin_lock_irqsave(&s->qlock, flags);
123 while (!list_empty(&q->list)) {
124 buf = list_entry(q->list.next, struct cx18_buffer, list);
125 list_move_tail(q->list.next, &s->q_free.list);
126 buf->bytesused = buf->readpos = buf->b_flags = 0;
128 s->q_free.length += s->buf_size;
131 spin_unlock_irqrestore(&s->qlock, flags);
134 void cx18_flush_queues(struct cx18_stream *s)
136 cx18_queue_flush(s, &s->q_io);
137 cx18_queue_flush(s, &s->q_full);
140 int cx18_stream_alloc(struct cx18_stream *s)
142 struct cx18 *cx = s->cx;
148 CX18_DEBUG_INFO("Allocate %s stream: %d x %d buffers (%dkB total)\n",
149 s->name, s->buffers, s->buf_size,
150 s->buffers * s->buf_size / 1024);
152 if (((char __iomem *)&cx->scb->cpu_mdl[cx->mdl_offset + s->buffers] -
153 (char __iomem *)cx->scb) > SCB_RESERVED_SIZE) {
154 unsigned bufsz = (((char __iomem *)cx->scb) + SCB_RESERVED_SIZE -
155 ((char __iomem *)cx->scb->cpu_mdl));
157 CX18_ERR("Too many buffers, cannot fit in SCB area\n");
158 CX18_ERR("Max buffers = %zd\n",
159 bufsz / sizeof(struct cx18_mdl));
163 s->mdl_offset = cx->mdl_offset;
165 /* allocate stream buffers. Initially all buffers are in q_free. */
166 for (i = 0; i < s->buffers; i++) {
167 struct cx18_buffer *buf = kzalloc(sizeof(struct cx18_buffer),
168 GFP_KERNEL|__GFP_NOWARN);
172 buf->buf = kmalloc(s->buf_size, GFP_KERNEL|__GFP_NOWARN);
173 if (buf->buf == NULL) {
177 buf->id = cx->buffer_id++;
178 INIT_LIST_HEAD(&buf->list);
179 buf->dma_handle = pci_map_single(s->cx->dev,
180 buf->buf, s->buf_size, s->dma);
181 cx18_buf_sync_for_cpu(s, buf);
182 cx18_enqueue(s, buf, &s->q_free);
184 if (i == s->buffers) {
185 cx->mdl_offset += s->buffers;
188 CX18_ERR("Couldn't allocate buffers for %s stream\n", s->name);
193 void cx18_stream_free(struct cx18_stream *s)
195 struct cx18_buffer *buf;
197 /* move all buffers to q_free */
198 cx18_flush_queues(s);
201 while ((buf = cx18_dequeue(s, &s->q_free))) {
202 pci_unmap_single(s->cx->dev, buf->dma_handle,
203 s->buf_size, s->dma);