]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/media/video/uvc/uvc_ctrl.c
V4L/DVB: uvcvideo: Use %pUl printk format specifier to print GUIDs
[net-next-2.6.git] / drivers / media / video / uvc / uvc_ctrl.c
CommitLineData
c0efd232
LP
1/*
2 * uvc_ctrl.c -- USB Video Class driver - Controls
3 *
2c2d264b 4 * Copyright (C) 2005-2009
c0efd232
LP
5 * Laurent Pinchart (laurent.pinchart@skynet.be)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 */
13
14#include <linux/kernel.h>
c0efd232
LP
15#include <linux/list.h>
16#include <linux/module.h>
17#include <linux/uaccess.h>
18#include <linux/usb.h>
19#include <linux/videodev2.h>
20#include <linux/vmalloc.h>
21#include <linux/wait.h>
22#include <asm/atomic.h>
23
24#include "uvcvideo.h"
25
26#define UVC_CTRL_NDATA 2
27#define UVC_CTRL_DATA_CURRENT 0
28#define UVC_CTRL_DATA_BACKUP 1
29
30/* ------------------------------------------------------------------------
2c2d264b 31 * Controls
c0efd232
LP
32 */
33
34static struct uvc_control_info uvc_ctrls[] = {
35 {
36 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 37 .selector = UVC_PU_BRIGHTNESS_CONTROL,
c0efd232
LP
38 .index = 0,
39 .size = 2,
40 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
41 | UVC_CONTROL_RESTORE,
42 },
43 {
44 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 45 .selector = UVC_PU_CONTRAST_CONTROL,
c0efd232
LP
46 .index = 1,
47 .size = 2,
48 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
49 | UVC_CONTROL_RESTORE,
50 },
51 {
52 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 53 .selector = UVC_PU_HUE_CONTROL,
c0efd232
LP
54 .index = 2,
55 .size = 2,
56 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
57 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
58 },
59 {
60 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 61 .selector = UVC_PU_SATURATION_CONTROL,
c0efd232
LP
62 .index = 3,
63 .size = 2,
64 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
65 | UVC_CONTROL_RESTORE,
66 },
67 {
68 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 69 .selector = UVC_PU_SHARPNESS_CONTROL,
c0efd232
LP
70 .index = 4,
71 .size = 2,
72 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
73 | UVC_CONTROL_RESTORE,
74 },
75 {
76 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 77 .selector = UVC_PU_GAMMA_CONTROL,
c0efd232
LP
78 .index = 5,
79 .size = 2,
80 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
81 | UVC_CONTROL_RESTORE,
82 },
5e26d50f
LP
83 {
84 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 85 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL,
5e26d50f
LP
86 .index = 6,
87 .size = 2,
88 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
89 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
90 },
91 {
92 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 93 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
5e26d50f
LP
94 .index = 7,
95 .size = 4,
96 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
97 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
98 },
c0efd232
LP
99 {
100 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 101 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL,
c0efd232
LP
102 .index = 8,
103 .size = 2,
104 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
105 | UVC_CONTROL_RESTORE,
106 },
107 {
108 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 109 .selector = UVC_PU_GAIN_CONTROL,
c0efd232
LP
110 .index = 9,
111 .size = 2,
112 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
113 | UVC_CONTROL_RESTORE,
114 },
115 {
116 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 117 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL,
c0efd232
LP
118 .index = 10,
119 .size = 1,
120 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
121 | UVC_CONTROL_RESTORE,
122 },
123 {
124 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 125 .selector = UVC_PU_HUE_AUTO_CONTROL,
c0efd232
LP
126 .index = 11,
127 .size = 1,
128 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
129 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
130 },
5e26d50f
LP
131 {
132 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 133 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_AUTO_CONTROL,
5e26d50f
LP
134 .index = 12,
135 .size = 1,
136 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
137 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
138 },
139 {
140 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 141 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_AUTO_CONTROL,
5e26d50f
LP
142 .index = 13,
143 .size = 1,
144 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
145 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
146 },
147 {
148 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 149 .selector = UVC_PU_DIGITAL_MULTIPLIER_CONTROL,
5e26d50f
LP
150 .index = 14,
151 .size = 2,
152 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
153 | UVC_CONTROL_RESTORE,
154 },
155 {
156 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 157 .selector = UVC_PU_DIGITAL_MULTIPLIER_LIMIT_CONTROL,
5e26d50f
LP
158 .index = 15,
159 .size = 2,
160 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
161 | UVC_CONTROL_RESTORE,
162 },
163 {
164 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 165 .selector = UVC_PU_ANALOG_VIDEO_STANDARD_CONTROL,
5e26d50f
LP
166 .index = 16,
167 .size = 1,
168 .flags = UVC_CONTROL_GET_CUR,
169 },
170 {
171 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 172 .selector = UVC_PU_ANALOG_LOCK_STATUS_CONTROL,
5e26d50f
LP
173 .index = 17,
174 .size = 1,
175 .flags = UVC_CONTROL_GET_CUR,
176 },
177 {
178 .entity = UVC_GUID_UVC_CAMERA,
b482d923 179 .selector = UVC_CT_SCANNING_MODE_CONTROL,
5e26d50f
LP
180 .index = 0,
181 .size = 1,
182 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
183 | UVC_CONTROL_RESTORE,
184 },
c0efd232
LP
185 {
186 .entity = UVC_GUID_UVC_CAMERA,
b482d923 187 .selector = UVC_CT_AE_MODE_CONTROL,
c0efd232
LP
188 .index = 1,
189 .size = 1,
190 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
191 | UVC_CONTROL_GET_DEF | UVC_CONTROL_GET_RES
192 | UVC_CONTROL_RESTORE,
193 },
194 {
195 .entity = UVC_GUID_UVC_CAMERA,
b482d923 196 .selector = UVC_CT_AE_PRIORITY_CONTROL,
c0efd232
LP
197 .index = 2,
198 .size = 1,
199 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
200 | UVC_CONTROL_RESTORE,
201 },
202 {
203 .entity = UVC_GUID_UVC_CAMERA,
b482d923 204 .selector = UVC_CT_EXPOSURE_TIME_ABSOLUTE_CONTROL,
c0efd232
LP
205 .index = 3,
206 .size = 4,
207 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
208 | UVC_CONTROL_RESTORE,
209 },
5e26d50f
LP
210 {
211 .entity = UVC_GUID_UVC_CAMERA,
b482d923 212 .selector = UVC_CT_EXPOSURE_TIME_RELATIVE_CONTROL,
5e26d50f
LP
213 .index = 4,
214 .size = 1,
215 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
216 | UVC_CONTROL_RESTORE,
217 },
c0efd232
LP
218 {
219 .entity = UVC_GUID_UVC_CAMERA,
b482d923 220 .selector = UVC_CT_FOCUS_ABSOLUTE_CONTROL,
c0efd232
LP
221 .index = 5,
222 .size = 2,
223 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
224 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
225 },
226 {
227 .entity = UVC_GUID_UVC_CAMERA,
b482d923 228 .selector = UVC_CT_FOCUS_RELATIVE_CONTROL,
5e26d50f
LP
229 .index = 6,
230 .size = 2,
231 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
232 | UVC_CONTROL_AUTO_UPDATE,
c0efd232
LP
233 },
234 {
5e26d50f 235 .entity = UVC_GUID_UVC_CAMERA,
b482d923 236 .selector = UVC_CT_IRIS_ABSOLUTE_CONTROL,
5e26d50f
LP
237 .index = 7,
238 .size = 2,
239 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
240 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
241 },
242 {
243 .entity = UVC_GUID_UVC_CAMERA,
b482d923 244 .selector = UVC_CT_IRIS_RELATIVE_CONTROL,
5e26d50f 245 .index = 8,
c0efd232
LP
246 .size = 1,
247 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
5e26d50f 248 | UVC_CONTROL_AUTO_UPDATE,
c0efd232
LP
249 },
250 {
5e26d50f 251 .entity = UVC_GUID_UVC_CAMERA,
b482d923 252 .selector = UVC_CT_ZOOM_ABSOLUTE_CONTROL,
5e26d50f 253 .index = 9,
c0efd232
LP
254 .size = 2,
255 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
256 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
257 },
258 {
5e26d50f 259 .entity = UVC_GUID_UVC_CAMERA,
b482d923 260 .selector = UVC_CT_ZOOM_RELATIVE_CONTROL,
5e26d50f
LP
261 .index = 10,
262 .size = 3,
263 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
264 | UVC_CONTROL_AUTO_UPDATE,
265 },
266 {
267 .entity = UVC_GUID_UVC_CAMERA,
b482d923 268 .selector = UVC_CT_PANTILT_ABSOLUTE_CONTROL,
5e26d50f
LP
269 .index = 11,
270 .size = 8,
271 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
272 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
273 },
274 {
275 .entity = UVC_GUID_UVC_CAMERA,
b482d923 276 .selector = UVC_CT_PANTILT_RELATIVE_CONTROL,
5e26d50f
LP
277 .index = 12,
278 .size = 4,
279 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
280 | UVC_CONTROL_AUTO_UPDATE,
281 },
282 {
283 .entity = UVC_GUID_UVC_CAMERA,
b482d923 284 .selector = UVC_CT_ROLL_ABSOLUTE_CONTROL,
c0efd232 285 .index = 13,
5e26d50f
LP
286 .size = 2,
287 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
288 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
289 },
290 {
291 .entity = UVC_GUID_UVC_CAMERA,
b482d923 292 .selector = UVC_CT_ROLL_RELATIVE_CONTROL,
5e26d50f
LP
293 .index = 14,
294 .size = 2,
295 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
296 | UVC_CONTROL_AUTO_UPDATE,
297 },
298 {
299 .entity = UVC_GUID_UVC_CAMERA,
b482d923 300 .selector = UVC_CT_FOCUS_AUTO_CONTROL,
5e26d50f 301 .index = 17,
c0efd232
LP
302 .size = 1,
303 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
304 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
305 },
306 {
5e26d50f 307 .entity = UVC_GUID_UVC_CAMERA,
b482d923 308 .selector = UVC_CT_PRIVACY_CONTROL,
5e26d50f
LP
309 .index = 18,
310 .size = 1,
311 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
c0efd232
LP
312 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
313 },
314};
315
316static struct uvc_menu_info power_line_frequency_controls[] = {
317 { 0, "Disabled" },
318 { 1, "50 Hz" },
319 { 2, "60 Hz" },
320};
321
322static struct uvc_menu_info exposure_auto_controls[] = {
c0efd232 323 { 2, "Auto Mode" },
90ac5ea3 324 { 1, "Manual Mode" },
c0efd232
LP
325 { 4, "Shutter Priority Mode" },
326 { 8, "Aperture Priority Mode" },
327};
328
9768352a
LP
329static __s32 uvc_ctrl_get_zoom(struct uvc_control_mapping *mapping,
330 __u8 query, const __u8 *data)
331{
332 __s8 zoom = (__s8)data[0];
333
334 switch (query) {
b482d923 335 case UVC_GET_CUR:
9768352a
LP
336 return (zoom == 0) ? 0 : (zoom > 0 ? data[2] : -data[2]);
337
b482d923
LP
338 case UVC_GET_MIN:
339 case UVC_GET_MAX:
340 case UVC_GET_RES:
341 case UVC_GET_DEF:
9768352a
LP
342 default:
343 return data[2];
344 }
345}
346
347static void uvc_ctrl_set_zoom(struct uvc_control_mapping *mapping,
348 __s32 value, __u8 *data)
349{
350 data[0] = value == 0 ? 0 : (value > 0) ? 1 : 0xff;
2e896133 351 data[2] = min((int)abs(value), 0xff);
9768352a
LP
352}
353
c0efd232
LP
354static struct uvc_control_mapping uvc_ctrl_mappings[] = {
355 {
356 .id = V4L2_CID_BRIGHTNESS,
357 .name = "Brightness",
358 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 359 .selector = UVC_PU_BRIGHTNESS_CONTROL,
c0efd232
LP
360 .size = 16,
361 .offset = 0,
362 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
363 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
364 },
365 {
366 .id = V4L2_CID_CONTRAST,
367 .name = "Contrast",
368 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 369 .selector = UVC_PU_CONTRAST_CONTROL,
c0efd232
LP
370 .size = 16,
371 .offset = 0,
372 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
373 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
374 },
375 {
376 .id = V4L2_CID_HUE,
377 .name = "Hue",
378 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 379 .selector = UVC_PU_HUE_CONTROL,
c0efd232
LP
380 .size = 16,
381 .offset = 0,
382 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
383 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
384 },
385 {
386 .id = V4L2_CID_SATURATION,
387 .name = "Saturation",
388 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 389 .selector = UVC_PU_SATURATION_CONTROL,
c0efd232
LP
390 .size = 16,
391 .offset = 0,
392 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
393 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
394 },
395 {
396 .id = V4L2_CID_SHARPNESS,
397 .name = "Sharpness",
398 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 399 .selector = UVC_PU_SHARPNESS_CONTROL,
c0efd232
LP
400 .size = 16,
401 .offset = 0,
402 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
403 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
404 },
405 {
406 .id = V4L2_CID_GAMMA,
407 .name = "Gamma",
408 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 409 .selector = UVC_PU_GAMMA_CONTROL,
c0efd232
LP
410 .size = 16,
411 .offset = 0,
412 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
413 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
414 },
415 {
416 .id = V4L2_CID_BACKLIGHT_COMPENSATION,
417 .name = "Backlight Compensation",
418 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 419 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL,
c0efd232
LP
420 .size = 16,
421 .offset = 0,
422 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
423 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
424 },
425 {
426 .id = V4L2_CID_GAIN,
427 .name = "Gain",
428 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 429 .selector = UVC_PU_GAIN_CONTROL,
c0efd232
LP
430 .size = 16,
431 .offset = 0,
432 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
433 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
434 },
435 {
436 .id = V4L2_CID_POWER_LINE_FREQUENCY,
437 .name = "Power Line Frequency",
438 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 439 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL,
c0efd232
LP
440 .size = 2,
441 .offset = 0,
442 .v4l2_type = V4L2_CTRL_TYPE_MENU,
443 .data_type = UVC_CTRL_DATA_TYPE_ENUM,
444 .menu_info = power_line_frequency_controls,
445 .menu_count = ARRAY_SIZE(power_line_frequency_controls),
446 },
447 {
448 .id = V4L2_CID_HUE_AUTO,
449 .name = "Hue, Auto",
450 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 451 .selector = UVC_PU_HUE_AUTO_CONTROL,
c0efd232
LP
452 .size = 1,
453 .offset = 0,
454 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
455 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
456 },
457 {
458 .id = V4L2_CID_EXPOSURE_AUTO,
459 .name = "Exposure, Auto",
460 .entity = UVC_GUID_UVC_CAMERA,
b482d923 461 .selector = UVC_CT_AE_MODE_CONTROL,
c0efd232
LP
462 .size = 4,
463 .offset = 0,
464 .v4l2_type = V4L2_CTRL_TYPE_MENU,
465 .data_type = UVC_CTRL_DATA_TYPE_BITMASK,
466 .menu_info = exposure_auto_controls,
467 .menu_count = ARRAY_SIZE(exposure_auto_controls),
468 },
469 {
470 .id = V4L2_CID_EXPOSURE_AUTO_PRIORITY,
471 .name = "Exposure, Auto Priority",
472 .entity = UVC_GUID_UVC_CAMERA,
b482d923 473 .selector = UVC_CT_AE_PRIORITY_CONTROL,
c0efd232
LP
474 .size = 1,
475 .offset = 0,
476 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
477 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
478 },
479 {
480 .id = V4L2_CID_EXPOSURE_ABSOLUTE,
481 .name = "Exposure (Absolute)",
482 .entity = UVC_GUID_UVC_CAMERA,
b482d923 483 .selector = UVC_CT_EXPOSURE_TIME_ABSOLUTE_CONTROL,
c0efd232
LP
484 .size = 32,
485 .offset = 0,
486 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
487 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
488 },
489 {
490 .id = V4L2_CID_AUTO_WHITE_BALANCE,
491 .name = "White Balance Temperature, Auto",
492 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 493 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_AUTO_CONTROL,
c0efd232
LP
494 .size = 1,
495 .offset = 0,
496 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
497 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
498 },
499 {
500 .id = V4L2_CID_WHITE_BALANCE_TEMPERATURE,
501 .name = "White Balance Temperature",
502 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 503 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL,
c0efd232
LP
504 .size = 16,
505 .offset = 0,
506 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
507 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
508 },
509 {
510 .id = V4L2_CID_AUTO_WHITE_BALANCE,
511 .name = "White Balance Component, Auto",
512 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 513 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_AUTO_CONTROL,
c0efd232
LP
514 .size = 1,
515 .offset = 0,
516 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
517 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
518 },
519 {
520 .id = V4L2_CID_BLUE_BALANCE,
521 .name = "White Balance Blue Component",
522 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 523 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
c0efd232
LP
524 .size = 16,
525 .offset = 0,
526 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
527 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
528 },
529 {
530 .id = V4L2_CID_RED_BALANCE,
531 .name = "White Balance Red Component",
532 .entity = UVC_GUID_UVC_PROCESSING,
b482d923 533 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
c0efd232
LP
534 .size = 16,
535 .offset = 16,
536 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
537 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
538 },
539 {
540 .id = V4L2_CID_FOCUS_ABSOLUTE,
541 .name = "Focus (absolute)",
542 .entity = UVC_GUID_UVC_CAMERA,
b482d923 543 .selector = UVC_CT_FOCUS_ABSOLUTE_CONTROL,
c0efd232
LP
544 .size = 16,
545 .offset = 0,
546 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
547 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
548 },
549 {
550 .id = V4L2_CID_FOCUS_AUTO,
551 .name = "Focus, Auto",
552 .entity = UVC_GUID_UVC_CAMERA,
b482d923 553 .selector = UVC_CT_FOCUS_AUTO_CONTROL,
c0efd232
LP
554 .size = 1,
555 .offset = 0,
556 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
557 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
558 },
9768352a
LP
559 {
560 .id = V4L2_CID_ZOOM_ABSOLUTE,
561 .name = "Zoom, Absolute",
562 .entity = UVC_GUID_UVC_CAMERA,
b482d923 563 .selector = UVC_CT_ZOOM_ABSOLUTE_CONTROL,
9768352a
LP
564 .size = 16,
565 .offset = 0,
566 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
567 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
568 },
569 {
570 .id = V4L2_CID_ZOOM_CONTINUOUS,
571 .name = "Zoom, Continuous",
572 .entity = UVC_GUID_UVC_CAMERA,
b482d923 573 .selector = UVC_CT_ZOOM_RELATIVE_CONTROL,
9768352a
LP
574 .size = 0,
575 .offset = 0,
576 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
577 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
578 .get = uvc_ctrl_get_zoom,
579 .set = uvc_ctrl_set_zoom,
580 },
6df126f8
LP
581 {
582 .id = V4L2_CID_PRIVACY,
583 .name = "Privacy",
584 .entity = UVC_GUID_UVC_CAMERA,
b482d923 585 .selector = UVC_CT_PRIVACY_CONTROL,
6df126f8
LP
586 .size = 1,
587 .offset = 0,
588 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
589 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
590 },
c0efd232
LP
591};
592
593/* ------------------------------------------------------------------------
594 * Utility functions
595 */
596
597static inline __u8 *uvc_ctrl_data(struct uvc_control *ctrl, int id)
598{
599 return ctrl->data + id * ctrl->info->size;
600}
601
2bdd29cf 602static inline int uvc_test_bit(const __u8 *data, int bit)
c0efd232
LP
603{
604 return (data[bit >> 3] >> (bit & 7)) & 1;
605}
606
2bdd29cf
LP
607static inline void uvc_clear_bit(__u8 *data, int bit)
608{
609 data[bit >> 3] &= ~(1 << (bit & 7));
610}
611
c0efd232
LP
612/* Extract the bit string specified by mapping->offset and mapping->size
613 * from the little-endian data stored at 'data' and return the result as
614 * a signed 32bit integer. Sign extension will be performed if the mapping
615 * references a signed data type.
616 */
9768352a
LP
617static __s32 uvc_get_le_value(struct uvc_control_mapping *mapping,
618 __u8 query, const __u8 *data)
c0efd232
LP
619{
620 int bits = mapping->size;
621 int offset = mapping->offset;
622 __s32 value = 0;
623 __u8 mask;
624
625 data += offset / 8;
626 offset &= 7;
627 mask = ((1LL << bits) - 1) << offset;
628
629 for (; bits > 0; data++) {
630 __u8 byte = *data & mask;
631 value |= offset > 0 ? (byte >> offset) : (byte << (-offset));
632 bits -= 8 - (offset > 0 ? offset : 0);
633 offset -= 8;
634 mask = (1 << bits) - 1;
635 }
636
2c2d264b 637 /* Sign-extend the value if needed. */
c0efd232
LP
638 if (mapping->data_type == UVC_CTRL_DATA_TYPE_SIGNED)
639 value |= -(value & (1 << (mapping->size - 1)));
640
641 return value;
642}
643
644/* Set the bit string specified by mapping->offset and mapping->size
645 * in the little-endian data stored at 'data' to the value 'value'.
646 */
9768352a
LP
647static void uvc_set_le_value(struct uvc_control_mapping *mapping,
648 __s32 value, __u8 *data)
c0efd232
LP
649{
650 int bits = mapping->size;
651 int offset = mapping->offset;
652 __u8 mask;
653
654 data += offset / 8;
655 offset &= 7;
656
657 for (; bits > 0; data++) {
658 mask = ((1LL << bits) - 1) << offset;
659 *data = (*data & ~mask) | ((value << offset) & mask);
660 value >>= offset ? offset : 8;
661 bits -= 8 - offset;
662 offset = 0;
663 }
664}
665
666/* ------------------------------------------------------------------------
667 * Terminal and unit management
668 */
669
670static const __u8 uvc_processing_guid[16] = UVC_GUID_UVC_PROCESSING;
671static const __u8 uvc_camera_guid[16] = UVC_GUID_UVC_CAMERA;
672static const __u8 uvc_media_transport_input_guid[16] =
673 UVC_GUID_UVC_MEDIA_TRANSPORT_INPUT;
674
675static int uvc_entity_match_guid(struct uvc_entity *entity, __u8 guid[16])
676{
677 switch (UVC_ENTITY_TYPE(entity)) {
b482d923 678 case UVC_ITT_CAMERA:
c0efd232
LP
679 return memcmp(uvc_camera_guid, guid, 16) == 0;
680
b482d923 681 case UVC_ITT_MEDIA_TRANSPORT_INPUT:
c0efd232
LP
682 return memcmp(uvc_media_transport_input_guid, guid, 16) == 0;
683
b482d923 684 case UVC_VC_PROCESSING_UNIT:
c0efd232
LP
685 return memcmp(uvc_processing_guid, guid, 16) == 0;
686
b482d923 687 case UVC_VC_EXTENSION_UNIT:
c0efd232
LP
688 return memcmp(entity->extension.guidExtensionCode,
689 guid, 16) == 0;
690
691 default:
692 return 0;
693 }
694}
695
696/* ------------------------------------------------------------------------
697 * UVC Controls
698 */
699
700static void __uvc_find_control(struct uvc_entity *entity, __u32 v4l2_id,
701 struct uvc_control_mapping **mapping, struct uvc_control **control,
702 int next)
703{
704 struct uvc_control *ctrl;
705 struct uvc_control_mapping *map;
706 unsigned int i;
707
708 if (entity == NULL)
709 return;
710
711 for (i = 0; i < entity->ncontrols; ++i) {
712 ctrl = &entity->controls[i];
713 if (ctrl->info == NULL)
714 continue;
715
716 list_for_each_entry(map, &ctrl->info->mappings, list) {
717 if ((map->id == v4l2_id) && !next) {
718 *control = ctrl;
719 *mapping = map;
720 return;
721 }
722
723 if ((*mapping == NULL || (*mapping)->id > map->id) &&
724 (map->id > v4l2_id) && next) {
725 *control = ctrl;
726 *mapping = map;
727 }
728 }
729 }
730}
731
8e113595 732struct uvc_control *uvc_find_control(struct uvc_video_chain *chain,
c0efd232
LP
733 __u32 v4l2_id, struct uvc_control_mapping **mapping)
734{
735 struct uvc_control *ctrl = NULL;
736 struct uvc_entity *entity;
737 int next = v4l2_id & V4L2_CTRL_FLAG_NEXT_CTRL;
738
739 *mapping = NULL;
740
741 /* Mask the query flags. */
742 v4l2_id &= V4L2_CTRL_ID_MASK;
743
744 /* Find the control. */
6241d8ca 745 list_for_each_entry(entity, &chain->entities, chain) {
c0efd232
LP
746 __uvc_find_control(entity, v4l2_id, mapping, &ctrl, next);
747 if (ctrl && !next)
748 return ctrl;
749 }
750
751 if (ctrl == NULL && !next)
752 uvc_trace(UVC_TRACE_CONTROL, "Control 0x%08x not found.\n",
753 v4l2_id);
754
755 return ctrl;
756}
757
8e113595 758int uvc_query_v4l2_ctrl(struct uvc_video_chain *chain,
c0efd232
LP
759 struct v4l2_queryctrl *v4l2_ctrl)
760{
761 struct uvc_control *ctrl;
762 struct uvc_control_mapping *mapping;
763 struct uvc_menu_info *menu;
764 unsigned int i;
04793dd0 765 __u8 *data;
c0efd232
LP
766 int ret;
767
8e113595 768 ctrl = uvc_find_control(chain, v4l2_ctrl->id, &mapping);
c0efd232
LP
769 if (ctrl == NULL)
770 return -EINVAL;
771
fe6c700f 772 data = kmalloc(ctrl->info->size, GFP_KERNEL);
04793dd0
LP
773 if (data == NULL)
774 return -ENOMEM;
775
54812c77 776 memset(v4l2_ctrl, 0, sizeof *v4l2_ctrl);
c0efd232
LP
777 v4l2_ctrl->id = mapping->id;
778 v4l2_ctrl->type = mapping->v4l2_type;
d0ebf307 779 strlcpy(v4l2_ctrl->name, mapping->name, sizeof v4l2_ctrl->name);
c0efd232
LP
780 v4l2_ctrl->flags = 0;
781
782 if (!(ctrl->info->flags & UVC_CONTROL_SET_CUR))
783 v4l2_ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;
784
785 if (ctrl->info->flags & UVC_CONTROL_GET_DEF) {
8e113595
LP
786 ret = uvc_query_ctrl(chain->dev, UVC_GET_DEF, ctrl->entity->id,
787 chain->dev->intfnum, ctrl->info->selector,
788 data, ctrl->info->size);
b482d923 789 if (ret < 0)
04793dd0 790 goto out;
b482d923
LP
791 v4l2_ctrl->default_value =
792 mapping->get(mapping, UVC_GET_DEF, data);
c0efd232
LP
793 }
794
54812c77
LP
795 switch (mapping->v4l2_type) {
796 case V4L2_CTRL_TYPE_MENU:
c0efd232
LP
797 v4l2_ctrl->minimum = 0;
798 v4l2_ctrl->maximum = mapping->menu_count - 1;
799 v4l2_ctrl->step = 1;
800
801 menu = mapping->menu_info;
802 for (i = 0; i < mapping->menu_count; ++i, ++menu) {
803 if (menu->value == v4l2_ctrl->default_value) {
804 v4l2_ctrl->default_value = i;
805 break;
806 }
807 }
808
04793dd0
LP
809 ret = 0;
810 goto out;
54812c77
LP
811
812 case V4L2_CTRL_TYPE_BOOLEAN:
813 v4l2_ctrl->minimum = 0;
814 v4l2_ctrl->maximum = 1;
815 v4l2_ctrl->step = 1;
04793dd0
LP
816 ret = 0;
817 goto out;
54812c77 818
f4eabafe
LP
819 case V4L2_CTRL_TYPE_BUTTON:
820 v4l2_ctrl->minimum = 0;
821 v4l2_ctrl->maximum = 0;
822 v4l2_ctrl->step = 0;
823 ret = 0;
824 goto out;
825
54812c77
LP
826 default:
827 break;
c0efd232
LP
828 }
829
830 if (ctrl->info->flags & UVC_CONTROL_GET_MIN) {
8e113595
LP
831 ret = uvc_query_ctrl(chain->dev, UVC_GET_MIN, ctrl->entity->id,
832 chain->dev->intfnum, ctrl->info->selector,
833 data, ctrl->info->size);
b482d923 834 if (ret < 0)
04793dd0 835 goto out;
b482d923 836 v4l2_ctrl->minimum = mapping->get(mapping, UVC_GET_MIN, data);
c0efd232
LP
837 }
838 if (ctrl->info->flags & UVC_CONTROL_GET_MAX) {
8e113595
LP
839 ret = uvc_query_ctrl(chain->dev, UVC_GET_MAX, ctrl->entity->id,
840 chain->dev->intfnum, ctrl->info->selector,
841 data, ctrl->info->size);
b482d923 842 if (ret < 0)
04793dd0 843 goto out;
b482d923 844 v4l2_ctrl->maximum = mapping->get(mapping, UVC_GET_MAX, data);
c0efd232
LP
845 }
846 if (ctrl->info->flags & UVC_CONTROL_GET_RES) {
8e113595
LP
847 ret = uvc_query_ctrl(chain->dev, UVC_GET_RES, ctrl->entity->id,
848 chain->dev->intfnum, ctrl->info->selector,
849 data, ctrl->info->size);
b482d923 850 if (ret < 0)
04793dd0 851 goto out;
b482d923 852 v4l2_ctrl->step = mapping->get(mapping, UVC_GET_RES, data);
c0efd232
LP
853 }
854
04793dd0
LP
855 ret = 0;
856out:
857 kfree(data);
858 return ret;
c0efd232
LP
859}
860
861
862/* --------------------------------------------------------------------------
863 * Control transactions
864 *
865 * To make extended set operations as atomic as the hardware allows, controls
866 * are handled using begin/commit/rollback operations.
867 *
868 * At the beginning of a set request, uvc_ctrl_begin should be called to
869 * initialize the request. This function acquires the control lock.
870 *
871 * When setting a control, the new value is stored in the control data field
872 * at position UVC_CTRL_DATA_CURRENT. The control is then marked as dirty for
873 * later processing. If the UVC and V4L2 control sizes differ, the current
874 * value is loaded from the hardware before storing the new value in the data
875 * field.
876 *
877 * After processing all controls in the transaction, uvc_ctrl_commit or
878 * uvc_ctrl_rollback must be called to apply the pending changes to the
879 * hardware or revert them. When applying changes, all controls marked as
880 * dirty will be modified in the UVC device, and the dirty flag will be
881 * cleared. When reverting controls, the control data field
882 * UVC_CTRL_DATA_CURRENT is reverted to its previous value
883 * (UVC_CTRL_DATA_BACKUP) for all dirty controls. Both functions release the
884 * control lock.
885 */
8e113595 886int uvc_ctrl_begin(struct uvc_video_chain *chain)
c0efd232 887{
8e113595 888 return mutex_lock_interruptible(&chain->ctrl_mutex) ? -ERESTARTSYS : 0;
c0efd232
LP
889}
890
891static int uvc_ctrl_commit_entity(struct uvc_device *dev,
892 struct uvc_entity *entity, int rollback)
893{
894 struct uvc_control *ctrl;
895 unsigned int i;
896 int ret;
897
898 if (entity == NULL)
899 return 0;
900
901 for (i = 0; i < entity->ncontrols; ++i) {
902 ctrl = &entity->controls[i];
b1accfa1
LP
903 if (ctrl->info == NULL)
904 continue;
905
906 /* Reset the loaded flag for auto-update controls that were
907 * marked as loaded in uvc_ctrl_get/uvc_ctrl_set to prevent
908 * uvc_ctrl_get from using the cached value.
909 */
910 if (ctrl->info->flags & UVC_CONTROL_AUTO_UPDATE)
911 ctrl->loaded = 0;
912
913 if (!ctrl->dirty)
c0efd232
LP
914 continue;
915
916 if (!rollback)
b482d923 917 ret = uvc_query_ctrl(dev, UVC_SET_CUR, ctrl->entity->id,
c0efd232
LP
918 dev->intfnum, ctrl->info->selector,
919 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
920 ctrl->info->size);
921 else
922 ret = 0;
923
924 if (rollback || ret < 0)
925 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
926 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
927 ctrl->info->size);
928
c0efd232
LP
929 ctrl->dirty = 0;
930
931 if (ret < 0)
932 return ret;
933 }
934
935 return 0;
936}
937
8e113595 938int __uvc_ctrl_commit(struct uvc_video_chain *chain, int rollback)
c0efd232
LP
939{
940 struct uvc_entity *entity;
941 int ret = 0;
942
943 /* Find the control. */
6241d8ca 944 list_for_each_entry(entity, &chain->entities, chain) {
8e113595 945 ret = uvc_ctrl_commit_entity(chain->dev, entity, rollback);
c0efd232
LP
946 if (ret < 0)
947 goto done;
948 }
949
950done:
8e113595 951 mutex_unlock(&chain->ctrl_mutex);
c0efd232
LP
952 return ret;
953}
954
8e113595 955int uvc_ctrl_get(struct uvc_video_chain *chain,
c0efd232
LP
956 struct v4l2_ext_control *xctrl)
957{
958 struct uvc_control *ctrl;
959 struct uvc_control_mapping *mapping;
960 struct uvc_menu_info *menu;
961 unsigned int i;
962 int ret;
963
8e113595 964 ctrl = uvc_find_control(chain, xctrl->id, &mapping);
c0efd232
LP
965 if (ctrl == NULL || (ctrl->info->flags & UVC_CONTROL_GET_CUR) == 0)
966 return -EINVAL;
967
968 if (!ctrl->loaded) {
8e113595
LP
969 ret = uvc_query_ctrl(chain->dev, UVC_GET_CUR, ctrl->entity->id,
970 chain->dev->intfnum, ctrl->info->selector,
c0efd232
LP
971 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
972 ctrl->info->size);
973 if (ret < 0)
974 return ret;
975
b1accfa1 976 ctrl->loaded = 1;
c0efd232
LP
977 }
978
b482d923 979 xctrl->value = mapping->get(mapping, UVC_GET_CUR,
9768352a 980 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT));
c0efd232
LP
981
982 if (mapping->v4l2_type == V4L2_CTRL_TYPE_MENU) {
983 menu = mapping->menu_info;
984 for (i = 0; i < mapping->menu_count; ++i, ++menu) {
985 if (menu->value == xctrl->value) {
986 xctrl->value = i;
987 break;
988 }
989 }
990 }
991
992 return 0;
993}
994
8e113595 995int uvc_ctrl_set(struct uvc_video_chain *chain,
c0efd232
LP
996 struct v4l2_ext_control *xctrl)
997{
998 struct uvc_control *ctrl;
999 struct uvc_control_mapping *mapping;
1000 s32 value = xctrl->value;
1001 int ret;
1002
8e113595 1003 ctrl = uvc_find_control(chain, xctrl->id, &mapping);
c0efd232
LP
1004 if (ctrl == NULL || (ctrl->info->flags & UVC_CONTROL_SET_CUR) == 0)
1005 return -EINVAL;
1006
1007 if (mapping->v4l2_type == V4L2_CTRL_TYPE_MENU) {
1008 if (value < 0 || value >= mapping->menu_count)
1009 return -EINVAL;
1010 value = mapping->menu_info[value].value;
1011 }
1012
1013 if (!ctrl->loaded && (ctrl->info->size * 8) != mapping->size) {
1014 if ((ctrl->info->flags & UVC_CONTROL_GET_CUR) == 0) {
1015 memset(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1016 0, ctrl->info->size);
1017 } else {
8e113595
LP
1018 ret = uvc_query_ctrl(chain->dev, UVC_GET_CUR,
1019 ctrl->entity->id, chain->dev->intfnum,
c0efd232
LP
1020 ctrl->info->selector,
1021 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1022 ctrl->info->size);
1023 if (ret < 0)
1024 return ret;
1025 }
1026
b1accfa1 1027 ctrl->loaded = 1;
c0efd232
LP
1028 }
1029
1030 if (!ctrl->dirty) {
1031 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1032 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1033 ctrl->info->size);
1034 }
1035
9768352a
LP
1036 mapping->set(mapping, value,
1037 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT));
c0efd232
LP
1038
1039 ctrl->dirty = 1;
1040 ctrl->modified = 1;
1041 return 0;
1042}
1043
1044/* --------------------------------------------------------------------------
1045 * Dynamic controls
1046 */
1047
8e113595 1048int uvc_xu_ctrl_query(struct uvc_video_chain *chain,
c0efd232
LP
1049 struct uvc_xu_control *xctrl, int set)
1050{
1051 struct uvc_entity *entity;
1052 struct uvc_control *ctrl = NULL;
1053 unsigned int i, found = 0;
1054 __u8 *data;
1055 int ret;
1056
1057 /* Find the extension unit. */
6241d8ca
LP
1058 list_for_each_entry(entity, &chain->entities, chain) {
1059 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT &&
1060 entity->id == xctrl->unit)
c0efd232
LP
1061 break;
1062 }
1063
1064 if (entity->id != xctrl->unit) {
1065 uvc_trace(UVC_TRACE_CONTROL, "Extension unit %u not found.\n",
1066 xctrl->unit);
1067 return -EINVAL;
1068 }
1069
1070 /* Find the control. */
1071 for (i = 0; i < entity->ncontrols; ++i) {
1072 ctrl = &entity->controls[i];
1073 if (ctrl->info == NULL)
1074 continue;
1075
1076 if (ctrl->info->selector == xctrl->selector) {
1077 found = 1;
1078 break;
1079 }
1080 }
1081
1082 if (!found) {
36bd883e
LP
1083 uvc_trace(UVC_TRACE_CONTROL, "Control %pUl/%u not found.\n",
1084 entity->extension.guidExtensionCode, xctrl->selector);
c0efd232
LP
1085 return -EINVAL;
1086 }
1087
1088 /* Validate control data size. */
1089 if (ctrl->info->size != xctrl->size)
1090 return -EINVAL;
1091
1092 if ((set && !(ctrl->info->flags & UVC_CONTROL_SET_CUR)) ||
1093 (!set && !(ctrl->info->flags & UVC_CONTROL_GET_CUR)))
1094 return -EINVAL;
1095
8e113595 1096 if (mutex_lock_interruptible(&chain->ctrl_mutex))
c0efd232
LP
1097 return -ERESTARTSYS;
1098
1099 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1100 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1101 xctrl->size);
1102 data = uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT);
1103
1104 if (set && copy_from_user(data, xctrl->data, xctrl->size)) {
1105 ret = -EFAULT;
1106 goto out;
1107 }
1108
8e113595
LP
1109 ret = uvc_query_ctrl(chain->dev, set ? UVC_SET_CUR : UVC_GET_CUR,
1110 xctrl->unit, chain->dev->intfnum, xctrl->selector,
b482d923 1111 data, xctrl->size);
c0efd232
LP
1112 if (ret < 0)
1113 goto out;
1114
1115 if (!set && copy_to_user(xctrl->data, data, xctrl->size)) {
1116 ret = -EFAULT;
1117 goto out;
1118 }
1119
1120out:
1121 if (ret)
1122 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1123 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1124 xctrl->size);
1125
8e113595 1126 mutex_unlock(&chain->ctrl_mutex);
c0efd232
LP
1127 return ret;
1128}
1129
1130/* --------------------------------------------------------------------------
1131 * Suspend/resume
1132 */
1133
1134/*
1135 * Restore control values after resume, skipping controls that haven't been
1136 * changed.
1137 *
1138 * TODO
1139 * - Don't restore modified controls that are back to their default value.
1140 * - Handle restore order (Auto-Exposure Mode should be restored before
1141 * Exposure Time).
1142 */
1143int uvc_ctrl_resume_device(struct uvc_device *dev)
1144{
1145 struct uvc_control *ctrl;
1146 struct uvc_entity *entity;
1147 unsigned int i;
1148 int ret;
1149
1150 /* Walk the entities list and restore controls when possible. */
1151 list_for_each_entry(entity, &dev->entities, list) {
1152
1153 for (i = 0; i < entity->ncontrols; ++i) {
1154 ctrl = &entity->controls[i];
1155
1156 if (ctrl->info == NULL || !ctrl->modified ||
1157 (ctrl->info->flags & UVC_CONTROL_RESTORE) == 0)
1158 continue;
1159
36bd883e
LP
1160 printk(KERN_INFO "restoring control %pUl/%u/%u\n",
1161 ctrl->info->entity, ctrl->info->index,
1162 ctrl->info->selector);
c0efd232
LP
1163 ctrl->dirty = 1;
1164 }
1165
1166 ret = uvc_ctrl_commit_entity(dev, entity, 0);
1167 if (ret < 0)
1168 return ret;
1169 }
1170
1171 return 0;
1172}
1173
1174/* --------------------------------------------------------------------------
1175 * Control and mapping handling
1176 */
1177
1178static void uvc_ctrl_add_ctrl(struct uvc_device *dev,
1179 struct uvc_control_info *info)
1180{
1181 struct uvc_entity *entity;
1182 struct uvc_control *ctrl = NULL;
1183 int ret, found = 0;
1184 unsigned int i;
1185
1186 list_for_each_entry(entity, &dev->entities, list) {
1187 if (!uvc_entity_match_guid(entity, info->entity))
1188 continue;
1189
1190 for (i = 0; i < entity->ncontrols; ++i) {
1191 ctrl = &entity->controls[i];
1192 if (ctrl->index == info->index) {
1193 found = 1;
1194 break;
1195 }
1196 }
1197
1198 if (found)
1199 break;
1200 }
1201
1202 if (!found)
1203 return;
1204
b482d923 1205 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT) {
c0efd232
LP
1206 /* Check if the device control information and length match
1207 * the user supplied information.
1208 */
1209 __u32 flags;
1210 __le16 size;
1211 __u8 inf;
1212
b482d923
LP
1213 ret = uvc_query_ctrl(dev, UVC_GET_LEN, ctrl->entity->id,
1214 dev->intfnum, info->selector, (__u8 *)&size, 2);
1215 if (ret < 0) {
36bd883e
LP
1216 uvc_trace(UVC_TRACE_CONTROL,
1217 "GET_LEN failed on control %pUl/%u (%d).\n",
1218 info->entity, info->selector, ret);
c0efd232
LP
1219 return;
1220 }
1221
1222 if (info->size != le16_to_cpu(size)) {
36bd883e
LP
1223 uvc_trace(UVC_TRACE_CONTROL, "Control %pUl/%u size "
1224 "doesn't match user supplied value.\n",
1225 info->entity, info->selector);
c0efd232
LP
1226 return;
1227 }
1228
b482d923
LP
1229 ret = uvc_query_ctrl(dev, UVC_GET_INFO, ctrl->entity->id,
1230 dev->intfnum, info->selector, &inf, 1);
1231 if (ret < 0) {
36bd883e
LP
1232 uvc_trace(UVC_TRACE_CONTROL,
1233 "GET_INFO failed on control %pUl/%u (%d).\n",
1234 info->entity, info->selector, ret);
c0efd232
LP
1235 return;
1236 }
1237
1238 flags = info->flags;
1239 if (((flags & UVC_CONTROL_GET_CUR) && !(inf & (1 << 0))) ||
1240 ((flags & UVC_CONTROL_SET_CUR) && !(inf & (1 << 1)))) {
36bd883e
LP
1241 uvc_trace(UVC_TRACE_CONTROL, "Control %pUl/%u flags "
1242 "don't match supported operations.\n",
1243 info->entity, info->selector);
c0efd232
LP
1244 return;
1245 }
1246 }
1247
1248 ctrl->info = info;
1249 ctrl->data = kmalloc(ctrl->info->size * UVC_CTRL_NDATA, GFP_KERNEL);
36bd883e
LP
1250 uvc_trace(UVC_TRACE_CONTROL, "Added control %pUl/%u to device %s "
1251 "entity %u\n", ctrl->info->entity, ctrl->info->selector,
1252 dev->udev->devpath, entity->id);
c0efd232
LP
1253}
1254
1255/*
1256 * Add an item to the UVC control information list, and instantiate a control
1257 * structure for each device that supports the control.
1258 */
1259int uvc_ctrl_add_info(struct uvc_control_info *info)
1260{
1261 struct uvc_control_info *ctrl;
1262 struct uvc_device *dev;
1263 int ret = 0;
1264
1265 /* Find matching controls by walking the devices, entities and
1266 * controls list.
1267 */
1268 mutex_lock(&uvc_driver.ctrl_mutex);
1269
1270 /* First check if the list contains a control matching the new one.
1271 * Bail out if it does.
1272 */
1273 list_for_each_entry(ctrl, &uvc_driver.controls, list) {
1274 if (memcmp(ctrl->entity, info->entity, 16))
1275 continue;
1276
1277 if (ctrl->selector == info->selector) {
36bd883e
LP
1278 uvc_trace(UVC_TRACE_CONTROL,
1279 "Control %pUl/%u is already defined.\n",
1280 info->entity, info->selector);
c0efd232
LP
1281 ret = -EEXIST;
1282 goto end;
1283 }
1284 if (ctrl->index == info->index) {
36bd883e
LP
1285 uvc_trace(UVC_TRACE_CONTROL,
1286 "Control %pUl/%u would overwrite index %d.\n",
1287 info->entity, info->selector, info->index);
c0efd232
LP
1288 ret = -EEXIST;
1289 goto end;
1290 }
1291 }
1292
1293 list_for_each_entry(dev, &uvc_driver.devices, list)
1294 uvc_ctrl_add_ctrl(dev, info);
1295
1296 INIT_LIST_HEAD(&info->mappings);
1297 list_add_tail(&info->list, &uvc_driver.controls);
1298end:
1299 mutex_unlock(&uvc_driver.ctrl_mutex);
1300 return ret;
1301}
1302
1303int uvc_ctrl_add_mapping(struct uvc_control_mapping *mapping)
1304{
1305 struct uvc_control_info *info;
1306 struct uvc_control_mapping *map;
1307 int ret = -EINVAL;
1308
9768352a
LP
1309 if (mapping->get == NULL)
1310 mapping->get = uvc_get_le_value;
1311 if (mapping->set == NULL)
1312 mapping->set = uvc_set_le_value;
1313
c0efd232
LP
1314 if (mapping->id & ~V4L2_CTRL_ID_MASK) {
1315 uvc_trace(UVC_TRACE_CONTROL, "Can't add mapping '%s' with "
1316 "invalid control id 0x%08x\n", mapping->name,
1317 mapping->id);
1318 return -EINVAL;
1319 }
1320
1321 mutex_lock(&uvc_driver.ctrl_mutex);
1322 list_for_each_entry(info, &uvc_driver.controls, list) {
1323 if (memcmp(info->entity, mapping->entity, 16) ||
1324 info->selector != mapping->selector)
1325 continue;
1326
1327 if (info->size * 8 < mapping->size + mapping->offset) {
36bd883e
LP
1328 uvc_trace(UVC_TRACE_CONTROL,
1329 "Mapping '%s' would overflow control %pUl/%u\n",
1330 mapping->name, info->entity, info->selector);
c0efd232
LP
1331 ret = -EOVERFLOW;
1332 goto end;
1333 }
1334
1335 /* Check if the list contains a mapping matching the new one.
1336 * Bail out if it does.
1337 */
1338 list_for_each_entry(map, &info->mappings, list) {
1339 if (map->id == mapping->id) {
1340 uvc_trace(UVC_TRACE_CONTROL, "Mapping '%s' is "
1341 "already defined.\n", mapping->name);
1342 ret = -EEXIST;
1343 goto end;
1344 }
1345 }
1346
1347 mapping->ctrl = info;
1348 list_add_tail(&mapping->list, &info->mappings);
36bd883e
LP
1349 uvc_trace(UVC_TRACE_CONTROL,
1350 "Adding mapping %s to control %pUl/%u.\n",
1351 mapping->name, info->entity, info->selector);
c0efd232
LP
1352
1353 ret = 0;
1354 break;
1355 }
1356end:
1357 mutex_unlock(&uvc_driver.ctrl_mutex);
1358 return ret;
1359}
1360
2bdd29cf 1361/*
d732c44c
LP
1362 * Prune an entity of its bogus controls using a blacklist. Bogus controls
1363 * are currently the ones that crash the camera or unconditionally return an
1364 * error when queried.
2bdd29cf
LP
1365 */
1366static void
d732c44c 1367uvc_ctrl_prune_entity(struct uvc_device *dev, struct uvc_entity *entity)
2bdd29cf
LP
1368{
1369 static const struct {
d732c44c
LP
1370 struct usb_device_id id;
1371 u8 index;
2bdd29cf 1372 } blacklist[] = {
d732c44c
LP
1373 { { USB_DEVICE(0x1c4f, 0x3000) }, 6 }, /* WB Temperature */
1374 { { USB_DEVICE(0x5986, 0x0241) }, 2 }, /* Hue */
2bdd29cf
LP
1375 };
1376
1377 u8 *controls;
1378 unsigned int size;
1379 unsigned int i;
1380
b482d923 1381 if (UVC_ENTITY_TYPE(entity) != UVC_VC_PROCESSING_UNIT)
2bdd29cf
LP
1382 return;
1383
1384 controls = entity->processing.bmControls;
1385 size = entity->processing.bControlSize;
1386
1387 for (i = 0; i < ARRAY_SIZE(blacklist); ++i) {
385097e0 1388 if (!usb_match_one_id(dev->intf, &blacklist[i].id))
2bdd29cf
LP
1389 continue;
1390
d732c44c
LP
1391 if (blacklist[i].index >= 8 * size ||
1392 !uvc_test_bit(controls, blacklist[i].index))
2bdd29cf
LP
1393 continue;
1394
d732c44c
LP
1395 uvc_trace(UVC_TRACE_CONTROL, "%u/%u control is black listed, "
1396 "removing it.\n", entity->id, blacklist[i].index);
2bdd29cf 1397
d732c44c 1398 uvc_clear_bit(controls, blacklist[i].index);
2bdd29cf
LP
1399 }
1400}
1401
c0efd232
LP
1402/*
1403 * Initialize device controls.
1404 */
1405int uvc_ctrl_init_device(struct uvc_device *dev)
1406{
1407 struct uvc_control_info *info;
1408 struct uvc_control *ctrl;
1409 struct uvc_entity *entity;
1410 unsigned int i;
1411
1412 /* Walk the entities list and instantiate controls */
1413 list_for_each_entry(entity, &dev->entities, list) {
1414 unsigned int bControlSize = 0, ncontrols = 0;
1415 __u8 *bmControls = NULL;
1416
b482d923 1417 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT) {
c0efd232
LP
1418 bmControls = entity->extension.bmControls;
1419 bControlSize = entity->extension.bControlSize;
b482d923 1420 } else if (UVC_ENTITY_TYPE(entity) == UVC_VC_PROCESSING_UNIT) {
c0efd232
LP
1421 bmControls = entity->processing.bmControls;
1422 bControlSize = entity->processing.bControlSize;
b482d923 1423 } else if (UVC_ENTITY_TYPE(entity) == UVC_ITT_CAMERA) {
c0efd232
LP
1424 bmControls = entity->camera.bmControls;
1425 bControlSize = entity->camera.bControlSize;
1426 }
1427
d732c44c 1428 uvc_ctrl_prune_entity(dev, entity);
2bdd29cf 1429
c0efd232
LP
1430 for (i = 0; i < bControlSize; ++i)
1431 ncontrols += hweight8(bmControls[i]);
1432
1433 if (ncontrols == 0)
1434 continue;
1435
1436 entity->controls = kzalloc(ncontrols*sizeof *ctrl, GFP_KERNEL);
1437 if (entity->controls == NULL)
1438 return -ENOMEM;
1439
1440 entity->ncontrols = ncontrols;
1441
1442 ctrl = entity->controls;
1443 for (i = 0; i < bControlSize * 8; ++i) {
2bdd29cf 1444 if (uvc_test_bit(bmControls, i) == 0)
c0efd232
LP
1445 continue;
1446
1447 ctrl->entity = entity;
1448 ctrl->index = i;
1449 ctrl++;
1450 }
1451 }
1452
1453 /* Walk the controls info list and associate them with the device
1454 * controls, then add the device to the global device list. This has
1455 * to be done while holding the controls lock, to make sure
1456 * uvc_ctrl_add_info() will not get called in-between.
1457 */
1458 mutex_lock(&uvc_driver.ctrl_mutex);
1459 list_for_each_entry(info, &uvc_driver.controls, list)
1460 uvc_ctrl_add_ctrl(dev, info);
1461
1462 list_add_tail(&dev->list, &uvc_driver.devices);
1463 mutex_unlock(&uvc_driver.ctrl_mutex);
1464
1465 return 0;
1466}
1467
1468/*
1469 * Cleanup device controls.
1470 */
1471void uvc_ctrl_cleanup_device(struct uvc_device *dev)
1472{
1473 struct uvc_entity *entity;
1474 unsigned int i;
1475
1476 /* Remove the device from the global devices list */
1477 mutex_lock(&uvc_driver.ctrl_mutex);
1478 if (dev->list.next != NULL)
1479 list_del(&dev->list);
1480 mutex_unlock(&uvc_driver.ctrl_mutex);
1481
1482 list_for_each_entry(entity, &dev->entities, list) {
1483 for (i = 0; i < entity->ncontrols; ++i)
1484 kfree(entity->controls[i].data);
1485
1486 kfree(entity->controls);
1487 }
1488}
1489
1490void uvc_ctrl_init(void)
1491{
1492 struct uvc_control_info *ctrl = uvc_ctrls;
1493 struct uvc_control_info *cend = ctrl + ARRAY_SIZE(uvc_ctrls);
1494 struct uvc_control_mapping *mapping = uvc_ctrl_mappings;
1495 struct uvc_control_mapping *mend =
1496 mapping + ARRAY_SIZE(uvc_ctrl_mappings);
1497
1498 for (; ctrl < cend; ++ctrl)
1499 uvc_ctrl_add_info(ctrl);
1500
1501 for (; mapping < mend; ++mapping)
1502 uvc_ctrl_add_mapping(mapping);
1503}
f87086e3 1504