v4l2-ctrls.c 100.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
    V4L2 controls framework implementation.

    Copyright (C) 2010  Hans Verkuil <hverkuil@xs4all.nl>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <linux/ctype.h>
22
#include <linux/slab.h>
23
#include <linux/export.h>
24 25 26
#include <media/v4l2-ioctl.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ctrls.h>
27
#include <media/v4l2-event.h>
28 29
#include <media/v4l2-dev.h>

30 31
#define has_op(master, op) \
	(master->ops && master->ops->op)
32
#define call_op(master, op) \
33
	(has_op(master, op) ? master->ops->op(master) : 0)
34

35
/* Internal temporary helper struct, one for each v4l2_ext_control */
36 37 38
struct v4l2_ctrl_helper {
	/* Pointer to the control reference of the master control */
	struct v4l2_ctrl_ref *mref;
39 40
	/* The control corresponding to the v4l2_ext_control ID field. */
	struct v4l2_ctrl *ctrl;
41 42 43
	/* v4l2_ext_control index of the next control belonging to the
	   same cluster, or 0 if there isn't any. */
	u32 next;
44 45
};

46
/* Small helper function to determine if the autocluster is set to manual
47
   mode. */
48 49 50 51 52 53 54 55 56 57 58 59
static bool is_cur_manual(const struct v4l2_ctrl *master)
{
	return master->is_auto && master->cur.val == master->manual_mode_value;
}

/* Same as above, but this checks the against the new value instead of the
   current value. */
static bool is_new_manual(const struct v4l2_ctrl *master)
{
	return master->is_auto && master->val == master->manual_mode_value;
}

60 61 62 63
/* Returns NULL or a character pointer array containing the menu for
   the given control ID. The pointer array ends with a NULL pointer.
   An empty string signifies a menu entry that is invalid. This allows
   drivers to disable certain options if it is not supported. */
64
const char * const *v4l2_ctrl_get_menu(u32 id)
65
{
66
	static const char * const mpeg_audio_sampling_freq[] = {
67 68 69 70 71
		"44.1 kHz",
		"48 kHz",
		"32 kHz",
		NULL
	};
72
	static const char * const mpeg_audio_encoding[] = {
73 74 75 76 77 78 79
		"MPEG-1/2 Layer I",
		"MPEG-1/2 Layer II",
		"MPEG-1/2 Layer III",
		"MPEG-2/4 AAC",
		"AC-3",
		NULL
	};
80
	static const char * const mpeg_audio_l1_bitrate[] = {
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
		"32 kbps",
		"64 kbps",
		"96 kbps",
		"128 kbps",
		"160 kbps",
		"192 kbps",
		"224 kbps",
		"256 kbps",
		"288 kbps",
		"320 kbps",
		"352 kbps",
		"384 kbps",
		"416 kbps",
		"448 kbps",
		NULL
	};
97
	static const char * const mpeg_audio_l2_bitrate[] = {
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
		"32 kbps",
		"48 kbps",
		"56 kbps",
		"64 kbps",
		"80 kbps",
		"96 kbps",
		"112 kbps",
		"128 kbps",
		"160 kbps",
		"192 kbps",
		"224 kbps",
		"256 kbps",
		"320 kbps",
		"384 kbps",
		NULL
	};
114
	static const char * const mpeg_audio_l3_bitrate[] = {
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
		"32 kbps",
		"40 kbps",
		"48 kbps",
		"56 kbps",
		"64 kbps",
		"80 kbps",
		"96 kbps",
		"112 kbps",
		"128 kbps",
		"160 kbps",
		"192 kbps",
		"224 kbps",
		"256 kbps",
		"320 kbps",
		NULL
	};
131
	static const char * const mpeg_audio_ac3_bitrate[] = {
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
		"32 kbps",
		"40 kbps",
		"48 kbps",
		"56 kbps",
		"64 kbps",
		"80 kbps",
		"96 kbps",
		"112 kbps",
		"128 kbps",
		"160 kbps",
		"192 kbps",
		"224 kbps",
		"256 kbps",
		"320 kbps",
		"384 kbps",
		"448 kbps",
		"512 kbps",
		"576 kbps",
		"640 kbps",
		NULL
	};
153
	static const char * const mpeg_audio_mode[] = {
154 155 156 157 158 159
		"Stereo",
		"Joint Stereo",
		"Dual",
		"Mono",
		NULL
	};
160
	static const char * const mpeg_audio_mode_extension[] = {
161 162 163 164 165 166
		"Bound 4",
		"Bound 8",
		"Bound 12",
		"Bound 16",
		NULL
	};
167
	static const char * const mpeg_audio_emphasis[] = {
168 169 170 171 172
		"No Emphasis",
		"50/15 us",
		"CCITT J17",
		NULL
	};
173
	static const char * const mpeg_audio_crc[] = {
174 175 176 177
		"No CRC",
		"16-bit CRC",
		NULL
	};
178 179 180 181 182 183 184 185 186
	static const char * const mpeg_audio_dec_playback[] = {
		"Auto",
		"Stereo",
		"Left",
		"Right",
		"Mono",
		"Swapped Stereo",
		NULL
	};
187
	static const char * const mpeg_video_encoding[] = {
188 189 190 191 192
		"MPEG-1",
		"MPEG-2",
		"MPEG-4 AVC",
		NULL
	};
193
	static const char * const mpeg_video_aspect[] = {
194 195 196 197 198 199
		"1x1",
		"4x3",
		"16x9",
		"2.21x1",
		NULL
	};
200
	static const char * const mpeg_video_bitrate_mode[] = {
201 202 203 204
		"Variable Bitrate",
		"Constant Bitrate",
		NULL
	};
205
	static const char * const mpeg_stream_type[] = {
206 207 208 209 210 211 212 213
		"MPEG-2 Program Stream",
		"MPEG-2 Transport Stream",
		"MPEG-1 System Stream",
		"MPEG-2 DVD-compatible Stream",
		"MPEG-1 VCD-compatible Stream",
		"MPEG-2 SVCD-compatible Stream",
		NULL
	};
214
	static const char * const mpeg_stream_vbi_fmt[] = {
215
		"No VBI",
216
		"Private Packet, IVTV Format",
217 218
		NULL
	};
219
	static const char * const camera_power_line_frequency[] = {
220 221 222
		"Disabled",
		"50 Hz",
		"60 Hz",
223
		"Auto",
224 225
		NULL
	};
226
	static const char * const camera_exposure_auto[] = {
227 228 229 230 231 232
		"Auto Mode",
		"Manual Mode",
		"Shutter Priority Mode",
		"Aperture Priority Mode",
		NULL
	};
233 234 235 236
	static const char * const camera_exposure_metering[] = {
		"Average",
		"Center Weighted",
		"Spot",
237
		"Matrix",
238 239
		NULL
	};
240 241 242 243 244 245 246
	static const char * const camera_auto_focus_range[] = {
		"Auto",
		"Normal",
		"Macro",
		"Infinity",
		NULL
	};
247
	static const char * const colorfx[] = {
248 249 250 251 252 253
		"None",
		"Black & White",
		"Sepia",
		"Negative",
		"Emboss",
		"Sketch",
254 255 256
		"Sky Blue",
		"Grass Green",
		"Skin Whiten",
257
		"Vivid",
258 259 260 261 262 263
		"Aqua",
		"Art Freeze",
		"Silhouette",
		"Solarization",
		"Antique",
		"Set Cb/Cr",
264 265
		NULL
	};
266 267 268 269 270 271 272 273 274 275 276 277 278
	static const char * const auto_n_preset_white_balance[] = {
		"Manual",
		"Auto",
		"Incandescent",
		"Fluorescent",
		"Fluorescent H",
		"Horizon",
		"Daylight",
		"Flash",
		"Cloudy",
		"Shade",
		NULL,
	};
279 280 281 282 283
	static const char * const camera_iso_sensitivity_auto[] = {
		"Manual",
		"Auto",
		NULL
	};
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
	static const char * const scene_mode[] = {
		"None",
		"Backlight",
		"Beach/Snow",
		"Candle Light",
		"Dusk/Dawn",
		"Fall Colors",
		"Fireworks",
		"Landscape",
		"Night",
		"Party/Indoor",
		"Portrait",
		"Sports",
		"Sunset",
		"Text",
		NULL
	};
301 302
	static const char * const tune_emphasis[] = {
		"None",
303 304
		"50 Microseconds",
		"75 Microseconds",
305 306
		NULL,
	};
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
	static const char * const header_mode[] = {
		"Separate Buffer",
		"Joined With 1st Frame",
		NULL,
	};
	static const char * const multi_slice[] = {
		"Single",
		"Max Macroblocks",
		"Max Bytes",
		NULL,
	};
	static const char * const entropy_mode[] = {
		"CAVLC",
		"CABAC",
		NULL,
	};
	static const char * const mpeg_h264_level[] = {
		"1",
		"1b",
		"1.1",
		"1.2",
		"1.3",
		"2",
		"2.1",
		"2.2",
		"3",
		"3.1",
		"3.2",
		"4",
		"4.1",
		"4.2",
		"5",
		"5.1",
		NULL,
	};
	static const char * const h264_loop_filter[] = {
		"Enabled",
		"Disabled",
		"Disabled at Slice Boundary",
		NULL,
	};
	static const char * const h264_profile[] = {
		"Baseline",
		"Constrained Baseline",
		"Main",
		"Extended",
		"High",
		"High 10",
		"High 422",
		"High 444 Predictive",
		"High 10 Intra",
		"High 422 Intra",
		"High 444 Intra",
		"CAVLC 444 Intra",
		"Scalable Baseline",
		"Scalable High",
		"Scalable High Intra",
364
		"Stereo High",
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
		"Multiview High",
		NULL,
	};
	static const char * const vui_sar_idc[] = {
		"Unspecified",
		"1:1",
		"12:11",
		"10:11",
		"16:11",
		"40:33",
		"24:11",
		"20:11",
		"32:11",
		"80:33",
		"18:11",
		"15:11",
		"64:33",
		"160:99",
		"4:3",
		"3:2",
		"2:1",
		"Extended SAR",
		NULL,
	};
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
	static const char * const h264_fp_arrangement_type[] = {
		"Checkerboard",
		"Column",
		"Row",
		"Side by Side",
		"Top Bottom",
		"Temporal",
		NULL,
	};
	static const char * const h264_fmo_map_type[] = {
		"Interleaved Slices",
		"Scattered Slices",
		"Foreground with Leftover",
		"Box Out",
		"Raster Scan",
		"Wipe Scan",
		"Explicit",
		NULL,
	};
408 409 410 411 412 413 414 415 416 417 418 419 420
	static const char * const mpeg_mpeg4_level[] = {
		"0",
		"0b",
		"1",
		"2",
		"3",
		"3b",
		"4",
		"5",
		NULL,
	};
	static const char * const mpeg4_profile[] = {
		"Simple",
421
		"Advanced Simple",
422 423
		"Core",
		"Simple Scalable",
424
		"Advanced Coding Efficiency",
425 426 427
		NULL,
	};

428 429 430 431 432 433
	static const char * const vpx_golden_frame_sel[] = {
		"Use Previous Frame",
		"Use Previous Specific Frame",
		NULL,
	};

434 435 436 437 438 439 440 441 442 443 444
	static const char * const flash_led_mode[] = {
		"Off",
		"Flash",
		"Torch",
		NULL,
	};
	static const char * const flash_strobe_source[] = {
		"Software",
		"External",
		NULL,
	};
445

446 447 448 449 450 451 452 453 454
	static const char * const jpeg_chroma_subsampling[] = {
		"4:4:4",
		"4:2:2",
		"4:2:0",
		"4:1:1",
		"4:1:0",
		"Gray",
		NULL,
	};
455 456 457 458 459 460 461
	static const char * const dv_tx_mode[] = {
		"DVI-D",
		"HDMI",
		NULL,
	};
	static const char * const dv_rgb_range[] = {
		"Automatic",
462 463
		"RGB Limited Range (16-235)",
		"RGB Full Range (0-255)",
464 465
		NULL,
	};
466 467 468 469 470 471 472 473
	static const char * const dv_it_content_type[] = {
		"Graphics",
		"Photo",
		"Cinema",
		"Game",
		"No IT Content",
		NULL,
	};
474 475 476 477 478 479 480
	static const char * const detect_md_mode[] = {
		"Disabled",
		"Global",
		"Threshold Grid",
		"Region Grid",
		NULL,
	};
481

482

483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
	switch (id) {
	case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
		return mpeg_audio_sampling_freq;
	case V4L2_CID_MPEG_AUDIO_ENCODING:
		return mpeg_audio_encoding;
	case V4L2_CID_MPEG_AUDIO_L1_BITRATE:
		return mpeg_audio_l1_bitrate;
	case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
		return mpeg_audio_l2_bitrate;
	case V4L2_CID_MPEG_AUDIO_L3_BITRATE:
		return mpeg_audio_l3_bitrate;
	case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
		return mpeg_audio_ac3_bitrate;
	case V4L2_CID_MPEG_AUDIO_MODE:
		return mpeg_audio_mode;
	case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION:
		return mpeg_audio_mode_extension;
	case V4L2_CID_MPEG_AUDIO_EMPHASIS:
		return mpeg_audio_emphasis;
	case V4L2_CID_MPEG_AUDIO_CRC:
		return mpeg_audio_crc;
504 505 506
	case V4L2_CID_MPEG_AUDIO_DEC_PLAYBACK:
	case V4L2_CID_MPEG_AUDIO_DEC_MULTILINGUAL_PLAYBACK:
		return mpeg_audio_dec_playback;
507 508 509 510 511 512 513 514 515 516 517 518 519 520
	case V4L2_CID_MPEG_VIDEO_ENCODING:
		return mpeg_video_encoding;
	case V4L2_CID_MPEG_VIDEO_ASPECT:
		return mpeg_video_aspect;
	case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
		return mpeg_video_bitrate_mode;
	case V4L2_CID_MPEG_STREAM_TYPE:
		return mpeg_stream_type;
	case V4L2_CID_MPEG_STREAM_VBI_FMT:
		return mpeg_stream_vbi_fmt;
	case V4L2_CID_POWER_LINE_FREQUENCY:
		return camera_power_line_frequency;
	case V4L2_CID_EXPOSURE_AUTO:
		return camera_exposure_auto;
521 522
	case V4L2_CID_EXPOSURE_METERING:
		return camera_exposure_metering;
523 524
	case V4L2_CID_AUTO_FOCUS_RANGE:
		return camera_auto_focus_range;
525 526
	case V4L2_CID_COLORFX:
		return colorfx;
527 528
	case V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE:
		return auto_n_preset_white_balance;
529 530
	case V4L2_CID_ISO_SENSITIVITY_AUTO:
		return camera_iso_sensitivity_auto;
531 532
	case V4L2_CID_SCENE_MODE:
		return scene_mode;
533
	case V4L2_CID_TUNE_PREEMPHASIS:
534 535 536
		return tune_emphasis;
	case V4L2_CID_TUNE_DEEMPHASIS:
		return tune_emphasis;
537 538 539 540
	case V4L2_CID_FLASH_LED_MODE:
		return flash_led_mode;
	case V4L2_CID_FLASH_STROBE_SOURCE:
		return flash_strobe_source;
541 542 543 544 545 546 547 548 549 550 551 552 553 554
	case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
		return header_mode;
	case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
		return multi_slice;
	case V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE:
		return entropy_mode;
	case V4L2_CID_MPEG_VIDEO_H264_LEVEL:
		return mpeg_h264_level;
	case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
		return h264_loop_filter;
	case V4L2_CID_MPEG_VIDEO_H264_PROFILE:
		return h264_profile;
	case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC:
		return vui_sar_idc;
555 556 557 558
	case V4L2_CID_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE:
		return h264_fp_arrangement_type;
	case V4L2_CID_MPEG_VIDEO_H264_FMO_MAP_TYPE:
		return h264_fmo_map_type;
559 560 561 562
	case V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL:
		return mpeg_mpeg4_level;
	case V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE:
		return mpeg4_profile;
563 564
	case V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_SEL:
		return vpx_golden_frame_sel;
565 566
	case V4L2_CID_JPEG_CHROMA_SUBSAMPLING:
		return jpeg_chroma_subsampling;
567 568 569 570 571
	case V4L2_CID_DV_TX_MODE:
		return dv_tx_mode;
	case V4L2_CID_DV_TX_RGB_RANGE:
	case V4L2_CID_DV_RX_RGB_RANGE:
		return dv_rgb_range;
572 573 574
	case V4L2_CID_DV_TX_IT_CONTENT_TYPE:
	case V4L2_CID_DV_RX_IT_CONTENT_TYPE:
		return dv_it_content_type;
575 576
	case V4L2_CID_DETECT_MD_MODE:
		return detect_md_mode;
577

578 579 580 581 582 583
	default:
		return NULL;
	}
}
EXPORT_SYMBOL(v4l2_ctrl_get_menu);

584
#define __v4l2_qmenu_int_len(arr, len) ({ *(len) = ARRAY_SIZE(arr); arr; })
585 586 587 588
/*
 * Returns NULL or an s64 type array containing the menu for given
 * control ID. The total number of the menu items is returned in @len.
 */
589
const s64 *v4l2_ctrl_get_int_menu(u32 id, u32 *len)
590
{
591
	static const s64 qmenu_int_vpx_num_partitions[] = {
592 593 594
		1, 2, 4, 8,
	};

595
	static const s64 qmenu_int_vpx_num_ref_frames[] = {
596 597 598
		1, 2, 3,
	};

599
	switch (id) {
600 601 602 603
	case V4L2_CID_MPEG_VIDEO_VPX_NUM_PARTITIONS:
		return __v4l2_qmenu_int_len(qmenu_int_vpx_num_partitions, len);
	case V4L2_CID_MPEG_VIDEO_VPX_NUM_REF_FRAMES:
		return __v4l2_qmenu_int_len(qmenu_int_vpx_num_ref_frames, len);
604 605 606
	default:
		*len = 0;
		return NULL;
607
	}
608 609 610
}
EXPORT_SYMBOL(v4l2_ctrl_get_int_menu);

611 612 613 614 615
/* Return the control name. */
const char *v4l2_ctrl_get_name(u32 id)
{
	switch (id) {
	/* USER controls */
H
Hans Verkuil 已提交
616
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
617 618 619 620 621 622 623 624 625 626 627
	case V4L2_CID_USER_CLASS:		return "User Controls";
	case V4L2_CID_BRIGHTNESS:		return "Brightness";
	case V4L2_CID_CONTRAST:			return "Contrast";
	case V4L2_CID_SATURATION:		return "Saturation";
	case V4L2_CID_HUE:			return "Hue";
	case V4L2_CID_AUDIO_VOLUME:		return "Volume";
	case V4L2_CID_AUDIO_BALANCE:		return "Balance";
	case V4L2_CID_AUDIO_BASS:		return "Bass";
	case V4L2_CID_AUDIO_TREBLE:		return "Treble";
	case V4L2_CID_AUDIO_MUTE:		return "Mute";
	case V4L2_CID_AUDIO_LOUDNESS:		return "Loudness";
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
	case V4L2_CID_BLACK_LEVEL:		return "Black Level";
	case V4L2_CID_AUTO_WHITE_BALANCE:	return "White Balance, Automatic";
	case V4L2_CID_DO_WHITE_BALANCE:		return "Do White Balance";
	case V4L2_CID_RED_BALANCE:		return "Red Balance";
	case V4L2_CID_BLUE_BALANCE:		return "Blue Balance";
	case V4L2_CID_GAMMA:			return "Gamma";
	case V4L2_CID_EXPOSURE:			return "Exposure";
	case V4L2_CID_AUTOGAIN:			return "Gain, Automatic";
	case V4L2_CID_GAIN:			return "Gain";
	case V4L2_CID_HFLIP:			return "Horizontal Flip";
	case V4L2_CID_VFLIP:			return "Vertical Flip";
	case V4L2_CID_POWER_LINE_FREQUENCY:	return "Power Line Frequency";
	case V4L2_CID_HUE_AUTO:			return "Hue, Automatic";
	case V4L2_CID_WHITE_BALANCE_TEMPERATURE: return "White Balance Temperature";
	case V4L2_CID_SHARPNESS:		return "Sharpness";
	case V4L2_CID_BACKLIGHT_COMPENSATION:	return "Backlight Compensation";
	case V4L2_CID_CHROMA_AGC:		return "Chroma AGC";
	case V4L2_CID_COLOR_KILLER:		return "Color Killer";
	case V4L2_CID_COLORFX:			return "Color Effects";
	case V4L2_CID_AUTOBRIGHTNESS:		return "Brightness, Automatic";
	case V4L2_CID_BAND_STOP_FILTER:		return "Band-Stop Filter";
	case V4L2_CID_ROTATE:			return "Rotate";
	case V4L2_CID_BG_COLOR:			return "Background Color";
651
	case V4L2_CID_CHROMA_GAIN:		return "Chroma Gain";
652 653
	case V4L2_CID_ILLUMINATORS_1:		return "Illuminator 1";
	case V4L2_CID_ILLUMINATORS_2:		return "Illuminator 2";
654 655
	case V4L2_CID_MIN_BUFFERS_FOR_CAPTURE:	return "Min Number of Capture Buffers";
	case V4L2_CID_MIN_BUFFERS_FOR_OUTPUT:	return "Min Number of Output Buffers";
656
	case V4L2_CID_ALPHA_COMPONENT:		return "Alpha Component";
657
	case V4L2_CID_COLORFX_CBCR:		return "Color Effects, CbCr";
658

659 660 661
	/* Codec controls */
	/* The MPEG controls are applicable to all codec controls
	 * and the 'MPEG' part of the define is historical */
662
	/* Keep the order of the 'case's the same as in videodev2.h! */
663
	case V4L2_CID_MPEG_CLASS:		return "Codec Controls";
664 665 666 667 668
	case V4L2_CID_MPEG_STREAM_TYPE:		return "Stream Type";
	case V4L2_CID_MPEG_STREAM_PID_PMT:	return "Stream PMT Program ID";
	case V4L2_CID_MPEG_STREAM_PID_AUDIO:	return "Stream Audio Program ID";
	case V4L2_CID_MPEG_STREAM_PID_VIDEO:	return "Stream Video Program ID";
	case V4L2_CID_MPEG_STREAM_PID_PCR:	return "Stream PCR Program ID";
669 670 671
	case V4L2_CID_MPEG_STREAM_PES_ID_AUDIO: return "Stream PES Audio ID";
	case V4L2_CID_MPEG_STREAM_PES_ID_VIDEO: return "Stream PES Video ID";
	case V4L2_CID_MPEG_STREAM_VBI_FMT:	return "Stream VBI Format";
672
	case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ: return "Audio Sampling Frequency";
673 674 675 676 677
	case V4L2_CID_MPEG_AUDIO_ENCODING:	return "Audio Encoding";
	case V4L2_CID_MPEG_AUDIO_L1_BITRATE:	return "Audio Layer I Bitrate";
	case V4L2_CID_MPEG_AUDIO_L2_BITRATE:	return "Audio Layer II Bitrate";
	case V4L2_CID_MPEG_AUDIO_L3_BITRATE:	return "Audio Layer III Bitrate";
	case V4L2_CID_MPEG_AUDIO_MODE:		return "Audio Stereo Mode";
678
	case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION: return "Audio Stereo Mode Extension";
679 680 681 682 683
	case V4L2_CID_MPEG_AUDIO_EMPHASIS:	return "Audio Emphasis";
	case V4L2_CID_MPEG_AUDIO_CRC:		return "Audio CRC";
	case V4L2_CID_MPEG_AUDIO_MUTE:		return "Audio Mute";
	case V4L2_CID_MPEG_AUDIO_AAC_BITRATE:	return "Audio AAC Bitrate";
	case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:	return "Audio AC-3 Bitrate";
684 685
	case V4L2_CID_MPEG_AUDIO_DEC_PLAYBACK:	return "Audio Playback";
	case V4L2_CID_MPEG_AUDIO_DEC_MULTILINGUAL_PLAYBACK: return "Audio Multilingual Playback";
686 687 688 689 690 691 692 693 694
	case V4L2_CID_MPEG_VIDEO_ENCODING:	return "Video Encoding";
	case V4L2_CID_MPEG_VIDEO_ASPECT:	return "Video Aspect";
	case V4L2_CID_MPEG_VIDEO_B_FRAMES:	return "Video B Frames";
	case V4L2_CID_MPEG_VIDEO_GOP_SIZE:	return "Video GOP Size";
	case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE:	return "Video GOP Closure";
	case V4L2_CID_MPEG_VIDEO_PULLDOWN:	return "Video Pulldown";
	case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:	return "Video Bitrate Mode";
	case V4L2_CID_MPEG_VIDEO_BITRATE:	return "Video Bitrate";
	case V4L2_CID_MPEG_VIDEO_BITRATE_PEAK:	return "Video Peak Bitrate";
695
	case V4L2_CID_MPEG_VIDEO_TEMPORAL_DECIMATION: return "Video Temporal Decimation";
696
	case V4L2_CID_MPEG_VIDEO_MUTE:		return "Video Mute";
697
	case V4L2_CID_MPEG_VIDEO_MUTE_YUV:	return "Video Mute YUV";
698 699
	case V4L2_CID_MPEG_VIDEO_DECODER_SLICE_INTERFACE:	return "Decoder Slice Interface";
	case V4L2_CID_MPEG_VIDEO_DECODER_MPEG4_DEBLOCK_FILTER:	return "MPEG4 Loop Filter Enable";
700
	case V4L2_CID_MPEG_VIDEO_CYCLIC_INTRA_REFRESH_MB:	return "Number of Intra Refresh MBs";
701 702 703
	case V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE:		return "Frame Level Rate Control Enable";
	case V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE:			return "H264 MB Level Rate Control";
	case V4L2_CID_MPEG_VIDEO_HEADER_MODE:			return "Sequence Header Mode";
704
	case V4L2_CID_MPEG_VIDEO_MAX_REF_PIC:			return "Max Number of Reference Pics";
705
	case V4L2_CID_MPEG_VIDEO_H263_I_FRAME_QP:		return "H263 I-Frame QP Value";
706 707
	case V4L2_CID_MPEG_VIDEO_H263_P_FRAME_QP:		return "H263 P-Frame QP Value";
	case V4L2_CID_MPEG_VIDEO_H263_B_FRAME_QP:		return "H263 B-Frame QP Value";
708 709 710
	case V4L2_CID_MPEG_VIDEO_H263_MIN_QP:			return "H263 Minimum QP Value";
	case V4L2_CID_MPEG_VIDEO_H263_MAX_QP:			return "H263 Maximum QP Value";
	case V4L2_CID_MPEG_VIDEO_H264_I_FRAME_QP:		return "H264 I-Frame QP Value";
711 712
	case V4L2_CID_MPEG_VIDEO_H264_P_FRAME_QP:		return "H264 P-Frame QP Value";
	case V4L2_CID_MPEG_VIDEO_H264_B_FRAME_QP:		return "H264 B-Frame QP Value";
713 714 715 716
	case V4L2_CID_MPEG_VIDEO_H264_MAX_QP:			return "H264 Maximum QP Value";
	case V4L2_CID_MPEG_VIDEO_H264_MIN_QP:			return "H264 Minimum QP Value";
	case V4L2_CID_MPEG_VIDEO_H264_8X8_TRANSFORM:		return "H264 8x8 Transform Enable";
	case V4L2_CID_MPEG_VIDEO_H264_CPB_SIZE:			return "H264 CPB Buffer Size";
717 718
	case V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE:		return "H264 Entropy Mode";
	case V4L2_CID_MPEG_VIDEO_H264_I_PERIOD:			return "H264 I-Frame Period";
719 720 721 722 723 724 725 726 727
	case V4L2_CID_MPEG_VIDEO_H264_LEVEL:			return "H264 Level";
	case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_ALPHA:	return "H264 Loop Filter Alpha Offset";
	case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_BETA:		return "H264 Loop Filter Beta Offset";
	case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:		return "H264 Loop Filter Mode";
	case V4L2_CID_MPEG_VIDEO_H264_PROFILE:			return "H264 Profile";
	case V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_HEIGHT:	return "Vertical Size of SAR";
	case V4L2_CID_MPEG_VIDEO_H264_VUI_EXT_SAR_WIDTH:	return "Horizontal Size of SAR";
	case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_ENABLE:		return "Aspect Ratio VUI Enable";
	case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC:		return "VUI Aspect Ratio IDC";
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
	case V4L2_CID_MPEG_VIDEO_H264_SEI_FRAME_PACKING:	return "H264 Enable Frame Packing SEI";
	case V4L2_CID_MPEG_VIDEO_H264_SEI_FP_CURRENT_FRAME_0:	return "H264 Set Curr. Frame as Frame0";
	case V4L2_CID_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE:	return "H264 FP Arrangement Type";
	case V4L2_CID_MPEG_VIDEO_H264_FMO:			return "H264 Flexible MB Ordering";
	case V4L2_CID_MPEG_VIDEO_H264_FMO_MAP_TYPE:		return "H264 Map Type for FMO";
	case V4L2_CID_MPEG_VIDEO_H264_FMO_SLICE_GROUP:		return "H264 FMO Number of Slice Groups";
	case V4L2_CID_MPEG_VIDEO_H264_FMO_CHANGE_DIRECTION:	return "H264 FMO Direction of Change";
	case V4L2_CID_MPEG_VIDEO_H264_FMO_CHANGE_RATE:		return "H264 FMO Size of 1st Slice Grp";
	case V4L2_CID_MPEG_VIDEO_H264_FMO_RUN_LENGTH:		return "H264 FMO No. of Consecutive MBs";
	case V4L2_CID_MPEG_VIDEO_H264_ASO:			return "H264 Arbitrary Slice Ordering";
	case V4L2_CID_MPEG_VIDEO_H264_ASO_SLICE_ORDER:		return "H264 ASO Slice Order";
	case V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING:	return "Enable H264 Hierarchical Coding";
	case V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_TYPE:	return "H264 Hierarchical Coding Type";
	case V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_LAYER:return "H264 Number of HC Layers";
	case V4L2_CID_MPEG_VIDEO_H264_HIERARCHICAL_CODING_LAYER_QP:
								return "H264 Set QP Value for HC Layers";
744
	case V4L2_CID_MPEG_VIDEO_MPEG4_I_FRAME_QP:		return "MPEG4 I-Frame QP Value";
745 746
	case V4L2_CID_MPEG_VIDEO_MPEG4_P_FRAME_QP:		return "MPEG4 P-Frame QP Value";
	case V4L2_CID_MPEG_VIDEO_MPEG4_B_FRAME_QP:		return "MPEG4 B-Frame QP Value";
747 748 749 750 751
	case V4L2_CID_MPEG_VIDEO_MPEG4_MIN_QP:			return "MPEG4 Minimum QP Value";
	case V4L2_CID_MPEG_VIDEO_MPEG4_MAX_QP:			return "MPEG4 Maximum QP Value";
	case V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL:			return "MPEG4 Level";
	case V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE:			return "MPEG4 Profile";
	case V4L2_CID_MPEG_VIDEO_MPEG4_QPEL:			return "Quarter Pixel Search Enable";
752 753 754
	case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_BYTES:		return "Maximum Bytes in a Slice";
	case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MAX_MB:		return "Number of MBs in a Slice";
	case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:		return "Slice Partitioning Method";
755
	case V4L2_CID_MPEG_VIDEO_VBV_SIZE:			return "VBV Buffer Size";
756 757
	case V4L2_CID_MPEG_VIDEO_DEC_PTS:			return "Video Decoder PTS";
	case V4L2_CID_MPEG_VIDEO_DEC_FRAME:			return "Video Decoder Frame Count";
758
	case V4L2_CID_MPEG_VIDEO_VBV_DELAY:			return "Initial Delay for VBV Control";
759 760
	case V4L2_CID_MPEG_VIDEO_MV_H_SEARCH_RANGE:		return "Horizontal MV Search Range";
	case V4L2_CID_MPEG_VIDEO_MV_V_SEARCH_RANGE:		return "Vertical MV Search Range";
761
	case V4L2_CID_MPEG_VIDEO_REPEAT_SEQ_HEADER:		return "Repeat Sequence Header";
762
	case V4L2_CID_MPEG_VIDEO_FORCE_KEY_FRAME:		return "Force Key Frame";
763

764 765 766 767 768 769 770 771
	/* VPX controls */
	case V4L2_CID_MPEG_VIDEO_VPX_NUM_PARTITIONS:		return "VPX Number of Partitions";
	case V4L2_CID_MPEG_VIDEO_VPX_IMD_DISABLE_4X4:		return "VPX Intra Mode Decision Disable";
	case V4L2_CID_MPEG_VIDEO_VPX_NUM_REF_FRAMES:		return "VPX No. of Refs for P Frame";
	case V4L2_CID_MPEG_VIDEO_VPX_FILTER_LEVEL:		return "VPX Loop Filter Level Range";
	case V4L2_CID_MPEG_VIDEO_VPX_FILTER_SHARPNESS:		return "VPX Deblocking Effect Control";
	case V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_REF_PERIOD:	return "VPX Golden Frame Refresh Period";
	case V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_SEL:		return "VPX Golden Frame Indicator";
772 773 774 775
	case V4L2_CID_MPEG_VIDEO_VPX_MIN_QP:			return "VPX Minimum QP Value";
	case V4L2_CID_MPEG_VIDEO_VPX_MAX_QP:			return "VPX Maximum QP Value";
	case V4L2_CID_MPEG_VIDEO_VPX_I_FRAME_QP:		return "VPX I-Frame QP Value";
	case V4L2_CID_MPEG_VIDEO_VPX_P_FRAME_QP:		return "VPX P-Frame QP Value";
776
	case V4L2_CID_MPEG_VIDEO_VPX_PROFILE:			return "VPX Profile";
777

778
	/* CAMERA controls */
H
Hans Verkuil 已提交
779
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
780 781 782 783 784 785 786 787 788 789 790 791
	case V4L2_CID_CAMERA_CLASS:		return "Camera Controls";
	case V4L2_CID_EXPOSURE_AUTO:		return "Auto Exposure";
	case V4L2_CID_EXPOSURE_ABSOLUTE:	return "Exposure Time, Absolute";
	case V4L2_CID_EXPOSURE_AUTO_PRIORITY:	return "Exposure, Dynamic Framerate";
	case V4L2_CID_PAN_RELATIVE:		return "Pan, Relative";
	case V4L2_CID_TILT_RELATIVE:		return "Tilt, Relative";
	case V4L2_CID_PAN_RESET:		return "Pan, Reset";
	case V4L2_CID_TILT_RESET:		return "Tilt, Reset";
	case V4L2_CID_PAN_ABSOLUTE:		return "Pan, Absolute";
	case V4L2_CID_TILT_ABSOLUTE:		return "Tilt, Absolute";
	case V4L2_CID_FOCUS_ABSOLUTE:		return "Focus, Absolute";
	case V4L2_CID_FOCUS_RELATIVE:		return "Focus, Relative";
792
	case V4L2_CID_FOCUS_AUTO:		return "Focus, Automatic Continuous";
793 794 795 796
	case V4L2_CID_ZOOM_ABSOLUTE:		return "Zoom, Absolute";
	case V4L2_CID_ZOOM_RELATIVE:		return "Zoom, Relative";
	case V4L2_CID_ZOOM_CONTINUOUS:		return "Zoom, Continuous";
	case V4L2_CID_PRIVACY:			return "Privacy";
797 798
	case V4L2_CID_IRIS_ABSOLUTE:		return "Iris, Absolute";
	case V4L2_CID_IRIS_RELATIVE:		return "Iris, Relative";
799
	case V4L2_CID_AUTO_EXPOSURE_BIAS:	return "Auto Exposure, Bias";
800
	case V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE: return "White Balance, Auto & Preset";
801
	case V4L2_CID_WIDE_DYNAMIC_RANGE:	return "Wide Dynamic Range";
802
	case V4L2_CID_IMAGE_STABILIZATION:	return "Image Stabilization";
803 804
	case V4L2_CID_ISO_SENSITIVITY:		return "ISO Sensitivity";
	case V4L2_CID_ISO_SENSITIVITY_AUTO:	return "ISO Sensitivity, Auto";
805
	case V4L2_CID_EXPOSURE_METERING:	return "Exposure, Metering Mode";
806
	case V4L2_CID_SCENE_MODE:		return "Scene Mode";
807
	case V4L2_CID_3A_LOCK:			return "3A Lock";
808 809 810 811
	case V4L2_CID_AUTO_FOCUS_START:		return "Auto Focus, Start";
	case V4L2_CID_AUTO_FOCUS_STOP:		return "Auto Focus, Stop";
	case V4L2_CID_AUTO_FOCUS_STATUS:	return "Auto Focus, Status";
	case V4L2_CID_AUTO_FOCUS_RANGE:		return "Auto Focus, Range";
812 813
	case V4L2_CID_PAN_SPEED:		return "Pan, Speed";
	case V4L2_CID_TILT_SPEED:		return "Tilt, Speed";
814

H
Hans Verkuil 已提交
815 816
	/* FM Radio Modulator controls */
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
817 818 819 820 821 822
	case V4L2_CID_FM_TX_CLASS:		return "FM Radio Modulator Controls";
	case V4L2_CID_RDS_TX_DEVIATION:		return "RDS Signal Deviation";
	case V4L2_CID_RDS_TX_PI:		return "RDS Program ID";
	case V4L2_CID_RDS_TX_PTY:		return "RDS Program Type";
	case V4L2_CID_RDS_TX_PS_NAME:		return "RDS PS Name";
	case V4L2_CID_RDS_TX_RADIO_TEXT:	return "RDS Radio Text";
823 824 825 826 827 828 829 830 831
	case V4L2_CID_RDS_TX_MONO_STEREO:	return "RDS Stereo";
	case V4L2_CID_RDS_TX_ARTIFICIAL_HEAD:	return "RDS Artificial Head";
	case V4L2_CID_RDS_TX_COMPRESSED:	return "RDS Compressed";
	case V4L2_CID_RDS_TX_DYNAMIC_PTY:	return "RDS Dynamic PTY";
	case V4L2_CID_RDS_TX_TRAFFIC_ANNOUNCEMENT: return "RDS Traffic Announcement";
	case V4L2_CID_RDS_TX_TRAFFIC_PROGRAM:	return "RDS Traffic Program";
	case V4L2_CID_RDS_TX_MUSIC_SPEECH:	return "RDS Music";
	case V4L2_CID_RDS_TX_ALT_FREQS_ENABLE:	return "RDS Enable Alt Frequencies";
	case V4L2_CID_RDS_TX_ALT_FREQS:		return "RDS Alternate Frequencies";
832 833 834
	case V4L2_CID_AUDIO_LIMITER_ENABLED:	return "Audio Limiter Feature Enabled";
	case V4L2_CID_AUDIO_LIMITER_RELEASE_TIME: return "Audio Limiter Release Time";
	case V4L2_CID_AUDIO_LIMITER_DEVIATION:	return "Audio Limiter Deviation";
835
	case V4L2_CID_AUDIO_COMPRESSION_ENABLED: return "Audio Compression Enabled";
836 837 838 839 840 841 842
	case V4L2_CID_AUDIO_COMPRESSION_GAIN:	return "Audio Compression Gain";
	case V4L2_CID_AUDIO_COMPRESSION_THRESHOLD: return "Audio Compression Threshold";
	case V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME: return "Audio Compression Attack Time";
	case V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME: return "Audio Compression Release Time";
	case V4L2_CID_PILOT_TONE_ENABLED:	return "Pilot Tone Feature Enabled";
	case V4L2_CID_PILOT_TONE_DEVIATION:	return "Pilot Tone Deviation";
	case V4L2_CID_PILOT_TONE_FREQUENCY:	return "Pilot Tone Frequency";
843
	case V4L2_CID_TUNE_PREEMPHASIS:		return "Pre-Emphasis";
844 845 846
	case V4L2_CID_TUNE_POWER_LEVEL:		return "Tune Power Level";
	case V4L2_CID_TUNE_ANTENNA_CAPACITOR:	return "Tune Antenna Capacitor";

847
	/* Flash controls */
H
Hans Verkuil 已提交
848
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
849 850 851
	case V4L2_CID_FLASH_CLASS:		return "Flash Controls";
	case V4L2_CID_FLASH_LED_MODE:		return "LED Mode";
	case V4L2_CID_FLASH_STROBE_SOURCE:	return "Strobe Source";
852
	case V4L2_CID_FLASH_STROBE:		return "Strobe";
853 854 855 856 857 858
	case V4L2_CID_FLASH_STROBE_STOP:	return "Stop Strobe";
	case V4L2_CID_FLASH_STROBE_STATUS:	return "Strobe Status";
	case V4L2_CID_FLASH_TIMEOUT:		return "Strobe Timeout";
	case V4L2_CID_FLASH_INTENSITY:		return "Intensity, Flash Mode";
	case V4L2_CID_FLASH_TORCH_INTENSITY:	return "Intensity, Torch Mode";
	case V4L2_CID_FLASH_INDICATOR_INTENSITY: return "Intensity, Indicator";
859 860
	case V4L2_CID_FLASH_FAULT:		return "Faults";
	case V4L2_CID_FLASH_CHARGE:		return "Charge";
861
	case V4L2_CID_FLASH_READY:		return "Ready to Strobe";
862

863
	/* JPEG encoder controls */
H
Hans Verkuil 已提交
864
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
865 866 867 868 869 870
	case V4L2_CID_JPEG_CLASS:		return "JPEG Compression Controls";
	case V4L2_CID_JPEG_CHROMA_SUBSAMPLING:	return "Chroma Subsampling";
	case V4L2_CID_JPEG_RESTART_INTERVAL:	return "Restart Interval";
	case V4L2_CID_JPEG_COMPRESSION_QUALITY:	return "Compression Quality";
	case V4L2_CID_JPEG_ACTIVE_MARKER:	return "Active Markers";

871
	/* Image source controls */
H
Hans Verkuil 已提交
872
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
873 874 875 876
	case V4L2_CID_IMAGE_SOURCE_CLASS:	return "Image Source Controls";
	case V4L2_CID_VBLANK:			return "Vertical Blanking";
	case V4L2_CID_HBLANK:			return "Horizontal Blanking";
	case V4L2_CID_ANALOGUE_GAIN:		return "Analogue Gain";
877 878 879 880
	case V4L2_CID_TEST_PATTERN_RED:		return "Red Pixel Value";
	case V4L2_CID_TEST_PATTERN_GREENR:	return "Green (Red) Pixel Value";
	case V4L2_CID_TEST_PATTERN_BLUE:	return "Blue Pixel Value";
	case V4L2_CID_TEST_PATTERN_GREENB:	return "Green (Blue) Pixel Value";
881

882
	/* Image processing controls */
H
Hans Verkuil 已提交
883
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
884 885 886
	case V4L2_CID_IMAGE_PROC_CLASS:		return "Image Processing Controls";
	case V4L2_CID_LINK_FREQ:		return "Link Frequency";
	case V4L2_CID_PIXEL_RATE:		return "Pixel Rate";
887
	case V4L2_CID_TEST_PATTERN:		return "Test Pattern";
888
	case V4L2_CID_DEINTERLACING_MODE:	return "Deinterlacing Mode";
889

890
	/* DV controls */
H
Hans Verkuil 已提交
891
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
892 893 894 895 896 897
	case V4L2_CID_DV_CLASS:			return "Digital Video Controls";
	case V4L2_CID_DV_TX_HOTPLUG:		return "Hotplug Present";
	case V4L2_CID_DV_TX_RXSENSE:		return "RxSense Present";
	case V4L2_CID_DV_TX_EDID_PRESENT:	return "EDID Present";
	case V4L2_CID_DV_TX_MODE:		return "Transmit Mode";
	case V4L2_CID_DV_TX_RGB_RANGE:		return "Tx RGB Quantization Range";
898
	case V4L2_CID_DV_TX_IT_CONTENT_TYPE:	return "Tx IT Content Type";
899 900
	case V4L2_CID_DV_RX_POWER_PRESENT:	return "Power Present";
	case V4L2_CID_DV_RX_RGB_RANGE:		return "Rx RGB Quantization Range";
901
	case V4L2_CID_DV_RX_IT_CONTENT_TYPE:	return "Rx IT Content Type";
902

903 904 905
	case V4L2_CID_FM_RX_CLASS:		return "FM Radio Receiver Controls";
	case V4L2_CID_TUNE_DEEMPHASIS:		return "De-Emphasis";
	case V4L2_CID_RDS_RECEPTION:		return "RDS Reception";
906
	case V4L2_CID_RF_TUNER_CLASS:		return "RF Tuner Controls";
907
	case V4L2_CID_RF_TUNER_RF_GAIN:		return "RF Gain";
908 909 910 911 912 913
	case V4L2_CID_RF_TUNER_LNA_GAIN_AUTO:	return "LNA Gain, Auto";
	case V4L2_CID_RF_TUNER_LNA_GAIN:	return "LNA Gain";
	case V4L2_CID_RF_TUNER_MIXER_GAIN_AUTO:	return "Mixer Gain, Auto";
	case V4L2_CID_RF_TUNER_MIXER_GAIN:	return "Mixer Gain";
	case V4L2_CID_RF_TUNER_IF_GAIN_AUTO:	return "IF Gain, Auto";
	case V4L2_CID_RF_TUNER_IF_GAIN:		return "IF Gain";
914 915
	case V4L2_CID_RF_TUNER_BANDWIDTH_AUTO:	return "Bandwidth, Auto";
	case V4L2_CID_RF_TUNER_BANDWIDTH:	return "Bandwidth";
916
	case V4L2_CID_RF_TUNER_PLL_LOCK:	return "PLL Lock";
917 918 919 920 921 922
	case V4L2_CID_RDS_RX_PTY:		return "RDS Program Type";
	case V4L2_CID_RDS_RX_PS_NAME:		return "RDS PS Name";
	case V4L2_CID_RDS_RX_RADIO_TEXT:	return "RDS Radio Text";
	case V4L2_CID_RDS_RX_TRAFFIC_ANNOUNCEMENT: return "RDS Traffic Announcement";
	case V4L2_CID_RDS_RX_TRAFFIC_PROGRAM:	return "RDS Traffic Program";
	case V4L2_CID_RDS_RX_MUSIC_SPEECH:	return "RDS Music";
923 924 925 926 927 928 929 930

	/* Detection controls */
	/* Keep the order of the 'case's the same as in v4l2-controls.h! */
	case V4L2_CID_DETECT_CLASS:		return "Detection Controls";
	case V4L2_CID_DETECT_MD_MODE:		return "Motion Detection Mode";
	case V4L2_CID_DETECT_MD_GLOBAL_THRESHOLD: return "MD Global Threshold";
	case V4L2_CID_DETECT_MD_THRESHOLD_GRID:	return "MD Threshold Grid";
	case V4L2_CID_DETECT_MD_REGION_GRID:	return "MD Region Grid";
931 932 933 934 935 936 937
	default:
		return NULL;
	}
}
EXPORT_SYMBOL(v4l2_ctrl_get_name);

void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
938
		    s64 *min, s64 *max, u64 *step, s64 *def, u32 *flags)
939 940 941 942 943 944 945 946 947 948 949 950 951 952
{
	*name = v4l2_ctrl_get_name(id);
	*flags = 0;

	switch (id) {
	case V4L2_CID_AUDIO_MUTE:
	case V4L2_CID_AUDIO_LOUDNESS:
	case V4L2_CID_AUTO_WHITE_BALANCE:
	case V4L2_CID_AUTOGAIN:
	case V4L2_CID_HFLIP:
	case V4L2_CID_VFLIP:
	case V4L2_CID_HUE_AUTO:
	case V4L2_CID_CHROMA_AGC:
	case V4L2_CID_COLOR_KILLER:
953
	case V4L2_CID_AUTOBRIGHTNESS:
954 955 956 957 958 959 960 961 962 963
	case V4L2_CID_MPEG_AUDIO_MUTE:
	case V4L2_CID_MPEG_VIDEO_MUTE:
	case V4L2_CID_MPEG_VIDEO_GOP_CLOSURE:
	case V4L2_CID_MPEG_VIDEO_PULLDOWN:
	case V4L2_CID_EXPOSURE_AUTO_PRIORITY:
	case V4L2_CID_FOCUS_AUTO:
	case V4L2_CID_PRIVACY:
	case V4L2_CID_AUDIO_LIMITER_ENABLED:
	case V4L2_CID_AUDIO_COMPRESSION_ENABLED:
	case V4L2_CID_PILOT_TONE_ENABLED:
964 965
	case V4L2_CID_ILLUMINATORS_1:
	case V4L2_CID_ILLUMINATORS_2:
966 967 968
	case V4L2_CID_FLASH_STROBE_STATUS:
	case V4L2_CID_FLASH_CHARGE:
	case V4L2_CID_FLASH_READY:
969 970 971 972 973 974 975
	case V4L2_CID_MPEG_VIDEO_DECODER_MPEG4_DEBLOCK_FILTER:
	case V4L2_CID_MPEG_VIDEO_DECODER_SLICE_INTERFACE:
	case V4L2_CID_MPEG_VIDEO_FRAME_RC_ENABLE:
	case V4L2_CID_MPEG_VIDEO_MB_RC_ENABLE:
	case V4L2_CID_MPEG_VIDEO_H264_8X8_TRANSFORM:
	case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_ENABLE:
	case V4L2_CID_MPEG_VIDEO_MPEG4_QPEL:
976
	case V4L2_CID_MPEG_VIDEO_REPEAT_SEQ_HEADER:
977
	case V4L2_CID_WIDE_DYNAMIC_RANGE:
978
	case V4L2_CID_IMAGE_STABILIZATION:
979
	case V4L2_CID_RDS_RECEPTION:
980 981 982
	case V4L2_CID_RF_TUNER_LNA_GAIN_AUTO:
	case V4L2_CID_RF_TUNER_MIXER_GAIN_AUTO:
	case V4L2_CID_RF_TUNER_IF_GAIN_AUTO:
983
	case V4L2_CID_RF_TUNER_BANDWIDTH_AUTO:
984
	case V4L2_CID_RF_TUNER_PLL_LOCK:
985 986 987 988 989 990 991 992
	case V4L2_CID_RDS_TX_MONO_STEREO:
	case V4L2_CID_RDS_TX_ARTIFICIAL_HEAD:
	case V4L2_CID_RDS_TX_COMPRESSED:
	case V4L2_CID_RDS_TX_DYNAMIC_PTY:
	case V4L2_CID_RDS_TX_TRAFFIC_ANNOUNCEMENT:
	case V4L2_CID_RDS_TX_TRAFFIC_PROGRAM:
	case V4L2_CID_RDS_TX_MUSIC_SPEECH:
	case V4L2_CID_RDS_TX_ALT_FREQS_ENABLE:
993 994 995
	case V4L2_CID_RDS_RX_TRAFFIC_ANNOUNCEMENT:
	case V4L2_CID_RDS_RX_TRAFFIC_PROGRAM:
	case V4L2_CID_RDS_RX_MUSIC_SPEECH:
996 997 998 999
		*type = V4L2_CTRL_TYPE_BOOLEAN;
		*min = 0;
		*max = *step = 1;
		break;
1000 1001 1002 1003
	case V4L2_CID_ROTATE:
		*type = V4L2_CTRL_TYPE_INTEGER;
		*flags |= V4L2_CTRL_FLAG_MODIFY_LAYOUT;
		break;
1004 1005 1006 1007
	case V4L2_CID_MPEG_VIDEO_MV_H_SEARCH_RANGE:
	case V4L2_CID_MPEG_VIDEO_MV_V_SEARCH_RANGE:
		*type = V4L2_CTRL_TYPE_INTEGER;
		break;
1008
	case V4L2_CID_MPEG_VIDEO_FORCE_KEY_FRAME:
1009 1010
	case V4L2_CID_PAN_RESET:
	case V4L2_CID_TILT_RESET:
1011 1012
	case V4L2_CID_FLASH_STROBE:
	case V4L2_CID_FLASH_STROBE_STOP:
1013 1014
	case V4L2_CID_AUTO_FOCUS_START:
	case V4L2_CID_AUTO_FOCUS_STOP:
1015
		*type = V4L2_CTRL_TYPE_BUTTON;
1016 1017
		*flags |= V4L2_CTRL_FLAG_WRITE_ONLY |
			  V4L2_CTRL_FLAG_EXECUTE_ON_WRITE;
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
		*min = *max = *step = *def = 0;
		break;
	case V4L2_CID_POWER_LINE_FREQUENCY:
	case V4L2_CID_MPEG_AUDIO_SAMPLING_FREQ:
	case V4L2_CID_MPEG_AUDIO_ENCODING:
	case V4L2_CID_MPEG_AUDIO_L1_BITRATE:
	case V4L2_CID_MPEG_AUDIO_L2_BITRATE:
	case V4L2_CID_MPEG_AUDIO_L3_BITRATE:
	case V4L2_CID_MPEG_AUDIO_AC3_BITRATE:
	case V4L2_CID_MPEG_AUDIO_MODE:
	case V4L2_CID_MPEG_AUDIO_MODE_EXTENSION:
	case V4L2_CID_MPEG_AUDIO_EMPHASIS:
	case V4L2_CID_MPEG_AUDIO_CRC:
1031 1032
	case V4L2_CID_MPEG_AUDIO_DEC_PLAYBACK:
	case V4L2_CID_MPEG_AUDIO_DEC_MULTILINGUAL_PLAYBACK:
1033 1034 1035 1036 1037 1038
	case V4L2_CID_MPEG_VIDEO_ENCODING:
	case V4L2_CID_MPEG_VIDEO_ASPECT:
	case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
	case V4L2_CID_MPEG_STREAM_TYPE:
	case V4L2_CID_MPEG_STREAM_VBI_FMT:
	case V4L2_CID_EXPOSURE_AUTO:
1039
	case V4L2_CID_AUTO_FOCUS_RANGE:
1040
	case V4L2_CID_COLORFX:
1041
	case V4L2_CID_AUTO_N_PRESET_WHITE_BALANCE:
1042
	case V4L2_CID_TUNE_PREEMPHASIS:
1043 1044
	case V4L2_CID_FLASH_LED_MODE:
	case V4L2_CID_FLASH_STROBE_SOURCE:
1045 1046 1047 1048 1049 1050 1051
	case V4L2_CID_MPEG_VIDEO_HEADER_MODE:
	case V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE:
	case V4L2_CID_MPEG_VIDEO_H264_ENTROPY_MODE:
	case V4L2_CID_MPEG_VIDEO_H264_LEVEL:
	case V4L2_CID_MPEG_VIDEO_H264_LOOP_FILTER_MODE:
	case V4L2_CID_MPEG_VIDEO_H264_PROFILE:
	case V4L2_CID_MPEG_VIDEO_H264_VUI_SAR_IDC:
1052 1053
	case V4L2_CID_MPEG_VIDEO_H264_SEI_FP_ARRANGEMENT_TYPE:
	case V4L2_CID_MPEG_VIDEO_H264_FMO_MAP_TYPE:
1054 1055
	case V4L2_CID_MPEG_VIDEO_MPEG4_LEVEL:
	case V4L2_CID_MPEG_VIDEO_MPEG4_PROFILE:
1056
	case V4L2_CID_JPEG_CHROMA_SUBSAMPLING:
1057
	case V4L2_CID_ISO_SENSITIVITY_AUTO:
1058
	case V4L2_CID_EXPOSURE_METERING:
1059
	case V4L2_CID_SCENE_MODE:
1060 1061
	case V4L2_CID_DV_TX_MODE:
	case V4L2_CID_DV_TX_RGB_RANGE:
1062
	case V4L2_CID_DV_TX_IT_CONTENT_TYPE:
1063
	case V4L2_CID_DV_RX_RGB_RANGE:
1064
	case V4L2_CID_DV_RX_IT_CONTENT_TYPE:
1065
	case V4L2_CID_TEST_PATTERN:
1066
	case V4L2_CID_DEINTERLACING_MODE:
1067
	case V4L2_CID_TUNE_DEEMPHASIS:
1068
	case V4L2_CID_MPEG_VIDEO_VPX_GOLDEN_FRAME_SEL:
1069
	case V4L2_CID_DETECT_MD_MODE:
1070 1071
		*type = V4L2_CTRL_TYPE_MENU;
		break;
1072 1073 1074
	case V4L2_CID_LINK_FREQ:
		*type = V4L2_CTRL_TYPE_INTEGER_MENU;
		break;
1075 1076
	case V4L2_CID_RDS_TX_PS_NAME:
	case V4L2_CID_RDS_TX_RADIO_TEXT:
1077 1078
	case V4L2_CID_RDS_RX_PS_NAME:
	case V4L2_CID_RDS_RX_RADIO_TEXT:
1079 1080
		*type = V4L2_CTRL_TYPE_STRING;
		break;
1081
	case V4L2_CID_ISO_SENSITIVITY:
1082
	case V4L2_CID_AUTO_EXPOSURE_BIAS:
1083 1084
	case V4L2_CID_MPEG_VIDEO_VPX_NUM_PARTITIONS:
	case V4L2_CID_MPEG_VIDEO_VPX_NUM_REF_FRAMES:
1085 1086
		*type = V4L2_CTRL_TYPE_INTEGER_MENU;
		break;
1087 1088 1089 1090
	case V4L2_CID_USER_CLASS:
	case V4L2_CID_CAMERA_CLASS:
	case V4L2_CID_MPEG_CLASS:
	case V4L2_CID_FM_TX_CLASS:
1091
	case V4L2_CID_FLASH_CLASS:
1092
	case V4L2_CID_JPEG_CLASS:
1093
	case V4L2_CID_IMAGE_SOURCE_CLASS:
1094
	case V4L2_CID_IMAGE_PROC_CLASS:
1095
	case V4L2_CID_DV_CLASS:
1096
	case V4L2_CID_FM_RX_CLASS:
1097
	case V4L2_CID_RF_TUNER_CLASS:
1098
	case V4L2_CID_DETECT_CLASS:
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
		*type = V4L2_CTRL_TYPE_CTRL_CLASS;
		/* You can neither read not write these */
		*flags |= V4L2_CTRL_FLAG_READ_ONLY | V4L2_CTRL_FLAG_WRITE_ONLY;
		*min = *max = *step = *def = 0;
		break;
	case V4L2_CID_BG_COLOR:
		*type = V4L2_CTRL_TYPE_INTEGER;
		*step = 1;
		*min = 0;
		/* Max is calculated as RGB888 that is 2^24 */
		*max = 0xFFFFFF;
		break;
1111
	case V4L2_CID_FLASH_FAULT:
1112
	case V4L2_CID_JPEG_ACTIVE_MARKER:
1113
	case V4L2_CID_3A_LOCK:
1114
	case V4L2_CID_AUTO_FOCUS_STATUS:
1115 1116 1117 1118
	case V4L2_CID_DV_TX_HOTPLUG:
	case V4L2_CID_DV_TX_RXSENSE:
	case V4L2_CID_DV_TX_EDID_PRESENT:
	case V4L2_CID_DV_RX_POWER_PRESENT:
1119 1120
		*type = V4L2_CTRL_TYPE_BITMASK;
		break;
1121 1122 1123 1124 1125
	case V4L2_CID_MIN_BUFFERS_FOR_CAPTURE:
	case V4L2_CID_MIN_BUFFERS_FOR_OUTPUT:
		*type = V4L2_CTRL_TYPE_INTEGER;
		*flags |= V4L2_CTRL_FLAG_READ_ONLY;
		break;
1126
	case V4L2_CID_MPEG_VIDEO_DEC_PTS:
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
		*type = V4L2_CTRL_TYPE_INTEGER64;
		*flags |= V4L2_CTRL_FLAG_VOLATILE | V4L2_CTRL_FLAG_READ_ONLY;
		*min = *def = 0;
		*max = 0x1ffffffffLL;
		*step = 1;
		break;
	case V4L2_CID_MPEG_VIDEO_DEC_FRAME:
		*type = V4L2_CTRL_TYPE_INTEGER64;
		*flags |= V4L2_CTRL_FLAG_VOLATILE | V4L2_CTRL_FLAG_READ_ONLY;
		*min = *def = 0;
		*max = 0x7fffffffffffffffLL;
		*step = 1;
		break;
1140
	case V4L2_CID_PIXEL_RATE:
1141
		*type = V4L2_CTRL_TYPE_INTEGER64;
1142
		*flags |= V4L2_CTRL_FLAG_READ_ONLY;
1143
		break;
1144 1145 1146 1147 1148 1149
	case V4L2_CID_DETECT_MD_REGION_GRID:
		*type = V4L2_CTRL_TYPE_U8;
		break;
	case V4L2_CID_DETECT_MD_THRESHOLD_GRID:
		*type = V4L2_CTRL_TYPE_U16;
		break;
1150 1151 1152
	case V4L2_CID_RDS_TX_ALT_FREQS:
		*type = V4L2_CTRL_TYPE_U32;
		break;
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
	default:
		*type = V4L2_CTRL_TYPE_INTEGER;
		break;
	}
	switch (id) {
	case V4L2_CID_MPEG_AUDIO_ENCODING:
	case V4L2_CID_MPEG_AUDIO_MODE:
	case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
	case V4L2_CID_MPEG_VIDEO_B_FRAMES:
	case V4L2_CID_MPEG_STREAM_TYPE:
		*flags |= V4L2_CTRL_FLAG_UPDATE;
		break;
	case V4L2_CID_AUDIO_VOLUME:
	case V4L2_CID_AUDIO_BALANCE:
	case V4L2_CID_AUDIO_BASS:
	case V4L2_CID_AUDIO_TREBLE:
	case V4L2_CID_BRIGHTNESS:
	case V4L2_CID_CONTRAST:
	case V4L2_CID_SATURATION:
	case V4L2_CID_HUE:
	case V4L2_CID_RED_BALANCE:
	case V4L2_CID_BLUE_BALANCE:
	case V4L2_CID_GAMMA:
	case V4L2_CID_SHARPNESS:
	case V4L2_CID_CHROMA_GAIN:
	case V4L2_CID_RDS_TX_DEVIATION:
	case V4L2_CID_AUDIO_LIMITER_RELEASE_TIME:
	case V4L2_CID_AUDIO_LIMITER_DEVIATION:
	case V4L2_CID_AUDIO_COMPRESSION_GAIN:
	case V4L2_CID_AUDIO_COMPRESSION_THRESHOLD:
	case V4L2_CID_AUDIO_COMPRESSION_ATTACK_TIME:
	case V4L2_CID_AUDIO_COMPRESSION_RELEASE_TIME:
	case V4L2_CID_PILOT_TONE_DEVIATION:
	case V4L2_CID_PILOT_TONE_FREQUENCY:
	case V4L2_CID_TUNE_POWER_LEVEL:
	case V4L2_CID_TUNE_ANTENNA_CAPACITOR:
1189
	case V4L2_CID_RF_TUNER_RF_GAIN:
1190 1191 1192
	case V4L2_CID_RF_TUNER_LNA_GAIN:
	case V4L2_CID_RF_TUNER_MIXER_GAIN:
	case V4L2_CID_RF_TUNER_IF_GAIN:
1193
	case V4L2_CID_RF_TUNER_BANDWIDTH:
1194
	case V4L2_CID_DETECT_MD_GLOBAL_THRESHOLD:
1195 1196 1197 1198 1199 1200 1201
		*flags |= V4L2_CTRL_FLAG_SLIDER;
		break;
	case V4L2_CID_PAN_RELATIVE:
	case V4L2_CID_TILT_RELATIVE:
	case V4L2_CID_FOCUS_RELATIVE:
	case V4L2_CID_IRIS_RELATIVE:
	case V4L2_CID_ZOOM_RELATIVE:
1202 1203
		*flags |= V4L2_CTRL_FLAG_WRITE_ONLY |
			  V4L2_CTRL_FLAG_EXECUTE_ON_WRITE;
1204
		break;
1205
	case V4L2_CID_FLASH_STROBE_STATUS:
1206
	case V4L2_CID_AUTO_FOCUS_STATUS:
1207
	case V4L2_CID_FLASH_READY:
1208 1209 1210 1211
	case V4L2_CID_DV_TX_HOTPLUG:
	case V4L2_CID_DV_TX_RXSENSE:
	case V4L2_CID_DV_TX_EDID_PRESENT:
	case V4L2_CID_DV_RX_POWER_PRESENT:
1212
	case V4L2_CID_DV_RX_IT_CONTENT_TYPE:
1213 1214 1215 1216 1217 1218
	case V4L2_CID_RDS_RX_PTY:
	case V4L2_CID_RDS_RX_PS_NAME:
	case V4L2_CID_RDS_RX_RADIO_TEXT:
	case V4L2_CID_RDS_RX_TRAFFIC_ANNOUNCEMENT:
	case V4L2_CID_RDS_RX_TRAFFIC_PROGRAM:
	case V4L2_CID_RDS_RX_MUSIC_SPEECH:
1219 1220
		*flags |= V4L2_CTRL_FLAG_READ_ONLY;
		break;
1221 1222 1223
	case V4L2_CID_RF_TUNER_PLL_LOCK:
		*flags |= V4L2_CTRL_FLAG_VOLATILE;
		break;
1224 1225 1226 1227
	}
}
EXPORT_SYMBOL(v4l2_ctrl_fill);

1228 1229 1230 1231 1232 1233 1234 1235
static void fill_event(struct v4l2_event *ev, struct v4l2_ctrl *ctrl, u32 changes)
{
	memset(ev->reserved, 0, sizeof(ev->reserved));
	ev->type = V4L2_EVENT_CTRL;
	ev->id = ctrl->id;
	ev->u.ctrl.changes = changes;
	ev->u.ctrl.type = ctrl->type;
	ev->u.ctrl.flags = ctrl->flags;
1236
	if (ctrl->is_ptr)
1237 1238
		ev->u.ctrl.value64 = 0;
	else
1239
		ev->u.ctrl.value64 = *ctrl->p_cur.p_s64;
1240 1241
	ev->u.ctrl.minimum = ctrl->minimum;
	ev->u.ctrl.maximum = ctrl->maximum;
1242 1243
	if (ctrl->type == V4L2_CTRL_TYPE_MENU
	    || ctrl->type == V4L2_CTRL_TYPE_INTEGER_MENU)
1244 1245 1246 1247 1248 1249 1250 1251 1252
		ev->u.ctrl.step = 1;
	else
		ev->u.ctrl.step = ctrl->step;
	ev->u.ctrl.default_value = ctrl->default_value;
}

static void send_event(struct v4l2_fh *fh, struct v4l2_ctrl *ctrl, u32 changes)
{
	struct v4l2_event ev;
1253
	struct v4l2_subscribed_event *sev;
1254

1255
	if (list_empty(&ctrl->ev_subs))
1256
		return;
1257 1258
	fill_event(&ev, ctrl, changes);

1259
	list_for_each_entry(sev, &ctrl->ev_subs, node)
1260 1261
		if (sev->fh != fh ||
		    (sev->flags & V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK))
1262
			v4l2_event_queue_fh(sev->fh, &ev);
1263 1264
}

1265
static bool std_equal(const struct v4l2_ctrl *ctrl, u32 idx,
1266 1267 1268 1269 1270 1271 1272
		      union v4l2_ctrl_ptr ptr1,
		      union v4l2_ctrl_ptr ptr2)
{
	switch (ctrl->type) {
	case V4L2_CTRL_TYPE_BUTTON:
		return false;
	case V4L2_CTRL_TYPE_STRING:
1273
		idx *= ctrl->elem_size;
1274
		/* strings are always 0-terminated */
1275
		return !strcmp(ptr1.p_char + idx, ptr2.p_char + idx);
1276
	case V4L2_CTRL_TYPE_INTEGER64:
1277
		return ptr1.p_s64[idx] == ptr2.p_s64[idx];
1278 1279 1280 1281
	case V4L2_CTRL_TYPE_U8:
		return ptr1.p_u8[idx] == ptr2.p_u8[idx];
	case V4L2_CTRL_TYPE_U16:
		return ptr1.p_u16[idx] == ptr2.p_u16[idx];
1282 1283
	case V4L2_CTRL_TYPE_U32:
		return ptr1.p_u32[idx] == ptr2.p_u32[idx];
1284
	default:
1285 1286 1287 1288
		if (ctrl->is_int)
			return ptr1.p_s32[idx] == ptr2.p_s32[idx];
		idx *= ctrl->elem_size;
		return !memcmp(ptr1.p + idx, ptr2.p + idx, ctrl->elem_size);
1289 1290 1291
	}
}

1292
static void std_init(const struct v4l2_ctrl *ctrl, u32 idx,
1293 1294 1295 1296
		     union v4l2_ctrl_ptr ptr)
{
	switch (ctrl->type) {
	case V4L2_CTRL_TYPE_STRING:
1297 1298 1299
		idx *= ctrl->elem_size;
		memset(ptr.p_char + idx, ' ', ctrl->minimum);
		ptr.p_char[idx + ctrl->minimum] = '\0';
1300 1301
		break;
	case V4L2_CTRL_TYPE_INTEGER64:
1302
		ptr.p_s64[idx] = ctrl->default_value;
1303 1304 1305 1306 1307 1308
		break;
	case V4L2_CTRL_TYPE_INTEGER:
	case V4L2_CTRL_TYPE_INTEGER_MENU:
	case V4L2_CTRL_TYPE_MENU:
	case V4L2_CTRL_TYPE_BITMASK:
	case V4L2_CTRL_TYPE_BOOLEAN:
1309
		ptr.p_s32[idx] = ctrl->default_value;
1310
		break;
1311 1312 1313 1314 1315 1316
	case V4L2_CTRL_TYPE_U8:
		ptr.p_u8[idx] = ctrl->default_value;
		break;
	case V4L2_CTRL_TYPE_U16:
		ptr.p_u16[idx] = ctrl->default_value;
		break;
1317 1318 1319
	case V4L2_CTRL_TYPE_U32:
		ptr.p_u32[idx] = ctrl->default_value;
		break;
1320
	default:
1321 1322
		idx *= ctrl->elem_size;
		memset(ptr.p + idx, 0, ctrl->elem_size);
1323 1324 1325 1326 1327 1328 1329 1330
		break;
	}
}

static void std_log(const struct v4l2_ctrl *ctrl)
{
	union v4l2_ctrl_ptr ptr = ctrl->p_cur;

1331 1332 1333 1334 1335 1336 1337 1338
	if (ctrl->is_array) {
		unsigned i;

		for (i = 0; i < ctrl->nr_of_dims; i++)
			pr_cont("[%u]", ctrl->dims[i]);
		pr_cont(" ");
	}

1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
	switch (ctrl->type) {
	case V4L2_CTRL_TYPE_INTEGER:
		pr_cont("%d", *ptr.p_s32);
		break;
	case V4L2_CTRL_TYPE_BOOLEAN:
		pr_cont("%s", *ptr.p_s32 ? "true" : "false");
		break;
	case V4L2_CTRL_TYPE_MENU:
		pr_cont("%s", ctrl->qmenu[*ptr.p_s32]);
		break;
	case V4L2_CTRL_TYPE_INTEGER_MENU:
		pr_cont("%lld", ctrl->qmenu_int[*ptr.p_s32]);
		break;
	case V4L2_CTRL_TYPE_BITMASK:
		pr_cont("0x%08x", *ptr.p_s32);
		break;
	case V4L2_CTRL_TYPE_INTEGER64:
		pr_cont("%lld", *ptr.p_s64);
		break;
	case V4L2_CTRL_TYPE_STRING:
		pr_cont("%s", ptr.p_char);
		break;
1361 1362 1363 1364 1365 1366
	case V4L2_CTRL_TYPE_U8:
		pr_cont("%u", (unsigned)*ptr.p_u8);
		break;
	case V4L2_CTRL_TYPE_U16:
		pr_cont("%u", (unsigned)*ptr.p_u16);
		break;
1367 1368 1369
	case V4L2_CTRL_TYPE_U32:
		pr_cont("%u", (unsigned)*ptr.p_u32);
		break;
1370 1371 1372 1373 1374 1375
	default:
		pr_cont("unknown type %d", ctrl->type);
		break;
	}
}

1376 1377 1378 1379 1380
/*
 * Round towards the closest legal value. Be careful when we are
 * close to the maximum range of the control type to prevent
 * wrap-arounds.
 */
1381 1382 1383
#define ROUND_TO_RANGE(val, offset_type, ctrl)			\
({								\
	offset_type offset;					\
1384
	if ((ctrl)->maximum >= 0 &&				\
1385
	    val >= (ctrl)->maximum - (s32)((ctrl)->step / 2))	\
1386 1387
		val = (ctrl)->maximum;				\
	else							\
1388
		val += (s32)((ctrl)->step / 2);			\
1389 1390 1391
	val = clamp_t(typeof(val), val,				\
		      (ctrl)->minimum, (ctrl)->maximum);	\
	offset = (val) - (ctrl)->minimum;			\
1392
	offset = (ctrl)->step * (offset / (u32)(ctrl)->step);	\
1393 1394 1395 1396 1397
	val = (ctrl)->minimum + offset;				\
	0;							\
})

/* Validate a new control */
1398
static int std_validate(const struct v4l2_ctrl *ctrl, u32 idx,
1399 1400 1401
			union v4l2_ctrl_ptr ptr)
{
	size_t len;
1402 1403
	u64 offset;
	s64 val;
1404 1405 1406

	switch (ctrl->type) {
	case V4L2_CTRL_TYPE_INTEGER:
1407
		return ROUND_TO_RANGE(ptr.p_s32[idx], u32, ctrl);
1408
	case V4L2_CTRL_TYPE_INTEGER64:
1409 1410 1411 1412 1413
		/*
		 * We can't use the ROUND_TO_RANGE define here due to
		 * the u64 divide that needs special care.
		 */
		val = ptr.p_s64[idx];
1414
		if (ctrl->maximum >= 0 && val >= ctrl->maximum - (s64)(ctrl->step / 2))
1415 1416
			val = ctrl->maximum;
		else
1417
			val += (s64)(ctrl->step / 2);
1418 1419 1420 1421 1422
		val = clamp_t(s64, val, ctrl->minimum, ctrl->maximum);
		offset = val - ctrl->minimum;
		do_div(offset, ctrl->step);
		ptr.p_s64[idx] = ctrl->minimum + offset * ctrl->step;
		return 0;
1423 1424 1425 1426
	case V4L2_CTRL_TYPE_U8:
		return ROUND_TO_RANGE(ptr.p_u8[idx], u8, ctrl);
	case V4L2_CTRL_TYPE_U16:
		return ROUND_TO_RANGE(ptr.p_u16[idx], u16, ctrl);
1427 1428
	case V4L2_CTRL_TYPE_U32:
		return ROUND_TO_RANGE(ptr.p_u32[idx], u32, ctrl);
1429 1430

	case V4L2_CTRL_TYPE_BOOLEAN:
1431
		ptr.p_s32[idx] = !!ptr.p_s32[idx];
1432 1433 1434 1435
		return 0;

	case V4L2_CTRL_TYPE_MENU:
	case V4L2_CTRL_TYPE_INTEGER_MENU:
1436
		if (ptr.p_s32[idx] < ctrl->minimum || ptr.p_s32[idx] > ctrl->maximum)
1437
			return -ERANGE;
1438
		if (ctrl->menu_skip_mask & (1 << ptr.p_s32[idx]))
1439 1440
			return -EINVAL;
		if (ctrl->type == V4L2_CTRL_TYPE_MENU &&
1441
		    ctrl->qmenu[ptr.p_s32[idx]][0] == '\0')
1442 1443 1444 1445
			return -EINVAL;
		return 0;

	case V4L2_CTRL_TYPE_BITMASK:
1446
		ptr.p_s32[idx] &= ctrl->maximum;
1447 1448 1449 1450
		return 0;

	case V4L2_CTRL_TYPE_BUTTON:
	case V4L2_CTRL_TYPE_CTRL_CLASS:
1451
		ptr.p_s32[idx] = 0;
1452 1453 1454
		return 0;

	case V4L2_CTRL_TYPE_STRING:
1455 1456
		idx *= ctrl->elem_size;
		len = strlen(ptr.p_char + idx);
1457 1458
		if (len < ctrl->minimum)
			return -ERANGE;
1459
		if ((len - (u32)ctrl->minimum) % (u32)ctrl->step)
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474
			return -ERANGE;
		return 0;

	default:
		return -EINVAL;
	}
}

static const struct v4l2_ctrl_type_ops std_type_ops = {
	.equal = std_equal,
	.init = std_init,
	.log = std_log,
	.validate = std_validate,
};

1475 1476 1477 1478
/* Helper function: copy the given control value back to the caller */
static int ptr_to_user(struct v4l2_ext_control *c,
		       struct v4l2_ctrl *ctrl,
		       union v4l2_ctrl_ptr ptr)
1479 1480 1481
{
	u32 len;

1482
	if (ctrl->is_ptr && !ctrl->is_string)
1483 1484
		return copy_to_user(c->ptr, ptr.p, c->size) ?
		       -EFAULT : 0;
1485

1486 1487
	switch (ctrl->type) {
	case V4L2_CTRL_TYPE_STRING:
1488
		len = strlen(ptr.p_char);
1489
		if (c->size < len + 1) {
1490
			c->size = ctrl->elem_size;
1491 1492
			return -ENOSPC;
		}
1493
		return copy_to_user(c->string, ptr.p_char, len + 1) ?
1494
		       -EFAULT : 0;
1495
	case V4L2_CTRL_TYPE_INTEGER64:
1496
		c->value64 = *ptr.p_s64;
1497 1498
		break;
	default:
1499
		c->value = *ptr.p_s32;
1500 1501 1502 1503 1504
		break;
	}
	return 0;
}

1505 1506
/* Helper function: copy the current control value back to the caller */
static int cur_to_user(struct v4l2_ext_control *c,
1507
		       struct v4l2_ctrl *ctrl)
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
{
	return ptr_to_user(c, ctrl, ctrl->p_cur);
}

/* Helper function: copy the new control value back to the caller */
static int new_to_user(struct v4l2_ext_control *c,
		       struct v4l2_ctrl *ctrl)
{
	return ptr_to_user(c, ctrl, ctrl->p_new);
}

1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529
/* Helper function: copy the initial control value back to the caller */
static int def_to_user(struct v4l2_ext_control *c, struct v4l2_ctrl *ctrl)
{
	int idx;

	for (idx = 0; idx < ctrl->elems; idx++)
		ctrl->type_ops->init(ctrl, idx, ctrl->p_new);

	return ptr_to_user(c, ctrl, ctrl->p_new);
}

1530 1531 1532 1533
/* Helper function: copy the caller-provider value to the given control value */
static int user_to_ptr(struct v4l2_ext_control *c,
		       struct v4l2_ctrl *ctrl,
		       union v4l2_ctrl_ptr ptr)
1534 1535 1536 1537
{
	int ret;
	u32 size;

1538
	ctrl->is_new = 1;
1539 1540 1541
	if (ctrl->is_ptr && !ctrl->is_string) {
		unsigned idx;

1542
		ret = copy_from_user(ptr.p, c->ptr, c->size) ? -EFAULT : 0;
1543 1544 1545 1546 1547 1548
		if (ret || !ctrl->is_array)
			return ret;
		for (idx = c->size / ctrl->elem_size; idx < ctrl->elems; idx++)
			ctrl->type_ops->init(ctrl, idx, ptr);
		return 0;
	}
1549

1550 1551
	switch (ctrl->type) {
	case V4L2_CTRL_TYPE_INTEGER64:
1552
		*ptr.p_s64 = c->value64;
1553 1554 1555 1556 1557 1558 1559
		break;
	case V4L2_CTRL_TYPE_STRING:
		size = c->size;
		if (size == 0)
			return -ERANGE;
		if (size > ctrl->maximum + 1)
			size = ctrl->maximum + 1;
1560
		ret = copy_from_user(ptr.p_char, c->string, size) ? -EFAULT : 0;
1561
		if (!ret) {
1562
			char last = ptr.p_char[size - 1];
1563

1564
			ptr.p_char[size - 1] = 0;
1565 1566
			/* If the string was longer than ctrl->maximum,
			   then return an error. */
1567
			if (strlen(ptr.p_char) == ctrl->maximum && last)
1568 1569
				return -ERANGE;
		}
1570
		return ret;
1571
	default:
1572
		*ptr.p_s32 = c->value;
1573 1574 1575 1576 1577
		break;
	}
	return 0;
}

1578 1579
/* Helper function: copy the caller-provider value as the new control value */
static int user_to_new(struct v4l2_ext_control *c,
1580 1581
		       struct v4l2_ctrl *ctrl)
{
1582 1583
	return user_to_ptr(c, ctrl, ctrl->p_new);
}
1584

1585 1586 1587 1588 1589 1590
/* Copy the one value to another. */
static void ptr_to_ptr(struct v4l2_ctrl *ctrl,
		       union v4l2_ctrl_ptr from, union v4l2_ctrl_ptr to)
{
	if (ctrl == NULL)
		return;
1591
	memcpy(to.p, from.p, ctrl->elems * ctrl->elem_size);
1592 1593 1594
}

/* Copy the new value to the current value. */
1595
static void new_to_cur(struct v4l2_fh *fh, struct v4l2_ctrl *ctrl, u32 ch_flags)
1596
{
1597
	bool changed;
1598

1599 1600
	if (ctrl == NULL)
		return;
1601 1602 1603 1604 1605

	/* has_changed is set by cluster_changed */
	changed = ctrl->has_changed;
	if (changed)
		ptr_to_ptr(ctrl, ctrl->p_new, ctrl->p_cur);
1606

1607 1608
	if (ch_flags & V4L2_EVENT_CTRL_CH_FLAGS) {
		/* Note: CH_FLAGS is only set for auto clusters. */
1609 1610 1611
		ctrl->flags &=
			~(V4L2_CTRL_FLAG_INACTIVE | V4L2_CTRL_FLAG_VOLATILE);
		if (!is_cur_manual(ctrl->cluster[0])) {
1612
			ctrl->flags |= V4L2_CTRL_FLAG_INACTIVE;
1613 1614 1615
			if (ctrl->cluster[0]->has_volatiles)
				ctrl->flags |= V4L2_CTRL_FLAG_VOLATILE;
		}
1616
		fh = NULL;
1617
	}
1618
	if (changed || ch_flags) {
1619 1620 1621 1622
		/* If a control was changed that was not one of the controls
		   modified by the application, then send the event to all. */
		if (!ctrl->is_new)
			fh = NULL;
1623
		send_event(fh, ctrl,
1624
			(changed ? V4L2_EVENT_CTRL_CH_VALUE : 0) | ch_flags);
1625 1626
		if (ctrl->call_notify && changed && ctrl->handler->notify)
			ctrl->handler->notify(ctrl, ctrl->handler->notify_priv);
1627
	}
1628 1629 1630 1631 1632 1633 1634
}

/* Copy the current value to the new value */
static void cur_to_new(struct v4l2_ctrl *ctrl)
{
	if (ctrl == NULL)
		return;
1635
	ptr_to_ptr(ctrl, ctrl->p_cur, ctrl->p_new);
1636 1637 1638 1639 1640 1641
}

/* Return non-zero if one or more of the controls in the cluster has a new
   value that differs from the current value. */
static int cluster_changed(struct v4l2_ctrl *master)
{
1642
	bool changed = false;
1643
	unsigned idx;
1644 1645
	int i;

1646
	for (i = 0; i < master->ncontrols; i++) {
1647
		struct v4l2_ctrl *ctrl = master->cluster[i];
1648
		bool ctrl_changed = false;
1649 1650 1651

		if (ctrl == NULL)
			continue;
1652 1653 1654 1655

		if (ctrl->flags & V4L2_CTRL_FLAG_EXECUTE_ON_WRITE)
			changed = ctrl_changed = true;

1656 1657 1658 1659 1660 1661 1662 1663 1664
		/*
		 * Set has_changed to false to avoid generating
		 * the event V4L2_EVENT_CTRL_CH_VALUE
		 */
		if (ctrl->flags & V4L2_CTRL_FLAG_VOLATILE) {
			ctrl->has_changed = false;
			continue;
		}

1665 1666
		for (idx = 0; !ctrl_changed && idx < ctrl->elems; idx++)
			ctrl_changed = !ctrl->type_ops->equal(ctrl, idx,
1667
				ctrl->p_cur, ctrl->p_new);
1668
		ctrl->has_changed = ctrl_changed;
1669
		changed |= ctrl->has_changed;
1670
	}
1671
	return changed;
1672 1673
}

1674 1675
/* Control range checking */
static int check_range(enum v4l2_ctrl_type type,
1676
		s64 min, s64 max, u64 step, s64 def)
1677 1678 1679 1680 1681 1682
{
	switch (type) {
	case V4L2_CTRL_TYPE_BOOLEAN:
		if (step != 1 || max > 1 || min < 0)
			return -ERANGE;
		/* fall through */
1683 1684
	case V4L2_CTRL_TYPE_U8:
	case V4L2_CTRL_TYPE_U16:
1685
	case V4L2_CTRL_TYPE_U32:
1686
	case V4L2_CTRL_TYPE_INTEGER:
1687 1688
	case V4L2_CTRL_TYPE_INTEGER64:
		if (step == 0 || min > max || def < min || def > max)
1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712
			return -ERANGE;
		return 0;
	case V4L2_CTRL_TYPE_BITMASK:
		if (step || min || !max || (def & ~max))
			return -ERANGE;
		return 0;
	case V4L2_CTRL_TYPE_MENU:
	case V4L2_CTRL_TYPE_INTEGER_MENU:
		if (min > max || def < min || def > max)
			return -ERANGE;
		/* Note: step == menu_skip_mask for menu controls.
		   So here we check if the default value is masked out. */
		if (step && ((1 << def) & step))
			return -EINVAL;
		return 0;
	case V4L2_CTRL_TYPE_STRING:
		if (min > max || min < 0 || step < 1 || def)
			return -ERANGE;
		return 0;
	default:
		return 0;
	}
}

1713
/* Validate a new control */
1714
static int validate_new(const struct v4l2_ctrl *ctrl, union v4l2_ctrl_ptr p_new)
1715
{
1716 1717 1718
	unsigned idx;
	int err = 0;

1719 1720
	for (idx = 0; !err && idx < ctrl->elems; idx++)
		err = ctrl->type_ops->validate(ctrl, idx, p_new);
1721
	return err;
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
}

static inline u32 node2id(struct list_head *node)
{
	return list_entry(node, struct v4l2_ctrl_ref, node)->ctrl->id;
}

/* Set the handler's error code if it wasn't set earlier already */
static inline int handler_set_err(struct v4l2_ctrl_handler *hdl, int err)
{
	if (hdl->error == 0)
		hdl->error = err;
	return err;
}

/* Initialize the handler */
1738 1739 1740
int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl,
				 unsigned nr_of_controls_hint,
				 struct lock_class_key *key, const char *name)
1741
{
1742
	mutex_init(&hdl->_lock);
1743
	hdl->lock = &hdl->_lock;
1744
	lockdep_set_class_and_name(hdl->lock, key, name);
1745 1746 1747
	INIT_LIST_HEAD(&hdl->ctrls);
	INIT_LIST_HEAD(&hdl->ctrl_refs);
	hdl->nr_of_buckets = 1 + nr_of_controls_hint / 8;
1748 1749
	hdl->buckets = kcalloc(hdl->nr_of_buckets, sizeof(hdl->buckets[0]),
			       GFP_KERNEL);
1750 1751 1752
	hdl->error = hdl->buckets ? 0 : -ENOMEM;
	return hdl->error;
}
1753
EXPORT_SYMBOL(v4l2_ctrl_handler_init_class);
1754 1755 1756 1757 1758 1759

/* Free all controls and control refs */
void v4l2_ctrl_handler_free(struct v4l2_ctrl_handler *hdl)
{
	struct v4l2_ctrl_ref *ref, *next_ref;
	struct v4l2_ctrl *ctrl, *next_ctrl;
1760
	struct v4l2_subscribed_event *sev, *next_sev;
1761 1762 1763 1764

	if (hdl == NULL || hdl->buckets == NULL)
		return;

1765
	mutex_lock(hdl->lock);
1766 1767 1768 1769 1770 1771 1772 1773
	/* Free all nodes */
	list_for_each_entry_safe(ref, next_ref, &hdl->ctrl_refs, node) {
		list_del(&ref->node);
		kfree(ref);
	}
	/* Free all controls owned by the handler */
	list_for_each_entry_safe(ctrl, next_ctrl, &hdl->ctrls, node) {
		list_del(&ctrl->node);
1774 1775
		list_for_each_entry_safe(sev, next_sev, &ctrl->ev_subs, node)
			list_del(&sev->node);
1776 1777 1778 1779 1780 1781
		kfree(ctrl);
	}
	kfree(hdl->buckets);
	hdl->buckets = NULL;
	hdl->cached = NULL;
	hdl->error = 0;
1782
	mutex_unlock(hdl->lock);
1783
	mutex_destroy(&hdl->_lock);
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801
}
EXPORT_SYMBOL(v4l2_ctrl_handler_free);

/* For backwards compatibility: V4L2_CID_PRIVATE_BASE should no longer
   be used except in G_CTRL, S_CTRL, QUERYCTRL and QUERYMENU when dealing
   with applications that do not use the NEXT_CTRL flag.

   We just find the n-th private user control. It's O(N), but that should not
   be an issue in this particular case. */
static struct v4l2_ctrl_ref *find_private_ref(
		struct v4l2_ctrl_handler *hdl, u32 id)
{
	struct v4l2_ctrl_ref *ref;

	id -= V4L2_CID_PRIVATE_BASE;
	list_for_each_entry(ref, &hdl->ctrl_refs, node) {
		/* Search for private user controls that are compatible with
		   VIDIOC_G/S_CTRL. */
1802
		if (V4L2_CTRL_ID2WHICH(ref->ctrl->id) == V4L2_CTRL_CLASS_USER &&
1803
		    V4L2_CTRL_DRIVER_PRIV(ref->ctrl->id)) {
1804
			if (!ref->ctrl->is_int)
1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
				continue;
			if (id == 0)
				return ref;
			id--;
		}
	}
	return NULL;
}

/* Find a control with the given ID. */
static struct v4l2_ctrl_ref *find_ref(struct v4l2_ctrl_handler *hdl, u32 id)
{
	struct v4l2_ctrl_ref *ref;
	int bucket;

	id &= V4L2_CTRL_ID_MASK;

	/* Old-style private controls need special handling */
	if (id >= V4L2_CID_PRIVATE_BASE)
		return find_private_ref(hdl, id);
	bucket = id % hdl->nr_of_buckets;

	/* Simple optimization: cache the last control found */
	if (hdl->cached && hdl->cached->ctrl->id == id)
		return hdl->cached;

	/* Not in cache, search the hash */
	ref = hdl->buckets ? hdl->buckets[bucket] : NULL;
	while (ref && ref->ctrl->id != id)
		ref = ref->next;

	if (ref)
		hdl->cached = ref; /* cache it! */
	return ref;
}

/* Find a control with the given ID. Take the handler's lock first. */
static struct v4l2_ctrl_ref *find_ref_lock(
		struct v4l2_ctrl_handler *hdl, u32 id)
{
	struct v4l2_ctrl_ref *ref = NULL;

	if (hdl) {
1848
		mutex_lock(hdl->lock);
1849
		ref = find_ref(hdl, id);
1850
		mutex_unlock(hdl->lock);
1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
	}
	return ref;
}

/* Find a control with the given ID. */
struct v4l2_ctrl *v4l2_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id)
{
	struct v4l2_ctrl_ref *ref = find_ref_lock(hdl, id);

	return ref ? ref->ctrl : NULL;
}
EXPORT_SYMBOL(v4l2_ctrl_find);

/* Allocate a new v4l2_ctrl_ref and hook it into the handler. */
static int handler_new_ref(struct v4l2_ctrl_handler *hdl,
			   struct v4l2_ctrl *ctrl)
{
	struct v4l2_ctrl_ref *ref;
	struct v4l2_ctrl_ref *new_ref;
	u32 id = ctrl->id;
1871
	u32 class_ctrl = V4L2_CTRL_ID2WHICH(id) | 1;
1872 1873
	int bucket = id % hdl->nr_of_buckets;	/* which bucket to use */

1874 1875 1876 1877 1878 1879
	/*
	 * Automatically add the control class if it is not yet present and
	 * the new control is not a compound control.
	 */
	if (ctrl->type < V4L2_CTRL_COMPOUND_TYPES &&
	    id != class_ctrl && find_ref_lock(hdl, class_ctrl) == NULL)
1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
		if (!v4l2_ctrl_new_std(hdl, NULL, class_ctrl, 0, 0, 0, 0))
			return hdl->error;

	if (hdl->error)
		return hdl->error;

	new_ref = kzalloc(sizeof(*new_ref), GFP_KERNEL);
	if (!new_ref)
		return handler_set_err(hdl, -ENOMEM);
	new_ref->ctrl = ctrl;
	if (ctrl->handler == hdl) {
		/* By default each control starts in a cluster of its own.
		   new_ref->ctrl is basically a cluster array with one
		   element, so that's perfect to use as the cluster pointer.
		   But only do this for the handler that owns the control. */
		ctrl->cluster = &new_ref->ctrl;
		ctrl->ncontrols = 1;
	}

	INIT_LIST_HEAD(&new_ref->node);

1901
	mutex_lock(hdl->lock);
1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930

	/* Add immediately at the end of the list if the list is empty, or if
	   the last element in the list has a lower ID.
	   This ensures that when elements are added in ascending order the
	   insertion is an O(1) operation. */
	if (list_empty(&hdl->ctrl_refs) || id > node2id(hdl->ctrl_refs.prev)) {
		list_add_tail(&new_ref->node, &hdl->ctrl_refs);
		goto insert_in_hash;
	}

	/* Find insert position in sorted list */
	list_for_each_entry(ref, &hdl->ctrl_refs, node) {
		if (ref->ctrl->id < id)
			continue;
		/* Don't add duplicates */
		if (ref->ctrl->id == id) {
			kfree(new_ref);
			goto unlock;
		}
		list_add(&new_ref->node, ref->node.prev);
		break;
	}

insert_in_hash:
	/* Insert the control node in the hash */
	new_ref->next = hdl->buckets[bucket];
	hdl->buckets[bucket] = new_ref;

unlock:
1931
	mutex_unlock(hdl->lock);
1932 1933 1934 1935 1936 1937
	return 0;
}

/* Add a new control */
static struct v4l2_ctrl *v4l2_ctrl_new(struct v4l2_ctrl_handler *hdl,
			const struct v4l2_ctrl_ops *ops,
1938
			const struct v4l2_ctrl_type_ops *type_ops,
1939
			u32 id, const char *name, enum v4l2_ctrl_type type,
1940
			s64 min, s64 max, u64 step, s64 def,
1941
			const u32 dims[V4L2_CTRL_MAX_DIMS], u32 elem_size,
1942 1943
			u32 flags, const char * const *qmenu,
			const s64 *qmenu_int, void *priv)
1944 1945
{
	struct v4l2_ctrl *ctrl;
1946
	unsigned sz_extra;
1947 1948
	unsigned nr_of_dims = 0;
	unsigned elems = 1;
1949 1950
	bool is_array;
	unsigned tot_ctrl_size;
1951
	unsigned idx;
1952
	void *data;
1953
	int err;
1954 1955 1956 1957

	if (hdl->error)
		return NULL;

1958 1959 1960 1961 1962 1963
	while (dims && dims[nr_of_dims]) {
		elems *= dims[nr_of_dims];
		nr_of_dims++;
		if (nr_of_dims == V4L2_CTRL_MAX_DIMS)
			break;
	}
1964
	is_array = nr_of_dims > 0;
1965

1966 1967 1968
	/* Prefill elem_size for all types handled by std_type_ops */
	switch (type) {
	case V4L2_CTRL_TYPE_INTEGER64:
1969
		elem_size = sizeof(s64);
1970 1971
		break;
	case V4L2_CTRL_TYPE_STRING:
1972
		elem_size = max + 1;
1973 1974 1975 1976 1977 1978 1979
		break;
	case V4L2_CTRL_TYPE_U8:
		elem_size = sizeof(u8);
		break;
	case V4L2_CTRL_TYPE_U16:
		elem_size = sizeof(u16);
		break;
1980 1981 1982
	case V4L2_CTRL_TYPE_U32:
		elem_size = sizeof(u32);
		break;
1983 1984 1985 1986 1987
	default:
		if (type < V4L2_CTRL_COMPOUND_TYPES)
			elem_size = sizeof(s32);
		break;
	}
1988
	tot_ctrl_size = elem_size * elems;
1989

1990
	/* Sanity checks */
1991 1992
	if (id == 0 || name == NULL || !elem_size ||
	    id >= V4L2_CID_PRIVATE_BASE ||
1993
	    (type == V4L2_CTRL_TYPE_MENU && qmenu == NULL) ||
1994
	    (type == V4L2_CTRL_TYPE_INTEGER_MENU && qmenu_int == NULL)) {
1995 1996 1997
		handler_set_err(hdl, -ERANGE);
		return NULL;
	}
1998 1999 2000
	err = check_range(type, min, max, step, def);
	if (err) {
		handler_set_err(hdl, err);
2001 2002
		return NULL;
	}
2003 2004 2005 2006
	if (type == V4L2_CTRL_TYPE_BITMASK && ((def & ~max) || min || step)) {
		handler_set_err(hdl, -ERANGE);
		return NULL;
	}
2007 2008 2009 2010 2011 2012
	if (is_array &&
	    (type == V4L2_CTRL_TYPE_BUTTON ||
	     type == V4L2_CTRL_TYPE_CTRL_CLASS)) {
		handler_set_err(hdl, -EINVAL);
		return NULL;
	}
2013

2014
	sz_extra = 0;
2015
	if (type == V4L2_CTRL_TYPE_BUTTON)
2016 2017
		flags |= V4L2_CTRL_FLAG_WRITE_ONLY |
			V4L2_CTRL_FLAG_EXECUTE_ON_WRITE;
2018 2019
	else if (type == V4L2_CTRL_TYPE_CTRL_CLASS)
		flags |= V4L2_CTRL_FLAG_READ_ONLY;
2020 2021
	else if (type == V4L2_CTRL_TYPE_INTEGER64 ||
		 type == V4L2_CTRL_TYPE_STRING ||
2022 2023 2024
		 type >= V4L2_CTRL_COMPOUND_TYPES ||
		 is_array)
		sz_extra += 2 * tot_ctrl_size;
2025 2026 2027 2028 2029 2030 2031 2032

	ctrl = kzalloc(sizeof(*ctrl) + sz_extra, GFP_KERNEL);
	if (ctrl == NULL) {
		handler_set_err(hdl, -ENOMEM);
		return NULL;
	}

	INIT_LIST_HEAD(&ctrl->node);
2033
	INIT_LIST_HEAD(&ctrl->ev_subs);
2034 2035
	ctrl->handler = hdl;
	ctrl->ops = ops;
2036
	ctrl->type_ops = type_ops ? type_ops : &std_type_ops;
2037 2038 2039 2040 2041 2042 2043
	ctrl->id = id;
	ctrl->name = name;
	ctrl->type = type;
	ctrl->flags = flags;
	ctrl->minimum = min;
	ctrl->maximum = max;
	ctrl->step = step;
2044
	ctrl->default_value = def;
2045 2046
	ctrl->is_string = !is_array && type == V4L2_CTRL_TYPE_STRING;
	ctrl->is_ptr = is_array || type >= V4L2_CTRL_COMPOUND_TYPES || ctrl->is_string;
2047
	ctrl->is_int = !ctrl->is_ptr && type != V4L2_CTRL_TYPE_INTEGER64;
2048
	ctrl->is_array = is_array;
2049 2050 2051 2052
	ctrl->elems = elems;
	ctrl->nr_of_dims = nr_of_dims;
	if (nr_of_dims)
		memcpy(ctrl->dims, dims, nr_of_dims * sizeof(dims[0]));
2053
	ctrl->elem_size = elem_size;
2054 2055 2056 2057
	if (type == V4L2_CTRL_TYPE_MENU)
		ctrl->qmenu = qmenu;
	else if (type == V4L2_CTRL_TYPE_INTEGER_MENU)
		ctrl->qmenu_int = qmenu_int;
2058
	ctrl->priv = priv;
2059
	ctrl->cur.val = ctrl->val = def;
2060
	data = &ctrl[1];
2061

2062 2063
	if (!ctrl->is_int) {
		ctrl->p_new.p = data;
2064
		ctrl->p_cur.p = data + tot_ctrl_size;
2065 2066 2067
	} else {
		ctrl->p_new.p = &ctrl->val;
		ctrl->p_cur.p = &ctrl->cur.val;
2068
	}
2069 2070 2071 2072
	for (idx = 0; idx < elems; idx++) {
		ctrl->type_ops->init(ctrl, idx, ctrl->p_cur);
		ctrl->type_ops->init(ctrl, idx, ctrl->p_new);
	}
2073

2074 2075 2076 2077
	if (handler_new_ref(hdl, ctrl)) {
		kfree(ctrl);
		return NULL;
	}
2078
	mutex_lock(hdl->lock);
2079
	list_add_tail(&ctrl->node, &hdl->ctrls);
2080
	mutex_unlock(hdl->lock);
2081 2082 2083 2084 2085 2086 2087 2088 2089
	return ctrl;
}

struct v4l2_ctrl *v4l2_ctrl_new_custom(struct v4l2_ctrl_handler *hdl,
			const struct v4l2_ctrl_config *cfg, void *priv)
{
	bool is_menu;
	struct v4l2_ctrl *ctrl;
	const char *name = cfg->name;
2090
	const char * const *qmenu = cfg->qmenu;
2091
	const s64 *qmenu_int = cfg->qmenu_int;
2092 2093
	enum v4l2_ctrl_type type = cfg->type;
	u32 flags = cfg->flags;
2094 2095 2096 2097
	s64 min = cfg->min;
	s64 max = cfg->max;
	u64 step = cfg->step;
	s64 def = cfg->def;
2098 2099 2100 2101 2102

	if (name == NULL)
		v4l2_ctrl_fill(cfg->id, &name, &type, &min, &max, &step,
								&def, &flags);

2103 2104
	is_menu = (cfg->type == V4L2_CTRL_TYPE_MENU ||
		   cfg->type == V4L2_CTRL_TYPE_INTEGER_MENU);
2105 2106 2107 2108
	if (is_menu)
		WARN_ON(step);
	else
		WARN_ON(cfg->menu_skip_mask);
2109
	if (cfg->type == V4L2_CTRL_TYPE_MENU && qmenu == NULL)
2110
		qmenu = v4l2_ctrl_get_menu(cfg->id);
2111 2112 2113 2114 2115
	else if (cfg->type == V4L2_CTRL_TYPE_INTEGER_MENU &&
		 qmenu_int == NULL) {
		handler_set_err(hdl, -EINVAL);
		return NULL;
	}
2116

2117
	ctrl = v4l2_ctrl_new(hdl, cfg->ops, cfg->type_ops, cfg->id, name,
2118
			type, min, max,
2119 2120
			is_menu ? cfg->menu_skip_mask : step, def,
			cfg->dims, cfg->elem_size,
2121
			flags, qmenu, qmenu_int, priv);
2122
	if (ctrl)
2123 2124 2125 2126 2127 2128 2129 2130
		ctrl->is_private = cfg->is_private;
	return ctrl;
}
EXPORT_SYMBOL(v4l2_ctrl_new_custom);

/* Helper function for standard non-menu controls */
struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
			const struct v4l2_ctrl_ops *ops,
2131
			u32 id, s64 min, s64 max, u64 step, s64 def)
2132 2133 2134 2135 2136 2137
{
	const char *name;
	enum v4l2_ctrl_type type;
	u32 flags;

	v4l2_ctrl_fill(id, &name, &type, &min, &max, &step, &def, &flags);
2138 2139 2140
	if (type == V4L2_CTRL_TYPE_MENU ||
	    type == V4L2_CTRL_TYPE_INTEGER_MENU ||
	    type >= V4L2_CTRL_COMPOUND_TYPES) {
2141 2142 2143
		handler_set_err(hdl, -EINVAL);
		return NULL;
	}
2144
	return v4l2_ctrl_new(hdl, ops, NULL, id, name, type,
2145
			     min, max, step, def, NULL, 0,
2146
			     flags, NULL, NULL, NULL);
2147 2148 2149 2150 2151 2152
}
EXPORT_SYMBOL(v4l2_ctrl_new_std);

/* Helper function for standard menu controls */
struct v4l2_ctrl *v4l2_ctrl_new_std_menu(struct v4l2_ctrl_handler *hdl,
			const struct v4l2_ctrl_ops *ops,
2153
			u32 id, u8 _max, u64 mask, u8 _def)
2154
{
2155 2156
	const char * const *qmenu = NULL;
	const s64 *qmenu_int = NULL;
2157
	unsigned int qmenu_int_len = 0;
2158 2159
	const char *name;
	enum v4l2_ctrl_type type;
2160 2161 2162 2163
	s64 min;
	s64 max = _max;
	s64 def = _def;
	u64 step;
2164 2165 2166
	u32 flags;

	v4l2_ctrl_fill(id, &name, &type, &min, &max, &step, &def, &flags);
2167 2168 2169 2170 2171 2172 2173

	if (type == V4L2_CTRL_TYPE_MENU)
		qmenu = v4l2_ctrl_get_menu(id);
	else if (type == V4L2_CTRL_TYPE_INTEGER_MENU)
		qmenu_int = v4l2_ctrl_get_int_menu(id, &qmenu_int_len);

	if ((!qmenu && !qmenu_int) || (qmenu_int && max > qmenu_int_len)) {
2174 2175 2176
		handler_set_err(hdl, -EINVAL);
		return NULL;
	}
2177
	return v4l2_ctrl_new(hdl, ops, NULL, id, name, type,
2178
			     0, max, mask, def, NULL, 0,
2179
			     flags, qmenu, qmenu_int, NULL);
2180 2181 2182
}
EXPORT_SYMBOL(v4l2_ctrl_new_std_menu);

2183 2184
/* Helper function for standard menu controls with driver defined menu */
struct v4l2_ctrl *v4l2_ctrl_new_std_menu_items(struct v4l2_ctrl_handler *hdl,
2185 2186
			const struct v4l2_ctrl_ops *ops, u32 id, u8 _max,
			u64 mask, u8 _def, const char * const *qmenu)
2187 2188 2189 2190
{
	enum v4l2_ctrl_type type;
	const char *name;
	u32 flags;
2191 2192 2193 2194
	u64 step;
	s64 min;
	s64 max = _max;
	s64 def = _def;
2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208

	/* v4l2_ctrl_new_std_menu_items() should only be called for
	 * standard controls without a standard menu.
	 */
	if (v4l2_ctrl_get_menu(id)) {
		handler_set_err(hdl, -EINVAL);
		return NULL;
	}

	v4l2_ctrl_fill(id, &name, &type, &min, &max, &step, &def, &flags);
	if (type != V4L2_CTRL_TYPE_MENU || qmenu == NULL) {
		handler_set_err(hdl, -EINVAL);
		return NULL;
	}
2209
	return v4l2_ctrl_new(hdl, ops, NULL, id, name, type,
2210 2211
			     0, max, mask, def, NULL, 0,
			     flags, qmenu, NULL, NULL);
2212 2213 2214 2215

}
EXPORT_SYMBOL(v4l2_ctrl_new_std_menu_items);

2216 2217 2218
/* Helper function for standard integer menu controls */
struct v4l2_ctrl *v4l2_ctrl_new_int_menu(struct v4l2_ctrl_handler *hdl,
			const struct v4l2_ctrl_ops *ops,
2219
			u32 id, u8 _max, u8 _def, const s64 *qmenu_int)
2220 2221 2222
{
	const char *name;
	enum v4l2_ctrl_type type;
2223 2224 2225 2226
	s64 min;
	u64 step;
	s64 max = _max;
	s64 def = _def;
2227 2228 2229 2230 2231 2232 2233
	u32 flags;

	v4l2_ctrl_fill(id, &name, &type, &min, &max, &step, &def, &flags);
	if (type != V4L2_CTRL_TYPE_INTEGER_MENU) {
		handler_set_err(hdl, -EINVAL);
		return NULL;
	}
2234
	return v4l2_ctrl_new(hdl, ops, NULL, id, name, type,
2235
			     0, max, 0, def, NULL, 0,
2236
			     flags, NULL, qmenu_int, NULL);
2237 2238 2239
}
EXPORT_SYMBOL(v4l2_ctrl_new_int_menu);

2240 2241
/* Add the controls from another handler to our own. */
int v4l2_ctrl_add_handler(struct v4l2_ctrl_handler *hdl,
2242 2243
			  struct v4l2_ctrl_handler *add,
			  bool (*filter)(const struct v4l2_ctrl *ctrl))
2244
{
2245
	struct v4l2_ctrl_ref *ref;
2246 2247 2248 2249 2250 2251 2252
	int ret = 0;

	/* Do nothing if either handler is NULL or if they are the same */
	if (!hdl || !add || hdl == add)
		return 0;
	if (hdl->error)
		return hdl->error;
2253
	mutex_lock(add->lock);
2254 2255 2256
	list_for_each_entry(ref, &add->ctrl_refs, node) {
		struct v4l2_ctrl *ctrl = ref->ctrl;

2257 2258 2259
		/* Skip handler-private controls. */
		if (ctrl->is_private)
			continue;
2260 2261 2262
		/* And control classes */
		if (ctrl->type == V4L2_CTRL_TYPE_CTRL_CLASS)
			continue;
2263 2264 2265
		/* Filter any unwanted controls */
		if (filter && !filter(ctrl))
			continue;
2266 2267 2268 2269
		ret = handler_new_ref(hdl, ctrl);
		if (ret)
			break;
	}
2270
	mutex_unlock(add->lock);
2271 2272 2273 2274
	return ret;
}
EXPORT_SYMBOL(v4l2_ctrl_add_handler);

2275 2276
bool v4l2_ctrl_radio_filter(const struct v4l2_ctrl *ctrl)
{
2277
	if (V4L2_CTRL_ID2WHICH(ctrl->id) == V4L2_CTRL_CLASS_FM_TX)
2278
		return true;
2279
	if (V4L2_CTRL_ID2WHICH(ctrl->id) == V4L2_CTRL_CLASS_FM_RX)
2280
		return true;
2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295
	switch (ctrl->id) {
	case V4L2_CID_AUDIO_MUTE:
	case V4L2_CID_AUDIO_VOLUME:
	case V4L2_CID_AUDIO_BALANCE:
	case V4L2_CID_AUDIO_BASS:
	case V4L2_CID_AUDIO_TREBLE:
	case V4L2_CID_AUDIO_LOUDNESS:
		return true;
	default:
		break;
	}
	return false;
}
EXPORT_SYMBOL(v4l2_ctrl_radio_filter);

2296 2297 2298
/* Cluster controls */
void v4l2_ctrl_cluster(unsigned ncontrols, struct v4l2_ctrl **controls)
{
2299
	bool has_volatiles = false;
2300 2301 2302
	int i;

	/* The first control is the master control and it must not be NULL */
2303 2304
	if (WARN_ON(ncontrols == 0 || controls[0] == NULL))
		return;
2305 2306 2307 2308 2309

	for (i = 0; i < ncontrols; i++) {
		if (controls[i]) {
			controls[i]->cluster = controls;
			controls[i]->ncontrols = ncontrols;
2310 2311
			if (controls[i]->flags & V4L2_CTRL_FLAG_VOLATILE)
				has_volatiles = true;
2312 2313
		}
	}
2314
	controls[0]->has_volatiles = has_volatiles;
2315 2316 2317
}
EXPORT_SYMBOL(v4l2_ctrl_cluster);

2318 2319 2320 2321
void v4l2_ctrl_auto_cluster(unsigned ncontrols, struct v4l2_ctrl **controls,
			    u8 manual_val, bool set_volatile)
{
	struct v4l2_ctrl *master = controls[0];
2322
	u32 flag = 0;
2323 2324 2325 2326
	int i;

	v4l2_ctrl_cluster(ncontrols, controls);
	WARN_ON(ncontrols <= 1);
2327
	WARN_ON(manual_val < master->minimum || manual_val > master->maximum);
2328
	WARN_ON(set_volatile && !has_op(master, g_volatile_ctrl));
2329
	master->is_auto = true;
2330
	master->has_volatiles = set_volatile;
2331 2332
	master->manual_mode_value = manual_val;
	master->flags |= V4L2_CTRL_FLAG_UPDATE;
2333 2334 2335 2336

	if (!is_cur_manual(master))
		flag = V4L2_CTRL_FLAG_INACTIVE |
			(set_volatile ? V4L2_CTRL_FLAG_VOLATILE : 0);
2337 2338

	for (i = 1; i < ncontrols; i++)
2339
		if (controls[i])
2340 2341 2342 2343
			controls[i]->flags |= flag;
}
EXPORT_SYMBOL(v4l2_ctrl_auto_cluster);

2344 2345 2346
/* Activate/deactivate a control. */
void v4l2_ctrl_activate(struct v4l2_ctrl *ctrl, bool active)
{
2347 2348 2349 2350
	/* invert since the actual flag is called 'inactive' */
	bool inactive = !active;
	bool old;

2351 2352 2353
	if (ctrl == NULL)
		return;

2354
	if (inactive)
2355
		/* set V4L2_CTRL_FLAG_INACTIVE */
2356
		old = test_and_set_bit(4, &ctrl->flags);
2357 2358
	else
		/* clear V4L2_CTRL_FLAG_INACTIVE */
2359 2360 2361
		old = test_and_clear_bit(4, &ctrl->flags);
	if (old != inactive)
		send_event(NULL, ctrl, V4L2_EVENT_CTRL_CH_FLAGS);
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372
}
EXPORT_SYMBOL(v4l2_ctrl_activate);

/* Grab/ungrab a control.
   Typically used when streaming starts and you want to grab controls,
   preventing the user from changing them.

   Just call this and the framework will block any attempts to change
   these controls. */
void v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed)
{
2373 2374
	bool old;

2375 2376 2377
	if (ctrl == NULL)
		return;

2378
	v4l2_ctrl_lock(ctrl);
2379 2380
	if (grabbed)
		/* set V4L2_CTRL_FLAG_GRABBED */
2381
		old = test_and_set_bit(1, &ctrl->flags);
2382 2383
	else
		/* clear V4L2_CTRL_FLAG_GRABBED */
2384 2385 2386 2387
		old = test_and_clear_bit(1, &ctrl->flags);
	if (old != grabbed)
		send_event(NULL, ctrl, V4L2_EVENT_CTRL_CH_FLAGS);
	v4l2_ctrl_unlock(ctrl);
2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
}
EXPORT_SYMBOL(v4l2_ctrl_grab);

/* Log the control name and value */
static void log_ctrl(const struct v4l2_ctrl *ctrl,
		     const char *prefix, const char *colon)
{
	if (ctrl->flags & (V4L2_CTRL_FLAG_DISABLED | V4L2_CTRL_FLAG_WRITE_ONLY))
		return;
	if (ctrl->type == V4L2_CTRL_TYPE_CTRL_CLASS)
		return;

2400
	pr_info("%s%s%s: ", prefix, colon, ctrl->name);
2401

2402 2403
	ctrl->type_ops->log(ctrl);

2404 2405 2406 2407
	if (ctrl->flags & (V4L2_CTRL_FLAG_INACTIVE |
			   V4L2_CTRL_FLAG_GRABBED |
			   V4L2_CTRL_FLAG_VOLATILE)) {
		if (ctrl->flags & V4L2_CTRL_FLAG_INACTIVE)
2408
			pr_cont(" inactive");
2409
		if (ctrl->flags & V4L2_CTRL_FLAG_GRABBED)
2410
			pr_cont(" grabbed");
2411
		if (ctrl->flags & V4L2_CTRL_FLAG_VOLATILE)
2412
			pr_cont(" volatile");
2413
	}
2414
	pr_cont("\n");
2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431
}

/* Log all controls owned by the handler */
void v4l2_ctrl_handler_log_status(struct v4l2_ctrl_handler *hdl,
				  const char *prefix)
{
	struct v4l2_ctrl *ctrl;
	const char *colon = "";
	int len;

	if (hdl == NULL)
		return;
	if (prefix == NULL)
		prefix = "";
	len = strlen(prefix);
	if (len && prefix[len - 1] != ' ')
		colon = ": ";
2432
	mutex_lock(hdl->lock);
2433 2434 2435
	list_for_each_entry(ctrl, &hdl->ctrls, node)
		if (!(ctrl->flags & V4L2_CTRL_FLAG_DISABLED))
			log_ctrl(ctrl, prefix, colon);
2436
	mutex_unlock(hdl->lock);
2437 2438 2439
}
EXPORT_SYMBOL(v4l2_ctrl_handler_log_status);

2440 2441 2442 2443 2444 2445 2446
int v4l2_ctrl_subdev_log_status(struct v4l2_subdev *sd)
{
	v4l2_ctrl_handler_log_status(sd->ctrl_handler, sd->name);
	return 0;
}
EXPORT_SYMBOL(v4l2_ctrl_subdev_log_status);

2447
/* Call s_ctrl for all controls owned by the handler */
2448
int __v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl)
2449 2450 2451 2452 2453 2454
{
	struct v4l2_ctrl *ctrl;
	int ret = 0;

	if (hdl == NULL)
		return 0;
2455 2456 2457

	lockdep_assert_held(hdl->lock);

2458 2459 2460 2461 2462 2463 2464 2465
	list_for_each_entry(ctrl, &hdl->ctrls, node)
		ctrl->done = false;

	list_for_each_entry(ctrl, &hdl->ctrls, node) {
		struct v4l2_ctrl *master = ctrl->cluster[0];
		int i;

		/* Skip if this control was already handled by a cluster. */
2466 2467 2468
		/* Skip button controls and read-only controls. */
		if (ctrl->done || ctrl->type == V4L2_CTRL_TYPE_BUTTON ||
		    (ctrl->flags & V4L2_CTRL_FLAG_READ_ONLY))
2469 2470
			continue;

2471 2472 2473 2474
		for (i = 0; i < master->ncontrols; i++) {
			if (master->cluster[i]) {
				cur_to_new(master->cluster[i]);
				master->cluster[i]->is_new = 1;
2475
				master->cluster[i]->done = true;
2476 2477
			}
		}
2478
		ret = call_op(master, s_ctrl);
2479 2480 2481
		if (ret)
			break;
	}
2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495

	return ret;
}
EXPORT_SYMBOL_GPL(__v4l2_ctrl_handler_setup);

int v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl)
{
	int ret;

	if (hdl == NULL)
		return 0;

	mutex_lock(hdl->lock);
	ret = __v4l2_ctrl_handler_setup(hdl);
2496
	mutex_unlock(hdl->lock);
2497

2498 2499 2500 2501
	return ret;
}
EXPORT_SYMBOL(v4l2_ctrl_handler_setup);

2502 2503
/* Implement VIDIOC_QUERY_EXT_CTRL */
int v4l2_query_ext_ctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_query_ext_ctrl *qc)
2504
{
2505
	const unsigned next_flags = V4L2_CTRL_FLAG_NEXT_CTRL | V4L2_CTRL_FLAG_NEXT_COMPOUND;
2506 2507 2508 2509 2510 2511 2512
	u32 id = qc->id & V4L2_CTRL_ID_MASK;
	struct v4l2_ctrl_ref *ref;
	struct v4l2_ctrl *ctrl;

	if (hdl == NULL)
		return -EINVAL;

2513
	mutex_lock(hdl->lock);
2514 2515 2516 2517

	/* Try to find it */
	ref = find_ref(hdl, id);

2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531
	if ((qc->id & next_flags) && !list_empty(&hdl->ctrl_refs)) {
		bool is_compound;
		/* Match any control that is not hidden */
		unsigned mask = 1;
		bool match = false;

		if ((qc->id & next_flags) == V4L2_CTRL_FLAG_NEXT_COMPOUND) {
			/* Match any hidden control */
			match = true;
		} else if ((qc->id & next_flags) == next_flags) {
			/* Match any control, compound or not */
			mask = 0;
		}

2532 2533 2534 2535 2536 2537 2538
		/* Find the next control with ID > qc->id */

		/* Did we reach the end of the control list? */
		if (id >= node2id(hdl->ctrl_refs.prev)) {
			ref = NULL; /* Yes, so there is no next control */
		} else if (ref) {
			/* We found a control with the given ID, so just get
2539 2540
			   the next valid one in the list. */
			list_for_each_entry_continue(ref, &hdl->ctrl_refs, node) {
2541
				is_compound = ref->ctrl->is_array ||
2542 2543 2544 2545 2546 2547 2548
					ref->ctrl->type >= V4L2_CTRL_COMPOUND_TYPES;
				if (id < ref->ctrl->id &&
				    (is_compound & mask) == match)
					break;
			}
			if (&ref->node == &hdl->ctrl_refs)
				ref = NULL;
2549 2550 2551 2552 2553
		} else {
			/* No control with the given ID exists, so start
			   searching for the next largest ID. We know there
			   is one, otherwise the first 'if' above would have
			   been true. */
2554
			list_for_each_entry(ref, &hdl->ctrl_refs, node) {
2555
				is_compound = ref->ctrl->is_array ||
2556 2557 2558
					ref->ctrl->type >= V4L2_CTRL_COMPOUND_TYPES;
				if (id < ref->ctrl->id &&
				    (is_compound & mask) == match)
2559
					break;
2560 2561 2562
			}
			if (&ref->node == &hdl->ctrl_refs)
				ref = NULL;
2563 2564
		}
	}
2565
	mutex_unlock(hdl->lock);
2566

2567 2568 2569 2570 2571
	if (!ref)
		return -EINVAL;

	ctrl = ref->ctrl;
	memset(qc, 0, sizeof(*qc));
2572 2573 2574 2575
	if (id >= V4L2_CID_PRIVATE_BASE)
		qc->id = id;
	else
		qc->id = ctrl->id;
2576
	strlcpy(qc->name, ctrl->name, sizeof(qc->name));
2577 2578 2579 2580 2581
	qc->flags = ctrl->flags;
	qc->type = ctrl->type;
	if (ctrl->is_ptr)
		qc->flags |= V4L2_CTRL_FLAG_HAS_PAYLOAD;
	qc->elem_size = ctrl->elem_size;
2582 2583 2584
	qc->elems = ctrl->elems;
	qc->nr_of_dims = ctrl->nr_of_dims;
	memcpy(qc->dims, ctrl->dims, qc->nr_of_dims * sizeof(qc->dims[0]));
2585 2586 2587
	qc->minimum = ctrl->minimum;
	qc->maximum = ctrl->maximum;
	qc->default_value = ctrl->default_value;
2588 2589
	if (ctrl->type == V4L2_CTRL_TYPE_MENU
	    || ctrl->type == V4L2_CTRL_TYPE_INTEGER_MENU)
2590 2591 2592
		qc->step = 1;
	else
		qc->step = ctrl->step;
2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629
	return 0;
}
EXPORT_SYMBOL(v4l2_query_ext_ctrl);

/* Implement VIDIOC_QUERYCTRL */
int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc)
{
	struct v4l2_query_ext_ctrl qec = { qc->id };
	int rc;

	rc = v4l2_query_ext_ctrl(hdl, &qec);
	if (rc)
		return rc;

	qc->id = qec.id;
	qc->type = qec.type;
	qc->flags = qec.flags;
	strlcpy(qc->name, qec.name, sizeof(qc->name));
	switch (qc->type) {
	case V4L2_CTRL_TYPE_INTEGER:
	case V4L2_CTRL_TYPE_BOOLEAN:
	case V4L2_CTRL_TYPE_MENU:
	case V4L2_CTRL_TYPE_INTEGER_MENU:
	case V4L2_CTRL_TYPE_STRING:
	case V4L2_CTRL_TYPE_BITMASK:
		qc->minimum = qec.minimum;
		qc->maximum = qec.maximum;
		qc->step = qec.step;
		qc->default_value = qec.default_value;
		break;
	default:
		qc->minimum = 0;
		qc->maximum = 0;
		qc->step = 0;
		qc->default_value = 0;
		break;
	}
2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
	return 0;
}
EXPORT_SYMBOL(v4l2_queryctrl);

/* Implement VIDIOC_QUERYMENU */
int v4l2_querymenu(struct v4l2_ctrl_handler *hdl, struct v4l2_querymenu *qm)
{
	struct v4l2_ctrl *ctrl;
	u32 i = qm->index;

	ctrl = v4l2_ctrl_find(hdl, qm->id);
	if (!ctrl)
		return -EINVAL;

	qm->reserved = 0;
	/* Sanity checks */
2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659
	switch (ctrl->type) {
	case V4L2_CTRL_TYPE_MENU:
		if (ctrl->qmenu == NULL)
			return -EINVAL;
		break;
	case V4L2_CTRL_TYPE_INTEGER_MENU:
		if (ctrl->qmenu_int == NULL)
			return -EINVAL;
		break;
	default:
		return -EINVAL;
	}

	if (i < ctrl->minimum || i > ctrl->maximum)
2660
		return -EINVAL;
2661

2662 2663 2664 2665
	/* Use mask to see if this menu item should be skipped */
	if (ctrl->menu_skip_mask & (1 << i))
		return -EINVAL;
	/* Empty menu items should also be skipped */
2666 2667 2668 2669 2670 2671 2672
	if (ctrl->type == V4L2_CTRL_TYPE_MENU) {
		if (ctrl->qmenu[i] == NULL || ctrl->qmenu[i][0] == '\0')
			return -EINVAL;
		strlcpy(qm->name, ctrl->qmenu[i], sizeof(qm->name));
	} else {
		qm->value = ctrl->qmenu_int[i];
	}
2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720
	return 0;
}
EXPORT_SYMBOL(v4l2_querymenu);


/* Some general notes on the atomic requirements of VIDIOC_G/TRY/S_EXT_CTRLS:

   It is not a fully atomic operation, just best-effort only. After all, if
   multiple controls have to be set through multiple i2c writes (for example)
   then some initial writes may succeed while others fail. Thus leaving the
   system in an inconsistent state. The question is how much effort you are
   willing to spend on trying to make something atomic that really isn't.

   From the point of view of an application the main requirement is that
   when you call VIDIOC_S_EXT_CTRLS and some values are invalid then an
   error should be returned without actually affecting any controls.

   If all the values are correct, then it is acceptable to just give up
   in case of low-level errors.

   It is important though that the application can tell when only a partial
   configuration was done. The way we do that is through the error_idx field
   of struct v4l2_ext_controls: if that is equal to the count field then no
   controls were affected. Otherwise all controls before that index were
   successful in performing their 'get' or 'set' operation, the control at
   the given index failed, and you don't know what happened with the controls
   after the failed one. Since if they were part of a control cluster they
   could have been successfully processed (if a cluster member was encountered
   at index < error_idx), they could have failed (if a cluster member was at
   error_idx), or they may not have been processed yet (if the first cluster
   member appeared after error_idx).

   It is all fairly theoretical, though. In practice all you can do is to
   bail out. If error_idx == count, then it is an application bug. If
   error_idx < count then it is only an application bug if the error code was
   EBUSY. That usually means that something started streaming just when you
   tried to set the controls. In all other cases it is a driver/hardware
   problem and all you can do is to retry or bail out.

   Note that these rules do not apply to VIDIOC_TRY_EXT_CTRLS: since that
   never modifies controls the error_idx is just set to whatever control
   has an invalid value.
 */

/* Prepare for the extended g/s/try functions.
   Find the controls in the control array and do some basic checks. */
static int prepare_ext_ctrls(struct v4l2_ctrl_handler *hdl,
			     struct v4l2_ext_controls *cs,
2721 2722
			     struct v4l2_ctrl_helper *helpers,
			     bool get)
2723
{
2724 2725
	struct v4l2_ctrl_helper *h;
	bool have_clusters = false;
2726 2727
	u32 i;

2728
	for (i = 0, h = helpers; i < cs->count; i++, h++) {
2729
		struct v4l2_ext_control *c = &cs->controls[i];
2730
		struct v4l2_ctrl_ref *ref;
2731 2732 2733
		struct v4l2_ctrl *ctrl;
		u32 id = c->id & V4L2_CTRL_ID_MASK;

2734
		cs->error_idx = i;
2735

2736 2737 2738
		if (cs->which &&
		    cs->which != V4L2_CTRL_WHICH_DEF_VAL &&
		    V4L2_CTRL_ID2WHICH(id) != cs->which)
2739 2740 2741 2742 2743 2744
			return -EINVAL;

		/* Old-style private controls are not allowed for
		   extended controls */
		if (id >= V4L2_CID_PRIVATE_BASE)
			return -EINVAL;
2745 2746
		ref = find_ref_lock(hdl, id);
		if (ref == NULL)
2747
			return -EINVAL;
2748
		ctrl = ref->ctrl;
2749 2750 2751
		if (ctrl->flags & V4L2_CTRL_FLAG_DISABLED)
			return -EINVAL;

2752 2753 2754 2755
		if (ctrl->cluster[0]->ncontrols > 1)
			have_clusters = true;
		if (ctrl->cluster[0] != ctrl)
			ref = find_ref_lock(hdl, ctrl->cluster[0]->id);
2756 2757 2758 2759 2760 2761 2762 2763 2764
		if (ctrl->is_ptr && !ctrl->is_string) {
			unsigned tot_size = ctrl->elems * ctrl->elem_size;

			if (c->size < tot_size) {
				if (get) {
					c->size = tot_size;
					return -ENOSPC;
				}
				return -EFAULT;
2765
			}
2766
			c->size = tot_size;
2767
		}
2768 2769 2770 2771 2772 2773 2774
		/* Store the ref to the master control of the cluster */
		h->mref = ref;
		h->ctrl = ctrl;
		/* Initially set next to 0, meaning that there is no other
		   control in this helper array belonging to the same
		   cluster */
		h->next = 0;
2775 2776
	}

2777 2778 2779 2780
	/* We are done if there were no controls that belong to a multi-
	   control cluster. */
	if (!have_clusters)
		return 0;
2781

2782 2783
	/* The code below figures out in O(n) time which controls in the list
	   belong to the same cluster. */
2784

2785
	/* This has to be done with the handler lock taken. */
2786
	mutex_lock(hdl->lock);
2787

2788 2789
	/* First zero the helper field in the master control references */
	for (i = 0; i < cs->count; i++)
2790
		helpers[i].mref->helper = NULL;
2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806
	for (i = 0, h = helpers; i < cs->count; i++, h++) {
		struct v4l2_ctrl_ref *mref = h->mref;

		/* If the mref->helper is set, then it points to an earlier
		   helper that belongs to the same cluster. */
		if (mref->helper) {
			/* Set the next field of mref->helper to the current
			   index: this means that that earlier helper now
			   points to the next helper in the same cluster. */
			mref->helper->next = i;
			/* mref should be set only for the first helper in the
			   cluster, clear the others. */
			h->mref = NULL;
		}
		/* Point the mref helper to the current helper struct. */
		mref->helper = h;
2807
	}
2808
	mutex_unlock(hdl->lock);
2809
	return 0;
2810 2811 2812 2813 2814
}

/* Handles the corner case where cs->count == 0. It checks whether the
   specified control class exists. If that class ID is 0, then it checks
   whether there are any controls at all. */
2815
static int class_check(struct v4l2_ctrl_handler *hdl, u32 which)
2816
{
2817
	if (which == 0 || which == V4L2_CTRL_WHICH_DEF_VAL)
2818
		return list_empty(&hdl->ctrl_refs) ? -EINVAL : 0;
2819
	return find_ref_lock(hdl, which | 1) ? 0 : -EINVAL;
2820 2821 2822 2823 2824 2825 2826
}



/* Get extended controls. Allocates the helpers array if needed. */
int v4l2_g_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct v4l2_ext_controls *cs)
{
2827 2828
	struct v4l2_ctrl_helper helper[4];
	struct v4l2_ctrl_helper *helpers = helper;
2829
	int ret;
2830
	int i, j;
2831 2832 2833
	bool def_value;

	def_value = (cs->which == V4L2_CTRL_WHICH_DEF_VAL);
2834 2835

	cs->error_idx = cs->count;
2836
	cs->which = V4L2_CTRL_ID2WHICH(cs->which);
2837 2838 2839 2840 2841

	if (hdl == NULL)
		return -EINVAL;

	if (cs->count == 0)
2842
		return class_check(hdl, cs->which);
2843 2844

	if (cs->count > ARRAY_SIZE(helper)) {
2845 2846
		helpers = kmalloc_array(cs->count, sizeof(helper[0]),
					GFP_KERNEL);
2847 2848 2849 2850
		if (helpers == NULL)
			return -ENOMEM;
	}

2851
	ret = prepare_ext_ctrls(hdl, cs, helpers, true);
2852
	cs->error_idx = cs->count;
2853 2854 2855 2856 2857 2858

	for (i = 0; !ret && i < cs->count; i++)
		if (helpers[i].ctrl->flags & V4L2_CTRL_FLAG_WRITE_ONLY)
			ret = -EACCES;

	for (i = 0; !ret && i < cs->count; i++) {
2859
		int (*ctrl_to_user)(struct v4l2_ext_control *c,
2860
				    struct v4l2_ctrl *ctrl);
2861
		struct v4l2_ctrl *master;
2862

2863 2864
		ctrl_to_user = def_value ? def_to_user : cur_to_user;

2865
		if (helpers[i].mref == NULL)
2866 2867
			continue;

2868
		master = helpers[i].mref->ctrl;
2869 2870 2871
		cs->error_idx = i;

		v4l2_ctrl_lock(master);
2872 2873

		/* g_volatile_ctrl will update the new control values */
2874 2875 2876
		if (!def_value &&
		    ((master->flags & V4L2_CTRL_FLAG_VOLATILE) ||
		    (master->has_volatiles && !is_cur_manual(master)))) {
2877 2878
			for (j = 0; j < master->ncontrols; j++)
				cur_to_new(master->cluster[j]);
2879
			ret = call_op(master, g_volatile_ctrl);
2880
			ctrl_to_user = new_to_user;
2881 2882 2883 2884
		}
		/* If OK, then copy the current (for non-volatile controls)
		   or the new (for volatile controls) control values to the
		   caller */
2885 2886 2887 2888 2889 2890 2891 2892 2893
		if (!ret) {
			u32 idx = i;

			do {
				ret = ctrl_to_user(cs->controls + idx,
						   helpers[idx].ctrl);
				idx = helpers[idx].next;
			} while (!ret && idx);
		}
2894 2895 2896 2897 2898 2899 2900 2901 2902 2903
		v4l2_ctrl_unlock(master);
	}

	if (cs->count > ARRAY_SIZE(helper))
		kfree(helpers);
	return ret;
}
EXPORT_SYMBOL(v4l2_g_ext_ctrls);

/* Helper function to get a single control */
2904
static int get_ctrl(struct v4l2_ctrl *ctrl, struct v4l2_ext_control *c)
2905 2906 2907
{
	struct v4l2_ctrl *master = ctrl->cluster[0];
	int ret = 0;
2908
	int i;
2909

2910
	/* Compound controls are not supported. The new_to_user() and
2911 2912 2913
	 * cur_to_user() calls below would need to be modified not to access
	 * userspace memory when called from get_ctrl().
	 */
2914
	if (!ctrl->is_int && ctrl->type != V4L2_CTRL_TYPE_INTEGER64)
2915 2916
		return -EINVAL;

2917 2918 2919 2920 2921
	if (ctrl->flags & V4L2_CTRL_FLAG_WRITE_ONLY)
		return -EACCES;

	v4l2_ctrl_lock(master);
	/* g_volatile_ctrl will update the current control values */
2922
	if (ctrl->flags & V4L2_CTRL_FLAG_VOLATILE) {
2923 2924
		for (i = 0; i < master->ncontrols; i++)
			cur_to_new(master->cluster[i]);
2925
		ret = call_op(master, g_volatile_ctrl);
2926
		new_to_user(c, ctrl);
2927
	} else {
2928
		cur_to_user(c, ctrl);
2929
	}
2930 2931 2932 2933 2934 2935 2936
	v4l2_ctrl_unlock(master);
	return ret;
}

int v4l2_g_ctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_control *control)
{
	struct v4l2_ctrl *ctrl = v4l2_ctrl_find(hdl, control->id);
2937 2938
	struct v4l2_ext_control c;
	int ret;
2939

2940
	if (ctrl == NULL || !ctrl->is_int)
2941
		return -EINVAL;
2942 2943 2944
	ret = get_ctrl(ctrl, &c);
	control->value = c.value;
	return ret;
2945 2946 2947 2948 2949
}
EXPORT_SYMBOL(v4l2_g_ctrl);

s32 v4l2_ctrl_g_ctrl(struct v4l2_ctrl *ctrl)
{
2950
	struct v4l2_ext_control c;
2951 2952

	/* It's a driver bug if this happens. */
2953
	WARN_ON(!ctrl->is_int);
2954 2955 2956
	c.value = 0;
	get_ctrl(ctrl, &c);
	return c.value;
2957 2958 2959
}
EXPORT_SYMBOL(v4l2_ctrl_g_ctrl);

2960 2961 2962 2963 2964
s64 v4l2_ctrl_g_ctrl_int64(struct v4l2_ctrl *ctrl)
{
	struct v4l2_ext_control c;

	/* It's a driver bug if this happens. */
2965
	WARN_ON(ctrl->is_ptr || ctrl->type != V4L2_CTRL_TYPE_INTEGER64);
2966
	c.value64 = 0;
2967
	get_ctrl(ctrl, &c);
2968
	return c.value64;
2969 2970 2971
}
EXPORT_SYMBOL(v4l2_ctrl_g_ctrl_int64);

2972 2973 2974 2975

/* Core function that calls try/s_ctrl and ensures that the new value is
   copied to the current value on a set.
   Must be called with ctrl->handler->lock held. */
2976 2977
static int try_or_set_cluster(struct v4l2_fh *fh, struct v4l2_ctrl *master,
			      bool set, u32 ch_flags)
2978
{
2979
	bool update_flag;
2980
	int ret;
2981 2982 2983 2984 2985 2986
	int i;

	/* Go through the cluster and either validate the new value or
	   (if no new value was set), copy the current value to the new
	   value, ensuring a consistent view for the control ops when
	   called. */
2987
	for (i = 0; i < master->ncontrols; i++) {
2988 2989 2990 2991 2992
		struct v4l2_ctrl *ctrl = master->cluster[i];

		if (ctrl == NULL)
			continue;

2993 2994
		if (!ctrl->is_new) {
			cur_to_new(ctrl);
2995 2996
			continue;
		}
2997 2998 2999 3000
		/* Check again: it may have changed since the
		   previous check in try_or_set_ext_ctrls(). */
		if (set && (ctrl->flags & V4L2_CTRL_FLAG_GRABBED))
			return -EBUSY;
3001 3002
	}

3003
	ret = call_op(master, try_ctrl);
3004 3005

	/* Don't set if there is no change */
3006 3007 3008 3009 3010 3011
	if (ret || !set || !cluster_changed(master))
		return ret;
	ret = call_op(master, s_ctrl);
	if (ret)
		return ret;

3012
	/* If OK, then make the new values permanent. */
3013 3014
	update_flag = is_cur_manual(master) != is_new_manual(master);
	for (i = 0; i < master->ncontrols; i++)
3015 3016
		new_to_cur(fh, master->cluster[i], ch_flags |
			((update_flag && i > 0) ? V4L2_EVENT_CTRL_CH_FLAGS : 0));
3017
	return 0;
3018 3019
}

3020 3021 3022
/* Validate controls. */
static int validate_ctrls(struct v4l2_ext_controls *cs,
			  struct v4l2_ctrl_helper *helpers, bool set)
3023
{
3024
	unsigned i;
3025 3026
	int ret = 0;

3027
	cs->error_idx = cs->count;
3028 3029
	for (i = 0; i < cs->count; i++) {
		struct v4l2_ctrl *ctrl = helpers[i].ctrl;
3030
		union v4l2_ctrl_ptr p_new;
3031

3032
		cs->error_idx = i;
3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043

		if (ctrl->flags & V4L2_CTRL_FLAG_READ_ONLY)
			return -EACCES;
		/* This test is also done in try_set_control_cluster() which
		   is called in atomic context, so that has the final say,
		   but it makes sense to do an up-front check as well. Once
		   an error occurs in try_set_control_cluster() some other
		   controls may have been set already and we want to do a
		   best-effort to avoid that. */
		if (set && (ctrl->flags & V4L2_CTRL_FLAG_GRABBED))
			return -EBUSY;
3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054
		/*
		 * Skip validation for now if the payload needs to be copied
		 * from userspace into kernelspace. We'll validate those later.
		 */
		if (ctrl->is_ptr)
			continue;
		if (ctrl->type == V4L2_CTRL_TYPE_INTEGER64)
			p_new.p_s64 = &cs->controls[i].value64;
		else
			p_new.p_s32 = &cs->controls[i].value;
		ret = validate_new(ctrl, p_new);
3055 3056
		if (ret)
			return ret;
3057
	}
3058 3059 3060
	return 0;
}

3061 3062 3063 3064 3065 3066
/* Obtain the current volatile values of an autocluster and mark them
   as new. */
static void update_from_auto_cluster(struct v4l2_ctrl *master)
{
	int i;

3067
	for (i = 1; i < master->ncontrols; i++)
3068 3069 3070 3071 3072 3073 3074
		cur_to_new(master->cluster[i]);
	if (!call_op(master, g_volatile_ctrl))
		for (i = 1; i < master->ncontrols; i++)
			if (master->cluster[i])
				master->cluster[i]->is_new = 1;
}

3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085
/* Try or try-and-set controls */
static int try_set_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
			     struct v4l2_ext_controls *cs,
			     bool set)
{
	struct v4l2_ctrl_helper helper[4];
	struct v4l2_ctrl_helper *helpers = helper;
	unsigned i, j;
	int ret;

	cs->error_idx = cs->count;
3086 3087 3088 3089 3090

	/* Default value cannot be changed */
	if (cs->which == V4L2_CTRL_WHICH_DEF_VAL)
		return -EINVAL;

3091
	cs->which = V4L2_CTRL_ID2WHICH(cs->which);
3092 3093 3094 3095 3096

	if (hdl == NULL)
		return -EINVAL;

	if (cs->count == 0)
3097
		return class_check(hdl, cs->which);
3098

3099
	if (cs->count > ARRAY_SIZE(helper)) {
3100 3101
		helpers = kmalloc_array(cs->count, sizeof(helper[0]),
					GFP_KERNEL);
3102 3103 3104
		if (!helpers)
			return -ENOMEM;
	}
3105
	ret = prepare_ext_ctrls(hdl, cs, helpers, false);
3106 3107 3108 3109
	if (!ret)
		ret = validate_ctrls(cs, helpers, set);
	if (ret && set)
		cs->error_idx = cs->count;
3110
	for (i = 0; !ret && i < cs->count; i++) {
3111 3112
		struct v4l2_ctrl *master;
		u32 idx = i;
3113

3114
		if (helpers[i].mref == NULL)
3115 3116
			continue;

3117
		cs->error_idx = i;
3118 3119
		master = helpers[i].mref->ctrl;
		v4l2_ctrl_lock(master);
3120

3121
		/* Reset the 'is_new' flags of the cluster */
3122 3123
		for (j = 0; j < master->ncontrols; j++)
			if (master->cluster[j])
3124
				master->cluster[j]->is_new = 0;
3125

3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150
		/* For volatile autoclusters that are currently in auto mode
		   we need to discover if it will be set to manual mode.
		   If so, then we have to copy the current volatile values
		   first since those will become the new manual values (which
		   may be overwritten by explicit new values from this set
		   of controls). */
		if (master->is_auto && master->has_volatiles &&
						!is_cur_manual(master)) {
			/* Pick an initial non-manual value */
			s32 new_auto_val = master->manual_mode_value + 1;
			u32 tmp_idx = idx;

			do {
				/* Check if the auto control is part of the
				   list, and remember the new value. */
				if (helpers[tmp_idx].ctrl == master)
					new_auto_val = cs->controls[tmp_idx].value;
				tmp_idx = helpers[tmp_idx].next;
			} while (tmp_idx);
			/* If the new value == the manual value, then copy
			   the current volatile values. */
			if (new_auto_val == master->manual_mode_value)
				update_from_auto_cluster(master);
		}

3151
		/* Copy the new caller-supplied control values.
3152
		   user_to_new() sets 'is_new' to 1. */
3153
		do {
3154 3155 3156 3157 3158
			struct v4l2_ctrl *ctrl = helpers[idx].ctrl;

			ret = user_to_new(cs->controls + idx, ctrl);
			if (!ret && ctrl->is_ptr)
				ret = validate_new(ctrl, ctrl->p_new);
3159 3160
			idx = helpers[idx].next;
		} while (!ret && idx);
3161 3162

		if (!ret)
3163
			ret = try_or_set_cluster(fh, master, set, 0);
3164 3165

		/* Copy the new values back to userspace. */
3166 3167 3168
		if (!ret) {
			idx = i;
			do {
3169
				ret = new_to_user(cs->controls + idx,
3170
						helpers[idx].ctrl);
3171 3172 3173 3174
				idx = helpers[idx].next;
			} while (!ret && idx);
		}
		v4l2_ctrl_unlock(master);
3175 3176 3177 3178 3179 3180 3181 3182 3183
	}

	if (cs->count > ARRAY_SIZE(helper))
		kfree(helpers);
	return ret;
}

int v4l2_try_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct v4l2_ext_controls *cs)
{
3184
	return try_set_ext_ctrls(NULL, hdl, cs, false);
3185 3186 3187
}
EXPORT_SYMBOL(v4l2_try_ext_ctrls);

3188 3189
int v4l2_s_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
					struct v4l2_ext_controls *cs)
3190
{
3191
	return try_set_ext_ctrls(fh, hdl, cs, true);
3192 3193 3194 3195
}
EXPORT_SYMBOL(v4l2_s_ext_ctrls);

/* Helper function for VIDIOC_S_CTRL compatibility */
3196
static int set_ctrl(struct v4l2_fh *fh, struct v4l2_ctrl *ctrl, u32 ch_flags)
3197 3198
{
	struct v4l2_ctrl *master = ctrl->cluster[0];
3199
	int ret;
3200 3201
	int i;

3202
	/* Reset the 'is_new' flags of the cluster */
3203 3204
	for (i = 0; i < master->ncontrols; i++)
		if (master->cluster[i])
3205
			master->cluster[i]->is_new = 0;
3206

3207 3208 3209
	ret = validate_new(ctrl, ctrl->p_new);
	if (ret)
		return ret;
3210

3211 3212 3213 3214
	/* For autoclusters with volatiles that are switched from auto to
	   manual mode we have to update the current volatile values since
	   those will become the initial manual values after such a switch. */
	if (master->is_auto && master->has_volatiles && ctrl == master &&
3215
	    !is_cur_manual(master) && ctrl->val == master->manual_mode_value)
3216
		update_from_auto_cluster(master);
3217

3218
	ctrl->is_new = 1;
3219 3220
	return try_or_set_cluster(fh, master, true, ch_flags);
}
3221

3222 3223 3224 3225
/* Helper function for VIDIOC_S_CTRL compatibility */
static int set_ctrl_lock(struct v4l2_fh *fh, struct v4l2_ctrl *ctrl,
			 struct v4l2_ext_control *c)
{
3226
	int ret;
3227

3228 3229 3230 3231 3232 3233
	v4l2_ctrl_lock(ctrl);
	user_to_new(c, ctrl);
	ret = set_ctrl(fh, ctrl, 0);
	if (!ret)
		cur_to_user(c, ctrl);
	v4l2_ctrl_unlock(ctrl);
3234 3235 3236
	return ret;
}

3237 3238
int v4l2_s_ctrl(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
					struct v4l2_control *control)
3239 3240
{
	struct v4l2_ctrl *ctrl = v4l2_ctrl_find(hdl, control->id);
3241
	struct v4l2_ext_control c = { control->id };
3242
	int ret;
3243

3244
	if (ctrl == NULL || !ctrl->is_int)
3245 3246
		return -EINVAL;

3247 3248 3249
	if (ctrl->flags & V4L2_CTRL_FLAG_READ_ONLY)
		return -EACCES;

3250
	c.value = control->value;
3251
	ret = set_ctrl_lock(fh, ctrl, &c);
3252 3253
	control->value = c.value;
	return ret;
3254 3255 3256
}
EXPORT_SYMBOL(v4l2_s_ctrl);

3257
int __v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val)
3258
{
3259
	lockdep_assert_held(ctrl->handler->lock);
3260

3261
	/* It's a driver bug if this happens. */
3262
	WARN_ON(!ctrl->is_int);
3263
	ctrl->val = val;
3264
	return set_ctrl(NULL, ctrl, 0);
3265
}
3266
EXPORT_SYMBOL(__v4l2_ctrl_s_ctrl);
3267

3268
int __v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val)
3269
{
3270
	lockdep_assert_held(ctrl->handler->lock);
3271 3272

	/* It's a driver bug if this happens. */
3273
	WARN_ON(ctrl->is_ptr || ctrl->type != V4L2_CTRL_TYPE_INTEGER64);
3274
	*ctrl->p_new.p_s64 = val;
3275
	return set_ctrl(NULL, ctrl, 0);
3276
}
3277
EXPORT_SYMBOL(__v4l2_ctrl_s_ctrl_int64);
3278

3279 3280 3281 3282 3283 3284 3285
int __v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s)
{
	lockdep_assert_held(ctrl->handler->lock);

	/* It's a driver bug if this happens. */
	WARN_ON(ctrl->type != V4L2_CTRL_TYPE_STRING);
	strlcpy(ctrl->p_new.p_char, s, ctrl->maximum + 1);
3286
	return set_ctrl(NULL, ctrl, 0);
3287 3288 3289
}
EXPORT_SYMBOL(__v4l2_ctrl_s_ctrl_string);

3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305
void v4l2_ctrl_notify(struct v4l2_ctrl *ctrl, v4l2_ctrl_notify_fnc notify, void *priv)
{
	if (ctrl == NULL)
		return;
	if (notify == NULL) {
		ctrl->call_notify = 0;
		return;
	}
	if (WARN_ON(ctrl->handler->notify && ctrl->handler->notify != notify))
		return;
	ctrl->handler->notify = notify;
	ctrl->handler->notify_priv = priv;
	ctrl->call_notify = 1;
}
EXPORT_SYMBOL(v4l2_ctrl_notify);

3306
int __v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
3307
			s64 min, s64 max, u64 step, s64 def)
3308
{
3309 3310
	bool value_changed;
	bool range_changed = false;
3311
	int ret;
3312

3313 3314
	lockdep_assert_held(ctrl->handler->lock);

3315 3316
	switch (ctrl->type) {
	case V4L2_CTRL_TYPE_INTEGER:
3317
	case V4L2_CTRL_TYPE_INTEGER64:
3318 3319 3320 3321
	case V4L2_CTRL_TYPE_BOOLEAN:
	case V4L2_CTRL_TYPE_MENU:
	case V4L2_CTRL_TYPE_INTEGER_MENU:
	case V4L2_CTRL_TYPE_BITMASK:
3322 3323
	case V4L2_CTRL_TYPE_U8:
	case V4L2_CTRL_TYPE_U16:
3324
	case V4L2_CTRL_TYPE_U32:
3325 3326 3327
		if (ctrl->is_array)
			return -EINVAL;
		ret = check_range(ctrl->type, min, max, step, def);
3328 3329 3330 3331 3332 3333
		if (ret)
			return ret;
		break;
	default:
		return -EINVAL;
	}
3334 3335 3336 3337 3338 3339 3340 3341
	if ((ctrl->minimum != min) || (ctrl->maximum != max) ||
		(ctrl->step != step) || ctrl->default_value != def) {
		range_changed = true;
		ctrl->minimum = min;
		ctrl->maximum = max;
		ctrl->step = step;
		ctrl->default_value = def;
	}
3342 3343 3344 3345 3346 3347 3348 3349 3350
	cur_to_new(ctrl);
	if (validate_new(ctrl, ctrl->p_new)) {
		if (ctrl->type == V4L2_CTRL_TYPE_INTEGER64)
			*ctrl->p_new.p_s64 = def;
		else
			*ctrl->p_new.p_s32 = def;
	}

	if (ctrl->type == V4L2_CTRL_TYPE_INTEGER64)
3351
		value_changed = *ctrl->p_new.p_s64 != *ctrl->p_cur.p_s64;
3352
	else
3353 3354
		value_changed = *ctrl->p_new.p_s32 != *ctrl->p_cur.p_s32;
	if (value_changed)
3355
		ret = set_ctrl(NULL, ctrl, V4L2_EVENT_CTRL_CH_RANGE);
3356
	else if (range_changed)
3357 3358 3359
		send_event(NULL, ctrl, V4L2_EVENT_CTRL_CH_RANGE);
	return ret;
}
3360
EXPORT_SYMBOL(__v4l2_ctrl_modify_range);
3361

3362
static int v4l2_ctrl_add_event(struct v4l2_subscribed_event *sev, unsigned elems)
3363
{
3364 3365 3366 3367 3368
	struct v4l2_ctrl *ctrl = v4l2_ctrl_find(sev->fh->ctrl_handler, sev->id);

	if (ctrl == NULL)
		return -EINVAL;

3369
	v4l2_ctrl_lock(ctrl);
3370
	list_add_tail(&sev->node, &ctrl->ev_subs);
3371
	if (ctrl->type != V4L2_CTRL_TYPE_CTRL_CLASS &&
3372
	    (sev->flags & V4L2_EVENT_SUB_FL_SEND_INITIAL)) {
3373
		struct v4l2_event ev;
3374
		u32 changes = V4L2_EVENT_CTRL_CH_FLAGS;
3375

3376 3377 3378
		if (!(ctrl->flags & V4L2_CTRL_FLAG_WRITE_ONLY))
			changes |= V4L2_EVENT_CTRL_CH_VALUE;
		fill_event(&ev, ctrl, changes);
3379 3380 3381
		/* Mark the queue as active, allowing this initial
		   event to be accepted. */
		sev->elems = elems;
3382
		v4l2_event_queue_fh(sev->fh, &ev);
3383 3384
	}
	v4l2_ctrl_unlock(ctrl);
3385
	return 0;
3386 3387
}

3388
static void v4l2_ctrl_del_event(struct v4l2_subscribed_event *sev)
3389
{
3390 3391
	struct v4l2_ctrl *ctrl = v4l2_ctrl_find(sev->fh->ctrl_handler, sev->id);

3392 3393 3394
	if (ctrl == NULL)
		return;

3395
	v4l2_ctrl_lock(ctrl);
3396
	list_del(&sev->node);
3397 3398
	v4l2_ctrl_unlock(ctrl);
}
3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421

void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new)
{
	u32 old_changes = old->u.ctrl.changes;

	old->u.ctrl = new->u.ctrl;
	old->u.ctrl.changes |= old_changes;
}
EXPORT_SYMBOL(v4l2_ctrl_replace);

void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new)
{
	new->u.ctrl.changes |= old->u.ctrl.changes;
}
EXPORT_SYMBOL(v4l2_ctrl_merge);

const struct v4l2_subscribed_event_ops v4l2_ctrl_sub_ev_ops = {
	.add = v4l2_ctrl_add_event,
	.del = v4l2_ctrl_del_event,
	.replace = v4l2_ctrl_replace,
	.merge = v4l2_ctrl_merge,
};
EXPORT_SYMBOL(v4l2_ctrl_sub_ev_ops);
3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433

int v4l2_ctrl_log_status(struct file *file, void *fh)
{
	struct video_device *vfd = video_devdata(file);
	struct v4l2_fh *vfh = file->private_data;

	if (test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags) && vfd->v4l2_dev)
		v4l2_ctrl_handler_log_status(vfh->ctrl_handler,
			vfd->v4l2_dev->name);
	return 0;
}
EXPORT_SYMBOL(v4l2_ctrl_log_status);
3434 3435

int v4l2_ctrl_subscribe_event(struct v4l2_fh *fh,
3436
				const struct v4l2_event_subscription *sub)
3437 3438
{
	if (sub->type == V4L2_EVENT_CTRL)
3439
		return v4l2_event_subscribe(fh, sub, 0, &v4l2_ctrl_sub_ev_ops);
3440 3441 3442 3443
	return -EINVAL;
}
EXPORT_SYMBOL(v4l2_ctrl_subscribe_event);

3444 3445 3446 3447 3448 3449 3450 3451 3452
int v4l2_ctrl_subdev_subscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
				     struct v4l2_event_subscription *sub)
{
	if (!sd->ctrl_handler)
		return -EINVAL;
	return v4l2_ctrl_subscribe_event(fh, sub);
}
EXPORT_SYMBOL(v4l2_ctrl_subdev_subscribe_event);

3453 3454 3455 3456 3457 3458 3459 3460 3461 3462
unsigned int v4l2_ctrl_poll(struct file *file, struct poll_table_struct *wait)
{
	struct v4l2_fh *fh = file->private_data;

	if (v4l2_event_pending(fh))
		return POLLPRI;
	poll_wait(file, &fh->wait, wait);
	return 0;
}
EXPORT_SYMBOL(v4l2_ctrl_poll);