V4L/DVB (9265): videobuf: data storage optimisation
[safe/jmp/linux-2.6] / include / media / videobuf-dvb.h
1 #include <dvbdev.h>
2 #include <dmxdev.h>
3 #include <dvb_demux.h>
4 #include <dvb_net.h>
5 #include <dvb_frontend.h>
6
7 struct 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 */
14         struct mutex               lock;
15         struct task_struct         *thread;
16         int                        nfeeds;
17
18         /* videobuf_dvb_(un)register manges this */
19         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
26 struct videobuf_dvb_frontend {
27         struct list_head felist;
28         void *dev;
29         int id;
30         struct videobuf_dvb dvb;
31 };
32
33 struct videobuf_dvb_frontends {
34         struct list_head felist;
35         struct mutex lock;
36         struct dvb_adapter adapter;
37         int active_fe_id; /* Indicates which frontend in the felist is in use */
38         int gate; /* Frontend with gate control 0=!MFE,1=fe0,2=fe1 etc */
39 };
40
41 int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f,
42                           struct module *module,
43                           void *adapter_priv,
44                           struct device *device,
45                           short *adapter_nr,
46                           int mfe_shared);
47
48 void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f);
49
50 int videobuf_dvb_register_adapter(struct videobuf_dvb_frontends *f,
51                           struct module *module,
52                           void *adapter_priv,
53                           struct device *device,
54                           char *adapter_name,
55                           short *adapter_nr,
56                           int mfe_shared);
57
58 int videobuf_dvb_register_frontend(struct dvb_adapter *adapter, struct videobuf_dvb *dvb);
59
60 struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(void *private, struct videobuf_dvb_frontends *f, int id);
61
62 struct videobuf_dvb_frontend * videobuf_dvb_get_frontend(struct videobuf_dvb_frontends *f, int id);
63 int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f, struct dvb_frontend *p);
64
65
66 /*
67  * Local variables:
68  * c-basic-offset: 8
69  * End:
70  */