dvbdev.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. /* Filled inside dvbdev.c */
  86. struct media_entity *entity;
  87. #endif
  88. void *priv;
  89. };
  90. extern int dvb_register_adapter(struct dvb_adapter *adap, const char *name,
  91. struct module *module, struct device *device,
  92. short *adapter_nums);
  93. extern int dvb_unregister_adapter (struct dvb_adapter *adap);
  94. extern int dvb_register_device (struct dvb_adapter *adap,
  95. struct dvb_device **pdvbdev,
  96. const struct dvb_device *template,
  97. void *priv,
  98. int type);
  99. extern void dvb_unregister_device (struct dvb_device *dvbdev);
  100. extern int dvb_generic_open (struct inode *inode, struct file *file);
  101. extern int dvb_generic_release (struct inode *inode, struct file *file);
  102. extern long dvb_generic_ioctl (struct file *file,
  103. unsigned int cmd, unsigned long arg);
  104. /* we don't mess with video_usercopy() any more,
  105. we simply define out own dvb_usercopy(), which will hopefully become
  106. generic_usercopy() someday... */
  107. extern int dvb_usercopy(struct file *file, unsigned int cmd, unsigned long arg,
  108. int (*func)(struct file *file, unsigned int cmd, void *arg));
  109. /** generic DVB attach function. */
  110. #ifdef CONFIG_MEDIA_ATTACH
  111. #define dvb_attach(FUNCTION, ARGS...) ({ \
  112. void *__r = NULL; \
  113. typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
  114. if (__a) { \
  115. __r = (void *) __a(ARGS); \
  116. if (__r == NULL) \
  117. symbol_put(FUNCTION); \
  118. } else { \
  119. printk(KERN_ERR "DVB: Unable to find symbol "#FUNCTION"()\n"); \
  120. } \
  121. __r; \
  122. })
  123. #define dvb_detach(FUNC) symbol_put_addr(FUNC)
  124. #else
  125. #define dvb_attach(FUNCTION, ARGS...) ({ \
  126. FUNCTION(ARGS); \
  127. })
  128. #define dvb_detach(FUNC) {}
  129. #endif
  130. #endif /* #ifndef _DVBDEV_H_ */