[media] mxb/saa7146: first round of cleanups
[deliverable/linux.git] / drivers / media / video / videobuf-dvb.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 *
3 * some helper function for simple DVB cards which simply DMA the
4 * complete transport stream and let the computer sort everything else
5 * (i.e. we are using the software demux, ...). Also uses the
6 * video-buf to manage DMA buffers.
7 *
8 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SUSE Labs]
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 */
15
16#include <linux/module.h>
17#include <linux/init.h>
18#include <linux/device.h>
19#include <linux/fs.h>
20#include <linux/kthread.h>
21#include <linux/file.h>
5a0e3ad6 22#include <linux/slab.h>
59d34489 23
7dfb7103 24#include <linux/freezer.h>
1da177e4 25
59d34489 26#include <media/videobuf-core.h>
ba366a23 27#include <media/videobuf-dvb.h>
1da177e4
LT
28
29/* ------------------------------------------------------------------ */
30
31MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
32MODULE_LICENSE("GPL");
33
ff699e6b 34static unsigned int debug;
1da177e4
LT
35module_param(debug, int, 0644);
36MODULE_PARM_DESC(debug,"enable debug messages");
37
38#define dprintk(fmt, arg...) if (debug) \
39 printk(KERN_DEBUG "%s/dvb: " fmt, dvb->name , ## arg)
40
41/* ------------------------------------------------------------------ */
42
43static int videobuf_dvb_thread(void *data)
44{
45 struct videobuf_dvb *dvb = data;
46 struct videobuf_buffer *buf;
47 unsigned long flags;
59d34489 48 void *outp;
1da177e4
LT
49
50 dprintk("dvb thread started\n");
83144186 51 set_freezable();
1da177e4
LT
52 videobuf_read_start(&dvb->dvbq);
53
54 for (;;) {
55 /* fetch next buffer */
56 buf = list_entry(dvb->dvbq.stream.next,
57 struct videobuf_buffer, stream);
58 list_del(&buf->stream);
5becbc58 59 videobuf_waiton(&dvb->dvbq, buf, 0, 1);
1da177e4
LT
60
61 /* no more feeds left or stop_feed() asked us to quit */
62 if (0 == dvb->nfeeds)
63 break;
64 if (kthread_should_stop())
65 break;
3e1d1d28 66 try_to_freeze();
1da177e4
LT
67
68 /* feed buffer data to demux */
f4fce60e 69 outp = videobuf_queue_to_vaddr(&dvb->dvbq, buf);
59d34489 70
0fc0686e 71 if (buf->state == VIDEOBUF_DONE)
59d34489 72 dvb_dmx_swfilter(&dvb->demux, outp,
1da177e4
LT
73 buf->size);
74
75 /* requeue buffer */
76 list_add_tail(&buf->stream,&dvb->dvbq.stream);
77 spin_lock_irqsave(dvb->dvbq.irqlock,flags);
78 dvb->dvbq.ops->buf_queue(&dvb->dvbq,buf);
79 spin_unlock_irqrestore(dvb->dvbq.irqlock,flags);
80 }
81
82 videobuf_read_stop(&dvb->dvbq);
83 dprintk("dvb thread stopped\n");
84
85 /* Hmm, linux becomes *very* unhappy without this ... */
86 while (!kthread_should_stop()) {
87 set_current_state(TASK_INTERRUPTIBLE);
88 schedule();
89 }
90 return 0;
91}
92
93static int videobuf_dvb_start_feed(struct dvb_demux_feed *feed)
94{
95 struct dvb_demux *demux = feed->demux;
96 struct videobuf_dvb *dvb = demux->priv;
97 int rc;
98
99 if (!demux->dmx.frontend)
100 return -EINVAL;
101
3593cab5 102 mutex_lock(&dvb->lock);
1da177e4
LT
103 dvb->nfeeds++;
104 rc = dvb->nfeeds;
105
106 if (NULL != dvb->thread)
107 goto out;
108 dvb->thread = kthread_run(videobuf_dvb_thread,
109 dvb, "%s dvb", dvb->name);
110 if (IS_ERR(dvb->thread)) {
111 rc = PTR_ERR(dvb->thread);
112 dvb->thread = NULL;
113 }
114
115out:
3593cab5 116 mutex_unlock(&dvb->lock);
1da177e4
LT
117 return rc;
118}
119
120static int videobuf_dvb_stop_feed(struct dvb_demux_feed *feed)
121{
122 struct dvb_demux *demux = feed->demux;
123 struct videobuf_dvb *dvb = demux->priv;
124 int err = 0;
125
3593cab5 126 mutex_lock(&dvb->lock);
1da177e4
LT
127 dvb->nfeeds--;
128 if (0 == dvb->nfeeds && NULL != dvb->thread) {
1da177e4
LT
129 err = kthread_stop(dvb->thread);
130 dvb->thread = NULL;
131 }
3593cab5 132 mutex_unlock(&dvb->lock);
1da177e4
LT
133 return err;
134}
135
dcadd082 136static int videobuf_dvb_register_adapter(struct videobuf_dvb_frontends *fe,
1da177e4 137 struct module *module,
d09dbf92 138 void *adapter_priv,
78e92006 139 struct device *device,
363c35fc 140 char *adapter_name,
59b1842d 141 short *adapter_nr,
9133aee0
MK
142 int mfe_shared,
143 int (*fe_ioctl_override)(struct dvb_frontend *,
144 unsigned int, void *, unsigned int))
1da177e4
LT
145{
146 int result;
147
363c35fc 148 mutex_init(&fe->lock);
1da177e4
LT
149
150 /* register adapter */
11fbedd3
ST
151 result = dvb_register_adapter(&fe->adapter, adapter_name, module,
152 device, adapter_nr);
1da177e4
LT
153 if (result < 0) {
154 printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n",
363c35fc 155 adapter_name, result);
1da177e4 156 }
363c35fc 157 fe->adapter.priv = adapter_priv;
59b1842d 158 fe->adapter.mfe_shared = mfe_shared;
9133aee0 159 fe->adapter.fe_ioctl_override = fe_ioctl_override;
363c35fc
ST
160
161 return result;
162}
163
dcadd082 164static int videobuf_dvb_register_frontend(struct dvb_adapter *adapter,
11fbedd3 165 struct videobuf_dvb *dvb)
363c35fc
ST
166{
167 int result;
1da177e4
LT
168
169 /* register frontend */
363c35fc 170 result = dvb_register_frontend(adapter, dvb->frontend);
1da177e4
LT
171 if (result < 0) {
172 printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n",
173 dvb->name, result);
174 goto fail_frontend;
175 }
176
177 /* register demux stuff */
178 dvb->demux.dmx.capabilities =
179 DMX_TS_FILTERING | DMX_SECTION_FILTERING |
180 DMX_MEMORY_BASED_FILTERING;
181 dvb->demux.priv = dvb;
182 dvb->demux.filternum = 256;
183 dvb->demux.feednum = 256;
184 dvb->demux.start_feed = videobuf_dvb_start_feed;
185 dvb->demux.stop_feed = videobuf_dvb_stop_feed;
186 result = dvb_dmx_init(&dvb->demux);
187 if (result < 0) {
188 printk(KERN_WARNING "%s: dvb_dmx_init failed (errno = %d)\n",
189 dvb->name, result);
190 goto fail_dmx;
191 }
192
193 dvb->dmxdev.filternum = 256;
194 dvb->dmxdev.demux = &dvb->demux.dmx;
195 dvb->dmxdev.capabilities = 0;
363c35fc
ST
196 result = dvb_dmxdev_init(&dvb->dmxdev, adapter);
197
1da177e4
LT
198 if (result < 0) {
199 printk(KERN_WARNING "%s: dvb_dmxdev_init failed (errno = %d)\n",
200 dvb->name, result);
201 goto fail_dmxdev;
202 }
203
204 dvb->fe_hw.source = DMX_FRONTEND_0;
205 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw);
206 if (result < 0) {
207 printk(KERN_WARNING "%s: add_frontend failed (DMX_FRONTEND_0, errno = %d)\n",
208 dvb->name, result);
209 goto fail_fe_hw;
210 }
211
212 dvb->fe_mem.source = DMX_MEMORY_FE;
213 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_mem);
214 if (result < 0) {
215 printk(KERN_WARNING "%s: add_frontend failed (DMX_MEMORY_FE, errno = %d)\n",
216 dvb->name, result);
217 goto fail_fe_mem;
218 }
219
220 result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw);
221 if (result < 0) {
222 printk(KERN_WARNING "%s: connect_frontend failed (errno = %d)\n",
223 dvb->name, result);
224 goto fail_fe_conn;
225 }
226
227 /* register network adapter */
5c96ebb7
JN
228 result = dvb_net_init(adapter, &dvb->net, &dvb->demux.dmx);
229 if (result < 0) {
230 printk(KERN_WARNING "%s: dvb_net_init failed (errno = %d)\n",
231 dvb->name, result);
e43f3fab
DB
232 goto fail_fe_conn;
233 }
1da177e4
LT
234 return 0;
235
236fail_fe_conn:
237 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
238fail_fe_mem:
239 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
240fail_fe_hw:
241 dvb_dmxdev_release(&dvb->dmxdev);
242fail_dmxdev:
243 dvb_dmx_release(&dvb->demux);
244fail_dmx:
245 dvb_unregister_frontend(dvb->frontend);
246fail_frontend:
f52a838b 247 dvb_frontend_detach(dvb->frontend);
e43f3fab 248 dvb->frontend = NULL;
363c35fc 249
1da177e4
LT
250 return result;
251}
252
dcadd082
MCC
253/* ------------------------------------------------------------------ */
254/* Register a single adapter and one or more frontends */
255int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f,
256 struct module *module,
257 void *adapter_priv,
258 struct device *device,
259 short *adapter_nr,
9133aee0
MK
260 int mfe_shared,
261 int (*fe_ioctl_override)(struct dvb_frontend *,
262 unsigned int, void *, unsigned int))
dcadd082
MCC
263{
264 struct list_head *list, *q;
265 struct videobuf_dvb_frontend *fe;
266 int res;
267
268 fe = videobuf_dvb_get_frontend(f, 1);
269 if (!fe) {
270 printk(KERN_WARNING "Unable to register the adapter which has no frontends\n");
271 return -EINVAL;
272 }
273
274 /* Bring up the adapter */
275 res = videobuf_dvb_register_adapter(f, module, adapter_priv, device,
9133aee0 276 fe->dvb.name, adapter_nr, mfe_shared, fe_ioctl_override);
dcadd082
MCC
277 if (res < 0) {
278 printk(KERN_WARNING "videobuf_dvb_register_adapter failed (errno = %d)\n", res);
279 return res;
280 }
281
282 /* Attach all of the frontends to the adapter */
283 mutex_lock(&f->lock);
284 list_for_each_safe(list, q, &f->felist) {
285 fe = list_entry(list, struct videobuf_dvb_frontend, felist);
286 res = videobuf_dvb_register_frontend(&f->adapter, &fe->dvb);
287 if (res < 0) {
288 printk(KERN_WARNING "%s: videobuf_dvb_register_frontend failed (errno = %d)\n",
289 fe->dvb.name, res);
290 goto err;
291 }
292 }
293 mutex_unlock(&f->lock);
294 return 0;
295
296err:
297 mutex_unlock(&f->lock);
298 videobuf_dvb_unregister_bus(f);
299 return res;
300}
301EXPORT_SYMBOL(videobuf_dvb_register_bus);
302
363c35fc 303void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f)
1da177e4 304{
878595f6 305 videobuf_dvb_dealloc_frontends(f);
363c35fc
ST
306
307 dvb_unregister_adapter(&f->adapter);
308}
11fbedd3 309EXPORT_SYMBOL(videobuf_dvb_unregister_bus);
363c35fc 310
11fbedd3
ST
311struct videobuf_dvb_frontend *videobuf_dvb_get_frontend(
312 struct videobuf_dvb_frontends *f, int id)
363c35fc
ST
313{
314 struct list_head *list, *q;
315 struct videobuf_dvb_frontend *fe, *ret = NULL;
316
317 mutex_lock(&f->lock);
318
7bdf84fc 319 list_for_each_safe(list, q, &f->felist) {
363c35fc
ST
320 fe = list_entry(list, struct videobuf_dvb_frontend, felist);
321 if (fe->id == id) {
322 ret = fe;
323 break;
324 }
325 }
326
327 mutex_unlock(&f->lock);
328
329 return ret;
330}
11fbedd3 331EXPORT_SYMBOL(videobuf_dvb_get_frontend);
363c35fc 332
11fbedd3
ST
333int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f,
334 struct dvb_frontend *p)
363c35fc
ST
335{
336 struct list_head *list, *q;
337 struct videobuf_dvb_frontend *fe = NULL;
338 int ret = 0;
339
340 mutex_lock(&f->lock);
341
7bdf84fc 342 list_for_each_safe(list, q, &f->felist) {
363c35fc
ST
343 fe = list_entry(list, struct videobuf_dvb_frontend, felist);
344 if (fe->dvb.frontend == p) {
345 ret = fe->id;
346 break;
347 }
348 }
349
350 mutex_unlock(&f->lock);
351
352 return ret;
353}
11fbedd3 354EXPORT_SYMBOL(videobuf_dvb_find_frontend);
363c35fc 355
11fbedd3
ST
356struct videobuf_dvb_frontend *videobuf_dvb_alloc_frontend(
357 struct videobuf_dvb_frontends *f, int id)
363c35fc
ST
358{
359 struct videobuf_dvb_frontend *fe;
360
11fbedd3 361 fe = kzalloc(sizeof(struct videobuf_dvb_frontend), GFP_KERNEL);
363c35fc
ST
362 if (fe == NULL)
363 goto fail_alloc;
364
363c35fc
ST
365 fe->id = id;
366 mutex_init(&fe->dvb.lock);
367
368 mutex_lock(&f->lock);
11fbedd3 369 list_add_tail(&fe->felist, &f->felist);
363c35fc
ST
370 mutex_unlock(&f->lock);
371
372fail_alloc:
373 return fe;
1da177e4 374}
363c35fc 375EXPORT_SYMBOL(videobuf_dvb_alloc_frontend);
878595f6
DB
376
377void videobuf_dvb_dealloc_frontends(struct videobuf_dvb_frontends *f)
378{
379 struct list_head *list, *q;
380 struct videobuf_dvb_frontend *fe;
381
382 mutex_lock(&f->lock);
383 list_for_each_safe(list, q, &f->felist) {
384 fe = list_entry(list, struct videobuf_dvb_frontend, felist);
385 if (fe->dvb.net.dvbdev) {
386 dvb_net_release(&fe->dvb.net);
387 fe->dvb.demux.dmx.remove_frontend(&fe->dvb.demux.dmx,
388 &fe->dvb.fe_mem);
389 fe->dvb.demux.dmx.remove_frontend(&fe->dvb.demux.dmx,
390 &fe->dvb.fe_hw);
391 dvb_dmxdev_release(&fe->dvb.dmxdev);
392 dvb_dmx_release(&fe->dvb.demux);
393 dvb_unregister_frontend(fe->dvb.frontend);
394 }
395 if (fe->dvb.frontend)
396 /* always allocated, may have been reset */
397 dvb_frontend_detach(fe->dvb.frontend);
398 list_del(list); /* remove list entry */
399 kfree(fe); /* free frontend allocation */
400 }
401 mutex_unlock(&f->lock);
402}
403EXPORT_SYMBOL(videobuf_dvb_dealloc_frontends);
This page took 0.902304 seconds and 5 git commands to generate.