Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 */ |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 14 | struct mutex lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | struct task_struct *thread; |
| 16 | int nfeeds; |
| 17 | |
| 18 | /* videobuf_dvb_(un)register manges this */ |
Johannes Stezenbach | fdc53a6 | 2005-05-16 21:54:39 -0700 | [diff] [blame] | 19 | struct dvb_adapter adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 27 | struct videobuf_dvb_frontend { |
| 28 | void *dev; |
| 29 | struct list_head felist; |
| 30 | int id; |
| 31 | struct videobuf_dvb dvb; |
| 32 | }; |
| 33 | |
| 34 | struct 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; |
| 39 | }; |
| 40 | |
| 41 | int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | struct module *module, |
Andrew de Quincey | d09dbf9 | 2006-04-10 09:27:37 -0300 | [diff] [blame] | 43 | void *adapter_priv, |
Janne Grunau | 78e92006 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 44 | struct device *device, |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 45 | short *adapter_nr); //NEW |
| 46 | |
| 47 | void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f); |
| 48 | |
| 49 | int videobuf_dvb_register_adapter(struct videobuf_dvb_frontends *f, |
| 50 | struct module *module, |
| 51 | void *adapter_priv, |
| 52 | struct device *device, |
| 53 | char *adapter_name, |
| 54 | short *adapter_nr); //NEW |
| 55 | |
| 56 | int videobuf_dvb_register_frontend(struct dvb_adapter *adapter, struct videobuf_dvb *dvb); |
| 57 | |
| 58 | struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(void *private, struct videobuf_dvb_frontends *f, int id); |
| 59 | |
| 60 | struct videobuf_dvb_frontend * videobuf_dvb_get_frontend(struct videobuf_dvb_frontends *f, int id); |
| 61 | int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f, struct dvb_frontend *p); |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | /* |
| 65 | * Local variables: |
| 66 | * c-basic-offset: 8 |
| 67 | * End: |
| 68 | */ |