v4l2-dev.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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. #include <linux/poll.h>
  13. #include <linux/fs.h>
  14. #include <linux/device.h>
  15. #include <linux/mutex.h>
  16. #include <linux/compiler.h> /* need __user */
  17. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  18. #include <linux/videodev.h>
  19. #else
  20. #include <linux/videodev2.h>
  21. #endif
  22. #include <linux/fs.h>
  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. /* Video standard functions */
  38. extern unsigned int v4l2_video_std_fps(struct v4l2_standard *vs);
  39. extern int v4l2_video_std_construct(struct v4l2_standard *vs,
  40. int id, char *name);
  41. /* prority handling */
  42. struct v4l2_prio_state {
  43. atomic_t prios[4];
  44. };
  45. int v4l2_prio_init(struct v4l2_prio_state *global);
  46. int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
  47. enum v4l2_priority new);
  48. int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
  49. int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local);
  50. enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
  51. int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local);
  52. /* names for fancy debug output */
  53. extern char *v4l2_field_names[];
  54. extern char *v4l2_type_names[];
  55. /* Compatibility layer interface -- v4l1-compat module */
  56. typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file,
  57. unsigned int cmd, void *arg);
  58. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  59. int v4l_compat_translate_ioctl(struct inode *inode, struct file *file,
  60. int cmd, void *arg, v4l2_kioctl driver_ioctl);
  61. #else
  62. #define v4l_compat_translate_ioctl(inode,file,cmd,arg,ioctl) -EINVAL
  63. #endif
  64. /* 32 Bits compatibility layer for 64 bits processors */
  65. extern long v4l_compat_ioctl32(struct file *file, unsigned int cmd,
  66. unsigned long arg);
  67. /*
  68. * Newer version of video_device, handled by videodev2.c
  69. * This version moves redundant code from video device code to
  70. * the common handler
  71. */
  72. struct v4l2_tvnorm {
  73. char *name;
  74. v4l2_std_id id;
  75. void *priv_data;
  76. };
  77. struct video_device
  78. {
  79. /* device ops */
  80. const struct file_operations *fops;
  81. /* device info */
  82. struct device *dev;
  83. char name[32];
  84. int type; /* v4l1 */
  85. int type2; /* v4l2 */
  86. int hardware;
  87. int minor;
  88. int debug; /* Activates debug level*/
  89. /* Video standard vars */
  90. int tvnormsize; /* Size of tvnorm array */
  91. v4l2_std_id current_norm; /* Current tvnorm */
  92. struct v4l2_tvnorm *tvnorms;
  93. /* callbacks */
  94. void (*release)(struct video_device *vfd);
  95. /* ioctl callbacks */
  96. /* VIDIOC_QUERYCAP handler */
  97. int (*vidioc_querycap)(struct file *file, void *fh, struct v4l2_capability *cap);
  98. /* Priority handling */
  99. int (*vidioc_g_priority) (struct file *file, void *fh,
  100. enum v4l2_priority *p);
  101. int (*vidioc_s_priority) (struct file *file, void *fh,
  102. enum v4l2_priority p);
  103. /* VIDIOC_ENUM_FMT handlers */
  104. int (*vidioc_enum_fmt_cap) (struct file *file, void *fh,
  105. struct v4l2_fmtdesc *f);
  106. int (*vidioc_enum_fmt_overlay) (struct file *file, void *fh,
  107. struct v4l2_fmtdesc *f);
  108. int (*vidioc_enum_fmt_vbi) (struct file *file, void *fh,
  109. struct v4l2_fmtdesc *f);
  110. int (*vidioc_enum_fmt_vbi_capture) (struct file *file, void *fh,
  111. struct v4l2_fmtdesc *f);
  112. int (*vidioc_enum_fmt_video_output)(struct file *file, void *fh,
  113. struct v4l2_fmtdesc *f);
  114. int (*vidioc_enum_fmt_vbi_output) (struct file *file, void *fh,
  115. struct v4l2_fmtdesc *f);
  116. int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh,
  117. struct v4l2_fmtdesc *f);
  118. /* VIDIOC_G_FMT handlers */
  119. int (*vidioc_g_fmt_cap) (struct file *file, void *fh,
  120. struct v4l2_format *f);
  121. int (*vidioc_g_fmt_overlay) (struct file *file, void *fh,
  122. struct v4l2_format *f);
  123. int (*vidioc_g_fmt_vbi) (struct file *file, void *fh,
  124. struct v4l2_format *f);
  125. int (*vidioc_g_fmt_vbi_output) (struct file *file, void *fh,
  126. struct v4l2_format *f);
  127. int (*vidioc_g_fmt_vbi_capture)(struct file *file, void *fh,
  128. struct v4l2_format *f);
  129. int (*vidioc_g_fmt_video_output)(struct file *file, void *fh,
  130. struct v4l2_format *f);
  131. int (*vidioc_g_fmt_type_private)(struct file *file, void *fh,
  132. struct v4l2_format *f);
  133. /* VIDIOC_S_FMT handlers */
  134. int (*vidioc_s_fmt_cap) (struct file *file, void *fh,
  135. struct v4l2_format *f);
  136. int (*vidioc_s_fmt_overlay) (struct file *file, void *fh,
  137. struct v4l2_format *f);
  138. int (*vidioc_s_fmt_vbi) (struct file *file, void *fh,
  139. struct v4l2_format *f);
  140. int (*vidioc_s_fmt_vbi_output) (struct file *file, void *fh,
  141. struct v4l2_format *f);
  142. int (*vidioc_s_fmt_vbi_capture)(struct file *file, void *fh,
  143. struct v4l2_format *f);
  144. int (*vidioc_s_fmt_video_output)(struct file *file, void *fh,
  145. struct v4l2_format *f);
  146. int (*vidioc_s_fmt_type_private)(struct file *file, void *fh,
  147. struct v4l2_format *f);
  148. /* VIDIOC_TRY_FMT handlers */
  149. int (*vidioc_try_fmt_cap) (struct file *file, void *fh,
  150. struct v4l2_format *f);
  151. int (*vidioc_try_fmt_overlay) (struct file *file, void *fh,
  152. struct v4l2_format *f);
  153. int (*vidioc_try_fmt_vbi) (struct file *file, void *fh,
  154. struct v4l2_format *f);
  155. int (*vidioc_try_fmt_vbi_output) (struct file *file, void *fh,
  156. struct v4l2_format *f);
  157. int (*vidioc_try_fmt_vbi_capture)(struct file *file, void *fh,
  158. struct v4l2_format *f);
  159. int (*vidioc_try_fmt_video_output)(struct file *file, void *fh,
  160. struct v4l2_format *f);
  161. int (*vidioc_try_fmt_type_private)(struct file *file, void *fh,
  162. struct v4l2_format *f);
  163. /* Buffer handlers */
  164. int (*vidioc_reqbufs) (struct file *file, void *fh, struct v4l2_requestbuffers *b);
  165. int (*vidioc_querybuf)(struct file *file, void *fh, struct v4l2_buffer *b);
  166. int (*vidioc_qbuf) (struct file *file, void *fh, struct v4l2_buffer *b);
  167. int (*vidioc_dqbuf) (struct file *file, void *fh, struct v4l2_buffer *b);
  168. int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i);
  169. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  170. /* buffer type is struct vidio_mbuf * */
  171. int (*vidiocgmbuf) (struct file *file, void *fh, struct video_mbuf *p);
  172. #endif
  173. int (*vidioc_g_fbuf) (struct file *file, void *fh,
  174. struct v4l2_framebuffer *a);
  175. int (*vidioc_s_fbuf) (struct file *file, void *fh,
  176. struct v4l2_framebuffer *a);
  177. /* Stream on/off */
  178. int (*vidioc_streamon) (struct file *file, void *fh, enum v4l2_buf_type i);
  179. int (*vidioc_streamoff)(struct file *file, void *fh, enum v4l2_buf_type i);
  180. /* Standard handling
  181. G_STD and ENUMSTD are handled by videodev.c
  182. */
  183. int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id a);
  184. int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a);
  185. /* Input handling */
  186. int (*vidioc_enum_input)(struct file *file, void *fh,
  187. struct v4l2_input *inp);
  188. int (*vidioc_g_input) (struct file *file, void *fh, unsigned int *i);
  189. int (*vidioc_s_input) (struct file *file, void *fh, unsigned int i);
  190. /* Output handling */
  191. int (*vidioc_enumoutput) (struct file *file, void *fh,
  192. struct v4l2_output *a);
  193. int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i);
  194. int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i);
  195. /* Control handling */
  196. int (*vidioc_queryctrl) (struct file *file, void *fh,
  197. struct v4l2_queryctrl *a);
  198. int (*vidioc_g_ctrl) (struct file *file, void *fh,
  199. struct v4l2_control *a);
  200. int (*vidioc_s_ctrl) (struct file *file, void *fh,
  201. struct v4l2_control *a);
  202. int (*vidioc_g_ext_ctrls) (struct file *file, void *fh,
  203. struct v4l2_ext_controls *a);
  204. int (*vidioc_s_ext_ctrls) (struct file *file, void *fh,
  205. struct v4l2_ext_controls *a);
  206. int (*vidioc_try_ext_ctrls) (struct file *file, void *fh,
  207. struct v4l2_ext_controls *a);
  208. int (*vidioc_querymenu) (struct file *file, void *fh,
  209. struct v4l2_querymenu *a);
  210. /* Audio ioctls */
  211. int (*vidioc_enumaudio) (struct file *file, void *fh,
  212. struct v4l2_audio *a);
  213. int (*vidioc_g_audio) (struct file *file, void *fh,
  214. struct v4l2_audio *a);
  215. int (*vidioc_s_audio) (struct file *file, void *fh,
  216. struct v4l2_audio *a);
  217. /* Audio out ioctls */
  218. int (*vidioc_enumaudout) (struct file *file, void *fh,
  219. struct v4l2_audioout *a);
  220. int (*vidioc_g_audout) (struct file *file, void *fh,
  221. struct v4l2_audioout *a);
  222. int (*vidioc_s_audout) (struct file *file, void *fh,
  223. struct v4l2_audioout *a);
  224. int (*vidioc_g_modulator) (struct file *file, void *fh,
  225. struct v4l2_modulator *a);
  226. int (*vidioc_s_modulator) (struct file *file, void *fh,
  227. struct v4l2_modulator *a);
  228. /* Crop ioctls */
  229. int (*vidioc_cropcap) (struct file *file, void *fh,
  230. struct v4l2_cropcap *a);
  231. int (*vidioc_g_crop) (struct file *file, void *fh,
  232. struct v4l2_crop *a);
  233. int (*vidioc_s_crop) (struct file *file, void *fh,
  234. struct v4l2_crop *a);
  235. /* Compression ioctls */
  236. int (*vidioc_g_mpegcomp) (struct file *file, void *fh,
  237. struct v4l2_mpeg_compression *a);
  238. int (*vidioc_s_mpegcomp) (struct file *file, void *fh,
  239. struct v4l2_mpeg_compression *a);
  240. int (*vidioc_g_jpegcomp) (struct file *file, void *fh,
  241. struct v4l2_jpegcompression *a);
  242. int (*vidioc_s_jpegcomp) (struct file *file, void *fh,
  243. struct v4l2_jpegcompression *a);
  244. /* Stream type-dependent parameter ioctls */
  245. int (*vidioc_g_parm) (struct file *file, void *fh,
  246. struct v4l2_streamparm *a);
  247. int (*vidioc_s_parm) (struct file *file, void *fh,
  248. struct v4l2_streamparm *a);
  249. /* Tuner ioctls */
  250. int (*vidioc_g_tuner) (struct file *file, void *fh,
  251. struct v4l2_tuner *a);
  252. int (*vidioc_s_tuner) (struct file *file, void *fh,
  253. struct v4l2_tuner *a);
  254. int (*vidioc_g_frequency) (struct file *file, void *fh,
  255. struct v4l2_frequency *a);
  256. int (*vidioc_s_frequency) (struct file *file, void *fh,
  257. struct v4l2_frequency *a);
  258. /* Sliced VBI cap */
  259. int (*vidioc_g_sliced_vbi_cap) (struct file *file, void *fh,
  260. struct v4l2_sliced_vbi_cap *a);
  261. /* Log status ioctl */
  262. int (*vidioc_log_status) (struct file *file, void *fh);
  263. #ifdef OBSOLETE_OWNER /* to be removed soon */
  264. /* obsolete -- fops->owner is used instead */
  265. struct module *owner;
  266. /* dev->driver_data will be used instead some day.
  267. * Use the video_{get|set}_drvdata() helper functions,
  268. * so the switch over will be transparent for you.
  269. * Or use {pci|usb}_{get|set}_drvdata() directly. */
  270. void *priv;
  271. #endif
  272. /* for videodev.c intenal usage -- please don't touch */
  273. int users; /* video_exclusive_{open|close} ... */
  274. struct mutex lock; /* ... helper function uses these */
  275. struct class_device class_dev; /* sysfs */
  276. };
  277. /* Version 2 functions */
  278. extern int video_register_device(struct video_device *vfd, int type, int nr);
  279. void video_unregister_device(struct video_device *);
  280. extern int video_ioctl2(struct inode *inode, struct file *file,
  281. unsigned int cmd, unsigned long arg);
  282. /* helper functions to alloc / release struct video_device, the
  283. later can be used for video_device->release() */
  284. struct video_device *video_device_alloc(void);
  285. void video_device_release(struct video_device *vfd);
  286. /* Include support for obsoleted stuff */
  287. extern int video_usercopy(struct inode *inode, struct file *file,
  288. unsigned int cmd, unsigned long arg,
  289. int (*func)(struct inode *inode, struct file *file,
  290. unsigned int cmd, void *arg));
  291. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  292. #include <linux/mm.h>
  293. extern struct video_device* video_devdata(struct file*);
  294. #define to_video_device(cd) container_of(cd, struct video_device, class_dev)
  295. static inline int __must_check
  296. video_device_create_file(struct video_device *vfd,
  297. struct class_device_attribute *attr)
  298. {
  299. int ret = class_device_create_file(&vfd->class_dev, attr);
  300. if (ret < 0)
  301. printk(KERN_WARNING "%s error: %d\n", __FUNCTION__, ret);
  302. return ret;
  303. }
  304. static inline void
  305. video_device_remove_file(struct video_device *vfd,
  306. struct class_device_attribute *attr)
  307. {
  308. class_device_remove_file(&vfd->class_dev, attr);
  309. }
  310. #endif /* CONFIG_VIDEO_V4L1_COMPAT */
  311. #ifdef OBSOLETE_OWNER /* to be removed soon */
  312. /* helper functions to access driver private data. */
  313. static inline void *video_get_drvdata(struct video_device *dev)
  314. {
  315. return dev->priv;
  316. }
  317. static inline void video_set_drvdata(struct video_device *dev, void *data)
  318. {
  319. dev->priv = data;
  320. }
  321. #endif
  322. extern int video_exclusive_open(struct inode *inode, struct file *file);
  323. extern int video_exclusive_release(struct inode *inode, struct file *file);
  324. #endif /* _V4L2_DEV_H */