v4l2-dev.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. /*
  2. *
  3. * V 4 L 2 D R I V E R H E L P E R A P I
  4. *
  5. * Moved from videodev2.h
  6. *
  7. * Some commonly needed functions for drivers (v4l2-common.o module)
  8. */
  9. #ifndef _V4L2_DEV_H
  10. #define _V4L2_DEV_H
  11. #define OBSOLETE_OWNER 1 /* to be removed soon */
  12. #define OBSOLETE_DEVDATA 1 /* to be removed soon */
  13. #include <linux/poll.h>
  14. #include <linux/fs.h>
  15. #include <linux/device.h>
  16. #include <linux/mutex.h>
  17. #include <linux/compiler.h> /* need __user */
  18. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  19. #include <linux/videodev.h>
  20. #else
  21. #include <linux/videodev2.h>
  22. #endif
  23. #define VIDEO_MAJOR 81
  24. /* Minor device allocation */
  25. #define MINOR_VFL_TYPE_GRABBER_MIN 0
  26. #define MINOR_VFL_TYPE_GRABBER_MAX 63
  27. #define MINOR_VFL_TYPE_RADIO_MIN 64
  28. #define MINOR_VFL_TYPE_RADIO_MAX 127
  29. #define MINOR_VFL_TYPE_VTX_MIN 192
  30. #define MINOR_VFL_TYPE_VTX_MAX 223
  31. #define MINOR_VFL_TYPE_VBI_MIN 224
  32. #define MINOR_VFL_TYPE_VBI_MAX 255
  33. #define VFL_TYPE_GRABBER 0
  34. #define VFL_TYPE_VBI 1
  35. #define VFL_TYPE_RADIO 2
  36. #define VFL_TYPE_VTX 3
  37. /*
  38. * Newer version of video_device, handled by videodev2.c
  39. * This version moves redundant code from video device code to
  40. * the common handler
  41. */
  42. struct video_device
  43. {
  44. /* device ops */
  45. const struct file_operations *fops;
  46. /* sysfs */
  47. struct device dev; /* v4l device */
  48. struct device *parent; /* device parent */
  49. /* device info */
  50. char name[32];
  51. int type; /* v4l1 */
  52. int type2; /* v4l2 */
  53. int minor;
  54. /* attribute to diferentiate multiple indexs on one physical device */
  55. int index;
  56. int debug; /* Activates debug level*/
  57. /* Video standard vars */
  58. v4l2_std_id tvnorms; /* Supported tv norms */
  59. v4l2_std_id current_norm; /* Current tvnorm */
  60. /* callbacks */
  61. void (*release)(struct video_device *vfd);
  62. /* ioctl callbacks */
  63. /* VIDIOC_QUERYCAP handler */
  64. int (*vidioc_querycap)(struct file *file, void *fh, struct v4l2_capability *cap);
  65. /* Priority handling */
  66. int (*vidioc_g_priority) (struct file *file, void *fh,
  67. enum v4l2_priority *p);
  68. int (*vidioc_s_priority) (struct file *file, void *fh,
  69. enum v4l2_priority p);
  70. /* VIDIOC_ENUM_FMT handlers */
  71. int (*vidioc_enum_fmt_vid_cap) (struct file *file, void *fh,
  72. struct v4l2_fmtdesc *f);
  73. int (*vidioc_enum_fmt_vid_overlay) (struct file *file, void *fh,
  74. struct v4l2_fmtdesc *f);
  75. int (*vidioc_enum_fmt_vid_out) (struct file *file, void *fh,
  76. struct v4l2_fmtdesc *f);
  77. #if 1
  78. /* deprecated, will be removed in 2.6.28 */
  79. int (*vidioc_enum_fmt_vbi_cap) (struct file *file, void *fh,
  80. struct v4l2_fmtdesc *f);
  81. #endif
  82. int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh,
  83. struct v4l2_fmtdesc *f);
  84. /* VIDIOC_G_FMT handlers */
  85. int (*vidioc_g_fmt_vid_cap) (struct file *file, void *fh,
  86. struct v4l2_format *f);
  87. int (*vidioc_g_fmt_vid_overlay)(struct file *file, void *fh,
  88. struct v4l2_format *f);
  89. int (*vidioc_g_fmt_vid_out) (struct file *file, void *fh,
  90. struct v4l2_format *f);
  91. int (*vidioc_g_fmt_vid_out_overlay)(struct file *file, void *fh,
  92. struct v4l2_format *f);
  93. int (*vidioc_g_fmt_vbi_cap) (struct file *file, void *fh,
  94. struct v4l2_format *f);
  95. int (*vidioc_g_fmt_vbi_out) (struct file *file, void *fh,
  96. struct v4l2_format *f);
  97. int (*vidioc_g_fmt_sliced_vbi_cap)(struct file *file, void *fh,
  98. struct v4l2_format *f);
  99. int (*vidioc_g_fmt_sliced_vbi_out)(struct file *file, void *fh,
  100. struct v4l2_format *f);
  101. int (*vidioc_g_fmt_type_private)(struct file *file, void *fh,
  102. struct v4l2_format *f);
  103. /* VIDIOC_S_FMT handlers */
  104. int (*vidioc_s_fmt_vid_cap) (struct file *file, void *fh,
  105. struct v4l2_format *f);
  106. int (*vidioc_s_fmt_vid_overlay)(struct file *file, void *fh,
  107. struct v4l2_format *f);
  108. int (*vidioc_s_fmt_vid_out) (struct file *file, void *fh,
  109. struct v4l2_format *f);
  110. int (*vidioc_s_fmt_vid_out_overlay)(struct file *file, void *fh,
  111. struct v4l2_format *f);
  112. int (*vidioc_s_fmt_vbi_cap) (struct file *file, void *fh,
  113. struct v4l2_format *f);
  114. int (*vidioc_s_fmt_vbi_out) (struct file *file, void *fh,
  115. struct v4l2_format *f);
  116. int (*vidioc_s_fmt_sliced_vbi_cap)(struct file *file, void *fh,
  117. struct v4l2_format *f);
  118. int (*vidioc_s_fmt_sliced_vbi_out)(struct file *file, void *fh,
  119. struct v4l2_format *f);
  120. int (*vidioc_s_fmt_type_private)(struct file *file, void *fh,
  121. struct v4l2_format *f);
  122. /* VIDIOC_TRY_FMT handlers */
  123. int (*vidioc_try_fmt_vid_cap) (struct file *file, void *fh,
  124. struct v4l2_format *f);
  125. int (*vidioc_try_fmt_vid_overlay)(struct file *file, void *fh,
  126. struct v4l2_format *f);
  127. int (*vidioc_try_fmt_vid_out) (struct file *file, void *fh,
  128. struct v4l2_format *f);
  129. int (*vidioc_try_fmt_vid_out_overlay)(struct file *file, void *fh,
  130. struct v4l2_format *f);
  131. int (*vidioc_try_fmt_vbi_cap) (struct file *file, void *fh,
  132. struct v4l2_format *f);
  133. int (*vidioc_try_fmt_vbi_out) (struct file *file, void *fh,
  134. struct v4l2_format *f);
  135. int (*vidioc_try_fmt_sliced_vbi_cap)(struct file *file, void *fh,
  136. struct v4l2_format *f);
  137. int (*vidioc_try_fmt_sliced_vbi_out)(struct file *file, void *fh,
  138. struct v4l2_format *f);
  139. int (*vidioc_try_fmt_type_private)(struct file *file, void *fh,
  140. struct v4l2_format *f);
  141. /* Buffer handlers */
  142. int (*vidioc_reqbufs) (struct file *file, void *fh, struct v4l2_requestbuffers *b);
  143. int (*vidioc_querybuf)(struct file *file, void *fh, struct v4l2_buffer *b);
  144. int (*vidioc_qbuf) (struct file *file, void *fh, struct v4l2_buffer *b);
  145. int (*vidioc_dqbuf) (struct file *file, void *fh, struct v4l2_buffer *b);
  146. int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i);
  147. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  148. /* buffer type is struct vidio_mbuf * */
  149. int (*vidiocgmbuf) (struct file *file, void *fh, struct video_mbuf *p);
  150. #endif
  151. int (*vidioc_g_fbuf) (struct file *file, void *fh,
  152. struct v4l2_framebuffer *a);
  153. int (*vidioc_s_fbuf) (struct file *file, void *fh,
  154. struct v4l2_framebuffer *a);
  155. /* Stream on/off */
  156. int (*vidioc_streamon) (struct file *file, void *fh, enum v4l2_buf_type i);
  157. int (*vidioc_streamoff)(struct file *file, void *fh, enum v4l2_buf_type i);
  158. /* Standard handling
  159. ENUMSTD is handled by videodev.c
  160. */
  161. int (*vidioc_g_std) (struct file *file, void *fh, v4l2_std_id *norm);
  162. int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id *norm);
  163. int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a);
  164. /* Input handling */
  165. int (*vidioc_enum_input)(struct file *file, void *fh,
  166. struct v4l2_input *inp);
  167. int (*vidioc_g_input) (struct file *file, void *fh, unsigned int *i);
  168. int (*vidioc_s_input) (struct file *file, void *fh, unsigned int i);
  169. /* Output handling */
  170. int (*vidioc_enum_output) (struct file *file, void *fh,
  171. struct v4l2_output *a);
  172. int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i);
  173. int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i);
  174. /* Control handling */
  175. int (*vidioc_queryctrl) (struct file *file, void *fh,
  176. struct v4l2_queryctrl *a);
  177. int (*vidioc_g_ctrl) (struct file *file, void *fh,
  178. struct v4l2_control *a);
  179. int (*vidioc_s_ctrl) (struct file *file, void *fh,
  180. struct v4l2_control *a);
  181. int (*vidioc_g_ext_ctrls) (struct file *file, void *fh,
  182. struct v4l2_ext_controls *a);
  183. int (*vidioc_s_ext_ctrls) (struct file *file, void *fh,
  184. struct v4l2_ext_controls *a);
  185. int (*vidioc_try_ext_ctrls) (struct file *file, void *fh,
  186. struct v4l2_ext_controls *a);
  187. int (*vidioc_querymenu) (struct file *file, void *fh,
  188. struct v4l2_querymenu *a);
  189. /* Audio ioctls */
  190. int (*vidioc_enumaudio) (struct file *file, void *fh,
  191. struct v4l2_audio *a);
  192. int (*vidioc_g_audio) (struct file *file, void *fh,
  193. struct v4l2_audio *a);
  194. int (*vidioc_s_audio) (struct file *file, void *fh,
  195. struct v4l2_audio *a);
  196. /* Audio out ioctls */
  197. int (*vidioc_enumaudout) (struct file *file, void *fh,
  198. struct v4l2_audioout *a);
  199. int (*vidioc_g_audout) (struct file *file, void *fh,
  200. struct v4l2_audioout *a);
  201. int (*vidioc_s_audout) (struct file *file, void *fh,
  202. struct v4l2_audioout *a);
  203. int (*vidioc_g_modulator) (struct file *file, void *fh,
  204. struct v4l2_modulator *a);
  205. int (*vidioc_s_modulator) (struct file *file, void *fh,
  206. struct v4l2_modulator *a);
  207. /* Crop ioctls */
  208. int (*vidioc_cropcap) (struct file *file, void *fh,
  209. struct v4l2_cropcap *a);
  210. int (*vidioc_g_crop) (struct file *file, void *fh,
  211. struct v4l2_crop *a);
  212. int (*vidioc_s_crop) (struct file *file, void *fh,
  213. struct v4l2_crop *a);
  214. /* Compression ioctls */
  215. int (*vidioc_g_jpegcomp) (struct file *file, void *fh,
  216. struct v4l2_jpegcompression *a);
  217. int (*vidioc_s_jpegcomp) (struct file *file, void *fh,
  218. struct v4l2_jpegcompression *a);
  219. int (*vidioc_g_enc_index) (struct file *file, void *fh,
  220. struct v4l2_enc_idx *a);
  221. int (*vidioc_encoder_cmd) (struct file *file, void *fh,
  222. struct v4l2_encoder_cmd *a);
  223. int (*vidioc_try_encoder_cmd) (struct file *file, void *fh,
  224. struct v4l2_encoder_cmd *a);
  225. /* Stream type-dependent parameter ioctls */
  226. int (*vidioc_g_parm) (struct file *file, void *fh,
  227. struct v4l2_streamparm *a);
  228. int (*vidioc_s_parm) (struct file *file, void *fh,
  229. struct v4l2_streamparm *a);
  230. /* Tuner ioctls */
  231. int (*vidioc_g_tuner) (struct file *file, void *fh,
  232. struct v4l2_tuner *a);
  233. int (*vidioc_s_tuner) (struct file *file, void *fh,
  234. struct v4l2_tuner *a);
  235. int (*vidioc_g_frequency) (struct file *file, void *fh,
  236. struct v4l2_frequency *a);
  237. int (*vidioc_s_frequency) (struct file *file, void *fh,
  238. struct v4l2_frequency *a);
  239. /* Sliced VBI cap */
  240. int (*vidioc_g_sliced_vbi_cap) (struct file *file, void *fh,
  241. struct v4l2_sliced_vbi_cap *a);
  242. /* Log status ioctl */
  243. int (*vidioc_log_status) (struct file *file, void *fh);
  244. int (*vidioc_s_hw_freq_seek) (struct file *file, void *fh,
  245. struct v4l2_hw_freq_seek *a);
  246. /* Debugging ioctls */
  247. #ifdef CONFIG_VIDEO_ADV_DEBUG
  248. int (*vidioc_g_register) (struct file *file, void *fh,
  249. struct v4l2_register *reg);
  250. int (*vidioc_s_register) (struct file *file, void *fh,
  251. struct v4l2_register *reg);
  252. #endif
  253. int (*vidioc_g_chip_ident) (struct file *file, void *fh,
  254. struct v4l2_chip_ident *chip);
  255. /* For other private ioctls */
  256. int (*vidioc_default) (struct file *file, void *fh,
  257. int cmd, void *arg);
  258. #ifdef OBSOLETE_OWNER /* to be removed soon */
  259. /* obsolete -- fops->owner is used instead */
  260. struct module *owner;
  261. /* dev->driver_data will be used instead some day.
  262. * Use the video_{get|set}_drvdata() helper functions,
  263. * so the switch over will be transparent for you.
  264. * Or use {pci|usb}_{get|set}_drvdata() directly. */
  265. void *priv;
  266. #endif
  267. /* for videodev.c intenal usage -- please don't touch */
  268. int users; /* video_exclusive_{open|close} ... */
  269. struct mutex lock; /* ... helper function uses these */
  270. };
  271. /* Class-dev to video-device */
  272. #define to_video_device(cd) container_of(cd, struct video_device, dev)
  273. /* Version 2 functions */
  274. extern int video_register_device(struct video_device *vfd, int type, int nr);
  275. int video_register_device_index(struct video_device *vfd, int type, int nr,
  276. int index);
  277. void video_unregister_device(struct video_device *);
  278. /* helper functions to alloc / release struct video_device, the
  279. later can be used for video_device->release() */
  280. struct video_device *video_device_alloc(void);
  281. void video_device_release(struct video_device *vfd);
  282. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  283. #include <linux/mm.h>
  284. static inline int __must_check
  285. video_device_create_file(struct video_device *vfd,
  286. struct device_attribute *attr)
  287. {
  288. int ret = device_create_file(&vfd->dev, attr);
  289. if (ret < 0)
  290. printk(KERN_WARNING "%s error: %d\n", __func__, ret);
  291. return ret;
  292. }
  293. static inline void
  294. video_device_remove_file(struct video_device *vfd,
  295. struct device_attribute *attr)
  296. {
  297. device_remove_file(&vfd->dev, attr);
  298. }
  299. #endif /* CONFIG_VIDEO_V4L1_COMPAT */
  300. #ifdef OBSOLETE_OWNER /* to be removed soon */
  301. /* helper functions to access driver private data. */
  302. static inline void *video_get_drvdata(struct video_device *dev)
  303. {
  304. return dev->priv;
  305. }
  306. static inline void video_set_drvdata(struct video_device *dev, void *data)
  307. {
  308. dev->priv = data;
  309. }
  310. #endif
  311. #ifdef OBSOLETE_DEVDATA /* to be removed soon */
  312. /* Obsolete stuff - Still needed for radio devices and obsolete drivers */
  313. extern struct video_device* video_devdata(struct file*);
  314. extern int video_exclusive_open(struct inode *inode, struct file *file);
  315. extern int video_exclusive_release(struct inode *inode, struct file *file);
  316. #endif
  317. #endif /* _V4L2_DEV_H */