vserver 1.9.5.x5
[linux-2.6.git] / include / linux / videodev2.h
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 #endif
19 #include <linux/compiler.h> /* need __user */
20
21 /*
22  *      M I S C E L L A N E O U S
23  */
24
25 /*  Four-character-code (FOURCC) */
26 #define v4l2_fourcc(a,b,c,d)\
27         (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24))
28
29 /*
30  *      E N U M S
31  */
32 enum v4l2_field {
33         V4L2_FIELD_ANY        = 0, /* driver can choose from none,
34                                       top, bottom, interlaced
35                                       depending on whatever it thinks
36                                       is approximate ... */
37         V4L2_FIELD_NONE       = 1, /* this device has no fields ... */
38         V4L2_FIELD_TOP        = 2, /* top field only */
39         V4L2_FIELD_BOTTOM     = 3, /* bottom field only */
40         V4L2_FIELD_INTERLACED = 4, /* both fields interlaced */
41         V4L2_FIELD_SEQ_TB     = 5, /* both fields sequential into one
42                                       buffer, top-bottom order */
43         V4L2_FIELD_SEQ_BT     = 6, /* same as above + bottom-top order */
44         V4L2_FIELD_ALTERNATE  = 7, /* both fields alternating into
45                                       separate buffers */
46 };
47 #define V4L2_FIELD_HAS_TOP(field)       \
48         ((field) == V4L2_FIELD_TOP      ||\
49          (field) == V4L2_FIELD_INTERLACED ||\
50          (field) == V4L2_FIELD_SEQ_TB   ||\
51          (field) == V4L2_FIELD_SEQ_BT)
52 #define V4L2_FIELD_HAS_BOTTOM(field)    \
53         ((field) == V4L2_FIELD_BOTTOM   ||\
54          (field) == V4L2_FIELD_INTERLACED ||\
55          (field) == V4L2_FIELD_SEQ_TB   ||\
56          (field) == V4L2_FIELD_SEQ_BT)
57 #define V4L2_FIELD_HAS_BOTH(field)      \
58         ((field) == V4L2_FIELD_INTERLACED ||\
59          (field) == V4L2_FIELD_SEQ_TB   ||\
60          (field) == V4L2_FIELD_SEQ_BT)
61
62 enum v4l2_buf_type {
63         V4L2_BUF_TYPE_VIDEO_CAPTURE  = 1,
64         V4L2_BUF_TYPE_VIDEO_OUTPUT   = 2,
65         V4L2_BUF_TYPE_VIDEO_OVERLAY  = 3,
66         V4L2_BUF_TYPE_VBI_CAPTURE    = 4,
67         V4L2_BUF_TYPE_VBI_OUTPUT     = 5,
68         V4L2_BUF_TYPE_PRIVATE        = 0x80,
69 };
70
71 enum v4l2_ctrl_type {
72         V4L2_CTRL_TYPE_INTEGER       = 1,
73         V4L2_CTRL_TYPE_BOOLEAN       = 2,
74         V4L2_CTRL_TYPE_MENU          = 3,
75         V4L2_CTRL_TYPE_BUTTON        = 4,
76 };
77
78 enum v4l2_tuner_type {
79         V4L2_TUNER_RADIO             = 1,
80         V4L2_TUNER_ANALOG_TV         = 2,
81         V4L2_TUNER_DIGITAL_TV        = 3,
82 };
83
84 enum v4l2_memory {
85         V4L2_MEMORY_MMAP             = 1,
86         V4L2_MEMORY_USERPTR          = 2,
87         V4L2_MEMORY_OVERLAY          = 3,
88 };
89
90 /* see also http://vektor.theorem.ca/graphics/ycbcr/ */
91 enum v4l2_colorspace {
92         /* ITU-R 601 -- broadcast NTSC/PAL */
93         V4L2_COLORSPACE_SMPTE170M     = 1,
94
95         /* 1125-Line (US) HDTV */
96         V4L2_COLORSPACE_SMPTE240M     = 2,
97
98         /* HD and modern captures. */
99         V4L2_COLORSPACE_REC709        = 3,
100
101         /* broken BT878 extents (601, luma range 16-253 instead of 16-235) */
102         V4L2_COLORSPACE_BT878         = 4,
103
104         /* These should be useful.  Assume 601 extents. */
105         V4L2_COLORSPACE_470_SYSTEM_M  = 5,
106         V4L2_COLORSPACE_470_SYSTEM_BG = 6,
107
108         /* I know there will be cameras that send this.  So, this is
109          * unspecified chromaticities and full 0-255 on each of the
110          * Y'CbCr components
111          */
112         V4L2_COLORSPACE_JPEG          = 7,
113
114         /* For RGB colourspaces, this is probably a good start. */
115         V4L2_COLORSPACE_SRGB          = 8,
116 };
117
118 enum v4l2_priority {
119         V4L2_PRIORITY_UNSET       = 0,  /* not initialized */
120         V4L2_PRIORITY_BACKGROUND  = 1,
121         V4L2_PRIORITY_INTERACTIVE = 2,
122         V4L2_PRIORITY_RECORD      = 3,
123         V4L2_PRIORITY_DEFAULT     = V4L2_PRIORITY_INTERACTIVE,
124 };
125
126 struct v4l2_rect {
127         __s32   left;
128         __s32   top;
129         __s32   width;
130         __s32   height;
131 };
132
133 struct v4l2_fract {
134         __u32   numerator;
135         __u32   denominator;
136 };
137
138 /*
139  *      D R I V E R   C A P A B I L I T I E S
140  */
141 struct v4l2_capability
142 {
143         __u8    driver[16];     /* i.e. "bttv" */
144         __u8    card[32];       /* i.e. "Hauppauge WinTV" */
145         __u8    bus_info[32];   /* "PCI:" + pci_name(pci_dev) */
146         __u32   version;        /* should use KERNEL_VERSION() */
147         __u32   capabilities;   /* Device capabilities */
148         __u32   reserved[4];
149 };
150
151 /* Values for 'capabilities' field */
152 #define V4L2_CAP_VIDEO_CAPTURE  0x00000001  /* Is a video capture device */
153 #define V4L2_CAP_VIDEO_OUTPUT   0x00000002  /* Is a video output device */
154 #define V4L2_CAP_VIDEO_OVERLAY  0x00000004  /* Can do video overlay */
155 #define V4L2_CAP_VBI_CAPTURE    0x00000010  /* Is a VBI capture device */
156 #define V4L2_CAP_VBI_OUTPUT     0x00000020  /* Is a VBI output device */
157 #define V4L2_CAP_RDS_CAPTURE    0x00000100  /* RDS data capture */
158
159 #define V4L2_CAP_TUNER          0x00010000  /* has a tuner */
160 #define V4L2_CAP_AUDIO          0x00020000  /* has audio support */
161 #define V4L2_CAP_RADIO          0x00040000  /* is a radio device */
162
163 #define V4L2_CAP_READWRITE      0x01000000  /* read/write systemcalls */
164 #define V4L2_CAP_ASYNCIO        0x02000000  /* async I/O */
165 #define V4L2_CAP_STREAMING      0x04000000  /* streaming I/O ioctls */
166
167 /*
168  *      V I D E O   I M A G E   F O R M A T
169  */
170
171 struct v4l2_pix_format
172 {
173         __u32                   width;
174         __u32                   height;
175         __u32                   pixelformat;
176         enum v4l2_field         field;
177         __u32                   bytesperline;   /* for padding, zero if unused */
178         __u32                   sizeimage;
179         enum v4l2_colorspace    colorspace;
180         __u32                   priv;           /* private data, depends on pixelformat */
181 };
182
183 /*           Pixel format    FOURCC                  depth  Description   */
184 #define V4L2_PIX_FMT_RGB332  v4l2_fourcc('R','G','B','1') /*  8  RGB-3-3-2     */
185 #define V4L2_PIX_FMT_RGB555  v4l2_fourcc('R','G','B','O') /* 16  RGB-5-5-5     */
186 #define V4L2_PIX_FMT_RGB565  v4l2_fourcc('R','G','B','P') /* 16  RGB-5-6-5     */
187 #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R','G','B','Q') /* 16  RGB-5-5-5 BE  */
188 #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R','G','B','R') /* 16  RGB-5-6-5 BE  */
189 #define V4L2_PIX_FMT_BGR24   v4l2_fourcc('B','G','R','3') /* 24  BGR-8-8-8     */
190 #define V4L2_PIX_FMT_RGB24   v4l2_fourcc('R','G','B','3') /* 24  RGB-8-8-8     */
191 #define V4L2_PIX_FMT_BGR32   v4l2_fourcc('B','G','R','4') /* 32  BGR-8-8-8-8   */
192 #define V4L2_PIX_FMT_RGB32   v4l2_fourcc('R','G','B','4') /* 32  RGB-8-8-8-8   */
193 #define V4L2_PIX_FMT_GREY    v4l2_fourcc('G','R','E','Y') /*  8  Greyscale     */
194 #define V4L2_PIX_FMT_YVU410  v4l2_fourcc('Y','V','U','9') /*  9  YVU 4:1:0     */
195 #define V4L2_PIX_FMT_YVU420  v4l2_fourcc('Y','V','1','2') /* 12  YVU 4:2:0     */
196 #define V4L2_PIX_FMT_YUYV    v4l2_fourcc('Y','U','Y','V') /* 16  YUV 4:2:2     */
197 #define V4L2_PIX_FMT_UYVY    v4l2_fourcc('U','Y','V','Y') /* 16  YUV 4:2:2     */
198 #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4','2','2','P') /* 16  YVU422 planar */
199 #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4','1','1','P') /* 16  YVU411 planar */
200 #define V4L2_PIX_FMT_Y41P    v4l2_fourcc('Y','4','1','P') /* 12  YUV 4:1:1     */
201
202 /* two planes -- one Y, one Cr + Cb interleaved  */
203 #define V4L2_PIX_FMT_NV12    v4l2_fourcc('N','V','1','2') /* 12  Y/CbCr 4:2:0  */
204 #define V4L2_PIX_FMT_NV21    v4l2_fourcc('N','V','2','1') /* 12  Y/CrCb 4:2:0  */
205
206 /*  The following formats are not defined in the V4L2 specification */
207 #define V4L2_PIX_FMT_YUV410  v4l2_fourcc('Y','U','V','9') /*  9  YUV 4:1:0     */
208 #define V4L2_PIX_FMT_YUV420  v4l2_fourcc('Y','U','1','2') /* 12  YUV 4:2:0     */
209 #define V4L2_PIX_FMT_YYUV    v4l2_fourcc('Y','Y','U','V') /* 16  YUV 4:2:2     */
210 #define V4L2_PIX_FMT_HI240   v4l2_fourcc('H','I','2','4') /*  8  8-bit color   */
211
212 /* see http://www.siliconimaging.com/RGB%20Bayer.htm */
213 #define V4L2_PIX_FMT_SBGGR8  v4l2_fourcc('B','A','8','1') /*  8  BGBG.. GRGR.. */
214
215 /* compressed formats */
216 #define V4L2_PIX_FMT_MJPEG    v4l2_fourcc('M','J','P','G') /* Motion-JPEG   */
217 #define V4L2_PIX_FMT_JPEG     v4l2_fourcc('J','P','E','G') /* JFIF JPEG     */
218 #define V4L2_PIX_FMT_DV       v4l2_fourcc('d','v','s','d') /* 1394          */
219 #define V4L2_PIX_FMT_MPEG     v4l2_fourcc('M','P','E','G') /* MPEG          */
220
221 /*  Vendor-specific formats   */
222 #define V4L2_PIX_FMT_WNVA     v4l2_fourcc('W','N','V','A') /* Winnov hw compress */
223 #define V4L2_PIX_FMT_SN9C10X  v4l2_fourcc('S','9','1','0') /* SN9C10x compression */
224
225 /*
226  *      F O R M A T   E N U M E R A T I O N
227  */
228 struct v4l2_fmtdesc
229 {
230         __u32               index;             /* Format number      */
231         enum v4l2_buf_type  type;              /* buffer type        */
232         __u32               flags;
233         __u8                description[32];   /* Description string */
234         __u32               pixelformat;       /* Format fourcc      */
235         __u32               reserved[4];
236 };
237
238 #define V4L2_FMT_FLAG_COMPRESSED 0x0001
239
240
241 /*
242  *      T I M E C O D E
243  */
244 struct v4l2_timecode
245 {
246         __u32   type;
247         __u32   flags;
248         __u8    frames;
249         __u8    seconds;
250         __u8    minutes;
251         __u8    hours;
252         __u8    userbits[4];
253 };
254
255 /*  Type  */
256 #define V4L2_TC_TYPE_24FPS              1
257 #define V4L2_TC_TYPE_25FPS              2
258 #define V4L2_TC_TYPE_30FPS              3
259 #define V4L2_TC_TYPE_50FPS              4
260 #define V4L2_TC_TYPE_60FPS              5
261
262 /*  Flags  */
263 #define V4L2_TC_FLAG_DROPFRAME          0x0001 /* "drop-frame" mode */
264 #define V4L2_TC_FLAG_COLORFRAME         0x0002
265 #define V4L2_TC_USERBITS_field          0x000C
266 #define V4L2_TC_USERBITS_USERDEFINED    0x0000
267 #define V4L2_TC_USERBITS_8BITCHARS      0x0008
268 /* The above is based on SMPTE timecodes */
269
270
271 /*
272  *      C O M P R E S S I O N   P A R A M E T E R S
273  */
274 #if 0
275 /* ### generic compression settings don't work, there is too much
276  * ### codec-specific stuff.  Maybe reuse that for MPEG codec settings
277  * ### later ... */
278 struct v4l2_compression
279 {
280         __u32   quality;
281         __u32   keyframerate;
282         __u32   pframerate;
283         __u32   reserved[5];
284
285 /*  what we'll need for MPEG, extracted from some postings on
286     the v4l list (Gert Vervoort, PlasmaJohn).
287
288 system stream:
289   - type: elementary stream(ES), packatised elementary stream(s) (PES)
290     program stream(PS), transport stream(TS)
291   - system bitrate
292   - PS packet size (DVD: 2048 bytes, VCD: 2324 bytes)
293   - TS video PID
294   - TS audio PID
295   - TS PCR PID
296   - TS system information tables (PAT, PMT, CAT, NIT and SIT)
297   - (MPEG-1 systems stream vs. MPEG-2 program stream (TS not supported
298     by MPEG-1 systems)
299
300 audio:
301   - type: MPEG (+Layer I,II,III), AC-3, LPCM
302   - bitrate
303   - sampling frequency (DVD: 48 Khz, VCD: 44.1 KHz, 32 kHz)
304   - Trick Modes? (ff, rew)
305   - Copyright
306   - Inverse Telecine
307
308 video:
309   - picturesize (SIF, 1/2 D1, 2/3 D1, D1) and PAL/NTSC norm can be set
310     through excisting V4L2 controls
311   - noise reduction, parameters encoder specific?
312   - MPEG video version: MPEG-1, MPEG-2
313   - GOP (Group Of Pictures) definition:
314     - N: number of frames per GOP
315     - M: distance between reference (I,P) frames
316     - open/closed GOP
317   - quantiser matrix: inter Q matrix (64 bytes) and intra Q matrix (64 bytes)
318   - quantiser scale: linear or logarithmic
319   - scanning: alternate or zigzag
320   - bitrate mode: CBR (constant bitrate) or VBR (variable bitrate).
321   - target video bitrate for CBR
322   - target video bitrate for VBR
323   - maximum video bitrate for VBR - min. quantiser value for VBR
324   - max. quantiser value for VBR
325   - adaptive quantisation value
326   - return the number of bytes per GOP or bitrate for bitrate monitoring
327
328 */
329 };
330 #endif
331
332 struct v4l2_jpegcompression
333 {
334         int quality;
335
336         int  APPn;              /* Number of APP segment to be written,
337                                  * must be 0..15 */
338         int  APP_len;           /* Length of data in JPEG APPn segment */
339         char APP_data[60];      /* Data in the JPEG APPn segment. */
340
341         int  COM_len;           /* Length of data in JPEG COM segment */
342         char COM_data[60];      /* Data in JPEG COM segment */
343
344         __u32 jpeg_markers;     /* Which markers should go into the JPEG
345                                  * output. Unless you exactly know what
346                                  * you do, leave them untouched.
347                                  * Inluding less markers will make the
348                                  * resulting code smaller, but there will
349                                  * be fewer aplications which can read it.
350                                  * The presence of the APP and COM marker
351                                  * is influenced by APP_len and COM_len
352                                  * ONLY, not by this property! */
353
354 #define V4L2_JPEG_MARKER_DHT (1<<3)    /* Define Huffman Tables */
355 #define V4L2_JPEG_MARKER_DQT (1<<4)    /* Define Quantization Tables */
356 #define V4L2_JPEG_MARKER_DRI (1<<5)    /* Define Restart Interval */
357 #define V4L2_JPEG_MARKER_COM (1<<6)    /* Comment segment */
358 #define V4L2_JPEG_MARKER_APP (1<<7)    /* App segment, driver will
359                                         * allways use APP0 */
360 };
361
362
363 /*
364  *      M E M O R Y - M A P P I N G   B U F F E R S
365  */
366 struct v4l2_requestbuffers
367 {
368         __u32                   count;
369         enum v4l2_buf_type      type;
370         enum v4l2_memory        memory;
371         __u32                   reserved[2];
372 };
373
374 struct v4l2_buffer
375 {
376         __u32                   index;
377         enum v4l2_buf_type      type;
378         __u32                   bytesused;
379         __u32                   flags;
380         enum v4l2_field         field;
381         struct timeval          timestamp;
382         struct v4l2_timecode    timecode;
383         __u32                   sequence;
384
385         /* memory location */
386         enum v4l2_memory        memory;
387         union {
388                 __u32           offset;
389                 unsigned long   userptr;
390         } m;
391         __u32                   length;
392         __u32                   input;
393         __u32                   reserved;
394 };
395
396 /*  Flags for 'flags' field */
397 #define V4L2_BUF_FLAG_MAPPED    0x0001  /* Buffer is mapped (flag) */
398 #define V4L2_BUF_FLAG_QUEUED    0x0002  /* Buffer is queued for processing */
399 #define V4L2_BUF_FLAG_DONE      0x0004  /* Buffer is ready */
400 #define V4L2_BUF_FLAG_KEYFRAME  0x0008  /* Image is a keyframe (I-frame) */
401 #define V4L2_BUF_FLAG_PFRAME    0x0010  /* Image is a P-frame */
402 #define V4L2_BUF_FLAG_BFRAME    0x0020  /* Image is a B-frame */
403 #define V4L2_BUF_FLAG_TIMECODE  0x0100  /* timecode field is valid */
404 #define V4L2_BUF_FLAG_INPUT     0x0200  /* input field is valid */
405
406 /*
407  *      O V E R L A Y   P R E V I E W
408  */
409 struct v4l2_framebuffer
410 {
411         __u32                   capability;
412         __u32                   flags;
413 /* FIXME: in theory we should pass something like PCI device + memory
414  * region + offset instead of some physical address */
415         void*                   base;
416         struct v4l2_pix_format  fmt;
417 };
418 /*  Flags for the 'capability' field. Read only */
419 #define V4L2_FBUF_CAP_EXTERNOVERLAY     0x0001
420 #define V4L2_FBUF_CAP_CHROMAKEY         0x0002
421 #define V4L2_FBUF_CAP_LIST_CLIPPING     0x0004
422 #define V4L2_FBUF_CAP_BITMAP_CLIPPING   0x0008
423 /*  Flags for the 'flags' field. */
424 #define V4L2_FBUF_FLAG_PRIMARY          0x0001
425 #define V4L2_FBUF_FLAG_OVERLAY          0x0002
426 #define V4L2_FBUF_FLAG_CHROMAKEY        0x0004
427
428 struct v4l2_clip
429 {
430         struct v4l2_rect        c;
431         struct v4l2_clip        *next;
432 };
433
434 struct v4l2_window
435 {
436         struct v4l2_rect        w;
437         enum v4l2_field         field;
438         __u32                   chromakey;
439         struct v4l2_clip        __user *clips;
440         __u32                   clipcount;
441         void                    __user *bitmap;
442 };
443
444
445 /*
446  *      C A P T U R E   P A R A M E T E R S
447  */
448 struct v4l2_captureparm
449 {
450         __u32              capability;    /*  Supported modes */
451         __u32              capturemode;   /*  Current mode */
452         struct v4l2_fract  timeperframe;  /*  Time per frame in .1us units */
453         __u32              extendedmode;  /*  Driver-specific extensions */
454         __u32              readbuffers;   /*  # of buffers for read */
455         __u32              reserved[4];
456 };
457 /*  Flags for 'capability' and 'capturemode' fields */
458 #define V4L2_MODE_HIGHQUALITY   0x0001  /*  High quality imaging mode */
459 #define V4L2_CAP_TIMEPERFRAME   0x1000  /*  timeperframe field is supported */
460
461 struct v4l2_outputparm
462 {
463         __u32              capability;   /*  Supported modes */
464         __u32              outputmode;   /*  Current mode */
465         struct v4l2_fract  timeperframe; /*  Time per frame in seconds */
466         __u32              extendedmode; /*  Driver-specific extensions */
467         __u32              writebuffers; /*  # of buffers for write */
468         __u32              reserved[4];
469 };
470
471 /*
472  *      I N P U T   I M A G E   C R O P P I N G
473  */
474
475 struct v4l2_cropcap {
476         enum v4l2_buf_type      type;
477         struct v4l2_rect        bounds;
478         struct v4l2_rect        defrect;
479         struct v4l2_fract       pixelaspect;
480 };
481
482 struct v4l2_crop {
483         enum v4l2_buf_type      type;
484         struct v4l2_rect        c;
485 };
486
487 /*
488  *      A N A L O G   V I D E O   S T A N D A R D
489  */
490
491 typedef __u64 v4l2_std_id;
492
493 /* one bit for each */
494 #define V4L2_STD_PAL_B          ((v4l2_std_id)0x00000001)
495 #define V4L2_STD_PAL_B1         ((v4l2_std_id)0x00000002)
496 #define V4L2_STD_PAL_G          ((v4l2_std_id)0x00000004)
497 #define V4L2_STD_PAL_H          ((v4l2_std_id)0x00000008)
498 #define V4L2_STD_PAL_I          ((v4l2_std_id)0x00000010)
499 #define V4L2_STD_PAL_D          ((v4l2_std_id)0x00000020)
500 #define V4L2_STD_PAL_D1         ((v4l2_std_id)0x00000040)
501 #define V4L2_STD_PAL_K          ((v4l2_std_id)0x00000080)
502
503 #define V4L2_STD_PAL_M          ((v4l2_std_id)0x00000100)
504 #define V4L2_STD_PAL_N          ((v4l2_std_id)0x00000200)
505 #define V4L2_STD_PAL_Nc         ((v4l2_std_id)0x00000400)
506 #define V4L2_STD_PAL_60         ((v4l2_std_id)0x00000800)
507
508 #define V4L2_STD_NTSC_M         ((v4l2_std_id)0x00001000)
509 #define V4L2_STD_NTSC_M_JP      ((v4l2_std_id)0x00002000)
510
511 #define V4L2_STD_SECAM_B        ((v4l2_std_id)0x00010000)
512 #define V4L2_STD_SECAM_D        ((v4l2_std_id)0x00020000)
513 #define V4L2_STD_SECAM_G        ((v4l2_std_id)0x00040000)
514 #define V4L2_STD_SECAM_H        ((v4l2_std_id)0x00080000)
515 #define V4L2_STD_SECAM_K        ((v4l2_std_id)0x00100000)
516 #define V4L2_STD_SECAM_K1       ((v4l2_std_id)0x00200000)
517 #define V4L2_STD_SECAM_L        ((v4l2_std_id)0x00400000)
518
519 /* ATSC/HDTV */
520 #define V4L2_STD_ATSC_8_VSB     ((v4l2_std_id)0x01000000)
521 #define V4L2_STD_ATSC_16_VSB    ((v4l2_std_id)0x02000000)
522
523 /* some common needed stuff */
524 #define V4L2_STD_PAL_BG         (V4L2_STD_PAL_B         |\
525                                  V4L2_STD_PAL_B1        |\
526                                  V4L2_STD_PAL_G)
527 #define V4L2_STD_PAL_DK         (V4L2_STD_PAL_D         |\
528                                  V4L2_STD_PAL_D1        |\
529                                  V4L2_STD_PAL_K)
530 #define V4L2_STD_PAL            (V4L2_STD_PAL_BG        |\
531                                  V4L2_STD_PAL_DK        |\
532                                  V4L2_STD_PAL_H         |\
533                                  V4L2_STD_PAL_I)
534 #define V4L2_STD_NTSC           (V4L2_STD_NTSC_M        |\
535                                  V4L2_STD_NTSC_M_JP)
536 #define V4L2_STD_SECAM_DK       (V4L2_STD_SECAM_D       |\
537                                  V4L2_STD_SECAM_K       |\
538                                  V4L2_STD_SECAM_K1)
539 #define V4L2_STD_SECAM          (V4L2_STD_SECAM_B       |\
540                                  V4L2_STD_SECAM_G       |\
541                                  V4L2_STD_SECAM_H       |\
542                                  V4L2_STD_SECAM_DK      |\
543                                  V4L2_STD_SECAM_L)
544
545 #define V4L2_STD_525_60         (V4L2_STD_PAL_M         |\
546                                  V4L2_STD_PAL_60        |\
547                                  V4L2_STD_NTSC)
548 #define V4L2_STD_625_50         (V4L2_STD_PAL           |\
549                                  V4L2_STD_PAL_N         |\
550                                  V4L2_STD_PAL_Nc        |\
551                                  V4L2_STD_SECAM)
552 #define V4L2_STD_ATSC           (V4L2_STD_ATSC_8_VSB    |\
553                                  V4L2_STD_ATSC_16_VSB)
554
555 #define V4L2_STD_UNKNOWN        0
556 #define V4L2_STD_ALL            (V4L2_STD_525_60        |\
557                                  V4L2_STD_625_50)
558
559 struct v4l2_standard
560 {
561         __u32                index;
562         v4l2_std_id          id;
563         __u8                 name[24];
564         struct v4l2_fract    frameperiod; /* Frames, not fields */
565         __u32                framelines;
566         __u32                reserved[4];
567 };
568
569
570 /*
571  *      V I D E O   I N P U T S
572  */
573 struct v4l2_input
574 {
575         __u32        index;             /*  Which input */
576         __u8         name[32];          /*  Label */
577         __u32        type;              /*  Type of input */
578         __u32        audioset;          /*  Associated audios (bitfield) */
579         __u32        tuner;             /*  Associated tuner */
580         v4l2_std_id  std;
581         __u32        status;
582         __u32        reserved[4];
583 };
584 /*  Values for the 'type' field */
585 #define V4L2_INPUT_TYPE_TUNER           1
586 #define V4L2_INPUT_TYPE_CAMERA          2
587
588 /* field 'status' - general */
589 #define V4L2_IN_ST_NO_POWER    0x00000001  /* Attached device is off */
590 #define V4L2_IN_ST_NO_SIGNAL   0x00000002
591 #define V4L2_IN_ST_NO_COLOR    0x00000004
592
593 /* field 'status' - analog */
594 #define V4L2_IN_ST_NO_H_LOCK   0x00000100  /* No horizontal sync lock */
595 #define V4L2_IN_ST_COLOR_KILL  0x00000200  /* Color killer is active */
596
597 /* field 'status' - digital */
598 #define V4L2_IN_ST_NO_SYNC     0x00010000  /* No synchronization lock */
599 #define V4L2_IN_ST_NO_EQU      0x00020000  /* No equalizer lock */
600 #define V4L2_IN_ST_NO_CARRIER  0x00040000  /* Carrier recovery failed */
601
602 /* field 'status' - VCR and set-top box */
603 #define V4L2_IN_ST_MACROVISION 0x01000000  /* Macrovision detected */
604 #define V4L2_IN_ST_NO_ACCESS   0x02000000  /* Conditional access denied */
605 #define V4L2_IN_ST_VTR         0x04000000  /* VTR time constant */
606
607 /*
608  *      V I D E O   O U T P U T S
609  */
610 struct v4l2_output
611 {
612         __u32        index;             /*  Which output */
613         __u8         name[32];          /*  Label */
614         __u32        type;              /*  Type of output */
615         __u32        audioset;          /*  Associated audios (bitfield) */
616         __u32        modulator;         /*  Associated modulator */
617         v4l2_std_id  std;
618         __u32        reserved[4];
619 };
620 /*  Values for the 'type' field */
621 #define V4L2_OUTPUT_TYPE_MODULATOR              1
622 #define V4L2_OUTPUT_TYPE_ANALOG                 2
623 #define V4L2_OUTPUT_TYPE_ANALOGVGAOVERLAY       3
624
625 /*
626  *      C O N T R O L S
627  */
628 struct v4l2_control
629 {
630         __u32                id;
631         __s32                value;
632 };
633
634 /*  Used in the VIDIOC_QUERYCTRL ioctl for querying controls */
635 struct v4l2_queryctrl
636 {
637         __u32                id;
638         enum v4l2_ctrl_type  type;
639         __u8                 name[32];  /* Whatever */
640         __s32                minimum;   /* Note signedness */
641         __s32                maximum;
642         __s32                step;
643         __s32                default_value;
644         __u32                flags;
645         __u32                reserved[2];
646 };
647
648 /*  Used in the VIDIOC_QUERYMENU ioctl for querying menu items */
649 struct v4l2_querymenu
650 {
651         __u32           id;
652         __u32           index;
653         __u8            name[32];       /* Whatever */
654         __u32           reserved;
655 };
656
657 /*  Control flags  */
658 #define V4L2_CTRL_FLAG_DISABLED         0x0001
659 #define V4L2_CTRL_FLAG_GRABBED          0x0002
660
661 /*  Control IDs defined by V4L2 */
662 #define V4L2_CID_BASE                   0x00980900
663 /*  IDs reserved for driver specific controls */
664 #define V4L2_CID_PRIVATE_BASE           0x08000000
665
666 #define V4L2_CID_BRIGHTNESS             (V4L2_CID_BASE+0)
667 #define V4L2_CID_CONTRAST               (V4L2_CID_BASE+1)
668 #define V4L2_CID_SATURATION             (V4L2_CID_BASE+2)
669 #define V4L2_CID_HUE                    (V4L2_CID_BASE+3)
670 #define V4L2_CID_AUDIO_VOLUME           (V4L2_CID_BASE+5)
671 #define V4L2_CID_AUDIO_BALANCE          (V4L2_CID_BASE+6)
672 #define V4L2_CID_AUDIO_BASS             (V4L2_CID_BASE+7)
673 #define V4L2_CID_AUDIO_TREBLE           (V4L2_CID_BASE+8)
674 #define V4L2_CID_AUDIO_MUTE             (V4L2_CID_BASE+9)
675 #define V4L2_CID_AUDIO_LOUDNESS         (V4L2_CID_BASE+10)
676 #define V4L2_CID_BLACK_LEVEL            (V4L2_CID_BASE+11)
677 #define V4L2_CID_AUTO_WHITE_BALANCE     (V4L2_CID_BASE+12)
678 #define V4L2_CID_DO_WHITE_BALANCE       (V4L2_CID_BASE+13)
679 #define V4L2_CID_RED_BALANCE            (V4L2_CID_BASE+14)
680 #define V4L2_CID_BLUE_BALANCE           (V4L2_CID_BASE+15)
681 #define V4L2_CID_GAMMA                  (V4L2_CID_BASE+16)
682 #define V4L2_CID_WHITENESS              (V4L2_CID_GAMMA) /* ? Not sure */
683 #define V4L2_CID_EXPOSURE               (V4L2_CID_BASE+17)
684 #define V4L2_CID_AUTOGAIN               (V4L2_CID_BASE+18)
685 #define V4L2_CID_GAIN                   (V4L2_CID_BASE+19)
686 #define V4L2_CID_HFLIP                  (V4L2_CID_BASE+20)
687 #define V4L2_CID_VFLIP                  (V4L2_CID_BASE+21)
688 #define V4L2_CID_HCENTER                (V4L2_CID_BASE+22)
689 #define V4L2_CID_VCENTER                (V4L2_CID_BASE+23)
690 #define V4L2_CID_LASTP1                 (V4L2_CID_BASE+24) /* last CID + 1 */
691
692 /*
693  *      T U N I N G
694  */
695 struct v4l2_tuner
696 {
697         __u32                   index;
698         __u8                    name[32];
699         enum v4l2_tuner_type    type;
700         __u32                   capability;
701         __u32                   rangelow;
702         __u32                   rangehigh;
703         __u32                   rxsubchans;
704         __u32                   audmode;
705         __s32                   signal;
706         __s32                   afc;
707         __u32                   reserved[4];
708 };
709
710 struct v4l2_modulator
711 {
712         __u32                   index;
713         __u8                    name[32];
714         __u32                   capability;
715         __u32                   rangelow;
716         __u32                   rangehigh;
717         __u32                   txsubchans;
718         __u32                   reserved[4];
719 };
720
721 /*  Flags for the 'capability' field */
722 #define V4L2_TUNER_CAP_LOW              0x0001
723 #define V4L2_TUNER_CAP_NORM             0x0002
724 #define V4L2_TUNER_CAP_STEREO           0x0010
725 #define V4L2_TUNER_CAP_LANG2            0x0020
726 #define V4L2_TUNER_CAP_SAP              0x0020
727 #define V4L2_TUNER_CAP_LANG1            0x0040
728
729 /*  Flags for the 'rxsubchans' field */
730 #define V4L2_TUNER_SUB_MONO             0x0001
731 #define V4L2_TUNER_SUB_STEREO           0x0002
732 #define V4L2_TUNER_SUB_LANG2            0x0004
733 #define V4L2_TUNER_SUB_SAP              0x0004
734 #define V4L2_TUNER_SUB_LANG1            0x0008
735
736 /*  Values for the 'audmode' field */
737 #define V4L2_TUNER_MODE_MONO            0x0000
738 #define V4L2_TUNER_MODE_STEREO          0x0001
739 #define V4L2_TUNER_MODE_LANG2           0x0002
740 #define V4L2_TUNER_MODE_SAP             0x0002
741 #define V4L2_TUNER_MODE_LANG1           0x0003
742
743 struct v4l2_frequency
744 {
745         __u32                 tuner;
746         enum v4l2_tuner_type  type;
747         __u32                 frequency;
748         __u32                 reserved[8];
749 };
750
751 /*
752  *      A U D I O
753  */
754 struct v4l2_audio
755 {
756         __u32   index;
757         __u8    name[32];
758         __u32   capability;
759         __u32   mode;
760         __u32   reserved[2];
761 };
762 /*  Flags for the 'capability' field */
763 #define V4L2_AUDCAP_STEREO              0x00001
764 #define V4L2_AUDCAP_AVL                 0x00002
765
766 /*  Flags for the 'mode' field */
767 #define V4L2_AUDMODE_AVL                0x00001
768
769 struct v4l2_audioout
770 {
771         __u32   index;
772         __u8    name[32];
773         __u32   capability;
774         __u32   mode;
775         __u32   reserved[2];
776 };
777
778 /*
779  *      D A T A   S E R V I C E S   ( V B I )
780  *
781  *      Data services API by Michael Schimek
782  */
783
784 struct v4l2_vbi_format
785 {
786         __u32   sampling_rate;          /* in 1 Hz */
787         __u32   offset;
788         __u32   samples_per_line;
789         __u32   sample_format;          /* V4L2_PIX_FMT_* */
790         __s32   start[2];
791         __u32   count[2];
792         __u32   flags;                  /* V4L2_VBI_* */
793         __u32   reserved[2];            /* must be zero */
794 };
795
796 /*  VBI flags  */
797 #define V4L2_VBI_UNSYNC         (1<< 0)
798 #define V4L2_VBI_INTERLACED     (1<< 1)
799
800
801 /*
802  *      A G G R E G A T E   S T R U C T U R E S
803  */
804
805 /*      Stream data format
806  */
807 struct v4l2_format
808 {
809         enum v4l2_buf_type type;
810         union
811         {
812                 struct v4l2_pix_format  pix;  // V4L2_BUF_TYPE_VIDEO_CAPTURE
813                 struct v4l2_window      win;  // V4L2_BUF_TYPE_VIDEO_OVERLAY
814                 struct v4l2_vbi_format  vbi;  // V4L2_BUF_TYPE_VBI_CAPTURE
815                 __u8    raw_data[200];        // user-defined
816         } fmt;
817 };
818
819
820 /*      Stream type-dependent parameters
821  */
822 struct v4l2_streamparm
823 {
824         enum v4l2_buf_type type;
825         union
826         {
827                 struct v4l2_captureparm capture;
828                 struct v4l2_outputparm  output;
829                 __u8    raw_data[200];  /* user-defined */
830         } parm;
831 };
832
833
834
835 /*
836  *      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
837  *
838  */
839 #define VIDIOC_QUERYCAP         _IOR  ('V',  0, struct v4l2_capability)
840 #define VIDIOC_RESERVED         _IO   ('V',  1)
841 #define VIDIOC_ENUM_FMT         _IOWR ('V',  2, struct v4l2_fmtdesc)
842 #define VIDIOC_G_FMT            _IOWR ('V',  4, struct v4l2_format)
843 #define VIDIOC_S_FMT            _IOWR ('V',  5, struct v4l2_format)
844 #if 0
845 #define VIDIOC_G_COMP           _IOR  ('V',  6, struct v4l2_compression)
846 #define VIDIOC_S_COMP           _IOW  ('V',  7, struct v4l2_compression)
847 #endif
848 #define VIDIOC_REQBUFS          _IOWR ('V',  8, struct v4l2_requestbuffers)
849 #define VIDIOC_QUERYBUF         _IOWR ('V',  9, struct v4l2_buffer)
850 #define VIDIOC_G_FBUF           _IOR  ('V', 10, struct v4l2_framebuffer)
851 #define VIDIOC_S_FBUF           _IOW  ('V', 11, struct v4l2_framebuffer)
852 #define VIDIOC_OVERLAY          _IOW  ('V', 14, int)
853 #define VIDIOC_QBUF             _IOWR ('V', 15, struct v4l2_buffer)
854 #define VIDIOC_DQBUF            _IOWR ('V', 17, struct v4l2_buffer)
855 #define VIDIOC_STREAMON         _IOW  ('V', 18, int)
856 #define VIDIOC_STREAMOFF        _IOW  ('V', 19, int)
857 #define VIDIOC_G_PARM           _IOWR ('V', 21, struct v4l2_streamparm)
858 #define VIDIOC_S_PARM           _IOWR ('V', 22, struct v4l2_streamparm)
859 #define VIDIOC_G_STD            _IOR  ('V', 23, v4l2_std_id)
860 #define VIDIOC_S_STD            _IOW  ('V', 24, v4l2_std_id)
861 #define VIDIOC_ENUMSTD          _IOWR ('V', 25, struct v4l2_standard)
862 #define VIDIOC_ENUMINPUT        _IOWR ('V', 26, struct v4l2_input)
863 #define VIDIOC_G_CTRL           _IOWR ('V', 27, struct v4l2_control)
864 #define VIDIOC_S_CTRL           _IOWR ('V', 28, struct v4l2_control)
865 #define VIDIOC_G_TUNER          _IOWR ('V', 29, struct v4l2_tuner)
866 #define VIDIOC_S_TUNER          _IOW  ('V', 30, struct v4l2_tuner)
867 #define VIDIOC_G_AUDIO          _IOR  ('V', 33, struct v4l2_audio)
868 #define VIDIOC_S_AUDIO          _IOW  ('V', 34, struct v4l2_audio)
869 #define VIDIOC_QUERYCTRL        _IOWR ('V', 36, struct v4l2_queryctrl)
870 #define VIDIOC_QUERYMENU        _IOWR ('V', 37, struct v4l2_querymenu)
871 #define VIDIOC_G_INPUT          _IOR  ('V', 38, int)
872 #define VIDIOC_S_INPUT          _IOWR ('V', 39, int)
873 #define VIDIOC_G_OUTPUT         _IOR  ('V', 46, int)
874 #define VIDIOC_S_OUTPUT         _IOWR ('V', 47, int)
875 #define VIDIOC_ENUMOUTPUT       _IOWR ('V', 48, struct v4l2_output)
876 #define VIDIOC_G_AUDOUT         _IOR  ('V', 49, struct v4l2_audioout)
877 #define VIDIOC_S_AUDOUT         _IOW  ('V', 50, struct v4l2_audioout)
878 #define VIDIOC_G_MODULATOR      _IOWR ('V', 54, struct v4l2_modulator)
879 #define VIDIOC_S_MODULATOR      _IOW  ('V', 55, struct v4l2_modulator)
880 #define VIDIOC_G_FREQUENCY      _IOWR ('V', 56, struct v4l2_frequency)
881 #define VIDIOC_S_FREQUENCY      _IOW  ('V', 57, struct v4l2_frequency)
882 #define VIDIOC_CROPCAP          _IOWR ('V', 58, struct v4l2_cropcap)
883 #define VIDIOC_G_CROP           _IOWR ('V', 59, struct v4l2_crop)
884 #define VIDIOC_S_CROP           _IOW  ('V', 60, struct v4l2_crop)
885 #define VIDIOC_G_JPEGCOMP       _IOR  ('V', 61, struct v4l2_jpegcompression)
886 #define VIDIOC_S_JPEGCOMP       _IOW  ('V', 62, struct v4l2_jpegcompression)
887 #define VIDIOC_QUERYSTD         _IOR  ('V', 63, v4l2_std_id)
888 #define VIDIOC_TRY_FMT          _IOWR ('V', 64, struct v4l2_format)
889 #define VIDIOC_ENUMAUDIO        _IOWR ('V', 65, struct v4l2_audio)
890 #define VIDIOC_ENUMAUDOUT       _IOWR ('V', 66, struct v4l2_audioout)
891 #define VIDIOC_G_PRIORITY       _IOR  ('V', 67, enum v4l2_priority)
892 #define VIDIOC_S_PRIORITY       _IOW  ('V', 68, enum v4l2_priority)
893
894 /* for compatibility, will go away some day */
895 #define VIDIOC_OVERLAY_OLD      _IOWR ('V', 14, int)
896 #define VIDIOC_S_PARM_OLD       _IOW  ('V', 22, struct v4l2_streamparm)
897 #define VIDIOC_S_CTRL_OLD       _IOW  ('V', 28, struct v4l2_control)
898 #define VIDIOC_G_AUDIO_OLD      _IOWR ('V', 33, struct v4l2_audio)
899 #define VIDIOC_G_AUDOUT_OLD     _IOWR ('V', 49, struct v4l2_audioout)
900 #define VIDIOC_CROPCAP_OLD      _IOR  ('V', 58, struct v4l2_cropcap)
901
902 #define BASE_VIDIOC_PRIVATE     192             /* 192-255 are private */
903
904
905 #ifdef __KERNEL__
906 /*
907  *
908  *      V 4 L 2   D R I V E R   H E L P E R   A P I
909  *
910  *      Some commonly needed functions for drivers (v4l2-common.o module)
911  */
912 #include <linux/fs.h>
913
914 /*  Video standard functions  */
915 extern unsigned int v4l2_video_std_fps(struct v4l2_standard *vs);
916 extern int v4l2_video_std_construct(struct v4l2_standard *vs,
917                                     int id, char *name);
918
919 /* prority handling */
920 struct v4l2_prio_state {
921         atomic_t prios[4];
922 };
923 int v4l2_prio_init(struct v4l2_prio_state *global);
924 int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
925                      enum v4l2_priority new);
926 int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
927 int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local);
928 enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
929 int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local);
930
931 /* names for fancy debug output */
932 extern char *v4l2_field_names[];
933 extern char *v4l2_type_names[];
934 extern char *v4l2_ioctl_names[];
935
936 /*  Compatibility layer interface  --  v4l1-compat module */
937 typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file,
938                            unsigned int cmd, void *arg);
939 int v4l_compat_translate_ioctl(struct inode *inode, struct file *file,
940                                int cmd, void *arg, v4l2_kioctl driver_ioctl);
941
942 #endif /* __KERNEL__ */
943 #endif /* __LINUX_VIDEODEV2_H */
944
945 /*
946  * Local variables:
947  * c-basic-offset: 8
948  * End:
949  */