Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * dvbdev.h |
| 3 | * |
| 4 | * Copyright (C) 2000 Ralph Metzler & Marcus Metzler |
| 5 | * for convergence integrated media GmbH |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Lesser Public License |
| 9 | * as published by the Free Software Foundation; either version 2.1 |
| 10 | * of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #ifndef _DVBDEV_H_ |
| 24 | #define _DVBDEV_H_ |
| 25 | |
| 26 | #include <linux/types.h> |
| 27 | #include <linux/poll.h> |
| 28 | #include <linux/fs.h> |
| 29 | #include <linux/list.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | #define DVB_MAJOR 212 |
| 32 | |
Janne Grunau | 4457ef1 | 2009-09-01 19:15:39 -0300 | [diff] [blame] | 33 | #if defined(CONFIG_DVB_MAX_ADAPTERS) && CONFIG_DVB_MAX_ADAPTERS > 0 |
Mauro Carvalho Chehab | d4c02ef | 2009-09-19 09:45:22 -0300 | [diff] [blame] | 34 | #define DVB_MAX_ADAPTERS CONFIG_DVB_MAX_ADAPTERS |
Janne Grunau | 4457ef1 | 2009-09-01 19:15:39 -0300 | [diff] [blame] | 35 | #else |
Mauro Carvalho Chehab | d4c02ef | 2009-09-19 09:45:22 -0300 | [diff] [blame] | 36 | #define DVB_MAX_ADAPTERS 8 |
Janne Grunau | 4457ef1 | 2009-09-01 19:15:39 -0300 | [diff] [blame] | 37 | #endif |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 38 | |
| 39 | #define DVB_UNSET (-1) |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #define DVB_DEVICE_VIDEO 0 |
| 42 | #define DVB_DEVICE_AUDIO 1 |
| 43 | #define DVB_DEVICE_SEC 2 |
| 44 | #define DVB_DEVICE_FRONTEND 3 |
| 45 | #define DVB_DEVICE_DEMUX 4 |
| 46 | #define DVB_DEVICE_DVR 5 |
| 47 | #define DVB_DEVICE_CA 6 |
| 48 | #define DVB_DEVICE_NET 7 |
| 49 | #define DVB_DEVICE_OSD 8 |
| 50 | |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 51 | #define DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr) \ |
| 52 | static short adapter_nr[] = \ |
| 53 | {[0 ... (DVB_MAX_ADAPTERS - 1)] = DVB_UNSET }; \ |
| 54 | module_param_array(adapter_nr, short, NULL, 0444); \ |
| 55 | MODULE_PARM_DESC(adapter_nr, "DVB adapter numbers") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Michael Krufky | 9133aee | 2009-05-23 18:00:59 -0300 | [diff] [blame] | 57 | struct dvb_frontend; |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | struct dvb_adapter { |
| 60 | int num; |
| 61 | struct list_head list_head; |
| 62 | struct list_head device_list; |
| 63 | const char *name; |
| 64 | u8 proposed_mac [6]; |
| 65 | void* priv; |
| 66 | |
Andrew de Quincey | d09dbf9 | 2006-04-10 09:27:37 -0300 | [diff] [blame] | 67 | struct device *device; |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | struct module *module; |
Darron Broad | 59b1842 | 2008-10-11 11:44:05 -0300 | [diff] [blame] | 70 | |
| 71 | int mfe_shared; /* indicates mutually exclusive frontends */ |
| 72 | struct dvb_device *mfe_dvbdev; /* frontend device in use */ |
| 73 | struct mutex mfe_lock; /* access lock for thread creation */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | |
| 77 | struct dvb_device { |
| 78 | struct list_head list_head; |
Jan Engelhardt | 784e29d | 2009-01-11 06:12:43 -0300 | [diff] [blame] | 79 | const struct file_operations *fops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | struct dvb_adapter *adapter; |
| 81 | int type; |
Andreas Oberritter | 5dd3f30 | 2008-10-23 12:11:19 -0300 | [diff] [blame] | 82 | int minor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | u32 id; |
| 84 | |
| 85 | /* in theory, 'users' can vanish now, |
| 86 | but I don't want to change too much now... */ |
| 87 | int readers; |
| 88 | int writers; |
| 89 | int users; |
| 90 | |
Markus Rechberger | ca5be9c | 2007-04-14 10:18:58 -0300 | [diff] [blame] | 91 | wait_queue_head_t wait_queue; |
Mauro Carvalho Chehab | afd1a0c | 2005-12-12 00:37:27 -0800 | [diff] [blame] | 92 | /* don't really need those !? -- FIXME: use video_usercopy */ |
Arnd Bergmann | 16ef8de | 2010-04-27 00:24:00 +0200 | [diff] [blame] | 93 | int (*kernel_ioctl)(struct file *file, unsigned int cmd, void *arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
| 95 | void *priv; |
| 96 | }; |
| 97 | |
| 98 | |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 99 | extern int dvb_register_adapter(struct dvb_adapter *adap, const char *name, |
| 100 | struct module *module, struct device *device, |
| 101 | short *adapter_nums); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | extern int dvb_unregister_adapter (struct dvb_adapter *adap); |
| 103 | |
| 104 | extern int dvb_register_device (struct dvb_adapter *adap, |
| 105 | struct dvb_device **pdvbdev, |
| 106 | const struct dvb_device *template, |
| 107 | void *priv, |
| 108 | int type); |
| 109 | |
| 110 | extern void dvb_unregister_device (struct dvb_device *dvbdev); |
| 111 | |
| 112 | extern int dvb_generic_open (struct inode *inode, struct file *file); |
| 113 | extern int dvb_generic_release (struct inode *inode, struct file *file); |
Arnd Bergmann | 16ef8de | 2010-04-27 00:24:00 +0200 | [diff] [blame] | 114 | extern long dvb_generic_ioctl (struct file *file, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | unsigned int cmd, unsigned long arg); |
| 116 | |
| 117 | /* we don't mess with video_usercopy() any more, |
| 118 | we simply define out own dvb_usercopy(), which will hopefully become |
| 119 | generic_usercopy() someday... */ |
| 120 | |
Arnd Bergmann | 16ef8de | 2010-04-27 00:24:00 +0200 | [diff] [blame] | 121 | extern int dvb_usercopy(struct file *file, unsigned int cmd, unsigned long arg, |
| 122 | int (*func)(struct file *file, unsigned int cmd, void *arg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Andrew de Quincey | d995506 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 124 | /** generic DVB attach function. */ |
Mauro Carvalho Chehab | 149ef72 | 2008-04-29 21:38:46 -0300 | [diff] [blame] | 125 | #ifdef CONFIG_MEDIA_ATTACH |
Andrew de Quincey | d995506 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 126 | #define dvb_attach(FUNCTION, ARGS...) ({ \ |
| 127 | void *__r = NULL; \ |
| 128 | typeof(&FUNCTION) __a = symbol_request(FUNCTION); \ |
| 129 | if (__a) { \ |
| 130 | __r = (void *) __a(ARGS); \ |
| 131 | if (__r == NULL) \ |
| 132 | symbol_put(FUNCTION); \ |
| 133 | } else { \ |
| 134 | printk(KERN_ERR "DVB: Unable to find symbol "#FUNCTION"()\n"); \ |
| 135 | } \ |
| 136 | __r; \ |
| 137 | }) |
| 138 | |
Andrew de Quincey | d995506 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 139 | #else |
| 140 | #define dvb_attach(FUNCTION, ARGS...) ({ \ |
| 141 | FUNCTION(ARGS); \ |
| 142 | }) |
| 143 | |
Andrew de Quincey | d995506 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 144 | #endif |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | #endif /* #ifndef _DVBDEV_H_ */ |