blob: 07cf4b9d0a656e56c28b3e6e16c4d6abc14f1b0a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <dvbdev.h>
2#include <dmxdev.h>
3#include <dvb_demux.h>
4#include <dvb_net.h>
5#include <dvb_frontend.h>
6
7struct videobuf_dvb {
8 /* filling that the job of the driver */
9 char *name;
10 struct dvb_frontend *frontend;
11 struct videobuf_queue dvbq;
12
13 /* video-buf-dvb state info */
Ingo Molnar3593cab2006-02-07 06:49:14 -020014 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 struct task_struct *thread;
16 int nfeeds;
17
18 /* videobuf_dvb_(un)register manges this */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 struct dvb_demux demux;
20 struct dmxdev dmxdev;
21 struct dmx_frontend fe_hw;
22 struct dmx_frontend fe_mem;
23 struct dvb_net net;
24};
25
Steven Toth363c35f2008-10-11 11:05:50 -030026struct videobuf_dvb_frontend {
Steven Toth363c35f2008-10-11 11:05:50 -030027 struct list_head felist;
28 int id;
29 struct videobuf_dvb dvb;
30};
31
32struct videobuf_dvb_frontends {
Darron Broad7bdf84f2008-10-15 13:43:41 -030033 struct list_head felist;
Steven Toth363c35f2008-10-11 11:05:50 -030034 struct mutex lock;
35 struct dvb_adapter adapter;
36 int active_fe_id; /* Indicates which frontend in the felist is in use */
Darron Broad8e739092008-10-11 11:31:41 -030037 int gate; /* Frontend with gate control 0=!MFE,1=fe0,2=fe1 etc */
Steven Toth363c35f2008-10-11 11:05:50 -030038};
39
40int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 struct module *module,
Andrew de Quinceyd09dbf92006-04-10 09:27:37 -030042 void *adapter_priv,
Janne Grunau78e92002008-04-09 19:13:13 -030043 struct device *device,
Darron Broad59b18422008-10-11 11:44:05 -030044 short *adapter_nr,
Michael Krufky9133aee2009-05-23 18:00:59 -030045 int mfe_shared,
46 int (*fe_ioctl_override)(struct dvb_frontend *,
47 unsigned int, void *, unsigned int));
Steven Toth363c35f2008-10-11 11:05:50 -030048
49void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f);
50
Darron Broad96b7a1a2008-10-15 20:26:34 -030051struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(struct videobuf_dvb_frontends *f, int id);
Darron Broad878595f2008-10-21 11:28:46 -030052void videobuf_dvb_dealloc_frontends(struct videobuf_dvb_frontends *f);
Steven Toth363c35f2008-10-11 11:05:50 -030053
54struct videobuf_dvb_frontend * videobuf_dvb_get_frontend(struct videobuf_dvb_frontends *f, int id);
55int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f, struct dvb_frontend *p);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
59 * Local variables:
60 * c-basic-offset: 8
61 * End:
62 */