blob: 1b89735e62fdb5d2bdd94c1dd301b755963afc8a [file] [log] [blame]
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001/*
2 * uvc_ctrl.c -- USB Video Class driver - Controls
3 *
Laurent Pinchart2c2d2642009-01-03 19:12:40 -03004 * Copyright (C) 2005-2009
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005 * 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>
Laurent Pinchartc0efd232008-06-30 15:04:50 -030015#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/* ------------------------------------------------------------------------
Laurent Pinchart2c2d2642009-01-03 19:12:40 -030031 * Controls
Laurent Pinchartc0efd232008-06-30 15:04:50 -030032 */
33
34static struct uvc_control_info uvc_ctrls[] = {
35 {
36 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030037 .selector = UVC_PU_BRIGHTNESS_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030038 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -030045 .selector = UVC_PU_CONTRAST_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030046 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -030053 .selector = UVC_PU_HUE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030054 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -030061 .selector = UVC_PU_SATURATION_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030062 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -030069 .selector = UVC_PU_SHARPNESS_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030070 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -030077 .selector = UVC_PU_GAMMA_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030078 .index = 5,
79 .size = 2,
80 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
81 | UVC_CONTROL_RESTORE,
82 },
83 {
84 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030085 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -030086 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -030093 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -030094 .index = 7,
95 .size = 4,
96 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
97 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
98 },
99 {
100 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300101 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300102 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300109 .selector = UVC_PU_GAIN_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300110 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300117 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300118 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300125 .selector = UVC_PU_HUE_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300126 .index = 11,
127 .size = 1,
128 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
129 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
130 },
131 {
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300132 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300133 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_AUTO_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300134 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300141 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_AUTO_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300142 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300149 .selector = UVC_PU_DIGITAL_MULTIPLIER_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300150 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300157 .selector = UVC_PU_DIGITAL_MULTIPLIER_LIMIT_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300158 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300165 .selector = UVC_PU_ANALOG_VIDEO_STANDARD_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300166 .index = 16,
167 .size = 1,
168 .flags = UVC_CONTROL_GET_CUR,
169 },
170 {
171 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300172 .selector = UVC_PU_ANALOG_LOCK_STATUS_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300173 .index = 17,
174 .size = 1,
175 .flags = UVC_CONTROL_GET_CUR,
176 },
177 {
178 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300179 .selector = UVC_CT_SCANNING_MODE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300180 .index = 0,
181 .size = 1,
182 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
183 | UVC_CONTROL_RESTORE,
184 },
185 {
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300186 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300187 .selector = UVC_CT_AE_MODE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300188 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300196 .selector = UVC_CT_AE_PRIORITY_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300197 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300204 .selector = UVC_CT_EXPOSURE_TIME_ABSOLUTE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300205 .index = 3,
206 .size = 4,
207 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
208 | UVC_CONTROL_RESTORE,
209 },
210 {
211 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300212 .selector = UVC_CT_EXPOSURE_TIME_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300213 .index = 4,
214 .size = 1,
215 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
216 | UVC_CONTROL_RESTORE,
217 },
218 {
219 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300220 .selector = UVC_CT_FOCUS_ABSOLUTE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300221 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300228 .selector = UVC_CT_FOCUS_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300229 .index = 6,
230 .size = 2,
231 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
232 | UVC_CONTROL_AUTO_UPDATE,
233 },
234 {
235 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300236 .selector = UVC_CT_IRIS_ABSOLUTE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300237 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300244 .selector = UVC_CT_IRIS_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300245 .index = 8,
246 .size = 1,
247 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
248 | UVC_CONTROL_AUTO_UPDATE,
249 },
250 {
251 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300252 .selector = UVC_CT_ZOOM_ABSOLUTE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300253 .index = 9,
254 .size = 2,
255 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
256 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
257 },
258 {
259 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300260 .selector = UVC_CT_ZOOM_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300261 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300268 .selector = UVC_CT_PANTILT_ABSOLUTE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300269 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300276 .selector = UVC_CT_PANTILT_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300277 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300284 .selector = UVC_CT_ROLL_ABSOLUTE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300285 .index = 13,
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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300292 .selector = UVC_CT_ROLL_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300293 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300300 .selector = UVC_CT_FOCUS_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300301 .index = 17,
302 .size = 1,
303 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
304 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
305 },
306 {
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300307 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300308 .selector = UVC_CT_PRIVACY_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300309 .index = 18,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300310 .size = 1,
311 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300312 | 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[] = {
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300323 { 2, "Auto Mode" },
Laurent Pinchart90ac5ea2008-07-26 11:42:29 -0300324 { 1, "Manual Mode" },
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300325 { 4, "Shutter Priority Mode" },
326 { 8, "Aperture Priority Mode" },
327};
328
Laurent Pinchart97683522008-12-16 06:46:32 -0300329static __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) {
Laurent Pinchartb482d922009-06-26 11:39:42 -0300335 case UVC_GET_CUR:
Laurent Pinchart97683522008-12-16 06:46:32 -0300336 return (zoom == 0) ? 0 : (zoom > 0 ? data[2] : -data[2]);
337
Laurent Pinchartb482d922009-06-26 11:39:42 -0300338 case UVC_GET_MIN:
339 case UVC_GET_MAX:
340 case UVC_GET_RES:
341 case UVC_GET_DEF:
Laurent Pinchart97683522008-12-16 06:46:32 -0300342 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;
Laurent Pinchart2e896132009-11-04 13:11:10 -0300351 data[2] = min((int)abs(value), 0xff);
Laurent Pinchart97683522008-12-16 06:46:32 -0300352}
353
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300354static struct uvc_control_mapping uvc_ctrl_mappings[] = {
355 {
356 .id = V4L2_CID_BRIGHTNESS,
357 .name = "Brightness",
358 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300359 .selector = UVC_PU_BRIGHTNESS_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300360 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300369 .selector = UVC_PU_CONTRAST_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300370 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300379 .selector = UVC_PU_HUE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300380 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300389 .selector = UVC_PU_SATURATION_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300390 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300399 .selector = UVC_PU_SHARPNESS_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300400 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300409 .selector = UVC_PU_GAMMA_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300410 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300419 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300420 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300429 .selector = UVC_PU_GAIN_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300430 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300439 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300440 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300451 .selector = UVC_PU_HUE_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300452 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300461 .selector = UVC_CT_AE_MODE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300462 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300473 .selector = UVC_CT_AE_PRIORITY_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300474 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300483 .selector = UVC_CT_EXPOSURE_TIME_ABSOLUTE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300484 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300493 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300494 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300503 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300504 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300513 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300514 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300523 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300524 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300533 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300534 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300543 .selector = UVC_CT_FOCUS_ABSOLUTE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300544 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300553 .selector = UVC_CT_FOCUS_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300554 .size = 1,
555 .offset = 0,
556 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
557 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
558 },
Laurent Pinchart6df126f2008-12-16 06:44:11 -0300559 {
Laurent Pinchart97683522008-12-16 06:46:32 -0300560 .id = V4L2_CID_ZOOM_ABSOLUTE,
561 .name = "Zoom, Absolute",
562 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300563 .selector = UVC_CT_ZOOM_ABSOLUTE_CONTROL,
Laurent Pinchart97683522008-12-16 06:46:32 -0300564 .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,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300573 .selector = UVC_CT_ZOOM_RELATIVE_CONTROL,
Laurent Pinchart97683522008-12-16 06:46:32 -0300574 .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 },
581 {
Laurent Pinchart6df126f2008-12-16 06:44:11 -0300582 .id = V4L2_CID_PRIVACY,
583 .name = "Privacy",
584 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300585 .selector = UVC_CT_PRIVACY_CONTROL,
Laurent Pinchart6df126f2008-12-16 06:44:11 -0300586 .size = 1,
587 .offset = 0,
588 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
589 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
590 },
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300591};
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
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -0300602static inline int uvc_test_bit(const __u8 *data, int bit)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300603{
604 return (data[bit >> 3] >> (bit & 7)) & 1;
605}
606
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -0300607static inline void uvc_clear_bit(__u8 *data, int bit)
608{
609 data[bit >> 3] &= ~(1 << (bit & 7));
610}
611
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300612/* 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 */
Laurent Pinchart97683522008-12-16 06:46:32 -0300617static __s32 uvc_get_le_value(struct uvc_control_mapping *mapping,
618 __u8 query, const __u8 *data)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300619{
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
Laurent Pinchart2c2d2642009-01-03 19:12:40 -0300637 /* Sign-extend the value if needed. */
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300638 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 */
Laurent Pinchart97683522008-12-16 06:46:32 -0300647static void uvc_set_le_value(struct uvc_control_mapping *mapping,
648 __s32 value, __u8 *data)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300649{
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)) {
Laurent Pinchartb482d922009-06-26 11:39:42 -0300678 case UVC_ITT_CAMERA:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300679 return memcmp(uvc_camera_guid, guid, 16) == 0;
680
Laurent Pinchartb482d922009-06-26 11:39:42 -0300681 case UVC_ITT_MEDIA_TRANSPORT_INPUT:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300682 return memcmp(uvc_media_transport_input_guid, guid, 16) == 0;
683
Laurent Pinchartb482d922009-06-26 11:39:42 -0300684 case UVC_VC_PROCESSING_UNIT:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300685 return memcmp(uvc_processing_guid, guid, 16) == 0;
686
Laurent Pinchartb482d922009-06-26 11:39:42 -0300687 case UVC_VC_EXTENSION_UNIT:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300688 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
Laurent Pinchart8e113592009-07-01 20:24:47 -0300732struct uvc_control *uvc_find_control(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300733 __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. */
Laurent Pinchart8e113592009-07-01 20:24:47 -0300745 __uvc_find_control(chain->processing, v4l2_id, mapping, &ctrl, next);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300746 if (ctrl && !next)
747 return ctrl;
748
Laurent Pinchart8e113592009-07-01 20:24:47 -0300749 list_for_each_entry(entity, &chain->iterms, chain) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300750 __uvc_find_control(entity, v4l2_id, mapping, &ctrl, next);
751 if (ctrl && !next)
752 return ctrl;
753 }
754
Laurent Pinchart8e113592009-07-01 20:24:47 -0300755 list_for_each_entry(entity, &chain->extensions, chain) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300756 __uvc_find_control(entity, v4l2_id, mapping, &ctrl, next);
757 if (ctrl && !next)
758 return ctrl;
759 }
760
761 if (ctrl == NULL && !next)
762 uvc_trace(UVC_TRACE_CONTROL, "Control 0x%08x not found.\n",
763 v4l2_id);
764
765 return ctrl;
766}
767
Laurent Pinchart8e113592009-07-01 20:24:47 -0300768int uvc_query_v4l2_ctrl(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300769 struct v4l2_queryctrl *v4l2_ctrl)
770{
771 struct uvc_control *ctrl;
772 struct uvc_control_mapping *mapping;
773 struct uvc_menu_info *menu;
774 unsigned int i;
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300775 __u8 *data;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300776 int ret;
777
Laurent Pinchart8e113592009-07-01 20:24:47 -0300778 ctrl = uvc_find_control(chain, v4l2_ctrl->id, &mapping);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300779 if (ctrl == NULL)
780 return -EINVAL;
781
Ralph Loaderfe6c7002008-09-22 21:06:48 -0300782 data = kmalloc(ctrl->info->size, GFP_KERNEL);
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300783 if (data == NULL)
784 return -ENOMEM;
785
Laurent Pinchart54812c72008-07-17 07:37:37 -0300786 memset(v4l2_ctrl, 0, sizeof *v4l2_ctrl);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300787 v4l2_ctrl->id = mapping->id;
788 v4l2_ctrl->type = mapping->v4l2_type;
Laurent Pinchartd0ebf302009-01-08 14:05:11 -0300789 strlcpy(v4l2_ctrl->name, mapping->name, sizeof v4l2_ctrl->name);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300790 v4l2_ctrl->flags = 0;
791
792 if (!(ctrl->info->flags & UVC_CONTROL_SET_CUR))
793 v4l2_ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;
794
795 if (ctrl->info->flags & UVC_CONTROL_GET_DEF) {
Laurent Pinchart8e113592009-07-01 20:24:47 -0300796 ret = uvc_query_ctrl(chain->dev, UVC_GET_DEF, ctrl->entity->id,
797 chain->dev->intfnum, ctrl->info->selector,
798 data, ctrl->info->size);
Laurent Pinchartb482d922009-06-26 11:39:42 -0300799 if (ret < 0)
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300800 goto out;
Laurent Pinchartb482d922009-06-26 11:39:42 -0300801 v4l2_ctrl->default_value =
802 mapping->get(mapping, UVC_GET_DEF, data);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300803 }
804
Laurent Pinchart54812c72008-07-17 07:37:37 -0300805 switch (mapping->v4l2_type) {
806 case V4L2_CTRL_TYPE_MENU:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300807 v4l2_ctrl->minimum = 0;
808 v4l2_ctrl->maximum = mapping->menu_count - 1;
809 v4l2_ctrl->step = 1;
810
811 menu = mapping->menu_info;
812 for (i = 0; i < mapping->menu_count; ++i, ++menu) {
813 if (menu->value == v4l2_ctrl->default_value) {
814 v4l2_ctrl->default_value = i;
815 break;
816 }
817 }
818
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300819 ret = 0;
820 goto out;
Laurent Pinchart54812c72008-07-17 07:37:37 -0300821
822 case V4L2_CTRL_TYPE_BOOLEAN:
823 v4l2_ctrl->minimum = 0;
824 v4l2_ctrl->maximum = 1;
825 v4l2_ctrl->step = 1;
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300826 ret = 0;
827 goto out;
Laurent Pinchart54812c72008-07-17 07:37:37 -0300828
829 default:
830 break;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300831 }
832
833 if (ctrl->info->flags & UVC_CONTROL_GET_MIN) {
Laurent Pinchart8e113592009-07-01 20:24:47 -0300834 ret = uvc_query_ctrl(chain->dev, UVC_GET_MIN, ctrl->entity->id,
835 chain->dev->intfnum, ctrl->info->selector,
836 data, ctrl->info->size);
Laurent Pinchartb482d922009-06-26 11:39:42 -0300837 if (ret < 0)
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300838 goto out;
Laurent Pinchartb482d922009-06-26 11:39:42 -0300839 v4l2_ctrl->minimum = mapping->get(mapping, UVC_GET_MIN, data);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300840 }
841 if (ctrl->info->flags & UVC_CONTROL_GET_MAX) {
Laurent Pinchart8e113592009-07-01 20:24:47 -0300842 ret = uvc_query_ctrl(chain->dev, UVC_GET_MAX, ctrl->entity->id,
843 chain->dev->intfnum, ctrl->info->selector,
844 data, ctrl->info->size);
Laurent Pinchartb482d922009-06-26 11:39:42 -0300845 if (ret < 0)
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300846 goto out;
Laurent Pinchartb482d922009-06-26 11:39:42 -0300847 v4l2_ctrl->maximum = mapping->get(mapping, UVC_GET_MAX, data);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300848 }
849 if (ctrl->info->flags & UVC_CONTROL_GET_RES) {
Laurent Pinchart8e113592009-07-01 20:24:47 -0300850 ret = uvc_query_ctrl(chain->dev, UVC_GET_RES, ctrl->entity->id,
851 chain->dev->intfnum, ctrl->info->selector,
852 data, ctrl->info->size);
Laurent Pinchartb482d922009-06-26 11:39:42 -0300853 if (ret < 0)
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300854 goto out;
Laurent Pinchartb482d922009-06-26 11:39:42 -0300855 v4l2_ctrl->step = mapping->get(mapping, UVC_GET_RES, data);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300856 }
857
Laurent Pinchart04793dd2008-07-31 17:11:12 -0300858 ret = 0;
859out:
860 kfree(data);
861 return ret;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300862}
863
864
865/* --------------------------------------------------------------------------
866 * Control transactions
867 *
868 * To make extended set operations as atomic as the hardware allows, controls
869 * are handled using begin/commit/rollback operations.
870 *
871 * At the beginning of a set request, uvc_ctrl_begin should be called to
872 * initialize the request. This function acquires the control lock.
873 *
874 * When setting a control, the new value is stored in the control data field
875 * at position UVC_CTRL_DATA_CURRENT. The control is then marked as dirty for
876 * later processing. If the UVC and V4L2 control sizes differ, the current
877 * value is loaded from the hardware before storing the new value in the data
878 * field.
879 *
880 * After processing all controls in the transaction, uvc_ctrl_commit or
881 * uvc_ctrl_rollback must be called to apply the pending changes to the
882 * hardware or revert them. When applying changes, all controls marked as
883 * dirty will be modified in the UVC device, and the dirty flag will be
884 * cleared. When reverting controls, the control data field
885 * UVC_CTRL_DATA_CURRENT is reverted to its previous value
886 * (UVC_CTRL_DATA_BACKUP) for all dirty controls. Both functions release the
887 * control lock.
888 */
Laurent Pinchart8e113592009-07-01 20:24:47 -0300889int uvc_ctrl_begin(struct uvc_video_chain *chain)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300890{
Laurent Pinchart8e113592009-07-01 20:24:47 -0300891 return mutex_lock_interruptible(&chain->ctrl_mutex) ? -ERESTARTSYS : 0;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300892}
893
894static int uvc_ctrl_commit_entity(struct uvc_device *dev,
895 struct uvc_entity *entity, int rollback)
896{
897 struct uvc_control *ctrl;
898 unsigned int i;
899 int ret;
900
901 if (entity == NULL)
902 return 0;
903
904 for (i = 0; i < entity->ncontrols; ++i) {
905 ctrl = &entity->controls[i];
Laurent Pinchartb1accfa2008-09-27 20:54:02 -0300906 if (ctrl->info == NULL)
907 continue;
908
909 /* Reset the loaded flag for auto-update controls that were
910 * marked as loaded in uvc_ctrl_get/uvc_ctrl_set to prevent
911 * uvc_ctrl_get from using the cached value.
912 */
913 if (ctrl->info->flags & UVC_CONTROL_AUTO_UPDATE)
914 ctrl->loaded = 0;
915
916 if (!ctrl->dirty)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300917 continue;
918
919 if (!rollback)
Laurent Pinchartb482d922009-06-26 11:39:42 -0300920 ret = uvc_query_ctrl(dev, UVC_SET_CUR, ctrl->entity->id,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300921 dev->intfnum, ctrl->info->selector,
922 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
923 ctrl->info->size);
924 else
925 ret = 0;
926
927 if (rollback || ret < 0)
928 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
929 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
930 ctrl->info->size);
931
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300932 ctrl->dirty = 0;
933
934 if (ret < 0)
935 return ret;
936 }
937
938 return 0;
939}
940
Laurent Pinchart8e113592009-07-01 20:24:47 -0300941int __uvc_ctrl_commit(struct uvc_video_chain *chain, int rollback)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300942{
943 struct uvc_entity *entity;
944 int ret = 0;
945
946 /* Find the control. */
Laurent Pinchart8e113592009-07-01 20:24:47 -0300947 ret = uvc_ctrl_commit_entity(chain->dev, chain->processing, rollback);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300948 if (ret < 0)
949 goto done;
950
Laurent Pinchart8e113592009-07-01 20:24:47 -0300951 list_for_each_entry(entity, &chain->iterms, chain) {
952 ret = uvc_ctrl_commit_entity(chain->dev, entity, rollback);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300953 if (ret < 0)
954 goto done;
955 }
956
Laurent Pinchart8e113592009-07-01 20:24:47 -0300957 list_for_each_entry(entity, &chain->extensions, chain) {
958 ret = uvc_ctrl_commit_entity(chain->dev, entity, rollback);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300959 if (ret < 0)
960 goto done;
961 }
962
963done:
Laurent Pinchart8e113592009-07-01 20:24:47 -0300964 mutex_unlock(&chain->ctrl_mutex);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300965 return ret;
966}
967
Laurent Pinchart8e113592009-07-01 20:24:47 -0300968int uvc_ctrl_get(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300969 struct v4l2_ext_control *xctrl)
970{
971 struct uvc_control *ctrl;
972 struct uvc_control_mapping *mapping;
973 struct uvc_menu_info *menu;
974 unsigned int i;
975 int ret;
976
Laurent Pinchart8e113592009-07-01 20:24:47 -0300977 ctrl = uvc_find_control(chain, xctrl->id, &mapping);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300978 if (ctrl == NULL || (ctrl->info->flags & UVC_CONTROL_GET_CUR) == 0)
979 return -EINVAL;
980
981 if (!ctrl->loaded) {
Laurent Pinchart8e113592009-07-01 20:24:47 -0300982 ret = uvc_query_ctrl(chain->dev, UVC_GET_CUR, ctrl->entity->id,
983 chain->dev->intfnum, ctrl->info->selector,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300984 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
985 ctrl->info->size);
986 if (ret < 0)
987 return ret;
988
Laurent Pinchartb1accfa2008-09-27 20:54:02 -0300989 ctrl->loaded = 1;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300990 }
991
Laurent Pinchartb482d922009-06-26 11:39:42 -0300992 xctrl->value = mapping->get(mapping, UVC_GET_CUR,
Laurent Pinchart97683522008-12-16 06:46:32 -0300993 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT));
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300994
995 if (mapping->v4l2_type == V4L2_CTRL_TYPE_MENU) {
996 menu = mapping->menu_info;
997 for (i = 0; i < mapping->menu_count; ++i, ++menu) {
998 if (menu->value == xctrl->value) {
999 xctrl->value = i;
1000 break;
1001 }
1002 }
1003 }
1004
1005 return 0;
1006}
1007
Laurent Pinchart8e113592009-07-01 20:24:47 -03001008int uvc_ctrl_set(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001009 struct v4l2_ext_control *xctrl)
1010{
1011 struct uvc_control *ctrl;
1012 struct uvc_control_mapping *mapping;
1013 s32 value = xctrl->value;
1014 int ret;
1015
Laurent Pinchart8e113592009-07-01 20:24:47 -03001016 ctrl = uvc_find_control(chain, xctrl->id, &mapping);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001017 if (ctrl == NULL || (ctrl->info->flags & UVC_CONTROL_SET_CUR) == 0)
1018 return -EINVAL;
1019
1020 if (mapping->v4l2_type == V4L2_CTRL_TYPE_MENU) {
1021 if (value < 0 || value >= mapping->menu_count)
1022 return -EINVAL;
1023 value = mapping->menu_info[value].value;
1024 }
1025
1026 if (!ctrl->loaded && (ctrl->info->size * 8) != mapping->size) {
1027 if ((ctrl->info->flags & UVC_CONTROL_GET_CUR) == 0) {
1028 memset(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1029 0, ctrl->info->size);
1030 } else {
Laurent Pinchart8e113592009-07-01 20:24:47 -03001031 ret = uvc_query_ctrl(chain->dev, UVC_GET_CUR,
1032 ctrl->entity->id, chain->dev->intfnum,
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001033 ctrl->info->selector,
1034 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1035 ctrl->info->size);
1036 if (ret < 0)
1037 return ret;
1038 }
1039
Laurent Pinchartb1accfa2008-09-27 20:54:02 -03001040 ctrl->loaded = 1;
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001041 }
1042
1043 if (!ctrl->dirty) {
1044 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1045 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1046 ctrl->info->size);
1047 }
1048
Laurent Pinchart97683522008-12-16 06:46:32 -03001049 mapping->set(mapping, value,
1050 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT));
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001051
1052 ctrl->dirty = 1;
1053 ctrl->modified = 1;
1054 return 0;
1055}
1056
1057/* --------------------------------------------------------------------------
1058 * Dynamic controls
1059 */
1060
Laurent Pinchart8e113592009-07-01 20:24:47 -03001061int uvc_xu_ctrl_query(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001062 struct uvc_xu_control *xctrl, int set)
1063{
1064 struct uvc_entity *entity;
1065 struct uvc_control *ctrl = NULL;
1066 unsigned int i, found = 0;
1067 __u8 *data;
1068 int ret;
1069
1070 /* Find the extension unit. */
Laurent Pinchart8e113592009-07-01 20:24:47 -03001071 list_for_each_entry(entity, &chain->extensions, chain) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001072 if (entity->id == xctrl->unit)
1073 break;
1074 }
1075
1076 if (entity->id != xctrl->unit) {
1077 uvc_trace(UVC_TRACE_CONTROL, "Extension unit %u not found.\n",
1078 xctrl->unit);
1079 return -EINVAL;
1080 }
1081
1082 /* Find the control. */
1083 for (i = 0; i < entity->ncontrols; ++i) {
1084 ctrl = &entity->controls[i];
1085 if (ctrl->info == NULL)
1086 continue;
1087
1088 if (ctrl->info->selector == xctrl->selector) {
1089 found = 1;
1090 break;
1091 }
1092 }
1093
1094 if (!found) {
1095 uvc_trace(UVC_TRACE_CONTROL,
1096 "Control " UVC_GUID_FORMAT "/%u not found.\n",
1097 UVC_GUID_ARGS(entity->extension.guidExtensionCode),
1098 xctrl->selector);
1099 return -EINVAL;
1100 }
1101
1102 /* Validate control data size. */
1103 if (ctrl->info->size != xctrl->size)
1104 return -EINVAL;
1105
1106 if ((set && !(ctrl->info->flags & UVC_CONTROL_SET_CUR)) ||
1107 (!set && !(ctrl->info->flags & UVC_CONTROL_GET_CUR)))
1108 return -EINVAL;
1109
Laurent Pinchart8e113592009-07-01 20:24:47 -03001110 if (mutex_lock_interruptible(&chain->ctrl_mutex))
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001111 return -ERESTARTSYS;
1112
1113 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1114 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1115 xctrl->size);
1116 data = uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT);
1117
1118 if (set && copy_from_user(data, xctrl->data, xctrl->size)) {
1119 ret = -EFAULT;
1120 goto out;
1121 }
1122
Laurent Pinchart8e113592009-07-01 20:24:47 -03001123 ret = uvc_query_ctrl(chain->dev, set ? UVC_SET_CUR : UVC_GET_CUR,
1124 xctrl->unit, chain->dev->intfnum, xctrl->selector,
Laurent Pinchartb482d922009-06-26 11:39:42 -03001125 data, xctrl->size);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001126 if (ret < 0)
1127 goto out;
1128
1129 if (!set && copy_to_user(xctrl->data, data, xctrl->size)) {
1130 ret = -EFAULT;
1131 goto out;
1132 }
1133
1134out:
1135 if (ret)
1136 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1137 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1138 xctrl->size);
1139
Laurent Pinchart8e113592009-07-01 20:24:47 -03001140 mutex_unlock(&chain->ctrl_mutex);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001141 return ret;
1142}
1143
1144/* --------------------------------------------------------------------------
1145 * Suspend/resume
1146 */
1147
1148/*
1149 * Restore control values after resume, skipping controls that haven't been
1150 * changed.
1151 *
1152 * TODO
1153 * - Don't restore modified controls that are back to their default value.
1154 * - Handle restore order (Auto-Exposure Mode should be restored before
1155 * Exposure Time).
1156 */
1157int uvc_ctrl_resume_device(struct uvc_device *dev)
1158{
1159 struct uvc_control *ctrl;
1160 struct uvc_entity *entity;
1161 unsigned int i;
1162 int ret;
1163
1164 /* Walk the entities list and restore controls when possible. */
1165 list_for_each_entry(entity, &dev->entities, list) {
1166
1167 for (i = 0; i < entity->ncontrols; ++i) {
1168 ctrl = &entity->controls[i];
1169
1170 if (ctrl->info == NULL || !ctrl->modified ||
1171 (ctrl->info->flags & UVC_CONTROL_RESTORE) == 0)
1172 continue;
1173
1174 printk(KERN_INFO "restoring control " UVC_GUID_FORMAT
1175 "/%u/%u\n", UVC_GUID_ARGS(ctrl->info->entity),
1176 ctrl->info->index, ctrl->info->selector);
1177 ctrl->dirty = 1;
1178 }
1179
1180 ret = uvc_ctrl_commit_entity(dev, entity, 0);
1181 if (ret < 0)
1182 return ret;
1183 }
1184
1185 return 0;
1186}
1187
1188/* --------------------------------------------------------------------------
1189 * Control and mapping handling
1190 */
1191
1192static void uvc_ctrl_add_ctrl(struct uvc_device *dev,
1193 struct uvc_control_info *info)
1194{
1195 struct uvc_entity *entity;
1196 struct uvc_control *ctrl = NULL;
1197 int ret, found = 0;
1198 unsigned int i;
1199
1200 list_for_each_entry(entity, &dev->entities, list) {
1201 if (!uvc_entity_match_guid(entity, info->entity))
1202 continue;
1203
1204 for (i = 0; i < entity->ncontrols; ++i) {
1205 ctrl = &entity->controls[i];
1206 if (ctrl->index == info->index) {
1207 found = 1;
1208 break;
1209 }
1210 }
1211
1212 if (found)
1213 break;
1214 }
1215
1216 if (!found)
1217 return;
1218
Laurent Pinchartb482d922009-06-26 11:39:42 -03001219 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001220 /* Check if the device control information and length match
1221 * the user supplied information.
1222 */
1223 __u32 flags;
1224 __le16 size;
1225 __u8 inf;
1226
Laurent Pinchartb482d922009-06-26 11:39:42 -03001227 ret = uvc_query_ctrl(dev, UVC_GET_LEN, ctrl->entity->id,
1228 dev->intfnum, info->selector, (__u8 *)&size, 2);
1229 if (ret < 0) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001230 uvc_trace(UVC_TRACE_CONTROL, "GET_LEN failed on "
1231 "control " UVC_GUID_FORMAT "/%u (%d).\n",
1232 UVC_GUID_ARGS(info->entity), info->selector,
1233 ret);
1234 return;
1235 }
1236
1237 if (info->size != le16_to_cpu(size)) {
1238 uvc_trace(UVC_TRACE_CONTROL, "Control " UVC_GUID_FORMAT
1239 "/%u size doesn't match user supplied "
1240 "value.\n", UVC_GUID_ARGS(info->entity),
1241 info->selector);
1242 return;
1243 }
1244
Laurent Pinchartb482d922009-06-26 11:39:42 -03001245 ret = uvc_query_ctrl(dev, UVC_GET_INFO, ctrl->entity->id,
1246 dev->intfnum, info->selector, &inf, 1);
1247 if (ret < 0) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001248 uvc_trace(UVC_TRACE_CONTROL, "GET_INFO failed on "
1249 "control " UVC_GUID_FORMAT "/%u (%d).\n",
1250 UVC_GUID_ARGS(info->entity), info->selector,
1251 ret);
1252 return;
1253 }
1254
1255 flags = info->flags;
1256 if (((flags & UVC_CONTROL_GET_CUR) && !(inf & (1 << 0))) ||
1257 ((flags & UVC_CONTROL_SET_CUR) && !(inf & (1 << 1)))) {
1258 uvc_trace(UVC_TRACE_CONTROL, "Control "
1259 UVC_GUID_FORMAT "/%u flags don't match "
1260 "supported operations.\n",
1261 UVC_GUID_ARGS(info->entity), info->selector);
1262 return;
1263 }
1264 }
1265
1266 ctrl->info = info;
1267 ctrl->data = kmalloc(ctrl->info->size * UVC_CTRL_NDATA, GFP_KERNEL);
1268 uvc_trace(UVC_TRACE_CONTROL, "Added control " UVC_GUID_FORMAT "/%u "
1269 "to device %s entity %u\n", UVC_GUID_ARGS(ctrl->info->entity),
1270 ctrl->info->selector, dev->udev->devpath, entity->id);
1271}
1272
1273/*
1274 * Add an item to the UVC control information list, and instantiate a control
1275 * structure for each device that supports the control.
1276 */
1277int uvc_ctrl_add_info(struct uvc_control_info *info)
1278{
1279 struct uvc_control_info *ctrl;
1280 struct uvc_device *dev;
1281 int ret = 0;
1282
1283 /* Find matching controls by walking the devices, entities and
1284 * controls list.
1285 */
1286 mutex_lock(&uvc_driver.ctrl_mutex);
1287
1288 /* First check if the list contains a control matching the new one.
1289 * Bail out if it does.
1290 */
1291 list_for_each_entry(ctrl, &uvc_driver.controls, list) {
1292 if (memcmp(ctrl->entity, info->entity, 16))
1293 continue;
1294
1295 if (ctrl->selector == info->selector) {
1296 uvc_trace(UVC_TRACE_CONTROL, "Control "
1297 UVC_GUID_FORMAT "/%u is already defined.\n",
1298 UVC_GUID_ARGS(info->entity), info->selector);
1299 ret = -EEXIST;
1300 goto end;
1301 }
1302 if (ctrl->index == info->index) {
1303 uvc_trace(UVC_TRACE_CONTROL, "Control "
1304 UVC_GUID_FORMAT "/%u would overwrite index "
1305 "%d.\n", UVC_GUID_ARGS(info->entity),
1306 info->selector, info->index);
1307 ret = -EEXIST;
1308 goto end;
1309 }
1310 }
1311
1312 list_for_each_entry(dev, &uvc_driver.devices, list)
1313 uvc_ctrl_add_ctrl(dev, info);
1314
1315 INIT_LIST_HEAD(&info->mappings);
1316 list_add_tail(&info->list, &uvc_driver.controls);
1317end:
1318 mutex_unlock(&uvc_driver.ctrl_mutex);
1319 return ret;
1320}
1321
1322int uvc_ctrl_add_mapping(struct uvc_control_mapping *mapping)
1323{
1324 struct uvc_control_info *info;
1325 struct uvc_control_mapping *map;
1326 int ret = -EINVAL;
1327
Laurent Pinchart97683522008-12-16 06:46:32 -03001328 if (mapping->get == NULL)
1329 mapping->get = uvc_get_le_value;
1330 if (mapping->set == NULL)
1331 mapping->set = uvc_set_le_value;
1332
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001333 if (mapping->id & ~V4L2_CTRL_ID_MASK) {
1334 uvc_trace(UVC_TRACE_CONTROL, "Can't add mapping '%s' with "
1335 "invalid control id 0x%08x\n", mapping->name,
1336 mapping->id);
1337 return -EINVAL;
1338 }
1339
1340 mutex_lock(&uvc_driver.ctrl_mutex);
1341 list_for_each_entry(info, &uvc_driver.controls, list) {
1342 if (memcmp(info->entity, mapping->entity, 16) ||
1343 info->selector != mapping->selector)
1344 continue;
1345
1346 if (info->size * 8 < mapping->size + mapping->offset) {
1347 uvc_trace(UVC_TRACE_CONTROL, "Mapping '%s' would "
1348 "overflow control " UVC_GUID_FORMAT "/%u\n",
1349 mapping->name, UVC_GUID_ARGS(info->entity),
1350 info->selector);
1351 ret = -EOVERFLOW;
1352 goto end;
1353 }
1354
1355 /* Check if the list contains a mapping matching the new one.
1356 * Bail out if it does.
1357 */
1358 list_for_each_entry(map, &info->mappings, list) {
1359 if (map->id == mapping->id) {
1360 uvc_trace(UVC_TRACE_CONTROL, "Mapping '%s' is "
1361 "already defined.\n", mapping->name);
1362 ret = -EEXIST;
1363 goto end;
1364 }
1365 }
1366
1367 mapping->ctrl = info;
1368 list_add_tail(&mapping->list, &info->mappings);
1369 uvc_trace(UVC_TRACE_CONTROL, "Adding mapping %s to control "
1370 UVC_GUID_FORMAT "/%u.\n", mapping->name,
1371 UVC_GUID_ARGS(info->entity), info->selector);
1372
1373 ret = 0;
1374 break;
1375 }
1376end:
1377 mutex_unlock(&uvc_driver.ctrl_mutex);
1378 return ret;
1379}
1380
1381/*
Laurent Pinchartd732c442009-05-31 17:05:55 -03001382 * Prune an entity of its bogus controls using a blacklist. Bogus controls
1383 * are currently the ones that crash the camera or unconditionally return an
1384 * error when queried.
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001385 */
1386static void
Laurent Pinchartd732c442009-05-31 17:05:55 -03001387uvc_ctrl_prune_entity(struct uvc_device *dev, struct uvc_entity *entity)
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001388{
1389 static const struct {
Laurent Pinchartd732c442009-05-31 17:05:55 -03001390 struct usb_device_id id;
1391 u8 index;
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001392 } blacklist[] = {
Laurent Pinchartd732c442009-05-31 17:05:55 -03001393 { { USB_DEVICE(0x1c4f, 0x3000) }, 6 }, /* WB Temperature */
1394 { { USB_DEVICE(0x5986, 0x0241) }, 2 }, /* Hue */
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001395 };
1396
1397 u8 *controls;
1398 unsigned int size;
1399 unsigned int i;
1400
Laurent Pinchartb482d922009-06-26 11:39:42 -03001401 if (UVC_ENTITY_TYPE(entity) != UVC_VC_PROCESSING_UNIT)
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001402 return;
1403
1404 controls = entity->processing.bmControls;
1405 size = entity->processing.bControlSize;
1406
1407 for (i = 0; i < ARRAY_SIZE(blacklist); ++i) {
Laurent Pinchartd732c442009-05-31 17:05:55 -03001408 if (!usb_match_id(dev->intf, &blacklist[i].id))
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001409 continue;
1410
Laurent Pinchartd732c442009-05-31 17:05:55 -03001411 if (blacklist[i].index >= 8 * size ||
1412 !uvc_test_bit(controls, blacklist[i].index))
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001413 continue;
1414
Laurent Pinchartd732c442009-05-31 17:05:55 -03001415 uvc_trace(UVC_TRACE_CONTROL, "%u/%u control is black listed, "
1416 "removing it.\n", entity->id, blacklist[i].index);
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001417
Laurent Pinchartd732c442009-05-31 17:05:55 -03001418 uvc_clear_bit(controls, blacklist[i].index);
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001419 }
1420}
1421
1422/*
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001423 * Initialize device controls.
1424 */
1425int uvc_ctrl_init_device(struct uvc_device *dev)
1426{
1427 struct uvc_control_info *info;
1428 struct uvc_control *ctrl;
1429 struct uvc_entity *entity;
1430 unsigned int i;
1431
1432 /* Walk the entities list and instantiate controls */
1433 list_for_each_entry(entity, &dev->entities, list) {
1434 unsigned int bControlSize = 0, ncontrols = 0;
1435 __u8 *bmControls = NULL;
1436
Laurent Pinchartb482d922009-06-26 11:39:42 -03001437 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001438 bmControls = entity->extension.bmControls;
1439 bControlSize = entity->extension.bControlSize;
Laurent Pinchartb482d922009-06-26 11:39:42 -03001440 } else if (UVC_ENTITY_TYPE(entity) == UVC_VC_PROCESSING_UNIT) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001441 bmControls = entity->processing.bmControls;
1442 bControlSize = entity->processing.bControlSize;
Laurent Pinchartb482d922009-06-26 11:39:42 -03001443 } else if (UVC_ENTITY_TYPE(entity) == UVC_ITT_CAMERA) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001444 bmControls = entity->camera.bmControls;
1445 bControlSize = entity->camera.bControlSize;
1446 }
1447
Laurent Pinchartd732c442009-05-31 17:05:55 -03001448 uvc_ctrl_prune_entity(dev, entity);
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001449
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001450 for (i = 0; i < bControlSize; ++i)
1451 ncontrols += hweight8(bmControls[i]);
1452
1453 if (ncontrols == 0)
1454 continue;
1455
1456 entity->controls = kzalloc(ncontrols*sizeof *ctrl, GFP_KERNEL);
1457 if (entity->controls == NULL)
1458 return -ENOMEM;
1459
1460 entity->ncontrols = ncontrols;
1461
1462 ctrl = entity->controls;
1463 for (i = 0; i < bControlSize * 8; ++i) {
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001464 if (uvc_test_bit(bmControls, i) == 0)
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001465 continue;
1466
1467 ctrl->entity = entity;
1468 ctrl->index = i;
1469 ctrl++;
1470 }
1471 }
1472
1473 /* Walk the controls info list and associate them with the device
1474 * controls, then add the device to the global device list. This has
1475 * to be done while holding the controls lock, to make sure
1476 * uvc_ctrl_add_info() will not get called in-between.
1477 */
1478 mutex_lock(&uvc_driver.ctrl_mutex);
1479 list_for_each_entry(info, &uvc_driver.controls, list)
1480 uvc_ctrl_add_ctrl(dev, info);
1481
1482 list_add_tail(&dev->list, &uvc_driver.devices);
1483 mutex_unlock(&uvc_driver.ctrl_mutex);
1484
1485 return 0;
1486}
1487
1488/*
1489 * Cleanup device controls.
1490 */
1491void uvc_ctrl_cleanup_device(struct uvc_device *dev)
1492{
1493 struct uvc_entity *entity;
1494 unsigned int i;
1495
1496 /* Remove the device from the global devices list */
1497 mutex_lock(&uvc_driver.ctrl_mutex);
1498 if (dev->list.next != NULL)
1499 list_del(&dev->list);
1500 mutex_unlock(&uvc_driver.ctrl_mutex);
1501
1502 list_for_each_entry(entity, &dev->entities, list) {
1503 for (i = 0; i < entity->ncontrols; ++i)
1504 kfree(entity->controls[i].data);
1505
1506 kfree(entity->controls);
1507 }
1508}
1509
1510void uvc_ctrl_init(void)
1511{
1512 struct uvc_control_info *ctrl = uvc_ctrls;
1513 struct uvc_control_info *cend = ctrl + ARRAY_SIZE(uvc_ctrls);
1514 struct uvc_control_mapping *mapping = uvc_ctrl_mappings;
1515 struct uvc_control_mapping *mend =
1516 mapping + ARRAY_SIZE(uvc_ctrl_mappings);
1517
1518 for (; ctrl < cend; ++ctrl)
1519 uvc_ctrl_add_info(ctrl);
1520
1521 for (; mapping < mend; ++mapping)
1522 uvc_ctrl_add_mapping(mapping);
1523}
Hans Verkuilf87086e2008-07-18 00:50:58 -03001524