v4l2-dev.h 13 KB

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