blob: debaf9fb90047b5d892cb1ea9c754515093b34ad [file] [log] [blame]
Hans Verkuil09965172010-08-01 14:32:42 -03001/*
2 V4L2 controls framework implementation.
3
4 Copyright (C) 2010 Hans Verkuil <hverkuil@xs4all.nl>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/ctype.h>
Randy Dunlap2b801632010-08-09 14:56:35 -030022#include <linux/slab.h>
Paul Gortmaker35a24632011-08-01 15:26:38 -040023#include <linux/export.h>
Hans Verkuil09965172010-08-01 14:32:42 -030024#include <media/v4l2-ioctl.h>
25#include <media/v4l2-device.h>
26#include <media/v4l2-ctrls.h>
Hans Verkuil6e239392011-06-07 11:13:44 -030027#include <media/v4l2-event.h>
Hans Verkuil09965172010-08-01 14:32:42 -030028#include <media/v4l2-dev.h>
29
Hans Verkuilddac5c12011-06-10 05:43:34 -030030#define has_op(master, op) \
31 (master->ops && master->ops->op)
Hans Verkuil54c911e2011-05-25 06:04:58 -030032#define call_op(master, op) \
Hans Verkuilddac5c12011-06-10 05:43:34 -030033 (has_op(master, op) ? master->ops->op(master) : 0)
Hans Verkuil54c911e2011-05-25 06:04:58 -030034
Hans Verkuil09965172010-08-01 14:32:42 -030035/* Internal temporary helper struct, one for each v4l2_ext_control */
Hans Verkuileb5b16e2011-06-14 10:04:06 -030036struct v4l2_ctrl_helper {
37 /* Pointer to the control reference of the master control */
38 struct v4l2_ctrl_ref *mref;
Hans Verkuil09965172010-08-01 14:32:42 -030039 /* The control corresponding to the v4l2_ext_control ID field. */
40 struct v4l2_ctrl *ctrl;
Hans Verkuileb5b16e2011-06-14 10:04:06 -030041 /* v4l2_ext_control index of the next control belonging to the
42 same cluster, or 0 if there isn't any. */
43 u32 next;
Hans Verkuil09965172010-08-01 14:32:42 -030044};
45
Hans Verkuil72d877c2011-06-10 05:44:36 -030046/* Small helper function to determine if the autocluster is set to manual
Hans Verkuil88365102011-08-26 07:35:14 -030047 mode. */
Hans Verkuil72d877c2011-06-10 05:44:36 -030048static bool is_cur_manual(const struct v4l2_ctrl *master)
49{
50 return master->is_auto && master->cur.val == master->manual_mode_value;
51}
52
53/* Same as above, but this checks the against the new value instead of the
54 current value. */
55static bool is_new_manual(const struct v4l2_ctrl *master)
56{
57 return master->is_auto && master->val == master->manual_mode_value;
58}
59
Hans Verkuil09965172010-08-01 14:32:42 -030060/* Returns NULL or a character pointer array containing the menu for
61 the given control ID. The pointer array ends with a NULL pointer.
62 An empty string signifies a menu entry that is invalid. This allows
63 drivers to disable certain options if it is not supported. */
Hans Verkuil513521e2010-12-29 14:25:52 -030064const char * const *v4l2_ctrl_get_menu(u32 id)
Hans Verkuil09965172010-08-01 14:32:42 -030065{
Hans Verkuil513521e2010-12-29 14:25:52 -030066 static const char * const mpeg_audio_sampling_freq[] = {
Hans Verkuil09965172010-08-01 14:32:42 -030067 "44.1 kHz",
68 "48 kHz",
69 "32 kHz",
70 NULL
71 };
Hans Verkuil513521e2010-12-29 14:25:52 -030072 static const char * const mpeg_audio_encoding[] = {
Hans Verkuil09965172010-08-01 14:32:42 -030073 "MPEG-1/2 Layer I",
74 "MPEG-1/2 Layer II",
75 "MPEG-1/2 Layer III",
76 "MPEG-2/4 AAC",
77 "AC-3",
78 NULL
79 };
Hans Verkuil513521e2010-12-29 14:25:52 -030080 static const char * const mpeg_audio_l1_bitrate[] = {
Hans Verkuil09965172010-08-01 14:32:42 -030081 "32 kbps",
82 "64 kbps",
83 "96 kbps",
84 "128 kbps",
85 "160 kbps",
86 "192 kbps",
87 "224 kbps",
88 "256 kbps",
89 "288 kbps",
90 "320 kbps",
91 "352 kbps",
92 "384 kbps",
93 "416 kbps",
94 "448 kbps",
95 NULL
96 };
Hans Verkuil513521e2010-12-29 14:25:52 -030097 static const char * const mpeg_audio_l2_bitrate[] = {
Hans Verkuil09965172010-08-01 14:32:42 -030098 "32 kbps",
99 "48 kbps",
100 "56 kbps",
101 "64 kbps",
102 "80 kbps",
103 "96 kbps",
104 "112 kbps",
105 "128 kbps",
106 "160 kbps",
107 "192 kbps",
108 "224 kbps",
109 "256 kbps",
110 "320 kbps",
111 "384 kbps",
112 NULL
113 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300114 static const char * const mpeg_audio_l3_bitrate[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300115 "32 kbps",
116 "40 kbps",
117 "48 kbps",
118 "56 kbps",
119 "64 kbps",
120 "80 kbps",
121 "96 kbps",
122 "112 kbps",
123 "128 kbps",
124 "160 kbps",
125 "192 kbps",
126 "224 kbps",
127 "256 kbps",
128 "320 kbps",
129 NULL
130 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300131 static const char * const mpeg_audio_ac3_bitrate[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300132 "32 kbps",
133 "40 kbps",
134 "48 kbps",
135 "56 kbps",
136 "64 kbps",
137 "80 kbps",
138 "96 kbps",
139 "112 kbps",
140 "128 kbps",
141 "160 kbps",
142 "192 kbps",
143 "224 kbps",
144 "256 kbps",
145 "320 kbps",
146 "384 kbps",
147 "448 kbps",
148 "512 kbps",
149 "576 kbps",
150 "640 kbps",
151 NULL
152 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300153 static const char * const mpeg_audio_mode[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300154 "Stereo",
155 "Joint Stereo",
156 "Dual",
157 "Mono",
158 NULL
159 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300160 static const char * const mpeg_audio_mode_extension[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300161 "Bound 4",
162 "Bound 8",
163 "Bound 12",
164 "Bound 16",
165 NULL
166 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300167 static const char * const mpeg_audio_emphasis[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300168 "No Emphasis",
169 "50/15 us",
170 "CCITT J17",
171 NULL
172 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300173 static const char * const mpeg_audio_crc[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300174 "No CRC",
175 "16-bit CRC",
176 NULL
177 };
Hans Verkuil24c19a22011-12-15 10:46:16 -0300178 static const char * const mpeg_audio_dec_playback[] = {
179 "Auto",
180 "Stereo",
181 "Left",
182 "Right",
183 "Mono",
184 "Swapped Stereo",
185 NULL
186 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300187 static const char * const mpeg_video_encoding[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300188 "MPEG-1",
189 "MPEG-2",
190 "MPEG-4 AVC",
191 NULL
192 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300193 static const char * const mpeg_video_aspect[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300194 "1x1",
195 "4x3",
196 "16x9",
197 "2.21x1",
198 NULL
199 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300200 static const char * const mpeg_video_bitrate_mode[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300201 "Variable Bitrate",
202 "Constant Bitrate",
203 NULL
204 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300205 static const char * const mpeg_stream_type[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300206 "MPEG-2 Program Stream",
207 "MPEG-2 Transport Stream",
208 "MPEG-1 System Stream",
209 "MPEG-2 DVD-compatible Stream",
210 "MPEG-1 VCD-compatible Stream",
211 "MPEG-2 SVCD-compatible Stream",
212 NULL
213 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300214 static const char * const mpeg_stream_vbi_fmt[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300215 "No VBI",
Kamil Debski064f5092011-06-14 10:46:22 -0300216 "Private Packet, IVTV Format",
Hans Verkuil09965172010-08-01 14:32:42 -0300217 NULL
218 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300219 static const char * const camera_power_line_frequency[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300220 "Disabled",
221 "50 Hz",
222 "60 Hz",
Sylwester Nawrockid26a6632011-09-04 19:08:54 -0300223 "Auto",
Hans Verkuil09965172010-08-01 14:32:42 -0300224 NULL
225 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300226 static const char * const camera_exposure_auto[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300227 "Auto Mode",
228 "Manual Mode",
229 "Shutter Priority Mode",
230 "Aperture Priority Mode",
231 NULL
232 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300233 static const char * const colorfx[] = {
Hans Verkuil09965172010-08-01 14:32:42 -0300234 "None",
235 "Black & White",
236 "Sepia",
237 "Negative",
238 "Emboss",
239 "Sketch",
Kamil Debski064f5092011-06-14 10:46:22 -0300240 "Sky Blue",
241 "Grass Green",
242 "Skin Whiten",
Hans Verkuil09965172010-08-01 14:32:42 -0300243 "Vivid",
Sylwester Nawrocki6491d1a2012-04-02 06:40:19 -0300244 "Aqua",
245 "Art Freeze",
246 "Silhouette",
247 "Solarization",
248 "Antique",
249 "Set Cb/Cr",
Hans Verkuil09965172010-08-01 14:32:42 -0300250 NULL
251 };
Sylwester Nawrockie40a0572012-03-06 07:04:26 -0300252 static const char * const auto_n_preset_white_balance[] = {
253 "Manual",
254 "Auto",
255 "Incandescent",
256 "Fluorescent",
257 "Fluorescent H",
258 "Horizon",
259 "Daylight",
260 "Flash",
261 "Cloudy",
262 "Shade",
263 NULL,
264 };
Sylwester Nawrocki7f84ad82012-05-01 17:39:45 -0300265 static const char * const camera_iso_sensitivity_auto[] = {
266 "Manual",
267 "Auto",
268 NULL
269 };
Hans Verkuil513521e2010-12-29 14:25:52 -0300270 static const char * const tune_preemphasis[] = {
Kamil Debski064f5092011-06-14 10:46:22 -0300271 "No Preemphasis",
Hans Verkuilf769c262012-03-02 04:20:19 -0300272 "50 Microseconds",
273 "75 Microseconds",
Hans Verkuil09965172010-08-01 14:32:42 -0300274 NULL,
275 };
Kamil Debski064f5092011-06-14 10:46:22 -0300276 static const char * const header_mode[] = {
277 "Separate Buffer",
278 "Joined With 1st Frame",
279 NULL,
280 };
281 static const char * const multi_slice[] = {
282 "Single",
283 "Max Macroblocks",
284 "Max Bytes",
285 NULL,
286 };
287 static const char * const entropy_mode[] = {
288 "CAVLC",
289 "CABAC",
290 NULL,
291 };
292 static const char * const mpeg_h264_level[] = {
293 "1",
294 "1b",
295 "1.1",
296 "1.2",
297 "1.3",
298 "2",
299 "2.1",
300 "2.2",
301 "3",
302 "3.1",
303 "3.2",
304 "4",
305 "4.1",
306 "4.2",
307 "5",
308 "5.1",
309 NULL,
310 };
311 static const char * const h264_loop_filter[] = {
312 "Enabled",
313 "Disabled",
314 "Disabled at Slice Boundary",
315 NULL,
316 };
317 static const char * const h264_profile[] = {
318 "Baseline",
319 "Constrained Baseline",
320 "Main",
321 "Extended",
322 "High",
323 "High 10",
324 "High 422",
325 "High 444 Predictive",
326 "High 10 Intra",
327 "High 422 Intra",
328 "High 444 Intra",
329 "CAVLC 444 Intra",
330 "Scalable Baseline",
331 "Scalable High",
332 "Scalable High Intra",
333 "Multiview High",
334 NULL,
335 };
336 static const char * const vui_sar_idc[] = {
337 "Unspecified",
338 "1:1",
339 "12:11",
340 "10:11",
341 "16:11",
342 "40:33",
343 "24:11",
344 "20:11",
345 "32:11",
346 "80:33",
347 "18:11",
348 "15:11",
349 "64:33",
350 "160:99",
351 "4:3",
352 "3:2",
353 "2:1",
354 "Extended SAR",
355 NULL,
356 };
357 static const char * const mpeg_mpeg4_level[] = {
358 "0",
359 "0b",
360 "1",
361 "2",
362 "3",
363 "3b",
364 "4",
365 "5",
366 NULL,
367 };
368 static const char * const mpeg4_profile[] = {
369 "Simple",
Hans Verkuilf769c262012-03-02 04:20:19 -0300370 "Advanced Simple",
Kamil Debski064f5092011-06-14 10:46:22 -0300371 "Core",
372 "Simple Scalable",
373 "Advanced Coding Efficency",
374 NULL,
375 };
376
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300377 static const char * const flash_led_mode[] = {
378 "Off",
379 "Flash",
380 "Torch",
381 NULL,
382 };
383 static const char * const flash_strobe_source[] = {
384 "Software",
385 "External",
386 NULL,
387 };
Hans Verkuil09965172010-08-01 14:32:42 -0300388
Sylwester Nawrockic7361ae2012-01-20 15:37:44 -0300389 static const char * const jpeg_chroma_subsampling[] = {
390 "4:4:4",
391 "4:2:2",
392 "4:2:0",
393 "4:1:1",
394 "4:1:0",
395 "Gray",
396 NULL,
397 };
398
Hans Verkuil09965172010-08-01 14:32:42 -0300399 switch (id) {
400 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
401 return mpeg_audio_sampling_freq;
402 case V4L2_CID_MPEG_AUDIO_ENCODING:
403 return mpeg_audio_encoding;
404 case V4L2_CID_MPEG_AUDIO_L1_BITRATE:
405 return mpeg_audio_l1_bitrate;
406 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
407 return mpeg_audio_l2_bitrate;
408 case V4L2_CID_MPEG_AUDIO_L3_BITRATE:
409 return mpeg_audio_l3_bitrate;
410 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
411 return mpeg_audio_ac3_bitrate;
412 case V4L2_CID_MPEG_AUDIO_MODE:
413 return mpeg_audio_mode;
414 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION:
415 return mpeg_audio_mode_extension;
416 case V4L2_CID_MPEG_AUDIO_EMPHASIS:
417 return mpeg_audio_emphasis;
418 case V4L2_CID_MPEG_AUDIO_CRC:
419 return mpeg_audio_crc;
Hans Verkuil24c19a22011-12-15 10:46:16 -0300420 case V4L2_CID_MPEG_AUDIO_DEC_PLAYBACK:
421 case V4L2_CID_MPEG_AUDIO_DEC_MULTILINGUAL_PLAYBACK:
422 return mpeg_audio_dec_playback;
Hans Verkuil09965172010-08-01 14:32:42 -0300423 case V4L2_CID_MPEG_VIDEO_ENCODING:
424 return mpeg_video_encoding;
425 case V4L2_CID_MPEG_VIDEO_ASPECT:
426 return mpeg_video_aspect;
427 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
428 return mpeg_video_bitrate_mode;
429 case V4L2_CID_MPEG_STREAM_TYPE:
430 return mpeg_stream_type;
431 case V4L2_CID_MPEG_STREAM_VBI_FMT:
432 return mpeg_stream_vbi_fmt;
433 case V4L2_CID_POWER_LINE_FREQUENCY:
434 return camera_power_line_frequency;
435 case V4L2_CID_EXPOSURE_AUTO:
436 return camera_exposure_auto;
437 case V4L2_CID_COLORFX:
438 return colorfx;
Sylwester Nawrockie40a0572012-03-06 07:04:26 -0300439 case V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE:
440 return auto_n_preset_white_balance;
Sylwester Nawrocki7f84ad82012-05-01 17:39:45 -0300441 case V4L2_CID_ISO_SENSITIVITY_AUTO:
442 return camera_iso_sensitivity_auto;
Hans Verkuil09965172010-08-01 14:32:42 -0300443 case V4L2_CID_TUNE_PREEMPHASIS:
444 return tune_preemphasis;
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300445 case V4L2_CID_FLASH_LED_MODE:
446 return flash_led_mode;
447 case V4L2_CID_FLASH_STROBE_SOURCE:
448 return flash_strobe_source;
Kamil Debski064f5092011-06-14 10:46:22 -0300449 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
450 return header_mode;
451 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
452 return multi_slice;
453 case V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE:
454 return entropy_mode;
455 case V4L2_CID_MPEG_VIDEO_H264_LEVEL:
456 return mpeg_h264_level;
457 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
458 return h264_loop_filter;
459 case V4L2_CID_MPEG_VIDEO_H264_PROFILE:
460 return h264_profile;
461 case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC:
462 return vui_sar_idc;
463 case V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL:
464 return mpeg_mpeg4_level;
465 case V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE:
466 return mpeg4_profile;
Sylwester Nawrockic7361ae2012-01-20 15:37:44 -0300467 case V4L2_CID_JPEG_CHROMA_SUBSAMPLING:
468 return jpeg_chroma_subsampling;
469
Hans Verkuil09965172010-08-01 14:32:42 -0300470 default:
471 return NULL;
472 }
473}
474EXPORT_SYMBOL(v4l2_ctrl_get_menu);
475
476/* Return the control name. */
477const char *v4l2_ctrl_get_name(u32 id)
478{
479 switch (id) {
480 /* USER controls */
Hans Verkuil6c8d6112010-04-25 19:21:00 -0300481 /* Keep the order of the 'case's the same as in videodev2.h! */
Mauro Carvalho Chehab6dd5aff2010-08-06 09:57:02 -0300482 case V4L2_CID_USER_CLASS: return "User Controls";
483 case V4L2_CID_BRIGHTNESS: return "Brightness";
484 case V4L2_CID_CONTRAST: return "Contrast";
485 case V4L2_CID_SATURATION: return "Saturation";
486 case V4L2_CID_HUE: return "Hue";
487 case V4L2_CID_AUDIO_VOLUME: return "Volume";
488 case V4L2_CID_AUDIO_BALANCE: return "Balance";
489 case V4L2_CID_AUDIO_BASS: return "Bass";
490 case V4L2_CID_AUDIO_TREBLE: return "Treble";
491 case V4L2_CID_AUDIO_MUTE: return "Mute";
492 case V4L2_CID_AUDIO_LOUDNESS: return "Loudness";
Hans Verkuil09965172010-08-01 14:32:42 -0300493 case V4L2_CID_BLACK_LEVEL: return "Black Level";
494 case V4L2_CID_AUTO_WHITE_BALANCE: return "White Balance, Automatic";
495 case V4L2_CID_DO_WHITE_BALANCE: return "Do White Balance";
496 case V4L2_CID_RED_BALANCE: return "Red Balance";
497 case V4L2_CID_BLUE_BALANCE: return "Blue Balance";
498 case V4L2_CID_GAMMA: return "Gamma";
499 case V4L2_CID_EXPOSURE: return "Exposure";
500 case V4L2_CID_AUTOGAIN: return "Gain, Automatic";
501 case V4L2_CID_GAIN: return "Gain";
502 case V4L2_CID_HFLIP: return "Horizontal Flip";
503 case V4L2_CID_VFLIP: return "Vertical Flip";
504 case V4L2_CID_HCENTER: return "Horizontal Center";
505 case V4L2_CID_VCENTER: return "Vertical Center";
506 case V4L2_CID_POWER_LINE_FREQUENCY: return "Power Line Frequency";
507 case V4L2_CID_HUE_AUTO: return "Hue, Automatic";
508 case V4L2_CID_WHITE_BALANCE_TEMPERATURE: return "White Balance Temperature";
509 case V4L2_CID_SHARPNESS: return "Sharpness";
510 case V4L2_CID_BACKLIGHT_COMPENSATION: return "Backlight Compensation";
511 case V4L2_CID_CHROMA_AGC: return "Chroma AGC";
Hans Verkuil09965172010-08-01 14:32:42 -0300512 case V4L2_CID_COLOR_KILLER: return "Color Killer";
513 case V4L2_CID_COLORFX: return "Color Effects";
514 case V4L2_CID_AUTOBRIGHTNESS: return "Brightness, Automatic";
515 case V4L2_CID_BAND_STOP_FILTER: return "Band-Stop Filter";
516 case V4L2_CID_ROTATE: return "Rotate";
517 case V4L2_CID_BG_COLOR: return "Background Color";
Hans Verkuil6c8d6112010-04-25 19:21:00 -0300518 case V4L2_CID_CHROMA_GAIN: return "Chroma Gain";
Jean-François Moine008d35f2010-09-13 07:04:49 -0300519 case V4L2_CID_ILLUMINATORS_1: return "Illuminator 1";
520 case V4L2_CID_ILLUMINATORS_2: return "Illuminator 2";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300521 case V4L2_CID_MIN_BUFFERS_FOR_CAPTURE: return "Min Number of Capture Buffers";
522 case V4L2_CID_MIN_BUFFERS_FOR_OUTPUT: return "Min Number of Output Buffers";
Sylwester Nawrockicc1d3272011-11-14 08:48:18 -0300523 case V4L2_CID_ALPHA_COMPONENT: return "Alpha Component";
Sylwester Nawrocki6491d1a2012-04-02 06:40:19 -0300524 case V4L2_CID_COLORFX_CBCR: return "Color Effects, CbCr";
Hans Verkuil09965172010-08-01 14:32:42 -0300525
526 /* MPEG controls */
Hans Verkuil6c8d6112010-04-25 19:21:00 -0300527 /* Keep the order of the 'case's the same as in videodev2.h! */
Mauro Carvalho Chehab6dd5aff2010-08-06 09:57:02 -0300528 case V4L2_CID_MPEG_CLASS: return "MPEG Encoder Controls";
529 case V4L2_CID_MPEG_STREAM_TYPE: return "Stream Type";
530 case V4L2_CID_MPEG_STREAM_PID_PMT: return "Stream PMT Program ID";
531 case V4L2_CID_MPEG_STREAM_PID_AUDIO: return "Stream Audio Program ID";
532 case V4L2_CID_MPEG_STREAM_PID_VIDEO: return "Stream Video Program ID";
533 case V4L2_CID_MPEG_STREAM_PID_PCR: return "Stream PCR Program ID";
Hans Verkuil6c8d6112010-04-25 19:21:00 -0300534 case V4L2_CID_MPEG_STREAM_PES_ID_AUDIO: return "Stream PES Audio ID";
535 case V4L2_CID_MPEG_STREAM_PES_ID_VIDEO: return "Stream PES Video ID";
536 case V4L2_CID_MPEG_STREAM_VBI_FMT: return "Stream VBI Format";
Hans Verkuil09965172010-08-01 14:32:42 -0300537 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ: return "Audio Sampling Frequency";
Mauro Carvalho Chehab6dd5aff2010-08-06 09:57:02 -0300538 case V4L2_CID_MPEG_AUDIO_ENCODING: return "Audio Encoding";
539 case V4L2_CID_MPEG_AUDIO_L1_BITRATE: return "Audio Layer I Bitrate";
540 case V4L2_CID_MPEG_AUDIO_L2_BITRATE: return "Audio Layer II Bitrate";
541 case V4L2_CID_MPEG_AUDIO_L3_BITRATE: return "Audio Layer III Bitrate";
542 case V4L2_CID_MPEG_AUDIO_MODE: return "Audio Stereo Mode";
Hans Verkuil09965172010-08-01 14:32:42 -0300543 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION: return "Audio Stereo Mode Extension";
Mauro Carvalho Chehab6dd5aff2010-08-06 09:57:02 -0300544 case V4L2_CID_MPEG_AUDIO_EMPHASIS: return "Audio Emphasis";
545 case V4L2_CID_MPEG_AUDIO_CRC: return "Audio CRC";
546 case V4L2_CID_MPEG_AUDIO_MUTE: return "Audio Mute";
547 case V4L2_CID_MPEG_AUDIO_AAC_BITRATE: return "Audio AAC Bitrate";
548 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE: return "Audio AC-3 Bitrate";
Hans Verkuil24c19a22011-12-15 10:46:16 -0300549 case V4L2_CID_MPEG_AUDIO_DEC_PLAYBACK: return "Audio Playback";
550 case V4L2_CID_MPEG_AUDIO_DEC_MULTILINGUAL_PLAYBACK: return "Audio Multilingual Playback";
Mauro Carvalho Chehab6dd5aff2010-08-06 09:57:02 -0300551 case V4L2_CID_MPEG_VIDEO_ENCODING: return "Video Encoding";
552 case V4L2_CID_MPEG_VIDEO_ASPECT: return "Video Aspect";
553 case V4L2_CID_MPEG_VIDEO_B_FRAMES: return "Video B Frames";
554 case V4L2_CID_MPEG_VIDEO_GOP_SIZE: return "Video GOP Size";
555 case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE: return "Video GOP Closure";
556 case V4L2_CID_MPEG_VIDEO_PULLDOWN: return "Video Pulldown";
557 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE: return "Video Bitrate Mode";
558 case V4L2_CID_MPEG_VIDEO_BITRATE: return "Video Bitrate";
559 case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK: return "Video Peak Bitrate";
Hans Verkuil09965172010-08-01 14:32:42 -0300560 case V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION: return "Video Temporal Decimation";
Mauro Carvalho Chehab6dd5aff2010-08-06 09:57:02 -0300561 case V4L2_CID_MPEG_VIDEO_MUTE: return "Video Mute";
Hans Verkuil09965172010-08-01 14:32:42 -0300562 case V4L2_CID_MPEG_VIDEO_MUTE_YUV: return "Video Mute YUV";
Kamil Debski064f5092011-06-14 10:46:22 -0300563 case V4L2_CID_MPEG_VIDEO_DECODER_SLICE_INTERFACE: return "Decoder Slice Interface";
564 case V4L2_CID_MPEG_VIDEO_DECODER_MPEG4_DEBLOCK_FILTER: return "MPEG4 Loop Filter Enable";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300565 case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB: return "Number of Intra Refresh MBs";
Kamil Debski064f5092011-06-14 10:46:22 -0300566 case V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE: return "Frame Level Rate Control Enable";
567 case V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE: return "H264 MB Level Rate Control";
568 case V4L2_CID_MPEG_VIDEO_HEADER_MODE: return "Sequence Header Mode";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300569 case V4L2_CID_MPEG_VIDEO_MAX_REF_PIC: return "Max Number of Reference Pics";
Kamil Debski064f5092011-06-14 10:46:22 -0300570 case V4L2_CID_MPEG_VIDEO_H263_I_FRAME_QP: return "H263 I-Frame QP Value";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300571 case V4L2_CID_MPEG_VIDEO_H263_P_FRAME_QP: return "H263 P-Frame QP Value";
572 case V4L2_CID_MPEG_VIDEO_H263_B_FRAME_QP: return "H263 B-Frame QP Value";
Kamil Debski064f5092011-06-14 10:46:22 -0300573 case V4L2_CID_MPEG_VIDEO_H263_MIN_QP: return "H263 Minimum QP Value";
574 case V4L2_CID_MPEG_VIDEO_H263_MAX_QP: return "H263 Maximum QP Value";
575 case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP: return "H264 I-Frame QP Value";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300576 case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP: return "H264 P-Frame QP Value";
577 case V4L2_CID_MPEG_VIDEO_H264_B_FRAME_QP: return "H264 B-Frame QP Value";
Kamil Debski064f5092011-06-14 10:46:22 -0300578 case V4L2_CID_MPEG_VIDEO_H264_MAX_QP: return "H264 Maximum QP Value";
579 case V4L2_CID_MPEG_VIDEO_H264_MIN_QP: return "H264 Minimum QP Value";
580 case V4L2_CID_MPEG_VIDEO_H264_8X8_TRANSFORM: return "H264 8x8 Transform Enable";
581 case V4L2_CID_MPEG_VIDEO_H264_CPB_SIZE: return "H264 CPB Buffer Size";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300582 case V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE: return "H264 Entropy Mode";
583 case V4L2_CID_MPEG_VIDEO_H264_I_PERIOD: return "H264 I-Frame Period";
Kamil Debski064f5092011-06-14 10:46:22 -0300584 case V4L2_CID_MPEG_VIDEO_H264_LEVEL: return "H264 Level";
585 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA: return "H264 Loop Filter Alpha Offset";
586 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA: return "H264 Loop Filter Beta Offset";
587 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE: return "H264 Loop Filter Mode";
588 case V4L2_CID_MPEG_VIDEO_H264_PROFILE: return "H264 Profile";
589 case V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_HEIGHT: return "Vertical Size of SAR";
590 case V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_WIDTH: return "Horizontal Size of SAR";
591 case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_ENABLE: return "Aspect Ratio VUI Enable";
592 case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC: return "VUI Aspect Ratio IDC";
593 case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP: return "MPEG4 I-Frame QP Value";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300594 case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP: return "MPEG4 P-Frame QP Value";
595 case V4L2_CID_MPEG_VIDEO_MPEG4_B_FRAME_QP: return "MPEG4 B-Frame QP Value";
Kamil Debski064f5092011-06-14 10:46:22 -0300596 case V4L2_CID_MPEG_VIDEO_MPEG4_MIN_QP: return "MPEG4 Minimum QP Value";
597 case V4L2_CID_MPEG_VIDEO_MPEG4_MAX_QP: return "MPEG4 Maximum QP Value";
598 case V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL: return "MPEG4 Level";
599 case V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE: return "MPEG4 Profile";
600 case V4L2_CID_MPEG_VIDEO_MPEG4_QPEL: return "Quarter Pixel Search Enable";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300601 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES: return "Maximum Bytes in a Slice";
602 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB: return "Number of MBs in a Slice";
603 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE: return "Slice Partitioning Method";
Kamil Debski064f5092011-06-14 10:46:22 -0300604 case V4L2_CID_MPEG_VIDEO_VBV_SIZE: return "VBV Buffer Size";
Hans Verkuil24c19a22011-12-15 10:46:16 -0300605 case V4L2_CID_MPEG_VIDEO_DEC_PTS: return "Video Decoder PTS";
606 case V4L2_CID_MPEG_VIDEO_DEC_FRAME: return "Video Decoder Frame Count";
Hans Verkuil09965172010-08-01 14:32:42 -0300607
608 /* CAMERA controls */
Hans Verkuil6c8d6112010-04-25 19:21:00 -0300609 /* Keep the order of the 'case's the same as in videodev2.h! */
Hans Verkuil09965172010-08-01 14:32:42 -0300610 case V4L2_CID_CAMERA_CLASS: return "Camera Controls";
611 case V4L2_CID_EXPOSURE_AUTO: return "Auto Exposure";
612 case V4L2_CID_EXPOSURE_ABSOLUTE: return "Exposure Time, Absolute";
613 case V4L2_CID_EXPOSURE_AUTO_PRIORITY: return "Exposure, Dynamic Framerate";
614 case V4L2_CID_PAN_RELATIVE: return "Pan, Relative";
615 case V4L2_CID_TILT_RELATIVE: return "Tilt, Relative";
616 case V4L2_CID_PAN_RESET: return "Pan, Reset";
617 case V4L2_CID_TILT_RESET: return "Tilt, Reset";
618 case V4L2_CID_PAN_ABSOLUTE: return "Pan, Absolute";
619 case V4L2_CID_TILT_ABSOLUTE: return "Tilt, Absolute";
620 case V4L2_CID_FOCUS_ABSOLUTE: return "Focus, Absolute";
621 case V4L2_CID_FOCUS_RELATIVE: return "Focus, Relative";
622 case V4L2_CID_FOCUS_AUTO: return "Focus, Automatic";
Hans Verkuil09965172010-08-01 14:32:42 -0300623 case V4L2_CID_ZOOM_ABSOLUTE: return "Zoom, Absolute";
624 case V4L2_CID_ZOOM_RELATIVE: return "Zoom, Relative";
625 case V4L2_CID_ZOOM_CONTINUOUS: return "Zoom, Continuous";
626 case V4L2_CID_PRIVACY: return "Privacy";
Hans Verkuil6c8d6112010-04-25 19:21:00 -0300627 case V4L2_CID_IRIS_ABSOLUTE: return "Iris, Absolute";
628 case V4L2_CID_IRIS_RELATIVE: return "Iris, Relative";
Sylwester Nawrockid58083c2012-03-06 07:06:55 -0300629 case V4L2_CID_AUTO_EXPOSURE_BIAS: return "Auto Exposure, Bias";
Sylwester Nawrockie40a0572012-03-06 07:04:26 -0300630 case V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE: return "White Balance, Auto & Preset";
Sylwester Nawrocki44d44a12012-03-06 07:05:45 -0300631 case V4L2_CID_WIDE_DYNAMIC_RANGE: return "Wide Dynamic Range";
Sylwester Nawrocki82b30562012-05-01 17:38:09 -0300632 case V4L2_CID_IMAGE_STABILIZATION: return "Image Stabilization";
Sylwester Nawrocki7f84ad82012-05-01 17:39:45 -0300633 case V4L2_CID_ISO_SENSITIVITY: return "ISO Sensitivity";
634 case V4L2_CID_ISO_SENSITIVITY_AUTO: return "ISO Sensitivity, Auto";
Hans Verkuil09965172010-08-01 14:32:42 -0300635
636 /* FM Radio Modulator control */
Hans Verkuil6c8d6112010-04-25 19:21:00 -0300637 /* Keep the order of the 'case's the same as in videodev2.h! */
Hans Verkuil09965172010-08-01 14:32:42 -0300638 case V4L2_CID_FM_TX_CLASS: return "FM Radio Modulator Controls";
639 case V4L2_CID_RDS_TX_DEVIATION: return "RDS Signal Deviation";
640 case V4L2_CID_RDS_TX_PI: return "RDS Program ID";
641 case V4L2_CID_RDS_TX_PTY: return "RDS Program Type";
642 case V4L2_CID_RDS_TX_PS_NAME: return "RDS PS Name";
643 case V4L2_CID_RDS_TX_RADIO_TEXT: return "RDS Radio Text";
644 case V4L2_CID_AUDIO_LIMITER_ENABLED: return "Audio Limiter Feature Enabled";
645 case V4L2_CID_AUDIO_LIMITER_RELEASE_TIME: return "Audio Limiter Release Time";
646 case V4L2_CID_AUDIO_LIMITER_DEVIATION: return "Audio Limiter Deviation";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300647 case V4L2_CID_AUDIO_COMPRESSION_ENABLED: return "Audio Compression Enabled";
Hans Verkuil09965172010-08-01 14:32:42 -0300648 case V4L2_CID_AUDIO_COMPRESSION_GAIN: return "Audio Compression Gain";
649 case V4L2_CID_AUDIO_COMPRESSION_THRESHOLD: return "Audio Compression Threshold";
650 case V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME: return "Audio Compression Attack Time";
651 case V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME: return "Audio Compression Release Time";
652 case V4L2_CID_PILOT_TONE_ENABLED: return "Pilot Tone Feature Enabled";
653 case V4L2_CID_PILOT_TONE_DEVIATION: return "Pilot Tone Deviation";
654 case V4L2_CID_PILOT_TONE_FREQUENCY: return "Pilot Tone Frequency";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300655 case V4L2_CID_TUNE_PREEMPHASIS: return "Pre-Emphasis";
Hans Verkuil09965172010-08-01 14:32:42 -0300656 case V4L2_CID_TUNE_POWER_LEVEL: return "Tune Power Level";
657 case V4L2_CID_TUNE_ANTENNA_CAPACITOR: return "Tune Antenna Capacitor";
658
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300659 /* Flash controls */
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300660 case V4L2_CID_FLASH_CLASS: return "Flash Controls";
661 case V4L2_CID_FLASH_LED_MODE: return "LED Mode";
662 case V4L2_CID_FLASH_STROBE_SOURCE: return "Strobe Source";
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300663 case V4L2_CID_FLASH_STROBE: return "Strobe";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300664 case V4L2_CID_FLASH_STROBE_STOP: return "Stop Strobe";
665 case V4L2_CID_FLASH_STROBE_STATUS: return "Strobe Status";
666 case V4L2_CID_FLASH_TIMEOUT: return "Strobe Timeout";
667 case V4L2_CID_FLASH_INTENSITY: return "Intensity, Flash Mode";
668 case V4L2_CID_FLASH_TORCH_INTENSITY: return "Intensity, Torch Mode";
669 case V4L2_CID_FLASH_INDICATOR_INTENSITY: return "Intensity, Indicator";
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300670 case V4L2_CID_FLASH_FAULT: return "Faults";
671 case V4L2_CID_FLASH_CHARGE: return "Charge";
Hans Verkuilf08aacf2012-01-16 12:27:15 -0300672 case V4L2_CID_FLASH_READY: return "Ready to Strobe";
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300673
Sylwester Nawrockic7361ae2012-01-20 15:37:44 -0300674 /* JPEG encoder controls */
675 /* Keep the order of the 'case's the same as in videodev2.h! */
676 case V4L2_CID_JPEG_CLASS: return "JPEG Compression Controls";
677 case V4L2_CID_JPEG_CHROMA_SUBSAMPLING: return "Chroma Subsampling";
678 case V4L2_CID_JPEG_RESTART_INTERVAL: return "Restart Interval";
679 case V4L2_CID_JPEG_COMPRESSION_QUALITY: return "Compression Quality";
680 case V4L2_CID_JPEG_ACTIVE_MARKER: return "Active Markers";
681
Sakari Ailus8c9d2362011-10-04 08:20:05 -0300682 /* Image source controls */
683 case V4L2_CID_IMAGE_SOURCE_CLASS: return "Image Source Controls";
684 case V4L2_CID_VBLANK: return "Vertical Blanking";
685 case V4L2_CID_HBLANK: return "Horizontal Blanking";
686 case V4L2_CID_ANALOGUE_GAIN: return "Analogue Gain";
687
Sakari Ailusc643ee12012-02-02 20:17:54 -0300688 /* Image processing controls */
689 case V4L2_CID_IMAGE_PROC_CLASS: return "Image Processing Controls";
690 case V4L2_CID_LINK_FREQ: return "Link Frequency";
691 case V4L2_CID_PIXEL_RATE: return "Pixel Rate";
692
Hans Verkuil09965172010-08-01 14:32:42 -0300693 default:
694 return NULL;
695 }
696}
697EXPORT_SYMBOL(v4l2_ctrl_get_name);
698
699void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
700 s32 *min, s32 *max, s32 *step, s32 *def, u32 *flags)
701{
702 *name = v4l2_ctrl_get_name(id);
703 *flags = 0;
704
705 switch (id) {
706 case V4L2_CID_AUDIO_MUTE:
707 case V4L2_CID_AUDIO_LOUDNESS:
708 case V4L2_CID_AUTO_WHITE_BALANCE:
709 case V4L2_CID_AUTOGAIN:
710 case V4L2_CID_HFLIP:
711 case V4L2_CID_VFLIP:
712 case V4L2_CID_HUE_AUTO:
713 case V4L2_CID_CHROMA_AGC:
714 case V4L2_CID_COLOR_KILLER:
715 case V4L2_CID_MPEG_AUDIO_MUTE:
716 case V4L2_CID_MPEG_VIDEO_MUTE:
717 case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE:
718 case V4L2_CID_MPEG_VIDEO_PULLDOWN:
719 case V4L2_CID_EXPOSURE_AUTO_PRIORITY:
720 case V4L2_CID_FOCUS_AUTO:
721 case V4L2_CID_PRIVACY:
722 case V4L2_CID_AUDIO_LIMITER_ENABLED:
723 case V4L2_CID_AUDIO_COMPRESSION_ENABLED:
724 case V4L2_CID_PILOT_TONE_ENABLED:
Jean-François Moine008d35f2010-09-13 07:04:49 -0300725 case V4L2_CID_ILLUMINATORS_1:
726 case V4L2_CID_ILLUMINATORS_2:
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300727 case V4L2_CID_FLASH_STROBE_STATUS:
728 case V4L2_CID_FLASH_CHARGE:
729 case V4L2_CID_FLASH_READY:
Kamil Debski064f5092011-06-14 10:46:22 -0300730 case V4L2_CID_MPEG_VIDEO_DECODER_MPEG4_DEBLOCK_FILTER:
731 case V4L2_CID_MPEG_VIDEO_DECODER_SLICE_INTERFACE:
732 case V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE:
733 case V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE:
734 case V4L2_CID_MPEG_VIDEO_H264_8X8_TRANSFORM:
735 case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_ENABLE:
736 case V4L2_CID_MPEG_VIDEO_MPEG4_QPEL:
Sylwester Nawrocki44d44a12012-03-06 07:05:45 -0300737 case V4L2_CID_WIDE_DYNAMIC_RANGE:
Sylwester Nawrocki82b30562012-05-01 17:38:09 -0300738 case V4L2_CID_IMAGE_STABILIZATION:
Hans Verkuil09965172010-08-01 14:32:42 -0300739 *type = V4L2_CTRL_TYPE_BOOLEAN;
740 *min = 0;
741 *max = *step = 1;
742 break;
743 case V4L2_CID_PAN_RESET:
744 case V4L2_CID_TILT_RESET:
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300745 case V4L2_CID_FLASH_STROBE:
746 case V4L2_CID_FLASH_STROBE_STOP:
Hans Verkuil09965172010-08-01 14:32:42 -0300747 *type = V4L2_CTRL_TYPE_BUTTON;
748 *flags |= V4L2_CTRL_FLAG_WRITE_ONLY;
749 *min = *max = *step = *def = 0;
750 break;
751 case V4L2_CID_POWER_LINE_FREQUENCY:
752 case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
753 case V4L2_CID_MPEG_AUDIO_ENCODING:
754 case V4L2_CID_MPEG_AUDIO_L1_BITRATE:
755 case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
756 case V4L2_CID_MPEG_AUDIO_L3_BITRATE:
757 case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
758 case V4L2_CID_MPEG_AUDIO_MODE:
759 case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION:
760 case V4L2_CID_MPEG_AUDIO_EMPHASIS:
761 case V4L2_CID_MPEG_AUDIO_CRC:
Hans Verkuil24c19a22011-12-15 10:46:16 -0300762 case V4L2_CID_MPEG_AUDIO_DEC_PLAYBACK:
763 case V4L2_CID_MPEG_AUDIO_DEC_MULTILINGUAL_PLAYBACK:
Hans Verkuil09965172010-08-01 14:32:42 -0300764 case V4L2_CID_MPEG_VIDEO_ENCODING:
765 case V4L2_CID_MPEG_VIDEO_ASPECT:
766 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
767 case V4L2_CID_MPEG_STREAM_TYPE:
768 case V4L2_CID_MPEG_STREAM_VBI_FMT:
769 case V4L2_CID_EXPOSURE_AUTO:
770 case V4L2_CID_COLORFX:
Sylwester Nawrockie40a0572012-03-06 07:04:26 -0300771 case V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE:
Hans Verkuil09965172010-08-01 14:32:42 -0300772 case V4L2_CID_TUNE_PREEMPHASIS:
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300773 case V4L2_CID_FLASH_LED_MODE:
774 case V4L2_CID_FLASH_STROBE_SOURCE:
Kamil Debski064f5092011-06-14 10:46:22 -0300775 case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
776 case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
777 case V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE:
778 case V4L2_CID_MPEG_VIDEO_H264_LEVEL:
779 case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
780 case V4L2_CID_MPEG_VIDEO_H264_PROFILE:
781 case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC:
782 case V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL:
783 case V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE:
Sylwester Nawrockic7361ae2012-01-20 15:37:44 -0300784 case V4L2_CID_JPEG_CHROMA_SUBSAMPLING:
Sylwester Nawrocki7f84ad82012-05-01 17:39:45 -0300785 case V4L2_CID_ISO_SENSITIVITY_AUTO:
Hans Verkuil09965172010-08-01 14:32:42 -0300786 *type = V4L2_CTRL_TYPE_MENU;
787 break;
Sakari Ailusc643ee12012-02-02 20:17:54 -0300788 case V4L2_CID_LINK_FREQ:
789 *type = V4L2_CTRL_TYPE_INTEGER_MENU;
790 break;
Hans Verkuil09965172010-08-01 14:32:42 -0300791 case V4L2_CID_RDS_TX_PS_NAME:
792 case V4L2_CID_RDS_TX_RADIO_TEXT:
793 *type = V4L2_CTRL_TYPE_STRING;
794 break;
Sylwester Nawrocki7f84ad82012-05-01 17:39:45 -0300795 case V4L2_CID_ISO_SENSITIVITY:
Sylwester Nawrockid58083c2012-03-06 07:06:55 -0300796 case V4L2_CID_AUTO_EXPOSURE_BIAS:
797 *type = V4L2_CTRL_TYPE_INTEGER_MENU;
798 break;
Hans Verkuil09965172010-08-01 14:32:42 -0300799 case V4L2_CID_USER_CLASS:
800 case V4L2_CID_CAMERA_CLASS:
801 case V4L2_CID_MPEG_CLASS:
802 case V4L2_CID_FM_TX_CLASS:
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300803 case V4L2_CID_FLASH_CLASS:
Sylwester Nawrockic7361ae2012-01-20 15:37:44 -0300804 case V4L2_CID_JPEG_CLASS:
Sakari Ailus8c9d2362011-10-04 08:20:05 -0300805 case V4L2_CID_IMAGE_SOURCE_CLASS:
Sakari Ailusc643ee12012-02-02 20:17:54 -0300806 case V4L2_CID_IMAGE_PROC_CLASS:
Hans Verkuil09965172010-08-01 14:32:42 -0300807 *type = V4L2_CTRL_TYPE_CTRL_CLASS;
808 /* You can neither read not write these */
809 *flags |= V4L2_CTRL_FLAG_READ_ONLY | V4L2_CTRL_FLAG_WRITE_ONLY;
810 *min = *max = *step = *def = 0;
811 break;
812 case V4L2_CID_BG_COLOR:
813 *type = V4L2_CTRL_TYPE_INTEGER;
814 *step = 1;
815 *min = 0;
816 /* Max is calculated as RGB888 that is 2^24 */
817 *max = 0xFFFFFF;
818 break;
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300819 case V4L2_CID_FLASH_FAULT:
Sylwester Nawrockic7361ae2012-01-20 15:37:44 -0300820 case V4L2_CID_JPEG_ACTIVE_MARKER:
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300821 *type = V4L2_CTRL_TYPE_BITMASK;
822 break;
Kamil Debski064f5092011-06-14 10:46:22 -0300823 case V4L2_CID_MIN_BUFFERS_FOR_CAPTURE:
824 case V4L2_CID_MIN_BUFFERS_FOR_OUTPUT:
825 *type = V4L2_CTRL_TYPE_INTEGER;
826 *flags |= V4L2_CTRL_FLAG_READ_ONLY;
827 break;
Hans Verkuil24c19a22011-12-15 10:46:16 -0300828 case V4L2_CID_MPEG_VIDEO_DEC_FRAME:
829 case V4L2_CID_MPEG_VIDEO_DEC_PTS:
Sakari Ailusc643ee12012-02-02 20:17:54 -0300830 *flags |= V4L2_CTRL_FLAG_VOLATILE;
831 /* Fall through */
832 case V4L2_CID_PIXEL_RATE:
Hans Verkuil24c19a22011-12-15 10:46:16 -0300833 *type = V4L2_CTRL_TYPE_INTEGER64;
Sakari Ailusc643ee12012-02-02 20:17:54 -0300834 *flags |= V4L2_CTRL_FLAG_READ_ONLY;
Hans Verkuilca576812012-04-19 12:37:18 -0300835 *min = *max = *step = *def = 0;
Hans Verkuil24c19a22011-12-15 10:46:16 -0300836 break;
Hans Verkuil09965172010-08-01 14:32:42 -0300837 default:
838 *type = V4L2_CTRL_TYPE_INTEGER;
839 break;
840 }
841 switch (id) {
842 case V4L2_CID_MPEG_AUDIO_ENCODING:
843 case V4L2_CID_MPEG_AUDIO_MODE:
844 case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
845 case V4L2_CID_MPEG_VIDEO_B_FRAMES:
846 case V4L2_CID_MPEG_STREAM_TYPE:
847 *flags |= V4L2_CTRL_FLAG_UPDATE;
848 break;
849 case V4L2_CID_AUDIO_VOLUME:
850 case V4L2_CID_AUDIO_BALANCE:
851 case V4L2_CID_AUDIO_BASS:
852 case V4L2_CID_AUDIO_TREBLE:
853 case V4L2_CID_BRIGHTNESS:
854 case V4L2_CID_CONTRAST:
855 case V4L2_CID_SATURATION:
856 case V4L2_CID_HUE:
857 case V4L2_CID_RED_BALANCE:
858 case V4L2_CID_BLUE_BALANCE:
859 case V4L2_CID_GAMMA:
860 case V4L2_CID_SHARPNESS:
861 case V4L2_CID_CHROMA_GAIN:
862 case V4L2_CID_RDS_TX_DEVIATION:
863 case V4L2_CID_AUDIO_LIMITER_RELEASE_TIME:
864 case V4L2_CID_AUDIO_LIMITER_DEVIATION:
865 case V4L2_CID_AUDIO_COMPRESSION_GAIN:
866 case V4L2_CID_AUDIO_COMPRESSION_THRESHOLD:
867 case V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME:
868 case V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME:
869 case V4L2_CID_PILOT_TONE_DEVIATION:
870 case V4L2_CID_PILOT_TONE_FREQUENCY:
871 case V4L2_CID_TUNE_POWER_LEVEL:
872 case V4L2_CID_TUNE_ANTENNA_CAPACITOR:
873 *flags |= V4L2_CTRL_FLAG_SLIDER;
874 break;
875 case V4L2_CID_PAN_RELATIVE:
876 case V4L2_CID_TILT_RELATIVE:
877 case V4L2_CID_FOCUS_RELATIVE:
878 case V4L2_CID_IRIS_RELATIVE:
879 case V4L2_CID_ZOOM_RELATIVE:
880 *flags |= V4L2_CTRL_FLAG_WRITE_ONLY;
881 break;
Sakari Ailus0b159ac2011-03-21 12:52:51 -0300882 case V4L2_CID_FLASH_STROBE_STATUS:
883 case V4L2_CID_FLASH_READY:
884 *flags |= V4L2_CTRL_FLAG_READ_ONLY;
885 break;
Hans Verkuil09965172010-08-01 14:32:42 -0300886 }
887}
888EXPORT_SYMBOL(v4l2_ctrl_fill);
889
890/* Helper function to determine whether the control type is compatible with
891 VIDIOC_G/S_CTRL. */
892static bool type_is_int(const struct v4l2_ctrl *ctrl)
893{
894 switch (ctrl->type) {
895 case V4L2_CTRL_TYPE_INTEGER64:
896 case V4L2_CTRL_TYPE_STRING:
897 /* Nope, these need v4l2_ext_control */
898 return false;
899 default:
900 return true;
901 }
902}
903
Hans Verkuil6e239392011-06-07 11:13:44 -0300904static void fill_event(struct v4l2_event *ev, struct v4l2_ctrl *ctrl, u32 changes)
905{
906 memset(ev->reserved, 0, sizeof(ev->reserved));
907 ev->type = V4L2_EVENT_CTRL;
908 ev->id = ctrl->id;
909 ev->u.ctrl.changes = changes;
910 ev->u.ctrl.type = ctrl->type;
911 ev->u.ctrl.flags = ctrl->flags;
912 if (ctrl->type == V4L2_CTRL_TYPE_STRING)
913 ev->u.ctrl.value64 = 0;
914 else
915 ev->u.ctrl.value64 = ctrl->cur.val64;
916 ev->u.ctrl.minimum = ctrl->minimum;
917 ev->u.ctrl.maximum = ctrl->maximum;
Sakari Ailusce580fe2011-08-04 13:51:11 -0300918 if (ctrl->type == V4L2_CTRL_TYPE_MENU
919 || ctrl->type == V4L2_CTRL_TYPE_INTEGER_MENU)
Hans Verkuil6e239392011-06-07 11:13:44 -0300920 ev->u.ctrl.step = 1;
921 else
922 ev->u.ctrl.step = ctrl->step;
923 ev->u.ctrl.default_value = ctrl->default_value;
924}
925
926static void send_event(struct v4l2_fh *fh, struct v4l2_ctrl *ctrl, u32 changes)
927{
928 struct v4l2_event ev;
Hans Verkuil77068d32011-06-13 18:55:58 -0300929 struct v4l2_subscribed_event *sev;
Hans Verkuil6e239392011-06-07 11:13:44 -0300930
Hans Verkuil77068d32011-06-13 18:55:58 -0300931 if (list_empty(&ctrl->ev_subs))
Hans Verkuil3f66f0e2011-06-20 11:56:24 -0300932 return;
Hans Verkuil6e239392011-06-07 11:13:44 -0300933 fill_event(&ev, ctrl, changes);
934
Hans Verkuil77068d32011-06-13 18:55:58 -0300935 list_for_each_entry(sev, &ctrl->ev_subs, node)
Hans de Goedee3e72f392011-10-26 05:52:47 -0300936 if (sev->fh != fh ||
937 (sev->flags & V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK))
Hans Verkuil77068d32011-06-13 18:55:58 -0300938 v4l2_event_queue_fh(sev->fh, &ev);
Hans Verkuil6e239392011-06-07 11:13:44 -0300939}
940
Hans Verkuil09965172010-08-01 14:32:42 -0300941/* Helper function: copy the current control value back to the caller */
942static int cur_to_user(struct v4l2_ext_control *c,
943 struct v4l2_ctrl *ctrl)
944{
945 u32 len;
946
947 switch (ctrl->type) {
948 case V4L2_CTRL_TYPE_STRING:
949 len = strlen(ctrl->cur.string);
950 if (c->size < len + 1) {
951 c->size = len + 1;
952 return -ENOSPC;
953 }
954 return copy_to_user(c->string, ctrl->cur.string,
955 len + 1) ? -EFAULT : 0;
956 case V4L2_CTRL_TYPE_INTEGER64:
957 c->value64 = ctrl->cur.val64;
958 break;
959 default:
960 c->value = ctrl->cur.val;
961 break;
962 }
963 return 0;
964}
965
966/* Helper function: copy the caller-provider value as the new control value */
967static int user_to_new(struct v4l2_ext_control *c,
968 struct v4l2_ctrl *ctrl)
969{
970 int ret;
971 u32 size;
972
Hans Verkuil2a863792011-01-11 14:45:03 -0300973 ctrl->is_new = 1;
Hans Verkuil09965172010-08-01 14:32:42 -0300974 switch (ctrl->type) {
975 case V4L2_CTRL_TYPE_INTEGER64:
976 ctrl->val64 = c->value64;
977 break;
978 case V4L2_CTRL_TYPE_STRING:
979 size = c->size;
980 if (size == 0)
981 return -ERANGE;
982 if (size > ctrl->maximum + 1)
983 size = ctrl->maximum + 1;
984 ret = copy_from_user(ctrl->string, c->string, size);
985 if (!ret) {
986 char last = ctrl->string[size - 1];
987
988 ctrl->string[size - 1] = 0;
989 /* If the string was longer than ctrl->maximum,
990 then return an error. */
991 if (strlen(ctrl->string) == ctrl->maximum && last)
992 return -ERANGE;
993 }
994 return ret ? -EFAULT : 0;
995 default:
996 ctrl->val = c->value;
997 break;
998 }
999 return 0;
1000}
1001
1002/* Helper function: copy the new control value back to the caller */
1003static int new_to_user(struct v4l2_ext_control *c,
1004 struct v4l2_ctrl *ctrl)
1005{
1006 u32 len;
1007
1008 switch (ctrl->type) {
1009 case V4L2_CTRL_TYPE_STRING:
1010 len = strlen(ctrl->string);
1011 if (c->size < len + 1) {
1012 c->size = ctrl->maximum + 1;
1013 return -ENOSPC;
1014 }
1015 return copy_to_user(c->string, ctrl->string,
1016 len + 1) ? -EFAULT : 0;
1017 case V4L2_CTRL_TYPE_INTEGER64:
1018 c->value64 = ctrl->val64;
1019 break;
1020 default:
1021 c->value = ctrl->val;
1022 break;
1023 }
1024 return 0;
1025}
1026
1027/* Copy the new value to the current value. */
Hans Verkuilab892ba2011-06-07 06:47:18 -03001028static void new_to_cur(struct v4l2_fh *fh, struct v4l2_ctrl *ctrl,
1029 bool update_inactive)
Hans Verkuil09965172010-08-01 14:32:42 -03001030{
Hans Verkuil6e239392011-06-07 11:13:44 -03001031 bool changed = false;
1032
Hans Verkuil09965172010-08-01 14:32:42 -03001033 if (ctrl == NULL)
1034 return;
1035 switch (ctrl->type) {
Hans Verkuil6e239392011-06-07 11:13:44 -03001036 case V4L2_CTRL_TYPE_BUTTON:
1037 changed = true;
1038 break;
Hans Verkuil09965172010-08-01 14:32:42 -03001039 case V4L2_CTRL_TYPE_STRING:
1040 /* strings are always 0-terminated */
Hans Verkuil6e239392011-06-07 11:13:44 -03001041 changed = strcmp(ctrl->string, ctrl->cur.string);
Hans Verkuil09965172010-08-01 14:32:42 -03001042 strcpy(ctrl->cur.string, ctrl->string);
1043 break;
1044 case V4L2_CTRL_TYPE_INTEGER64:
Hans Verkuil6e239392011-06-07 11:13:44 -03001045 changed = ctrl->val64 != ctrl->cur.val64;
Hans Verkuil09965172010-08-01 14:32:42 -03001046 ctrl->cur.val64 = ctrl->val64;
1047 break;
1048 default:
Hans Verkuil6e239392011-06-07 11:13:44 -03001049 changed = ctrl->val != ctrl->cur.val;
Hans Verkuil09965172010-08-01 14:32:42 -03001050 ctrl->cur.val = ctrl->val;
1051 break;
1052 }
Hans Verkuil72d877c2011-06-10 05:44:36 -03001053 if (update_inactive) {
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001054 /* Note: update_inactive can only be true for auto clusters. */
1055 ctrl->flags &=
1056 ~(V4L2_CTRL_FLAG_INACTIVE | V4L2_CTRL_FLAG_VOLATILE);
1057 if (!is_cur_manual(ctrl->cluster[0])) {
Hans Verkuil72d877c2011-06-10 05:44:36 -03001058 ctrl->flags |= V4L2_CTRL_FLAG_INACTIVE;
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001059 if (ctrl->cluster[0]->has_volatiles)
1060 ctrl->flags |= V4L2_CTRL_FLAG_VOLATILE;
1061 }
Hans de Goede1249a3a2011-10-31 11:16:44 -03001062 fh = NULL;
Hans Verkuil72d877c2011-06-10 05:44:36 -03001063 }
Hans Verkuil639884a2011-07-05 07:09:26 -03001064 if (changed || update_inactive) {
1065 /* If a control was changed that was not one of the controls
1066 modified by the application, then send the event to all. */
1067 if (!ctrl->is_new)
1068 fh = NULL;
Hans Verkuil6e239392011-06-07 11:13:44 -03001069 send_event(fh, ctrl,
1070 (changed ? V4L2_EVENT_CTRL_CH_VALUE : 0) |
1071 (update_inactive ? V4L2_EVENT_CTRL_CH_FLAGS : 0));
Hans Verkuil639884a2011-07-05 07:09:26 -03001072 }
Hans Verkuil09965172010-08-01 14:32:42 -03001073}
1074
1075/* Copy the current value to the new value */
1076static void cur_to_new(struct v4l2_ctrl *ctrl)
1077{
1078 if (ctrl == NULL)
1079 return;
1080 switch (ctrl->type) {
1081 case V4L2_CTRL_TYPE_STRING:
1082 /* strings are always 0-terminated */
1083 strcpy(ctrl->string, ctrl->cur.string);
1084 break;
1085 case V4L2_CTRL_TYPE_INTEGER64:
1086 ctrl->val64 = ctrl->cur.val64;
1087 break;
1088 default:
1089 ctrl->val = ctrl->cur.val;
1090 break;
1091 }
1092}
1093
1094/* Return non-zero if one or more of the controls in the cluster has a new
1095 value that differs from the current value. */
1096static int cluster_changed(struct v4l2_ctrl *master)
1097{
1098 int diff = 0;
1099 int i;
1100
1101 for (i = 0; !diff && i < master->ncontrols; i++) {
1102 struct v4l2_ctrl *ctrl = master->cluster[i];
1103
1104 if (ctrl == NULL)
1105 continue;
1106 switch (ctrl->type) {
1107 case V4L2_CTRL_TYPE_BUTTON:
1108 /* Button controls are always 'different' */
1109 return 1;
1110 case V4L2_CTRL_TYPE_STRING:
1111 /* strings are always 0-terminated */
1112 diff = strcmp(ctrl->string, ctrl->cur.string);
1113 break;
1114 case V4L2_CTRL_TYPE_INTEGER64:
1115 diff = ctrl->val64 != ctrl->cur.val64;
1116 break;
1117 default:
1118 diff = ctrl->val != ctrl->cur.val;
1119 break;
1120 }
1121 }
1122 return diff;
1123}
1124
Hans Verkuileb5b16e2011-06-14 10:04:06 -03001125/* Validate integer-type control */
1126static int validate_new_int(const struct v4l2_ctrl *ctrl, s32 *pval)
Hans Verkuil09965172010-08-01 14:32:42 -03001127{
Hans Verkuileb5b16e2011-06-14 10:04:06 -03001128 s32 val = *pval;
Hans Verkuil09965172010-08-01 14:32:42 -03001129 u32 offset;
Hans Verkuil09965172010-08-01 14:32:42 -03001130
1131 switch (ctrl->type) {
1132 case V4L2_CTRL_TYPE_INTEGER:
1133 /* Round towards the closest legal value */
1134 val += ctrl->step / 2;
1135 if (val < ctrl->minimum)
1136 val = ctrl->minimum;
1137 if (val > ctrl->maximum)
1138 val = ctrl->maximum;
1139 offset = val - ctrl->minimum;
1140 offset = ctrl->step * (offset / ctrl->step);
1141 val = ctrl->minimum + offset;
Hans Verkuileb5b16e2011-06-14 10:04:06 -03001142 *pval = val;
Hans Verkuil09965172010-08-01 14:32:42 -03001143 return 0;
1144
1145 case V4L2_CTRL_TYPE_BOOLEAN:
Hans Verkuileb5b16e2011-06-14 10:04:06 -03001146 *pval = !!val;
Hans Verkuil09965172010-08-01 14:32:42 -03001147 return 0;
1148
1149 case V4L2_CTRL_TYPE_MENU:
Sakari Ailusce580fe2011-08-04 13:51:11 -03001150 case V4L2_CTRL_TYPE_INTEGER_MENU:
Hans Verkuil09965172010-08-01 14:32:42 -03001151 if (val < ctrl->minimum || val > ctrl->maximum)
1152 return -ERANGE;
Sakari Ailusce580fe2011-08-04 13:51:11 -03001153 if (ctrl->menu_skip_mask & (1 << val))
1154 return -EINVAL;
1155 if (ctrl->type == V4L2_CTRL_TYPE_MENU &&
1156 ctrl->qmenu[val][0] == '\0')
Hans Verkuil09965172010-08-01 14:32:42 -03001157 return -EINVAL;
1158 return 0;
1159
Hans Verkuilfa4d7092011-05-23 04:07:05 -03001160 case V4L2_CTRL_TYPE_BITMASK:
1161 *pval &= ctrl->maximum;
1162 return 0;
1163
Hans Verkuil09965172010-08-01 14:32:42 -03001164 case V4L2_CTRL_TYPE_BUTTON:
1165 case V4L2_CTRL_TYPE_CTRL_CLASS:
Hans Verkuileb5b16e2011-06-14 10:04:06 -03001166 *pval = 0;
Hans Verkuil09965172010-08-01 14:32:42 -03001167 return 0;
1168
Hans Verkuileb5b16e2011-06-14 10:04:06 -03001169 default:
1170 return -EINVAL;
1171 }
1172}
1173
1174/* Validate a new control */
1175static int validate_new(const struct v4l2_ctrl *ctrl, struct v4l2_ext_control *c)
1176{
1177 char *s = c->string;
1178 size_t len;
1179
1180 switch (ctrl->type) {
1181 case V4L2_CTRL_TYPE_INTEGER:
1182 case V4L2_CTRL_TYPE_BOOLEAN:
1183 case V4L2_CTRL_TYPE_MENU:
Sakari Ailusce580fe2011-08-04 13:51:11 -03001184 case V4L2_CTRL_TYPE_INTEGER_MENU:
Hans Verkuilfa4d7092011-05-23 04:07:05 -03001185 case V4L2_CTRL_TYPE_BITMASK:
Hans Verkuileb5b16e2011-06-14 10:04:06 -03001186 case V4L2_CTRL_TYPE_BUTTON:
1187 case V4L2_CTRL_TYPE_CTRL_CLASS:
1188 return validate_new_int(ctrl, &c->value);
1189
Hans Verkuil09965172010-08-01 14:32:42 -03001190 case V4L2_CTRL_TYPE_INTEGER64:
1191 return 0;
1192
1193 case V4L2_CTRL_TYPE_STRING:
1194 len = strlen(s);
1195 if (len < ctrl->minimum)
1196 return -ERANGE;
1197 if ((len - ctrl->minimum) % ctrl->step)
1198 return -ERANGE;
1199 return 0;
1200
1201 default:
1202 return -EINVAL;
1203 }
1204}
1205
1206static inline u32 node2id(struct list_head *node)
1207{
1208 return list_entry(node, struct v4l2_ctrl_ref, node)->ctrl->id;
1209}
1210
1211/* Set the handler's error code if it wasn't set earlier already */
1212static inline int handler_set_err(struct v4l2_ctrl_handler *hdl, int err)
1213{
1214 if (hdl->error == 0)
1215 hdl->error = err;
1216 return err;
1217}
1218
1219/* Initialize the handler */
1220int v4l2_ctrl_handler_init(struct v4l2_ctrl_handler *hdl,
1221 unsigned nr_of_controls_hint)
1222{
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001223 hdl->lock = &hdl->_lock;
1224 mutex_init(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001225 INIT_LIST_HEAD(&hdl->ctrls);
1226 INIT_LIST_HEAD(&hdl->ctrl_refs);
1227 hdl->nr_of_buckets = 1 + nr_of_controls_hint / 8;
Thomas Meyer9884d7b2011-11-29 17:08:00 -03001228 hdl->buckets = kcalloc(hdl->nr_of_buckets, sizeof(hdl->buckets[0]),
1229 GFP_KERNEL);
Hans Verkuil09965172010-08-01 14:32:42 -03001230 hdl->error = hdl->buckets ? 0 : -ENOMEM;
1231 return hdl->error;
1232}
1233EXPORT_SYMBOL(v4l2_ctrl_handler_init);
1234
1235/* Free all controls and control refs */
1236void v4l2_ctrl_handler_free(struct v4l2_ctrl_handler *hdl)
1237{
1238 struct v4l2_ctrl_ref *ref, *next_ref;
1239 struct v4l2_ctrl *ctrl, *next_ctrl;
Hans Verkuil77068d32011-06-13 18:55:58 -03001240 struct v4l2_subscribed_event *sev, *next_sev;
Hans Verkuil09965172010-08-01 14:32:42 -03001241
1242 if (hdl == NULL || hdl->buckets == NULL)
1243 return;
1244
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001245 mutex_lock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001246 /* Free all nodes */
1247 list_for_each_entry_safe(ref, next_ref, &hdl->ctrl_refs, node) {
1248 list_del(&ref->node);
1249 kfree(ref);
1250 }
1251 /* Free all controls owned by the handler */
1252 list_for_each_entry_safe(ctrl, next_ctrl, &hdl->ctrls, node) {
1253 list_del(&ctrl->node);
Hans Verkuil77068d32011-06-13 18:55:58 -03001254 list_for_each_entry_safe(sev, next_sev, &ctrl->ev_subs, node)
1255 list_del(&sev->node);
Hans Verkuil09965172010-08-01 14:32:42 -03001256 kfree(ctrl);
1257 }
1258 kfree(hdl->buckets);
1259 hdl->buckets = NULL;
1260 hdl->cached = NULL;
1261 hdl->error = 0;
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001262 mutex_unlock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001263}
1264EXPORT_SYMBOL(v4l2_ctrl_handler_free);
1265
1266/* For backwards compatibility: V4L2_CID_PRIVATE_BASE should no longer
1267 be used except in G_CTRL, S_CTRL, QUERYCTRL and QUERYMENU when dealing
1268 with applications that do not use the NEXT_CTRL flag.
1269
1270 We just find the n-th private user control. It's O(N), but that should not
1271 be an issue in this particular case. */
1272static struct v4l2_ctrl_ref *find_private_ref(
1273 struct v4l2_ctrl_handler *hdl, u32 id)
1274{
1275 struct v4l2_ctrl_ref *ref;
1276
1277 id -= V4L2_CID_PRIVATE_BASE;
1278 list_for_each_entry(ref, &hdl->ctrl_refs, node) {
1279 /* Search for private user controls that are compatible with
1280 VIDIOC_G/S_CTRL. */
1281 if (V4L2_CTRL_ID2CLASS(ref->ctrl->id) == V4L2_CTRL_CLASS_USER &&
1282 V4L2_CTRL_DRIVER_PRIV(ref->ctrl->id)) {
1283 if (!type_is_int(ref->ctrl))
1284 continue;
1285 if (id == 0)
1286 return ref;
1287 id--;
1288 }
1289 }
1290 return NULL;
1291}
1292
1293/* Find a control with the given ID. */
1294static struct v4l2_ctrl_ref *find_ref(struct v4l2_ctrl_handler *hdl, u32 id)
1295{
1296 struct v4l2_ctrl_ref *ref;
1297 int bucket;
1298
1299 id &= V4L2_CTRL_ID_MASK;
1300
1301 /* Old-style private controls need special handling */
1302 if (id >= V4L2_CID_PRIVATE_BASE)
1303 return find_private_ref(hdl, id);
1304 bucket = id % hdl->nr_of_buckets;
1305
1306 /* Simple optimization: cache the last control found */
1307 if (hdl->cached && hdl->cached->ctrl->id == id)
1308 return hdl->cached;
1309
1310 /* Not in cache, search the hash */
1311 ref = hdl->buckets ? hdl->buckets[bucket] : NULL;
1312 while (ref && ref->ctrl->id != id)
1313 ref = ref->next;
1314
1315 if (ref)
1316 hdl->cached = ref; /* cache it! */
1317 return ref;
1318}
1319
1320/* Find a control with the given ID. Take the handler's lock first. */
1321static struct v4l2_ctrl_ref *find_ref_lock(
1322 struct v4l2_ctrl_handler *hdl, u32 id)
1323{
1324 struct v4l2_ctrl_ref *ref = NULL;
1325
1326 if (hdl) {
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001327 mutex_lock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001328 ref = find_ref(hdl, id);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001329 mutex_unlock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001330 }
1331 return ref;
1332}
1333
1334/* Find a control with the given ID. */
1335struct v4l2_ctrl *v4l2_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id)
1336{
1337 struct v4l2_ctrl_ref *ref = find_ref_lock(hdl, id);
1338
1339 return ref ? ref->ctrl : NULL;
1340}
1341EXPORT_SYMBOL(v4l2_ctrl_find);
1342
1343/* Allocate a new v4l2_ctrl_ref and hook it into the handler. */
1344static int handler_new_ref(struct v4l2_ctrl_handler *hdl,
1345 struct v4l2_ctrl *ctrl)
1346{
1347 struct v4l2_ctrl_ref *ref;
1348 struct v4l2_ctrl_ref *new_ref;
1349 u32 id = ctrl->id;
1350 u32 class_ctrl = V4L2_CTRL_ID2CLASS(id) | 1;
1351 int bucket = id % hdl->nr_of_buckets; /* which bucket to use */
1352
1353 /* Automatically add the control class if it is not yet present. */
1354 if (id != class_ctrl && find_ref_lock(hdl, class_ctrl) == NULL)
1355 if (!v4l2_ctrl_new_std(hdl, NULL, class_ctrl, 0, 0, 0, 0))
1356 return hdl->error;
1357
1358 if (hdl->error)
1359 return hdl->error;
1360
1361 new_ref = kzalloc(sizeof(*new_ref), GFP_KERNEL);
1362 if (!new_ref)
1363 return handler_set_err(hdl, -ENOMEM);
1364 new_ref->ctrl = ctrl;
1365 if (ctrl->handler == hdl) {
1366 /* By default each control starts in a cluster of its own.
1367 new_ref->ctrl is basically a cluster array with one
1368 element, so that's perfect to use as the cluster pointer.
1369 But only do this for the handler that owns the control. */
1370 ctrl->cluster = &new_ref->ctrl;
1371 ctrl->ncontrols = 1;
1372 }
1373
1374 INIT_LIST_HEAD(&new_ref->node);
1375
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001376 mutex_lock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001377
1378 /* Add immediately at the end of the list if the list is empty, or if
1379 the last element in the list has a lower ID.
1380 This ensures that when elements are added in ascending order the
1381 insertion is an O(1) operation. */
1382 if (list_empty(&hdl->ctrl_refs) || id > node2id(hdl->ctrl_refs.prev)) {
1383 list_add_tail(&new_ref->node, &hdl->ctrl_refs);
1384 goto insert_in_hash;
1385 }
1386
1387 /* Find insert position in sorted list */
1388 list_for_each_entry(ref, &hdl->ctrl_refs, node) {
1389 if (ref->ctrl->id < id)
1390 continue;
1391 /* Don't add duplicates */
1392 if (ref->ctrl->id == id) {
1393 kfree(new_ref);
1394 goto unlock;
1395 }
1396 list_add(&new_ref->node, ref->node.prev);
1397 break;
1398 }
1399
1400insert_in_hash:
1401 /* Insert the control node in the hash */
1402 new_ref->next = hdl->buckets[bucket];
1403 hdl->buckets[bucket] = new_ref;
1404
1405unlock:
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001406 mutex_unlock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001407 return 0;
1408}
1409
1410/* Add a new control */
1411static struct v4l2_ctrl *v4l2_ctrl_new(struct v4l2_ctrl_handler *hdl,
1412 const struct v4l2_ctrl_ops *ops,
1413 u32 id, const char *name, enum v4l2_ctrl_type type,
1414 s32 min, s32 max, u32 step, s32 def,
Sakari Ailusce580fe2011-08-04 13:51:11 -03001415 u32 flags, const char * const *qmenu,
1416 const s64 *qmenu_int, void *priv)
Hans Verkuil09965172010-08-01 14:32:42 -03001417{
1418 struct v4l2_ctrl *ctrl;
1419 unsigned sz_extra = 0;
1420
1421 if (hdl->error)
1422 return NULL;
1423
1424 /* Sanity checks */
1425 if (id == 0 || name == NULL || id >= V4L2_CID_PRIVATE_BASE ||
Hans Verkuil09965172010-08-01 14:32:42 -03001426 (type == V4L2_CTRL_TYPE_INTEGER && step == 0) ||
Hans Verkuilfa4d7092011-05-23 04:07:05 -03001427 (type == V4L2_CTRL_TYPE_BITMASK && max == 0) ||
Hans Verkuil09965172010-08-01 14:32:42 -03001428 (type == V4L2_CTRL_TYPE_MENU && qmenu == NULL) ||
Sakari Ailusce580fe2011-08-04 13:51:11 -03001429 (type == V4L2_CTRL_TYPE_INTEGER_MENU && qmenu_int == NULL) ||
Hans Verkuil09965172010-08-01 14:32:42 -03001430 (type == V4L2_CTRL_TYPE_STRING && max == 0)) {
1431 handler_set_err(hdl, -ERANGE);
1432 return NULL;
1433 }
Hans Verkuilfa4d7092011-05-23 04:07:05 -03001434 if (type != V4L2_CTRL_TYPE_BITMASK && max < min) {
1435 handler_set_err(hdl, -ERANGE);
1436 return NULL;
1437 }
Hans Verkuil02ac0482010-12-29 14:27:05 -03001438 if ((type == V4L2_CTRL_TYPE_INTEGER ||
1439 type == V4L2_CTRL_TYPE_MENU ||
Sakari Ailusce580fe2011-08-04 13:51:11 -03001440 type == V4L2_CTRL_TYPE_INTEGER_MENU ||
Hans Verkuil02ac0482010-12-29 14:27:05 -03001441 type == V4L2_CTRL_TYPE_BOOLEAN) &&
1442 (def < min || def > max)) {
1443 handler_set_err(hdl, -ERANGE);
1444 return NULL;
1445 }
Hans Verkuilfa4d7092011-05-23 04:07:05 -03001446 if (type == V4L2_CTRL_TYPE_BITMASK && ((def & ~max) || min || step)) {
1447 handler_set_err(hdl, -ERANGE);
1448 return NULL;
1449 }
Hans Verkuil09965172010-08-01 14:32:42 -03001450
1451 if (type == V4L2_CTRL_TYPE_BUTTON)
1452 flags |= V4L2_CTRL_FLAG_WRITE_ONLY;
1453 else if (type == V4L2_CTRL_TYPE_CTRL_CLASS)
1454 flags |= V4L2_CTRL_FLAG_READ_ONLY;
1455 else if (type == V4L2_CTRL_TYPE_STRING)
1456 sz_extra += 2 * (max + 1);
1457
1458 ctrl = kzalloc(sizeof(*ctrl) + sz_extra, GFP_KERNEL);
1459 if (ctrl == NULL) {
1460 handler_set_err(hdl, -ENOMEM);
1461 return NULL;
1462 }
1463
1464 INIT_LIST_HEAD(&ctrl->node);
Hans Verkuil77068d32011-06-13 18:55:58 -03001465 INIT_LIST_HEAD(&ctrl->ev_subs);
Hans Verkuil09965172010-08-01 14:32:42 -03001466 ctrl->handler = hdl;
1467 ctrl->ops = ops;
1468 ctrl->id = id;
1469 ctrl->name = name;
1470 ctrl->type = type;
1471 ctrl->flags = flags;
1472 ctrl->minimum = min;
1473 ctrl->maximum = max;
1474 ctrl->step = step;
Sakari Ailusce580fe2011-08-04 13:51:11 -03001475 if (type == V4L2_CTRL_TYPE_MENU)
1476 ctrl->qmenu = qmenu;
1477 else if (type == V4L2_CTRL_TYPE_INTEGER_MENU)
1478 ctrl->qmenu_int = qmenu_int;
Hans Verkuil09965172010-08-01 14:32:42 -03001479 ctrl->priv = priv;
1480 ctrl->cur.val = ctrl->val = ctrl->default_value = def;
1481
1482 if (ctrl->type == V4L2_CTRL_TYPE_STRING) {
1483 ctrl->cur.string = (char *)&ctrl[1] + sz_extra - (max + 1);
1484 ctrl->string = (char *)&ctrl[1] + sz_extra - 2 * (max + 1);
1485 if (ctrl->minimum)
1486 memset(ctrl->cur.string, ' ', ctrl->minimum);
1487 }
1488 if (handler_new_ref(hdl, ctrl)) {
1489 kfree(ctrl);
1490 return NULL;
1491 }
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001492 mutex_lock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001493 list_add_tail(&ctrl->node, &hdl->ctrls);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001494 mutex_unlock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001495 return ctrl;
1496}
1497
1498struct v4l2_ctrl *v4l2_ctrl_new_custom(struct v4l2_ctrl_handler *hdl,
1499 const struct v4l2_ctrl_config *cfg, void *priv)
1500{
1501 bool is_menu;
1502 struct v4l2_ctrl *ctrl;
1503 const char *name = cfg->name;
Hans Verkuil513521e2010-12-29 14:25:52 -03001504 const char * const *qmenu = cfg->qmenu;
Sakari Ailusce580fe2011-08-04 13:51:11 -03001505 const s64 *qmenu_int = cfg->qmenu_int;
Hans Verkuil09965172010-08-01 14:32:42 -03001506 enum v4l2_ctrl_type type = cfg->type;
1507 u32 flags = cfg->flags;
1508 s32 min = cfg->min;
1509 s32 max = cfg->max;
1510 u32 step = cfg->step;
1511 s32 def = cfg->def;
1512
1513 if (name == NULL)
1514 v4l2_ctrl_fill(cfg->id, &name, &type, &min, &max, &step,
1515 &def, &flags);
1516
Sakari Ailusce580fe2011-08-04 13:51:11 -03001517 is_menu = (cfg->type == V4L2_CTRL_TYPE_MENU ||
1518 cfg->type == V4L2_CTRL_TYPE_INTEGER_MENU);
Hans Verkuil09965172010-08-01 14:32:42 -03001519 if (is_menu)
1520 WARN_ON(step);
1521 else
1522 WARN_ON(cfg->menu_skip_mask);
Sakari Ailusce580fe2011-08-04 13:51:11 -03001523 if (cfg->type == V4L2_CTRL_TYPE_MENU && qmenu == NULL)
Hans Verkuil09965172010-08-01 14:32:42 -03001524 qmenu = v4l2_ctrl_get_menu(cfg->id);
Sakari Ailusce580fe2011-08-04 13:51:11 -03001525 else if (cfg->type == V4L2_CTRL_TYPE_INTEGER_MENU &&
1526 qmenu_int == NULL) {
1527 handler_set_err(hdl, -EINVAL);
1528 return NULL;
1529 }
Hans Verkuil09965172010-08-01 14:32:42 -03001530
1531 ctrl = v4l2_ctrl_new(hdl, cfg->ops, cfg->id, name,
1532 type, min, max,
1533 is_menu ? cfg->menu_skip_mask : step,
Sakari Ailusce580fe2011-08-04 13:51:11 -03001534 def, flags, qmenu, qmenu_int, priv);
Hans Verkuil88365102011-08-26 07:35:14 -03001535 if (ctrl)
Hans Verkuil09965172010-08-01 14:32:42 -03001536 ctrl->is_private = cfg->is_private;
Hans Verkuil09965172010-08-01 14:32:42 -03001537 return ctrl;
1538}
1539EXPORT_SYMBOL(v4l2_ctrl_new_custom);
1540
1541/* Helper function for standard non-menu controls */
1542struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
1543 const struct v4l2_ctrl_ops *ops,
1544 u32 id, s32 min, s32 max, u32 step, s32 def)
1545{
1546 const char *name;
1547 enum v4l2_ctrl_type type;
1548 u32 flags;
1549
1550 v4l2_ctrl_fill(id, &name, &type, &min, &max, &step, &def, &flags);
Sakari Ailusce580fe2011-08-04 13:51:11 -03001551 if (type == V4L2_CTRL_TYPE_MENU
1552 || type == V4L2_CTRL_TYPE_INTEGER_MENU) {
Hans Verkuil09965172010-08-01 14:32:42 -03001553 handler_set_err(hdl, -EINVAL);
1554 return NULL;
1555 }
1556 return v4l2_ctrl_new(hdl, ops, id, name, type,
Sakari Ailusce580fe2011-08-04 13:51:11 -03001557 min, max, step, def, flags, NULL, NULL, NULL);
Hans Verkuil09965172010-08-01 14:32:42 -03001558}
1559EXPORT_SYMBOL(v4l2_ctrl_new_std);
1560
1561/* Helper function for standard menu controls */
1562struct v4l2_ctrl *v4l2_ctrl_new_std_menu(struct v4l2_ctrl_handler *hdl,
1563 const struct v4l2_ctrl_ops *ops,
1564 u32 id, s32 max, s32 mask, s32 def)
1565{
Hans Verkuil513521e2010-12-29 14:25:52 -03001566 const char * const *qmenu = v4l2_ctrl_get_menu(id);
Hans Verkuil09965172010-08-01 14:32:42 -03001567 const char *name;
1568 enum v4l2_ctrl_type type;
1569 s32 min;
1570 s32 step;
1571 u32 flags;
1572
1573 v4l2_ctrl_fill(id, &name, &type, &min, &max, &step, &def, &flags);
1574 if (type != V4L2_CTRL_TYPE_MENU) {
1575 handler_set_err(hdl, -EINVAL);
1576 return NULL;
1577 }
1578 return v4l2_ctrl_new(hdl, ops, id, name, type,
Sakari Ailusce580fe2011-08-04 13:51:11 -03001579 0, max, mask, def, flags, qmenu, NULL, NULL);
Hans Verkuil09965172010-08-01 14:32:42 -03001580}
1581EXPORT_SYMBOL(v4l2_ctrl_new_std_menu);
1582
Sylwester Nawrocki515f3282012-05-06 15:30:44 -03001583/* Helper function for standard integer menu controls */
1584struct v4l2_ctrl *v4l2_ctrl_new_int_menu(struct v4l2_ctrl_handler *hdl,
1585 const struct v4l2_ctrl_ops *ops,
1586 u32 id, s32 max, s32 def, const s64 *qmenu_int)
1587{
1588 const char *name;
1589 enum v4l2_ctrl_type type;
1590 s32 min;
1591 s32 step;
1592 u32 flags;
1593
1594 v4l2_ctrl_fill(id, &name, &type, &min, &max, &step, &def, &flags);
1595 if (type != V4L2_CTRL_TYPE_INTEGER_MENU) {
1596 handler_set_err(hdl, -EINVAL);
1597 return NULL;
1598 }
1599 return v4l2_ctrl_new(hdl, ops, id, name, type,
1600 0, max, 0, def, flags, NULL, qmenu_int, NULL);
1601}
1602EXPORT_SYMBOL(v4l2_ctrl_new_int_menu);
1603
Hans Verkuil09965172010-08-01 14:32:42 -03001604/* Add a control from another handler to this handler */
1605struct v4l2_ctrl *v4l2_ctrl_add_ctrl(struct v4l2_ctrl_handler *hdl,
1606 struct v4l2_ctrl *ctrl)
1607{
1608 if (hdl == NULL || hdl->error)
1609 return NULL;
1610 if (ctrl == NULL) {
1611 handler_set_err(hdl, -EINVAL);
1612 return NULL;
1613 }
1614 if (ctrl->handler == hdl)
1615 return ctrl;
1616 return handler_new_ref(hdl, ctrl) ? NULL : ctrl;
1617}
1618EXPORT_SYMBOL(v4l2_ctrl_add_ctrl);
1619
1620/* Add the controls from another handler to our own. */
1621int v4l2_ctrl_add_handler(struct v4l2_ctrl_handler *hdl,
1622 struct v4l2_ctrl_handler *add)
1623{
Hans Verkuil072e6602012-03-02 12:41:25 -03001624 struct v4l2_ctrl_ref *ref;
Hans Verkuil09965172010-08-01 14:32:42 -03001625 int ret = 0;
1626
1627 /* Do nothing if either handler is NULL or if they are the same */
1628 if (!hdl || !add || hdl == add)
1629 return 0;
1630 if (hdl->error)
1631 return hdl->error;
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001632 mutex_lock(add->lock);
Hans Verkuil072e6602012-03-02 12:41:25 -03001633 list_for_each_entry(ref, &add->ctrl_refs, node) {
1634 struct v4l2_ctrl *ctrl = ref->ctrl;
1635
Hans Verkuil09965172010-08-01 14:32:42 -03001636 /* Skip handler-private controls. */
1637 if (ctrl->is_private)
1638 continue;
Hans Verkuil6e239392011-06-07 11:13:44 -03001639 /* And control classes */
1640 if (ctrl->type == V4L2_CTRL_TYPE_CTRL_CLASS)
1641 continue;
Hans Verkuil09965172010-08-01 14:32:42 -03001642 ret = handler_new_ref(hdl, ctrl);
1643 if (ret)
1644 break;
1645 }
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001646 mutex_unlock(add->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001647 return ret;
1648}
1649EXPORT_SYMBOL(v4l2_ctrl_add_handler);
1650
1651/* Cluster controls */
1652void v4l2_ctrl_cluster(unsigned ncontrols, struct v4l2_ctrl **controls)
1653{
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001654 bool has_volatiles = false;
Hans Verkuil09965172010-08-01 14:32:42 -03001655 int i;
1656
1657 /* The first control is the master control and it must not be NULL */
Hans Verkuil72d877c2011-06-10 05:44:36 -03001658 BUG_ON(ncontrols == 0 || controls[0] == NULL);
Hans Verkuil09965172010-08-01 14:32:42 -03001659
1660 for (i = 0; i < ncontrols; i++) {
1661 if (controls[i]) {
1662 controls[i]->cluster = controls;
1663 controls[i]->ncontrols = ncontrols;
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001664 if (controls[i]->flags & V4L2_CTRL_FLAG_VOLATILE)
1665 has_volatiles = true;
Hans Verkuil09965172010-08-01 14:32:42 -03001666 }
1667 }
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001668 controls[0]->has_volatiles = has_volatiles;
Hans Verkuil09965172010-08-01 14:32:42 -03001669}
1670EXPORT_SYMBOL(v4l2_ctrl_cluster);
1671
Hans Verkuil72d877c2011-06-10 05:44:36 -03001672void v4l2_ctrl_auto_cluster(unsigned ncontrols, struct v4l2_ctrl **controls,
1673 u8 manual_val, bool set_volatile)
1674{
1675 struct v4l2_ctrl *master = controls[0];
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001676 u32 flag = 0;
Hans Verkuil72d877c2011-06-10 05:44:36 -03001677 int i;
1678
1679 v4l2_ctrl_cluster(ncontrols, controls);
1680 WARN_ON(ncontrols <= 1);
Hans Verkuil82a7c042011-06-28 10:43:13 -03001681 WARN_ON(manual_val < master->minimum || manual_val > master->maximum);
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001682 WARN_ON(set_volatile && !has_op(master, g_volatile_ctrl));
Hans Verkuil72d877c2011-06-10 05:44:36 -03001683 master->is_auto = true;
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001684 master->has_volatiles = set_volatile;
Hans Verkuil72d877c2011-06-10 05:44:36 -03001685 master->manual_mode_value = manual_val;
1686 master->flags |= V4L2_CTRL_FLAG_UPDATE;
Hans Verkuil5626b8c2011-08-26 07:53:53 -03001687
1688 if (!is_cur_manual(master))
1689 flag = V4L2_CTRL_FLAG_INACTIVE |
1690 (set_volatile ? V4L2_CTRL_FLAG_VOLATILE : 0);
Hans Verkuil72d877c2011-06-10 05:44:36 -03001691
1692 for (i = 1; i < ncontrols; i++)
Hans Verkuil88365102011-08-26 07:35:14 -03001693 if (controls[i])
Hans Verkuil72d877c2011-06-10 05:44:36 -03001694 controls[i]->flags |= flag;
Hans Verkuil72d877c2011-06-10 05:44:36 -03001695}
1696EXPORT_SYMBOL(v4l2_ctrl_auto_cluster);
1697
Hans Verkuil09965172010-08-01 14:32:42 -03001698/* Activate/deactivate a control. */
1699void v4l2_ctrl_activate(struct v4l2_ctrl *ctrl, bool active)
1700{
Hans Verkuil6e239392011-06-07 11:13:44 -03001701 /* invert since the actual flag is called 'inactive' */
1702 bool inactive = !active;
1703 bool old;
1704
Hans Verkuil09965172010-08-01 14:32:42 -03001705 if (ctrl == NULL)
1706 return;
1707
Hans Verkuil6e239392011-06-07 11:13:44 -03001708 if (inactive)
Hans Verkuil09965172010-08-01 14:32:42 -03001709 /* set V4L2_CTRL_FLAG_INACTIVE */
Hans Verkuil6e239392011-06-07 11:13:44 -03001710 old = test_and_set_bit(4, &ctrl->flags);
Hans Verkuil09965172010-08-01 14:32:42 -03001711 else
1712 /* clear V4L2_CTRL_FLAG_INACTIVE */
Hans Verkuil6e239392011-06-07 11:13:44 -03001713 old = test_and_clear_bit(4, &ctrl->flags);
1714 if (old != inactive)
1715 send_event(NULL, ctrl, V4L2_EVENT_CTRL_CH_FLAGS);
Hans Verkuil09965172010-08-01 14:32:42 -03001716}
1717EXPORT_SYMBOL(v4l2_ctrl_activate);
1718
1719/* Grab/ungrab a control.
1720 Typically used when streaming starts and you want to grab controls,
1721 preventing the user from changing them.
1722
1723 Just call this and the framework will block any attempts to change
1724 these controls. */
1725void v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed)
1726{
Hans Verkuil6e239392011-06-07 11:13:44 -03001727 bool old;
1728
Hans Verkuil09965172010-08-01 14:32:42 -03001729 if (ctrl == NULL)
1730 return;
1731
Hans Verkuil6e239392011-06-07 11:13:44 -03001732 v4l2_ctrl_lock(ctrl);
Hans Verkuil09965172010-08-01 14:32:42 -03001733 if (grabbed)
1734 /* set V4L2_CTRL_FLAG_GRABBED */
Hans Verkuil6e239392011-06-07 11:13:44 -03001735 old = test_and_set_bit(1, &ctrl->flags);
Hans Verkuil09965172010-08-01 14:32:42 -03001736 else
1737 /* clear V4L2_CTRL_FLAG_GRABBED */
Hans Verkuil6e239392011-06-07 11:13:44 -03001738 old = test_and_clear_bit(1, &ctrl->flags);
1739 if (old != grabbed)
1740 send_event(NULL, ctrl, V4L2_EVENT_CTRL_CH_FLAGS);
1741 v4l2_ctrl_unlock(ctrl);
Hans Verkuil09965172010-08-01 14:32:42 -03001742}
1743EXPORT_SYMBOL(v4l2_ctrl_grab);
1744
1745/* Log the control name and value */
1746static void log_ctrl(const struct v4l2_ctrl *ctrl,
1747 const char *prefix, const char *colon)
1748{
Hans Verkuil09965172010-08-01 14:32:42 -03001749 if (ctrl->flags & (V4L2_CTRL_FLAG_DISABLED | V4L2_CTRL_FLAG_WRITE_ONLY))
1750 return;
1751 if (ctrl->type == V4L2_CTRL_TYPE_CTRL_CLASS)
1752 return;
1753
1754 printk(KERN_INFO "%s%s%s: ", prefix, colon, ctrl->name);
1755
1756 switch (ctrl->type) {
1757 case V4L2_CTRL_TYPE_INTEGER:
1758 printk(KERN_CONT "%d", ctrl->cur.val);
1759 break;
1760 case V4L2_CTRL_TYPE_BOOLEAN:
1761 printk(KERN_CONT "%s", ctrl->cur.val ? "true" : "false");
1762 break;
1763 case V4L2_CTRL_TYPE_MENU:
1764 printk(KERN_CONT "%s", ctrl->qmenu[ctrl->cur.val]);
1765 break;
Sakari Ailusce580fe2011-08-04 13:51:11 -03001766 case V4L2_CTRL_TYPE_INTEGER_MENU:
1767 printk(KERN_CONT "%lld", ctrl->qmenu_int[ctrl->cur.val]);
1768 break;
Hans Verkuilfa4d7092011-05-23 04:07:05 -03001769 case V4L2_CTRL_TYPE_BITMASK:
1770 printk(KERN_CONT "0x%08x", ctrl->cur.val);
1771 break;
Hans Verkuil09965172010-08-01 14:32:42 -03001772 case V4L2_CTRL_TYPE_INTEGER64:
1773 printk(KERN_CONT "%lld", ctrl->cur.val64);
1774 break;
1775 case V4L2_CTRL_TYPE_STRING:
1776 printk(KERN_CONT "%s", ctrl->cur.string);
1777 break;
1778 default:
1779 printk(KERN_CONT "unknown type %d", ctrl->type);
1780 break;
1781 }
Hans Verkuil88365102011-08-26 07:35:14 -03001782 if (ctrl->flags & (V4L2_CTRL_FLAG_INACTIVE |
1783 V4L2_CTRL_FLAG_GRABBED |
1784 V4L2_CTRL_FLAG_VOLATILE)) {
1785 if (ctrl->flags & V4L2_CTRL_FLAG_INACTIVE)
1786 printk(KERN_CONT " inactive");
1787 if (ctrl->flags & V4L2_CTRL_FLAG_GRABBED)
1788 printk(KERN_CONT " grabbed");
1789 if (ctrl->flags & V4L2_CTRL_FLAG_VOLATILE)
1790 printk(KERN_CONT " volatile");
1791 }
1792 printk(KERN_CONT "\n");
Hans Verkuil09965172010-08-01 14:32:42 -03001793}
1794
1795/* Log all controls owned by the handler */
1796void v4l2_ctrl_handler_log_status(struct v4l2_ctrl_handler *hdl,
1797 const char *prefix)
1798{
1799 struct v4l2_ctrl *ctrl;
1800 const char *colon = "";
1801 int len;
1802
1803 if (hdl == NULL)
1804 return;
1805 if (prefix == NULL)
1806 prefix = "";
1807 len = strlen(prefix);
1808 if (len && prefix[len - 1] != ' ')
1809 colon = ": ";
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001810 mutex_lock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001811 list_for_each_entry(ctrl, &hdl->ctrls, node)
1812 if (!(ctrl->flags & V4L2_CTRL_FLAG_DISABLED))
1813 log_ctrl(ctrl, prefix, colon);
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001814 mutex_unlock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001815}
1816EXPORT_SYMBOL(v4l2_ctrl_handler_log_status);
1817
1818/* Call s_ctrl for all controls owned by the handler */
1819int v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl)
1820{
1821 struct v4l2_ctrl *ctrl;
1822 int ret = 0;
1823
1824 if (hdl == NULL)
1825 return 0;
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001826 mutex_lock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001827 list_for_each_entry(ctrl, &hdl->ctrls, node)
1828 ctrl->done = false;
1829
1830 list_for_each_entry(ctrl, &hdl->ctrls, node) {
1831 struct v4l2_ctrl *master = ctrl->cluster[0];
1832 int i;
1833
1834 /* Skip if this control was already handled by a cluster. */
Hans Verkuil71c6c4c2011-06-14 11:01:52 -03001835 /* Skip button controls and read-only controls. */
1836 if (ctrl->done || ctrl->type == V4L2_CTRL_TYPE_BUTTON ||
1837 (ctrl->flags & V4L2_CTRL_FLAG_READ_ONLY))
Hans Verkuil09965172010-08-01 14:32:42 -03001838 continue;
1839
Hans Verkuil2a863792011-01-11 14:45:03 -03001840 for (i = 0; i < master->ncontrols; i++) {
1841 if (master->cluster[i]) {
1842 cur_to_new(master->cluster[i]);
1843 master->cluster[i]->is_new = 1;
Hans Verkuil71c6c4c2011-06-14 11:01:52 -03001844 master->cluster[i]->done = true;
Hans Verkuil2a863792011-01-11 14:45:03 -03001845 }
1846 }
Hans Verkuil54c911e2011-05-25 06:04:58 -03001847 ret = call_op(master, s_ctrl);
Hans Verkuil09965172010-08-01 14:32:42 -03001848 if (ret)
1849 break;
Hans Verkuil09965172010-08-01 14:32:42 -03001850 }
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001851 mutex_unlock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001852 return ret;
1853}
1854EXPORT_SYMBOL(v4l2_ctrl_handler_setup);
1855
1856/* Implement VIDIOC_QUERYCTRL */
1857int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc)
1858{
1859 u32 id = qc->id & V4L2_CTRL_ID_MASK;
1860 struct v4l2_ctrl_ref *ref;
1861 struct v4l2_ctrl *ctrl;
1862
1863 if (hdl == NULL)
1864 return -EINVAL;
1865
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001866 mutex_lock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001867
1868 /* Try to find it */
1869 ref = find_ref(hdl, id);
1870
1871 if ((qc->id & V4L2_CTRL_FLAG_NEXT_CTRL) && !list_empty(&hdl->ctrl_refs)) {
1872 /* Find the next control with ID > qc->id */
1873
1874 /* Did we reach the end of the control list? */
1875 if (id >= node2id(hdl->ctrl_refs.prev)) {
1876 ref = NULL; /* Yes, so there is no next control */
1877 } else if (ref) {
1878 /* We found a control with the given ID, so just get
1879 the next one in the list. */
1880 ref = list_entry(ref->node.next, typeof(*ref), node);
1881 } else {
1882 /* No control with the given ID exists, so start
1883 searching for the next largest ID. We know there
1884 is one, otherwise the first 'if' above would have
1885 been true. */
1886 list_for_each_entry(ref, &hdl->ctrl_refs, node)
1887 if (id < ref->ctrl->id)
1888 break;
1889 }
1890 }
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03001891 mutex_unlock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03001892 if (!ref)
1893 return -EINVAL;
1894
1895 ctrl = ref->ctrl;
1896 memset(qc, 0, sizeof(*qc));
Hans Verkuil829fb2d2011-01-16 11:21:40 -03001897 if (id >= V4L2_CID_PRIVATE_BASE)
1898 qc->id = id;
1899 else
1900 qc->id = ctrl->id;
Hans Verkuil09965172010-08-01 14:32:42 -03001901 strlcpy(qc->name, ctrl->name, sizeof(qc->name));
1902 qc->minimum = ctrl->minimum;
1903 qc->maximum = ctrl->maximum;
1904 qc->default_value = ctrl->default_value;
Sakari Ailusce580fe2011-08-04 13:51:11 -03001905 if (ctrl->type == V4L2_CTRL_TYPE_MENU
1906 || ctrl->type == V4L2_CTRL_TYPE_INTEGER_MENU)
Hans Verkuil09965172010-08-01 14:32:42 -03001907 qc->step = 1;
1908 else
1909 qc->step = ctrl->step;
1910 qc->flags = ctrl->flags;
1911 qc->type = ctrl->type;
1912 return 0;
1913}
1914EXPORT_SYMBOL(v4l2_queryctrl);
1915
1916int v4l2_subdev_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc)
1917{
Hans Verkuil87a0c942011-02-22 12:31:07 -03001918 if (qc->id & V4L2_CTRL_FLAG_NEXT_CTRL)
1919 return -EINVAL;
Hans Verkuil09965172010-08-01 14:32:42 -03001920 return v4l2_queryctrl(sd->ctrl_handler, qc);
1921}
1922EXPORT_SYMBOL(v4l2_subdev_queryctrl);
1923
1924/* Implement VIDIOC_QUERYMENU */
1925int v4l2_querymenu(struct v4l2_ctrl_handler *hdl, struct v4l2_querymenu *qm)
1926{
1927 struct v4l2_ctrl *ctrl;
1928 u32 i = qm->index;
1929
1930 ctrl = v4l2_ctrl_find(hdl, qm->id);
1931 if (!ctrl)
1932 return -EINVAL;
1933
1934 qm->reserved = 0;
1935 /* Sanity checks */
Sakari Ailusce580fe2011-08-04 13:51:11 -03001936 switch (ctrl->type) {
1937 case V4L2_CTRL_TYPE_MENU:
1938 if (ctrl->qmenu == NULL)
1939 return -EINVAL;
1940 break;
1941 case V4L2_CTRL_TYPE_INTEGER_MENU:
1942 if (ctrl->qmenu_int == NULL)
1943 return -EINVAL;
1944 break;
1945 default:
Hans Verkuil09965172010-08-01 14:32:42 -03001946 return -EINVAL;
Sakari Ailusce580fe2011-08-04 13:51:11 -03001947 }
1948
1949 if (i < ctrl->minimum || i > ctrl->maximum)
1950 return -EINVAL;
1951
Hans Verkuil09965172010-08-01 14:32:42 -03001952 /* Use mask to see if this menu item should be skipped */
1953 if (ctrl->menu_skip_mask & (1 << i))
1954 return -EINVAL;
1955 /* Empty menu items should also be skipped */
Sakari Ailusce580fe2011-08-04 13:51:11 -03001956 if (ctrl->type == V4L2_CTRL_TYPE_MENU) {
1957 if (ctrl->qmenu[i] == NULL || ctrl->qmenu[i][0] == '\0')
1958 return -EINVAL;
1959 strlcpy(qm->name, ctrl->qmenu[i], sizeof(qm->name));
1960 } else {
1961 qm->value = ctrl->qmenu_int[i];
1962 }
Hans Verkuil09965172010-08-01 14:32:42 -03001963 return 0;
1964}
1965EXPORT_SYMBOL(v4l2_querymenu);
1966
1967int v4l2_subdev_querymenu(struct v4l2_subdev *sd, struct v4l2_querymenu *qm)
1968{
1969 return v4l2_querymenu(sd->ctrl_handler, qm);
1970}
1971EXPORT_SYMBOL(v4l2_subdev_querymenu);
1972
1973
1974
1975/* Some general notes on the atomic requirements of VIDIOC_G/TRY/S_EXT_CTRLS:
1976
1977 It is not a fully atomic operation, just best-effort only. After all, if
1978 multiple controls have to be set through multiple i2c writes (for example)
1979 then some initial writes may succeed while others fail. Thus leaving the
1980 system in an inconsistent state. The question is how much effort you are
1981 willing to spend on trying to make something atomic that really isn't.
1982
1983 From the point of view of an application the main requirement is that
1984 when you call VIDIOC_S_EXT_CTRLS and some values are invalid then an
1985 error should be returned without actually affecting any controls.
1986
1987 If all the values are correct, then it is acceptable to just give up
1988 in case of low-level errors.
1989
1990 It is important though that the application can tell when only a partial
1991 configuration was done. The way we do that is through the error_idx field
1992 of struct v4l2_ext_controls: if that is equal to the count field then no
1993 controls were affected. Otherwise all controls before that index were
1994 successful in performing their 'get' or 'set' operation, the control at
1995 the given index failed, and you don't know what happened with the controls
1996 after the failed one. Since if they were part of a control cluster they
1997 could have been successfully processed (if a cluster member was encountered
1998 at index < error_idx), they could have failed (if a cluster member was at
1999 error_idx), or they may not have been processed yet (if the first cluster
2000 member appeared after error_idx).
2001
2002 It is all fairly theoretical, though. In practice all you can do is to
2003 bail out. If error_idx == count, then it is an application bug. If
2004 error_idx < count then it is only an application bug if the error code was
2005 EBUSY. That usually means that something started streaming just when you
2006 tried to set the controls. In all other cases it is a driver/hardware
2007 problem and all you can do is to retry or bail out.
2008
2009 Note that these rules do not apply to VIDIOC_TRY_EXT_CTRLS: since that
2010 never modifies controls the error_idx is just set to whatever control
2011 has an invalid value.
2012 */
2013
2014/* Prepare for the extended g/s/try functions.
2015 Find the controls in the control array and do some basic checks. */
2016static int prepare_ext_ctrls(struct v4l2_ctrl_handler *hdl,
2017 struct v4l2_ext_controls *cs,
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002018 struct v4l2_ctrl_helper *helpers)
Hans Verkuil09965172010-08-01 14:32:42 -03002019{
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002020 struct v4l2_ctrl_helper *h;
2021 bool have_clusters = false;
Hans Verkuil09965172010-08-01 14:32:42 -03002022 u32 i;
2023
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002024 for (i = 0, h = helpers; i < cs->count; i++, h++) {
Hans Verkuil09965172010-08-01 14:32:42 -03002025 struct v4l2_ext_control *c = &cs->controls[i];
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002026 struct v4l2_ctrl_ref *ref;
Hans Verkuil09965172010-08-01 14:32:42 -03002027 struct v4l2_ctrl *ctrl;
2028 u32 id = c->id & V4L2_CTRL_ID_MASK;
2029
Hans Verkuil37cd3b72011-06-07 04:40:04 -03002030 cs->error_idx = i;
Hans Verkuil09965172010-08-01 14:32:42 -03002031
2032 if (cs->ctrl_class && V4L2_CTRL_ID2CLASS(id) != cs->ctrl_class)
2033 return -EINVAL;
2034
2035 /* Old-style private controls are not allowed for
2036 extended controls */
2037 if (id >= V4L2_CID_PRIVATE_BASE)
2038 return -EINVAL;
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002039 ref = find_ref_lock(hdl, id);
2040 if (ref == NULL)
Hans Verkuil09965172010-08-01 14:32:42 -03002041 return -EINVAL;
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002042 ctrl = ref->ctrl;
Hans Verkuil09965172010-08-01 14:32:42 -03002043 if (ctrl->flags & V4L2_CTRL_FLAG_DISABLED)
2044 return -EINVAL;
2045
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002046 if (ctrl->cluster[0]->ncontrols > 1)
2047 have_clusters = true;
2048 if (ctrl->cluster[0] != ctrl)
2049 ref = find_ref_lock(hdl, ctrl->cluster[0]->id);
2050 /* Store the ref to the master control of the cluster */
2051 h->mref = ref;
2052 h->ctrl = ctrl;
2053 /* Initially set next to 0, meaning that there is no other
2054 control in this helper array belonging to the same
2055 cluster */
2056 h->next = 0;
Hans Verkuil09965172010-08-01 14:32:42 -03002057 }
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002058
2059 /* We are done if there were no controls that belong to a multi-
2060 control cluster. */
2061 if (!have_clusters)
2062 return 0;
2063
2064 /* The code below figures out in O(n) time which controls in the list
2065 belong to the same cluster. */
2066
2067 /* This has to be done with the handler lock taken. */
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03002068 mutex_lock(hdl->lock);
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002069
2070 /* First zero the helper field in the master control references */
2071 for (i = 0; i < cs->count; i++)
2072 helpers[i].mref->helper = 0;
2073 for (i = 0, h = helpers; i < cs->count; i++, h++) {
2074 struct v4l2_ctrl_ref *mref = h->mref;
2075
2076 /* If the mref->helper is set, then it points to an earlier
2077 helper that belongs to the same cluster. */
2078 if (mref->helper) {
2079 /* Set the next field of mref->helper to the current
2080 index: this means that that earlier helper now
2081 points to the next helper in the same cluster. */
2082 mref->helper->next = i;
2083 /* mref should be set only for the first helper in the
2084 cluster, clear the others. */
2085 h->mref = NULL;
2086 }
2087 /* Point the mref helper to the current helper struct. */
2088 mref->helper = h;
2089 }
Sakari Ailus77e7c4e2012-01-24 21:05:34 -03002090 mutex_unlock(hdl->lock);
Hans Verkuil09965172010-08-01 14:32:42 -03002091 return 0;
2092}
2093
Hans Verkuil09965172010-08-01 14:32:42 -03002094/* Handles the corner case where cs->count == 0. It checks whether the
2095 specified control class exists. If that class ID is 0, then it checks
2096 whether there are any controls at all. */
2097static int class_check(struct v4l2_ctrl_handler *hdl, u32 ctrl_class)
2098{
2099 if (ctrl_class == 0)
2100 return list_empty(&hdl->ctrl_refs) ? -EINVAL : 0;
2101 return find_ref_lock(hdl, ctrl_class | 1) ? 0 : -EINVAL;
2102}
2103
2104
2105
2106/* Get extended controls. Allocates the helpers array if needed. */
2107int v4l2_g_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct v4l2_ext_controls *cs)
2108{
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002109 struct v4l2_ctrl_helper helper[4];
2110 struct v4l2_ctrl_helper *helpers = helper;
Hans Verkuil09965172010-08-01 14:32:42 -03002111 int ret;
Hans Verkuilddac5c12011-06-10 05:43:34 -03002112 int i, j;
Hans Verkuil09965172010-08-01 14:32:42 -03002113
2114 cs->error_idx = cs->count;
2115 cs->ctrl_class = V4L2_CTRL_ID2CLASS(cs->ctrl_class);
2116
2117 if (hdl == NULL)
2118 return -EINVAL;
2119
2120 if (cs->count == 0)
2121 return class_check(hdl, cs->ctrl_class);
2122
2123 if (cs->count > ARRAY_SIZE(helper)) {
Xi Wang5f0049b2012-04-06 09:32:36 -03002124 helpers = kmalloc_array(cs->count, sizeof(helper[0]),
2125 GFP_KERNEL);
Hans Verkuil09965172010-08-01 14:32:42 -03002126 if (helpers == NULL)
2127 return -ENOMEM;
2128 }
2129
Hans Verkuil37cd3b72011-06-07 04:40:04 -03002130 ret = prepare_ext_ctrls(hdl, cs, helpers);
2131 cs->error_idx = cs->count;
Hans Verkuil09965172010-08-01 14:32:42 -03002132
2133 for (i = 0; !ret && i < cs->count; i++)
2134 if (helpers[i].ctrl->flags & V4L2_CTRL_FLAG_WRITE_ONLY)
2135 ret = -EACCES;
2136
2137 for (i = 0; !ret && i < cs->count; i++) {
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002138 int (*ctrl_to_user)(struct v4l2_ext_control *c,
2139 struct v4l2_ctrl *ctrl) = cur_to_user;
2140 struct v4l2_ctrl *master;
Hans Verkuil09965172010-08-01 14:32:42 -03002141
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002142 if (helpers[i].mref == NULL)
Hans Verkuil09965172010-08-01 14:32:42 -03002143 continue;
2144
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002145 master = helpers[i].mref->ctrl;
Hans Verkuil09965172010-08-01 14:32:42 -03002146 cs->error_idx = i;
2147
2148 v4l2_ctrl_lock(master);
Hans Verkuilddac5c12011-06-10 05:43:34 -03002149
2150 /* g_volatile_ctrl will update the new control values */
Hans Verkuil5626b8c2011-08-26 07:53:53 -03002151 if ((master->flags & V4L2_CTRL_FLAG_VOLATILE) ||
2152 (master->has_volatiles && !is_cur_manual(master))) {
Hans Verkuilddac5c12011-06-10 05:43:34 -03002153 for (j = 0; j < master->ncontrols; j++)
2154 cur_to_new(master->cluster[j]);
Hans Verkuil54c911e2011-05-25 06:04:58 -03002155 ret = call_op(master, g_volatile_ctrl);
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002156 ctrl_to_user = new_to_user;
Hans Verkuilddac5c12011-06-10 05:43:34 -03002157 }
2158 /* If OK, then copy the current (for non-volatile controls)
2159 or the new (for volatile controls) control values to the
2160 caller */
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002161 if (!ret) {
2162 u32 idx = i;
2163
2164 do {
2165 ret = ctrl_to_user(cs->controls + idx,
2166 helpers[idx].ctrl);
2167 idx = helpers[idx].next;
2168 } while (!ret && idx);
2169 }
Hans Verkuil09965172010-08-01 14:32:42 -03002170 v4l2_ctrl_unlock(master);
Hans Verkuil09965172010-08-01 14:32:42 -03002171 }
2172
2173 if (cs->count > ARRAY_SIZE(helper))
2174 kfree(helpers);
2175 return ret;
2176}
2177EXPORT_SYMBOL(v4l2_g_ext_ctrls);
2178
2179int v4l2_subdev_g_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *cs)
2180{
2181 return v4l2_g_ext_ctrls(sd->ctrl_handler, cs);
2182}
2183EXPORT_SYMBOL(v4l2_subdev_g_ext_ctrls);
2184
2185/* Helper function to get a single control */
2186static int get_ctrl(struct v4l2_ctrl *ctrl, s32 *val)
2187{
2188 struct v4l2_ctrl *master = ctrl->cluster[0];
2189 int ret = 0;
Hans Verkuilddac5c12011-06-10 05:43:34 -03002190 int i;
Hans Verkuil09965172010-08-01 14:32:42 -03002191
2192 if (ctrl->flags & V4L2_CTRL_FLAG_WRITE_ONLY)
2193 return -EACCES;
2194
2195 v4l2_ctrl_lock(master);
2196 /* g_volatile_ctrl will update the current control values */
Hans Verkuil5626b8c2011-08-26 07:53:53 -03002197 if (ctrl->flags & V4L2_CTRL_FLAG_VOLATILE) {
Hans Verkuilddac5c12011-06-10 05:43:34 -03002198 for (i = 0; i < master->ncontrols; i++)
2199 cur_to_new(master->cluster[i]);
Hans Verkuil54c911e2011-05-25 06:04:58 -03002200 ret = call_op(master, g_volatile_ctrl);
Hans Verkuilddac5c12011-06-10 05:43:34 -03002201 *val = ctrl->val;
2202 } else {
2203 *val = ctrl->cur.val;
2204 }
Hans Verkuil09965172010-08-01 14:32:42 -03002205 v4l2_ctrl_unlock(master);
2206 return ret;
2207}
2208
2209int v4l2_g_ctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_control *control)
2210{
2211 struct v4l2_ctrl *ctrl = v4l2_ctrl_find(hdl, control->id);
2212
2213 if (ctrl == NULL || !type_is_int(ctrl))
2214 return -EINVAL;
2215 return get_ctrl(ctrl, &control->value);
2216}
2217EXPORT_SYMBOL(v4l2_g_ctrl);
2218
2219int v4l2_subdev_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *control)
2220{
2221 return v4l2_g_ctrl(sd->ctrl_handler, control);
2222}
2223EXPORT_SYMBOL(v4l2_subdev_g_ctrl);
2224
2225s32 v4l2_ctrl_g_ctrl(struct v4l2_ctrl *ctrl)
2226{
2227 s32 val = 0;
2228
2229 /* It's a driver bug if this happens. */
2230 WARN_ON(!type_is_int(ctrl));
2231 get_ctrl(ctrl, &val);
2232 return val;
2233}
2234EXPORT_SYMBOL(v4l2_ctrl_g_ctrl);
2235
2236
2237/* Core function that calls try/s_ctrl and ensures that the new value is
2238 copied to the current value on a set.
2239 Must be called with ctrl->handler->lock held. */
Hans Verkuile6402582011-06-14 10:56:42 -03002240static int try_or_set_cluster(struct v4l2_fh *fh,
2241 struct v4l2_ctrl *master, bool set)
Hans Verkuil09965172010-08-01 14:32:42 -03002242{
Hans Verkuil72d877c2011-06-10 05:44:36 -03002243 bool update_flag;
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002244 int ret;
Hans Verkuil09965172010-08-01 14:32:42 -03002245 int i;
2246
2247 /* Go through the cluster and either validate the new value or
2248 (if no new value was set), copy the current value to the new
2249 value, ensuring a consistent view for the control ops when
2250 called. */
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002251 for (i = 0; i < master->ncontrols; i++) {
Hans Verkuil09965172010-08-01 14:32:42 -03002252 struct v4l2_ctrl *ctrl = master->cluster[i];
2253
2254 if (ctrl == NULL)
2255 continue;
2256
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002257 if (!ctrl->is_new) {
2258 cur_to_new(ctrl);
Hans Verkuil09965172010-08-01 14:32:42 -03002259 continue;
2260 }
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002261 /* Check again: it may have changed since the
2262 previous check in try_or_set_ext_ctrls(). */
2263 if (set && (ctrl->flags & V4L2_CTRL_FLAG_GRABBED))
2264 return -EBUSY;
Hans Verkuil09965172010-08-01 14:32:42 -03002265 }
2266
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002267 ret = call_op(master, try_ctrl);
Hans Verkuil09965172010-08-01 14:32:42 -03002268
2269 /* Don't set if there is no change */
Hans Verkuil72d877c2011-06-10 05:44:36 -03002270 if (ret || !set || !cluster_changed(master))
2271 return ret;
2272 ret = call_op(master, s_ctrl);
Hans Verkuil72d877c2011-06-10 05:44:36 -03002273 if (ret)
2274 return ret;
2275
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002276 /* If OK, then make the new values permanent. */
Hans Verkuil72d877c2011-06-10 05:44:36 -03002277 update_flag = is_cur_manual(master) != is_new_manual(master);
2278 for (i = 0; i < master->ncontrols; i++)
Hans Verkuilab892ba2011-06-07 06:47:18 -03002279 new_to_cur(fh, master->cluster[i], update_flag && i > 0);
Hans Verkuil72d877c2011-06-10 05:44:36 -03002280 return 0;
Hans Verkuil09965172010-08-01 14:32:42 -03002281}
2282
Hans Verkuile6402582011-06-14 10:56:42 -03002283/* Validate controls. */
2284static int validate_ctrls(struct v4l2_ext_controls *cs,
2285 struct v4l2_ctrl_helper *helpers, bool set)
Hans Verkuil09965172010-08-01 14:32:42 -03002286{
Hans Verkuile6402582011-06-14 10:56:42 -03002287 unsigned i;
Hans Verkuil09965172010-08-01 14:32:42 -03002288 int ret = 0;
2289
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002290 cs->error_idx = cs->count;
Hans Verkuil09965172010-08-01 14:32:42 -03002291 for (i = 0; i < cs->count; i++) {
2292 struct v4l2_ctrl *ctrl = helpers[i].ctrl;
2293
Hans Verkuile6402582011-06-14 10:56:42 -03002294 cs->error_idx = i;
Hans Verkuil09965172010-08-01 14:32:42 -03002295
2296 if (ctrl->flags & V4L2_CTRL_FLAG_READ_ONLY)
2297 return -EACCES;
2298 /* This test is also done in try_set_control_cluster() which
2299 is called in atomic context, so that has the final say,
2300 but it makes sense to do an up-front check as well. Once
2301 an error occurs in try_set_control_cluster() some other
2302 controls may have been set already and we want to do a
2303 best-effort to avoid that. */
2304 if (set && (ctrl->flags & V4L2_CTRL_FLAG_GRABBED))
2305 return -EBUSY;
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002306 ret = validate_new(ctrl, &cs->controls[i]);
2307 if (ret)
2308 return ret;
Hans Verkuil09965172010-08-01 14:32:42 -03002309 }
Hans Verkuile6402582011-06-14 10:56:42 -03002310 return 0;
2311}
Hans Verkuil09965172010-08-01 14:32:42 -03002312
Hans Verkuil5626b8c2011-08-26 07:53:53 -03002313/* Obtain the current volatile values of an autocluster and mark them
2314 as new. */
2315static void update_from_auto_cluster(struct v4l2_ctrl *master)
2316{
2317 int i;
2318
2319 for (i = 0; i < master->ncontrols; i++)
2320 cur_to_new(master->cluster[i]);
2321 if (!call_op(master, g_volatile_ctrl))
2322 for (i = 1; i < master->ncontrols; i++)
2323 if (master->cluster[i])
2324 master->cluster[i]->is_new = 1;
2325}
2326
Hans Verkuile6402582011-06-14 10:56:42 -03002327/* Try or try-and-set controls */
2328static int try_set_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
2329 struct v4l2_ext_controls *cs,
2330 bool set)
2331{
2332 struct v4l2_ctrl_helper helper[4];
2333 struct v4l2_ctrl_helper *helpers = helper;
2334 unsigned i, j;
2335 int ret;
2336
2337 cs->error_idx = cs->count;
2338 cs->ctrl_class = V4L2_CTRL_ID2CLASS(cs->ctrl_class);
2339
2340 if (hdl == NULL)
2341 return -EINVAL;
2342
2343 if (cs->count == 0)
2344 return class_check(hdl, cs->ctrl_class);
2345
2346 if (cs->count > ARRAY_SIZE(helper)) {
Xi Wang0a3475e2012-04-06 09:32:37 -03002347 helpers = kmalloc_array(cs->count, sizeof(helper[0]),
2348 GFP_KERNEL);
Hans Verkuile6402582011-06-14 10:56:42 -03002349 if (!helpers)
2350 return -ENOMEM;
2351 }
2352 ret = prepare_ext_ctrls(hdl, cs, helpers);
2353 if (!ret)
2354 ret = validate_ctrls(cs, helpers, set);
2355 if (ret && set)
2356 cs->error_idx = cs->count;
Hans Verkuil09965172010-08-01 14:32:42 -03002357 for (i = 0; !ret && i < cs->count; i++) {
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002358 struct v4l2_ctrl *master;
2359 u32 idx = i;
Hans Verkuil09965172010-08-01 14:32:42 -03002360
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002361 if (helpers[i].mref == NULL)
Hans Verkuil09965172010-08-01 14:32:42 -03002362 continue;
2363
Hans Verkuil37cd3b72011-06-07 04:40:04 -03002364 cs->error_idx = i;
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002365 master = helpers[i].mref->ctrl;
2366 v4l2_ctrl_lock(master);
Hans Verkuil09965172010-08-01 14:32:42 -03002367
Hans Verkuil2a863792011-01-11 14:45:03 -03002368 /* Reset the 'is_new' flags of the cluster */
Hans Verkuil09965172010-08-01 14:32:42 -03002369 for (j = 0; j < master->ncontrols; j++)
2370 if (master->cluster[j])
Hans Verkuil2a863792011-01-11 14:45:03 -03002371 master->cluster[j]->is_new = 0;
Hans Verkuil09965172010-08-01 14:32:42 -03002372
Hans Verkuil5626b8c2011-08-26 07:53:53 -03002373 /* For volatile autoclusters that are currently in auto mode
2374 we need to discover if it will be set to manual mode.
2375 If so, then we have to copy the current volatile values
2376 first since those will become the new manual values (which
2377 may be overwritten by explicit new values from this set
2378 of controls). */
2379 if (master->is_auto && master->has_volatiles &&
2380 !is_cur_manual(master)) {
2381 /* Pick an initial non-manual value */
2382 s32 new_auto_val = master->manual_mode_value + 1;
2383 u32 tmp_idx = idx;
2384
2385 do {
2386 /* Check if the auto control is part of the
2387 list, and remember the new value. */
2388 if (helpers[tmp_idx].ctrl == master)
2389 new_auto_val = cs->controls[tmp_idx].value;
2390 tmp_idx = helpers[tmp_idx].next;
2391 } while (tmp_idx);
2392 /* If the new value == the manual value, then copy
2393 the current volatile values. */
2394 if (new_auto_val == master->manual_mode_value)
2395 update_from_auto_cluster(master);
2396 }
2397
Hans Verkuil09965172010-08-01 14:32:42 -03002398 /* Copy the new caller-supplied control values.
Hans Verkuil2a863792011-01-11 14:45:03 -03002399 user_to_new() sets 'is_new' to 1. */
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002400 do {
2401 ret = user_to_new(cs->controls + idx, helpers[idx].ctrl);
2402 idx = helpers[idx].next;
2403 } while (!ret && idx);
Hans Verkuil09965172010-08-01 14:32:42 -03002404
2405 if (!ret)
Hans Verkuile6402582011-06-14 10:56:42 -03002406 ret = try_or_set_cluster(fh, master, set);
Hans Verkuil09965172010-08-01 14:32:42 -03002407
2408 /* Copy the new values back to userspace. */
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002409 if (!ret) {
2410 idx = i;
2411 do {
Hans Verkuiladf41b92011-07-05 06:56:37 -03002412 ret = new_to_user(cs->controls + idx,
Hans Verkuile6402582011-06-14 10:56:42 -03002413 helpers[idx].ctrl);
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002414 idx = helpers[idx].next;
2415 } while (!ret && idx);
2416 }
2417 v4l2_ctrl_unlock(master);
Hans Verkuil09965172010-08-01 14:32:42 -03002418 }
Hans Verkuil09965172010-08-01 14:32:42 -03002419
Hans Verkuil09965172010-08-01 14:32:42 -03002420 if (cs->count > ARRAY_SIZE(helper))
2421 kfree(helpers);
2422 return ret;
2423}
2424
2425int v4l2_try_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct v4l2_ext_controls *cs)
2426{
Hans Verkuilab892ba2011-06-07 06:47:18 -03002427 return try_set_ext_ctrls(NULL, hdl, cs, false);
Hans Verkuil09965172010-08-01 14:32:42 -03002428}
2429EXPORT_SYMBOL(v4l2_try_ext_ctrls);
2430
Hans Verkuilab892ba2011-06-07 06:47:18 -03002431int v4l2_s_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
2432 struct v4l2_ext_controls *cs)
Hans Verkuil09965172010-08-01 14:32:42 -03002433{
Hans Verkuilab892ba2011-06-07 06:47:18 -03002434 return try_set_ext_ctrls(fh, hdl, cs, true);
Hans Verkuil09965172010-08-01 14:32:42 -03002435}
2436EXPORT_SYMBOL(v4l2_s_ext_ctrls);
2437
2438int v4l2_subdev_try_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *cs)
2439{
Hans Verkuilab892ba2011-06-07 06:47:18 -03002440 return try_set_ext_ctrls(NULL, sd->ctrl_handler, cs, false);
Hans Verkuil09965172010-08-01 14:32:42 -03002441}
2442EXPORT_SYMBOL(v4l2_subdev_try_ext_ctrls);
2443
2444int v4l2_subdev_s_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *cs)
2445{
Hans Verkuilab892ba2011-06-07 06:47:18 -03002446 return try_set_ext_ctrls(NULL, sd->ctrl_handler, cs, true);
Hans Verkuil09965172010-08-01 14:32:42 -03002447}
2448EXPORT_SYMBOL(v4l2_subdev_s_ext_ctrls);
2449
2450/* Helper function for VIDIOC_S_CTRL compatibility */
Hans Verkuilab892ba2011-06-07 06:47:18 -03002451static int set_ctrl(struct v4l2_fh *fh, struct v4l2_ctrl *ctrl, s32 *val)
Hans Verkuil09965172010-08-01 14:32:42 -03002452{
2453 struct v4l2_ctrl *master = ctrl->cluster[0];
2454 int ret;
2455 int i;
2456
Hans Verkuileb5b16e2011-06-14 10:04:06 -03002457 ret = validate_new_int(ctrl, val);
2458 if (ret)
2459 return ret;
2460
Hans Verkuil09965172010-08-01 14:32:42 -03002461 v4l2_ctrl_lock(ctrl);
2462
Hans Verkuil2a863792011-01-11 14:45:03 -03002463 /* Reset the 'is_new' flags of the cluster */
Hans Verkuil09965172010-08-01 14:32:42 -03002464 for (i = 0; i < master->ncontrols; i++)
2465 if (master->cluster[i])
Hans Verkuil2a863792011-01-11 14:45:03 -03002466 master->cluster[i]->is_new = 0;
Hans Verkuil09965172010-08-01 14:32:42 -03002467
Hans Verkuil5626b8c2011-08-26 07:53:53 -03002468 /* For autoclusters with volatiles that are switched from auto to
2469 manual mode we have to update the current volatile values since
2470 those will become the initial manual values after such a switch. */
2471 if (master->is_auto && master->has_volatiles && ctrl == master &&
2472 !is_cur_manual(master) && *val == master->manual_mode_value)
2473 update_from_auto_cluster(master);
Hans Verkuil09965172010-08-01 14:32:42 -03002474 ctrl->val = *val;
Hans Verkuil2a863792011-01-11 14:45:03 -03002475 ctrl->is_new = 1;
Hans Verkuile6402582011-06-14 10:56:42 -03002476 ret = try_or_set_cluster(fh, master, true);
Hans Verkuil09965172010-08-01 14:32:42 -03002477 *val = ctrl->cur.val;
2478 v4l2_ctrl_unlock(ctrl);
2479 return ret;
2480}
2481
Hans Verkuilab892ba2011-06-07 06:47:18 -03002482int v4l2_s_ctrl(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
2483 struct v4l2_control *control)
Hans Verkuil09965172010-08-01 14:32:42 -03002484{
2485 struct v4l2_ctrl *ctrl = v4l2_ctrl_find(hdl, control->id);
2486
2487 if (ctrl == NULL || !type_is_int(ctrl))
2488 return -EINVAL;
2489
Hans Verkuil7ebbc392011-06-07 04:50:31 -03002490 if (ctrl->flags & V4L2_CTRL_FLAG_READ_ONLY)
2491 return -EACCES;
2492
Hans Verkuilab892ba2011-06-07 06:47:18 -03002493 return set_ctrl(fh, ctrl, &control->value);
Hans Verkuil09965172010-08-01 14:32:42 -03002494}
2495EXPORT_SYMBOL(v4l2_s_ctrl);
2496
2497int v4l2_subdev_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *control)
2498{
Hans Verkuilab892ba2011-06-07 06:47:18 -03002499 return v4l2_s_ctrl(NULL, sd->ctrl_handler, control);
Hans Verkuil09965172010-08-01 14:32:42 -03002500}
2501EXPORT_SYMBOL(v4l2_subdev_s_ctrl);
2502
2503int v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val)
2504{
2505 /* It's a driver bug if this happens. */
2506 WARN_ON(!type_is_int(ctrl));
Hans Verkuilab892ba2011-06-07 06:47:18 -03002507 return set_ctrl(NULL, ctrl, &val);
Hans Verkuil09965172010-08-01 14:32:42 -03002508}
2509EXPORT_SYMBOL(v4l2_ctrl_s_ctrl);
Hans Verkuil6e239392011-06-07 11:13:44 -03002510
Hans de Goede3e3661492012-04-08 12:59:47 -03002511static int v4l2_ctrl_add_event(struct v4l2_subscribed_event *sev)
Hans Verkuil6e239392011-06-07 11:13:44 -03002512{
Hans de Goede3e3661492012-04-08 12:59:47 -03002513 struct v4l2_ctrl *ctrl = v4l2_ctrl_find(sev->fh->ctrl_handler, sev->id);
2514
2515 if (ctrl == NULL)
2516 return -EINVAL;
2517
Hans Verkuil6e239392011-06-07 11:13:44 -03002518 v4l2_ctrl_lock(ctrl);
Hans Verkuil77068d32011-06-13 18:55:58 -03002519 list_add_tail(&sev->node, &ctrl->ev_subs);
Hans Verkuil6e239392011-06-07 11:13:44 -03002520 if (ctrl->type != V4L2_CTRL_TYPE_CTRL_CLASS &&
Hans Verkuil77068d32011-06-13 18:55:58 -03002521 (sev->flags & V4L2_EVENT_SUB_FL_SEND_INITIAL)) {
Hans Verkuil6e239392011-06-07 11:13:44 -03002522 struct v4l2_event ev;
Hans Verkuilc12fcfd2011-06-14 02:42:45 -03002523 u32 changes = V4L2_EVENT_CTRL_CH_FLAGS;
Hans Verkuil6e239392011-06-07 11:13:44 -03002524
Hans Verkuilc12fcfd2011-06-14 02:42:45 -03002525 if (!(ctrl->flags & V4L2_CTRL_FLAG_WRITE_ONLY))
2526 changes |= V4L2_EVENT_CTRL_CH_VALUE;
2527 fill_event(&ev, ctrl, changes);
Hans Verkuil77068d32011-06-13 18:55:58 -03002528 v4l2_event_queue_fh(sev->fh, &ev);
Hans Verkuil6e239392011-06-07 11:13:44 -03002529 }
2530 v4l2_ctrl_unlock(ctrl);
Hans de Goede3e3661492012-04-08 12:59:47 -03002531 return 0;
Hans Verkuil6e239392011-06-07 11:13:44 -03002532}
Hans Verkuil6e239392011-06-07 11:13:44 -03002533
Hans de Goede3e3661492012-04-08 12:59:47 -03002534static void v4l2_ctrl_del_event(struct v4l2_subscribed_event *sev)
Hans Verkuil6e239392011-06-07 11:13:44 -03002535{
Hans de Goede3e3661492012-04-08 12:59:47 -03002536 struct v4l2_ctrl *ctrl = v4l2_ctrl_find(sev->fh->ctrl_handler, sev->id);
2537
Hans Verkuil6e239392011-06-07 11:13:44 -03002538 v4l2_ctrl_lock(ctrl);
Hans Verkuil77068d32011-06-13 18:55:58 -03002539 list_del(&sev->node);
Hans Verkuil6e239392011-06-07 11:13:44 -03002540 v4l2_ctrl_unlock(ctrl);
2541}
Hans de Goede3e3661492012-04-08 12:59:47 -03002542
2543void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new)
2544{
2545 u32 old_changes = old->u.ctrl.changes;
2546
2547 old->u.ctrl = new->u.ctrl;
2548 old->u.ctrl.changes |= old_changes;
2549}
2550EXPORT_SYMBOL(v4l2_ctrl_replace);
2551
2552void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new)
2553{
2554 new->u.ctrl.changes |= old->u.ctrl.changes;
2555}
2556EXPORT_SYMBOL(v4l2_ctrl_merge);
2557
2558const struct v4l2_subscribed_event_ops v4l2_ctrl_sub_ev_ops = {
2559 .add = v4l2_ctrl_add_event,
2560 .del = v4l2_ctrl_del_event,
2561 .replace = v4l2_ctrl_replace,
2562 .merge = v4l2_ctrl_merge,
2563};
2564EXPORT_SYMBOL(v4l2_ctrl_sub_ev_ops);
Hans Verkuile2ecb252012-02-02 08:20:53 -03002565
2566int v4l2_ctrl_log_status(struct file *file, void *fh)
2567{
2568 struct video_device *vfd = video_devdata(file);
2569 struct v4l2_fh *vfh = file->private_data;
2570
2571 if (test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) && vfd->v4l2_dev)
2572 v4l2_ctrl_handler_log_status(vfh->ctrl_handler,
2573 vfd->v4l2_dev->name);
2574 return 0;
2575}
2576EXPORT_SYMBOL(v4l2_ctrl_log_status);
Hans Verkuila26243b2012-01-27 16:18:42 -03002577
2578int v4l2_ctrl_subscribe_event(struct v4l2_fh *fh,
2579 struct v4l2_event_subscription *sub)
2580{
2581 if (sub->type == V4L2_EVENT_CTRL)
Hans de Goede3e3661492012-04-08 12:59:47 -03002582 return v4l2_event_subscribe(fh, sub, 0, &v4l2_ctrl_sub_ev_ops);
Hans Verkuila26243b2012-01-27 16:18:42 -03002583 return -EINVAL;
2584}
2585EXPORT_SYMBOL(v4l2_ctrl_subscribe_event);
2586
2587unsigned int v4l2_ctrl_poll(struct file *file, struct poll_table_struct *wait)
2588{
2589 struct v4l2_fh *fh = file->private_data;
2590
2591 if (v4l2_event_pending(fh))
2592 return POLLPRI;
2593 poll_wait(file, &fh->wait, wait);
2594 return 0;
2595}
2596EXPORT_SYMBOL(v4l2_ctrl_poll);