dvbdev.h 4.7 KB

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