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 | |
Hans Petter Selasky | 5d8f290 | 2011-05-23 12:10:40 -0300 | [diff] [blame] | 7 | #ifndef _VIDEOBUF_DVB_H_ |
| 8 | #define _VIDEOBUF_DVB_H_ |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | struct videobuf_dvb { |
| 11 | /* filling that the job of the driver */ |
| 12 | char *name; |
| 13 | struct dvb_frontend *frontend; |
| 14 | struct videobuf_queue dvbq; |
| 15 | |
| 16 | /* video-buf-dvb state info */ |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 17 | struct mutex lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | struct task_struct *thread; |
| 19 | int nfeeds; |
| 20 | |
| 21 | /* videobuf_dvb_(un)register manges this */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | struct dvb_demux demux; |
| 23 | struct dmxdev dmxdev; |
| 24 | struct dmx_frontend fe_hw; |
| 25 | struct dmx_frontend fe_mem; |
| 26 | struct dvb_net net; |
| 27 | }; |
| 28 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame] | 29 | struct videobuf_dvb_frontend { |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame] | 30 | struct list_head felist; |
| 31 | int id; |
| 32 | struct videobuf_dvb dvb; |
| 33 | }; |
| 34 | |
| 35 | struct videobuf_dvb_frontends { |
Darron Broad | 7bdf84f | 2008-10-15 13:43:41 -0300 | [diff] [blame] | 36 | struct list_head felist; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame] | 37 | struct mutex lock; |
| 38 | struct dvb_adapter adapter; |
| 39 | int active_fe_id; /* Indicates which frontend in the felist is in use */ |
Darron Broad | 8e73909 | 2008-10-11 11:31:41 -0300 | [diff] [blame] | 40 | int gate; /* Frontend with gate control 0=!MFE,1=fe0,2=fe1 etc */ |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | struct module *module, |
Andrew de Quincey | d09dbf9 | 2006-04-10 09:27:37 -0300 | [diff] [blame] | 45 | void *adapter_priv, |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 46 | struct device *device, |
Darron Broad | 59b1842 | 2008-10-11 11:44:05 -0300 | [diff] [blame] | 47 | short *adapter_nr, |
Michael Krufky | 9133aee | 2009-05-23 18:00:59 -0300 | [diff] [blame] | 48 | int mfe_shared, |
| 49 | int (*fe_ioctl_override)(struct dvb_frontend *, |
| 50 | unsigned int, void *, unsigned int)); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame] | 51 | |
| 52 | void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f); |
| 53 | |
Darron Broad | 96b7a1a | 2008-10-15 20:26:34 -0300 | [diff] [blame] | 54 | struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(struct videobuf_dvb_frontends *f, int id); |
Darron Broad | 878595f | 2008-10-21 11:28:46 -0300 | [diff] [blame] | 55 | void videobuf_dvb_dealloc_frontends(struct videobuf_dvb_frontends *f); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame] | 56 | |
| 57 | struct videobuf_dvb_frontend * videobuf_dvb_get_frontend(struct videobuf_dvb_frontends *f, int id); |
| 58 | int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f, struct dvb_frontend *p); |
| 59 | |
Hans Petter Selasky | 5d8f290 | 2011-05-23 12:10:40 -0300 | [diff] [blame] | 60 | #endif /* _VIDEOBUF_DVB_H_ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | /* |
| 63 | * Local variables: |
| 64 | * c-basic-offset: 8 |
| 65 | * End: |
| 66 | */ |