Blame view

include/uapi/linux/v4l2-subdev.h 5.89 KB
333c8b977   Laurent Pinchart   [media] v4l: v4l2...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  /*
   * V4L2 subdev userspace API
   *
   * Copyright (C) 2010 Nokia Corporation
   *
   * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
   *	     Sakari Ailus <sakari.ailus@iki.fi>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   */
  
  #ifndef __LINUX_V4L2_SUBDEV_H
  #define __LINUX_V4L2_SUBDEV_H
  
  #include <linux/ioctl.h>
  #include <linux/types.h>
5689b2889   Sakari Ailus   [media] v4l: Unif...
28
  #include <linux/v4l2-common.h>
333c8b977   Laurent Pinchart   [media] v4l: v4l2...
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  #include <linux/v4l2-mediabus.h>
  
  /**
   * enum v4l2_subdev_format_whence - Media bus format type
   * @V4L2_SUBDEV_FORMAT_TRY: try format, for negotiation only
   * @V4L2_SUBDEV_FORMAT_ACTIVE: active format, applied to the device
   */
  enum v4l2_subdev_format_whence {
  	V4L2_SUBDEV_FORMAT_TRY = 0,
  	V4L2_SUBDEV_FORMAT_ACTIVE = 1,
  };
  
  /**
   * struct v4l2_subdev_format - Pad-level media bus format
   * @which: format type (from enum v4l2_subdev_format_whence)
   * @pad: pad number, as reported by the media API
   * @format: media bus format (format code and frame size)
   */
  struct v4l2_subdev_format {
  	__u32 which;
  	__u32 pad;
  	struct v4l2_mbus_framefmt format;
  	__u32 reserved[8];
  };
  
  /**
f6a5cb1be   Antti Koskipaa   [media] v4l: v4l2...
55
56
57
58
59
60
61
62
63
64
65
66
67
   * struct v4l2_subdev_crop - Pad-level crop settings
   * @which: format type (from enum v4l2_subdev_format_whence)
   * @pad: pad number, as reported by the media API
   * @rect: pad crop rectangle boundaries
   */
  struct v4l2_subdev_crop {
  	__u32 which;
  	__u32 pad;
  	struct v4l2_rect rect;
  	__u32 reserved[8];
  };
  
  /**
333c8b977   Laurent Pinchart   [media] v4l: v4l2...
68
69
70
   * struct v4l2_subdev_mbus_code_enum - Media bus format enumeration
   * @pad: pad number, as reported by the media API
   * @index: format index during enumeration
32b32ce84   Boris BREZILLON   [media] Make use ...
71
   * @code: format code (MEDIA_BUS_FMT_ definitions)
e1c47e732   Hans Verkuil   [media] v4l2-subd...
72
   * @which: format type (from enum v4l2_subdev_format_whence)
333c8b977   Laurent Pinchart   [media] v4l: v4l2...
73
74
75
76
77
   */
  struct v4l2_subdev_mbus_code_enum {
  	__u32 pad;
  	__u32 index;
  	__u32 code;
e1c47e732   Hans Verkuil   [media] v4l2-subd...
78
79
  	__u32 which;
  	__u32 reserved[8];
333c8b977   Laurent Pinchart   [media] v4l: v4l2...
80
81
82
83
84
85
  };
  
  /**
   * struct v4l2_subdev_frame_size_enum - Media bus format enumeration
   * @pad: pad number, as reported by the media API
   * @index: format index during enumeration
32b32ce84   Boris BREZILLON   [media] Make use ...
86
   * @code: format code (MEDIA_BUS_FMT_ definitions)
e1c47e732   Hans Verkuil   [media] v4l2-subd...
87
   * @which: format type (from enum v4l2_subdev_format_whence)
333c8b977   Laurent Pinchart   [media] v4l: v4l2...
88
89
90
91
92
93
94
95
96
   */
  struct v4l2_subdev_frame_size_enum {
  	__u32 index;
  	__u32 pad;
  	__u32 code;
  	__u32 min_width;
  	__u32 max_width;
  	__u32 min_height;
  	__u32 max_height;
e1c47e732   Hans Verkuil   [media] v4l2-subd...
97
98
  	__u32 which;
  	__u32 reserved[8];
333c8b977   Laurent Pinchart   [media] v4l: v4l2...
99
  };
35c3017a2   Laurent Pinchart   [media] v4l: v4l2...
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
  /**
   * struct v4l2_subdev_frame_interval - Pad-level frame rate
   * @pad: pad number, as reported by the media API
   * @interval: frame interval in seconds
   */
  struct v4l2_subdev_frame_interval {
  	__u32 pad;
  	struct v4l2_fract interval;
  	__u32 reserved[9];
  };
  
  /**
   * struct v4l2_subdev_frame_interval_enum - Frame interval enumeration
   * @pad: pad number, as reported by the media API
   * @index: frame interval index during enumeration
32b32ce84   Boris BREZILLON   [media] Make use ...
115
   * @code: format code (MEDIA_BUS_FMT_ definitions)
35c3017a2   Laurent Pinchart   [media] v4l: v4l2...
116
117
118
   * @width: frame width in pixels
   * @height: frame height in pixels
   * @interval: frame interval in seconds
e1c47e732   Hans Verkuil   [media] v4l2-subd...
119
   * @which: format type (from enum v4l2_subdev_format_whence)
35c3017a2   Laurent Pinchart   [media] v4l: v4l2...
120
121
122
123
124
125
126
127
   */
  struct v4l2_subdev_frame_interval_enum {
  	__u32 index;
  	__u32 pad;
  	__u32 code;
  	__u32 width;
  	__u32 height;
  	struct v4l2_fract interval;
e1c47e732   Hans Verkuil   [media] v4l2-subd...
128
129
  	__u32 which;
  	__u32 reserved[8];
35c3017a2   Laurent Pinchart   [media] v4l: v4l2...
130
  };
ae184cda8   Sakari Ailus   [media] v4l: VIDI...
131
132
133
134
135
  /**
   * struct v4l2_subdev_selection - selection info
   *
   * @which: either V4L2_SUBDEV_FORMAT_ACTIVE or V4L2_SUBDEV_FORMAT_TRY
   * @pad: pad number, as reported by the media API
5689b2889   Sakari Ailus   [media] v4l: Unif...
136
137
   * @target: Selection target, used to choose one of possible rectangles,
   *	    defined in v4l2-common.h; V4L2_SEL_TGT_* .
563df3d0b   Sakari Ailus   [media] v4l: Unif...
138
   * @flags: constraint flags, defined in v4l2-common.h; V4L2_SEL_FLAG_*.
ae184cda8   Sakari Ailus   [media] v4l: VIDI...
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
   * @r: coordinates of the selection window
   * @reserved: for future use, set to zero for now
   *
   * Hardware may use multiple helper windows to process a video stream.
   * The structure is used to exchange this selection areas between
   * an application and a driver.
   */
  struct v4l2_subdev_selection {
  	__u32 which;
  	__u32 pad;
  	__u32 target;
  	__u32 flags;
  	struct v4l2_rect r;
  	__u32 reserved[8];
  };
254a47770   Hans Verkuil   [media] v4l2: all...
154
155
  /* Backwards compatibility define --- to be removed */
  #define v4l2_subdev_edid v4l2_edid
777f4f85b   Hans Verkuil   [media] v4l2 core...
156

c4fa146ce   Laurent Pinchart   [media] v4l: Impr...
157
158
159
160
161
162
163
164
165
166
167
  #define VIDIOC_SUBDEV_G_FMT			_IOWR('V',  4, struct v4l2_subdev_format)
  #define VIDIOC_SUBDEV_S_FMT			_IOWR('V',  5, struct v4l2_subdev_format)
  #define VIDIOC_SUBDEV_G_FRAME_INTERVAL		_IOWR('V', 21, struct v4l2_subdev_frame_interval)
  #define VIDIOC_SUBDEV_S_FRAME_INTERVAL		_IOWR('V', 22, struct v4l2_subdev_frame_interval)
  #define VIDIOC_SUBDEV_ENUM_MBUS_CODE		_IOWR('V',  2, struct v4l2_subdev_mbus_code_enum)
  #define VIDIOC_SUBDEV_ENUM_FRAME_SIZE		_IOWR('V', 74, struct v4l2_subdev_frame_size_enum)
  #define VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL	_IOWR('V', 75, struct v4l2_subdev_frame_interval_enum)
  #define VIDIOC_SUBDEV_G_CROP			_IOWR('V', 59, struct v4l2_subdev_crop)
  #define VIDIOC_SUBDEV_S_CROP			_IOWR('V', 60, struct v4l2_subdev_crop)
  #define VIDIOC_SUBDEV_G_SELECTION		_IOWR('V', 61, struct v4l2_subdev_selection)
  #define VIDIOC_SUBDEV_S_SELECTION		_IOWR('V', 62, struct v4l2_subdev_selection)
9cfd65e80   Laurent Pinchart   [media] v4l: Add ...
168
  /* The following ioctls are identical to the ioctls in videodev2.h */
c4fa146ce   Laurent Pinchart   [media] v4l: Impr...
169
170
  #define VIDIOC_SUBDEV_G_EDID			_IOWR('V', 40, struct v4l2_edid)
  #define VIDIOC_SUBDEV_S_EDID			_IOWR('V', 41, struct v4l2_edid)
9cfd65e80   Laurent Pinchart   [media] v4l: Add ...
171
172
173
174
175
  #define VIDIOC_SUBDEV_S_DV_TIMINGS		_IOWR('V', 87, struct v4l2_dv_timings)
  #define VIDIOC_SUBDEV_G_DV_TIMINGS		_IOWR('V', 88, struct v4l2_dv_timings)
  #define VIDIOC_SUBDEV_ENUM_DV_TIMINGS		_IOWR('V', 98, struct v4l2_enum_dv_timings)
  #define VIDIOC_SUBDEV_QUERY_DV_TIMINGS		_IOR('V', 99, struct v4l2_dv_timings)
  #define VIDIOC_SUBDEV_DV_TIMINGS_CAP		_IOWR('V', 100, struct v4l2_dv_timings_cap)
333c8b977   Laurent Pinchart   [media] v4l: v4l2...
176
177
  
  #endif