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