blob: 093b04e0189c43dbbd79e3b49be9e0425e5ac43b [file] [log] [blame]
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001/*
2 * cx18 buffer queues
3 *
4 * Derived from ivtv-queue.h
5 *
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
Andy Walls6afdeaf2010-05-23 18:53:35 -03007 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net>
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030018 */
19
20#define CX18_DMA_UNMAPPED ((u32) -1)
21
22/* cx18_buffer utility functions */
23
24static inline void cx18_buf_sync_for_cpu(struct cx18_stream *s,
25 struct cx18_buffer *buf)
26{
Andy Walls3d05913d2009-01-10 21:54:39 -030027 pci_dma_sync_single_for_cpu(s->cx->pci_dev, buf->dma_handle,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030028 s->buf_size, s->dma);
29}
30
31static inline void cx18_buf_sync_for_device(struct cx18_stream *s,
32 struct cx18_buffer *buf)
33{
Andy Walls3d05913d2009-01-10 21:54:39 -030034 pci_dma_sync_single_for_device(s->cx->pci_dev, buf->dma_handle,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030035 s->buf_size, s->dma);
36}
37
Andy Walls52fcb3e2009-11-08 23:45:24 -030038void _cx18_mdl_sync_for_device(struct cx18_stream *s, struct cx18_mdl *mdl);
39
40static inline void cx18_mdl_sync_for_device(struct cx18_stream *s,
41 struct cx18_mdl *mdl)
42{
43 if (list_is_singular(&mdl->buf_list))
44 cx18_buf_sync_for_device(s, list_first_entry(&mdl->buf_list,
45 struct cx18_buffer,
46 list));
47 else
48 _cx18_mdl_sync_for_device(s, mdl);
49}
50
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030051void cx18_buf_swap(struct cx18_buffer *buf);
Andy Walls52fcb3e2009-11-08 23:45:24 -030052void _cx18_mdl_swap(struct cx18_mdl *mdl);
53
54static inline void cx18_mdl_swap(struct cx18_mdl *mdl)
55{
56 if (list_is_singular(&mdl->buf_list))
57 cx18_buf_swap(list_first_entry(&mdl->buf_list,
58 struct cx18_buffer, list));
59 else
60 _cx18_mdl_swap(mdl);
61}
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030062
63/* cx18_queue utility functions */
Andy Walls52fcb3e2009-11-08 23:45:24 -030064struct cx18_queue *_cx18_enqueue(struct cx18_stream *s, struct cx18_mdl *mdl,
Andy Walls66c2a6b2008-12-08 23:02:45 -030065 struct cx18_queue *q, int to_front);
Andy Wallsb80e1072008-11-28 00:04:21 -030066
67static inline
Andy Walls52fcb3e2009-11-08 23:45:24 -030068struct cx18_queue *cx18_enqueue(struct cx18_stream *s, struct cx18_mdl *mdl,
Andy Walls66c2a6b2008-12-08 23:02:45 -030069 struct cx18_queue *q)
Andy Wallsb80e1072008-11-28 00:04:21 -030070{
Andy Walls52fcb3e2009-11-08 23:45:24 -030071 return _cx18_enqueue(s, mdl, q, 0); /* FIFO */
Andy Wallsb80e1072008-11-28 00:04:21 -030072}
73
74static inline
Andy Walls52fcb3e2009-11-08 23:45:24 -030075struct cx18_queue *cx18_push(struct cx18_stream *s, struct cx18_mdl *mdl,
Andy Walls66c2a6b2008-12-08 23:02:45 -030076 struct cx18_queue *q)
Andy Wallsb80e1072008-11-28 00:04:21 -030077{
Andy Walls52fcb3e2009-11-08 23:45:24 -030078 return _cx18_enqueue(s, mdl, q, 1); /* LIFO */
Andy Wallsb80e1072008-11-28 00:04:21 -030079}
80
81void cx18_queue_init(struct cx18_queue *q);
Andy Walls52fcb3e2009-11-08 23:45:24 -030082struct cx18_mdl *cx18_dequeue(struct cx18_stream *s, struct cx18_queue *q);
83struct cx18_mdl *cx18_queue_get_mdl(struct cx18_stream *s, u32 id,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030084 u32 bytesused);
85void cx18_flush_queues(struct cx18_stream *s);
86
Andy Walls52fcb3e2009-11-08 23:45:24 -030087/* queue MDL reconfiguration helpers */
88void cx18_unload_queues(struct cx18_stream *s);
89void cx18_load_queues(struct cx18_stream *s);
90
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030091/* cx18_stream utility functions */
92int cx18_stream_alloc(struct cx18_stream *s);
93void cx18_stream_free(struct cx18_stream *s);