dvbdev.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. #ifndef _DVBDEV_H_
  23. #define _DVBDEV_H_
  24. #include <linux/types.h>
  25. #include <linux/poll.h>
  26. #include <linux/fs.h>
  27. #include <linux/list.h>
  28. #include <linux/smp_lock.h>
  29. #define DVB_MAJOR 212
  30. #define DVB_MAX_ADAPTERS 8
  31. #define DVB_UNSET (-1)
  32. #define DVB_DEVICE_VIDEO 0
  33. #define DVB_DEVICE_AUDIO 1
  34. #define DVB_DEVICE_SEC 2
  35. #define DVB_DEVICE_FRONTEND 3
  36. #define DVB_DEVICE_DEMUX 4
  37. #define DVB_DEVICE_DVR 5
  38. #define DVB_DEVICE_CA 6
  39. #define DVB_DEVICE_NET 7
  40. #define DVB_DEVICE_OSD 8
  41. #define DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr) \
  42. static short adapter_nr[] = \
  43. {[0 ... (DVB_MAX_ADAPTERS - 1)] = DVB_UNSET }; \
  44. module_param_array(adapter_nr, short, NULL, 0444); \
  45. MODULE_PARM_DESC(adapter_nr, "DVB adapter numbers")
  46. struct dvb_adapter {
  47. int num;
  48. struct list_head list_head;
  49. struct list_head device_list;
  50. const char *name;
  51. u8 proposed_mac [6];
  52. void* priv;
  53. struct device *device;
  54. struct module *module;
  55. int mfe_shared; /* indicates mutually exclusive frontends */
  56. struct dvb_device *mfe_dvbdev; /* frontend device in use */
  57. struct mutex mfe_lock; /* access lock for thread creation */
  58. };
  59. struct dvb_device {
  60. struct list_head list_head;
  61. struct file_operations *fops;
  62. struct dvb_adapter *adapter;
  63. int type;
  64. int minor;
  65. u32 id;
  66. /* in theory, 'users' can vanish now,
  67. but I don't want to change too much now... */
  68. int readers;
  69. int writers;
  70. int users;
  71. wait_queue_head_t wait_queue;
  72. /* don't really need those !? -- FIXME: use video_usercopy */
  73. int (*kernel_ioctl)(struct inode *inode, struct file *file,
  74. unsigned int cmd, void *arg);
  75. void *priv;
  76. };
  77. extern int dvb_register_adapter(struct dvb_adapter *adap, const char *name,
  78. struct module *module, struct device *device,
  79. short *adapter_nums);
  80. extern int dvb_unregister_adapter (struct dvb_adapter *adap);
  81. extern int dvb_register_device (struct dvb_adapter *adap,
  82. struct dvb_device **pdvbdev,
  83. const struct dvb_device *template,
  84. void *priv,
  85. int type);
  86. extern void dvb_unregister_device (struct dvb_device *dvbdev);
  87. extern int dvb_generic_open (struct inode *inode, struct file *file);
  88. extern int dvb_generic_release (struct inode *inode, struct file *file);
  89. extern int dvb_generic_ioctl (struct inode *inode, struct file *file,
  90. unsigned int cmd, unsigned long arg);
  91. /* we don't mess with video_usercopy() any more,
  92. we simply define out own dvb_usercopy(), which will hopefully become
  93. generic_usercopy() someday... */
  94. extern int dvb_usercopy(struct inode *inode, struct file *file,
  95. unsigned int cmd, unsigned long arg,
  96. int (*func)(struct inode *inode, struct file *file,
  97. unsigned int cmd, void *arg));
  98. /** generic DVB attach function. */
  99. #ifdef CONFIG_MEDIA_ATTACH
  100. #define dvb_attach(FUNCTION, ARGS...) ({ \
  101. void *__r = NULL; \
  102. typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
  103. if (__a) { \
  104. __r = (void *) __a(ARGS); \
  105. if (__r == NULL) \
  106. symbol_put(FUNCTION); \
  107. } else { \
  108. printk(KERN_ERR "DVB: Unable to find symbol "#FUNCTION"()\n"); \
  109. } \
  110. __r; \
  111. })
  112. #else
  113. #define dvb_attach(FUNCTION, ARGS...) ({ \
  114. FUNCTION(ARGS); \
  115. })
  116. #endif
  117. #endif /* #ifndef _DVBDEV_H_ */