]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/media/videobuf-dvb.h
V4L/DVB (9264): MFE: bugfix: multi-frontend mutual exclusion parallel open
[mirror_ubuntu-bionic-kernel.git] / include / media / videobuf-dvb.h
CommitLineData
1da177e4
LT
1#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 */
3593cab5 14 struct mutex lock;
1da177e4
LT
15 struct task_struct *thread;
16 int nfeeds;
17
18 /* videobuf_dvb_(un)register manges this */
fdc53a6d 19 struct dvb_adapter adapter;
1da177e4
LT
20 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
363c35fc
ST
27struct 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;
8e739090 39 int gate; /* Frontend with gate control 0=!MFE,1=fe0,2=fe1 etc */
363c35fc
ST
40};
41
42int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f,
1da177e4 43 struct module *module,
d09dbf92 44 void *adapter_priv,
78e92006 45 struct device *device,
59b1842d
DB
46 short *adapter_nr,
47 int mfe_shared);
363c35fc
ST
48
49void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f);
50
51int videobuf_dvb_register_adapter(struct videobuf_dvb_frontends *f,
52 struct module *module,
53 void *adapter_priv,
54 struct device *device,
55 char *adapter_name,
59b1842d
DB
56 short *adapter_nr,
57 int mfe_shared);
363c35fc
ST
58
59int videobuf_dvb_register_frontend(struct dvb_adapter *adapter, struct videobuf_dvb *dvb);
60
61struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(void *private, struct videobuf_dvb_frontends *f, int id);
62
63struct videobuf_dvb_frontend * videobuf_dvb_get_frontend(struct videobuf_dvb_frontends *f, int id);
64int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f, struct dvb_frontend *p);
65
1da177e4
LT
66
67/*
68 * Local variables:
69 * c-basic-offset: 8
70 * End:
71 */