blob: 47bc2c5e7ba947dbdebd45ffa4ff8538c55273d3 [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 */
Johannes Stezenbachfdc53a62005-05-16 21:54:39 -070019 struct dvb_adapter adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 struct dvb_demux demux;
21 struct dmxdev dmxdev;
22 struct dmx_frontend fe_hw;
23 struct dmx_frontend fe_mem;
24 struct dvb_net net;
25};
26
Steven Toth363c35f2008-10-11 11:05:50 -030027struct videobuf_dvb_frontend {
28 void *dev;
29 struct list_head felist;
30 int id;
31 struct videobuf_dvb dvb;
32};
33
34struct videobuf_dvb_frontends {
35 struct mutex lock;
36 struct dvb_adapter adapter;
37 int active_fe_id; /* Indicates which frontend in the felist is in use */
38 struct videobuf_dvb_frontend frontend;
Darron Broad8e739092008-10-11 11:31:41 -030039 int gate; /* Frontend with gate control 0=!MFE,1=fe0,2=fe1 etc */
Steven Toth363c35f2008-10-11 11:05:50 -030040};
41
42int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct module *module,
Andrew de Quinceyd09dbf92006-04-10 09:27:37 -030044 void *adapter_priv,
Janne Grunau78e92002008-04-09 19:13:13 -030045 struct device *device,
Steven Toth363c35f2008-10-11 11:05:50 -030046 short *adapter_nr); //NEW
47
48void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f);
49
50int 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); //NEW
56
57int videobuf_dvb_register_frontend(struct dvb_adapter *adapter, struct videobuf_dvb *dvb);
58
59struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(void *private, struct videobuf_dvb_frontends *f, int id);
60
61struct videobuf_dvb_frontend * videobuf_dvb_get_frontend(struct videobuf_dvb_frontends *f, int id);
62int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f, struct dvb_frontend *p);
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/*
66 * Local variables:
67 * c-basic-offset: 8
68 * End:
69 */