videodev2.h
上传用户:ledjyj
上传日期:2014-08-27
资源大小:2639k
文件大小:37k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. #ifndef __LINUX_VIDEODEV2_H
  2. #define __LINUX_VIDEODEV2_H
  3. /*
  4.  * Video for Linux Two
  5.  *
  6.  * Header file for v4l or V4L2 drivers and applications, for
  7.  * Linux kernels 2.2.x or 2.4.x.
  8.  *
  9.  * See http://bytesex.org/v4l/ for API specs and other
  10.  * v4l2 documentation.
  11.  *
  12.  * Author: Bill Dirks <bdirks@pacbell.net>
  13.  * Justin Schoeman
  14.  * et al.
  15.  */
  16. #ifdef __KERNEL__
  17. #include <linux/time.h> /* need struct timeval */
  18. #include <linux/poll.h>
  19. #include <linux/device.h>
  20. #include <linux/mutex.h>
  21. #endif
  22. #include <linux/compiler.h> /* need __user */
  23. #define OBSOLETE_OWNER 1 /* It will be removed for 2.6.17 */
  24. #define HAVE_V4L2 1
  25. /*
  26.  * Common stuff for both V4L1 and V4L2
  27.  * Moved from videodev.h
  28.  */
  29. #define VIDEO_MAX_FRAME               32
  30. #define VID_TYPE_CAPTURE 1 /* Can capture */
  31. #define VID_TYPE_TUNER 2 /* Can tune */
  32. #define VID_TYPE_TELETEXT 4 /* Does teletext */
  33. #define VID_TYPE_OVERLAY 8 /* Overlay onto frame buffer */
  34. #define VID_TYPE_CHROMAKEY 16 /* Overlay by chromakey */
  35. #define VID_TYPE_CLIPPING 32 /* Can clip */
  36. #define VID_TYPE_FRAMERAM 64 /* Uses the frame buffer memory */
  37. #define VID_TYPE_SCALES 128 /* Scalable */
  38. #define VID_TYPE_MONOCHROME 256 /* Monochrome only */
  39. #define VID_TYPE_SUBCAPTURE 512 /* Can capture subareas of the image */
  40. #define VID_TYPE_MPEG_DECODER 1024 /* Can decode MPEG streams */
  41. #define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */
  42. #define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */
  43. #define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */
  44. #ifdef __KERNEL__
  45. /* Minor device allocation */
  46. #define MINOR_VFL_TYPE_GRABBER_MIN   0
  47. #define MINOR_VFL_TYPE_GRABBER_MAX  63
  48. #define MINOR_VFL_TYPE_RADIO_MIN    64
  49. #define MINOR_VFL_TYPE_RADIO_MAX   127
  50. #define MINOR_VFL_TYPE_VTX_MIN     192
  51. #define MINOR_VFL_TYPE_VTX_MAX     223
  52. #define MINOR_VFL_TYPE_VBI_MIN     224
  53. #define MINOR_VFL_TYPE_VBI_MAX     255
  54. #define VFL_TYPE_GRABBER 0
  55. #define VFL_TYPE_VBI 1
  56. #define VFL_TYPE_RADIO 2
  57. #define VFL_TYPE_VTX 3
  58. struct video_device
  59. {
  60. /* device info */
  61. struct device *dev;
  62. char name[32];
  63. int type;       /* v4l1 */
  64. int type2;      /* v4l2 */
  65. int hardware;
  66. int minor;
  67. /* device ops + callbacks */
  68. const struct file_operations *fops;
  69. void (*release)(struct video_device *vfd);
  70. #if OBSOLETE_OWNER /* to be removed in 2.6.15 */
  71. /* obsolete -- fops->owner is used instead */
  72. struct module *owner;
  73. /* dev->driver_data will be used instead some day.
  74.  * Use the video_{get|set}_drvdata() helper functions,
  75.  * so the switch over will be transparent for you.
  76.  * Or use {pci|usb}_{get|set}_drvdata() directly. */
  77. void *priv;
  78. #endif
  79. /* for videodev.c intenal usage -- please don't touch */
  80. int users;                     /* video_exclusive_{open|close} ... */
  81. struct mutex lock;             /* ... helper function uses these   */
  82. char devfs_name[64];           /* devfs */
  83. struct class_device class_dev; /* sysfs */
  84. };
  85. #define VIDEO_MAJOR 81
  86. extern int video_register_device(struct video_device *, int type, int nr);
  87. extern void video_unregister_device(struct video_device *);
  88. extern int video_usercopy(struct inode *inode, struct file *file,
  89.   unsigned int cmd, unsigned long arg,
  90.   int (*func)(struct inode *inode, struct file *file,
  91.       unsigned int cmd, void *arg));
  92. /* helper functions to alloc / release struct video_device, the
  93.    later can be used for video_device->release() */
  94. struct video_device *video_device_alloc(void);
  95. void video_device_release(struct video_device *vfd);
  96. #endif
  97. /*
  98.  * M I S C E L L A N E O U S
  99.  */
  100. /*  Four-character-code (FOURCC) */
  101. #define v4l2_fourcc(a,b,c,d)
  102. (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
  103. /*
  104.  * E N U M S
  105.  */
  106. enum v4l2_field {
  107. V4L2_FIELD_ANY        = 0, /* driver can choose from none,
  108.       top, bottom, interlaced
  109.       depending on whatever it thinks
  110.       is approximate ... */
  111. V4L2_FIELD_NONE       = 1, /* this device has no fields ... */
  112. V4L2_FIELD_TOP        = 2, /* top field only */
  113. V4L2_FIELD_BOTTOM     = 3, /* bottom field only */
  114. V4L2_FIELD_INTERLACED = 4, /* both fields interlaced */
  115. V4L2_FIELD_SEQ_TB     = 5, /* both fields sequential into one
  116.       buffer, top-bottom order */
  117. V4L2_FIELD_SEQ_BT     = 6, /* same as above + bottom-top order */
  118. V4L2_FIELD_ALTERNATE  = 7, /* both fields alternating into
  119.       separate buffers */
  120. };
  121. #define V4L2_FIELD_HAS_TOP(field)
  122. ((field) == V4L2_FIELD_TOP  ||
  123.  (field) == V4L2_FIELD_INTERLACED ||
  124.  (field) == V4L2_FIELD_SEQ_TB ||
  125.  (field) == V4L2_FIELD_SEQ_BT)
  126. #define V4L2_FIELD_HAS_BOTTOM(field)
  127. ((field) == V4L2_FIELD_BOTTOM  ||
  128.  (field) == V4L2_FIELD_INTERLACED ||
  129.  (field) == V4L2_FIELD_SEQ_TB ||
  130.  (field) == V4L2_FIELD_SEQ_BT)
  131. #define V4L2_FIELD_HAS_BOTH(field)
  132. ((field) == V4L2_FIELD_INTERLACED ||
  133.  (field) == V4L2_FIELD_SEQ_TB ||
  134.  (field) == V4L2_FIELD_SEQ_BT)
  135. enum v4l2_buf_type {
  136. V4L2_BUF_TYPE_VIDEO_CAPTURE      = 1,
  137. V4L2_BUF_TYPE_VIDEO_OUTPUT       = 2,
  138. V4L2_BUF_TYPE_VIDEO_OVERLAY      = 3,
  139. V4L2_BUF_TYPE_VBI_CAPTURE        = 4,
  140. V4L2_BUF_TYPE_VBI_OUTPUT         = 5,
  141. #if 1
  142. /* Experimental Sliced VBI */
  143. V4L2_BUF_TYPE_SLICED_VBI_CAPTURE = 6,
  144. V4L2_BUF_TYPE_SLICED_VBI_OUTPUT  = 7,
  145. #endif
  146. V4L2_BUF_TYPE_PRIVATE            = 0x80,
  147. };
  148. enum v4l2_ctrl_type {
  149. V4L2_CTRL_TYPE_INTEGER      = 1,
  150. V4L2_CTRL_TYPE_BOOLEAN      = 2,
  151. V4L2_CTRL_TYPE_MENU      = 3,
  152. V4L2_CTRL_TYPE_BUTTON      = 4,
  153. };
  154. enum v4l2_tuner_type {
  155. V4L2_TUNER_RADIO      = 1,
  156. V4L2_TUNER_ANALOG_TV      = 2,
  157. V4L2_TUNER_DIGITAL_TV      = 3,
  158. };
  159. enum v4l2_memory {
  160. V4L2_MEMORY_MMAP             = 1,
  161. V4L2_MEMORY_USERPTR          = 2,
  162. V4L2_MEMORY_OVERLAY          = 3,
  163. };
  164. /* see also http://vektor.theorem.ca/graphics/ycbcr/ */
  165. enum v4l2_colorspace {
  166. /* ITU-R 601 -- broadcast NTSC/PAL */
  167. V4L2_COLORSPACE_SMPTE170M     = 1,
  168. /* 1125-Line (US) HDTV */
  169. V4L2_COLORSPACE_SMPTE240M     = 2,
  170. /* HD and modern captures. */
  171. V4L2_COLORSPACE_REC709        = 3,
  172. /* broken BT878 extents (601, luma range 16-253 instead of 16-235) */
  173. V4L2_COLORSPACE_BT878         = 4,
  174. /* These should be useful.  Assume 601 extents. */
  175. V4L2_COLORSPACE_470_SYSTEM_M  = 5,
  176. V4L2_COLORSPACE_470_SYSTEM_BG = 6,
  177. /* I know there will be cameras that send this.  So, this is
  178.  * unspecified chromaticities and full 0-255 on each of the
  179.  * Y'CbCr components
  180.  */
  181. V4L2_COLORSPACE_JPEG          = 7,
  182. /* For RGB colourspaces, this is probably a good start. */
  183. V4L2_COLORSPACE_SRGB          = 8,
  184. };
  185. enum v4l2_priority {
  186. V4L2_PRIORITY_UNSET       = 0,  /* not initialized */
  187. V4L2_PRIORITY_BACKGROUND  = 1,
  188. V4L2_PRIORITY_INTERACTIVE = 2,
  189. V4L2_PRIORITY_RECORD      = 3,
  190. V4L2_PRIORITY_DEFAULT     = V4L2_PRIORITY_INTERACTIVE,
  191. };
  192. struct v4l2_rect {
  193. __s32   left;
  194. __s32   top;
  195. __s32   width;
  196. __s32   height;
  197. };
  198. struct v4l2_fract {
  199. __u32   numerator;
  200. __u32   denominator;
  201. };
  202. /*
  203.  * D R I V E R   C A P A B I L I T I E S
  204.  */
  205. struct v4l2_capability
  206. {
  207. __u8 driver[16]; /* i.e. "bttv" */
  208. __u8 card[32]; /* i.e. "Hauppauge WinTV" */
  209. __u8 bus_info[32]; /* "PCI:" + pci_name(pci_dev) */
  210. __u32   version;        /* should use KERNEL_VERSION() */
  211. __u32 capabilities; /* Device capabilities */
  212. __u32 reserved[4];
  213. };
  214. /* Values for 'capabilities' field */
  215. #define V4L2_CAP_VIDEO_CAPTURE 0x00000001  /* Is a video capture device */
  216. #define V4L2_CAP_VIDEO_OUTPUT 0x00000002  /* Is a video output device */
  217. #define V4L2_CAP_VIDEO_OVERLAY 0x00000004  /* Can do video overlay */
  218. #define V4L2_CAP_VBI_CAPTURE 0x00000010  /* Is a raw VBI capture device */
  219. #define V4L2_CAP_VBI_OUTPUT 0x00000020  /* Is a raw VBI output device */
  220. #if 1
  221. #define V4L2_CAP_SLICED_VBI_CAPTURE 0x00000040  /* Is a sliced VBI capture device */
  222. #define V4L2_CAP_SLICED_VBI_OUTPUT 0x00000080  /* Is a sliced VBI output device */
  223. #endif
  224. #define V4L2_CAP_RDS_CAPTURE 0x00000100  /* RDS data capture */
  225. #define V4L2_CAP_TUNER 0x00010000  /* has a tuner */
  226. #define V4L2_CAP_AUDIO 0x00020000  /* has audio support */
  227. #define V4L2_CAP_RADIO 0x00040000  /* is a radio device */
  228. #define V4L2_CAP_READWRITE              0x01000000  /* read/write systemcalls */
  229. #define V4L2_CAP_ASYNCIO                0x02000000  /* async I/O */
  230. #define V4L2_CAP_STREAMING              0x04000000  /* streaming I/O ioctls */
  231. /*
  232.  * V I D E O   I M A G E   F O R M A T
  233.  */
  234. struct v4l2_pix_format
  235. {
  236. __u32          width;
  237. __u32 height;
  238. __u32 pixelformat;
  239. enum v4l2_field   field;
  240. __u32             bytesperline; /* for padding, zero if unused */
  241. __u32           sizeimage;
  242. enum v4l2_colorspace colorspace;
  243. __u32 priv; /* private data, depends on pixelformat */
  244. };
  245. /*           Pixel format    FOURCC                  depth  Description   */
  246. #define V4L2_PIX_FMT_RGB332  v4l2_fourcc('R','G','B','1') /*  8  RGB-3-3-2     */
  247. #define V4L2_PIX_FMT_RGB555  v4l2_fourcc('R','G','B','O') /* 16  RGB-5-5-5     */
  248. #define V4L2_PIX_FMT_RGB565  v4l2_fourcc('R','G','B','P') /* 16  RGB-5-6-5     */
  249. #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R','G','B','Q') /* 16  RGB-5-5-5 BE  */
  250. #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R','G','B','R') /* 16  RGB-5-6-5 BE  */
  251. #define V4L2_PIX_FMT_BGR24   v4l2_fourcc('B','G','R','3') /* 24  BGR-8-8-8     */
  252. #define V4L2_PIX_FMT_RGB24   v4l2_fourcc('R','G','B','3') /* 24  RGB-8-8-8     */
  253. #define V4L2_PIX_FMT_BGR32   v4l2_fourcc('B','G','R','4') /* 32  BGR-8-8-8-8   */
  254. #define V4L2_PIX_FMT_RGB32   v4l2_fourcc('R','G','B','4') /* 32  RGB-8-8-8-8   */
  255. #define V4L2_PIX_FMT_GREY    v4l2_fourcc('G','R','E','Y') /*  8  Greyscale     */
  256. #define V4L2_PIX_FMT_YVU410  v4l2_fourcc('Y','V','U','9') /*  9  YVU 4:1:0     */
  257. #define V4L2_PIX_FMT_YVU420  v4l2_fourcc('Y','V','1','2') /* 12  YVU 4:2:0     */
  258. #define V4L2_PIX_FMT_YUYV    v4l2_fourcc('Y','U','Y','V') /* 16  YUV 4:2:2     */
  259. #define V4L2_PIX_FMT_UYVY    v4l2_fourcc('U','Y','V','Y') /* 16  YUV 4:2:2     */
  260. #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4','2','2','P') /* 16  YVU422 planar */
  261. #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4','1','1','P') /* 16  YVU411 planar */
  262. #define V4L2_PIX_FMT_Y41P    v4l2_fourcc('Y','4','1','P') /* 12  YUV 4:1:1     */
  263. /* two planes -- one Y, one Cr + Cb interleaved  */
  264. #define V4L2_PIX_FMT_NV12    v4l2_fourcc('N','V','1','2') /* 12  Y/CbCr 4:2:0  */
  265. #define V4L2_PIX_FMT_NV21    v4l2_fourcc('N','V','2','1') /* 12  Y/CrCb 4:2:0  */
  266. /*  The following formats are not defined in the V4L2 specification */
  267. #define V4L2_PIX_FMT_YUV410  v4l2_fourcc('Y','U','V','9') /*  9  YUV 4:1:0     */
  268. #define V4L2_PIX_FMT_YUV420  v4l2_fourcc('Y','U','1','2') /* 12  YUV 4:2:0     */
  269. #define V4L2_PIX_FMT_YYUV    v4l2_fourcc('Y','Y','U','V') /* 16  YUV 4:2:2     */
  270. #define V4L2_PIX_FMT_HI240   v4l2_fourcc('H','I','2','4') /*  8  8-bit color   */
  271. /* see http://www.siliconimaging.com/RGB%20Bayer.htm */
  272. #define V4L2_PIX_FMT_SBGGR8  v4l2_fourcc('B','A','8','1') /*  8  BGBG.. GRGR.. */
  273. /* compressed formats */
  274. #define V4L2_PIX_FMT_MJPEG    v4l2_fourcc('M','J','P','G') /* Motion-JPEG   */
  275. #define V4L2_PIX_FMT_JPEG     v4l2_fourcc('J','P','E','G') /* JFIF JPEG     */
  276. #define V4L2_PIX_FMT_DV       v4l2_fourcc('d','v','s','d') /* 1394          */
  277. #define V4L2_PIX_FMT_MPEG     v4l2_fourcc('M','P','E','G') /* MPEG          */
  278. /*  Vendor-specific formats   */
  279. #define V4L2_PIX_FMT_WNVA     v4l2_fourcc('W','N','V','A') /* Winnov hw compress */
  280. #define V4L2_PIX_FMT_SN9C10X  v4l2_fourcc('S','9','1','0') /* SN9C10x compression */
  281. #define V4L2_PIX_FMT_PWC1     v4l2_fourcc('P','W','C','1') /* pwc older webcam */
  282. #define V4L2_PIX_FMT_PWC2     v4l2_fourcc('P','W','C','2') /* pwc newer webcam */
  283. #define V4L2_PIX_FMT_ET61X251 v4l2_fourcc('E','6','2','5') /* ET61X251 compression */
  284. /*
  285.  * F O R M A T   E N U M E R A T I O N
  286.  */
  287. struct v4l2_fmtdesc
  288. {
  289. __u32     index;             /* Format number      */
  290. enum v4l2_buf_type  type;              /* buffer type        */
  291. __u32               flags;
  292. __u8     description[32];   /* Description string */
  293. __u32     pixelformat;       /* Format fourcc      */
  294. __u32     reserved[4];
  295. };
  296. #define V4L2_FMT_FLAG_COMPRESSED 0x0001
  297. /*
  298.  * T I M E C O D E
  299.  */
  300. struct v4l2_timecode
  301. {
  302. __u32 type;
  303. __u32 flags;
  304. __u8 frames;
  305. __u8 seconds;
  306. __u8 minutes;
  307. __u8 hours;
  308. __u8 userbits[4];
  309. };
  310. /*  Type  */
  311. #define V4L2_TC_TYPE_24FPS 1
  312. #define V4L2_TC_TYPE_25FPS 2
  313. #define V4L2_TC_TYPE_30FPS 3
  314. #define V4L2_TC_TYPE_50FPS 4
  315. #define V4L2_TC_TYPE_60FPS 5
  316. /*  Flags  */
  317. #define V4L2_TC_FLAG_DROPFRAME 0x0001 /* "drop-frame" mode */
  318. #define V4L2_TC_FLAG_COLORFRAME 0x0002
  319. #define V4L2_TC_USERBITS_field 0x000C
  320. #define V4L2_TC_USERBITS_USERDEFINED 0x0000
  321. #define V4L2_TC_USERBITS_8BITCHARS 0x0008
  322. /* The above is based on SMPTE timecodes */
  323. /*
  324.  * M P E G   C O M P R E S S I O N   P A R A M E T E R S
  325.  *
  326.  *  ### WARNING: this is still work-in-progress right now, most likely
  327.  *  ###          there will be some incompatible changes.
  328.  *
  329.  */
  330. enum v4l2_bitrate_mode {
  331. V4L2_BITRATE_NONE = 0, /* not specified */
  332. V4L2_BITRATE_CBR, /* constant bitrate */
  333. V4L2_BITRATE_VBR, /* variable bitrate */
  334. };
  335. struct v4l2_bitrate {
  336. /* rates are specified in kbit/sec */
  337. enum v4l2_bitrate_mode mode;
  338. __u32 min;
  339. __u32 target;  /* use this one for CBR */
  340. __u32 max;
  341. };
  342. enum v4l2_mpeg_streamtype {
  343. V4L2_MPEG_SS_1, /* MPEG-1 system stream */
  344. V4L2_MPEG_PS_2, /* MPEG-2 program stream */
  345. V4L2_MPEG_TS_2, /* MPEG-2 transport stream */
  346. V4L2_MPEG_PS_DVD,       /* MPEG-2 program stream with DVD header fixups */
  347. };
  348. enum v4l2_mpeg_audiotype {
  349. V4L2_MPEG_AU_2_I, /* MPEG-2 layer 1 */
  350. V4L2_MPEG_AU_2_II, /* MPEG-2 layer 2 */
  351. V4L2_MPEG_AU_2_III, /* MPEG-2 layer 3 */
  352. V4L2_MPEG_AC3, /* AC3 */
  353. V4L2_MPEG_LPCM, /* LPCM */
  354. };
  355. enum v4l2_mpeg_videotype {
  356. V4L2_MPEG_VI_1, /* MPEG-1 */
  357. V4L2_MPEG_VI_2, /* MPEG-2 */
  358. };
  359. enum v4l2_mpeg_aspectratio {
  360. V4L2_MPEG_ASPECT_SQUARE = 1,   /* square pixel */
  361. V4L2_MPEG_ASPECT_4_3    = 2,   /*  4 : 3       */
  362. V4L2_MPEG_ASPECT_16_9   = 3,   /* 16 : 9       */
  363. V4L2_MPEG_ASPECT_1_221  = 4,   /*  1 : 2,21    */
  364. };
  365. struct v4l2_mpeg_compression {
  366. /* general */
  367. enum v4l2_mpeg_streamtype st_type;
  368. struct v4l2_bitrate st_bitrate;
  369. /* transport streams */
  370. __u16 ts_pid_pmt;
  371. __u16 ts_pid_audio;
  372. __u16 ts_pid_video;
  373. __u16 ts_pid_pcr;
  374. /* program stream */
  375. __u16 ps_size;
  376. __u16 reserved_1;    /* align */
  377. /* audio */
  378. enum v4l2_mpeg_audiotype au_type;
  379. struct v4l2_bitrate au_bitrate;
  380. __u32 au_sample_rate;
  381. __u8                            au_pesid;
  382. __u8                            reserved_2[3]; /* align */
  383. /* video */
  384. enum v4l2_mpeg_videotype vi_type;
  385. enum v4l2_mpeg_aspectratio vi_aspect_ratio;
  386. struct v4l2_bitrate vi_bitrate;
  387. __u32 vi_frame_rate;
  388. __u16 vi_frames_per_gop;
  389. __u16 vi_bframes_count;
  390. __u8                            vi_pesid;
  391. __u8                            reserved_3[3]; /* align */
  392. /* misc flags */
  393. __u32                           closed_gops:1;
  394. __u32                           pulldown:1;
  395. __u32                           reserved_4:30; /* align */
  396. /* I don't expect the above being perfect yet ;) */
  397. __u32 reserved_5[8];
  398. };
  399. struct v4l2_jpegcompression
  400. {
  401. int quality;
  402. int  APPn;              /* Number of APP segment to be written,
  403.  * must be 0..15 */
  404. int  APP_len;           /* Length of data in JPEG APPn segment */
  405. char APP_data[60];      /* Data in the JPEG APPn segment. */
  406. int  COM_len;           /* Length of data in JPEG COM segment */
  407. char COM_data[60];      /* Data in JPEG COM segment */
  408. __u32 jpeg_markers;     /* Which markers should go into the JPEG
  409.  * output. Unless you exactly know what
  410.  * you do, leave them untouched.
  411.  * Inluding less markers will make the
  412.  * resulting code smaller, but there will
  413.  * be fewer aplications which can read it.
  414.  * The presence of the APP and COM marker
  415.  * is influenced by APP_len and COM_len
  416.  * ONLY, not by this property! */
  417. #define V4L2_JPEG_MARKER_DHT (1<<3)    /* Define Huffman Tables */
  418. #define V4L2_JPEG_MARKER_DQT (1<<4)    /* Define Quantization Tables */
  419. #define V4L2_JPEG_MARKER_DRI (1<<5)    /* Define Restart Interval */
  420. #define V4L2_JPEG_MARKER_COM (1<<6)    /* Comment segment */
  421. #define V4L2_JPEG_MARKER_APP (1<<7)    /* App segment, driver will
  422. * allways use APP0 */
  423. };
  424. /*
  425.  * M E M O R Y - M A P P I N G   B U F F E R S
  426.  */
  427. struct v4l2_requestbuffers
  428. {
  429. __u32 count;
  430. enum v4l2_buf_type      type;
  431. enum v4l2_memory        memory;
  432. __u32 reserved[2];
  433. };
  434. struct v4l2_buffer
  435. {
  436. __u32 index;
  437. enum v4l2_buf_type      type;
  438. __u32 bytesused;
  439. __u32 flags;
  440. enum v4l2_field field;
  441. struct timeval timestamp;
  442. struct v4l2_timecode timecode;
  443. __u32 sequence;
  444. /* memory location */
  445. enum v4l2_memory        memory;
  446. union {
  447. __u32           offset;
  448. unsigned long   userptr;
  449. } m;
  450. __u32 length;
  451. __u32 input;
  452. __u32 reserved;
  453. };
  454. /*  Flags for 'flags' field */
  455. #define V4L2_BUF_FLAG_MAPPED 0x0001  /* Buffer is mapped (flag) */
  456. #define V4L2_BUF_FLAG_QUEUED 0x0002 /* Buffer is queued for processing */
  457. #define V4L2_BUF_FLAG_DONE 0x0004 /* Buffer is ready */
  458. #define V4L2_BUF_FLAG_KEYFRAME 0x0008 /* Image is a keyframe (I-frame) */
  459. #define V4L2_BUF_FLAG_PFRAME 0x0010 /* Image is a P-frame */
  460. #define V4L2_BUF_FLAG_BFRAME 0x0020 /* Image is a B-frame */
  461. #define V4L2_BUF_FLAG_TIMECODE 0x0100 /* timecode field is valid */
  462. #define V4L2_BUF_FLAG_INPUT     0x0200  /* input field is valid */
  463. /*
  464.  * O V E R L A Y   P R E V I E W
  465.  */
  466. struct v4l2_framebuffer
  467. {
  468. __u32 capability;
  469. __u32 flags;
  470. /* FIXME: in theory we should pass something like PCI device + memory
  471.  * region + offset instead of some physical address */
  472. void*                   base;
  473. struct v4l2_pix_format fmt;
  474. };
  475. /*  Flags for the 'capability' field. Read only */
  476. #define V4L2_FBUF_CAP_EXTERNOVERLAY 0x0001
  477. #define V4L2_FBUF_CAP_CHROMAKEY 0x0002
  478. #define V4L2_FBUF_CAP_LIST_CLIPPING     0x0004
  479. #define V4L2_FBUF_CAP_BITMAP_CLIPPING 0x0008
  480. /*  Flags for the 'flags' field. */
  481. #define V4L2_FBUF_FLAG_PRIMARY 0x0001
  482. #define V4L2_FBUF_FLAG_OVERLAY 0x0002
  483. #define V4L2_FBUF_FLAG_CHROMAKEY 0x0004
  484. struct v4l2_clip
  485. {
  486. struct v4l2_rect        c;
  487. struct v4l2_clip __user *next;
  488. };
  489. struct v4l2_window
  490. {
  491. struct v4l2_rect        w;
  492. enum v4l2_field   field;
  493. __u32 chromakey;
  494. struct v4l2_clip __user *clips;
  495. __u32 clipcount;
  496. void __user *bitmap;
  497. };
  498. /*
  499.  * C A P T U R E   P A R A M E T E R S
  500.  */
  501. struct v4l2_captureparm
  502. {
  503. __u32    capability;   /*  Supported modes */
  504. __u32    capturemode;   /*  Current mode */
  505. struct v4l2_fract  timeperframe;  /*  Time per frame in .1us units */
  506. __u32    extendedmode;  /*  Driver-specific extensions */
  507. __u32              readbuffers;   /*  # of buffers for read */
  508. __u32    reserved[4];
  509. };
  510. /*  Flags for 'capability' and 'capturemode' fields */
  511. #define V4L2_MODE_HIGHQUALITY 0x0001 /*  High quality imaging mode */
  512. #define V4L2_CAP_TIMEPERFRAME 0x1000 /*  timeperframe field is supported */
  513. struct v4l2_outputparm
  514. {
  515. __u32    capability;  /*  Supported modes */
  516. __u32    outputmode;  /*  Current mode */
  517. struct v4l2_fract  timeperframe; /*  Time per frame in seconds */
  518. __u32    extendedmode; /*  Driver-specific extensions */
  519. __u32              writebuffers; /*  # of buffers for write */
  520. __u32    reserved[4];
  521. };
  522. /*
  523.  * I N P U T   I M A G E   C R O P P I N G
  524.  */
  525. struct v4l2_cropcap {
  526. enum v4l2_buf_type      type;
  527. struct v4l2_rect        bounds;
  528. struct v4l2_rect        defrect;
  529. struct v4l2_fract       pixelaspect;
  530. };
  531. struct v4l2_crop {
  532. enum v4l2_buf_type      type;
  533. struct v4l2_rect        c;
  534. };
  535. /*
  536.  *      A N A L O G   V I D E O   S T A N D A R D
  537.  */
  538. typedef __u64 v4l2_std_id;
  539. /* one bit for each */
  540. #define V4L2_STD_PAL_B          ((v4l2_std_id)0x00000001)
  541. #define V4L2_STD_PAL_B1         ((v4l2_std_id)0x00000002)
  542. #define V4L2_STD_PAL_G          ((v4l2_std_id)0x00000004)
  543. #define V4L2_STD_PAL_H          ((v4l2_std_id)0x00000008)
  544. #define V4L2_STD_PAL_I          ((v4l2_std_id)0x00000010)
  545. #define V4L2_STD_PAL_D          ((v4l2_std_id)0x00000020)
  546. #define V4L2_STD_PAL_D1         ((v4l2_std_id)0x00000040)
  547. #define V4L2_STD_PAL_K          ((v4l2_std_id)0x00000080)
  548. #define V4L2_STD_PAL_M          ((v4l2_std_id)0x00000100)
  549. #define V4L2_STD_PAL_N          ((v4l2_std_id)0x00000200)
  550. #define V4L2_STD_PAL_Nc         ((v4l2_std_id)0x00000400)
  551. #define V4L2_STD_PAL_60         ((v4l2_std_id)0x00000800)
  552. #define V4L2_STD_NTSC_M         ((v4l2_std_id)0x00001000)
  553. #define V4L2_STD_NTSC_M_JP      ((v4l2_std_id)0x00002000)
  554. #define V4L2_STD_NTSC_443       ((v4l2_std_id)0x00004000)
  555. #define V4L2_STD_NTSC_M_KR      ((v4l2_std_id)0x00008000)
  556. #define V4L2_STD_SECAM_B        ((v4l2_std_id)0x00010000)
  557. #define V4L2_STD_SECAM_D        ((v4l2_std_id)0x00020000)
  558. #define V4L2_STD_SECAM_G        ((v4l2_std_id)0x00040000)
  559. #define V4L2_STD_SECAM_H        ((v4l2_std_id)0x00080000)
  560. #define V4L2_STD_SECAM_K        ((v4l2_std_id)0x00100000)
  561. #define V4L2_STD_SECAM_K1       ((v4l2_std_id)0x00200000)
  562. #define V4L2_STD_SECAM_L        ((v4l2_std_id)0x00400000)
  563. #define V4L2_STD_SECAM_LC       ((v4l2_std_id)0x00800000)
  564. /* ATSC/HDTV */
  565. #define V4L2_STD_ATSC_8_VSB     ((v4l2_std_id)0x01000000)
  566. #define V4L2_STD_ATSC_16_VSB    ((v4l2_std_id)0x02000000)
  567. /* some merged standards */
  568. #define V4L2_STD_MN (V4L2_STD_PAL_M|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc|V4L2_STD_NTSC)
  569. #define V4L2_STD_B (V4L2_STD_PAL_B|V4L2_STD_PAL_B1|V4L2_STD_SECAM_B)
  570. #define V4L2_STD_GH (V4L2_STD_PAL_G|V4L2_STD_PAL_H|V4L2_STD_SECAM_G|V4L2_STD_SECAM_H)
  571. #define V4L2_STD_DK (V4L2_STD_PAL_DK|V4L2_STD_SECAM_DK)
  572. /* some common needed stuff */
  573. #define V4L2_STD_PAL_BG (V4L2_STD_PAL_B |
  574.  V4L2_STD_PAL_B1 |
  575.  V4L2_STD_PAL_G)
  576. #define V4L2_STD_PAL_DK (V4L2_STD_PAL_D |
  577.  V4L2_STD_PAL_D1 |
  578.  V4L2_STD_PAL_K)
  579. #define V4L2_STD_PAL (V4L2_STD_PAL_BG |
  580.  V4L2_STD_PAL_DK |
  581.  V4L2_STD_PAL_H |
  582.  V4L2_STD_PAL_I)
  583. #define V4L2_STD_NTSC           (V4L2_STD_NTSC_M |
  584.  V4L2_STD_NTSC_M_JP     |
  585.  V4L2_STD_NTSC_M_KR)
  586. #define V4L2_STD_SECAM_DK       (V4L2_STD_SECAM_D |
  587.  V4L2_STD_SECAM_K |
  588.  V4L2_STD_SECAM_K1)
  589. #define V4L2_STD_SECAM (V4L2_STD_SECAM_B |
  590.  V4L2_STD_SECAM_G |
  591.  V4L2_STD_SECAM_H |
  592.  V4L2_STD_SECAM_DK |
  593.  V4L2_STD_SECAM_L       |
  594.  V4L2_STD_SECAM_LC)
  595. #define V4L2_STD_525_60 (V4L2_STD_PAL_M |
  596.  V4L2_STD_PAL_60 |
  597.  V4L2_STD_NTSC |
  598.  V4L2_STD_NTSC_443)
  599. #define V4L2_STD_625_50 (V4L2_STD_PAL |
  600.  V4L2_STD_PAL_N |
  601.  V4L2_STD_PAL_Nc |
  602.  V4L2_STD_SECAM)
  603. #define V4L2_STD_ATSC           (V4L2_STD_ATSC_8_VSB    |
  604.  V4L2_STD_ATSC_16_VSB)
  605. #define V4L2_STD_UNKNOWN        0
  606. #define V4L2_STD_ALL            (V4L2_STD_525_60 |
  607.  V4L2_STD_625_50)
  608. struct v4l2_standard
  609. {
  610. __u32      index;
  611. v4l2_std_id          id;
  612. __u8      name[24];
  613. struct v4l2_fract    frameperiod; /* Frames, not fields */
  614. __u32      framelines;
  615. __u32      reserved[4];
  616. };
  617. /*
  618.  * V I D E O   I N P U T S
  619.  */
  620. struct v4l2_input
  621. {
  622. __u32      index; /*  Which input */
  623. __u8      name[32]; /*  Label */
  624. __u32      type; /*  Type of input */
  625. __u32      audioset; /*  Associated audios (bitfield) */
  626. __u32        tuner;             /*  Associated tuner */
  627. v4l2_std_id  std;
  628. __u32      status;
  629. __u32      reserved[4];
  630. };
  631. /*  Values for the 'type' field */
  632. #define V4L2_INPUT_TYPE_TUNER 1
  633. #define V4L2_INPUT_TYPE_CAMERA 2
  634. /* field 'status' - general */
  635. #define V4L2_IN_ST_NO_POWER    0x00000001  /* Attached device is off */
  636. #define V4L2_IN_ST_NO_SIGNAL   0x00000002
  637. #define V4L2_IN_ST_NO_COLOR    0x00000004
  638. /* field 'status' - analog */
  639. #define V4L2_IN_ST_NO_H_LOCK   0x00000100  /* No horizontal sync lock */
  640. #define V4L2_IN_ST_COLOR_KILL  0x00000200  /* Color killer is active */
  641. /* field 'status' - digital */
  642. #define V4L2_IN_ST_NO_SYNC     0x00010000  /* No synchronization lock */
  643. #define V4L2_IN_ST_NO_EQU      0x00020000  /* No equalizer lock */
  644. #define V4L2_IN_ST_NO_CARRIER  0x00040000  /* Carrier recovery failed */
  645. /* field 'status' - VCR and set-top box */
  646. #define V4L2_IN_ST_MACROVISION 0x01000000  /* Macrovision detected */
  647. #define V4L2_IN_ST_NO_ACCESS   0x02000000  /* Conditional access denied */
  648. #define V4L2_IN_ST_VTR         0x04000000  /* VTR time constant */
  649. /*
  650.  * V I D E O   O U T P U T S
  651.  */
  652. struct v4l2_output
  653. {
  654. __u32      index; /*  Which output */
  655. __u8      name[32]; /*  Label */
  656. __u32      type; /*  Type of output */
  657. __u32      audioset; /*  Associated audios (bitfield) */
  658. __u32      modulator;         /*  Associated modulator */
  659. v4l2_std_id  std;
  660. __u32      reserved[4];
  661. };
  662. /*  Values for the 'type' field */
  663. #define V4L2_OUTPUT_TYPE_MODULATOR 1
  664. #define V4L2_OUTPUT_TYPE_ANALOG 2
  665. #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY 3
  666. /*
  667.  * C O N T R O L S
  668.  */
  669. struct v4l2_control
  670. {
  671. __u32      id;
  672. __s32      value;
  673. };
  674. /*  Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
  675. struct v4l2_queryctrl
  676. {
  677. __u32      id;
  678. enum v4l2_ctrl_type  type;
  679. __u8      name[32]; /* Whatever */
  680. __s32      minimum; /* Note signedness */
  681. __s32      maximum;
  682. __s32      step;
  683. __s32      default_value;
  684. __u32                flags;
  685. __u32      reserved[2];
  686. };
  687. /*  Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
  688. struct v4l2_querymenu
  689. {
  690. __u32 id;
  691. __u32 index;
  692. __u8 name[32]; /* Whatever */
  693. __u32 reserved;
  694. };
  695. /*  Control flags  */
  696. #define V4L2_CTRL_FLAG_DISABLED 0x0001
  697. #define V4L2_CTRL_FLAG_GRABBED 0x0002
  698. /*  Control IDs defined by V4L2 */
  699. #define V4L2_CID_BASE 0x00980900
  700. /*  IDs reserved for driver specific controls */
  701. #define V4L2_CID_PRIVATE_BASE 0x08000000
  702. #define V4L2_CID_BRIGHTNESS (V4L2_CID_BASE+0)
  703. #define V4L2_CID_CONTRAST (V4L2_CID_BASE+1)
  704. #define V4L2_CID_SATURATION (V4L2_CID_BASE+2)
  705. #define V4L2_CID_HUE (V4L2_CID_BASE+3)
  706. #define V4L2_CID_AUDIO_VOLUME (V4L2_CID_BASE+5)
  707. #define V4L2_CID_AUDIO_BALANCE (V4L2_CID_BASE+6)
  708. #define V4L2_CID_AUDIO_BASS (V4L2_CID_BASE+7)
  709. #define V4L2_CID_AUDIO_TREBLE (V4L2_CID_BASE+8)
  710. #define V4L2_CID_AUDIO_MUTE (V4L2_CID_BASE+9)
  711. #define V4L2_CID_AUDIO_LOUDNESS (V4L2_CID_BASE+10)
  712. #define V4L2_CID_BLACK_LEVEL (V4L2_CID_BASE+11)
  713. #define V4L2_CID_AUTO_WHITE_BALANCE (V4L2_CID_BASE+12)
  714. #define V4L2_CID_DO_WHITE_BALANCE (V4L2_CID_BASE+13)
  715. #define V4L2_CID_RED_BALANCE (V4L2_CID_BASE+14)
  716. #define V4L2_CID_BLUE_BALANCE (V4L2_CID_BASE+15)
  717. #define V4L2_CID_GAMMA (V4L2_CID_BASE+16)
  718. #define V4L2_CID_WHITENESS (V4L2_CID_GAMMA) /* ? Not sure */
  719. #define V4L2_CID_EXPOSURE (V4L2_CID_BASE+17)
  720. #define V4L2_CID_AUTOGAIN (V4L2_CID_BASE+18)
  721. #define V4L2_CID_GAIN (V4L2_CID_BASE+19)
  722. #define V4L2_CID_HFLIP (V4L2_CID_BASE+20)
  723. #define V4L2_CID_VFLIP (V4L2_CID_BASE+21)
  724. #define V4L2_CID_HCENTER (V4L2_CID_BASE+22)
  725. #define V4L2_CID_VCENTER (V4L2_CID_BASE+23)
  726. #define V4L2_CID_LASTP1 (V4L2_CID_BASE+24) /* last CID + 1 */
  727. /*
  728.  * T U N I N G
  729.  */
  730. struct v4l2_tuner
  731. {
  732. __u32                   index;
  733. __u8 name[32];
  734. enum v4l2_tuner_type    type;
  735. __u32 capability;
  736. __u32 rangelow;
  737. __u32 rangehigh;
  738. __u32 rxsubchans;
  739. __u32 audmode;
  740. __s32 signal;
  741. __s32 afc;
  742. __u32 reserved[4];
  743. };
  744. struct v4l2_modulator
  745. {
  746. __u32 index;
  747. __u8 name[32];
  748. __u32 capability;
  749. __u32 rangelow;
  750. __u32 rangehigh;
  751. __u32 txsubchans;
  752. __u32 reserved[4];
  753. };
  754. /*  Flags for the 'capability' field */
  755. #define V4L2_TUNER_CAP_LOW 0x0001
  756. #define V4L2_TUNER_CAP_NORM 0x0002
  757. #define V4L2_TUNER_CAP_STEREO 0x0010
  758. #define V4L2_TUNER_CAP_LANG2 0x0020
  759. #define V4L2_TUNER_CAP_SAP 0x0020
  760. #define V4L2_TUNER_CAP_LANG1 0x0040
  761. /*  Flags for the 'rxsubchans' field */
  762. #define V4L2_TUNER_SUB_MONO 0x0001
  763. #define V4L2_TUNER_SUB_STEREO 0x0002
  764. #define V4L2_TUNER_SUB_LANG2 0x0004
  765. #define V4L2_TUNER_SUB_SAP 0x0004
  766. #define V4L2_TUNER_SUB_LANG1 0x0008
  767. /*  Values for the 'audmode' field */
  768. #define V4L2_TUNER_MODE_MONO 0x0000
  769. #define V4L2_TUNER_MODE_STEREO 0x0001
  770. #define V4L2_TUNER_MODE_LANG2 0x0002
  771. #define V4L2_TUNER_MODE_SAP 0x0002
  772. #define V4L2_TUNER_MODE_LANG1 0x0003
  773. #define V4L2_TUNER_MODE_LANG1_LANG2 0x0004
  774. struct v4l2_frequency
  775. {
  776. __u32       tuner;
  777. enum v4l2_tuner_type  type;
  778. __u32       frequency;
  779. __u32       reserved[8];
  780. };
  781. /*
  782.  * A U D I O
  783.  */
  784. struct v4l2_audio
  785. {
  786. __u32 index;
  787. __u8 name[32];
  788. __u32 capability;
  789. __u32 mode;
  790. __u32 reserved[2];
  791. };
  792. /*  Flags for the 'capability' field */
  793. #define V4L2_AUDCAP_STEREO 0x00001
  794. #define V4L2_AUDCAP_AVL 0x00002
  795. /*  Flags for the 'mode' field */
  796. #define V4L2_AUDMODE_AVL 0x00001
  797. struct v4l2_audioout
  798. {
  799. __u32 index;
  800. __u8 name[32];
  801. __u32 capability;
  802. __u32 mode;
  803. __u32 reserved[2];
  804. };
  805. /*
  806.  * D A T A   S E R V I C E S   ( V B I )
  807.  *
  808.  * Data services API by Michael Schimek
  809.  */
  810. /* Raw VBI */
  811. struct v4l2_vbi_format
  812. {
  813. __u32 sampling_rate; /* in 1 Hz */
  814. __u32 offset;
  815. __u32 samples_per_line;
  816. __u32 sample_format; /* V4L2_PIX_FMT_* */
  817. __s32 start[2];
  818. __u32 count[2];
  819. __u32 flags; /* V4L2_VBI_* */
  820. __u32 reserved[2]; /* must be zero */
  821. };
  822. /*  VBI flags  */
  823. #define V4L2_VBI_UNSYNC (1<< 0)
  824. #define V4L2_VBI_INTERLACED (1<< 1)
  825. #if 1
  826. /* Sliced VBI
  827.  *
  828.  *    This implements is a proposal V4L2 API to allow SLICED VBI
  829.  * required for some hardware encoders. It should change without
  830.  * notice in the definitive implementation.
  831.  */
  832. struct v4l2_sliced_vbi_format
  833. {
  834. __u16   service_set;
  835. /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field
  836.    service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field
  837.  (equals frame lines 313-336 for 625 line video
  838.   standards, 263-286 for 525 line standards) */
  839. __u16   service_lines[2][24];
  840. __u32   io_size;
  841. __u32   reserved[2];            /* must be zero */
  842. };
  843. /* Teletext World System Teletext
  844.    (WST), defined on ITU-R BT.653-2 */
  845. #define V4L2_SLICED_TELETEXT_B          (0x0001)
  846. /* Video Program System, defined on ETS 300 231*/
  847. #define V4L2_SLICED_VPS                 (0x0400)
  848. /* Closed Caption, defined on EIA-608 */
  849. #define V4L2_SLICED_CAPTION_525         (0x1000)
  850. /* Wide Screen System, defined on ITU-R BT1119.1 */
  851. #define V4L2_SLICED_WSS_625             (0x4000)
  852. #define V4L2_SLICED_VBI_525             (V4L2_SLICED_CAPTION_525)
  853. #define V4L2_SLICED_VBI_625             (V4L2_SLICED_TELETEXT_B | V4L2_SLICED_VPS | V4L2_SLICED_WSS_625)
  854. struct v4l2_sliced_vbi_cap
  855. {
  856. __u16   service_set;
  857. /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field
  858.    service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field
  859.  (equals frame lines 313-336 for 625 line video
  860.   standards, 263-286 for 525 line standards) */
  861. __u16   service_lines[2][24];
  862. __u32   reserved[4];    /* must be 0 */
  863. };
  864. struct v4l2_sliced_vbi_data
  865. {
  866. __u32   id;
  867. __u32   field;          /* 0: first field, 1: second field */
  868. __u32   line;           /* 1-23 */
  869. __u32   reserved;       /* must be 0 */
  870. __u8    data[48];
  871. };
  872. #endif
  873. /*
  874.  * A G G R E G A T E   S T R U C T U R E S
  875.  */
  876. /* Stream data format
  877.  */
  878. struct v4l2_format
  879. {
  880. enum v4l2_buf_type type;
  881. union
  882. {
  883. struct v4l2_pix_format pix;     // V4L2_BUF_TYPE_VIDEO_CAPTURE
  884. struct v4l2_window win;     // V4L2_BUF_TYPE_VIDEO_OVERLAY
  885. struct v4l2_vbi_format vbi;     // V4L2_BUF_TYPE_VBI_CAPTURE
  886. #if 1
  887. struct v4l2_sliced_vbi_format sliced;  // V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
  888. #endif
  889. __u8 raw_data[200];                   // user-defined
  890. } fmt;
  891. };
  892. /* Stream type-dependent parameters
  893.  */
  894. struct v4l2_streamparm
  895. {
  896. enum v4l2_buf_type type;
  897. union
  898. {
  899. struct v4l2_captureparm capture;
  900. struct v4l2_outputparm output;
  901. __u8 raw_data[200];  /* user-defined */
  902. } parm;
  903. };
  904. //Beck add for TO1 FM radio
  905. struct radio_scan
  906. {
  907.   __u16  channel;
  908.   __u16  direction; /* SEEK_UP or SEEK_DOWN */
  909.   __u16   scanok; /*TRUE(1) or FALSE(0)*/
  910. };
  911. #define SEEKUP    0
  912. #define SEEKDOWN  1
  913. struct RDS_DATA
  914. {
  915.  __u16 RDSA;
  916.  __u16 RDSB;
  917.  __u16 RDSC;
  918.  __u16 RDSD;
  919. };
  920. //Beck end
  921. /*
  922.  * I O C T L   C O D E S   F O R   V I D E O   D E V I C E S
  923.  *
  924.  */
  925. #define VIDIOC_QUERYCAP _IOR  ('V',  0, struct v4l2_capability)
  926. #define VIDIOC_RESERVED _IO   ('V',  1)
  927. #define VIDIOC_ENUM_FMT         _IOWR ('V',  2, struct v4l2_fmtdesc)
  928. #define VIDIOC_G_FMT _IOWR ('V',  4, struct v4l2_format)
  929. #define VIDIOC_S_FMT _IOWR ('V',  5, struct v4l2_format)
  930. #define VIDIOC_G_MPEGCOMP       _IOR  ('V',  6, struct v4l2_mpeg_compression)
  931. #define VIDIOC_S_MPEGCOMP      _IOW  ('V',  7, struct v4l2_mpeg_compression)
  932. #define VIDIOC_REQBUFS _IOWR ('V',  8, struct v4l2_requestbuffers)
  933. #define VIDIOC_QUERYBUF _IOWR ('V',  9, struct v4l2_buffer)
  934. #define VIDIOC_G_FBUF _IOR  ('V', 10, struct v4l2_framebuffer)
  935. #define VIDIOC_S_FBUF _IOW  ('V', 11, struct v4l2_framebuffer)
  936. #define VIDIOC_OVERLAY _IOW  ('V', 14, int)
  937. #define VIDIOC_QBUF _IOWR ('V', 15, struct v4l2_buffer)
  938. #define VIDIOC_DQBUF _IOWR ('V', 17, struct v4l2_buffer)
  939. #define VIDIOC_STREAMON _IOW  ('V', 18, int)
  940. #define VIDIOC_STREAMOFF _IOW  ('V', 19, int)
  941. #define VIDIOC_G_PARM _IOWR ('V', 21, struct v4l2_streamparm)
  942. #define VIDIOC_S_PARM _IOWR ('V', 22, struct v4l2_streamparm)
  943. #define VIDIOC_G_STD _IOR  ('V', 23, v4l2_std_id)
  944. #define VIDIOC_S_STD _IOW  ('V', 24, v4l2_std_id)
  945. #define VIDIOC_ENUMSTD _IOWR ('V', 25, struct v4l2_standard)
  946. #define VIDIOC_ENUMINPUT _IOWR ('V', 26, struct v4l2_input)
  947. #define VIDIOC_G_CTRL _IOWR ('V', 27, struct v4l2_control)
  948. #define VIDIOC_S_CTRL _IOWR ('V', 28, struct v4l2_control)
  949. #define VIDIOC_G_TUNER _IOWR ('V', 29, struct v4l2_tuner)
  950. #define VIDIOC_S_TUNER _IOW  ('V', 30, struct v4l2_tuner)
  951. #define VIDIOC_G_AUDIO _IOR  ('V', 33, struct v4l2_audio)
  952. #define VIDIOC_S_AUDIO _IOW  ('V', 34, struct v4l2_audio)
  953. #define VIDIOC_QUERYCTRL _IOWR ('V', 36, struct v4l2_queryctrl)
  954. #define VIDIOC_QUERYMENU _IOWR ('V', 37, struct v4l2_querymenu)
  955. #define VIDIOC_G_INPUT _IOR  ('V', 38, int)
  956. #define VIDIOC_S_INPUT _IOWR ('V', 39, int)
  957. #define VIDIOC_G_OUTPUT _IOR  ('V', 46, int)
  958. #define VIDIOC_S_OUTPUT _IOWR ('V', 47, int)
  959. #define VIDIOC_ENUMOUTPUT _IOWR ('V', 48, struct v4l2_output)
  960. #define VIDIOC_G_AUDOUT _IOR  ('V', 49, struct v4l2_audioout)
  961. #define VIDIOC_S_AUDOUT _IOW  ('V', 50, struct v4l2_audioout)
  962. #define VIDIOC_G_MODULATOR _IOWR ('V', 54, struct v4l2_modulator)
  963. #define VIDIOC_S_MODULATOR _IOW  ('V', 55, struct v4l2_modulator)
  964. #define VIDIOC_G_FREQUENCY _IOWR ('V', 56, struct v4l2_frequency)
  965. #define VIDIOC_S_FREQUENCY _IOW  ('V', 57, struct v4l2_frequency)
  966. #define VIDIOC_CROPCAP _IOWR ('V', 58, struct v4l2_cropcap)
  967. #define VIDIOC_G_CROP _IOWR ('V', 59, struct v4l2_crop)
  968. #define VIDIOC_S_CROP _IOW  ('V', 60, struct v4l2_crop)
  969. #define VIDIOC_G_JPEGCOMP _IOR  ('V', 61, struct v4l2_jpegcompression)
  970. #define VIDIOC_S_JPEGCOMP _IOW  ('V', 62, struct v4l2_jpegcompression)
  971. #define VIDIOC_QUERYSTD       _IOR  ('V', 63, v4l2_std_id)
  972. #define VIDIOC_TRY_FMT       _IOWR ('V', 64, struct v4l2_format)
  973. #define VIDIOC_ENUMAUDIO _IOWR ('V', 65, struct v4l2_audio)
  974. #define VIDIOC_ENUMAUDOUT _IOWR ('V', 66, struct v4l2_audioout)
  975. #define VIDIOC_G_PRIORITY       _IOR  ('V', 67, enum v4l2_priority)
  976. #define VIDIOC_S_PRIORITY       _IOW  ('V', 68, enum v4l2_priority)
  977. #if 1
  978. #define VIDIOC_G_SLICED_VBI_CAP _IOR  ('V', 69, struct v4l2_sliced_vbi_cap)
  979. #endif
  980. #define VIDIOC_LOG_STATUS       _IO   ('V', 70)
  981. /* for compatibility, will go away some day */
  982. #define VIDIOC_OVERLAY_OLD      _IOWR ('V', 14, int)
  983. #define VIDIOC_S_PARM_OLD       _IOW  ('V', 22, struct v4l2_streamparm)
  984. #define VIDIOC_S_CTRL_OLD       _IOW  ('V', 28, struct v4l2_control)
  985. #define VIDIOC_G_AUDIO_OLD      _IOWR ('V', 33, struct v4l2_audio)
  986. #define VIDIOC_G_AUDOUT_OLD     _IOWR ('V', 49, struct v4l2_audioout)
  987. #define VIDIOC_CROPCAP_OLD      _IOR  ('V', 58, struct v4l2_cropcap)
  988. #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */
  989. //Beck add for TO1 FM radio
  990. #define VIDIOC_RADIO_ON     _IOW('V', 192, int)
  991. #define VIDIOC_RADIO_OFF    _IOW('V', 193, int)
  992. #define RADIO_SCAN_NEXT    _IOWR ('V', 194, struct radio_scan)
  993. //Beck end
  994. #ifdef __KERNEL__
  995. /*
  996.  *
  997.  * V 4 L 2   D R I V E R   H E L P E R   A P I
  998.  *
  999.  * Some commonly needed functions for drivers (v4l2-common.o module)
  1000.  */
  1001. #include <linux/fs.h>
  1002. /*  Video standard functions  */
  1003. extern unsigned int v4l2_video_std_fps(struct v4l2_standard *vs);
  1004. extern int v4l2_video_std_construct(struct v4l2_standard *vs,
  1005.     int id, char *name);
  1006. /* prority handling */
  1007. struct v4l2_prio_state {
  1008. atomic_t prios[4];
  1009. };
  1010. int v4l2_prio_init(struct v4l2_prio_state *global);
  1011. int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
  1012.      enum v4l2_priority new);
  1013. int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
  1014. int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local);
  1015. enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
  1016. int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local);
  1017. /* names for fancy debug output */
  1018. extern char *v4l2_field_names[];
  1019. extern char *v4l2_type_names[];
  1020. /*  Compatibility layer interface  --  v4l1-compat module */
  1021. typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file,
  1022.    unsigned int cmd, void *arg);
  1023. #ifdef CONFIG_VIDEO_V4L1_COMPAT
  1024. int v4l_compat_translate_ioctl(struct inode *inode, struct file *file,
  1025.        int cmd, void *arg, v4l2_kioctl driver_ioctl);
  1026. #else
  1027. #define v4l_compat_translate_ioctl(inode,file,cmd,arg,ioctl) -EINVAL
  1028. #endif
  1029. /* 32 Bits compatibility layer for 64 bits processors */
  1030. extern long v4l_compat_ioctl32(struct file *file, unsigned int cmd,
  1031. unsigned long arg);
  1032. #endif /* __KERNEL__ */
  1033. #endif /* __LINUX_VIDEODEV2_H */
  1034. /*
  1035.  * Local variables:
  1036.  * c-basic-offset: 8
  1037.  * End:
  1038.  */