blob: a56cf0d3a6d618134d70f046059df84919f3b1d0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
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>
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -030022
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080023#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -030025#include <media/videobuf-core.h>
Mauro Carvalho Chehabba366a22007-08-23 18:12:08 -030026#include <media/videobuf-dvb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/* ------------------------------------------------------------------ */
29
30MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
31MODULE_LICENSE("GPL");
32
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030033static unsigned int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034module_param(debug, int, 0644);
35MODULE_PARM_DESC(debug,"enable debug messages");
36
37#define dprintk(fmt, arg...) if (debug) \
38 printk(KERN_DEBUG "%s/dvb: " fmt, dvb->name , ## arg)
39
40/* ------------------------------------------------------------------ */
41
42static int videobuf_dvb_thread(void *data)
43{
44 struct videobuf_dvb *dvb = data;
45 struct videobuf_buffer *buf;
46 unsigned long flags;
47 int err;
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -030048 void *outp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 dprintk("dvb thread started\n");
Rafael J. Wysocki83144182007-07-17 04:03:35 -070051 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 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);
59 err = videobuf_waiton(buf,0,1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
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;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -070066 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 /* feed buffer data to demux */
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -030069 outp = videobuf_queue_to_vmalloc (&dvb->dvbq, buf);
70
Brandon Philips0fc06862007-11-06 20:02:36 -030071 if (buf->state == VIDEOBUF_DONE)
Mauro Carvalho Chehab59d34482008-04-13 15:10:00 -030072 dvb_dmx_swfilter(&dvb->demux, outp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 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
Ingo Molnar3593cab2006-02-07 06:49:14 -0200102 mutex_lock(&dvb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 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:
Ingo Molnar3593cab2006-02-07 06:49:14 -0200116 mutex_unlock(&dvb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 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
Ingo Molnar3593cab2006-02-07 06:49:14 -0200126 mutex_lock(&dvb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 dvb->nfeeds--;
128 if (0 == dvb->nfeeds && NULL != dvb->thread) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 err = kthread_stop(dvb->thread);
130 dvb->thread = NULL;
131 }
Ingo Molnar3593cab2006-02-07 06:49:14 -0200132 mutex_unlock(&dvb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return err;
134}
135
Mauro Carvalho Chehabdcadd082008-10-17 13:02:47 -0300136static int videobuf_dvb_register_adapter(struct videobuf_dvb_frontends *fe,
Steven Toth363c35f2008-10-11 11:05:50 -0300137 struct module *module,
138 void *adapter_priv,
139 struct device *device,
140 char *adapter_name,
Darron Broad59b18422008-10-11 11:44:05 -0300141 short *adapter_nr,
Michael Krufky9133aee2009-05-23 18:00:59 -0300142 int mfe_shared,
143 int (*fe_ioctl_override)(struct dvb_frontend *,
144 unsigned int, void *, unsigned int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 int result;
147
Steven Toth363c35f2008-10-11 11:05:50 -0300148 mutex_init(&fe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* register adapter */
Steven Toth11fbedd2008-10-16 21:42:10 -0300151 result = dvb_register_adapter(&fe->adapter, adapter_name, module,
152 device, adapter_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (result < 0) {
154 printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n",
Steven Toth363c35f2008-10-11 11:05:50 -0300155 adapter_name, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
Steven Toth363c35f2008-10-11 11:05:50 -0300157 fe->adapter.priv = adapter_priv;
Darron Broad59b18422008-10-11 11:44:05 -0300158 fe->adapter.mfe_shared = mfe_shared;
Michael Krufky9133aee2009-05-23 18:00:59 -0300159 fe->adapter.fe_ioctl_override = fe_ioctl_override;
Steven Toth363c35f2008-10-11 11:05:50 -0300160
161 return result;
162}
163
Mauro Carvalho Chehabdcadd082008-10-17 13:02:47 -0300164static int videobuf_dvb_register_frontend(struct dvb_adapter *adapter,
Steven Toth11fbedd2008-10-16 21:42:10 -0300165 struct videobuf_dvb *dvb)
Steven Toth363c35f2008-10-11 11:05:50 -0300166{
167 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* register frontend */
Steven Toth363c35f2008-10-11 11:05:50 -0300170 result = dvb_register_frontend(adapter, dvb->frontend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 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;
Steven Toth363c35f2008-10-11 11:05:50 -0300196 result = dvb_dmxdev_init(&dvb->dmxdev, adapter);
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 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 */
Steven Toth363c35f2008-10-11 11:05:50 -0300228 dvb_net_init(adapter, &dvb->net, &dvb->demux.dmx);
Darron Broade43f3fa2008-10-15 13:48:43 -0300229 if (dvb->net.dvbdev == NULL) {
230 result = -ENOMEM;
231 goto fail_fe_conn;
232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return 0;
234
235fail_fe_conn:
236 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
237fail_fe_mem:
238 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
239fail_fe_hw:
240 dvb_dmxdev_release(&dvb->dmxdev);
241fail_dmxdev:
242 dvb_dmx_release(&dvb->demux);
243fail_dmx:
244 dvb_unregister_frontend(dvb->frontend);
245fail_frontend:
Andrew de Quinceyf52a8382006-08-08 09:10:09 -0300246 dvb_frontend_detach(dvb->frontend);
Darron Broade43f3fa2008-10-15 13:48:43 -0300247 dvb->frontend = NULL;
Steven Toth363c35f2008-10-11 11:05:50 -0300248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return result;
250}
251
Mauro Carvalho Chehabdcadd082008-10-17 13:02:47 -0300252/* ------------------------------------------------------------------ */
253/* Register a single adapter and one or more frontends */
254int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f,
255 struct module *module,
256 void *adapter_priv,
257 struct device *device,
258 short *adapter_nr,
Michael Krufky9133aee2009-05-23 18:00:59 -0300259 int mfe_shared,
260 int (*fe_ioctl_override)(struct dvb_frontend *,
261 unsigned int, void *, unsigned int))
Mauro Carvalho Chehabdcadd082008-10-17 13:02:47 -0300262{
263 struct list_head *list, *q;
264 struct videobuf_dvb_frontend *fe;
265 int res;
266
267 fe = videobuf_dvb_get_frontend(f, 1);
268 if (!fe) {
269 printk(KERN_WARNING "Unable to register the adapter which has no frontends\n");
270 return -EINVAL;
271 }
272
273 /* Bring up the adapter */
274 res = videobuf_dvb_register_adapter(f, module, adapter_priv, device,
Michael Krufky9133aee2009-05-23 18:00:59 -0300275 fe->dvb.name, adapter_nr, mfe_shared, fe_ioctl_override);
Mauro Carvalho Chehabdcadd082008-10-17 13:02:47 -0300276 if (res < 0) {
277 printk(KERN_WARNING "videobuf_dvb_register_adapter failed (errno = %d)\n", res);
278 return res;
279 }
280
281 /* Attach all of the frontends to the adapter */
282 mutex_lock(&f->lock);
283 list_for_each_safe(list, q, &f->felist) {
284 fe = list_entry(list, struct videobuf_dvb_frontend, felist);
285 res = videobuf_dvb_register_frontend(&f->adapter, &fe->dvb);
286 if (res < 0) {
287 printk(KERN_WARNING "%s: videobuf_dvb_register_frontend failed (errno = %d)\n",
288 fe->dvb.name, res);
289 goto err;
290 }
291 }
292 mutex_unlock(&f->lock);
293 return 0;
294
295err:
296 mutex_unlock(&f->lock);
297 videobuf_dvb_unregister_bus(f);
298 return res;
299}
300EXPORT_SYMBOL(videobuf_dvb_register_bus);
301
Steven Toth363c35f2008-10-11 11:05:50 -0300302void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Darron Broad878595f2008-10-21 11:28:46 -0300304 videobuf_dvb_dealloc_frontends(f);
Steven Toth363c35f2008-10-11 11:05:50 -0300305
306 dvb_unregister_adapter(&f->adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
Steven Toth11fbedd2008-10-16 21:42:10 -0300308EXPORT_SYMBOL(videobuf_dvb_unregister_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Steven Toth11fbedd2008-10-16 21:42:10 -0300310struct videobuf_dvb_frontend *videobuf_dvb_get_frontend(
311 struct videobuf_dvb_frontends *f, int id)
Steven Toth363c35f2008-10-11 11:05:50 -0300312{
313 struct list_head *list, *q;
314 struct videobuf_dvb_frontend *fe, *ret = NULL;
315
316 mutex_lock(&f->lock);
317
Darron Broad7bdf84f2008-10-15 13:43:41 -0300318 list_for_each_safe(list, q, &f->felist) {
Steven Toth363c35f2008-10-11 11:05:50 -0300319 fe = list_entry(list, struct videobuf_dvb_frontend, felist);
320 if (fe->id == id) {
321 ret = fe;
322 break;
323 }
324 }
325
326 mutex_unlock(&f->lock);
327
328 return ret;
329}
Steven Toth11fbedd2008-10-16 21:42:10 -0300330EXPORT_SYMBOL(videobuf_dvb_get_frontend);
Steven Toth363c35f2008-10-11 11:05:50 -0300331
Steven Toth11fbedd2008-10-16 21:42:10 -0300332int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f,
333 struct dvb_frontend *p)
Steven Toth363c35f2008-10-11 11:05:50 -0300334{
335 struct list_head *list, *q;
336 struct videobuf_dvb_frontend *fe = NULL;
337 int ret = 0;
338
339 mutex_lock(&f->lock);
340
Darron Broad7bdf84f2008-10-15 13:43:41 -0300341 list_for_each_safe(list, q, &f->felist) {
Steven Toth363c35f2008-10-11 11:05:50 -0300342 fe = list_entry(list, struct videobuf_dvb_frontend, felist);
343 if (fe->dvb.frontend == p) {
344 ret = fe->id;
345 break;
346 }
347 }
348
349 mutex_unlock(&f->lock);
350
351 return ret;
352}
Steven Toth11fbedd2008-10-16 21:42:10 -0300353EXPORT_SYMBOL(videobuf_dvb_find_frontend);
Steven Toth363c35f2008-10-11 11:05:50 -0300354
Steven Toth11fbedd2008-10-16 21:42:10 -0300355struct videobuf_dvb_frontend *videobuf_dvb_alloc_frontend(
356 struct videobuf_dvb_frontends *f, int id)
Steven Toth363c35f2008-10-11 11:05:50 -0300357{
358 struct videobuf_dvb_frontend *fe;
359
Steven Toth11fbedd2008-10-16 21:42:10 -0300360 fe = kzalloc(sizeof(struct videobuf_dvb_frontend), GFP_KERNEL);
Steven Toth363c35f2008-10-11 11:05:50 -0300361 if (fe == NULL)
362 goto fail_alloc;
363
Steven Toth363c35f2008-10-11 11:05:50 -0300364 fe->id = id;
365 mutex_init(&fe->dvb.lock);
366
367 mutex_lock(&f->lock);
Steven Toth11fbedd2008-10-16 21:42:10 -0300368 list_add_tail(&fe->felist, &f->felist);
Steven Toth363c35f2008-10-11 11:05:50 -0300369 mutex_unlock(&f->lock);
370
371fail_alloc:
372 return fe;
373}
Steven Toth363c35f2008-10-11 11:05:50 -0300374EXPORT_SYMBOL(videobuf_dvb_alloc_frontend);
Darron Broad878595f2008-10-21 11:28:46 -0300375
376void videobuf_dvb_dealloc_frontends(struct videobuf_dvb_frontends *f)
377{
378 struct list_head *list, *q;
379 struct videobuf_dvb_frontend *fe;
380
381 mutex_lock(&f->lock);
382 list_for_each_safe(list, q, &f->felist) {
383 fe = list_entry(list, struct videobuf_dvb_frontend, felist);
384 if (fe->dvb.net.dvbdev) {
385 dvb_net_release(&fe->dvb.net);
386 fe->dvb.demux.dmx.remove_frontend(&fe->dvb.demux.dmx,
387 &fe->dvb.fe_mem);
388 fe->dvb.demux.dmx.remove_frontend(&fe->dvb.demux.dmx,
389 &fe->dvb.fe_hw);
390 dvb_dmxdev_release(&fe->dvb.dmxdev);
391 dvb_dmx_release(&fe->dvb.demux);
392 dvb_unregister_frontend(fe->dvb.frontend);
393 }
394 if (fe->dvb.frontend)
395 /* always allocated, may have been reset */
396 dvb_frontend_detach(fe->dvb.frontend);
397 list_del(list); /* remove list entry */
398 kfree(fe); /* free frontend allocation */
399 }
400 mutex_unlock(&f->lock);
401}
402EXPORT_SYMBOL(videobuf_dvb_dealloc_frontends);